xref: /freebsd/sbin/ipf/ipnat/ipnat.c (revision 41edb306f05651fcaf6c74f9e3557f59f80292e1)
1*41edb306SCy Schubert /*	$FreeBSD$	*/
2*41edb306SCy Schubert 
3*41edb306SCy Schubert /*
4*41edb306SCy Schubert  * Copyright (C) 2012 by Darren Reed.
5*41edb306SCy Schubert  *
6*41edb306SCy Schubert  * See the IPFILTER.LICENCE file for details on licencing.
7*41edb306SCy Schubert  *
8*41edb306SCy Schubert  * Added redirect stuff and a variety of bug fixes. (mcn@EnGarde.com)
9*41edb306SCy Schubert  */
10*41edb306SCy Schubert #include <stdio.h>
11*41edb306SCy Schubert #include <string.h>
12*41edb306SCy Schubert #include <fcntl.h>
13*41edb306SCy Schubert #include <errno.h>
14*41edb306SCy Schubert #include <sys/types.h>
15*41edb306SCy Schubert #if !defined(__SVR4)
16*41edb306SCy Schubert #include <strings.h>
17*41edb306SCy Schubert #else
18*41edb306SCy Schubert #include <sys/byteorder.h>
19*41edb306SCy Schubert #endif
20*41edb306SCy Schubert #include <sys/time.h>
21*41edb306SCy Schubert #include <sys/param.h>
22*41edb306SCy Schubert #include <stdlib.h>
23*41edb306SCy Schubert #include <unistd.h>
24*41edb306SCy Schubert #include <stddef.h>
25*41edb306SCy Schubert #include <sys/file.h>
26*41edb306SCy Schubert #define _KERNEL
27*41edb306SCy Schubert #include <sys/uio.h>
28*41edb306SCy Schubert #undef _KERNEL
29*41edb306SCy Schubert #include <sys/socket.h>
30*41edb306SCy Schubert #include <sys/ioctl.h>
31*41edb306SCy Schubert #if defined(sun) && defined(__SVR4)
32*41edb306SCy Schubert # include <sys/ioccom.h>
33*41edb306SCy Schubert # include <sys/sysmacros.h>
34*41edb306SCy Schubert #endif
35*41edb306SCy Schubert #include <netinet/in.h>
36*41edb306SCy Schubert #include <netinet/in_systm.h>
37*41edb306SCy Schubert #include <netinet/ip.h>
38*41edb306SCy Schubert #include <netinet/tcp.h>
39*41edb306SCy Schubert #include <net/if.h>
40*41edb306SCy Schubert #include <netdb.h>
41*41edb306SCy Schubert #include <arpa/nameser.h>
42*41edb306SCy Schubert #include <arpa/inet.h>
43*41edb306SCy Schubert #include <resolv.h>
44*41edb306SCy Schubert #include <ctype.h>
45*41edb306SCy Schubert # include <nlist.h>
46*41edb306SCy Schubert #include "ipf.h"
47*41edb306SCy Schubert #include "netinet/ipl.h"
48*41edb306SCy Schubert #include "kmem.h"
49*41edb306SCy Schubert 
50*41edb306SCy Schubert 
51*41edb306SCy Schubert # define	STRERROR(x)	strerror(x)
52*41edb306SCy Schubert 
53*41edb306SCy Schubert #if !defined(lint)
54*41edb306SCy Schubert static const char sccsid[] ="@(#)ipnat.c	1.9 6/5/96 (C) 1993 Darren Reed";
55*41edb306SCy Schubert static const char rcsid[] = "@(#)$Id$";
56*41edb306SCy Schubert #endif
57*41edb306SCy Schubert 
58*41edb306SCy Schubert 
59*41edb306SCy Schubert #if	SOLARIS
60*41edb306SCy Schubert #define	bzero(a,b)	memset(a,0,b)
61*41edb306SCy Schubert #endif
62*41edb306SCy Schubert int	use_inet6 = 0;
63*41edb306SCy Schubert 
64*41edb306SCy Schubert extern	char	*optarg;
65*41edb306SCy Schubert 
66*41edb306SCy Schubert void	dostats(int, natstat_t *, int, int, int *);
67*41edb306SCy Schubert void	dotable(natstat_t *, int, int, int, char *);
68*41edb306SCy Schubert void	flushtable(int, int, int *);
69*41edb306SCy Schubert void	usage(char *);
70*41edb306SCy Schubert int	main(int, char*[]);
71*41edb306SCy Schubert void	showhostmap(natstat_t *nsp);
72*41edb306SCy Schubert void	natstat_dead(natstat_t *, char *);
73*41edb306SCy Schubert void	dostats_live(int, natstat_t *, int, int *);
74*41edb306SCy Schubert void	showhostmap_dead(natstat_t *);
75*41edb306SCy Schubert void	showhostmap_live(int, natstat_t *);
76*41edb306SCy Schubert void	dostats_dead(natstat_t *, int, int *);
77*41edb306SCy Schubert int	nat_matcharray(nat_t *, int *);
78*41edb306SCy Schubert 
79*41edb306SCy Schubert int		opts;
80*41edb306SCy Schubert int		nohdrfields = 0;
81*41edb306SCy Schubert wordtab_t	*nat_fields = NULL;
82*41edb306SCy Schubert 
83*41edb306SCy Schubert void usage(name)
84*41edb306SCy Schubert 	char *name;
85*41edb306SCy Schubert {
86*41edb306SCy Schubert 	fprintf(stderr, "Usage: %s [-CFhlnrRsv] [-f filename]\n", name);
87*41edb306SCy Schubert 	exit(1);
88*41edb306SCy Schubert }
89*41edb306SCy Schubert 
90*41edb306SCy Schubert 
91*41edb306SCy Schubert int main(argc, argv)
92*41edb306SCy Schubert 	int argc;
93*41edb306SCy Schubert 	char *argv[];
94*41edb306SCy Schubert {
95*41edb306SCy Schubert 	int fd, c, mode, *natfilter;
96*41edb306SCy Schubert 	char *file, *core, *kernel;
97*41edb306SCy Schubert 	natstat_t ns, *nsp;
98*41edb306SCy Schubert 	ipfobj_t obj;
99*41edb306SCy Schubert 
100*41edb306SCy Schubert 	fd = -1;
101*41edb306SCy Schubert 	opts = 0;
102*41edb306SCy Schubert 	nsp = &ns;
103*41edb306SCy Schubert 	file = NULL;
104*41edb306SCy Schubert 	core = NULL;
105*41edb306SCy Schubert 	kernel = NULL;
106*41edb306SCy Schubert 	mode = O_RDWR;
107*41edb306SCy Schubert 	natfilter = NULL;
108*41edb306SCy Schubert 
109*41edb306SCy Schubert 	assigndefined(getenv("IPNAT_PREDEFINED"));
110*41edb306SCy Schubert 
111*41edb306SCy Schubert 	while ((c = getopt(argc, argv, "CdFf:hlm:M:N:nO:prRsv")) != -1)
112*41edb306SCy Schubert 		switch (c)
113*41edb306SCy Schubert 		{
114*41edb306SCy Schubert 		case 'C' :
115*41edb306SCy Schubert 			opts |= OPT_CLEAR;
116*41edb306SCy Schubert 			break;
117*41edb306SCy Schubert 		case 'd' :
118*41edb306SCy Schubert 			opts |= OPT_DEBUG;
119*41edb306SCy Schubert 			break;
120*41edb306SCy Schubert 		case 'f' :
121*41edb306SCy Schubert 			file = optarg;
122*41edb306SCy Schubert 			break;
123*41edb306SCy Schubert 		case 'F' :
124*41edb306SCy Schubert 			opts |= OPT_FLUSH;
125*41edb306SCy Schubert 			break;
126*41edb306SCy Schubert 		case 'h' :
127*41edb306SCy Schubert 			opts |=OPT_HITS;
128*41edb306SCy Schubert 			break;
129*41edb306SCy Schubert 		case 'l' :
130*41edb306SCy Schubert 			opts |= OPT_LIST;
131*41edb306SCy Schubert 			mode = O_RDONLY;
132*41edb306SCy Schubert 			break;
133*41edb306SCy Schubert 		case 'm' :
134*41edb306SCy Schubert 			natfilter = parseipfexpr(optarg, NULL);
135*41edb306SCy Schubert 			break;
136*41edb306SCy Schubert 		case 'M' :
137*41edb306SCy Schubert 			core = optarg;
138*41edb306SCy Schubert 			break;
139*41edb306SCy Schubert 		case 'N' :
140*41edb306SCy Schubert 			kernel = optarg;
141*41edb306SCy Schubert 			break;
142*41edb306SCy Schubert 		case 'n' :
143*41edb306SCy Schubert 			opts |= OPT_DONOTHING|OPT_DONTOPEN;
144*41edb306SCy Schubert 			mode = O_RDONLY;
145*41edb306SCy Schubert 			break;
146*41edb306SCy Schubert 		case 'O' :
147*41edb306SCy Schubert 			nat_fields = parsefields(natfields, optarg);
148*41edb306SCy Schubert 			break;
149*41edb306SCy Schubert 		case 'p' :
150*41edb306SCy Schubert 			opts |= OPT_PURGE;
151*41edb306SCy Schubert 			break;
152*41edb306SCy Schubert 		case 'R' :
153*41edb306SCy Schubert 			opts |= OPT_NORESOLVE;
154*41edb306SCy Schubert 			break;
155*41edb306SCy Schubert 		case 'r' :
156*41edb306SCy Schubert 			opts |= OPT_REMOVE;
157*41edb306SCy Schubert 			break;
158*41edb306SCy Schubert 		case 's' :
159*41edb306SCy Schubert 			opts |= OPT_STAT;
160*41edb306SCy Schubert 			mode = O_RDONLY;
161*41edb306SCy Schubert 			break;
162*41edb306SCy Schubert 		case 'v' :
163*41edb306SCy Schubert 			opts |= OPT_VERBOSE;
164*41edb306SCy Schubert 			break;
165*41edb306SCy Schubert 		default :
166*41edb306SCy Schubert 			usage(argv[0]);
167*41edb306SCy Schubert 		}
168*41edb306SCy Schubert 
169*41edb306SCy Schubert 	if (((opts & OPT_PURGE) != 0) && ((opts & OPT_REMOVE) == 0)) {
170*41edb306SCy Schubert 		(void) fprintf(stderr, "%s: -p must be used with -r\n",
171*41edb306SCy Schubert 			       argv[0]);
172*41edb306SCy Schubert 		exit(1);
173*41edb306SCy Schubert 	}
174*41edb306SCy Schubert 
175*41edb306SCy Schubert 	initparse();
176*41edb306SCy Schubert 
177*41edb306SCy Schubert 	if ((kernel != NULL) || (core != NULL)) {
178*41edb306SCy Schubert 		(void) setgid(getgid());
179*41edb306SCy Schubert 		(void) setuid(getuid());
180*41edb306SCy Schubert 	}
181*41edb306SCy Schubert 
182*41edb306SCy Schubert 	if (!(opts & OPT_DONOTHING)) {
183*41edb306SCy Schubert 		if (((fd = open(IPNAT_NAME, mode)) == -1) &&
184*41edb306SCy Schubert 		    ((fd = open(IPNAT_NAME, O_RDONLY)) == -1)) {
185*41edb306SCy Schubert 			(void) fprintf(stderr, "%s: open: %s\n", IPNAT_NAME,
186*41edb306SCy Schubert 				STRERROR(errno));
187*41edb306SCy Schubert 			exit(1);
188*41edb306SCy Schubert 		}
189*41edb306SCy Schubert 	}
190*41edb306SCy Schubert 
191*41edb306SCy Schubert 	bzero((char *)&ns, sizeof(ns));
192*41edb306SCy Schubert 
193*41edb306SCy Schubert 	if ((opts & OPT_DONOTHING) == 0) {
194*41edb306SCy Schubert 		if (checkrev(IPL_NAME) == -1) {
195*41edb306SCy Schubert 			fprintf(stderr, "User/kernel version check failed\n");
196*41edb306SCy Schubert 			exit(1);
197*41edb306SCy Schubert 		}
198*41edb306SCy Schubert 	}
199*41edb306SCy Schubert 
200*41edb306SCy Schubert 	if (!(opts & OPT_DONOTHING) && (kernel == NULL) && (core == NULL)) {
201*41edb306SCy Schubert 		bzero((char *)&obj, sizeof(obj));
202*41edb306SCy Schubert 		obj.ipfo_rev = IPFILTER_VERSION;
203*41edb306SCy Schubert 		obj.ipfo_type = IPFOBJ_NATSTAT;
204*41edb306SCy Schubert 		obj.ipfo_size = sizeof(*nsp);
205*41edb306SCy Schubert 		obj.ipfo_ptr = (void *)nsp;
206*41edb306SCy Schubert 		if (ioctl(fd, SIOCGNATS, &obj) == -1) {
207*41edb306SCy Schubert 			ipferror(fd, "ioctl(SIOCGNATS)");
208*41edb306SCy Schubert 			exit(1);
209*41edb306SCy Schubert 		}
210*41edb306SCy Schubert 		(void) setgid(getgid());
211*41edb306SCy Schubert 		(void) setuid(getuid());
212*41edb306SCy Schubert 	} else if ((kernel != NULL) || (core != NULL)) {
213*41edb306SCy Schubert 		if (openkmem(kernel, core) == -1)
214*41edb306SCy Schubert 			exit(1);
215*41edb306SCy Schubert 
216*41edb306SCy Schubert 		natstat_dead(nsp, kernel);
217*41edb306SCy Schubert 		if (opts & (OPT_LIST|OPT_STAT))
218*41edb306SCy Schubert 			dostats(fd, nsp, opts, 0, natfilter);
219*41edb306SCy Schubert 		exit(0);
220*41edb306SCy Schubert 	}
221*41edb306SCy Schubert 
222*41edb306SCy Schubert 	if (opts & (OPT_FLUSH|OPT_CLEAR))
223*41edb306SCy Schubert 		flushtable(fd, opts, natfilter);
224*41edb306SCy Schubert 	if (file) {
225*41edb306SCy Schubert 		return ipnat_parsefile(fd, ipnat_addrule, ioctl, file);
226*41edb306SCy Schubert 	}
227*41edb306SCy Schubert 	if (opts & (OPT_LIST|OPT_STAT))
228*41edb306SCy Schubert 		dostats(fd, nsp, opts, 1, natfilter);
229*41edb306SCy Schubert 	return 0;
230*41edb306SCy Schubert }
231*41edb306SCy Schubert 
232*41edb306SCy Schubert 
233*41edb306SCy Schubert /*
234*41edb306SCy Schubert  * Read NAT statistic information in using a symbol table and memory file
235*41edb306SCy Schubert  * rather than doing ioctl's.
236*41edb306SCy Schubert  */
237*41edb306SCy Schubert void natstat_dead(nsp, kernel)
238*41edb306SCy Schubert 	natstat_t *nsp;
239*41edb306SCy Schubert 	char *kernel;
240*41edb306SCy Schubert {
241*41edb306SCy Schubert 	struct nlist nat_nlist[10] = {
242*41edb306SCy Schubert 		{ "nat_table" },		/* 0 */
243*41edb306SCy Schubert 		{ "nat_list" },
244*41edb306SCy Schubert 		{ "maptable" },
245*41edb306SCy Schubert 		{ "ipf_nattable_sz" },
246*41edb306SCy Schubert 		{ "ipf_natrules_sz" },
247*41edb306SCy Schubert 		{ "ipf_rdrrules_sz" },		/* 5 */
248*41edb306SCy Schubert 		{ "ipf_hostmap_sz" },
249*41edb306SCy Schubert 		{ "nat_instances" },
250*41edb306SCy Schubert 		{ NULL }
251*41edb306SCy Schubert 	};
252*41edb306SCy Schubert 	void *tables[2];
253*41edb306SCy Schubert 
254*41edb306SCy Schubert 	if (nlist(kernel, nat_nlist) == -1) {
255*41edb306SCy Schubert 		fprintf(stderr, "nlist error\n");
256*41edb306SCy Schubert 		return;
257*41edb306SCy Schubert 	}
258*41edb306SCy Schubert 
259*41edb306SCy Schubert 	/*
260*41edb306SCy Schubert 	 * Normally the ioctl copies all of these values into the structure
261*41edb306SCy Schubert 	 * for us, before returning it to userland, so here we must copy each
262*41edb306SCy Schubert 	 * one in individually.
263*41edb306SCy Schubert 	 */
264*41edb306SCy Schubert 	kmemcpy((char *)&tables, nat_nlist[0].n_value, sizeof(tables));
265*41edb306SCy Schubert 	nsp->ns_side[0].ns_table = tables[0];
266*41edb306SCy Schubert 	nsp->ns_side[1].ns_table = tables[1];
267*41edb306SCy Schubert 
268*41edb306SCy Schubert 	kmemcpy((char *)&nsp->ns_list, nat_nlist[1].n_value,
269*41edb306SCy Schubert 		sizeof(nsp->ns_list));
270*41edb306SCy Schubert 	kmemcpy((char *)&nsp->ns_maptable, nat_nlist[2].n_value,
271*41edb306SCy Schubert 		sizeof(nsp->ns_maptable));
272*41edb306SCy Schubert 	kmemcpy((char *)&nsp->ns_nattab_sz, nat_nlist[3].n_value,
273*41edb306SCy Schubert 		sizeof(nsp->ns_nattab_sz));
274*41edb306SCy Schubert 	kmemcpy((char *)&nsp->ns_rultab_sz, nat_nlist[4].n_value,
275*41edb306SCy Schubert 		sizeof(nsp->ns_rultab_sz));
276*41edb306SCy Schubert 	kmemcpy((char *)&nsp->ns_rdrtab_sz, nat_nlist[5].n_value,
277*41edb306SCy Schubert 		sizeof(nsp->ns_rdrtab_sz));
278*41edb306SCy Schubert 	kmemcpy((char *)&nsp->ns_hostmap_sz, nat_nlist[6].n_value,
279*41edb306SCy Schubert 		sizeof(nsp->ns_hostmap_sz));
280*41edb306SCy Schubert 	kmemcpy((char *)&nsp->ns_instances, nat_nlist[7].n_value,
281*41edb306SCy Schubert 		sizeof(nsp->ns_instances));
282*41edb306SCy Schubert }
283*41edb306SCy Schubert 
284*41edb306SCy Schubert 
285*41edb306SCy Schubert /*
286*41edb306SCy Schubert  * Issue an ioctl to flush either the NAT rules table or the active mapping
287*41edb306SCy Schubert  * table or both.
288*41edb306SCy Schubert  */
289*41edb306SCy Schubert void flushtable(fd, opts, match)
290*41edb306SCy Schubert 	int fd, opts, *match;
291*41edb306SCy Schubert {
292*41edb306SCy Schubert 	int n = 0;
293*41edb306SCy Schubert 
294*41edb306SCy Schubert 	if (opts & OPT_FLUSH) {
295*41edb306SCy Schubert 		n = 0;
296*41edb306SCy Schubert 		if (!(opts & OPT_DONOTHING)) {
297*41edb306SCy Schubert 			if (match != NULL) {
298*41edb306SCy Schubert 				ipfobj_t obj;
299*41edb306SCy Schubert 
300*41edb306SCy Schubert 				obj.ipfo_rev = IPFILTER_VERSION;
301*41edb306SCy Schubert 				obj.ipfo_size = match[0] * sizeof(int);
302*41edb306SCy Schubert 				obj.ipfo_type = IPFOBJ_IPFEXPR;
303*41edb306SCy Schubert 				obj.ipfo_ptr = match;
304*41edb306SCy Schubert 				if (ioctl(fd, SIOCMATCHFLUSH, &obj) == -1) {
305*41edb306SCy Schubert 					ipferror(fd, "ioctl(SIOCMATCHFLUSH)");
306*41edb306SCy Schubert 					n = -1;
307*41edb306SCy Schubert 				} else {
308*41edb306SCy Schubert 					n = obj.ipfo_retval;
309*41edb306SCy Schubert 				}
310*41edb306SCy Schubert 			} else if (ioctl(fd, SIOCIPFFL, &n) == -1) {
311*41edb306SCy Schubert 				ipferror(fd, "ioctl(SIOCIPFFL)");
312*41edb306SCy Schubert 				n = -1;
313*41edb306SCy Schubert 			}
314*41edb306SCy Schubert 		}
315*41edb306SCy Schubert 		if (n >= 0)
316*41edb306SCy Schubert 			printf("%d entries flushed from NAT table\n", n);
317*41edb306SCy Schubert 	}
318*41edb306SCy Schubert 
319*41edb306SCy Schubert 	if (opts & OPT_CLEAR) {
320*41edb306SCy Schubert 		n = 1;
321*41edb306SCy Schubert 		if (!(opts & OPT_DONOTHING) && ioctl(fd, SIOCIPFFL, &n) == -1)
322*41edb306SCy Schubert 			ipferror(fd, "ioctl(SIOCCNATL)");
323*41edb306SCy Schubert 		else
324*41edb306SCy Schubert 			printf("%d entries flushed from NAT list\n", n);
325*41edb306SCy Schubert 	}
326*41edb306SCy Schubert }
327*41edb306SCy Schubert 
328*41edb306SCy Schubert 
329*41edb306SCy Schubert /*
330*41edb306SCy Schubert  * Display NAT statistics.
331*41edb306SCy Schubert  */
332*41edb306SCy Schubert void dostats_dead(nsp, opts, filter)
333*41edb306SCy Schubert 	natstat_t *nsp;
334*41edb306SCy Schubert 	int opts, *filter;
335*41edb306SCy Schubert {
336*41edb306SCy Schubert 	nat_t *np, nat;
337*41edb306SCy Schubert 	ipnat_t	ipn;
338*41edb306SCy Schubert 	int i;
339*41edb306SCy Schubert 
340*41edb306SCy Schubert 	if (nat_fields == NULL) {
341*41edb306SCy Schubert 		printf("List of active MAP/Redirect filters:\n");
342*41edb306SCy Schubert 		while (nsp->ns_list) {
343*41edb306SCy Schubert 			if (kmemcpy((char *)&ipn, (long)nsp->ns_list,
344*41edb306SCy Schubert 				    sizeof(ipn))) {
345*41edb306SCy Schubert 				perror("kmemcpy");
346*41edb306SCy Schubert 				break;
347*41edb306SCy Schubert 			}
348*41edb306SCy Schubert 			if (opts & OPT_HITS)
349*41edb306SCy Schubert 				printf("%lu ", ipn.in_hits);
350*41edb306SCy Schubert 			printnat(&ipn, opts & (OPT_DEBUG|OPT_VERBOSE));
351*41edb306SCy Schubert 			nsp->ns_list = ipn.in_next;
352*41edb306SCy Schubert 		}
353*41edb306SCy Schubert 	}
354*41edb306SCy Schubert 
355*41edb306SCy Schubert 	if (nat_fields == NULL) {
356*41edb306SCy Schubert 		printf("\nList of active sessions:\n");
357*41edb306SCy Schubert 
358*41edb306SCy Schubert 	} else if (nohdrfields == 0) {
359*41edb306SCy Schubert 		for (i = 0; nat_fields[i].w_value != 0; i++) {
360*41edb306SCy Schubert 			printfieldhdr(natfields, nat_fields + i);
361*41edb306SCy Schubert 			if (nat_fields[i + 1].w_value != 0)
362*41edb306SCy Schubert 				printf("\t");
363*41edb306SCy Schubert 		}
364*41edb306SCy Schubert 		printf("\n");
365*41edb306SCy Schubert 	}
366*41edb306SCy Schubert 
367*41edb306SCy Schubert 	for (np = nsp->ns_instances; np; np = nat.nat_next) {
368*41edb306SCy Schubert 		if (kmemcpy((char *)&nat, (long)np, sizeof(nat)))
369*41edb306SCy Schubert 			break;
370*41edb306SCy Schubert 		if ((filter != NULL) && (nat_matcharray(&nat, filter) == 0))
371*41edb306SCy Schubert 			continue;
372*41edb306SCy Schubert 		if (nat_fields != NULL) {
373*41edb306SCy Schubert 			for (i = 0; nat_fields[i].w_value != 0; i++) {
374*41edb306SCy Schubert 				printnatfield(&nat, nat_fields[i].w_value);
375*41edb306SCy Schubert 				if (nat_fields[i + 1].w_value != 0)
376*41edb306SCy Schubert 					printf("\t");
377*41edb306SCy Schubert 			}
378*41edb306SCy Schubert 			printf("\n");
379*41edb306SCy Schubert 		} else {
380*41edb306SCy Schubert 			printactivenat(&nat, opts, nsp->ns_ticks);
381*41edb306SCy Schubert 			if (nat.nat_aps) {
382*41edb306SCy Schubert 				int proto;
383*41edb306SCy Schubert 
384*41edb306SCy Schubert 				if (nat.nat_dir & NAT_OUTBOUND)
385*41edb306SCy Schubert 					proto = nat.nat_pr[1];
386*41edb306SCy Schubert 				else
387*41edb306SCy Schubert 					proto = nat.nat_pr[0];
388*41edb306SCy Schubert 				printaps(nat.nat_aps, opts, proto);
389*41edb306SCy Schubert 			}
390*41edb306SCy Schubert 		}
391*41edb306SCy Schubert 	}
392*41edb306SCy Schubert 
393*41edb306SCy Schubert 	if (opts & OPT_VERBOSE)
394*41edb306SCy Schubert 		showhostmap_dead(nsp);
395*41edb306SCy Schubert }
396*41edb306SCy Schubert 
397*41edb306SCy Schubert 
398*41edb306SCy Schubert void dotable(nsp, fd, alive, which, side)
399*41edb306SCy Schubert 	natstat_t *nsp;
400*41edb306SCy Schubert 	int fd, alive, which;
401*41edb306SCy Schubert 	char *side;
402*41edb306SCy Schubert {
403*41edb306SCy Schubert 	int sz, i, used, maxlen, minlen, totallen;
404*41edb306SCy Schubert 	ipftable_t table;
405*41edb306SCy Schubert 	u_int *buckets;
406*41edb306SCy Schubert 	ipfobj_t obj;
407*41edb306SCy Schubert 
408*41edb306SCy Schubert 	sz = sizeof(*buckets) * nsp->ns_nattab_sz;
409*41edb306SCy Schubert 	buckets = (u_int *)malloc(sz);
410*41edb306SCy Schubert 	if (buckets == NULL) {
411*41edb306SCy Schubert 		fprintf(stderr,
412*41edb306SCy Schubert 			"cannot allocate memory (%d) for buckets\n", sz);
413*41edb306SCy Schubert 		return;
414*41edb306SCy Schubert 	}
415*41edb306SCy Schubert 
416*41edb306SCy Schubert 	obj.ipfo_rev = IPFILTER_VERSION;
417*41edb306SCy Schubert 	obj.ipfo_type = IPFOBJ_GTABLE;
418*41edb306SCy Schubert 	obj.ipfo_size = sizeof(table);
419*41edb306SCy Schubert 	obj.ipfo_ptr = &table;
420*41edb306SCy Schubert 
421*41edb306SCy Schubert 	if (which == 0) {
422*41edb306SCy Schubert 		table.ita_type = IPFTABLE_BUCKETS_NATIN;
423*41edb306SCy Schubert 	} else if (which == 1) {
424*41edb306SCy Schubert 		table.ita_type = IPFTABLE_BUCKETS_NATOUT;
425*41edb306SCy Schubert 	}
426*41edb306SCy Schubert 	table.ita_table = buckets;
427*41edb306SCy Schubert 
428*41edb306SCy Schubert 	if (alive) {
429*41edb306SCy Schubert 		if (ioctl(fd, SIOCGTABL, &obj) != 0) {
430*41edb306SCy Schubert 			ipferror(fd, "SIOCFTABL");
431*41edb306SCy Schubert 			free(buckets);
432*41edb306SCy Schubert 			return;
433*41edb306SCy Schubert 		}
434*41edb306SCy Schubert 	} else {
435*41edb306SCy Schubert 		if (kmemcpy((char *)buckets, (u_long)nsp->ns_nattab_sz, sz)) {
436*41edb306SCy Schubert 			free(buckets);
437*41edb306SCy Schubert 			return;
438*41edb306SCy Schubert 		}
439*41edb306SCy Schubert 	}
440*41edb306SCy Schubert 
441*41edb306SCy Schubert 	minlen = nsp->ns_side[which].ns_inuse;
442*41edb306SCy Schubert 	totallen = 0;
443*41edb306SCy Schubert 	maxlen = 0;
444*41edb306SCy Schubert 	used = 0;
445*41edb306SCy Schubert 
446*41edb306SCy Schubert 	for (i = 0; i < nsp->ns_nattab_sz; i++) {
447*41edb306SCy Schubert 		if (buckets[i] > maxlen)
448*41edb306SCy Schubert 			maxlen = buckets[i];
449*41edb306SCy Schubert 		if (buckets[i] < minlen)
450*41edb306SCy Schubert 			minlen = buckets[i];
451*41edb306SCy Schubert 		if (buckets[i] != 0)
452*41edb306SCy Schubert 			used++;
453*41edb306SCy Schubert 		totallen += buckets[i];
454*41edb306SCy Schubert 	}
455*41edb306SCy Schubert 
456*41edb306SCy Schubert 	printf("%d%%\thash efficiency %s\n",
457*41edb306SCy Schubert 	       totallen ? used * 100 / totallen : 0, side);
458*41edb306SCy Schubert 	printf("%2.2f%%\tbucket usage %s\n",
459*41edb306SCy Schubert 	       ((float)used / nsp->ns_nattab_sz) * 100.0, side);
460*41edb306SCy Schubert 	printf("%d\tminimal length %s\n", minlen, side);
461*41edb306SCy Schubert 	printf("%d\tmaximal length %s\n", maxlen, side);
462*41edb306SCy Schubert 	printf("%.3f\taverage length %s\n",
463*41edb306SCy Schubert 	       used ? ((float)totallen / used) : 0.0, side);
464*41edb306SCy Schubert 
465*41edb306SCy Schubert 	free(buckets);
466*41edb306SCy Schubert }
467*41edb306SCy Schubert 
468*41edb306SCy Schubert 
469*41edb306SCy Schubert void dostats(fd, nsp, opts, alive, filter)
470*41edb306SCy Schubert 	natstat_t *nsp;
471*41edb306SCy Schubert 	int fd, opts, alive, *filter;
472*41edb306SCy Schubert {
473*41edb306SCy Schubert 	/*
474*41edb306SCy Schubert 	 * Show statistics ?
475*41edb306SCy Schubert 	 */
476*41edb306SCy Schubert 	if (opts & OPT_STAT) {
477*41edb306SCy Schubert 		printnatside("in", &nsp->ns_side[0]);
478*41edb306SCy Schubert 		dotable(nsp, fd, alive, 0, "in");
479*41edb306SCy Schubert 
480*41edb306SCy Schubert 		printnatside("out", &nsp->ns_side[1]);
481*41edb306SCy Schubert 		dotable(nsp, fd, alive, 1, "out");
482*41edb306SCy Schubert 
483*41edb306SCy Schubert 		printf("%lu\tlog successes\n", nsp->ns_side[0].ns_log);
484*41edb306SCy Schubert 		printf("%lu\tlog failures\n", nsp->ns_side[1].ns_log);
485*41edb306SCy Schubert 		printf("%lu\tadded in\n%lu\tadded out\n",
486*41edb306SCy Schubert 			nsp->ns_side[0].ns_added,
487*41edb306SCy Schubert 			nsp->ns_side[1].ns_added);
488*41edb306SCy Schubert 		printf("%u\tactive\n", nsp->ns_active);
489*41edb306SCy Schubert 		printf("%lu\ttransparent adds\n", nsp->ns_addtrpnt);
490*41edb306SCy Schubert 		printf("%lu\tdivert build\n", nsp->ns_divert_build);
491*41edb306SCy Schubert 		printf("%lu\texpired\n", nsp->ns_expire);
492*41edb306SCy Schubert 		printf("%lu\tflush all\n", nsp->ns_flush_all);
493*41edb306SCy Schubert 		printf("%lu\tflush closing\n", nsp->ns_flush_closing);
494*41edb306SCy Schubert 		printf("%lu\tflush queue\n", nsp->ns_flush_queue);
495*41edb306SCy Schubert 		printf("%lu\tflush state\n", nsp->ns_flush_state);
496*41edb306SCy Schubert 		printf("%lu\tflush timeout\n", nsp->ns_flush_timeout);
497*41edb306SCy Schubert 		printf("%lu\thostmap new\n", nsp->ns_hm_new);
498*41edb306SCy Schubert 		printf("%lu\thostmap fails\n", nsp->ns_hm_newfail);
499*41edb306SCy Schubert 		printf("%lu\thostmap add\n", nsp->ns_hm_addref);
500*41edb306SCy Schubert 		printf("%lu\thostmap NULL rule\n", nsp->ns_hm_nullnp);
501*41edb306SCy Schubert 		printf("%lu\tlog ok\n", nsp->ns_log_ok);
502*41edb306SCy Schubert 		printf("%lu\tlog fail\n", nsp->ns_log_fail);
503*41edb306SCy Schubert 		printf("%u\torphan count\n", nsp->ns_orphans);
504*41edb306SCy Schubert 		printf("%u\trule count\n", nsp->ns_rules);
505*41edb306SCy Schubert 		printf("%u\tmap rules\n", nsp->ns_rules_map);
506*41edb306SCy Schubert 		printf("%u\trdr rules\n", nsp->ns_rules_rdr);
507*41edb306SCy Schubert 		printf("%u\twilds\n", nsp->ns_wilds);
508*41edb306SCy Schubert 		if (opts & OPT_VERBOSE)
509*41edb306SCy Schubert 			printf("list %p\n", nsp->ns_list);
510*41edb306SCy Schubert 	}
511*41edb306SCy Schubert 
512*41edb306SCy Schubert 	if (opts & OPT_LIST) {
513*41edb306SCy Schubert 		if (alive)
514*41edb306SCy Schubert 			dostats_live(fd, nsp, opts, filter);
515*41edb306SCy Schubert 		else
516*41edb306SCy Schubert 			dostats_dead(nsp, opts, filter);
517*41edb306SCy Schubert 	}
518*41edb306SCy Schubert }
519*41edb306SCy Schubert 
520*41edb306SCy Schubert 
521*41edb306SCy Schubert /*
522*41edb306SCy Schubert  * Display NAT statistics.
523*41edb306SCy Schubert  */
524*41edb306SCy Schubert void dostats_live(fd, nsp, opts, filter)
525*41edb306SCy Schubert 	natstat_t *nsp;
526*41edb306SCy Schubert 	int fd, opts, *filter;
527*41edb306SCy Schubert {
528*41edb306SCy Schubert 	ipfgeniter_t iter;
529*41edb306SCy Schubert 	char buffer[2000];
530*41edb306SCy Schubert 	ipfobj_t obj;
531*41edb306SCy Schubert 	ipnat_t	*ipn;
532*41edb306SCy Schubert 	nat_t nat;
533*41edb306SCy Schubert 	int i;
534*41edb306SCy Schubert 
535*41edb306SCy Schubert 	bzero((char *)&obj, sizeof(obj));
536*41edb306SCy Schubert 	obj.ipfo_rev = IPFILTER_VERSION;
537*41edb306SCy Schubert 	obj.ipfo_type = IPFOBJ_GENITER;
538*41edb306SCy Schubert 	obj.ipfo_size = sizeof(iter);
539*41edb306SCy Schubert 	obj.ipfo_ptr = &iter;
540*41edb306SCy Schubert 
541*41edb306SCy Schubert 	iter.igi_type = IPFGENITER_IPNAT;
542*41edb306SCy Schubert 	iter.igi_nitems = 1;
543*41edb306SCy Schubert 	iter.igi_data = buffer;
544*41edb306SCy Schubert 	ipn = (ipnat_t *)buffer;
545*41edb306SCy Schubert 
546*41edb306SCy Schubert 	/*
547*41edb306SCy Schubert 	 * Show list of NAT rules and NAT sessions ?
548*41edb306SCy Schubert 	 */
549*41edb306SCy Schubert 	if (nat_fields == NULL) {
550*41edb306SCy Schubert 		printf("List of active MAP/Redirect filters:\n");
551*41edb306SCy Schubert 		while (nsp->ns_list) {
552*41edb306SCy Schubert 			if (ioctl(fd, SIOCGENITER, &obj) == -1)
553*41edb306SCy Schubert 				break;
554*41edb306SCy Schubert 			if (opts & OPT_HITS)
555*41edb306SCy Schubert 				printf("%lu ", ipn->in_hits);
556*41edb306SCy Schubert 			printnat(ipn, opts & (OPT_DEBUG|OPT_VERBOSE));
557*41edb306SCy Schubert 			nsp->ns_list = ipn->in_next;
558*41edb306SCy Schubert 		}
559*41edb306SCy Schubert 	}
560*41edb306SCy Schubert 
561*41edb306SCy Schubert 	if (nat_fields == NULL) {
562*41edb306SCy Schubert 		printf("\nList of active sessions:\n");
563*41edb306SCy Schubert 
564*41edb306SCy Schubert 	} else if (nohdrfields == 0) {
565*41edb306SCy Schubert 		for (i = 0; nat_fields[i].w_value != 0; i++) {
566*41edb306SCy Schubert 			printfieldhdr(natfields, nat_fields + i);
567*41edb306SCy Schubert 			if (nat_fields[i + 1].w_value != 0)
568*41edb306SCy Schubert 				printf("\t");
569*41edb306SCy Schubert 		}
570*41edb306SCy Schubert 		printf("\n");
571*41edb306SCy Schubert 	}
572*41edb306SCy Schubert 
573*41edb306SCy Schubert 	i = IPFGENITER_IPNAT;
574*41edb306SCy Schubert 	(void) ioctl(fd,SIOCIPFDELTOK, &i);
575*41edb306SCy Schubert 
576*41edb306SCy Schubert 
577*41edb306SCy Schubert 	iter.igi_type = IPFGENITER_NAT;
578*41edb306SCy Schubert 	iter.igi_nitems = 1;
579*41edb306SCy Schubert 	iter.igi_data = &nat;
580*41edb306SCy Schubert 
581*41edb306SCy Schubert 	while (nsp->ns_instances != NULL) {
582*41edb306SCy Schubert 		if (ioctl(fd, SIOCGENITER, &obj) == -1)
583*41edb306SCy Schubert 			break;
584*41edb306SCy Schubert 		if ((filter != NULL) && (nat_matcharray(&nat, filter) == 0))
585*41edb306SCy Schubert 			continue;
586*41edb306SCy Schubert 		if (nat_fields != NULL) {
587*41edb306SCy Schubert 			for (i = 0; nat_fields[i].w_value != 0; i++) {
588*41edb306SCy Schubert 				printnatfield(&nat, nat_fields[i].w_value);
589*41edb306SCy Schubert 				if (nat_fields[i + 1].w_value != 0)
590*41edb306SCy Schubert 					printf("\t");
591*41edb306SCy Schubert 			}
592*41edb306SCy Schubert 			printf("\n");
593*41edb306SCy Schubert 		} else {
594*41edb306SCy Schubert 			printactivenat(&nat, opts, nsp->ns_ticks);
595*41edb306SCy Schubert 			if (nat.nat_aps) {
596*41edb306SCy Schubert 				int proto;
597*41edb306SCy Schubert 
598*41edb306SCy Schubert 				if (nat.nat_dir & NAT_OUTBOUND)
599*41edb306SCy Schubert 					proto = nat.nat_pr[1];
600*41edb306SCy Schubert 				else
601*41edb306SCy Schubert 					proto = nat.nat_pr[0];
602*41edb306SCy Schubert 				printaps(nat.nat_aps, opts, proto);
603*41edb306SCy Schubert 			}
604*41edb306SCy Schubert 		}
605*41edb306SCy Schubert 		nsp->ns_instances = nat.nat_next;
606*41edb306SCy Schubert 	}
607*41edb306SCy Schubert 
608*41edb306SCy Schubert 	if (opts & OPT_VERBOSE)
609*41edb306SCy Schubert 		showhostmap_live(fd, nsp);
610*41edb306SCy Schubert 
611*41edb306SCy Schubert 	i = IPFGENITER_NAT;
612*41edb306SCy Schubert 	(void) ioctl(fd,SIOCIPFDELTOK, &i);
613*41edb306SCy Schubert }
614*41edb306SCy Schubert 
615*41edb306SCy Schubert 
616*41edb306SCy Schubert /*
617*41edb306SCy Schubert  * Display the active host mapping table.
618*41edb306SCy Schubert  */
619*41edb306SCy Schubert void showhostmap_dead(nsp)
620*41edb306SCy Schubert 	natstat_t *nsp;
621*41edb306SCy Schubert {
622*41edb306SCy Schubert 	hostmap_t hm, *hmp, **maptable;
623*41edb306SCy Schubert 	u_int hv;
624*41edb306SCy Schubert 
625*41edb306SCy Schubert 	printf("\nList of active host mappings:\n");
626*41edb306SCy Schubert 
627*41edb306SCy Schubert 	maptable = (hostmap_t **)malloc(sizeof(hostmap_t *) *
628*41edb306SCy Schubert 					nsp->ns_hostmap_sz);
629*41edb306SCy Schubert 	if (kmemcpy((char *)maptable, (u_long)nsp->ns_maptable,
630*41edb306SCy Schubert 		    sizeof(hostmap_t *) * nsp->ns_hostmap_sz)) {
631*41edb306SCy Schubert 		perror("kmemcpy (maptable)");
632*41edb306SCy Schubert 		return;
633*41edb306SCy Schubert 	}
634*41edb306SCy Schubert 
635*41edb306SCy Schubert 	for (hv = 0; hv < nsp->ns_hostmap_sz; hv++) {
636*41edb306SCy Schubert 		hmp = maptable[hv];
637*41edb306SCy Schubert 
638*41edb306SCy Schubert 		while (hmp) {
639*41edb306SCy Schubert 			if (kmemcpy((char *)&hm, (u_long)hmp, sizeof(hm))) {
640*41edb306SCy Schubert 				perror("kmemcpy (hostmap)");
641*41edb306SCy Schubert 				return;
642*41edb306SCy Schubert 			}
643*41edb306SCy Schubert 
644*41edb306SCy Schubert 			printhostmap(&hm, hv);
645*41edb306SCy Schubert 			hmp = hm.hm_next;
646*41edb306SCy Schubert 		}
647*41edb306SCy Schubert 	}
648*41edb306SCy Schubert 	free(maptable);
649*41edb306SCy Schubert }
650*41edb306SCy Schubert 
651*41edb306SCy Schubert 
652*41edb306SCy Schubert /*
653*41edb306SCy Schubert  * Display the active host mapping table.
654*41edb306SCy Schubert  */
655*41edb306SCy Schubert void showhostmap_live(fd, nsp)
656*41edb306SCy Schubert 	int fd;
657*41edb306SCy Schubert 	natstat_t *nsp;
658*41edb306SCy Schubert {
659*41edb306SCy Schubert 	ipfgeniter_t iter;
660*41edb306SCy Schubert 	hostmap_t hm;
661*41edb306SCy Schubert 	ipfobj_t obj;
662*41edb306SCy Schubert 	int i;
663*41edb306SCy Schubert 
664*41edb306SCy Schubert 	bzero((char *)&obj, sizeof(obj));
665*41edb306SCy Schubert 	obj.ipfo_rev = IPFILTER_VERSION;
666*41edb306SCy Schubert 	obj.ipfo_type = IPFOBJ_GENITER;
667*41edb306SCy Schubert 	obj.ipfo_size = sizeof(iter);
668*41edb306SCy Schubert 	obj.ipfo_ptr = &iter;
669*41edb306SCy Schubert 
670*41edb306SCy Schubert 	iter.igi_type = IPFGENITER_HOSTMAP;
671*41edb306SCy Schubert 	iter.igi_nitems = 1;
672*41edb306SCy Schubert 	iter.igi_data = &hm;
673*41edb306SCy Schubert 
674*41edb306SCy Schubert 	printf("\nList of active host mappings:\n");
675*41edb306SCy Schubert 
676*41edb306SCy Schubert 	while (nsp->ns_maplist != NULL) {
677*41edb306SCy Schubert 		if (ioctl(fd, SIOCGENITER, &obj) == -1)
678*41edb306SCy Schubert 			break;
679*41edb306SCy Schubert 		printhostmap(&hm, hm.hm_hv);
680*41edb306SCy Schubert 		nsp->ns_maplist = hm.hm_next;
681*41edb306SCy Schubert 	}
682*41edb306SCy Schubert 
683*41edb306SCy Schubert 	i = IPFGENITER_HOSTMAP;
684*41edb306SCy Schubert 	(void) ioctl(fd,SIOCIPFDELTOK, &i);
685*41edb306SCy Schubert }
686*41edb306SCy Schubert 
687*41edb306SCy Schubert 
688*41edb306SCy Schubert int nat_matcharray(nat, array)
689*41edb306SCy Schubert 	nat_t *nat;
690*41edb306SCy Schubert 	int *array;
691*41edb306SCy Schubert {
692*41edb306SCy Schubert 	int i, n, *x, rv, p;
693*41edb306SCy Schubert 	ipfexp_t *e;
694*41edb306SCy Schubert 
695*41edb306SCy Schubert 	rv = 0;
696*41edb306SCy Schubert 	n = array[0];
697*41edb306SCy Schubert 	x = array + 1;
698*41edb306SCy Schubert 
699*41edb306SCy Schubert 	for (; n > 0; x += 3 + x[3], rv = 0) {
700*41edb306SCy Schubert 		e = (ipfexp_t *)x;
701*41edb306SCy Schubert 		if (e->ipfe_cmd == IPF_EXP_END)
702*41edb306SCy Schubert 			break;
703*41edb306SCy Schubert 		n -= e->ipfe_size;
704*41edb306SCy Schubert 
705*41edb306SCy Schubert 		p = e->ipfe_cmd >> 16;
706*41edb306SCy Schubert 		if ((p != 0) && (p != nat->nat_pr[1]))
707*41edb306SCy Schubert 			break;
708*41edb306SCy Schubert 
709*41edb306SCy Schubert 		switch (e->ipfe_cmd)
710*41edb306SCy Schubert 		{
711*41edb306SCy Schubert 		case IPF_EXP_IP_PR :
712*41edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
713*41edb306SCy Schubert 				rv |= (nat->nat_pr[1] == e->ipfe_arg0[i]);
714*41edb306SCy Schubert 			}
715*41edb306SCy Schubert 			break;
716*41edb306SCy Schubert 
717*41edb306SCy Schubert 		case IPF_EXP_IP_SRCADDR :
718*41edb306SCy Schubert 			if (nat->nat_v[0] != 4)
719*41edb306SCy Schubert 				break;
720*41edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
721*41edb306SCy Schubert 				rv |= ((nat->nat_osrcaddr &
722*41edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
723*41edb306SCy Schubert 				       e->ipfe_arg0[i * 2]) ||
724*41edb306SCy Schubert 				      ((nat->nat_nsrcaddr &
725*41edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
726*41edb306SCy Schubert 				       e->ipfe_arg0[i * 2]);
727*41edb306SCy Schubert 			}
728*41edb306SCy Schubert 			break;
729*41edb306SCy Schubert 
730*41edb306SCy Schubert 		case IPF_EXP_IP_DSTADDR :
731*41edb306SCy Schubert 			if (nat->nat_v[0] != 4)
732*41edb306SCy Schubert 				break;
733*41edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
734*41edb306SCy Schubert 				rv |= ((nat->nat_odstaddr &
735*41edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
736*41edb306SCy Schubert 				       e->ipfe_arg0[i * 2]) ||
737*41edb306SCy Schubert 				      ((nat->nat_ndstaddr &
738*41edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
739*41edb306SCy Schubert 				       e->ipfe_arg0[i * 2]);
740*41edb306SCy Schubert 			}
741*41edb306SCy Schubert 			break;
742*41edb306SCy Schubert 
743*41edb306SCy Schubert 		case IPF_EXP_IP_ADDR :
744*41edb306SCy Schubert 			if (nat->nat_v[0] != 4)
745*41edb306SCy Schubert 				break;
746*41edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
747*41edb306SCy Schubert 				rv |= ((nat->nat_osrcaddr &
748*41edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
749*41edb306SCy Schubert 				       e->ipfe_arg0[i * 2]) ||
750*41edb306SCy Schubert 				      ((nat->nat_nsrcaddr &
751*41edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
752*41edb306SCy Schubert 				       e->ipfe_arg0[i * 2]) ||
753*41edb306SCy Schubert 				     ((nat->nat_odstaddr &
754*41edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
755*41edb306SCy Schubert 				       e->ipfe_arg0[i * 2]) ||
756*41edb306SCy Schubert 				     ((nat->nat_ndstaddr &
757*41edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
758*41edb306SCy Schubert 				       e->ipfe_arg0[i * 2]);
759*41edb306SCy Schubert 			}
760*41edb306SCy Schubert 			break;
761*41edb306SCy Schubert 
762*41edb306SCy Schubert #ifdef USE_INET6
763*41edb306SCy Schubert 		case IPF_EXP_IP6_SRCADDR :
764*41edb306SCy Schubert 			if (nat->nat_v[0] != 6)
765*41edb306SCy Schubert 				break;
766*41edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
767*41edb306SCy Schubert 				rv |= IP6_MASKEQ(&nat->nat_osrc6,
768*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
769*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]) ||
770*41edb306SCy Schubert 				      IP6_MASKEQ(&nat->nat_nsrc6,
771*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
772*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]);
773*41edb306SCy Schubert 			}
774*41edb306SCy Schubert 			break;
775*41edb306SCy Schubert 
776*41edb306SCy Schubert 		case IPF_EXP_IP6_DSTADDR :
777*41edb306SCy Schubert 			if (nat->nat_v[0] != 6)
778*41edb306SCy Schubert 				break;
779*41edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
780*41edb306SCy Schubert 				rv |= IP6_MASKEQ(&nat->nat_odst6,
781*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
782*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]) ||
783*41edb306SCy Schubert 				      IP6_MASKEQ(&nat->nat_ndst6,
784*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
785*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]);
786*41edb306SCy Schubert 			}
787*41edb306SCy Schubert 			break;
788*41edb306SCy Schubert 
789*41edb306SCy Schubert 		case IPF_EXP_IP6_ADDR :
790*41edb306SCy Schubert 			if (nat->nat_v[0] != 6)
791*41edb306SCy Schubert 				break;
792*41edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
793*41edb306SCy Schubert 				rv |= IP6_MASKEQ(&nat->nat_osrc6,
794*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
795*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]) ||
796*41edb306SCy Schubert 				      IP6_MASKEQ(&nat->nat_nsrc6,
797*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
798*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]) ||
799*41edb306SCy Schubert 				      IP6_MASKEQ(&nat->nat_odst6,
800*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
801*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]) ||
802*41edb306SCy Schubert 				      IP6_MASKEQ(&nat->nat_ndst6,
803*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
804*41edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]);
805*41edb306SCy Schubert 			}
806*41edb306SCy Schubert 			break;
807*41edb306SCy Schubert #endif
808*41edb306SCy Schubert 
809*41edb306SCy Schubert 		case IPF_EXP_UDP_PORT :
810*41edb306SCy Schubert 		case IPF_EXP_TCP_PORT :
811*41edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
812*41edb306SCy Schubert 				rv |= (nat->nat_osport == e->ipfe_arg0[i]) ||
813*41edb306SCy Schubert 				      (nat->nat_nsport == e->ipfe_arg0[i]) ||
814*41edb306SCy Schubert 				      (nat->nat_odport == e->ipfe_arg0[i]) ||
815*41edb306SCy Schubert 				      (nat->nat_ndport == e->ipfe_arg0[i]);
816*41edb306SCy Schubert 			}
817*41edb306SCy Schubert 			break;
818*41edb306SCy Schubert 
819*41edb306SCy Schubert 		case IPF_EXP_UDP_SPORT :
820*41edb306SCy Schubert 		case IPF_EXP_TCP_SPORT :
821*41edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
822*41edb306SCy Schubert 				rv |= (nat->nat_osport == e->ipfe_arg0[i]) ||
823*41edb306SCy Schubert 				      (nat->nat_nsport == e->ipfe_arg0[i]);
824*41edb306SCy Schubert 			}
825*41edb306SCy Schubert 			break;
826*41edb306SCy Schubert 
827*41edb306SCy Schubert 		case IPF_EXP_UDP_DPORT :
828*41edb306SCy Schubert 		case IPF_EXP_TCP_DPORT :
829*41edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
830*41edb306SCy Schubert 				rv |= (nat->nat_odport == e->ipfe_arg0[i]) ||
831*41edb306SCy Schubert 				      (nat->nat_ndport == e->ipfe_arg0[i]);
832*41edb306SCy Schubert 			}
833*41edb306SCy Schubert 			break;
834*41edb306SCy Schubert 		}
835*41edb306SCy Schubert 		rv ^= e->ipfe_not;
836*41edb306SCy Schubert 
837*41edb306SCy Schubert 		if (rv == 0)
838*41edb306SCy Schubert 			break;
839*41edb306SCy Schubert 	}
840*41edb306SCy Schubert 
841*41edb306SCy Schubert 	return rv;
842*41edb306SCy Schubert }
843