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