xref: /freebsd/sbin/ipf/ipnat/ipnat.c (revision efeb8bffe34422937c7f8df836afb5b817366d16)
141edb306SCy Schubert /*	$FreeBSD$	*/
241edb306SCy Schubert 
341edb306SCy Schubert /*
441edb306SCy Schubert  * Copyright (C) 2012 by Darren Reed.
541edb306SCy Schubert  *
641edb306SCy Schubert  * See the IPFILTER.LICENCE file for details on licencing.
741edb306SCy Schubert  *
841edb306SCy Schubert  * Added redirect stuff and a variety of bug fixes. (mcn@EnGarde.com)
941edb306SCy Schubert  */
1041edb306SCy Schubert #include <stdio.h>
1141edb306SCy Schubert #include <string.h>
1241edb306SCy Schubert #include <fcntl.h>
1341edb306SCy Schubert #include <errno.h>
1441edb306SCy Schubert #include <sys/types.h>
1541edb306SCy Schubert #if !defined(__SVR4)
1641edb306SCy Schubert #include <strings.h>
1741edb306SCy Schubert #else
1841edb306SCy Schubert #include <sys/byteorder.h>
1941edb306SCy Schubert #endif
2041edb306SCy Schubert #include <sys/time.h>
2141edb306SCy Schubert #include <sys/param.h>
2241edb306SCy Schubert #include <stdlib.h>
2341edb306SCy Schubert #include <unistd.h>
2441edb306SCy Schubert #include <stddef.h>
2541edb306SCy Schubert #include <sys/file.h>
2641edb306SCy Schubert #define _KERNEL
2741edb306SCy Schubert #include <sys/uio.h>
2841edb306SCy Schubert #undef _KERNEL
2941edb306SCy Schubert #include <sys/socket.h>
3041edb306SCy Schubert #include <sys/ioctl.h>
3141edb306SCy Schubert #if defined(sun) && defined(__SVR4)
3241edb306SCy Schubert # include <sys/ioccom.h>
3341edb306SCy Schubert # include <sys/sysmacros.h>
3441edb306SCy Schubert #endif
3541edb306SCy Schubert #include <netinet/in.h>
3641edb306SCy Schubert #include <netinet/in_systm.h>
3741edb306SCy Schubert #include <netinet/ip.h>
3841edb306SCy Schubert #include <netinet/tcp.h>
3941edb306SCy Schubert #include <net/if.h>
4041edb306SCy Schubert #include <netdb.h>
4141edb306SCy Schubert #include <arpa/nameser.h>
4241edb306SCy Schubert #include <arpa/inet.h>
4341edb306SCy Schubert #include <resolv.h>
4441edb306SCy Schubert #include <ctype.h>
4541edb306SCy Schubert # include <nlist.h>
4641edb306SCy Schubert #include "ipf.h"
4741edb306SCy Schubert #include "netinet/ipl.h"
4841edb306SCy Schubert #include "kmem.h"
4941edb306SCy Schubert 
5041edb306SCy Schubert 
5141edb306SCy Schubert # define	STRERROR(x)	strerror(x)
5241edb306SCy Schubert 
5341edb306SCy Schubert #if !defined(lint)
5441edb306SCy Schubert static const char sccsid[] ="@(#)ipnat.c	1.9 6/5/96 (C) 1993 Darren Reed";
5541edb306SCy Schubert static const char rcsid[] = "@(#)$Id$";
5641edb306SCy Schubert #endif
5741edb306SCy Schubert 
5841edb306SCy Schubert 
5941edb306SCy Schubert #if	SOLARIS
6041edb306SCy Schubert #define	bzero(a,b)	memset(a,0,b)
6141edb306SCy Schubert #endif
6241edb306SCy Schubert int	use_inet6 = 0;
6341edb306SCy Schubert 
6441edb306SCy Schubert extern	char	*optarg;
6541edb306SCy Schubert 
6641edb306SCy Schubert void	dostats(int, natstat_t *, int, int, int *);
6741edb306SCy Schubert void	dotable(natstat_t *, int, int, int, char *);
6841edb306SCy Schubert void	flushtable(int, int, int *);
6941edb306SCy Schubert void	usage(char *);
7041edb306SCy Schubert int	main(int, char*[]);
7141edb306SCy Schubert void	showhostmap(natstat_t *nsp);
7241edb306SCy Schubert void	natstat_dead(natstat_t *, char *);
7341edb306SCy Schubert void	dostats_live(int, natstat_t *, int, int *);
7441edb306SCy Schubert void	showhostmap_dead(natstat_t *);
7541edb306SCy Schubert void	showhostmap_live(int, natstat_t *);
7641edb306SCy Schubert void	dostats_dead(natstat_t *, int, int *);
7741edb306SCy Schubert int	nat_matcharray(nat_t *, int *);
7841edb306SCy Schubert 
7941edb306SCy Schubert int		opts;
8041edb306SCy Schubert int		nohdrfields = 0;
8141edb306SCy Schubert wordtab_t	*nat_fields = NULL;
8241edb306SCy Schubert 
83*efeb8bffSCy Schubert void
84*efeb8bffSCy Schubert usage(char *name)
8541edb306SCy Schubert {
8641edb306SCy Schubert 	fprintf(stderr, "Usage: %s [-CFhlnrRsv] [-f filename]\n", name);
8741edb306SCy Schubert 	exit(1);
8841edb306SCy Schubert }
8941edb306SCy Schubert 
9041edb306SCy Schubert 
91*efeb8bffSCy Schubert int
92*efeb8bffSCy Schubert main(int argc, char *argv[])
9341edb306SCy Schubert {
9441edb306SCy Schubert 	int fd, c, mode, *natfilter;
9541edb306SCy Schubert 	char *file, *core, *kernel;
9641edb306SCy Schubert 	natstat_t ns, *nsp;
9741edb306SCy Schubert 	ipfobj_t obj;
9841edb306SCy Schubert 
9941edb306SCy Schubert 	fd = -1;
10041edb306SCy Schubert 	opts = 0;
10141edb306SCy Schubert 	nsp = &ns;
10241edb306SCy Schubert 	file = NULL;
10341edb306SCy Schubert 	core = NULL;
10441edb306SCy Schubert 	kernel = NULL;
10541edb306SCy Schubert 	mode = O_RDWR;
10641edb306SCy Schubert 	natfilter = NULL;
10741edb306SCy Schubert 
10841edb306SCy Schubert 	assigndefined(getenv("IPNAT_PREDEFINED"));
10941edb306SCy Schubert 
11041edb306SCy Schubert 	while ((c = getopt(argc, argv, "CdFf:hlm:M:N:nO:prRsv")) != -1)
11141edb306SCy Schubert 		switch (c)
11241edb306SCy Schubert 		{
11341edb306SCy Schubert 		case 'C' :
11441edb306SCy Schubert 			opts |= OPT_CLEAR;
11541edb306SCy Schubert 			break;
11641edb306SCy Schubert 		case 'd' :
11741edb306SCy Schubert 			opts |= OPT_DEBUG;
11841edb306SCy Schubert 			break;
11941edb306SCy Schubert 		case 'f' :
12041edb306SCy Schubert 			file = optarg;
12141edb306SCy Schubert 			break;
12241edb306SCy Schubert 		case 'F' :
12341edb306SCy Schubert 			opts |= OPT_FLUSH;
12441edb306SCy Schubert 			break;
12541edb306SCy Schubert 		case 'h' :
12641edb306SCy Schubert 			opts |=OPT_HITS;
12741edb306SCy Schubert 			break;
12841edb306SCy Schubert 		case 'l' :
12941edb306SCy Schubert 			opts |= OPT_LIST;
13041edb306SCy Schubert 			mode = O_RDONLY;
13141edb306SCy Schubert 			break;
13241edb306SCy Schubert 		case 'm' :
13341edb306SCy Schubert 			natfilter = parseipfexpr(optarg, NULL);
13441edb306SCy Schubert 			break;
13541edb306SCy Schubert 		case 'M' :
13641edb306SCy Schubert 			core = optarg;
13741edb306SCy Schubert 			break;
13841edb306SCy Schubert 		case 'N' :
13941edb306SCy Schubert 			kernel = optarg;
14041edb306SCy Schubert 			break;
14141edb306SCy Schubert 		case 'n' :
14241edb306SCy Schubert 			opts |= OPT_DONOTHING|OPT_DONTOPEN;
14341edb306SCy Schubert 			mode = O_RDONLY;
14441edb306SCy Schubert 			break;
14541edb306SCy Schubert 		case 'O' :
14641edb306SCy Schubert 			nat_fields = parsefields(natfields, optarg);
14741edb306SCy Schubert 			break;
14841edb306SCy Schubert 		case 'p' :
14941edb306SCy Schubert 			opts |= OPT_PURGE;
15041edb306SCy Schubert 			break;
15141edb306SCy Schubert 		case 'R' :
15241edb306SCy Schubert 			opts |= OPT_NORESOLVE;
15341edb306SCy Schubert 			break;
15441edb306SCy Schubert 		case 'r' :
15541edb306SCy Schubert 			opts |= OPT_REMOVE;
15641edb306SCy Schubert 			break;
15741edb306SCy Schubert 		case 's' :
15841edb306SCy Schubert 			opts |= OPT_STAT;
15941edb306SCy Schubert 			mode = O_RDONLY;
16041edb306SCy Schubert 			break;
16141edb306SCy Schubert 		case 'v' :
16241edb306SCy Schubert 			opts |= OPT_VERBOSE;
16341edb306SCy Schubert 			break;
16441edb306SCy Schubert 		default :
16541edb306SCy Schubert 			usage(argv[0]);
16641edb306SCy Schubert 		}
16741edb306SCy Schubert 
16841edb306SCy Schubert 	if (((opts & OPT_PURGE) != 0) && ((opts & OPT_REMOVE) == 0)) {
16941edb306SCy Schubert 		(void) fprintf(stderr, "%s: -p must be used with -r\n",
17041edb306SCy Schubert 			       argv[0]);
17141edb306SCy Schubert 		exit(1);
17241edb306SCy Schubert 	}
17341edb306SCy Schubert 
17441edb306SCy Schubert 	initparse();
17541edb306SCy Schubert 
17641edb306SCy Schubert 	if ((kernel != NULL) || (core != NULL)) {
17741edb306SCy Schubert 		(void) setgid(getgid());
17841edb306SCy Schubert 		(void) setuid(getuid());
17941edb306SCy Schubert 	}
18041edb306SCy Schubert 
18141edb306SCy Schubert 	if (!(opts & OPT_DONOTHING)) {
18241edb306SCy Schubert 		if (((fd = open(IPNAT_NAME, mode)) == -1) &&
18341edb306SCy Schubert 		    ((fd = open(IPNAT_NAME, O_RDONLY)) == -1)) {
18441edb306SCy Schubert 			(void) fprintf(stderr, "%s: open: %s\n", IPNAT_NAME,
18541edb306SCy Schubert 				STRERROR(errno));
18641edb306SCy Schubert 			exit(1);
18741edb306SCy Schubert 		}
18841edb306SCy Schubert 	}
18941edb306SCy Schubert 
19041edb306SCy Schubert 	bzero((char *)&ns, sizeof(ns));
19141edb306SCy Schubert 
19241edb306SCy Schubert 	if ((opts & OPT_DONOTHING) == 0) {
19341edb306SCy Schubert 		if (checkrev(IPL_NAME) == -1) {
19441edb306SCy Schubert 			fprintf(stderr, "User/kernel version check failed\n");
19541edb306SCy Schubert 			exit(1);
19641edb306SCy Schubert 		}
19741edb306SCy Schubert 	}
19841edb306SCy Schubert 
19941edb306SCy Schubert 	if (!(opts & OPT_DONOTHING) && (kernel == NULL) && (core == NULL)) {
20041edb306SCy Schubert 		bzero((char *)&obj, sizeof(obj));
20141edb306SCy Schubert 		obj.ipfo_rev = IPFILTER_VERSION;
20241edb306SCy Schubert 		obj.ipfo_type = IPFOBJ_NATSTAT;
20341edb306SCy Schubert 		obj.ipfo_size = sizeof(*nsp);
20441edb306SCy Schubert 		obj.ipfo_ptr = (void *)nsp;
20541edb306SCy Schubert 		if (ioctl(fd, SIOCGNATS, &obj) == -1) {
20641edb306SCy Schubert 			ipferror(fd, "ioctl(SIOCGNATS)");
20741edb306SCy Schubert 			exit(1);
20841edb306SCy Schubert 		}
20941edb306SCy Schubert 		(void) setgid(getgid());
21041edb306SCy Schubert 		(void) setuid(getuid());
21141edb306SCy Schubert 	} else if ((kernel != NULL) || (core != NULL)) {
21241edb306SCy Schubert 		if (openkmem(kernel, core) == -1)
21341edb306SCy Schubert 			exit(1);
21441edb306SCy Schubert 
21541edb306SCy Schubert 		natstat_dead(nsp, kernel);
21641edb306SCy Schubert 		if (opts & (OPT_LIST|OPT_STAT))
21741edb306SCy Schubert 			dostats(fd, nsp, opts, 0, natfilter);
21841edb306SCy Schubert 		exit(0);
21941edb306SCy Schubert 	}
22041edb306SCy Schubert 
22141edb306SCy Schubert 	if (opts & (OPT_FLUSH|OPT_CLEAR))
22241edb306SCy Schubert 		flushtable(fd, opts, natfilter);
22341edb306SCy Schubert 	if (file) {
22441edb306SCy Schubert 		return ipnat_parsefile(fd, ipnat_addrule, ioctl, file);
22541edb306SCy Schubert 	}
22641edb306SCy Schubert 	if (opts & (OPT_LIST|OPT_STAT))
22741edb306SCy Schubert 		dostats(fd, nsp, opts, 1, natfilter);
22841edb306SCy Schubert 	return 0;
22941edb306SCy Schubert }
23041edb306SCy Schubert 
23141edb306SCy Schubert 
23241edb306SCy Schubert /*
23341edb306SCy Schubert  * Read NAT statistic information in using a symbol table and memory file
23441edb306SCy Schubert  * rather than doing ioctl's.
23541edb306SCy Schubert  */
236*efeb8bffSCy Schubert void
237*efeb8bffSCy Schubert natstat_dead(natstat_t *nsp, char *kernel)
23841edb306SCy Schubert {
23941edb306SCy Schubert 	struct nlist nat_nlist[10] = {
24041edb306SCy Schubert 		{ "nat_table" },		/* 0 */
24141edb306SCy Schubert 		{ "nat_list" },
24241edb306SCy Schubert 		{ "maptable" },
24341edb306SCy Schubert 		{ "ipf_nattable_sz" },
24441edb306SCy Schubert 		{ "ipf_natrules_sz" },
24541edb306SCy Schubert 		{ "ipf_rdrrules_sz" },		/* 5 */
24641edb306SCy Schubert 		{ "ipf_hostmap_sz" },
24741edb306SCy Schubert 		{ "nat_instances" },
24841edb306SCy Schubert 		{ NULL }
24941edb306SCy Schubert 	};
25041edb306SCy Schubert 	void *tables[2];
25141edb306SCy Schubert 
25241edb306SCy Schubert 	if (nlist(kernel, nat_nlist) == -1) {
25341edb306SCy Schubert 		fprintf(stderr, "nlist error\n");
25441edb306SCy Schubert 		return;
25541edb306SCy Schubert 	}
25641edb306SCy Schubert 
25741edb306SCy Schubert 	/*
25841edb306SCy Schubert 	 * Normally the ioctl copies all of these values into the structure
25941edb306SCy Schubert 	 * for us, before returning it to userland, so here we must copy each
26041edb306SCy Schubert 	 * one in individually.
26141edb306SCy Schubert 	 */
26241edb306SCy Schubert 	kmemcpy((char *)&tables, nat_nlist[0].n_value, sizeof(tables));
26341edb306SCy Schubert 	nsp->ns_side[0].ns_table = tables[0];
26441edb306SCy Schubert 	nsp->ns_side[1].ns_table = tables[1];
26541edb306SCy Schubert 
26641edb306SCy Schubert 	kmemcpy((char *)&nsp->ns_list, nat_nlist[1].n_value,
26741edb306SCy Schubert 		sizeof(nsp->ns_list));
26841edb306SCy Schubert 	kmemcpy((char *)&nsp->ns_maptable, nat_nlist[2].n_value,
26941edb306SCy Schubert 		sizeof(nsp->ns_maptable));
27041edb306SCy Schubert 	kmemcpy((char *)&nsp->ns_nattab_sz, nat_nlist[3].n_value,
27141edb306SCy Schubert 		sizeof(nsp->ns_nattab_sz));
27241edb306SCy Schubert 	kmemcpy((char *)&nsp->ns_rultab_sz, nat_nlist[4].n_value,
27341edb306SCy Schubert 		sizeof(nsp->ns_rultab_sz));
27441edb306SCy Schubert 	kmemcpy((char *)&nsp->ns_rdrtab_sz, nat_nlist[5].n_value,
27541edb306SCy Schubert 		sizeof(nsp->ns_rdrtab_sz));
27641edb306SCy Schubert 	kmemcpy((char *)&nsp->ns_hostmap_sz, nat_nlist[6].n_value,
27741edb306SCy Schubert 		sizeof(nsp->ns_hostmap_sz));
27841edb306SCy Schubert 	kmemcpy((char *)&nsp->ns_instances, nat_nlist[7].n_value,
27941edb306SCy Schubert 		sizeof(nsp->ns_instances));
28041edb306SCy Schubert }
28141edb306SCy Schubert 
28241edb306SCy Schubert 
28341edb306SCy Schubert /*
28441edb306SCy Schubert  * Issue an ioctl to flush either the NAT rules table or the active mapping
28541edb306SCy Schubert  * table or both.
28641edb306SCy Schubert  */
287*efeb8bffSCy Schubert void
288*efeb8bffSCy Schubert flushtable(int fd, int opts, int *match)
28941edb306SCy Schubert {
29041edb306SCy Schubert 	int n = 0;
29141edb306SCy Schubert 
29241edb306SCy Schubert 	if (opts & OPT_FLUSH) {
29341edb306SCy Schubert 		n = 0;
29441edb306SCy Schubert 		if (!(opts & OPT_DONOTHING)) {
29541edb306SCy Schubert 			if (match != NULL) {
29641edb306SCy Schubert 				ipfobj_t obj;
29741edb306SCy Schubert 
29841edb306SCy Schubert 				obj.ipfo_rev = IPFILTER_VERSION;
29941edb306SCy Schubert 				obj.ipfo_size = match[0] * sizeof(int);
30041edb306SCy Schubert 				obj.ipfo_type = IPFOBJ_IPFEXPR;
30141edb306SCy Schubert 				obj.ipfo_ptr = match;
30241edb306SCy Schubert 				if (ioctl(fd, SIOCMATCHFLUSH, &obj) == -1) {
30341edb306SCy Schubert 					ipferror(fd, "ioctl(SIOCMATCHFLUSH)");
30441edb306SCy Schubert 					n = -1;
30541edb306SCy Schubert 				} else {
30641edb306SCy Schubert 					n = obj.ipfo_retval;
30741edb306SCy Schubert 				}
30841edb306SCy Schubert 			} else if (ioctl(fd, SIOCIPFFL, &n) == -1) {
30941edb306SCy Schubert 				ipferror(fd, "ioctl(SIOCIPFFL)");
31041edb306SCy Schubert 				n = -1;
31141edb306SCy Schubert 			}
31241edb306SCy Schubert 		}
31341edb306SCy Schubert 		if (n >= 0)
31441edb306SCy Schubert 			printf("%d entries flushed from NAT table\n", n);
31541edb306SCy Schubert 	}
31641edb306SCy Schubert 
31741edb306SCy Schubert 	if (opts & OPT_CLEAR) {
31841edb306SCy Schubert 		n = 1;
31941edb306SCy Schubert 		if (!(opts & OPT_DONOTHING) && ioctl(fd, SIOCIPFFL, &n) == -1)
32041edb306SCy Schubert 			ipferror(fd, "ioctl(SIOCCNATL)");
32141edb306SCy Schubert 		else
32241edb306SCy Schubert 			printf("%d entries flushed from NAT list\n", n);
32341edb306SCy Schubert 	}
32441edb306SCy Schubert }
32541edb306SCy Schubert 
32641edb306SCy Schubert 
32741edb306SCy Schubert /*
32841edb306SCy Schubert  * Display NAT statistics.
32941edb306SCy Schubert  */
330*efeb8bffSCy Schubert void
331*efeb8bffSCy Schubert dostats_dead(natstat_t *nsp, int opts, int *filter)
33241edb306SCy Schubert {
33341edb306SCy Schubert 	nat_t *np, nat;
33441edb306SCy Schubert 	ipnat_t	ipn;
33541edb306SCy Schubert 	int i;
33641edb306SCy Schubert 
33741edb306SCy Schubert 	if (nat_fields == NULL) {
33841edb306SCy Schubert 		printf("List of active MAP/Redirect filters:\n");
33941edb306SCy Schubert 		while (nsp->ns_list) {
34041edb306SCy Schubert 			if (kmemcpy((char *)&ipn, (long)nsp->ns_list,
34141edb306SCy Schubert 				    sizeof(ipn))) {
34241edb306SCy Schubert 				perror("kmemcpy");
34341edb306SCy Schubert 				break;
34441edb306SCy Schubert 			}
34541edb306SCy Schubert 			if (opts & OPT_HITS)
34641edb306SCy Schubert 				printf("%lu ", ipn.in_hits);
34741edb306SCy Schubert 			printnat(&ipn, opts & (OPT_DEBUG|OPT_VERBOSE));
34841edb306SCy Schubert 			nsp->ns_list = ipn.in_next;
34941edb306SCy Schubert 		}
35041edb306SCy Schubert 	}
35141edb306SCy Schubert 
35241edb306SCy Schubert 	if (nat_fields == NULL) {
35341edb306SCy Schubert 		printf("\nList of active sessions:\n");
35441edb306SCy Schubert 
35541edb306SCy Schubert 	} else if (nohdrfields == 0) {
35641edb306SCy Schubert 		for (i = 0; nat_fields[i].w_value != 0; i++) {
35741edb306SCy Schubert 			printfieldhdr(natfields, nat_fields + i);
35841edb306SCy Schubert 			if (nat_fields[i + 1].w_value != 0)
35941edb306SCy Schubert 				printf("\t");
36041edb306SCy Schubert 		}
36141edb306SCy Schubert 		printf("\n");
36241edb306SCy Schubert 	}
36341edb306SCy Schubert 
36441edb306SCy Schubert 	for (np = nsp->ns_instances; np; np = nat.nat_next) {
36541edb306SCy Schubert 		if (kmemcpy((char *)&nat, (long)np, sizeof(nat)))
36641edb306SCy Schubert 			break;
36741edb306SCy Schubert 		if ((filter != NULL) && (nat_matcharray(&nat, filter) == 0))
36841edb306SCy Schubert 			continue;
36941edb306SCy Schubert 		if (nat_fields != NULL) {
37041edb306SCy Schubert 			for (i = 0; nat_fields[i].w_value != 0; i++) {
37141edb306SCy Schubert 				printnatfield(&nat, nat_fields[i].w_value);
37241edb306SCy Schubert 				if (nat_fields[i + 1].w_value != 0)
37341edb306SCy Schubert 					printf("\t");
37441edb306SCy Schubert 			}
37541edb306SCy Schubert 			printf("\n");
37641edb306SCy Schubert 		} else {
37741edb306SCy Schubert 			printactivenat(&nat, opts, nsp->ns_ticks);
37841edb306SCy Schubert 			if (nat.nat_aps) {
37941edb306SCy Schubert 				int proto;
38041edb306SCy Schubert 
38141edb306SCy Schubert 				if (nat.nat_dir & NAT_OUTBOUND)
38241edb306SCy Schubert 					proto = nat.nat_pr[1];
38341edb306SCy Schubert 				else
38441edb306SCy Schubert 					proto = nat.nat_pr[0];
38541edb306SCy Schubert 				printaps(nat.nat_aps, opts, proto);
38641edb306SCy Schubert 			}
38741edb306SCy Schubert 		}
38841edb306SCy Schubert 	}
38941edb306SCy Schubert 
39041edb306SCy Schubert 	if (opts & OPT_VERBOSE)
39141edb306SCy Schubert 		showhostmap_dead(nsp);
39241edb306SCy Schubert }
39341edb306SCy Schubert 
39441edb306SCy Schubert 
395*efeb8bffSCy Schubert void
396*efeb8bffSCy Schubert dotable(natstat_t *nsp, int fd, int alive, int which, char *side)
39741edb306SCy Schubert {
39841edb306SCy Schubert 	int sz, i, used, maxlen, minlen, totallen;
39941edb306SCy Schubert 	ipftable_t table;
40041edb306SCy Schubert 	u_int *buckets;
40141edb306SCy Schubert 	ipfobj_t obj;
40241edb306SCy Schubert 
40341edb306SCy Schubert 	sz = sizeof(*buckets) * nsp->ns_nattab_sz;
40441edb306SCy Schubert 	buckets = (u_int *)malloc(sz);
40541edb306SCy Schubert 	if (buckets == NULL) {
40641edb306SCy Schubert 		fprintf(stderr,
40741edb306SCy Schubert 			"cannot allocate memory (%d) for buckets\n", sz);
40841edb306SCy Schubert 		return;
40941edb306SCy Schubert 	}
41041edb306SCy Schubert 
41141edb306SCy Schubert 	obj.ipfo_rev = IPFILTER_VERSION;
41241edb306SCy Schubert 	obj.ipfo_type = IPFOBJ_GTABLE;
41341edb306SCy Schubert 	obj.ipfo_size = sizeof(table);
41441edb306SCy Schubert 	obj.ipfo_ptr = &table;
41541edb306SCy Schubert 
41641edb306SCy Schubert 	if (which == 0) {
41741edb306SCy Schubert 		table.ita_type = IPFTABLE_BUCKETS_NATIN;
41841edb306SCy Schubert 	} else if (which == 1) {
41941edb306SCy Schubert 		table.ita_type = IPFTABLE_BUCKETS_NATOUT;
42041edb306SCy Schubert 	}
42141edb306SCy Schubert 	table.ita_table = buckets;
42241edb306SCy Schubert 
42341edb306SCy Schubert 	if (alive) {
42441edb306SCy Schubert 		if (ioctl(fd, SIOCGTABL, &obj) != 0) {
42541edb306SCy Schubert 			ipferror(fd, "SIOCFTABL");
42641edb306SCy Schubert 			free(buckets);
42741edb306SCy Schubert 			return;
42841edb306SCy Schubert 		}
42941edb306SCy Schubert 	} else {
43041edb306SCy Schubert 		if (kmemcpy((char *)buckets, (u_long)nsp->ns_nattab_sz, sz)) {
43141edb306SCy Schubert 			free(buckets);
43241edb306SCy Schubert 			return;
43341edb306SCy Schubert 		}
43441edb306SCy Schubert 	}
43541edb306SCy Schubert 
43641edb306SCy Schubert 	minlen = nsp->ns_side[which].ns_inuse;
43741edb306SCy Schubert 	totallen = 0;
43841edb306SCy Schubert 	maxlen = 0;
43941edb306SCy Schubert 	used = 0;
44041edb306SCy Schubert 
44141edb306SCy Schubert 	for (i = 0; i < nsp->ns_nattab_sz; i++) {
44241edb306SCy Schubert 		if (buckets[i] > maxlen)
44341edb306SCy Schubert 			maxlen = buckets[i];
44441edb306SCy Schubert 		if (buckets[i] < minlen)
44541edb306SCy Schubert 			minlen = buckets[i];
44641edb306SCy Schubert 		if (buckets[i] != 0)
44741edb306SCy Schubert 			used++;
44841edb306SCy Schubert 		totallen += buckets[i];
44941edb306SCy Schubert 	}
45041edb306SCy Schubert 
45141edb306SCy Schubert 	printf("%d%%\thash efficiency %s\n",
45241edb306SCy Schubert 	       totallen ? used * 100 / totallen : 0, side);
45341edb306SCy Schubert 	printf("%2.2f%%\tbucket usage %s\n",
45441edb306SCy Schubert 	       ((float)used / nsp->ns_nattab_sz) * 100.0, side);
45541edb306SCy Schubert 	printf("%d\tminimal length %s\n", minlen, side);
45641edb306SCy Schubert 	printf("%d\tmaximal length %s\n", maxlen, side);
45741edb306SCy Schubert 	printf("%.3f\taverage length %s\n",
45841edb306SCy Schubert 	       used ? ((float)totallen / used) : 0.0, side);
45941edb306SCy Schubert 
46041edb306SCy Schubert 	free(buckets);
46141edb306SCy Schubert }
46241edb306SCy Schubert 
46341edb306SCy Schubert 
464*efeb8bffSCy Schubert void
465*efeb8bffSCy Schubert dostats(int fd, natstat_t *nsp, int opts, int alive, int *filter)
46641edb306SCy Schubert {
46741edb306SCy Schubert 	/*
46841edb306SCy Schubert 	 * Show statistics ?
46941edb306SCy Schubert 	 */
47041edb306SCy Schubert 	if (opts & OPT_STAT) {
47141edb306SCy Schubert 		printnatside("in", &nsp->ns_side[0]);
47241edb306SCy Schubert 		dotable(nsp, fd, alive, 0, "in");
47341edb306SCy Schubert 
47441edb306SCy Schubert 		printnatside("out", &nsp->ns_side[1]);
47541edb306SCy Schubert 		dotable(nsp, fd, alive, 1, "out");
47641edb306SCy Schubert 
47741edb306SCy Schubert 		printf("%lu\tlog successes\n", nsp->ns_side[0].ns_log);
47841edb306SCy Schubert 		printf("%lu\tlog failures\n", nsp->ns_side[1].ns_log);
47941edb306SCy Schubert 		printf("%lu\tadded in\n%lu\tadded out\n",
48041edb306SCy Schubert 			nsp->ns_side[0].ns_added,
48141edb306SCy Schubert 			nsp->ns_side[1].ns_added);
48241edb306SCy Schubert 		printf("%u\tactive\n", nsp->ns_active);
48341edb306SCy Schubert 		printf("%lu\ttransparent adds\n", nsp->ns_addtrpnt);
48441edb306SCy Schubert 		printf("%lu\tdivert build\n", nsp->ns_divert_build);
48541edb306SCy Schubert 		printf("%lu\texpired\n", nsp->ns_expire);
48641edb306SCy Schubert 		printf("%lu\tflush all\n", nsp->ns_flush_all);
48741edb306SCy Schubert 		printf("%lu\tflush closing\n", nsp->ns_flush_closing);
48841edb306SCy Schubert 		printf("%lu\tflush queue\n", nsp->ns_flush_queue);
48941edb306SCy Schubert 		printf("%lu\tflush state\n", nsp->ns_flush_state);
49041edb306SCy Schubert 		printf("%lu\tflush timeout\n", nsp->ns_flush_timeout);
49141edb306SCy Schubert 		printf("%lu\thostmap new\n", nsp->ns_hm_new);
49241edb306SCy Schubert 		printf("%lu\thostmap fails\n", nsp->ns_hm_newfail);
49341edb306SCy Schubert 		printf("%lu\thostmap add\n", nsp->ns_hm_addref);
49441edb306SCy Schubert 		printf("%lu\thostmap NULL rule\n", nsp->ns_hm_nullnp);
49541edb306SCy Schubert 		printf("%lu\tlog ok\n", nsp->ns_log_ok);
49641edb306SCy Schubert 		printf("%lu\tlog fail\n", nsp->ns_log_fail);
49741edb306SCy Schubert 		printf("%u\torphan count\n", nsp->ns_orphans);
49841edb306SCy Schubert 		printf("%u\trule count\n", nsp->ns_rules);
49941edb306SCy Schubert 		printf("%u\tmap rules\n", nsp->ns_rules_map);
50041edb306SCy Schubert 		printf("%u\trdr rules\n", nsp->ns_rules_rdr);
50141edb306SCy Schubert 		printf("%u\twilds\n", nsp->ns_wilds);
50241edb306SCy Schubert 		if (opts & OPT_VERBOSE)
50341edb306SCy Schubert 			printf("list %p\n", nsp->ns_list);
50441edb306SCy Schubert 	}
50541edb306SCy Schubert 
50641edb306SCy Schubert 	if (opts & OPT_LIST) {
50741edb306SCy Schubert 		if (alive)
50841edb306SCy Schubert 			dostats_live(fd, nsp, opts, filter);
50941edb306SCy Schubert 		else
51041edb306SCy Schubert 			dostats_dead(nsp, opts, filter);
51141edb306SCy Schubert 	}
51241edb306SCy Schubert }
51341edb306SCy Schubert 
51441edb306SCy Schubert 
51541edb306SCy Schubert /*
51641edb306SCy Schubert  * Display NAT statistics.
51741edb306SCy Schubert  */
518*efeb8bffSCy Schubert void
519*efeb8bffSCy Schubert dostats_live(int fd, natstat_t *nsp, int opts, int *filter)
52041edb306SCy Schubert {
52141edb306SCy Schubert 	ipfgeniter_t iter;
52241edb306SCy Schubert 	char buffer[2000];
52341edb306SCy Schubert 	ipfobj_t obj;
52441edb306SCy Schubert 	ipnat_t	*ipn;
52541edb306SCy Schubert 	nat_t nat;
52641edb306SCy Schubert 	int i;
52741edb306SCy Schubert 
52841edb306SCy Schubert 	bzero((char *)&obj, sizeof(obj));
52941edb306SCy Schubert 	obj.ipfo_rev = IPFILTER_VERSION;
53041edb306SCy Schubert 	obj.ipfo_type = IPFOBJ_GENITER;
53141edb306SCy Schubert 	obj.ipfo_size = sizeof(iter);
53241edb306SCy Schubert 	obj.ipfo_ptr = &iter;
53341edb306SCy Schubert 
53441edb306SCy Schubert 	iter.igi_type = IPFGENITER_IPNAT;
53541edb306SCy Schubert 	iter.igi_nitems = 1;
53641edb306SCy Schubert 	iter.igi_data = buffer;
53741edb306SCy Schubert 	ipn = (ipnat_t *)buffer;
53841edb306SCy Schubert 
53941edb306SCy Schubert 	/*
54041edb306SCy Schubert 	 * Show list of NAT rules and NAT sessions ?
54141edb306SCy Schubert 	 */
54241edb306SCy Schubert 	if (nat_fields == NULL) {
54341edb306SCy Schubert 		printf("List of active MAP/Redirect filters:\n");
54441edb306SCy Schubert 		while (nsp->ns_list) {
54541edb306SCy Schubert 			if (ioctl(fd, SIOCGENITER, &obj) == -1)
54641edb306SCy Schubert 				break;
54741edb306SCy Schubert 			if (opts & OPT_HITS)
54841edb306SCy Schubert 				printf("%lu ", ipn->in_hits);
54941edb306SCy Schubert 			printnat(ipn, opts & (OPT_DEBUG|OPT_VERBOSE));
55041edb306SCy Schubert 			nsp->ns_list = ipn->in_next;
55141edb306SCy Schubert 		}
55241edb306SCy Schubert 	}
55341edb306SCy Schubert 
55441edb306SCy Schubert 	if (nat_fields == NULL) {
55541edb306SCy Schubert 		printf("\nList of active sessions:\n");
55641edb306SCy Schubert 
55741edb306SCy Schubert 	} else if (nohdrfields == 0) {
55841edb306SCy Schubert 		for (i = 0; nat_fields[i].w_value != 0; i++) {
55941edb306SCy Schubert 			printfieldhdr(natfields, nat_fields + i);
56041edb306SCy Schubert 			if (nat_fields[i + 1].w_value != 0)
56141edb306SCy Schubert 				printf("\t");
56241edb306SCy Schubert 		}
56341edb306SCy Schubert 		printf("\n");
56441edb306SCy Schubert 	}
56541edb306SCy Schubert 
56641edb306SCy Schubert 	i = IPFGENITER_IPNAT;
56741edb306SCy Schubert 	(void) ioctl(fd,SIOCIPFDELTOK, &i);
56841edb306SCy Schubert 
56941edb306SCy Schubert 
57041edb306SCy Schubert 	iter.igi_type = IPFGENITER_NAT;
57141edb306SCy Schubert 	iter.igi_nitems = 1;
57241edb306SCy Schubert 	iter.igi_data = &nat;
57341edb306SCy Schubert 
57441edb306SCy Schubert 	while (nsp->ns_instances != NULL) {
57541edb306SCy Schubert 		if (ioctl(fd, SIOCGENITER, &obj) == -1)
57641edb306SCy Schubert 			break;
57741edb306SCy Schubert 		if ((filter != NULL) && (nat_matcharray(&nat, filter) == 0))
57841edb306SCy Schubert 			continue;
57941edb306SCy Schubert 		if (nat_fields != NULL) {
58041edb306SCy Schubert 			for (i = 0; nat_fields[i].w_value != 0; i++) {
58141edb306SCy Schubert 				printnatfield(&nat, nat_fields[i].w_value);
58241edb306SCy Schubert 				if (nat_fields[i + 1].w_value != 0)
58341edb306SCy Schubert 					printf("\t");
58441edb306SCy Schubert 			}
58541edb306SCy Schubert 			printf("\n");
58641edb306SCy Schubert 		} else {
58741edb306SCy Schubert 			printactivenat(&nat, opts, nsp->ns_ticks);
58841edb306SCy Schubert 			if (nat.nat_aps) {
58941edb306SCy Schubert 				int proto;
59041edb306SCy Schubert 
59141edb306SCy Schubert 				if (nat.nat_dir & NAT_OUTBOUND)
59241edb306SCy Schubert 					proto = nat.nat_pr[1];
59341edb306SCy Schubert 				else
59441edb306SCy Schubert 					proto = nat.nat_pr[0];
59541edb306SCy Schubert 				printaps(nat.nat_aps, opts, proto);
59641edb306SCy Schubert 			}
59741edb306SCy Schubert 		}
59841edb306SCy Schubert 		nsp->ns_instances = nat.nat_next;
59941edb306SCy Schubert 	}
60041edb306SCy Schubert 
60141edb306SCy Schubert 	if (opts & OPT_VERBOSE)
60241edb306SCy Schubert 		showhostmap_live(fd, nsp);
60341edb306SCy Schubert 
60441edb306SCy Schubert 	i = IPFGENITER_NAT;
60541edb306SCy Schubert 	(void) ioctl(fd,SIOCIPFDELTOK, &i);
60641edb306SCy Schubert }
60741edb306SCy Schubert 
60841edb306SCy Schubert 
60941edb306SCy Schubert /*
61041edb306SCy Schubert  * Display the active host mapping table.
61141edb306SCy Schubert  */
612*efeb8bffSCy Schubert void
613*efeb8bffSCy Schubert showhostmap_dead(natstat_t *nsp)
61441edb306SCy Schubert {
61541edb306SCy Schubert 	hostmap_t hm, *hmp, **maptable;
61641edb306SCy Schubert 	u_int hv;
61741edb306SCy Schubert 
61841edb306SCy Schubert 	printf("\nList of active host mappings:\n");
61941edb306SCy Schubert 
62041edb306SCy Schubert 	maptable = (hostmap_t **)malloc(sizeof(hostmap_t *) *
62141edb306SCy Schubert 					nsp->ns_hostmap_sz);
62241edb306SCy Schubert 	if (kmemcpy((char *)maptable, (u_long)nsp->ns_maptable,
62341edb306SCy Schubert 		    sizeof(hostmap_t *) * nsp->ns_hostmap_sz)) {
62441edb306SCy Schubert 		perror("kmemcpy (maptable)");
62541edb306SCy Schubert 		return;
62641edb306SCy Schubert 	}
62741edb306SCy Schubert 
62841edb306SCy Schubert 	for (hv = 0; hv < nsp->ns_hostmap_sz; hv++) {
62941edb306SCy Schubert 		hmp = maptable[hv];
63041edb306SCy Schubert 
63141edb306SCy Schubert 		while (hmp) {
63241edb306SCy Schubert 			if (kmemcpy((char *)&hm, (u_long)hmp, sizeof(hm))) {
63341edb306SCy Schubert 				perror("kmemcpy (hostmap)");
63441edb306SCy Schubert 				return;
63541edb306SCy Schubert 			}
63641edb306SCy Schubert 
63741edb306SCy Schubert 			printhostmap(&hm, hv);
63841edb306SCy Schubert 			hmp = hm.hm_next;
63941edb306SCy Schubert 		}
64041edb306SCy Schubert 	}
64141edb306SCy Schubert 	free(maptable);
64241edb306SCy Schubert }
64341edb306SCy Schubert 
64441edb306SCy Schubert 
64541edb306SCy Schubert /*
64641edb306SCy Schubert  * Display the active host mapping table.
64741edb306SCy Schubert  */
648*efeb8bffSCy Schubert void
649*efeb8bffSCy Schubert showhostmap_live(int fd, natstat_t *nsp)
65041edb306SCy Schubert {
65141edb306SCy Schubert 	ipfgeniter_t iter;
65241edb306SCy Schubert 	hostmap_t hm;
65341edb306SCy Schubert 	ipfobj_t obj;
65441edb306SCy Schubert 	int i;
65541edb306SCy Schubert 
65641edb306SCy Schubert 	bzero((char *)&obj, sizeof(obj));
65741edb306SCy Schubert 	obj.ipfo_rev = IPFILTER_VERSION;
65841edb306SCy Schubert 	obj.ipfo_type = IPFOBJ_GENITER;
65941edb306SCy Schubert 	obj.ipfo_size = sizeof(iter);
66041edb306SCy Schubert 	obj.ipfo_ptr = &iter;
66141edb306SCy Schubert 
66241edb306SCy Schubert 	iter.igi_type = IPFGENITER_HOSTMAP;
66341edb306SCy Schubert 	iter.igi_nitems = 1;
66441edb306SCy Schubert 	iter.igi_data = &hm;
66541edb306SCy Schubert 
66641edb306SCy Schubert 	printf("\nList of active host mappings:\n");
66741edb306SCy Schubert 
66841edb306SCy Schubert 	while (nsp->ns_maplist != NULL) {
66941edb306SCy Schubert 		if (ioctl(fd, SIOCGENITER, &obj) == -1)
67041edb306SCy Schubert 			break;
67141edb306SCy Schubert 		printhostmap(&hm, hm.hm_hv);
67241edb306SCy Schubert 		nsp->ns_maplist = hm.hm_next;
67341edb306SCy Schubert 	}
67441edb306SCy Schubert 
67541edb306SCy Schubert 	i = IPFGENITER_HOSTMAP;
67641edb306SCy Schubert 	(void) ioctl(fd,SIOCIPFDELTOK, &i);
67741edb306SCy Schubert }
67841edb306SCy Schubert 
67941edb306SCy Schubert 
680*efeb8bffSCy Schubert int
681*efeb8bffSCy Schubert nat_matcharray(nat_t *nat, int *array)
68241edb306SCy Schubert {
68341edb306SCy Schubert 	int i, n, *x, rv, p;
68441edb306SCy Schubert 	ipfexp_t *e;
68541edb306SCy Schubert 
68641edb306SCy Schubert 	rv = 0;
68741edb306SCy Schubert 	n = array[0];
68841edb306SCy Schubert 	x = array + 1;
68941edb306SCy Schubert 
69041edb306SCy Schubert 	for (; n > 0; x += 3 + x[3], rv = 0) {
69141edb306SCy Schubert 		e = (ipfexp_t *)x;
69241edb306SCy Schubert 		if (e->ipfe_cmd == IPF_EXP_END)
69341edb306SCy Schubert 			break;
69441edb306SCy Schubert 		n -= e->ipfe_size;
69541edb306SCy Schubert 
69641edb306SCy Schubert 		p = e->ipfe_cmd >> 16;
69741edb306SCy Schubert 		if ((p != 0) && (p != nat->nat_pr[1]))
69841edb306SCy Schubert 			break;
69941edb306SCy Schubert 
70041edb306SCy Schubert 		switch (e->ipfe_cmd)
70141edb306SCy Schubert 		{
70241edb306SCy Schubert 		case IPF_EXP_IP_PR :
70341edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
70441edb306SCy Schubert 				rv |= (nat->nat_pr[1] == e->ipfe_arg0[i]);
70541edb306SCy Schubert 			}
70641edb306SCy Schubert 			break;
70741edb306SCy Schubert 
70841edb306SCy Schubert 		case IPF_EXP_IP_SRCADDR :
70941edb306SCy Schubert 			if (nat->nat_v[0] != 4)
71041edb306SCy Schubert 				break;
71141edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
71241edb306SCy Schubert 				rv |= ((nat->nat_osrcaddr &
71341edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
71441edb306SCy Schubert 				       e->ipfe_arg0[i * 2]) ||
71541edb306SCy Schubert 				      ((nat->nat_nsrcaddr &
71641edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
71741edb306SCy Schubert 				       e->ipfe_arg0[i * 2]);
71841edb306SCy Schubert 			}
71941edb306SCy Schubert 			break;
72041edb306SCy Schubert 
72141edb306SCy Schubert 		case IPF_EXP_IP_DSTADDR :
72241edb306SCy Schubert 			if (nat->nat_v[0] != 4)
72341edb306SCy Schubert 				break;
72441edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
72541edb306SCy Schubert 				rv |= ((nat->nat_odstaddr &
72641edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
72741edb306SCy Schubert 				       e->ipfe_arg0[i * 2]) ||
72841edb306SCy Schubert 				      ((nat->nat_ndstaddr &
72941edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
73041edb306SCy Schubert 				       e->ipfe_arg0[i * 2]);
73141edb306SCy Schubert 			}
73241edb306SCy Schubert 			break;
73341edb306SCy Schubert 
73441edb306SCy Schubert 		case IPF_EXP_IP_ADDR :
73541edb306SCy Schubert 			if (nat->nat_v[0] != 4)
73641edb306SCy Schubert 				break;
73741edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
73841edb306SCy Schubert 				rv |= ((nat->nat_osrcaddr &
73941edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
74041edb306SCy Schubert 				       e->ipfe_arg0[i * 2]) ||
74141edb306SCy Schubert 				      ((nat->nat_nsrcaddr &
74241edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
74341edb306SCy Schubert 				       e->ipfe_arg0[i * 2]) ||
74441edb306SCy Schubert 				     ((nat->nat_odstaddr &
74541edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
74641edb306SCy Schubert 				       e->ipfe_arg0[i * 2]) ||
74741edb306SCy Schubert 				     ((nat->nat_ndstaddr &
74841edb306SCy Schubert 					e->ipfe_arg0[i * 2 + 1]) ==
74941edb306SCy Schubert 				       e->ipfe_arg0[i * 2]);
75041edb306SCy Schubert 			}
75141edb306SCy Schubert 			break;
75241edb306SCy Schubert 
75341edb306SCy Schubert #ifdef USE_INET6
75441edb306SCy Schubert 		case IPF_EXP_IP6_SRCADDR :
75541edb306SCy Schubert 			if (nat->nat_v[0] != 6)
75641edb306SCy Schubert 				break;
75741edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
75841edb306SCy Schubert 				rv |= IP6_MASKEQ(&nat->nat_osrc6,
75941edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
76041edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]) ||
76141edb306SCy Schubert 				      IP6_MASKEQ(&nat->nat_nsrc6,
76241edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
76341edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]);
76441edb306SCy Schubert 			}
76541edb306SCy Schubert 			break;
76641edb306SCy Schubert 
76741edb306SCy Schubert 		case IPF_EXP_IP6_DSTADDR :
76841edb306SCy Schubert 			if (nat->nat_v[0] != 6)
76941edb306SCy Schubert 				break;
77041edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
77141edb306SCy Schubert 				rv |= IP6_MASKEQ(&nat->nat_odst6,
77241edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
77341edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]) ||
77441edb306SCy Schubert 				      IP6_MASKEQ(&nat->nat_ndst6,
77541edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
77641edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]);
77741edb306SCy Schubert 			}
77841edb306SCy Schubert 			break;
77941edb306SCy Schubert 
78041edb306SCy Schubert 		case IPF_EXP_IP6_ADDR :
78141edb306SCy Schubert 			if (nat->nat_v[0] != 6)
78241edb306SCy Schubert 				break;
78341edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
78441edb306SCy Schubert 				rv |= IP6_MASKEQ(&nat->nat_osrc6,
78541edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
78641edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]) ||
78741edb306SCy Schubert 				      IP6_MASKEQ(&nat->nat_nsrc6,
78841edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
78941edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]) ||
79041edb306SCy Schubert 				      IP6_MASKEQ(&nat->nat_odst6,
79141edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
79241edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]) ||
79341edb306SCy Schubert 				      IP6_MASKEQ(&nat->nat_ndst6,
79441edb306SCy Schubert 						 &e->ipfe_arg0[i * 8 + 4],
79541edb306SCy Schubert 						 &e->ipfe_arg0[i * 8]);
79641edb306SCy Schubert 			}
79741edb306SCy Schubert 			break;
79841edb306SCy Schubert #endif
79941edb306SCy Schubert 
80041edb306SCy Schubert 		case IPF_EXP_UDP_PORT :
80141edb306SCy Schubert 		case IPF_EXP_TCP_PORT :
80241edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
80341edb306SCy Schubert 				rv |= (nat->nat_osport == e->ipfe_arg0[i]) ||
80441edb306SCy Schubert 				      (nat->nat_nsport == e->ipfe_arg0[i]) ||
80541edb306SCy Schubert 				      (nat->nat_odport == e->ipfe_arg0[i]) ||
80641edb306SCy Schubert 				      (nat->nat_ndport == e->ipfe_arg0[i]);
80741edb306SCy Schubert 			}
80841edb306SCy Schubert 			break;
80941edb306SCy Schubert 
81041edb306SCy Schubert 		case IPF_EXP_UDP_SPORT :
81141edb306SCy Schubert 		case IPF_EXP_TCP_SPORT :
81241edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
81341edb306SCy Schubert 				rv |= (nat->nat_osport == e->ipfe_arg0[i]) ||
81441edb306SCy Schubert 				      (nat->nat_nsport == e->ipfe_arg0[i]);
81541edb306SCy Schubert 			}
81641edb306SCy Schubert 			break;
81741edb306SCy Schubert 
81841edb306SCy Schubert 		case IPF_EXP_UDP_DPORT :
81941edb306SCy Schubert 		case IPF_EXP_TCP_DPORT :
82041edb306SCy Schubert 			for (i = 0; !rv && i < e->ipfe_narg; i++) {
82141edb306SCy Schubert 				rv |= (nat->nat_odport == e->ipfe_arg0[i]) ||
82241edb306SCy Schubert 				      (nat->nat_ndport == e->ipfe_arg0[i]);
82341edb306SCy Schubert 			}
82441edb306SCy Schubert 			break;
82541edb306SCy Schubert 		}
82641edb306SCy Schubert 		rv ^= e->ipfe_not;
82741edb306SCy Schubert 
82841edb306SCy Schubert 		if (rv == 0)
82941edb306SCy Schubert 			break;
83041edb306SCy Schubert 	}
83141edb306SCy Schubert 
83241edb306SCy Schubert 	return rv;
83341edb306SCy Schubert }
834