summaryrefslogtreecommitdiffstats
path: root/tools/regression/netinet6
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2008-07-29 18:33:56 +0000
committerrwatson <rwatson@FreeBSD.org>2008-07-29 18:33:56 +0000
commit4293351cbabccdc65d6621bdcd54e53ffaa405c2 (patch)
tree4b5aa7770e096ee1f80124f5c54aab88e14b9ef9 /tools/regression/netinet6
parentcd641465efc39b57509f1b8804848c55ba1b4738 (diff)
downloadFreeBSD-src-4293351cbabccdc65d6621bdcd54e53ffaa405c2.zip
FreeBSD-src-4293351cbabccdc65d6621bdcd54e53ffaa405c2.tar.gz
Add a simple ICMPv6 filter test for IPv6 raw sockets: determine that
the default ICMPv6 filter is pass all, test that we can set it to block all and restore to pass all. No attempt is made to test that the filtering works, just that we can get and set it.
Diffstat (limited to 'tools/regression/netinet6')
-rw-r--r--tools/regression/netinet6/icmp6_filter/Makefile9
-rw-r--r--tools/regression/netinet6/icmp6_filter/icmp6_filter.c132
2 files changed, 141 insertions, 0 deletions
diff --git a/tools/regression/netinet6/icmp6_filter/Makefile b/tools/regression/netinet6/icmp6_filter/Makefile
new file mode 100644
index 0000000..0e1bc3b
--- /dev/null
+++ b/tools/regression/netinet6/icmp6_filter/Makefile
@@ -0,0 +1,9 @@
+#
+# $FreeBSD$
+#
+
+PROG= icmp6_filter
+NO_MAN=
+WARNS?= 2
+
+.include <bsd.prog.mk>
diff --git a/tools/regression/netinet6/icmp6_filter/icmp6_filter.c b/tools/regression/netinet6/icmp6_filter/icmp6_filter.c
new file mode 100644
index 0000000..ab47449
--- /dev/null
+++ b/tools/regression/netinet6/icmp6_filter/icmp6_filter.c
@@ -0,0 +1,132 @@
+/*-
+ * Copyright (c) 2008 Robert N. M. Watson
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * $FreeBSD$
+ */
+
+/*
+ * This regression test creates a raw IPv6 socket and confirms that it can
+ * set and get filters on the socket. No attempt is made to validate that
+ * the filter is implemented, just that it can be properly retrieved, set,
+ * etc.
+ */
+
+#include <sys/types.h>
+#include <sys/socket.h>
+
+#include <netinet/in.h>
+#include <netinet/icmp6.h>
+
+#include <err.h>
+#include <string.h>
+#include <unistd.h>
+
+/*
+ * Reference filters to set/test.
+ */
+static struct icmp6_filter ic6f_passall;
+static struct icmp6_filter ic6f_blockall;
+
+int
+main(int argc, char *argv[])
+{
+ struct icmp6_filter ic6f;
+ socklen_t len;
+ int s;
+
+ ICMP6_FILTER_SETPASSALL(&ic6f_passall);
+ ICMP6_FILTER_SETBLOCKALL(&ic6f_blockall);
+
+ s = socket(PF_INET6, SOCK_RAW, 0);
+ if (s < 0)
+ err(-1, "socket(PF_INET6, SOCK_RAW, 0)");
+
+ /*
+ * Confirm that we can read before the first set, and that the
+ * default is to pass all ICMP.
+ */
+ len = sizeof(ic6f);
+ if (getsockopt(s, IPPROTO_ICMPV6, ICMP6_FILTER, &ic6f, &len) < 0)
+ err(-1, "1: getsockopt(ICMP6_FILTER)");
+ if (memcmp(&ic6f, &ic6f_passall, sizeof(ic6f)) != 0)
+ errx(-1, "1: getsockopt(ICMP6_FILTER) - default not passall");
+
+ /*
+ * Confirm that we can write a pass all filter to the socket.
+ */
+ len = sizeof(ic6f);
+ ICMP6_FILTER_SETPASSALL(&ic6f);
+ if (setsockopt(s, IPPROTO_ICMPV6, ICMP6_FILTER, &ic6f, len) < 0)
+ err(-1, "2: setsockopt(ICMP6_FILTER, PASSALL)");
+
+ /*
+ * Confirm that we can still read a pass all filter.
+ */
+ len = sizeof(ic6f);
+ if (getsockopt(s, IPPROTO_ICMPV6, ICMP6_FILTER, &ic6f, &len) < 0)
+ err(-1, "3: getsockopt(ICMP6_FILTER)");
+ if (memcmp(&ic6f, &ic6f_passall, sizeof(ic6f)) != 0)
+ errx(-1, "3: getsockopt(ICMP6_FILTER) - not passall");
+
+ /*
+ * Confirm that we can write a block all filter to the socket.
+ */
+ len = sizeof(ic6f);
+ ICMP6_FILTER_SETBLOCKALL(&ic6f);
+ if (setsockopt(s, IPPROTO_ICMPV6, ICMP6_FILTER, &ic6f, len) < 0)
+ err(-1, "4: setsockopt(ICMP6_FILTER, BLOCKALL)");
+
+ /*
+ * Confirm that we can read back a block all filter.
+ */
+ len = sizeof(ic6f);
+ if (getsockopt(s, IPPROTO_ICMPV6, ICMP6_FILTER, &ic6f, &len) < 0)
+ err(-1, "5: getsockopt(ICMP6_FILTER)");
+ if (memcmp(&ic6f, &ic6f_blockall, sizeof(ic6f)) != 0)
+ errx(-1, "5: getsockopt(ICMP6_FILTER) - not blockall");
+
+ /*
+ * For completeness, confirm that we can reset to the default.
+ */
+ len = sizeof(ic6f);
+ ICMP6_FILTER_SETPASSALL(&ic6f);
+ if (setsockopt(s, IPPROTO_ICMPV6, ICMP6_FILTER, &ic6f, len) < 0)
+ err(-1, "6: setsockopt(ICMP6_FILTER, PASSALL)");
+
+ /*
+ * ... And that we can read back the pass all rule again.
+ */
+ /*
+ * Confirm that we can still read a pass all filter.
+ */
+ len = sizeof(ic6f);
+ if (getsockopt(s, IPPROTO_ICMPV6, ICMP6_FILTER, &ic6f, &len) < 0)
+ err(-1, "7: getsockopt(ICMP6_FILTER)");
+ if (memcmp(&ic6f, &ic6f_passall, sizeof(ic6f)) != 0)
+ errx(-1, "7: getsockopt(ICMP6_FILTER) - not passall");
+
+ close(s);
+ return (0);
+}
OpenPOWER on IntegriCloud