xref: /netbsd-src/usr.sbin/npf/npftest/libnpftest/npf_rule_test.c (revision 96fc3e30a7c3f7bba53384bf41dad5f78306fac4)
1 /*	$NetBSD: npf_rule_test.c,v 1.3 2012/12/24 19:05:48 rmind Exp $	*/
2 
3 /*
4  * NPF ruleset test.
5  *
6  * Public Domain.
7  */
8 
9 #include <sys/types.h>
10 
11 #include "npf_impl.h"
12 #include "npf_test.h"
13 
14 #define	IFNAME_EXT	"npftest0"
15 #define	IFNAME_INT	"npftest1"
16 
17 #define	RESULT_PASS	0
18 #define	RESULT_BLOCK	ENETUNREACH
19 
20 static const struct test_case {
21 	const char *	src;
22 	const char *	dst;
23 	const char *	ifname;
24 	int		di;
25 	int		stateful_ret;
26 	int		ret;
27 } test_cases[] = {
28 
29 	/* Stateful pass. */
30 	{
31 		.src = "10.1.1.1",		.dst = "10.1.1.2",
32 		.ifname = IFNAME_INT,		.di = PFIL_OUT,
33 		.stateful_ret = RESULT_PASS,	.ret = RESULT_PASS
34 	},
35 	{
36 		.src = "10.1.1.2",		.dst = "10.1.1.1",
37 		.ifname = IFNAME_INT,		.di = PFIL_IN,
38 		.stateful_ret = RESULT_PASS,	.ret = RESULT_BLOCK
39 	},
40 
41 	/* Pass forwards stream only. */
42 	{
43 		.src = "10.1.1.1",		.dst = "10.1.1.3",
44 		.ifname = IFNAME_INT,		.di = PFIL_OUT,
45 		.stateful_ret = RESULT_PASS,	.ret = RESULT_PASS
46 	},
47 	{
48 		.src = "10.1.1.3",		.dst = "10.1.1.1",
49 		.ifname = IFNAME_INT,		.di = PFIL_IN,
50 		.stateful_ret = RESULT_BLOCK,	.ret = RESULT_BLOCK
51 	},
52 
53 	/* Block. */
54 	{	.src = "10.1.1.1",		.dst = "10.1.1.4",
55 		.ifname = IFNAME_INT,		.di = PFIL_OUT,
56 		.stateful_ret = RESULT_BLOCK,	.ret = RESULT_BLOCK
57 	},
58 
59 };
60 
61 static struct mbuf *
62 fill_packet(const struct test_case *t)
63 {
64 	struct mbuf *m;
65 	struct ip *ip;
66 	struct udphdr *uh;
67 
68 	m = mbuf_construct(IPPROTO_UDP);
69 	uh = mbuf_return_hdrs(m, false, &ip);
70 	ip->ip_src.s_addr = inet_addr(t->src);
71 	ip->ip_dst.s_addr = inet_addr(t->dst);
72 	uh->uh_sport = htons(9000);
73 	uh->uh_dport = htons(9000);
74 	return m;
75 }
76 
77 static int
78 npf_rule_raw_test(bool verbose, struct mbuf *m, ifnet_t *ifp, int di)
79 {
80 	npf_cache_t npc = { .npc_info = 0 };
81 	nbuf_t nbuf;
82 	npf_rule_t *rl;
83 	int retfl, error;
84 
85 	nbuf_init(&nbuf, m, ifp);
86 	npf_cache_all(&npc, &nbuf);
87 
88 	npf_core_enter();
89 	rl = npf_ruleset_inspect(&npc, &nbuf, npf_core_ruleset(),
90 	    di, NPF_LAYER_3);
91 	if (rl) {
92 		if (verbose) {
93 			npf_rulenc_dump(rl);
94 		}
95 		error = npf_rule_apply(&npc, &nbuf, rl, &retfl);
96 	} else {
97 		npf_core_exit();
98 		error = ENOENT;
99 	}
100 	return error;
101 }
102 
103 bool
104 npf_rule_test(bool verbose)
105 {
106 	bool fail = false;
107 
108 	for (unsigned i = 0; i < __arraycount(test_cases); i++) {
109 		const struct test_case *t = &test_cases[i];
110 		ifnet_t *ifp = ifunit(t->ifname);
111 		int serror, error;
112 
113 		if (ifp == NULL) {
114 			printf("Interface %s is not configured.\n", t->ifname);
115 			return false;
116 		}
117 
118 		struct mbuf *m = fill_packet(t);
119 		error = npf_rule_raw_test(verbose, m, ifp, t->di);
120 		serror = npf_packet_handler(NULL, &m, ifp, t->di);
121 
122 		if (m) {
123 			m_freem(m);
124 		}
125 
126 		if (verbose) {
127 			printf("Rule test %d, expected %d (stateful) and %d \n"
128 			    "-> returned %d and %d.\n",
129 			    i + 1, t->stateful_ret, t->ret, serror, error);
130 		}
131 		fail |= (serror != t->stateful_ret || error != t->ret);
132 	}
133 	return !fail;
134 }
135