xref: /freebsd/sbin/ipfw/ipfw2.c (revision 995dc984471c92c03daad19a1d35af46c086ef3e)
1 /*
2  * Copyright (c) 2002-2003 Luigi Rizzo
3  * Copyright (c) 1996 Alex Nash, Paul Traina, Poul-Henning Kamp
4  * Copyright (c) 1994 Ugen J.S.Antsilevich
5  *
6  * Idea and grammar partially left from:
7  * Copyright (c) 1993 Daniel Boulet
8  *
9  * Redistribution and use in source forms, with and without modification,
10  * are permitted provided that this entire comment appears intact.
11  *
12  * Redistribution in binary form may occur without any restrictions.
13  * Obviously, it would be nice if you gave credit where credit is due
14  * but requiring it would be too onerous.
15  *
16  * This software is provided ``AS IS'' without any warranties of any kind.
17  *
18  * NEW command line interface for IP firewall facility
19  *
20  * $FreeBSD$
21  */
22 
23 #include <sys/param.h>
24 #include <sys/mbuf.h>
25 #include <sys/socket.h>
26 #include <sys/sockio.h>
27 #include <sys/sysctl.h>
28 #include <sys/time.h>
29 #include <sys/wait.h>
30 #include <sys/queue.h>
31 
32 #include <ctype.h>
33 #include <err.h>
34 #include <errno.h>
35 #include <grp.h>
36 #include <limits.h>
37 #include <netdb.h>
38 #include <pwd.h>
39 #include <signal.h>
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <stdarg.h>
43 #include <string.h>
44 #include <timeconv.h>	/* XXX do we need this ? */
45 #include <unistd.h>
46 #include <sysexits.h>
47 #include <unistd.h>
48 #include <fcntl.h>
49 
50 #define IPFW_INTERNAL	/* Access to protected structures in ip_fw.h. */
51 
52 #include <net/ethernet.h>
53 #include <net/if.h>
54 #include <net/if_dl.h>
55 #include <net/pfvar.h>
56 #include <net/route.h> /* def. of struct route */
57 #include <netinet/in.h>
58 #include <netinet/in_systm.h>
59 #include <netinet/ip.h>
60 #include <netinet/ip_icmp.h>
61 #include <netinet/icmp6.h>
62 #include <netinet/ip_fw.h>
63 #include <netinet/ip_dummynet.h>
64 #include <netinet/tcp.h>
65 #include <arpa/inet.h>
66 #include <alias.h>
67 
68 int
69 		do_value_as_ip,		/* show table value as IP */
70 		do_resolv,		/* Would try to resolve all */
71 		do_time,		/* Show time stamps */
72 		do_quiet,		/* Be quiet in add and flush */
73 		do_pipe,		/* this cmd refers to a pipe */
74 	        do_nat, 		/* Nat configuration. */
75 		do_sort,		/* field to sort results (0 = no) */
76 		do_dynamic,		/* display dynamic rules */
77 		do_expired,		/* display expired dynamic rules */
78 		do_compact,		/* show rules in compact mode */
79 		do_force,		/* do not ask for confirmation */
80 		use_set,		/* work with specified set number */
81 		show_sets,		/* display rule sets */
82 		test_only,		/* only check syntax */
83 		comment_only,		/* only print action and comment */
84 		verbose;
85 
86 #define	IP_MASK_ALL	0xffffffff
87 /*
88  * the following macro returns an error message if we run out of
89  * arguments.
90  */
91 #define NEED1(msg)      {if (!ac) errx(EX_USAGE, msg);}
92 
93 #define GET_UINT_ARG(arg, min, max, tok, s_x) do {			\
94 	if (!ac)							\
95 		errx(EX_USAGE, "%s: missing argument", match_value(s_x, tok)); \
96 	if (_substrcmp(*av, "tablearg") == 0) {				\
97 		arg = IP_FW_TABLEARG;					\
98 		break;							\
99 	}								\
100 									\
101 	{								\
102 	long val;							\
103 	char *end;							\
104 									\
105 	val = strtol(*av, &end, 10);					\
106 									\
107 	if (!isdigit(**av) || *end != '\0' || (val == 0 && errno == EINVAL)) \
108 		errx(EX_DATAERR, "%s: invalid argument: %s",		\
109 		    match_value(s_x, tok), *av);			\
110 									\
111 	if (errno == ERANGE || val < min || val > max)			\
112 		errx(EX_DATAERR, "%s: argument is out of range (%u..%u): %s", \
113 		    match_value(s_x, tok), min, max, *av);		\
114 									\
115 	if (val == IP_FW_TABLEARG)					\
116 		errx(EX_DATAERR, "%s: illegal argument value: %s",	\
117 		    match_value(s_x, tok), *av);			\
118 	arg = val;							\
119 	}								\
120 } while (0)
121 
122 #define PRINT_UINT_ARG(str, arg) do {					\
123 	if (str != NULL)						\
124 		printf("%s",str);					\
125 	if (arg == IP_FW_TABLEARG)					\
126 		printf("tablearg");					\
127 	else								\
128 		printf("%u", (uint32_t)arg);				\
129 } while (0)
130 
131 /*
132  * _s_x is a structure that stores a string <-> token pairs, used in
133  * various places in the parser. Entries are stored in arrays,
134  * with an entry with s=NULL as terminator.
135  * The search routines are match_token() and match_value().
136  * Often, an element with x=0 contains an error string.
137  *
138  */
139 struct _s_x {
140 	char const *s;
141 	int x;
142 };
143 
144 static struct _s_x f_tcpflags[] = {
145 	{ "syn", TH_SYN },
146 	{ "fin", TH_FIN },
147 	{ "ack", TH_ACK },
148 	{ "psh", TH_PUSH },
149 	{ "rst", TH_RST },
150 	{ "urg", TH_URG },
151 	{ "tcp flag", 0 },
152 	{ NULL,	0 }
153 };
154 
155 static struct _s_x f_tcpopts[] = {
156 	{ "mss",	IP_FW_TCPOPT_MSS },
157 	{ "maxseg",	IP_FW_TCPOPT_MSS },
158 	{ "window",	IP_FW_TCPOPT_WINDOW },
159 	{ "sack",	IP_FW_TCPOPT_SACK },
160 	{ "ts",		IP_FW_TCPOPT_TS },
161 	{ "timestamp",	IP_FW_TCPOPT_TS },
162 	{ "cc",		IP_FW_TCPOPT_CC },
163 	{ "tcp option",	0 },
164 	{ NULL,	0 }
165 };
166 
167 /*
168  * IP options span the range 0 to 255 so we need to remap them
169  * (though in fact only the low 5 bits are significant).
170  */
171 static struct _s_x f_ipopts[] = {
172 	{ "ssrr",	IP_FW_IPOPT_SSRR},
173 	{ "lsrr",	IP_FW_IPOPT_LSRR},
174 	{ "rr",		IP_FW_IPOPT_RR},
175 	{ "ts",		IP_FW_IPOPT_TS},
176 	{ "ip option",	0 },
177 	{ NULL,	0 }
178 };
179 
180 static struct _s_x f_iptos[] = {
181 	{ "lowdelay",	IPTOS_LOWDELAY},
182 	{ "throughput",	IPTOS_THROUGHPUT},
183 	{ "reliability", IPTOS_RELIABILITY},
184 	{ "mincost",	IPTOS_MINCOST},
185 	{ "congestion",	IPTOS_ECN_CE},
186 	{ "ecntransport", IPTOS_ECN_ECT0},
187 	{ "ip tos option", 0},
188 	{ NULL,	0 }
189 };
190 
191 static struct _s_x limit_masks[] = {
192 	{"all",		DYN_SRC_ADDR|DYN_SRC_PORT|DYN_DST_ADDR|DYN_DST_PORT},
193 	{"src-addr",	DYN_SRC_ADDR},
194 	{"src-port",	DYN_SRC_PORT},
195 	{"dst-addr",	DYN_DST_ADDR},
196 	{"dst-port",	DYN_DST_PORT},
197 	{NULL,		0}
198 };
199 
200 /*
201  * we use IPPROTO_ETHERTYPE as a fake protocol id to call the print routines
202  * This is only used in this code.
203  */
204 #define IPPROTO_ETHERTYPE	0x1000
205 static struct _s_x ether_types[] = {
206     /*
207      * Note, we cannot use "-:&/" in the names because they are field
208      * separators in the type specifications. Also, we use s = NULL as
209      * end-delimiter, because a type of 0 can be legal.
210      */
211 	{ "ip",		0x0800 },
212 	{ "ipv4",	0x0800 },
213 	{ "ipv6",	0x86dd },
214 	{ "arp",	0x0806 },
215 	{ "rarp",	0x8035 },
216 	{ "vlan",	0x8100 },
217 	{ "loop",	0x9000 },
218 	{ "trail",	0x1000 },
219 	{ "at",		0x809b },
220 	{ "atalk",	0x809b },
221 	{ "aarp",	0x80f3 },
222 	{ "pppoe_disc",	0x8863 },
223 	{ "pppoe_sess",	0x8864 },
224 	{ "ipx_8022",	0x00E0 },
225 	{ "ipx_8023",	0x0000 },
226 	{ "ipx_ii",	0x8137 },
227 	{ "ipx_snap",	0x8137 },
228 	{ "ipx",	0x8137 },
229 	{ "ns",		0x0600 },
230 	{ NULL,		0 }
231 };
232 
233 static void show_usage(void);
234 
235 enum tokens {
236 	TOK_NULL=0,
237 
238 	TOK_OR,
239 	TOK_NOT,
240 	TOK_STARTBRACE,
241 	TOK_ENDBRACE,
242 
243 	TOK_ACCEPT,
244 	TOK_COUNT,
245 	TOK_PIPE,
246 	TOK_QUEUE,
247 	TOK_DIVERT,
248 	TOK_TEE,
249 	TOK_NETGRAPH,
250 	TOK_NGTEE,
251 	TOK_FORWARD,
252 	TOK_SKIPTO,
253 	TOK_DENY,
254 	TOK_REJECT,
255 	TOK_RESET,
256 	TOK_UNREACH,
257 	TOK_CHECKSTATE,
258 	TOK_NAT,
259 
260 	TOK_ALTQ,
261 	TOK_LOG,
262 	TOK_TAG,
263 	TOK_UNTAG,
264 
265 	TOK_TAGGED,
266 	TOK_UID,
267 	TOK_GID,
268 	TOK_JAIL,
269 	TOK_IN,
270 	TOK_LIMIT,
271 	TOK_KEEPSTATE,
272 	TOK_LAYER2,
273 	TOK_OUT,
274 	TOK_DIVERTED,
275 	TOK_DIVERTEDLOOPBACK,
276 	TOK_DIVERTEDOUTPUT,
277 	TOK_XMIT,
278 	TOK_RECV,
279 	TOK_VIA,
280 	TOK_FRAG,
281 	TOK_IPOPTS,
282 	TOK_IPLEN,
283 	TOK_IPID,
284 	TOK_IPPRECEDENCE,
285 	TOK_IPTOS,
286 	TOK_IPTTL,
287 	TOK_IPVER,
288 	TOK_ESTAB,
289 	TOK_SETUP,
290 	TOK_TCPDATALEN,
291 	TOK_TCPFLAGS,
292 	TOK_TCPOPTS,
293 	TOK_TCPSEQ,
294 	TOK_TCPACK,
295 	TOK_TCPWIN,
296 	TOK_ICMPTYPES,
297 	TOK_MAC,
298 	TOK_MACTYPE,
299 	TOK_VERREVPATH,
300 	TOK_VERSRCREACH,
301 	TOK_ANTISPOOF,
302 	TOK_IPSEC,
303 	TOK_COMMENT,
304 
305 	TOK_PLR,
306 	TOK_NOERROR,
307 	TOK_BUCKETS,
308 	TOK_DSTIP,
309 	TOK_SRCIP,
310 	TOK_DSTPORT,
311 	TOK_SRCPORT,
312 	TOK_ALL,
313 	TOK_MASK,
314 	TOK_BW,
315 	TOK_DELAY,
316 	TOK_RED,
317 	TOK_GRED,
318 	TOK_DROPTAIL,
319 	TOK_PROTO,
320 	TOK_WEIGHT,
321 	TOK_IP,
322 	TOK_IF,
323  	TOK_ALOG,
324  	TOK_DENY_INC,
325  	TOK_SAME_PORTS,
326  	TOK_UNREG_ONLY,
327  	TOK_RESET_ADDR,
328  	TOK_ALIAS_REV,
329  	TOK_PROXY_ONLY,
330 	TOK_REDIR_ADDR,
331 	TOK_REDIR_PORT,
332 	TOK_REDIR_PROTO,
333 
334 	TOK_IPV6,
335 	TOK_FLOWID,
336 	TOK_ICMP6TYPES,
337 	TOK_EXT6HDR,
338 	TOK_DSTIP6,
339 	TOK_SRCIP6,
340 
341 	TOK_IPV4,
342 	TOK_UNREACH6,
343 	TOK_RESET6,
344 };
345 
346 struct _s_x dummynet_params[] = {
347 	{ "plr",		TOK_PLR },
348 	{ "noerror",		TOK_NOERROR },
349 	{ "buckets",		TOK_BUCKETS },
350 	{ "dst-ip",		TOK_DSTIP },
351 	{ "src-ip",		TOK_SRCIP },
352 	{ "dst-port",		TOK_DSTPORT },
353 	{ "src-port",		TOK_SRCPORT },
354 	{ "proto",		TOK_PROTO },
355 	{ "weight",		TOK_WEIGHT },
356 	{ "all",		TOK_ALL },
357 	{ "mask",		TOK_MASK },
358 	{ "droptail",		TOK_DROPTAIL },
359 	{ "red",		TOK_RED },
360 	{ "gred",		TOK_GRED },
361 	{ "bw",			TOK_BW },
362 	{ "bandwidth",		TOK_BW },
363 	{ "delay",		TOK_DELAY },
364 	{ "pipe",		TOK_PIPE },
365 	{ "queue",		TOK_QUEUE },
366 	{ "flow-id",		TOK_FLOWID},
367 	{ "dst-ipv6",		TOK_DSTIP6},
368 	{ "dst-ip6",		TOK_DSTIP6},
369 	{ "src-ipv6",		TOK_SRCIP6},
370 	{ "src-ip6",		TOK_SRCIP6},
371 	{ "dummynet-params",	TOK_NULL },
372 	{ NULL, 0 }	/* terminator */
373 };
374 
375 struct _s_x nat_params[] = {
376 	{ "ip",	                TOK_IP },
377 	{ "if",	                TOK_IF },
378  	{ "log",                TOK_ALOG },
379  	{ "deny_in",	        TOK_DENY_INC },
380  	{ "same_ports",	        TOK_SAME_PORTS },
381  	{ "unreg_only",	        TOK_UNREG_ONLY },
382  	{ "reset",	        TOK_RESET_ADDR },
383  	{ "reverse",	        TOK_ALIAS_REV },
384  	{ "proxy_only",	        TOK_PROXY_ONLY },
385 	{ "redirect_addr",	TOK_REDIR_ADDR },
386 	{ "redirect_port",	TOK_REDIR_PORT },
387 	{ "redirect_proto",	TOK_REDIR_PROTO },
388  	{ NULL, 0 }	/* terminator */
389 };
390 
391 struct _s_x rule_actions[] = {
392 	{ "accept",		TOK_ACCEPT },
393 	{ "pass",		TOK_ACCEPT },
394 	{ "allow",		TOK_ACCEPT },
395 	{ "permit",		TOK_ACCEPT },
396 	{ "count",		TOK_COUNT },
397 	{ "pipe",		TOK_PIPE },
398 	{ "queue",		TOK_QUEUE },
399 	{ "divert",		TOK_DIVERT },
400 	{ "tee",		TOK_TEE },
401 	{ "netgraph",		TOK_NETGRAPH },
402 	{ "ngtee",		TOK_NGTEE },
403 	{ "fwd",		TOK_FORWARD },
404 	{ "forward",		TOK_FORWARD },
405 	{ "skipto",		TOK_SKIPTO },
406 	{ "deny",		TOK_DENY },
407 	{ "drop",		TOK_DENY },
408 	{ "reject",		TOK_REJECT },
409 	{ "reset6",		TOK_RESET6 },
410 	{ "reset",		TOK_RESET },
411 	{ "unreach6",		TOK_UNREACH6 },
412 	{ "unreach",		TOK_UNREACH },
413 	{ "check-state",	TOK_CHECKSTATE },
414 	{ "//",			TOK_COMMENT },
415 	{ "nat",                TOK_NAT },
416 	{ NULL, 0 }	/* terminator */
417 };
418 
419 struct _s_x rule_action_params[] = {
420 	{ "altq",		TOK_ALTQ },
421 	{ "log",		TOK_LOG },
422 	{ "tag",		TOK_TAG },
423 	{ "untag",		TOK_UNTAG },
424 	{ NULL, 0 }	/* terminator */
425 };
426 
427 struct _s_x rule_options[] = {
428 	{ "tagged",		TOK_TAGGED },
429 	{ "uid",		TOK_UID },
430 	{ "gid",		TOK_GID },
431 	{ "jail",		TOK_JAIL },
432 	{ "in",			TOK_IN },
433 	{ "limit",		TOK_LIMIT },
434 	{ "keep-state",		TOK_KEEPSTATE },
435 	{ "bridged",		TOK_LAYER2 },
436 	{ "layer2",		TOK_LAYER2 },
437 	{ "out",		TOK_OUT },
438 	{ "diverted",		TOK_DIVERTED },
439 	{ "diverted-loopback",	TOK_DIVERTEDLOOPBACK },
440 	{ "diverted-output",	TOK_DIVERTEDOUTPUT },
441 	{ "xmit",		TOK_XMIT },
442 	{ "recv",		TOK_RECV },
443 	{ "via",		TOK_VIA },
444 	{ "fragment",		TOK_FRAG },
445 	{ "frag",		TOK_FRAG },
446 	{ "ipoptions",		TOK_IPOPTS },
447 	{ "ipopts",		TOK_IPOPTS },
448 	{ "iplen",		TOK_IPLEN },
449 	{ "ipid",		TOK_IPID },
450 	{ "ipprecedence",	TOK_IPPRECEDENCE },
451 	{ "iptos",		TOK_IPTOS },
452 	{ "ipttl",		TOK_IPTTL },
453 	{ "ipversion",		TOK_IPVER },
454 	{ "ipver",		TOK_IPVER },
455 	{ "estab",		TOK_ESTAB },
456 	{ "established",	TOK_ESTAB },
457 	{ "setup",		TOK_SETUP },
458 	{ "tcpdatalen",		TOK_TCPDATALEN },
459 	{ "tcpflags",		TOK_TCPFLAGS },
460 	{ "tcpflgs",		TOK_TCPFLAGS },
461 	{ "tcpoptions",		TOK_TCPOPTS },
462 	{ "tcpopts",		TOK_TCPOPTS },
463 	{ "tcpseq",		TOK_TCPSEQ },
464 	{ "tcpack",		TOK_TCPACK },
465 	{ "tcpwin",		TOK_TCPWIN },
466 	{ "icmptype",		TOK_ICMPTYPES },
467 	{ "icmptypes",		TOK_ICMPTYPES },
468 	{ "dst-ip",		TOK_DSTIP },
469 	{ "src-ip",		TOK_SRCIP },
470 	{ "dst-port",		TOK_DSTPORT },
471 	{ "src-port",		TOK_SRCPORT },
472 	{ "proto",		TOK_PROTO },
473 	{ "MAC",		TOK_MAC },
474 	{ "mac",		TOK_MAC },
475 	{ "mac-type",		TOK_MACTYPE },
476 	{ "verrevpath",		TOK_VERREVPATH },
477 	{ "versrcreach",	TOK_VERSRCREACH },
478 	{ "antispoof",		TOK_ANTISPOOF },
479 	{ "ipsec",		TOK_IPSEC },
480 	{ "icmp6type",		TOK_ICMP6TYPES },
481 	{ "icmp6types",		TOK_ICMP6TYPES },
482 	{ "ext6hdr",		TOK_EXT6HDR},
483 	{ "flow-id",		TOK_FLOWID},
484 	{ "ipv6",		TOK_IPV6},
485 	{ "ip6",		TOK_IPV6},
486 	{ "ipv4",		TOK_IPV4},
487 	{ "ip4",		TOK_IPV4},
488 	{ "dst-ipv6",		TOK_DSTIP6},
489 	{ "dst-ip6",		TOK_DSTIP6},
490 	{ "src-ipv6",		TOK_SRCIP6},
491 	{ "src-ip6",		TOK_SRCIP6},
492 	{ "//",			TOK_COMMENT },
493 
494 	{ "not",		TOK_NOT },		/* pseudo option */
495 	{ "!", /* escape ? */	TOK_NOT },		/* pseudo option */
496 	{ "or",			TOK_OR },		/* pseudo option */
497 	{ "|", /* escape */	TOK_OR },		/* pseudo option */
498 	{ "{",			TOK_STARTBRACE },	/* pseudo option */
499 	{ "(",			TOK_STARTBRACE },	/* pseudo option */
500 	{ "}",			TOK_ENDBRACE },		/* pseudo option */
501 	{ ")",			TOK_ENDBRACE },		/* pseudo option */
502 	{ NULL, 0 }	/* terminator */
503 };
504 
505 #define	TABLEARG	"tablearg"
506 
507 static __inline uint64_t
508 align_uint64(uint64_t *pll) {
509 	uint64_t ret;
510 
511 	bcopy (pll, &ret, sizeof(ret));
512 	return ret;
513 }
514 
515 /*
516  * conditionally runs the command.
517  */
518 static int
519 do_cmd(int optname, void *optval, uintptr_t optlen)
520 {
521 	static int s = -1;	/* the socket */
522 	int i;
523 
524 	if (test_only)
525 		return 0;
526 
527 	if (s == -1)
528 		s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
529 	if (s < 0)
530 		err(EX_UNAVAILABLE, "socket");
531 
532 	if (optname == IP_FW_GET || optname == IP_DUMMYNET_GET ||
533 	    optname == IP_FW_ADD || optname == IP_FW_TABLE_LIST ||
534 	    optname == IP_FW_TABLE_GETSIZE ||
535 	    optname == IP_FW_NAT_GET_CONFIG ||
536 	    optname == IP_FW_NAT_GET_LOG)
537 		i = getsockopt(s, IPPROTO_IP, optname, optval,
538 			(socklen_t *)optlen);
539 	else
540 		i = setsockopt(s, IPPROTO_IP, optname, optval, optlen);
541 	return i;
542 }
543 
544 /**
545  * match_token takes a table and a string, returns the value associated
546  * with the string (-1 in case of failure).
547  */
548 static int
549 match_token(struct _s_x *table, char *string)
550 {
551 	struct _s_x *pt;
552 	uint i = strlen(string);
553 
554 	for (pt = table ; i && pt->s != NULL ; pt++)
555 		if (strlen(pt->s) == i && !bcmp(string, pt->s, i))
556 			return pt->x;
557 	return -1;
558 }
559 
560 /**
561  * match_value takes a table and a value, returns the string associated
562  * with the value (NULL in case of failure).
563  */
564 static char const *
565 match_value(struct _s_x *p, int value)
566 {
567 	for (; p->s != NULL; p++)
568 		if (p->x == value)
569 			return p->s;
570 	return NULL;
571 }
572 
573 /*
574  * _substrcmp takes two strings and returns 1 if they do not match,
575  * and 0 if they match exactly or the first string is a sub-string
576  * of the second.  A warning is printed to stderr in the case that the
577  * first string is a sub-string of the second.
578  *
579  * This function will be removed in the future through the usual
580  * deprecation process.
581  */
582 static int
583 _substrcmp(const char *str1, const char* str2)
584 {
585 
586 	if (strncmp(str1, str2, strlen(str1)) != 0)
587 		return 1;
588 
589 	if (strlen(str1) != strlen(str2))
590 		warnx("DEPRECATED: '%s' matched '%s' as a sub-string",
591 		    str1, str2);
592 	return 0;
593 }
594 
595 /*
596  * _substrcmp2 takes three strings and returns 1 if the first two do not match,
597  * and 0 if they match exactly or the second string is a sub-string
598  * of the first.  A warning is printed to stderr in the case that the
599  * first string does not match the third.
600  *
601  * This function exists to warn about the bizzare construction
602  * strncmp(str, "by", 2) which is used to allow people to use a shotcut
603  * for "bytes".  The problem is that in addition to accepting "by",
604  * "byt", "byte", and "bytes", it also excepts "by_rabid_dogs" and any
605  * other string beginning with "by".
606  *
607  * This function will be removed in the future through the usual
608  * deprecation process.
609  */
610 static int
611 _substrcmp2(const char *str1, const char* str2, const char* str3)
612 {
613 
614 	if (strncmp(str1, str2, strlen(str2)) != 0)
615 		return 1;
616 
617 	if (strcmp(str1, str3) != 0)
618 		warnx("DEPRECATED: '%s' matched '%s'",
619 		    str1, str3);
620 	return 0;
621 }
622 
623 /*
624  * prints one port, symbolic or numeric
625  */
626 static void
627 print_port(int proto, uint16_t port)
628 {
629 
630 	if (proto == IPPROTO_ETHERTYPE) {
631 		char const *s;
632 
633 		if (do_resolv && (s = match_value(ether_types, port)) )
634 			printf("%s", s);
635 		else
636 			printf("0x%04x", port);
637 	} else {
638 		struct servent *se = NULL;
639 		if (do_resolv) {
640 			struct protoent *pe = getprotobynumber(proto);
641 
642 			se = getservbyport(htons(port), pe ? pe->p_name : NULL);
643 		}
644 		if (se)
645 			printf("%s", se->s_name);
646 		else
647 			printf("%d", port);
648 	}
649 }
650 
651 struct _s_x _port_name[] = {
652 	{"dst-port",	O_IP_DSTPORT},
653 	{"src-port",	O_IP_SRCPORT},
654 	{"ipid",	O_IPID},
655 	{"iplen",	O_IPLEN},
656 	{"ipttl",	O_IPTTL},
657 	{"mac-type",	O_MAC_TYPE},
658 	{"tcpdatalen",	O_TCPDATALEN},
659 	{"tagged",	O_TAGGED},
660 	{NULL,		0}
661 };
662 
663 /*
664  * Print the values in a list 16-bit items of the types above.
665  * XXX todo: add support for mask.
666  */
667 static void
668 print_newports(ipfw_insn_u16 *cmd, int proto, int opcode)
669 {
670 	uint16_t *p = cmd->ports;
671 	int i;
672 	char const *sep;
673 
674 	if (opcode != 0) {
675 		sep = match_value(_port_name, opcode);
676 		if (sep == NULL)
677 			sep = "???";
678 		printf (" %s", sep);
679 	}
680 	sep = " ";
681 	for (i = F_LEN((ipfw_insn *)cmd) - 1; i > 0; i--, p += 2) {
682 		printf(sep);
683 		print_port(proto, p[0]);
684 		if (p[0] != p[1]) {
685 			printf("-");
686 			print_port(proto, p[1]);
687 		}
688 		sep = ",";
689 	}
690 }
691 
692 /*
693  * Like strtol, but also translates service names into port numbers
694  * for some protocols.
695  * In particular:
696  *	proto == -1 disables the protocol check;
697  *	proto == IPPROTO_ETHERTYPE looks up an internal table
698  *	proto == <some value in /etc/protocols> matches the values there.
699  * Returns *end == s in case the parameter is not found.
700  */
701 static int
702 strtoport(char *s, char **end, int base, int proto)
703 {
704 	char *p, *buf;
705 	char *s1;
706 	int i;
707 
708 	*end = s;		/* default - not found */
709 	if (*s == '\0')
710 		return 0;	/* not found */
711 
712 	if (isdigit(*s))
713 		return strtol(s, end, base);
714 
715 	/*
716 	 * find separator. '\\' escapes the next char.
717 	 */
718 	for (s1 = s; *s1 && (isalnum(*s1) || *s1 == '\\') ; s1++)
719 		if (*s1 == '\\' && s1[1] != '\0')
720 			s1++;
721 
722 	buf = malloc(s1 - s + 1);
723 	if (buf == NULL)
724 		return 0;
725 
726 	/*
727 	 * copy into a buffer skipping backslashes
728 	 */
729 	for (p = s, i = 0; p != s1 ; p++)
730 		if (*p != '\\')
731 			buf[i++] = *p;
732 	buf[i++] = '\0';
733 
734 	if (proto == IPPROTO_ETHERTYPE) {
735 		i = match_token(ether_types, buf);
736 		free(buf);
737 		if (i != -1) {	/* found */
738 			*end = s1;
739 			return i;
740 		}
741 	} else {
742 		struct protoent *pe = NULL;
743 		struct servent *se;
744 
745 		if (proto != 0)
746 			pe = getprotobynumber(proto);
747 		setservent(1);
748 		se = getservbyname(buf, pe ? pe->p_name : NULL);
749 		free(buf);
750 		if (se != NULL) {
751 			*end = s1;
752 			return ntohs(se->s_port);
753 		}
754 	}
755 	return 0;	/* not found */
756 }
757 
758 /*
759  * Map between current altq queue id numbers and names.
760  */
761 static int altq_fetched = 0;
762 static TAILQ_HEAD(, pf_altq) altq_entries =
763 	TAILQ_HEAD_INITIALIZER(altq_entries);
764 
765 static void
766 altq_set_enabled(int enabled)
767 {
768 	int pffd;
769 
770 	pffd = open("/dev/pf", O_RDWR);
771 	if (pffd == -1)
772 		err(EX_UNAVAILABLE,
773 		    "altq support opening pf(4) control device");
774 	if (enabled) {
775 		if (ioctl(pffd, DIOCSTARTALTQ) != 0 && errno != EEXIST)
776 			err(EX_UNAVAILABLE, "enabling altq");
777 	} else {
778 		if (ioctl(pffd, DIOCSTOPALTQ) != 0 && errno != ENOENT)
779 			err(EX_UNAVAILABLE, "disabling altq");
780 	}
781 	close(pffd);
782 }
783 
784 static void
785 altq_fetch()
786 {
787 	struct pfioc_altq pfioc;
788 	struct pf_altq *altq;
789 	int pffd, mnr;
790 
791 	if (altq_fetched)
792 		return;
793 	altq_fetched = 1;
794 	pffd = open("/dev/pf", O_RDONLY);
795 	if (pffd == -1) {
796 		warn("altq support opening pf(4) control device");
797 		return;
798 	}
799 	bzero(&pfioc, sizeof(pfioc));
800 	if (ioctl(pffd, DIOCGETALTQS, &pfioc) != 0) {
801 		warn("altq support getting queue list");
802 		close(pffd);
803 		return;
804 	}
805 	mnr = pfioc.nr;
806 	for (pfioc.nr = 0; pfioc.nr < mnr; pfioc.nr++) {
807 		if (ioctl(pffd, DIOCGETALTQ, &pfioc) != 0) {
808 			if (errno == EBUSY)
809 				break;
810 			warn("altq support getting queue list");
811 			close(pffd);
812 			return;
813 		}
814 		if (pfioc.altq.qid == 0)
815 			continue;
816 		altq = malloc(sizeof(*altq));
817 		if (altq == NULL)
818 			err(EX_OSERR, "malloc");
819 		*altq = pfioc.altq;
820 		TAILQ_INSERT_TAIL(&altq_entries, altq, entries);
821 	}
822 	close(pffd);
823 }
824 
825 static u_int32_t
826 altq_name_to_qid(const char *name)
827 {
828 	struct pf_altq *altq;
829 
830 	altq_fetch();
831 	TAILQ_FOREACH(altq, &altq_entries, entries)
832 		if (strcmp(name, altq->qname) == 0)
833 			break;
834 	if (altq == NULL)
835 		errx(EX_DATAERR, "altq has no queue named `%s'", name);
836 	return altq->qid;
837 }
838 
839 static const char *
840 altq_qid_to_name(u_int32_t qid)
841 {
842 	struct pf_altq *altq;
843 
844 	altq_fetch();
845 	TAILQ_FOREACH(altq, &altq_entries, entries)
846 		if (qid == altq->qid)
847 			break;
848 	if (altq == NULL)
849 		return NULL;
850 	return altq->qname;
851 }
852 
853 static void
854 fill_altq_qid(u_int32_t *qid, const char *av)
855 {
856 	*qid = altq_name_to_qid(av);
857 }
858 
859 /*
860  * Fill the body of the command with the list of port ranges.
861  */
862 static int
863 fill_newports(ipfw_insn_u16 *cmd, char *av, int proto)
864 {
865 	uint16_t a, b, *p = cmd->ports;
866 	int i = 0;
867 	char *s = av;
868 
869 	while (*s) {
870 		a = strtoport(av, &s, 0, proto);
871 		if (s == av) 			/* empty or invalid argument */
872 			return (0);
873 
874 		switch (*s) {
875 		case '-':			/* a range */
876 			av = s + 1;
877 			b = strtoport(av, &s, 0, proto);
878 			/* Reject expressions like '1-abc' or '1-2-3'. */
879 			if (s == av || (*s != ',' && *s != '\0'))
880 				return (0);
881 			p[0] = a;
882 			p[1] = b;
883 			break;
884 		case ',':			/* comma separated list */
885 		case '\0':
886 			p[0] = p[1] = a;
887 			break;
888 		default:
889 			warnx("port list: invalid separator <%c> in <%s>",
890 				*s, av);
891 			return (0);
892 		}
893 
894 		i++;
895 		p += 2;
896 		av = s + 1;
897 	}
898 	if (i > 0) {
899 		if (i + 1 > F_LEN_MASK)
900 			errx(EX_DATAERR, "too many ports/ranges\n");
901 		cmd->o.len |= i + 1;	/* leave F_NOT and F_OR untouched */
902 	}
903 	return (i);
904 }
905 
906 static struct _s_x icmpcodes[] = {
907       { "net",			ICMP_UNREACH_NET },
908       { "host",			ICMP_UNREACH_HOST },
909       { "protocol",		ICMP_UNREACH_PROTOCOL },
910       { "port",			ICMP_UNREACH_PORT },
911       { "needfrag",		ICMP_UNREACH_NEEDFRAG },
912       { "srcfail",		ICMP_UNREACH_SRCFAIL },
913       { "net-unknown",		ICMP_UNREACH_NET_UNKNOWN },
914       { "host-unknown",		ICMP_UNREACH_HOST_UNKNOWN },
915       { "isolated",		ICMP_UNREACH_ISOLATED },
916       { "net-prohib",		ICMP_UNREACH_NET_PROHIB },
917       { "host-prohib",		ICMP_UNREACH_HOST_PROHIB },
918       { "tosnet",		ICMP_UNREACH_TOSNET },
919       { "toshost",		ICMP_UNREACH_TOSHOST },
920       { "filter-prohib",	ICMP_UNREACH_FILTER_PROHIB },
921       { "host-precedence",	ICMP_UNREACH_HOST_PRECEDENCE },
922       { "precedence-cutoff",	ICMP_UNREACH_PRECEDENCE_CUTOFF },
923       { NULL, 0 }
924 };
925 
926 static void
927 fill_reject_code(u_short *codep, char *str)
928 {
929 	int val;
930 	char *s;
931 
932 	val = strtoul(str, &s, 0);
933 	if (s == str || *s != '\0' || val >= 0x100)
934 		val = match_token(icmpcodes, str);
935 	if (val < 0)
936 		errx(EX_DATAERR, "unknown ICMP unreachable code ``%s''", str);
937 	*codep = val;
938 	return;
939 }
940 
941 static void
942 print_reject_code(uint16_t code)
943 {
944 	char const *s = match_value(icmpcodes, code);
945 
946 	if (s != NULL)
947 		printf("unreach %s", s);
948 	else
949 		printf("unreach %u", code);
950 }
951 
952 static struct _s_x icmp6codes[] = {
953       { "no-route",		ICMP6_DST_UNREACH_NOROUTE },
954       { "admin-prohib",		ICMP6_DST_UNREACH_ADMIN },
955       { "address",		ICMP6_DST_UNREACH_ADDR },
956       { "port",			ICMP6_DST_UNREACH_NOPORT },
957       { NULL, 0 }
958 };
959 
960 static void
961 fill_unreach6_code(u_short *codep, char *str)
962 {
963 	int val;
964 	char *s;
965 
966 	val = strtoul(str, &s, 0);
967 	if (s == str || *s != '\0' || val >= 0x100)
968 		val = match_token(icmp6codes, str);
969 	if (val < 0)
970 		errx(EX_DATAERR, "unknown ICMPv6 unreachable code ``%s''", str);
971 	*codep = val;
972 	return;
973 }
974 
975 static void
976 print_unreach6_code(uint16_t code)
977 {
978 	char const *s = match_value(icmp6codes, code);
979 
980 	if (s != NULL)
981 		printf("unreach6 %s", s);
982 	else
983 		printf("unreach6 %u", code);
984 }
985 
986 /*
987  * Returns the number of bits set (from left) in a contiguous bitmask,
988  * or -1 if the mask is not contiguous.
989  * XXX this needs a proper fix.
990  * This effectively works on masks in big-endian (network) format.
991  * when compiled on little endian architectures.
992  *
993  * First bit is bit 7 of the first byte -- note, for MAC addresses,
994  * the first bit on the wire is bit 0 of the first byte.
995  * len is the max length in bits.
996  */
997 static int
998 contigmask(uint8_t *p, int len)
999 {
1000 	int i, n;
1001 
1002 	for (i=0; i<len ; i++)
1003 		if ( (p[i/8] & (1 << (7 - (i%8)))) == 0) /* first bit unset */
1004 			break;
1005 	for (n=i+1; n < len; n++)
1006 		if ( (p[n/8] & (1 << (7 - (n%8)))) != 0)
1007 			return -1; /* mask not contiguous */
1008 	return i;
1009 }
1010 
1011 /*
1012  * print flags set/clear in the two bitmasks passed as parameters.
1013  * There is a specialized check for f_tcpflags.
1014  */
1015 static void
1016 print_flags(char const *name, ipfw_insn *cmd, struct _s_x *list)
1017 {
1018 	char const *comma = "";
1019 	int i;
1020 	uint8_t set = cmd->arg1 & 0xff;
1021 	uint8_t clear = (cmd->arg1 >> 8) & 0xff;
1022 
1023 	if (list == f_tcpflags && set == TH_SYN && clear == TH_ACK) {
1024 		printf(" setup");
1025 		return;
1026 	}
1027 
1028 	printf(" %s ", name);
1029 	for (i=0; list[i].x != 0; i++) {
1030 		if (set & list[i].x) {
1031 			set &= ~list[i].x;
1032 			printf("%s%s", comma, list[i].s);
1033 			comma = ",";
1034 		}
1035 		if (clear & list[i].x) {
1036 			clear &= ~list[i].x;
1037 			printf("%s!%s", comma, list[i].s);
1038 			comma = ",";
1039 		}
1040 	}
1041 }
1042 
1043 /*
1044  * Print the ip address contained in a command.
1045  */
1046 static void
1047 print_ip(ipfw_insn_ip *cmd, char const *s)
1048 {
1049 	struct hostent *he = NULL;
1050 	int len = F_LEN((ipfw_insn *)cmd);
1051 	uint32_t *a = ((ipfw_insn_u32 *)cmd)->d;
1052 
1053 	printf("%s%s ", cmd->o.len & F_NOT ? " not": "", s);
1054 
1055 	if (cmd->o.opcode == O_IP_SRC_ME || cmd->o.opcode == O_IP_DST_ME) {
1056 		printf("me");
1057 		return;
1058 	}
1059 	if (cmd->o.opcode == O_IP_SRC_LOOKUP ||
1060 	    cmd->o.opcode == O_IP_DST_LOOKUP) {
1061 		printf("table(%u", ((ipfw_insn *)cmd)->arg1);
1062 		if (len == F_INSN_SIZE(ipfw_insn_u32))
1063 			printf(",%u", *a);
1064 		printf(")");
1065 		return;
1066 	}
1067 	if (cmd->o.opcode == O_IP_SRC_SET || cmd->o.opcode == O_IP_DST_SET) {
1068 		uint32_t x, *map = (uint32_t *)&(cmd->mask);
1069 		int i, j;
1070 		char comma = '{';
1071 
1072 		x = cmd->o.arg1 - 1;
1073 		x = htonl( ~x );
1074 		cmd->addr.s_addr = htonl(cmd->addr.s_addr);
1075 		printf("%s/%d", inet_ntoa(cmd->addr),
1076 			contigmask((uint8_t *)&x, 32));
1077 		x = cmd->addr.s_addr = htonl(cmd->addr.s_addr);
1078 		x &= 0xff; /* base */
1079 		/*
1080 		 * Print bits and ranges.
1081 		 * Locate first bit set (i), then locate first bit unset (j).
1082 		 * If we have 3+ consecutive bits set, then print them as a
1083 		 * range, otherwise only print the initial bit and rescan.
1084 		 */
1085 		for (i=0; i < cmd->o.arg1; i++)
1086 			if (map[i/32] & (1<<(i & 31))) {
1087 				for (j=i+1; j < cmd->o.arg1; j++)
1088 					if (!(map[ j/32] & (1<<(j & 31))))
1089 						break;
1090 				printf("%c%d", comma, i+x);
1091 				if (j>i+2) { /* range has at least 3 elements */
1092 					printf("-%d", j-1+x);
1093 					i = j-1;
1094 				}
1095 				comma = ',';
1096 			}
1097 		printf("}");
1098 		return;
1099 	}
1100 	/*
1101 	 * len == 2 indicates a single IP, whereas lists of 1 or more
1102 	 * addr/mask pairs have len = (2n+1). We convert len to n so we
1103 	 * use that to count the number of entries.
1104 	 */
1105     for (len = len / 2; len > 0; len--, a += 2) {
1106 	int mb =	/* mask length */
1107 	    (cmd->o.opcode == O_IP_SRC || cmd->o.opcode == O_IP_DST) ?
1108 		32 : contigmask((uint8_t *)&(a[1]), 32);
1109 	if (mb == 32 && do_resolv)
1110 		he = gethostbyaddr((char *)&(a[0]), sizeof(u_long), AF_INET);
1111 	if (he != NULL)		/* resolved to name */
1112 		printf("%s", he->h_name);
1113 	else if (mb == 0)	/* any */
1114 		printf("any");
1115 	else {		/* numeric IP followed by some kind of mask */
1116 		printf("%s", inet_ntoa( *((struct in_addr *)&a[0]) ) );
1117 		if (mb < 0)
1118 			printf(":%s", inet_ntoa( *((struct in_addr *)&a[1]) ) );
1119 		else if (mb < 32)
1120 			printf("/%d", mb);
1121 	}
1122 	if (len > 1)
1123 		printf(",");
1124     }
1125 }
1126 
1127 /*
1128  * prints a MAC address/mask pair
1129  */
1130 static void
1131 print_mac(uint8_t *addr, uint8_t *mask)
1132 {
1133 	int l = contigmask(mask, 48);
1134 
1135 	if (l == 0)
1136 		printf(" any");
1137 	else {
1138 		printf(" %02x:%02x:%02x:%02x:%02x:%02x",
1139 		    addr[0], addr[1], addr[2], addr[3], addr[4], addr[5]);
1140 		if (l == -1)
1141 			printf("&%02x:%02x:%02x:%02x:%02x:%02x",
1142 			    mask[0], mask[1], mask[2],
1143 			    mask[3], mask[4], mask[5]);
1144 		else if (l < 48)
1145 			printf("/%d", l);
1146 	}
1147 }
1148 
1149 static void
1150 fill_icmptypes(ipfw_insn_u32 *cmd, char *av)
1151 {
1152 	uint8_t type;
1153 
1154 	cmd->d[0] = 0;
1155 	while (*av) {
1156 		if (*av == ',')
1157 			av++;
1158 
1159 		type = strtoul(av, &av, 0);
1160 
1161 		if (*av != ',' && *av != '\0')
1162 			errx(EX_DATAERR, "invalid ICMP type");
1163 
1164 		if (type > 31)
1165 			errx(EX_DATAERR, "ICMP type out of range");
1166 
1167 		cmd->d[0] |= 1 << type;
1168 	}
1169 	cmd->o.opcode = O_ICMPTYPE;
1170 	cmd->o.len |= F_INSN_SIZE(ipfw_insn_u32);
1171 }
1172 
1173 static void
1174 print_icmptypes(ipfw_insn_u32 *cmd)
1175 {
1176 	int i;
1177 	char sep= ' ';
1178 
1179 	printf(" icmptypes");
1180 	for (i = 0; i < 32; i++) {
1181 		if ( (cmd->d[0] & (1 << (i))) == 0)
1182 			continue;
1183 		printf("%c%d", sep, i);
1184 		sep = ',';
1185 	}
1186 }
1187 
1188 /*
1189  * Print the ip address contained in a command.
1190  */
1191 static void
1192 print_ip6(ipfw_insn_ip6 *cmd, char const *s)
1193 {
1194        struct hostent *he = NULL;
1195        int len = F_LEN((ipfw_insn *) cmd) - 1;
1196        struct in6_addr *a = &(cmd->addr6);
1197        char trad[255];
1198 
1199        printf("%s%s ", cmd->o.len & F_NOT ? " not": "", s);
1200 
1201        if (cmd->o.opcode == O_IP6_SRC_ME || cmd->o.opcode == O_IP6_DST_ME) {
1202                printf("me6");
1203                return;
1204        }
1205        if (cmd->o.opcode == O_IP6) {
1206                printf(" ip6");
1207                return;
1208        }
1209 
1210        /*
1211         * len == 4 indicates a single IP, whereas lists of 1 or more
1212         * addr/mask pairs have len = (2n+1). We convert len to n so we
1213         * use that to count the number of entries.
1214         */
1215 
1216        for (len = len / 4; len > 0; len -= 2, a += 2) {
1217            int mb =        /* mask length */
1218                (cmd->o.opcode == O_IP6_SRC || cmd->o.opcode == O_IP6_DST) ?
1219                128 : contigmask((uint8_t *)&(a[1]), 128);
1220 
1221            if (mb == 128 && do_resolv)
1222                he = gethostbyaddr((char *)a, sizeof(*a), AF_INET6);
1223            if (he != NULL)             /* resolved to name */
1224                printf("%s", he->h_name);
1225            else if (mb == 0)           /* any */
1226                printf("any");
1227            else {          /* numeric IP followed by some kind of mask */
1228                if (inet_ntop(AF_INET6,  a, trad, sizeof( trad ) ) == NULL)
1229                    printf("Error ntop in print_ip6\n");
1230                printf("%s",  trad );
1231                if (mb < 0)     /* XXX not really legal... */
1232                    printf(":%s",
1233                        inet_ntop(AF_INET6, &a[1], trad, sizeof(trad)));
1234                else if (mb < 128)
1235                    printf("/%d", mb);
1236            }
1237            if (len > 2)
1238                printf(",");
1239        }
1240 }
1241 
1242 static void
1243 fill_icmp6types(ipfw_insn_icmp6 *cmd, char *av)
1244 {
1245        uint8_t type;
1246 
1247        bzero(cmd, sizeof(*cmd));
1248        while (*av) {
1249            if (*av == ',')
1250                av++;
1251            type = strtoul(av, &av, 0);
1252            if (*av != ',' && *av != '\0')
1253                errx(EX_DATAERR, "invalid ICMP6 type");
1254 	   /*
1255 	    * XXX: shouldn't this be 0xFF?  I can't see any reason why
1256 	    * we shouldn't be able to filter all possiable values
1257 	    * regardless of the ability of the rest of the kernel to do
1258 	    * anything useful with them.
1259 	    */
1260            if (type > ICMP6_MAXTYPE)
1261                errx(EX_DATAERR, "ICMP6 type out of range");
1262            cmd->d[type / 32] |= ( 1 << (type % 32));
1263        }
1264        cmd->o.opcode = O_ICMP6TYPE;
1265        cmd->o.len |= F_INSN_SIZE(ipfw_insn_icmp6);
1266 }
1267 
1268 
1269 static void
1270 print_icmp6types(ipfw_insn_u32 *cmd)
1271 {
1272        int i, j;
1273        char sep= ' ';
1274 
1275        printf(" ip6 icmp6types");
1276        for (i = 0; i < 7; i++)
1277                for (j=0; j < 32; ++j) {
1278                        if ( (cmd->d[i] & (1 << (j))) == 0)
1279                                continue;
1280                        printf("%c%d", sep, (i*32 + j));
1281                        sep = ',';
1282                }
1283 }
1284 
1285 static void
1286 print_flow6id( ipfw_insn_u32 *cmd)
1287 {
1288        uint16_t i, limit = cmd->o.arg1;
1289        char sep = ',';
1290 
1291        printf(" flow-id ");
1292        for( i=0; i < limit; ++i) {
1293                if (i == limit - 1)
1294                        sep = ' ';
1295                printf("%d%c", cmd->d[i], sep);
1296        }
1297 }
1298 
1299 /* structure and define for the extension header in ipv6 */
1300 static struct _s_x ext6hdrcodes[] = {
1301        { "frag",       EXT_FRAGMENT },
1302        { "hopopt",     EXT_HOPOPTS },
1303        { "route",      EXT_ROUTING },
1304        { "dstopt",     EXT_DSTOPTS },
1305        { "ah",         EXT_AH },
1306        { "esp",        EXT_ESP },
1307        { "rthdr0",     EXT_RTHDR0 },
1308        { "rthdr2",     EXT_RTHDR2 },
1309        { NULL,         0 }
1310 };
1311 
1312 /* fills command for the extension header filtering */
1313 int
1314 fill_ext6hdr( ipfw_insn *cmd, char *av)
1315 {
1316        int tok;
1317        char *s = av;
1318 
1319        cmd->arg1 = 0;
1320 
1321        while(s) {
1322            av = strsep( &s, ",") ;
1323            tok = match_token(ext6hdrcodes, av);
1324            switch (tok) {
1325            case EXT_FRAGMENT:
1326                cmd->arg1 |= EXT_FRAGMENT;
1327                break;
1328 
1329            case EXT_HOPOPTS:
1330                cmd->arg1 |= EXT_HOPOPTS;
1331                break;
1332 
1333            case EXT_ROUTING:
1334                cmd->arg1 |= EXT_ROUTING;
1335                break;
1336 
1337            case EXT_DSTOPTS:
1338                cmd->arg1 |= EXT_DSTOPTS;
1339                break;
1340 
1341            case EXT_AH:
1342                cmd->arg1 |= EXT_AH;
1343                break;
1344 
1345            case EXT_ESP:
1346                cmd->arg1 |= EXT_ESP;
1347                break;
1348 
1349            case EXT_RTHDR0:
1350                cmd->arg1 |= EXT_RTHDR0;
1351                break;
1352 
1353            case EXT_RTHDR2:
1354                cmd->arg1 |= EXT_RTHDR2;
1355                break;
1356 
1357            default:
1358                errx( EX_DATAERR, "invalid option for ipv6 exten header" );
1359                break;
1360            }
1361        }
1362        if (cmd->arg1 == 0 )
1363            return 0;
1364        cmd->opcode = O_EXT_HDR;
1365        cmd->len |= F_INSN_SIZE( ipfw_insn );
1366        return 1;
1367 }
1368 
1369 void
1370 print_ext6hdr( ipfw_insn *cmd )
1371 {
1372        char sep = ' ';
1373 
1374        printf(" extension header:");
1375        if (cmd->arg1 & EXT_FRAGMENT ) {
1376            printf("%cfragmentation", sep);
1377            sep = ',';
1378        }
1379        if (cmd->arg1 & EXT_HOPOPTS ) {
1380            printf("%chop options", sep);
1381            sep = ',';
1382        }
1383        if (cmd->arg1 & EXT_ROUTING ) {
1384            printf("%crouting options", sep);
1385            sep = ',';
1386        }
1387        if (cmd->arg1 & EXT_RTHDR0 ) {
1388            printf("%crthdr0", sep);
1389            sep = ',';
1390        }
1391        if (cmd->arg1 & EXT_RTHDR2 ) {
1392            printf("%crthdr2", sep);
1393            sep = ',';
1394        }
1395        if (cmd->arg1 & EXT_DSTOPTS ) {
1396            printf("%cdestination options", sep);
1397            sep = ',';
1398        }
1399        if (cmd->arg1 & EXT_AH ) {
1400            printf("%cauthentication header", sep);
1401            sep = ',';
1402        }
1403        if (cmd->arg1 & EXT_ESP ) {
1404            printf("%cencapsulated security payload", sep);
1405        }
1406 }
1407 
1408 /*
1409  * show_ipfw() prints the body of an ipfw rule.
1410  * Because the standard rule has at least proto src_ip dst_ip, we use
1411  * a helper function to produce these entries if not provided explicitly.
1412  * The first argument is the list of fields we have, the second is
1413  * the list of fields we want to be printed.
1414  *
1415  * Special cases if we have provided a MAC header:
1416  *   + if the rule does not contain IP addresses/ports, do not print them;
1417  *   + if the rule does not contain an IP proto, print "all" instead of "ip";
1418  *
1419  * Once we have 'have_options', IP header fields are printed as options.
1420  */
1421 #define	HAVE_PROTO	0x0001
1422 #define	HAVE_SRCIP	0x0002
1423 #define	HAVE_DSTIP	0x0004
1424 #define	HAVE_PROTO4	0x0008
1425 #define	HAVE_PROTO6	0x0010
1426 #define	HAVE_OPTIONS	0x8000
1427 
1428 #define	HAVE_IP		(HAVE_PROTO | HAVE_SRCIP | HAVE_DSTIP)
1429 static void
1430 show_prerequisites(int *flags, int want, int cmd)
1431 {
1432 	if (comment_only)
1433 		return;
1434 	if ( (*flags & HAVE_IP) == HAVE_IP)
1435 		*flags |= HAVE_OPTIONS;
1436 
1437 	if ( !(*flags & HAVE_OPTIONS)) {
1438 		if ( !(*flags & HAVE_PROTO) && (want & HAVE_PROTO))
1439 			if ( (*flags & HAVE_PROTO4))
1440 				printf(" ip4");
1441 			else if ( (*flags & HAVE_PROTO6))
1442 				printf(" ip6");
1443 			else
1444 				printf(" ip");
1445 
1446 		if ( !(*flags & HAVE_SRCIP) && (want & HAVE_SRCIP))
1447 			printf(" from any");
1448 		if ( !(*flags & HAVE_DSTIP) && (want & HAVE_DSTIP))
1449 			printf(" to any");
1450 	}
1451 	*flags |= want;
1452 }
1453 
1454 static void
1455 show_ipfw(struct ip_fw *rule, int pcwidth, int bcwidth)
1456 {
1457 	static int twidth = 0;
1458 	int l;
1459 	ipfw_insn *cmd, *tagptr = NULL;
1460 	char *comment = NULL;	/* ptr to comment if we have one */
1461 	int proto = 0;		/* default */
1462 	int flags = 0;	/* prerequisites */
1463 	ipfw_insn_log *logptr = NULL; /* set if we find an O_LOG */
1464 	ipfw_insn_altq *altqptr = NULL; /* set if we find an O_ALTQ */
1465 	int or_block = 0;	/* we are in an or block */
1466 	uint32_t set_disable;
1467 
1468 	bcopy(&rule->next_rule, &set_disable, sizeof(set_disable));
1469 
1470 	if (set_disable & (1 << rule->set)) { /* disabled */
1471 		if (!show_sets)
1472 			return;
1473 		else
1474 			printf("# DISABLED ");
1475 	}
1476 	printf("%05u ", rule->rulenum);
1477 
1478 	if (pcwidth>0 || bcwidth>0)
1479 		printf("%*llu %*llu ", pcwidth, align_uint64(&rule->pcnt),
1480 		    bcwidth, align_uint64(&rule->bcnt));
1481 
1482 	if (do_time == 2)
1483 		printf("%10u ", rule->timestamp);
1484 	else if (do_time == 1) {
1485 		char timestr[30];
1486 		time_t t = (time_t)0;
1487 
1488 		if (twidth == 0) {
1489 			strcpy(timestr, ctime(&t));
1490 			*strchr(timestr, '\n') = '\0';
1491 			twidth = strlen(timestr);
1492 		}
1493 		if (rule->timestamp) {
1494 			t = _long_to_time(rule->timestamp);
1495 
1496 			strcpy(timestr, ctime(&t));
1497 			*strchr(timestr, '\n') = '\0';
1498 			printf("%s ", timestr);
1499 		} else {
1500 			printf("%*s", twidth, " ");
1501 		}
1502 	}
1503 
1504 	if (show_sets)
1505 		printf("set %d ", rule->set);
1506 
1507 	/*
1508 	 * print the optional "match probability"
1509 	 */
1510 	if (rule->cmd_len > 0) {
1511 		cmd = rule->cmd ;
1512 		if (cmd->opcode == O_PROB) {
1513 			ipfw_insn_u32 *p = (ipfw_insn_u32 *)cmd;
1514 			double d = 1.0 * p->d[0];
1515 
1516 			d = (d / 0x7fffffff);
1517 			printf("prob %f ", d);
1518 		}
1519 	}
1520 
1521 	/*
1522 	 * first print actions
1523 	 */
1524         for (l = rule->cmd_len - rule->act_ofs, cmd = ACTION_PTR(rule);
1525 			l > 0 ; l -= F_LEN(cmd), cmd += F_LEN(cmd)) {
1526 		switch(cmd->opcode) {
1527 		case O_CHECK_STATE:
1528 			printf("check-state");
1529 			flags = HAVE_IP; /* avoid printing anything else */
1530 			break;
1531 
1532 		case O_ACCEPT:
1533 			printf("allow");
1534 			break;
1535 
1536 		case O_COUNT:
1537 			printf("count");
1538 			break;
1539 
1540 		case O_DENY:
1541 			printf("deny");
1542 			break;
1543 
1544 		case O_REJECT:
1545 			if (cmd->arg1 == ICMP_REJECT_RST)
1546 				printf("reset");
1547 			else if (cmd->arg1 == ICMP_UNREACH_HOST)
1548 				printf("reject");
1549 			else
1550 				print_reject_code(cmd->arg1);
1551 			break;
1552 
1553 		case O_UNREACH6:
1554 			if (cmd->arg1 == ICMP6_UNREACH_RST)
1555 				printf("reset6");
1556 			else
1557 				print_unreach6_code(cmd->arg1);
1558 			break;
1559 
1560 		case O_SKIPTO:
1561 			PRINT_UINT_ARG("skipto ", cmd->arg1);
1562 			break;
1563 
1564 		case O_PIPE:
1565 			PRINT_UINT_ARG("pipe ", cmd->arg1);
1566 			break;
1567 
1568 		case O_QUEUE:
1569 			PRINT_UINT_ARG("queue ", cmd->arg1);
1570 			break;
1571 
1572 		case O_DIVERT:
1573 			PRINT_UINT_ARG("divert ", cmd->arg1);
1574 			break;
1575 
1576 		case O_TEE:
1577 			PRINT_UINT_ARG("tee ", cmd->arg1);
1578 			break;
1579 
1580 		case O_NETGRAPH:
1581 			PRINT_UINT_ARG("netgraph ", cmd->arg1);
1582 			break;
1583 
1584 		case O_NGTEE:
1585 			PRINT_UINT_ARG("ngtee ", cmd->arg1);
1586 			break;
1587 
1588 		case O_FORWARD_IP:
1589 		    {
1590 			ipfw_insn_sa *s = (ipfw_insn_sa *)cmd;
1591 
1592 			if (s->sa.sin_addr.s_addr == INADDR_ANY) {
1593 				printf("fwd tablearg");
1594 			} else {
1595 				printf("fwd %s", inet_ntoa(s->sa.sin_addr));
1596 			}
1597 			if (s->sa.sin_port)
1598 				printf(",%d", s->sa.sin_port);
1599 		    }
1600 			break;
1601 
1602 		case O_LOG: /* O_LOG is printed last */
1603 			logptr = (ipfw_insn_log *)cmd;
1604 			break;
1605 
1606 		case O_ALTQ: /* O_ALTQ is printed after O_LOG */
1607 			altqptr = (ipfw_insn_altq *)cmd;
1608 			break;
1609 
1610 		case O_TAG:
1611 			tagptr = cmd;
1612 			break;
1613 
1614 		case O_NAT:
1615  			printf("nat %u", cmd->arg1);
1616  			break;
1617 
1618 		default:
1619 			printf("** unrecognized action %d len %d ",
1620 				cmd->opcode, cmd->len);
1621 		}
1622 	}
1623 	if (logptr) {
1624 		if (logptr->max_log > 0)
1625 			printf(" log logamount %d", logptr->max_log);
1626 		else
1627 			printf(" log");
1628 	}
1629 	if (altqptr) {
1630 		const char *qname;
1631 
1632 		qname = altq_qid_to_name(altqptr->qid);
1633 		if (qname == NULL)
1634 			printf(" altq ?<%u>", altqptr->qid);
1635 		else
1636 			printf(" altq %s", qname);
1637 	}
1638 	if (tagptr) {
1639 		if (tagptr->len & F_NOT)
1640 			PRINT_UINT_ARG(" untag ", tagptr->arg1);
1641 		else
1642 			PRINT_UINT_ARG(" tag ", tagptr->arg1);
1643 	}
1644 
1645 	/*
1646 	 * then print the body.
1647 	 */
1648         for (l = rule->act_ofs, cmd = rule->cmd ;
1649 			l > 0 ; l -= F_LEN(cmd) , cmd += F_LEN(cmd)) {
1650 		if ((cmd->len & F_OR) || (cmd->len & F_NOT))
1651 			continue;
1652 		if (cmd->opcode == O_IP4) {
1653 			flags |= HAVE_PROTO4;
1654 			break;
1655 		} else if (cmd->opcode == O_IP6) {
1656 			flags |= HAVE_PROTO6;
1657 			break;
1658 		}
1659 	}
1660 	if (rule->_pad & 1) {	/* empty rules before options */
1661 		if (!do_compact) {
1662 			show_prerequisites(&flags, HAVE_PROTO, 0);
1663 			printf(" from any to any");
1664 		}
1665 		flags |= HAVE_IP | HAVE_OPTIONS;
1666 	}
1667 
1668 	if (comment_only)
1669 		comment = "...";
1670 
1671         for (l = rule->act_ofs, cmd = rule->cmd ;
1672 			l > 0 ; l -= F_LEN(cmd) , cmd += F_LEN(cmd)) {
1673 		/* useful alias */
1674 		ipfw_insn_u32 *cmd32 = (ipfw_insn_u32 *)cmd;
1675 
1676 		if (comment_only) {
1677 			if (cmd->opcode != O_NOP)
1678 				continue;
1679 			printf(" // %s\n", (char *)(cmd + 1));
1680 			return;
1681 		}
1682 
1683 		show_prerequisites(&flags, 0, cmd->opcode);
1684 
1685 		switch(cmd->opcode) {
1686 		case O_PROB:
1687 			break;	/* done already */
1688 
1689 		case O_PROBE_STATE:
1690 			break; /* no need to print anything here */
1691 
1692 		case O_IP_SRC:
1693 		case O_IP_SRC_LOOKUP:
1694 		case O_IP_SRC_MASK:
1695 		case O_IP_SRC_ME:
1696 		case O_IP_SRC_SET:
1697 			show_prerequisites(&flags, HAVE_PROTO, 0);
1698 			if (!(flags & HAVE_SRCIP))
1699 				printf(" from");
1700 			if ((cmd->len & F_OR) && !or_block)
1701 				printf(" {");
1702 			print_ip((ipfw_insn_ip *)cmd,
1703 				(flags & HAVE_OPTIONS) ? " src-ip" : "");
1704 			flags |= HAVE_SRCIP;
1705 			break;
1706 
1707 		case O_IP_DST:
1708 		case O_IP_DST_LOOKUP:
1709 		case O_IP_DST_MASK:
1710 		case O_IP_DST_ME:
1711 		case O_IP_DST_SET:
1712 			show_prerequisites(&flags, HAVE_PROTO|HAVE_SRCIP, 0);
1713 			if (!(flags & HAVE_DSTIP))
1714 				printf(" to");
1715 			if ((cmd->len & F_OR) && !or_block)
1716 				printf(" {");
1717 			print_ip((ipfw_insn_ip *)cmd,
1718 				(flags & HAVE_OPTIONS) ? " dst-ip" : "");
1719 			flags |= HAVE_DSTIP;
1720 			break;
1721 
1722 		case O_IP6_SRC:
1723 		case O_IP6_SRC_MASK:
1724 		case O_IP6_SRC_ME:
1725 			show_prerequisites(&flags, HAVE_PROTO, 0);
1726 			if (!(flags & HAVE_SRCIP))
1727 				printf(" from");
1728 			if ((cmd->len & F_OR) && !or_block)
1729 				printf(" {");
1730 			print_ip6((ipfw_insn_ip6 *)cmd,
1731 			    (flags & HAVE_OPTIONS) ? " src-ip6" : "");
1732 			flags |= HAVE_SRCIP | HAVE_PROTO;
1733 			break;
1734 
1735 		case O_IP6_DST:
1736 		case O_IP6_DST_MASK:
1737 		case O_IP6_DST_ME:
1738 			show_prerequisites(&flags, HAVE_PROTO|HAVE_SRCIP, 0);
1739 			if (!(flags & HAVE_DSTIP))
1740 				printf(" to");
1741 			if ((cmd->len & F_OR) && !or_block)
1742 				printf(" {");
1743 			print_ip6((ipfw_insn_ip6 *)cmd,
1744 			    (flags & HAVE_OPTIONS) ? " dst-ip6" : "");
1745 			flags |= HAVE_DSTIP;
1746 			break;
1747 
1748 		case O_FLOW6ID:
1749 		print_flow6id( (ipfw_insn_u32 *) cmd );
1750 		flags |= HAVE_OPTIONS;
1751 		break;
1752 
1753 		case O_IP_DSTPORT:
1754 			show_prerequisites(&flags, HAVE_IP, 0);
1755 		case O_IP_SRCPORT:
1756 			show_prerequisites(&flags, HAVE_PROTO|HAVE_SRCIP, 0);
1757 			if ((cmd->len & F_OR) && !or_block)
1758 				printf(" {");
1759 			if (cmd->len & F_NOT)
1760 				printf(" not");
1761 			print_newports((ipfw_insn_u16 *)cmd, proto,
1762 				(flags & HAVE_OPTIONS) ? cmd->opcode : 0);
1763 			break;
1764 
1765 		case O_PROTO: {
1766 			struct protoent *pe = NULL;
1767 
1768 			if ((cmd->len & F_OR) && !or_block)
1769 				printf(" {");
1770 			if (cmd->len & F_NOT)
1771 				printf(" not");
1772 			proto = cmd->arg1;
1773 			pe = getprotobynumber(cmd->arg1);
1774 			if ((flags & (HAVE_PROTO4 | HAVE_PROTO6)) &&
1775 			    !(flags & HAVE_PROTO))
1776 				show_prerequisites(&flags,
1777 				    HAVE_IP | HAVE_OPTIONS, 0);
1778 			if (flags & HAVE_OPTIONS)
1779 				printf(" proto");
1780 			if (pe)
1781 				printf(" %s", pe->p_name);
1782 			else
1783 				printf(" %u", cmd->arg1);
1784 			}
1785 			flags |= HAVE_PROTO;
1786 			break;
1787 
1788 		default: /*options ... */
1789 			if (!(cmd->len & (F_OR|F_NOT)))
1790 				if (((cmd->opcode == O_IP6) &&
1791 				    (flags & HAVE_PROTO6)) ||
1792 				    ((cmd->opcode == O_IP4) &&
1793 				    (flags & HAVE_PROTO4)))
1794 					break;
1795 			show_prerequisites(&flags, HAVE_IP | HAVE_OPTIONS, 0);
1796 			if ((cmd->len & F_OR) && !or_block)
1797 				printf(" {");
1798 			if (cmd->len & F_NOT && cmd->opcode != O_IN)
1799 				printf(" not");
1800 			switch(cmd->opcode) {
1801 			case O_MACADDR2: {
1802 				ipfw_insn_mac *m = (ipfw_insn_mac *)cmd;
1803 
1804 				printf(" MAC");
1805 				print_mac(m->addr, m->mask);
1806 				print_mac(m->addr + 6, m->mask + 6);
1807 				}
1808 				break;
1809 
1810 			case O_MAC_TYPE:
1811 				print_newports((ipfw_insn_u16 *)cmd,
1812 						IPPROTO_ETHERTYPE, cmd->opcode);
1813 				break;
1814 
1815 
1816 			case O_FRAG:
1817 				printf(" frag");
1818 				break;
1819 
1820 			case O_IN:
1821 				printf(cmd->len & F_NOT ? " out" : " in");
1822 				break;
1823 
1824 			case O_DIVERTED:
1825 				switch (cmd->arg1) {
1826 				case 3:
1827 					printf(" diverted");
1828 					break;
1829 				case 1:
1830 					printf(" diverted-loopback");
1831 					break;
1832 				case 2:
1833 					printf(" diverted-output");
1834 					break;
1835 				default:
1836 					printf(" diverted-?<%u>", cmd->arg1);
1837 					break;
1838 				}
1839 				break;
1840 
1841 			case O_LAYER2:
1842 				printf(" layer2");
1843 				break;
1844 			case O_XMIT:
1845 			case O_RECV:
1846 			case O_VIA:
1847 			    {
1848 				char const *s;
1849 				ipfw_insn_if *cmdif = (ipfw_insn_if *)cmd;
1850 
1851 				if (cmd->opcode == O_XMIT)
1852 					s = "xmit";
1853 				else if (cmd->opcode == O_RECV)
1854 					s = "recv";
1855 				else /* if (cmd->opcode == O_VIA) */
1856 					s = "via";
1857 				if (cmdif->name[0] == '\0')
1858 					printf(" %s %s", s,
1859 					    inet_ntoa(cmdif->p.ip));
1860 				else
1861 					printf(" %s %s", s, cmdif->name);
1862 
1863 				break;
1864 			    }
1865 			case O_IPID:
1866 				if (F_LEN(cmd) == 1)
1867 				    printf(" ipid %u", cmd->arg1 );
1868 				else
1869 				    print_newports((ipfw_insn_u16 *)cmd, 0,
1870 					O_IPID);
1871 				break;
1872 
1873 			case O_IPTTL:
1874 				if (F_LEN(cmd) == 1)
1875 				    printf(" ipttl %u", cmd->arg1 );
1876 				else
1877 				    print_newports((ipfw_insn_u16 *)cmd, 0,
1878 					O_IPTTL);
1879 				break;
1880 
1881 			case O_IPVER:
1882 				printf(" ipver %u", cmd->arg1 );
1883 				break;
1884 
1885 			case O_IPPRECEDENCE:
1886 				printf(" ipprecedence %u", (cmd->arg1) >> 5 );
1887 				break;
1888 
1889 			case O_IPLEN:
1890 				if (F_LEN(cmd) == 1)
1891 				    printf(" iplen %u", cmd->arg1 );
1892 				else
1893 				    print_newports((ipfw_insn_u16 *)cmd, 0,
1894 					O_IPLEN);
1895 				break;
1896 
1897 			case O_IPOPT:
1898 				print_flags("ipoptions", cmd, f_ipopts);
1899 				break;
1900 
1901 			case O_IPTOS:
1902 				print_flags("iptos", cmd, f_iptos);
1903 				break;
1904 
1905 			case O_ICMPTYPE:
1906 				print_icmptypes((ipfw_insn_u32 *)cmd);
1907 				break;
1908 
1909 			case O_ESTAB:
1910 				printf(" established");
1911 				break;
1912 
1913 			case O_TCPDATALEN:
1914 				if (F_LEN(cmd) == 1)
1915 				    printf(" tcpdatalen %u", cmd->arg1 );
1916 				else
1917 				    print_newports((ipfw_insn_u16 *)cmd, 0,
1918 					O_TCPDATALEN);
1919 				break;
1920 
1921 			case O_TCPFLAGS:
1922 				print_flags("tcpflags", cmd, f_tcpflags);
1923 				break;
1924 
1925 			case O_TCPOPTS:
1926 				print_flags("tcpoptions", cmd, f_tcpopts);
1927 				break;
1928 
1929 			case O_TCPWIN:
1930 				printf(" tcpwin %d", ntohs(cmd->arg1));
1931 				break;
1932 
1933 			case O_TCPACK:
1934 				printf(" tcpack %d", ntohl(cmd32->d[0]));
1935 				break;
1936 
1937 			case O_TCPSEQ:
1938 				printf(" tcpseq %d", ntohl(cmd32->d[0]));
1939 				break;
1940 
1941 			case O_UID:
1942 			    {
1943 				struct passwd *pwd = getpwuid(cmd32->d[0]);
1944 
1945 				if (pwd)
1946 					printf(" uid %s", pwd->pw_name);
1947 				else
1948 					printf(" uid %u", cmd32->d[0]);
1949 			    }
1950 				break;
1951 
1952 			case O_GID:
1953 			    {
1954 				struct group *grp = getgrgid(cmd32->d[0]);
1955 
1956 				if (grp)
1957 					printf(" gid %s", grp->gr_name);
1958 				else
1959 					printf(" gid %u", cmd32->d[0]);
1960 			    }
1961 				break;
1962 
1963 			case O_JAIL:
1964 				printf(" jail %d", cmd32->d[0]);
1965 				break;
1966 
1967 			case O_VERREVPATH:
1968 				printf(" verrevpath");
1969 				break;
1970 
1971 			case O_VERSRCREACH:
1972 				printf(" versrcreach");
1973 				break;
1974 
1975 			case O_ANTISPOOF:
1976 				printf(" antispoof");
1977 				break;
1978 
1979 			case O_IPSEC:
1980 				printf(" ipsec");
1981 				break;
1982 
1983 			case O_NOP:
1984 				comment = (char *)(cmd + 1);
1985 				break;
1986 
1987 			case O_KEEP_STATE:
1988 				printf(" keep-state");
1989 				break;
1990 
1991 			case O_LIMIT: {
1992 				struct _s_x *p = limit_masks;
1993 				ipfw_insn_limit *c = (ipfw_insn_limit *)cmd;
1994 				uint8_t x = c->limit_mask;
1995 				char const *comma = " ";
1996 
1997 				printf(" limit");
1998 				for (; p->x != 0 ; p++)
1999 					if ((x & p->x) == p->x) {
2000 						x &= ~p->x;
2001 						printf("%s%s", comma, p->s);
2002 						comma = ",";
2003 					}
2004 				PRINT_UINT_ARG(" ", c->conn_limit);
2005 				break;
2006 			}
2007 
2008 			case O_IP6:
2009 				printf(" ip6");
2010 				break;
2011 
2012 			case O_IP4:
2013 				printf(" ip4");
2014 				break;
2015 
2016 			case O_ICMP6TYPE:
2017 				print_icmp6types((ipfw_insn_u32 *)cmd);
2018 				break;
2019 
2020 			case O_EXT_HDR:
2021 				print_ext6hdr( (ipfw_insn *) cmd );
2022 				break;
2023 
2024 			case O_TAGGED:
2025 				if (F_LEN(cmd) == 1)
2026 					PRINT_UINT_ARG(" tagged ", cmd->arg1);
2027 				else
2028 					print_newports((ipfw_insn_u16 *)cmd, 0,
2029 					    O_TAGGED);
2030 				break;
2031 
2032 			default:
2033 				printf(" [opcode %d len %d]",
2034 				    cmd->opcode, cmd->len);
2035 			}
2036 		}
2037 		if (cmd->len & F_OR) {
2038 			printf(" or");
2039 			or_block = 1;
2040 		} else if (or_block) {
2041 			printf(" }");
2042 			or_block = 0;
2043 		}
2044 	}
2045 	show_prerequisites(&flags, HAVE_IP, 0);
2046 	if (comment)
2047 		printf(" // %s", comment);
2048 	printf("\n");
2049 }
2050 
2051 static void
2052 show_dyn_ipfw(ipfw_dyn_rule *d, int pcwidth, int bcwidth)
2053 {
2054 	struct protoent *pe;
2055 	struct in_addr a;
2056 	uint16_t rulenum;
2057 	char buf[INET6_ADDRSTRLEN];
2058 
2059 	if (!do_expired) {
2060 		if (!d->expire && !(d->dyn_type == O_LIMIT_PARENT))
2061 			return;
2062 	}
2063 	bcopy(&d->rule, &rulenum, sizeof(rulenum));
2064 	printf("%05d", rulenum);
2065 	if (pcwidth>0 || bcwidth>0)
2066 	    printf(" %*llu %*llu (%ds)", pcwidth,
2067 		align_uint64(&d->pcnt), bcwidth,
2068 		align_uint64(&d->bcnt), d->expire);
2069 	switch (d->dyn_type) {
2070 	case O_LIMIT_PARENT:
2071 		printf(" PARENT %d", d->count);
2072 		break;
2073 	case O_LIMIT:
2074 		printf(" LIMIT");
2075 		break;
2076 	case O_KEEP_STATE: /* bidir, no mask */
2077 		printf(" STATE");
2078 		break;
2079 	}
2080 
2081 	if ((pe = getprotobynumber(d->id.proto)) != NULL)
2082 		printf(" %s", pe->p_name);
2083 	else
2084 		printf(" proto %u", d->id.proto);
2085 
2086 	if (d->id.addr_type == 4) {
2087 		a.s_addr = htonl(d->id.src_ip);
2088 		printf(" %s %d", inet_ntoa(a), d->id.src_port);
2089 
2090 		a.s_addr = htonl(d->id.dst_ip);
2091 		printf(" <-> %s %d", inet_ntoa(a), d->id.dst_port);
2092 	} else if (d->id.addr_type == 6) {
2093 		printf(" %s %d", inet_ntop(AF_INET6, &d->id.src_ip6, buf,
2094 		    sizeof(buf)), d->id.src_port);
2095 		printf(" <-> %s %d", inet_ntop(AF_INET6, &d->id.dst_ip6, buf,
2096 		    sizeof(buf)), d->id.dst_port);
2097 	} else
2098 		printf(" UNKNOWN <-> UNKNOWN\n");
2099 
2100 	printf("\n");
2101 }
2102 
2103 static int
2104 sort_q(const void *pa, const void *pb)
2105 {
2106 	int rev = (do_sort < 0);
2107 	int field = rev ? -do_sort : do_sort;
2108 	long long res = 0;
2109 	const struct dn_flow_queue *a = pa;
2110 	const struct dn_flow_queue *b = pb;
2111 
2112 	switch (field) {
2113 	case 1: /* pkts */
2114 		res = a->len - b->len;
2115 		break;
2116 	case 2: /* bytes */
2117 		res = a->len_bytes - b->len_bytes;
2118 		break;
2119 
2120 	case 3: /* tot pkts */
2121 		res = a->tot_pkts - b->tot_pkts;
2122 		break;
2123 
2124 	case 4: /* tot bytes */
2125 		res = a->tot_bytes - b->tot_bytes;
2126 		break;
2127 	}
2128 	if (res < 0)
2129 		res = -1;
2130 	if (res > 0)
2131 		res = 1;
2132 	return (int)(rev ? res : -res);
2133 }
2134 
2135 static void
2136 list_queues(struct dn_flow_set *fs, struct dn_flow_queue *q)
2137 {
2138 	int l;
2139 	int index_printed, indexes = 0;
2140 	char buff[255];
2141 	struct protoent *pe;
2142 
2143 	if (fs->rq_elements == 0)
2144 		return;
2145 
2146 	if (do_sort != 0)
2147 		heapsort(q, fs->rq_elements, sizeof *q, sort_q);
2148 
2149 	/* Print IPv4 flows */
2150 	index_printed = 0;
2151 	for (l = 0; l < fs->rq_elements; l++) {
2152 		struct in_addr ina;
2153 
2154 		/* XXX: Should check for IPv4 flows */
2155 		if (IS_IP6_FLOW_ID(&(q[l].id)))
2156 			continue;
2157 
2158 		if (!index_printed) {
2159 			index_printed = 1;
2160 			if (indexes > 0)	/* currently a no-op */
2161 				printf("\n");
2162 			indexes++;
2163 			printf("    "
2164 			    "mask: 0x%02x 0x%08x/0x%04x -> 0x%08x/0x%04x\n",
2165 			    fs->flow_mask.proto,
2166 			    fs->flow_mask.src_ip, fs->flow_mask.src_port,
2167 			    fs->flow_mask.dst_ip, fs->flow_mask.dst_port);
2168 
2169 			printf("BKT Prot ___Source IP/port____ "
2170 			    "____Dest. IP/port____ "
2171 			    "Tot_pkt/bytes Pkt/Byte Drp\n");
2172 		}
2173 
2174 		printf("%3d ", q[l].hash_slot);
2175 		pe = getprotobynumber(q[l].id.proto);
2176 		if (pe)
2177 			printf("%-4s ", pe->p_name);
2178 		else
2179 			printf("%4u ", q[l].id.proto);
2180 		ina.s_addr = htonl(q[l].id.src_ip);
2181 		printf("%15s/%-5d ",
2182 		    inet_ntoa(ina), q[l].id.src_port);
2183 		ina.s_addr = htonl(q[l].id.dst_ip);
2184 		printf("%15s/%-5d ",
2185 		    inet_ntoa(ina), q[l].id.dst_port);
2186 		printf("%4qu %8qu %2u %4u %3u\n",
2187 		    q[l].tot_pkts, q[l].tot_bytes,
2188 		    q[l].len, q[l].len_bytes, q[l].drops);
2189 		if (verbose)
2190 			printf("   S %20qd  F %20qd\n",
2191 			    q[l].S, q[l].F);
2192 	}
2193 
2194 	/* Print IPv6 flows */
2195 	index_printed = 0;
2196 	for (l = 0; l < fs->rq_elements; l++) {
2197 		if (!IS_IP6_FLOW_ID(&(q[l].id)))
2198 			continue;
2199 
2200 		if (!index_printed) {
2201 			index_printed = 1;
2202 			if (indexes > 0)
2203 				printf("\n");
2204 			indexes++;
2205 			printf("\n        mask: proto: 0x%02x, flow_id: 0x%08x,  ",
2206 			    fs->flow_mask.proto, fs->flow_mask.flow_id6);
2207 			inet_ntop(AF_INET6, &(fs->flow_mask.src_ip6),
2208 			    buff, sizeof(buff));
2209 			printf("%s/0x%04x -> ", buff, fs->flow_mask.src_port);
2210 			inet_ntop( AF_INET6, &(fs->flow_mask.dst_ip6),
2211 			    buff, sizeof(buff) );
2212 			printf("%s/0x%04x\n", buff, fs->flow_mask.dst_port);
2213 
2214 			printf("BKT ___Prot___ _flow-id_ "
2215 			    "______________Source IPv6/port_______________ "
2216 			    "_______________Dest. IPv6/port_______________ "
2217 			    "Tot_pkt/bytes Pkt/Byte Drp\n");
2218 		}
2219 		printf("%3d ", q[l].hash_slot);
2220 		pe = getprotobynumber(q[l].id.proto);
2221 		if (pe != NULL)
2222 			printf("%9s ", pe->p_name);
2223 		else
2224 			printf("%9u ", q[l].id.proto);
2225 		printf("%7d  %39s/%-5d ", q[l].id.flow_id6,
2226 		    inet_ntop(AF_INET6, &(q[l].id.src_ip6), buff, sizeof(buff)),
2227 		    q[l].id.src_port);
2228 		printf(" %39s/%-5d ",
2229 		    inet_ntop(AF_INET6, &(q[l].id.dst_ip6), buff, sizeof(buff)),
2230 		    q[l].id.dst_port);
2231 		printf(" %4qu %8qu %2u %4u %3u\n",
2232 		    q[l].tot_pkts, q[l].tot_bytes,
2233 		    q[l].len, q[l].len_bytes, q[l].drops);
2234 		if (verbose)
2235 			printf("   S %20qd  F %20qd\n", q[l].S, q[l].F);
2236 	}
2237 }
2238 
2239 static void
2240 print_flowset_parms(struct dn_flow_set *fs, char *prefix)
2241 {
2242 	int l;
2243 	char qs[30];
2244 	char plr[30];
2245 	char red[90];	/* Display RED parameters */
2246 
2247 	l = fs->qsize;
2248 	if (fs->flags_fs & DN_QSIZE_IS_BYTES) {
2249 		if (l >= 8192)
2250 			sprintf(qs, "%d KB", l / 1024);
2251 		else
2252 			sprintf(qs, "%d B", l);
2253 	} else
2254 		sprintf(qs, "%3d sl.", l);
2255 	if (fs->plr)
2256 		sprintf(plr, "plr %f", 1.0 * fs->plr / (double)(0x7fffffff));
2257 	else
2258 		plr[0] = '\0';
2259 	if (fs->flags_fs & DN_IS_RED)	/* RED parameters */
2260 		sprintf(red,
2261 		    "\n\t  %cRED w_q %f min_th %d max_th %d max_p %f",
2262 		    (fs->flags_fs & DN_IS_GENTLE_RED) ? 'G' : ' ',
2263 		    1.0 * fs->w_q / (double)(1 << SCALE_RED),
2264 		    SCALE_VAL(fs->min_th),
2265 		    SCALE_VAL(fs->max_th),
2266 		    1.0 * fs->max_p / (double)(1 << SCALE_RED));
2267 	else
2268 		sprintf(red, "droptail");
2269 
2270 	printf("%s %s%s %d queues (%d buckets) %s\n",
2271 	    prefix, qs, plr, fs->rq_elements, fs->rq_size, red);
2272 }
2273 
2274 static void
2275 list_pipes(void *data, uint nbytes, int ac, char *av[])
2276 {
2277 	int rulenum;
2278 	void *next = data;
2279 	struct dn_pipe *p = (struct dn_pipe *) data;
2280 	struct dn_flow_set *fs;
2281 	struct dn_flow_queue *q;
2282 	int l;
2283 
2284 	if (ac > 0)
2285 		rulenum = strtoul(*av++, NULL, 10);
2286 	else
2287 		rulenum = 0;
2288 	for (; nbytes >= sizeof *p; p = (struct dn_pipe *)next) {
2289 		double b = p->bandwidth;
2290 		char buf[30];
2291 		char prefix[80];
2292 
2293 		if (SLIST_NEXT(p, next) != (struct dn_pipe *)DN_IS_PIPE)
2294 			break;	/* done with pipes, now queues */
2295 
2296 		/*
2297 		 * compute length, as pipe have variable size
2298 		 */
2299 		l = sizeof(*p) + p->fs.rq_elements * sizeof(*q);
2300 		next = (char *)p + l;
2301 		nbytes -= l;
2302 
2303 		if ((rulenum != 0 && rulenum != p->pipe_nr) || do_pipe == 2)
2304 			continue;
2305 
2306 		/*
2307 		 * Print rate (or clocking interface)
2308 		 */
2309 		if (p->if_name[0] != '\0')
2310 			sprintf(buf, "%s", p->if_name);
2311 		else if (b == 0)
2312 			sprintf(buf, "unlimited");
2313 		else if (b >= 1000000)
2314 			sprintf(buf, "%7.3f Mbit/s", b/1000000);
2315 		else if (b >= 1000)
2316 			sprintf(buf, "%7.3f Kbit/s", b/1000);
2317 		else
2318 			sprintf(buf, "%7.3f bit/s ", b);
2319 
2320 		sprintf(prefix, "%05d: %s %4d ms ",
2321 		    p->pipe_nr, buf, p->delay);
2322 		print_flowset_parms(&(p->fs), prefix);
2323 		if (verbose)
2324 			printf("   V %20qd\n", p->V >> MY_M);
2325 
2326 		q = (struct dn_flow_queue *)(p+1);
2327 		list_queues(&(p->fs), q);
2328 	}
2329 	for (fs = next; nbytes >= sizeof *fs; fs = next) {
2330 		char prefix[80];
2331 
2332 		if (SLIST_NEXT(fs, next) != (struct dn_flow_set *)DN_IS_QUEUE)
2333 			break;
2334 		l = sizeof(*fs) + fs->rq_elements * sizeof(*q);
2335 		next = (char *)fs + l;
2336 		nbytes -= l;
2337 
2338 		if (rulenum != 0 && ((rulenum != fs->fs_nr && do_pipe == 2) ||
2339 		    (rulenum != fs->parent_nr && do_pipe == 1))) {
2340 			continue;
2341 		}
2342 
2343 		q = (struct dn_flow_queue *)(fs+1);
2344 		sprintf(prefix, "q%05d: weight %d pipe %d ",
2345 		    fs->fs_nr, fs->weight, fs->parent_nr);
2346 		print_flowset_parms(fs, prefix);
2347 		list_queues(fs, q);
2348 	}
2349 }
2350 
2351 /*
2352  * This one handles all set-related commands
2353  * 	ipfw set { show | enable | disable }
2354  * 	ipfw set swap X Y
2355  * 	ipfw set move X to Y
2356  * 	ipfw set move rule X to Y
2357  */
2358 static void
2359 sets_handler(int ac, char *av[])
2360 {
2361 	uint32_t set_disable, masks[2];
2362 	int i, nbytes;
2363 	uint16_t rulenum;
2364 	uint8_t cmd, new_set;
2365 
2366 	ac--;
2367 	av++;
2368 
2369 	if (!ac)
2370 		errx(EX_USAGE, "set needs command");
2371 	if (_substrcmp(*av, "show") == 0) {
2372 		void *data;
2373 		char const *msg;
2374 
2375 		nbytes = sizeof(struct ip_fw);
2376 		if ((data = calloc(1, nbytes)) == NULL)
2377 			err(EX_OSERR, "calloc");
2378 		if (do_cmd(IP_FW_GET, data, (uintptr_t)&nbytes) < 0)
2379 			err(EX_OSERR, "getsockopt(IP_FW_GET)");
2380 		bcopy(&((struct ip_fw *)data)->next_rule,
2381 			&set_disable, sizeof(set_disable));
2382 
2383 		for (i = 0, msg = "disable" ; i < RESVD_SET; i++)
2384 			if ((set_disable & (1<<i))) {
2385 				printf("%s %d", msg, i);
2386 				msg = "";
2387 			}
2388 		msg = (set_disable) ? " enable" : "enable";
2389 		for (i = 0; i < RESVD_SET; i++)
2390 			if (!(set_disable & (1<<i))) {
2391 				printf("%s %d", msg, i);
2392 				msg = "";
2393 			}
2394 		printf("\n");
2395 	} else if (_substrcmp(*av, "swap") == 0) {
2396 		ac--; av++;
2397 		if (ac != 2)
2398 			errx(EX_USAGE, "set swap needs 2 set numbers\n");
2399 		rulenum = atoi(av[0]);
2400 		new_set = atoi(av[1]);
2401 		if (!isdigit(*(av[0])) || rulenum > RESVD_SET)
2402 			errx(EX_DATAERR, "invalid set number %s\n", av[0]);
2403 		if (!isdigit(*(av[1])) || new_set > RESVD_SET)
2404 			errx(EX_DATAERR, "invalid set number %s\n", av[1]);
2405 		masks[0] = (4 << 24) | (new_set << 16) | (rulenum);
2406 		i = do_cmd(IP_FW_DEL, masks, sizeof(uint32_t));
2407 	} else if (_substrcmp(*av, "move") == 0) {
2408 		ac--; av++;
2409 		if (ac && _substrcmp(*av, "rule") == 0) {
2410 			cmd = 2;
2411 			ac--; av++;
2412 		} else
2413 			cmd = 3;
2414 		if (ac != 3 || _substrcmp(av[1], "to") != 0)
2415 			errx(EX_USAGE, "syntax: set move [rule] X to Y\n");
2416 		rulenum = atoi(av[0]);
2417 		new_set = atoi(av[2]);
2418 		if (!isdigit(*(av[0])) || (cmd == 3 && rulenum > RESVD_SET) ||
2419 			(cmd == 2 && rulenum == 65535) )
2420 			errx(EX_DATAERR, "invalid source number %s\n", av[0]);
2421 		if (!isdigit(*(av[2])) || new_set > RESVD_SET)
2422 			errx(EX_DATAERR, "invalid dest. set %s\n", av[1]);
2423 		masks[0] = (cmd << 24) | (new_set << 16) | (rulenum);
2424 		i = do_cmd(IP_FW_DEL, masks, sizeof(uint32_t));
2425 	} else if (_substrcmp(*av, "disable") == 0 ||
2426 		   _substrcmp(*av, "enable") == 0 ) {
2427 		int which = _substrcmp(*av, "enable") == 0 ? 1 : 0;
2428 
2429 		ac--; av++;
2430 		masks[0] = masks[1] = 0;
2431 
2432 		while (ac) {
2433 			if (isdigit(**av)) {
2434 				i = atoi(*av);
2435 				if (i < 0 || i > RESVD_SET)
2436 					errx(EX_DATAERR,
2437 					    "invalid set number %d\n", i);
2438 				masks[which] |= (1<<i);
2439 			} else if (_substrcmp(*av, "disable") == 0)
2440 				which = 0;
2441 			else if (_substrcmp(*av, "enable") == 0)
2442 				which = 1;
2443 			else
2444 				errx(EX_DATAERR,
2445 					"invalid set command %s\n", *av);
2446 			av++; ac--;
2447 		}
2448 		if ( (masks[0] & masks[1]) != 0 )
2449 			errx(EX_DATAERR,
2450 			    "cannot enable and disable the same set\n");
2451 
2452 		i = do_cmd(IP_FW_DEL, masks, sizeof(masks));
2453 		if (i)
2454 			warn("set enable/disable: setsockopt(IP_FW_DEL)");
2455 	} else
2456 		errx(EX_USAGE, "invalid set command %s\n", *av);
2457 }
2458 
2459 static void
2460 sysctl_handler(int ac, char *av[], int which)
2461 {
2462 	ac--;
2463 	av++;
2464 
2465 	if (ac == 0) {
2466 		warnx("missing keyword to enable/disable\n");
2467 	} else if (_substrcmp(*av, "firewall") == 0) {
2468 		sysctlbyname("net.inet.ip.fw.enable", NULL, 0,
2469 		    &which, sizeof(which));
2470 	} else if (_substrcmp(*av, "one_pass") == 0) {
2471 		sysctlbyname("net.inet.ip.fw.one_pass", NULL, 0,
2472 		    &which, sizeof(which));
2473 	} else if (_substrcmp(*av, "debug") == 0) {
2474 		sysctlbyname("net.inet.ip.fw.debug", NULL, 0,
2475 		    &which, sizeof(which));
2476 	} else if (_substrcmp(*av, "verbose") == 0) {
2477 		sysctlbyname("net.inet.ip.fw.verbose", NULL, 0,
2478 		    &which, sizeof(which));
2479 	} else if (_substrcmp(*av, "dyn_keepalive") == 0) {
2480 		sysctlbyname("net.inet.ip.fw.dyn_keepalive", NULL, 0,
2481 		    &which, sizeof(which));
2482 	} else if (_substrcmp(*av, "altq") == 0) {
2483 		altq_set_enabled(which);
2484 	} else {
2485 		warnx("unrecognize enable/disable keyword: %s\n", *av);
2486 	}
2487 }
2488 
2489 static void
2490 list(int ac, char *av[], int show_counters)
2491 {
2492 	struct ip_fw *r;
2493 	ipfw_dyn_rule *dynrules, *d;
2494 
2495 #define NEXT(r)	((struct ip_fw *)((char *)r + RULESIZE(r)))
2496 	char *lim;
2497 	void *data = NULL;
2498 	int bcwidth, n, nbytes, nstat, ndyn, pcwidth, width;
2499 	int exitval = EX_OK;
2500 	int lac;
2501 	char **lav;
2502 	u_long rnum, last;
2503 	char *endptr;
2504 	int seen = 0;
2505 	uint8_t set;
2506 
2507 	const int ocmd = do_pipe ? IP_DUMMYNET_GET : IP_FW_GET;
2508 	int nalloc = 1024;	/* start somewhere... */
2509 
2510 	last = 0;
2511 
2512 	if (test_only) {
2513 		fprintf(stderr, "Testing only, list disabled\n");
2514 		return;
2515 	}
2516 
2517 	ac--;
2518 	av++;
2519 
2520 	/* get rules or pipes from kernel, resizing array as necessary */
2521 	nbytes = nalloc;
2522 
2523 	while (nbytes >= nalloc) {
2524 		nalloc = nalloc * 2 + 200;
2525 		nbytes = nalloc;
2526 		if ((data = realloc(data, nbytes)) == NULL)
2527 			err(EX_OSERR, "realloc");
2528 		if (do_cmd(ocmd, data, (uintptr_t)&nbytes) < 0)
2529 			err(EX_OSERR, "getsockopt(IP_%s_GET)",
2530 				do_pipe ? "DUMMYNET" : "FW");
2531 	}
2532 
2533 	if (do_pipe) {
2534 		list_pipes(data, nbytes, ac, av);
2535 		goto done;
2536 	}
2537 
2538 	/*
2539 	 * Count static rules. They have variable size so we
2540 	 * need to scan the list to count them.
2541 	 */
2542 	for (nstat = 1, r = data, lim = (char *)data + nbytes;
2543 		    r->rulenum < 65535 && (char *)r < lim;
2544 		    ++nstat, r = NEXT(r) )
2545 		; /* nothing */
2546 
2547 	/*
2548 	 * Count dynamic rules. This is easier as they have
2549 	 * fixed size.
2550 	 */
2551 	r = NEXT(r);
2552 	dynrules = (ipfw_dyn_rule *)r ;
2553 	n = (char *)r - (char *)data;
2554 	ndyn = (nbytes - n) / sizeof *dynrules;
2555 
2556 	/* if showing stats, figure out column widths ahead of time */
2557 	bcwidth = pcwidth = 0;
2558 	if (show_counters) {
2559 		for (n = 0, r = data; n < nstat; n++, r = NEXT(r)) {
2560 			/* skip rules from another set */
2561 			if (use_set && r->set != use_set - 1)
2562 				continue;
2563 
2564 			/* packet counter */
2565 			width = snprintf(NULL, 0, "%llu",
2566 			    align_uint64(&r->pcnt));
2567 			if (width > pcwidth)
2568 				pcwidth = width;
2569 
2570 			/* byte counter */
2571 			width = snprintf(NULL, 0, "%llu",
2572 			    align_uint64(&r->bcnt));
2573 			if (width > bcwidth)
2574 				bcwidth = width;
2575 		}
2576 	}
2577 	if (do_dynamic && ndyn) {
2578 		for (n = 0, d = dynrules; n < ndyn; n++, d++) {
2579 			if (use_set) {
2580 				/* skip rules from another set */
2581 				bcopy((char *)&d->rule + sizeof(uint16_t),
2582 				      &set, sizeof(uint8_t));
2583 				if (set != use_set - 1)
2584 					continue;
2585 			}
2586 			width = snprintf(NULL, 0, "%llu",
2587 			    align_uint64(&d->pcnt));
2588 			if (width > pcwidth)
2589 				pcwidth = width;
2590 
2591 			width = snprintf(NULL, 0, "%llu",
2592 			    align_uint64(&d->bcnt));
2593 			if (width > bcwidth)
2594 				bcwidth = width;
2595 		}
2596 	}
2597 	/* if no rule numbers were specified, list all rules */
2598 	if (ac == 0) {
2599 		for (n = 0, r = data; n < nstat; n++, r = NEXT(r)) {
2600 			if (use_set && r->set != use_set - 1)
2601 				continue;
2602 			show_ipfw(r, pcwidth, bcwidth);
2603 		}
2604 
2605 		if (do_dynamic && ndyn) {
2606 			printf("## Dynamic rules (%d):\n", ndyn);
2607 			for (n = 0, d = dynrules; n < ndyn; n++, d++) {
2608 				if (use_set) {
2609 					bcopy((char *)&d->rule + sizeof(uint16_t),
2610 					      &set, sizeof(uint8_t));
2611 					if (set != use_set - 1)
2612 						continue;
2613 				}
2614 				show_dyn_ipfw(d, pcwidth, bcwidth);
2615 		}
2616 		}
2617 		goto done;
2618 	}
2619 
2620 	/* display specific rules requested on command line */
2621 
2622 	for (lac = ac, lav = av; lac != 0; lac--) {
2623 		/* convert command line rule # */
2624 		last = rnum = strtoul(*lav++, &endptr, 10);
2625 		if (*endptr == '-')
2626 			last = strtoul(endptr+1, &endptr, 10);
2627 		if (*endptr) {
2628 			exitval = EX_USAGE;
2629 			warnx("invalid rule number: %s", *(lav - 1));
2630 			continue;
2631 		}
2632 		for (n = seen = 0, r = data; n < nstat; n++, r = NEXT(r) ) {
2633 			if (r->rulenum > last)
2634 				break;
2635 			if (use_set && r->set != use_set - 1)
2636 				continue;
2637 			if (r->rulenum >= rnum && r->rulenum <= last) {
2638 				show_ipfw(r, pcwidth, bcwidth);
2639 				seen = 1;
2640 			}
2641 		}
2642 		if (!seen) {
2643 			/* give precedence to other error(s) */
2644 			if (exitval == EX_OK)
2645 				exitval = EX_UNAVAILABLE;
2646 			warnx("rule %lu does not exist", rnum);
2647 		}
2648 	}
2649 
2650 	if (do_dynamic && ndyn) {
2651 		printf("## Dynamic rules:\n");
2652 		for (lac = ac, lav = av; lac != 0; lac--) {
2653 			last = rnum = strtoul(*lav++, &endptr, 10);
2654 			if (*endptr == '-')
2655 				last = strtoul(endptr+1, &endptr, 10);
2656 			if (*endptr)
2657 				/* already warned */
2658 				continue;
2659 			for (n = 0, d = dynrules; n < ndyn; n++, d++) {
2660 				uint16_t rulenum;
2661 
2662 				bcopy(&d->rule, &rulenum, sizeof(rulenum));
2663 				if (rulenum > rnum)
2664 					break;
2665 				if (use_set) {
2666 					bcopy((char *)&d->rule + sizeof(uint16_t),
2667 					      &set, sizeof(uint8_t));
2668 					if (set != use_set - 1)
2669 						continue;
2670 				}
2671 				if (r->rulenum >= rnum && r->rulenum <= last)
2672 					show_dyn_ipfw(d, pcwidth, bcwidth);
2673 			}
2674 		}
2675 	}
2676 
2677 	ac = 0;
2678 
2679 done:
2680 	free(data);
2681 
2682 	if (exitval != EX_OK)
2683 		exit(exitval);
2684 #undef NEXT
2685 }
2686 
2687 static void
2688 show_usage(void)
2689 {
2690 	fprintf(stderr, "usage: ipfw [options]\n"
2691 "do \"ipfw -h\" or see ipfw manpage for details\n"
2692 );
2693 	exit(EX_USAGE);
2694 }
2695 
2696 static void
2697 help(void)
2698 {
2699 	fprintf(stderr,
2700 "ipfw syntax summary (but please do read the ipfw(8) manpage):\n"
2701 "ipfw [-abcdefhnNqStTv] <command> where <command> is one of:\n"
2702 "add [num] [set N] [prob x] RULE-BODY\n"
2703 "{pipe|queue} N config PIPE-BODY\n"
2704 "[pipe|queue] {zero|delete|show} [N{,N}]\n"
2705 "nat N config {ip IPADDR|if IFNAME|log|deny_in|same_ports|unreg_only|reset|\n"
2706 "		reverse|proxy_only|redirect_addr linkspec|\n"
2707 "		redirect_port linkspec|redirect_proto linkspec}\n"
2708 "set [disable N... enable N...] | move [rule] X to Y | swap X Y | show\n"
2709 "set N {show|list|zero|resetlog|delete} [N{,N}] | flush\n"
2710 "table N {add ip[/bits] [value] | delete ip[/bits] | flush | list}\n"
2711 "\n"
2712 "RULE-BODY:	check-state [PARAMS] | ACTION [PARAMS] ADDR [OPTION_LIST]\n"
2713 "ACTION:	check-state | allow | count | deny | unreach{,6} CODE |\n"
2714 "               skipto N | {divert|tee} PORT | forward ADDR |\n"
2715 "               pipe N | queue N | nat N\n"
2716 "PARAMS: 	[log [logamount LOGLIMIT]] [altq QUEUE_NAME]\n"
2717 "ADDR:		[ MAC dst src ether_type ] \n"
2718 "		[ ip from IPADDR [ PORT ] to IPADDR [ PORTLIST ] ]\n"
2719 "		[ ipv6|ip6 from IP6ADDR [ PORT ] to IP6ADDR [ PORTLIST ] ]\n"
2720 "IPADDR:	[not] { any | me | ip/bits{x,y,z} | table(t[,v]) | IPLIST }\n"
2721 "IP6ADDR:	[not] { any | me | me6 | ip6/bits | IP6LIST }\n"
2722 "IP6LIST:	{ ip6 | ip6/bits }[,IP6LIST]\n"
2723 "IPLIST:	{ ip | ip/bits | ip:mask }[,IPLIST]\n"
2724 "OPTION_LIST:	OPTION [OPTION_LIST]\n"
2725 "OPTION:	bridged | diverted | diverted-loopback | diverted-output |\n"
2726 "	{dst-ip|src-ip} IPADDR | {dst-ip6|src-ip6|dst-ipv6|src-ipv6} IP6ADDR |\n"
2727 "	{dst-port|src-port} LIST |\n"
2728 "	estab | frag | {gid|uid} N | icmptypes LIST | in | out | ipid LIST |\n"
2729 "	iplen LIST | ipoptions SPEC | ipprecedence | ipsec | iptos SPEC |\n"
2730 "	ipttl LIST | ipversion VER | keep-state | layer2 | limit ... |\n"
2731 "	icmp6types LIST | ext6hdr LIST | flow-id N[,N] |\n"
2732 "	mac ... | mac-type LIST | proto LIST | {recv|xmit|via} {IF|IPADDR} |\n"
2733 "	setup | {tcpack|tcpseq|tcpwin} NN | tcpflags SPEC | tcpoptions SPEC |\n"
2734 "	tcpdatalen LIST | verrevpath | versrcreach | antispoof\n"
2735 );
2736 exit(0);
2737 }
2738 
2739 
2740 static int
2741 lookup_host (char *host, struct in_addr *ipaddr)
2742 {
2743 	struct hostent *he;
2744 
2745 	if (!inet_aton(host, ipaddr)) {
2746 		if ((he = gethostbyname(host)) == NULL)
2747 			return(-1);
2748 		*ipaddr = *(struct in_addr *)he->h_addr_list[0];
2749 	}
2750 	return(0);
2751 }
2752 
2753 /*
2754  * fills the addr and mask fields in the instruction as appropriate from av.
2755  * Update length as appropriate.
2756  * The following formats are allowed:
2757  *	me	returns O_IP_*_ME
2758  *	1.2.3.4		single IP address
2759  *	1.2.3.4:5.6.7.8	address:mask
2760  *	1.2.3.4/24	address/mask
2761  *	1.2.3.4/26{1,6,5,4,23}	set of addresses in a subnet
2762  * We can have multiple comma-separated address/mask entries.
2763  */
2764 static void
2765 fill_ip(ipfw_insn_ip *cmd, char *av)
2766 {
2767 	int len = 0;
2768 	uint32_t *d = ((ipfw_insn_u32 *)cmd)->d;
2769 
2770 	cmd->o.len &= ~F_LEN_MASK;	/* zero len */
2771 
2772 	if (_substrcmp(av, "any") == 0)
2773 		return;
2774 
2775 	if (_substrcmp(av, "me") == 0) {
2776 		cmd->o.len |= F_INSN_SIZE(ipfw_insn);
2777 		return;
2778 	}
2779 
2780 	if (strncmp(av, "table(", 6) == 0) {
2781 		char *p = strchr(av + 6, ',');
2782 
2783 		if (p)
2784 			*p++ = '\0';
2785 		cmd->o.opcode = O_IP_DST_LOOKUP;
2786 		cmd->o.arg1 = strtoul(av + 6, NULL, 0);
2787 		if (p) {
2788 			cmd->o.len |= F_INSN_SIZE(ipfw_insn_u32);
2789 			d[0] = strtoul(p, NULL, 0);
2790 		} else
2791 			cmd->o.len |= F_INSN_SIZE(ipfw_insn);
2792 		return;
2793 	}
2794 
2795     while (av) {
2796 	/*
2797 	 * After the address we can have '/' or ':' indicating a mask,
2798 	 * ',' indicating another address follows, '{' indicating a
2799 	 * set of addresses of unspecified size.
2800 	 */
2801 	char *t = NULL, *p = strpbrk(av, "/:,{");
2802 	int masklen;
2803 	char md, nd;
2804 
2805 	if (p) {
2806 		md = *p;
2807 		*p++ = '\0';
2808 		if ((t = strpbrk(p, ",{")) != NULL) {
2809 			nd = *t;
2810 			*t = '\0';
2811 		}
2812 	} else
2813 		md = '\0';
2814 
2815 	if (lookup_host(av, (struct in_addr *)&d[0]) != 0)
2816 		errx(EX_NOHOST, "hostname ``%s'' unknown", av);
2817 	switch (md) {
2818 	case ':':
2819 		if (!inet_aton(p, (struct in_addr *)&d[1]))
2820 			errx(EX_DATAERR, "bad netmask ``%s''", p);
2821 		break;
2822 	case '/':
2823 		masklen = atoi(p);
2824 		if (masklen == 0)
2825 			d[1] = htonl(0);	/* mask */
2826 		else if (masklen > 32)
2827 			errx(EX_DATAERR, "bad width ``%s''", p);
2828 		else
2829 			d[1] = htonl(~0 << (32 - masklen));
2830 		break;
2831 	case '{':	/* no mask, assume /24 and put back the '{' */
2832 		d[1] = htonl(~0 << (32 - 24));
2833 		*(--p) = md;
2834 		break;
2835 
2836 	case ',':	/* single address plus continuation */
2837 		*(--p) = md;
2838 		/* FALLTHROUGH */
2839 	case 0:		/* initialization value */
2840 	default:
2841 		d[1] = htonl(~0);	/* force /32 */
2842 		break;
2843 	}
2844 	d[0] &= d[1];		/* mask base address with mask */
2845 	if (t)
2846 		*t = nd;
2847 	/* find next separator */
2848 	if (p)
2849 		p = strpbrk(p, ",{");
2850 	if (p && *p == '{') {
2851 		/*
2852 		 * We have a set of addresses. They are stored as follows:
2853 		 *   arg1	is the set size (powers of 2, 2..256)
2854 		 *   addr	is the base address IN HOST FORMAT
2855 		 *   mask..	is an array of arg1 bits (rounded up to
2856 		 *		the next multiple of 32) with bits set
2857 		 *		for each host in the map.
2858 		 */
2859 		uint32_t *map = (uint32_t *)&cmd->mask;
2860 		int low, high;
2861 		int i = contigmask((uint8_t *)&(d[1]), 32);
2862 
2863 		if (len > 0)
2864 			errx(EX_DATAERR, "address set cannot be in a list");
2865 		if (i < 24 || i > 31)
2866 			errx(EX_DATAERR, "invalid set with mask %d\n", i);
2867 		cmd->o.arg1 = 1<<(32-i);	/* map length		*/
2868 		d[0] = ntohl(d[0]);		/* base addr in host format */
2869 		cmd->o.opcode = O_IP_DST_SET;	/* default */
2870 		cmd->o.len |= F_INSN_SIZE(ipfw_insn_u32) + (cmd->o.arg1+31)/32;
2871 		for (i = 0; i < (cmd->o.arg1+31)/32 ; i++)
2872 			map[i] = 0;	/* clear map */
2873 
2874 		av = p + 1;
2875 		low = d[0] & 0xff;
2876 		high = low + cmd->o.arg1 - 1;
2877 		/*
2878 		 * Here, i stores the previous value when we specify a range
2879 		 * of addresses within a mask, e.g. 45-63. i = -1 means we
2880 		 * have no previous value.
2881 		 */
2882 		i = -1;	/* previous value in a range */
2883 		while (isdigit(*av)) {
2884 			char *s;
2885 			int a = strtol(av, &s, 0);
2886 
2887 			if (s == av) { /* no parameter */
2888 			    if (*av != '}')
2889 				errx(EX_DATAERR, "set not closed\n");
2890 			    if (i != -1)
2891 				errx(EX_DATAERR, "incomplete range %d-", i);
2892 			    break;
2893 			}
2894 			if (a < low || a > high)
2895 			    errx(EX_DATAERR, "addr %d out of range [%d-%d]\n",
2896 				a, low, high);
2897 			a -= low;
2898 			if (i == -1)	/* no previous in range */
2899 			    i = a;
2900 			else {		/* check that range is valid */
2901 			    if (i > a)
2902 				errx(EX_DATAERR, "invalid range %d-%d",
2903 					i+low, a+low);
2904 			    if (*s == '-')
2905 				errx(EX_DATAERR, "double '-' in range");
2906 			}
2907 			for (; i <= a; i++)
2908 			    map[i/32] |= 1<<(i & 31);
2909 			i = -1;
2910 			if (*s == '-')
2911 			    i = a;
2912 			else if (*s == '}')
2913 			    break;
2914 			av = s+1;
2915 		}
2916 		return;
2917 	}
2918 	av = p;
2919 	if (av)			/* then *av must be a ',' */
2920 		av++;
2921 
2922 	/* Check this entry */
2923 	if (d[1] == 0) { /* "any", specified as x.x.x.x/0 */
2924 		/*
2925 		 * 'any' turns the entire list into a NOP.
2926 		 * 'not any' never matches, so it is removed from the
2927 		 * list unless it is the only item, in which case we
2928 		 * report an error.
2929 		 */
2930 		if (cmd->o.len & F_NOT) {	/* "not any" never matches */
2931 			if (av == NULL && len == 0) /* only this entry */
2932 				errx(EX_DATAERR, "not any never matches");
2933 		}
2934 		/* else do nothing and skip this entry */
2935 		return;
2936 	}
2937 	/* A single IP can be stored in an optimized format */
2938 	if (d[1] == IP_MASK_ALL && av == NULL && len == 0) {
2939 		cmd->o.len |= F_INSN_SIZE(ipfw_insn_u32);
2940 		return;
2941 	}
2942 	len += 2;	/* two words... */
2943 	d += 2;
2944     } /* end while */
2945     if (len + 1 > F_LEN_MASK)
2946 	errx(EX_DATAERR, "address list too long");
2947     cmd->o.len |= len+1;
2948 }
2949 
2950 
2951 /* Try to find ipv6 address by hostname */
2952 static int
2953 lookup_host6 (char *host, struct in6_addr *ip6addr)
2954 {
2955 	struct hostent *he;
2956 
2957 	if (!inet_pton(AF_INET6, host, ip6addr)) {
2958 		if ((he = gethostbyname2(host, AF_INET6)) == NULL)
2959 			return(-1);
2960 		memcpy(ip6addr, he->h_addr_list[0], sizeof( struct in6_addr));
2961 	}
2962 	return(0);
2963 }
2964 
2965 
2966 /* n2mask sets n bits of the mask */
2967 static void
2968 n2mask(struct in6_addr *mask, int n)
2969 {
2970 	static int	minimask[9] =
2971 	    { 0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff };
2972 	u_char		*p;
2973 
2974 	memset(mask, 0, sizeof(struct in6_addr));
2975 	p = (u_char *) mask;
2976 	for (; n > 0; p++, n -= 8) {
2977 		if (n >= 8)
2978 			*p = 0xff;
2979 		else
2980 			*p = minimask[n];
2981 	}
2982 	return;
2983 }
2984 
2985 
2986 /*
2987  * fill the addr and mask fields in the instruction as appropriate from av.
2988  * Update length as appropriate.
2989  * The following formats are allowed:
2990  *     any     matches any IP6. Actually returns an empty instruction.
2991  *     me      returns O_IP6_*_ME
2992  *
2993  *     03f1::234:123:0342                single IP6 addres
2994  *     03f1::234:123:0342/24            address/mask
2995  *     03f1::234:123:0342/24,03f1::234:123:0343/               List of address
2996  *
2997  * Set of address (as in ipv6) not supported because ipv6 address
2998  * are typically random past the initial prefix.
2999  * Return 1 on success, 0 on failure.
3000  */
3001 static int
3002 fill_ip6(ipfw_insn_ip6 *cmd, char *av)
3003 {
3004 	int len = 0;
3005 	struct in6_addr *d = &(cmd->addr6);
3006 	/*
3007 	 * Needed for multiple address.
3008 	 * Note d[1] points to struct in6_add r mask6 of cmd
3009 	 */
3010 
3011        cmd->o.len &= ~F_LEN_MASK;	/* zero len */
3012 
3013        if (strcmp(av, "any") == 0)
3014 	       return (1);
3015 
3016 
3017        if (strcmp(av, "me") == 0) {	/* Set the data for "me" opt*/
3018 	       cmd->o.len |= F_INSN_SIZE(ipfw_insn);
3019 	       return (1);
3020        }
3021 
3022        if (strcmp(av, "me6") == 0) {	/* Set the data for "me" opt*/
3023 	       cmd->o.len |= F_INSN_SIZE(ipfw_insn);
3024 	       return (1);
3025        }
3026 
3027        av = strdup(av);
3028        while (av) {
3029 		/*
3030 		 * After the address we can have '/' indicating a mask,
3031 		 * or ',' indicating another address follows.
3032 		 */
3033 
3034 		char *p;
3035 		int masklen;
3036 		char md = '\0';
3037 
3038 		if ((p = strpbrk(av, "/,")) ) {
3039 			md = *p;	/* save the separator */
3040 			*p = '\0';	/* terminate address string */
3041 			p++;		/* and skip past it */
3042 		}
3043 		/* now p points to NULL, mask or next entry */
3044 
3045 		/* lookup stores address in *d as a side effect */
3046 		if (lookup_host6(av, d) != 0) {
3047 			/* XXX: failed. Free memory and go */
3048 			errx(EX_DATAERR, "bad address \"%s\"", av);
3049 		}
3050 		/* next, look at the mask, if any */
3051 		masklen = (md == '/') ? atoi(p) : 128;
3052 		if (masklen > 128 || masklen < 0)
3053 			errx(EX_DATAERR, "bad width \"%s\''", p);
3054 		else
3055 			n2mask(&d[1], masklen);
3056 
3057 		APPLY_MASK(d, &d[1])   /* mask base address with mask */
3058 
3059 		/* find next separator */
3060 
3061 		if (md == '/') {	/* find separator past the mask */
3062 			p = strpbrk(p, ",");
3063 			if (p != NULL)
3064 				p++;
3065 		}
3066 		av = p;
3067 
3068 		/* Check this entry */
3069 		if (masklen == 0) {
3070 			/*
3071 			 * 'any' turns the entire list into a NOP.
3072 			 * 'not any' never matches, so it is removed from the
3073 			 * list unless it is the only item, in which case we
3074 			 * report an error.
3075 			 */
3076 			if (cmd->o.len & F_NOT && av == NULL && len == 0)
3077 				errx(EX_DATAERR, "not any never matches");
3078 			continue;
3079 		}
3080 
3081 		/*
3082 		 * A single IP can be stored alone
3083 		 */
3084 		if (masklen == 128 && av == NULL && len == 0) {
3085 			len = F_INSN_SIZE(struct in6_addr);
3086 			break;
3087 		}
3088 
3089 		/* Update length and pointer to arguments */
3090 		len += F_INSN_SIZE(struct in6_addr)*2;
3091 		d += 2;
3092 	} /* end while */
3093 
3094 	/*
3095 	 * Total length of the command, remember that 1 is the size of
3096 	 * the base command.
3097 	 */
3098 	if (len + 1 > F_LEN_MASK)
3099 		errx(EX_DATAERR, "address list too long");
3100 	cmd->o.len |= len+1;
3101 	free(av);
3102 	return (1);
3103 }
3104 
3105 /*
3106  * fills command for ipv6 flow-id filtering
3107  * note that the 20 bit flow number is stored in a array of u_int32_t
3108  * it's supported lists of flow-id, so in the o.arg1 we store how many
3109  * additional flow-id we want to filter, the basic is 1
3110  */
3111 void
3112 fill_flow6( ipfw_insn_u32 *cmd, char *av )
3113 {
3114 	u_int32_t type;	 /* Current flow number */
3115 	u_int16_t nflow = 0;    /* Current flow index */
3116 	char *s = av;
3117 	cmd->d[0] = 0;	  /* Initializing the base number*/
3118 
3119 	while (s) {
3120 		av = strsep( &s, ",") ;
3121 		type = strtoul(av, &av, 0);
3122 		if (*av != ',' && *av != '\0')
3123 			errx(EX_DATAERR, "invalid ipv6 flow number %s", av);
3124 		if (type > 0xfffff)
3125 			errx(EX_DATAERR, "flow number out of range %s", av);
3126 		cmd->d[nflow] |= type;
3127 		nflow++;
3128 	}
3129 	if( nflow > 0 ) {
3130 		cmd->o.opcode = O_FLOW6ID;
3131 		cmd->o.len |= F_INSN_SIZE(ipfw_insn_u32) + nflow;
3132 		cmd->o.arg1 = nflow;
3133 	}
3134 	else {
3135 		errx(EX_DATAERR, "invalid ipv6 flow number %s", av);
3136 	}
3137 }
3138 
3139 static ipfw_insn *
3140 add_srcip6(ipfw_insn *cmd, char *av)
3141 {
3142 
3143 	fill_ip6((ipfw_insn_ip6 *)cmd, av);
3144 	if (F_LEN(cmd) == 0)				/* any */
3145 		;
3146 	if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn)) {	/* "me" */
3147 		cmd->opcode = O_IP6_SRC_ME;
3148 	} else if (F_LEN(cmd) ==
3149 	    (F_INSN_SIZE(struct in6_addr) + F_INSN_SIZE(ipfw_insn))) {
3150 		/* single IP, no mask*/
3151 		cmd->opcode = O_IP6_SRC;
3152 	} else {					/* addr/mask opt */
3153 		cmd->opcode = O_IP6_SRC_MASK;
3154 	}
3155 	return cmd;
3156 }
3157 
3158 static ipfw_insn *
3159 add_dstip6(ipfw_insn *cmd, char *av)
3160 {
3161 
3162 	fill_ip6((ipfw_insn_ip6 *)cmd, av);
3163 	if (F_LEN(cmd) == 0)				/* any */
3164 		;
3165 	if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn)) {	/* "me" */
3166 		cmd->opcode = O_IP6_DST_ME;
3167 	} else if (F_LEN(cmd) ==
3168 	    (F_INSN_SIZE(struct in6_addr) + F_INSN_SIZE(ipfw_insn))) {
3169 		/* single IP, no mask*/
3170 		cmd->opcode = O_IP6_DST;
3171 	} else {					/* addr/mask opt */
3172 		cmd->opcode = O_IP6_DST_MASK;
3173 	}
3174 	return cmd;
3175 }
3176 
3177 
3178 /*
3179  * helper function to process a set of flags and set bits in the
3180  * appropriate masks.
3181  */
3182 static void
3183 fill_flags(ipfw_insn *cmd, enum ipfw_opcodes opcode,
3184 	struct _s_x *flags, char *p)
3185 {
3186 	uint8_t set=0, clear=0;
3187 
3188 	while (p && *p) {
3189 		char *q;	/* points to the separator */
3190 		int val;
3191 		uint8_t *which;	/* mask we are working on */
3192 
3193 		if (*p == '!') {
3194 			p++;
3195 			which = &clear;
3196 		} else
3197 			which = &set;
3198 		q = strchr(p, ',');
3199 		if (q)
3200 			*q++ = '\0';
3201 		val = match_token(flags, p);
3202 		if (val <= 0)
3203 			errx(EX_DATAERR, "invalid flag %s", p);
3204 		*which |= (uint8_t)val;
3205 		p = q;
3206 	}
3207         cmd->opcode = opcode;
3208         cmd->len =  (cmd->len & (F_NOT | F_OR)) | 1;
3209         cmd->arg1 = (set & 0xff) | ( (clear & 0xff) << 8);
3210 }
3211 
3212 
3213 static void
3214 delete(int ac, char *av[])
3215 {
3216 	uint32_t rulenum;
3217 	struct dn_pipe p;
3218 	int i;
3219 	int exitval = EX_OK;
3220 	int do_set = 0;
3221 
3222 	memset(&p, 0, sizeof p);
3223 
3224 	av++; ac--;
3225 	NEED1("missing rule specification");
3226 	if (ac > 0 && _substrcmp(*av, "set") == 0) {
3227 		/* Do not allow using the following syntax:
3228 		 *	ipfw set N delete set M
3229 		 */
3230 		if (use_set)
3231 			errx(EX_DATAERR, "invalid syntax");
3232 		do_set = 1;	/* delete set */
3233 		ac--; av++;
3234 	}
3235 
3236 	/* Rule number */
3237 	while (ac && isdigit(**av)) {
3238 		i = atoi(*av); av++; ac--;
3239 		if (do_nat) {
3240 			exitval = do_cmd(IP_FW_NAT_DEL, &i, sizeof i);
3241 			if (exitval) {
3242 				exitval = EX_UNAVAILABLE;
3243 				warn("rule %u not available", i);
3244 			}
3245  		} else if (do_pipe) {
3246 			if (do_pipe == 1)
3247 				p.pipe_nr = i;
3248 			else
3249 				p.fs.fs_nr = i;
3250 			i = do_cmd(IP_DUMMYNET_DEL, &p, sizeof p);
3251 			if (i) {
3252 				exitval = 1;
3253 				warn("rule %u: setsockopt(IP_DUMMYNET_DEL)",
3254 				    do_pipe == 1 ? p.pipe_nr : p.fs.fs_nr);
3255 			}
3256 		} else {
3257 			if (use_set)
3258 				rulenum = (i & 0xffff) | (5 << 24) |
3259 				    ((use_set - 1) << 16);
3260 			else
3261 			rulenum =  (i & 0xffff) | (do_set << 24);
3262 			i = do_cmd(IP_FW_DEL, &rulenum, sizeof rulenum);
3263 			if (i) {
3264 				exitval = EX_UNAVAILABLE;
3265 				warn("rule %u: setsockopt(IP_FW_DEL)",
3266 				    rulenum);
3267 			}
3268 		}
3269 	}
3270 	if (exitval != EX_OK)
3271 		exit(exitval);
3272 }
3273 
3274 
3275 /*
3276  * fill the interface structure. We do not check the name as we can
3277  * create interfaces dynamically, so checking them at insert time
3278  * makes relatively little sense.
3279  * Interface names containing '*', '?', or '[' are assumed to be shell
3280  * patterns which match interfaces.
3281  */
3282 static void
3283 fill_iface(ipfw_insn_if *cmd, char *arg)
3284 {
3285 	cmd->name[0] = '\0';
3286 	cmd->o.len |= F_INSN_SIZE(ipfw_insn_if);
3287 
3288 	/* Parse the interface or address */
3289 	if (strcmp(arg, "any") == 0)
3290 		cmd->o.len = 0;		/* effectively ignore this command */
3291 	else if (!isdigit(*arg)) {
3292 		strlcpy(cmd->name, arg, sizeof(cmd->name));
3293 		cmd->p.glob = strpbrk(arg, "*?[") != NULL ? 1 : 0;
3294 	} else if (!inet_aton(arg, &cmd->p.ip))
3295 		errx(EX_DATAERR, "bad ip address ``%s''", arg);
3296 }
3297 
3298 /*
3299  * Search for interface with name "ifn", and fill n accordingly:
3300  *
3301  * n->ip        ip address of interface "ifn"
3302  * n->if_name   copy of interface name "ifn"
3303  */
3304 static void
3305 set_addr_dynamic(const char *ifn, struct cfg_nat *n)
3306 {
3307 	size_t needed;
3308 	int mib[6];
3309 	char *buf, *lim, *next;
3310 	struct if_msghdr *ifm;
3311 	struct ifa_msghdr *ifam;
3312 	struct sockaddr_dl *sdl;
3313 	struct sockaddr_in *sin;
3314 	int ifIndex, ifMTU;
3315 
3316 	mib[0] = CTL_NET;
3317 	mib[1] = PF_ROUTE;
3318 	mib[2] = 0;
3319 	mib[3] = AF_INET;
3320 	mib[4] = NET_RT_IFLIST;
3321 	mib[5] = 0;
3322 /*
3323  * Get interface data.
3324  */
3325 	if (sysctl(mib, 6, NULL, &needed, NULL, 0) == -1)
3326 		err(1, "iflist-sysctl-estimate");
3327 	if ((buf = malloc(needed)) == NULL)
3328 		errx(1, "malloc failed");
3329 	if (sysctl(mib, 6, buf, &needed, NULL, 0) == -1)
3330 		err(1, "iflist-sysctl-get");
3331 	lim = buf + needed;
3332 /*
3333  * Loop through interfaces until one with
3334  * given name is found. This is done to
3335  * find correct interface index for routing
3336  * message processing.
3337  */
3338 	ifIndex	= 0;
3339 	next = buf;
3340 	while (next < lim) {
3341 		ifm = (struct if_msghdr *)next;
3342 		next += ifm->ifm_msglen;
3343 		if (ifm->ifm_version != RTM_VERSION) {
3344 			if (verbose)
3345 				warnx("routing message version %d "
3346 				    "not understood", ifm->ifm_version);
3347 			continue;
3348 		}
3349 		if (ifm->ifm_type == RTM_IFINFO) {
3350 			sdl = (struct sockaddr_dl *)(ifm + 1);
3351 			if (strlen(ifn) == sdl->sdl_nlen &&
3352 			    strncmp(ifn, sdl->sdl_data, sdl->sdl_nlen) == 0) {
3353 				ifIndex = ifm->ifm_index;
3354 				ifMTU = ifm->ifm_data.ifi_mtu;
3355 				break;
3356 			}
3357 		}
3358 	}
3359 	if (!ifIndex)
3360 		errx(1, "unknown interface name %s", ifn);
3361 /*
3362  * Get interface address.
3363  */
3364 	sin = NULL;
3365 	while (next < lim) {
3366 		ifam = (struct ifa_msghdr *)next;
3367 		next += ifam->ifam_msglen;
3368 		if (ifam->ifam_version != RTM_VERSION) {
3369 			if (verbose)
3370 				warnx("routing message version %d "
3371 				    "not understood", ifam->ifam_version);
3372 			continue;
3373 		}
3374 		if (ifam->ifam_type != RTM_NEWADDR)
3375 			break;
3376 		if (ifam->ifam_addrs & RTA_IFA) {
3377 			int i;
3378 			char *cp = (char *)(ifam + 1);
3379 
3380 			for (i = 1; i < RTA_IFA; i <<= 1) {
3381 				if (ifam->ifam_addrs & i)
3382 					cp += SA_SIZE((struct sockaddr *)cp);
3383 			}
3384 			if (((struct sockaddr *)cp)->sa_family == AF_INET) {
3385 				sin = (struct sockaddr_in *)cp;
3386 				break;
3387 			}
3388 		}
3389 	}
3390 	if (sin == NULL)
3391 		errx(1, "%s: cannot get interface address", ifn);
3392 
3393 	n->ip = sin->sin_addr;
3394 	strncpy(n->if_name, ifn, IF_NAMESIZE);
3395 
3396 	free(buf);
3397 }
3398 
3399 /*
3400  * XXX - The following functions, macros and definitions come from natd.c:
3401  * it would be better to move them outside natd.c, in a file
3402  * (redirect_support.[ch]?) shared by ipfw and natd, but for now i can live
3403  * with it.
3404  */
3405 
3406 /*
3407  * Definition of a port range, and macros to deal with values.
3408  * FORMAT:  HI 16-bits == first port in range, 0 == all ports.
3409  *          LO 16-bits == number of ports in range
3410  * NOTES:   - Port values are not stored in network byte order.
3411  */
3412 
3413 #define port_range u_long
3414 
3415 #define GETLOPORT(x)     ((x) >> 0x10)
3416 #define GETNUMPORTS(x)   ((x) & 0x0000ffff)
3417 #define GETHIPORT(x)     (GETLOPORT((x)) + GETNUMPORTS((x)))
3418 
3419 /* Set y to be the low-port value in port_range variable x. */
3420 #define SETLOPORT(x,y)   ((x) = ((x) & 0x0000ffff) | ((y) << 0x10))
3421 
3422 /* Set y to be the number of ports in port_range variable x. */
3423 #define SETNUMPORTS(x,y) ((x) = ((x) & 0xffff0000) | (y))
3424 
3425 static void
3426 StrToAddr (const char* str, struct in_addr* addr)
3427 {
3428 	struct hostent* hp;
3429 
3430 	if (inet_aton (str, addr))
3431 		return;
3432 
3433 	hp = gethostbyname (str);
3434 	if (!hp)
3435 		errx (1, "unknown host %s", str);
3436 
3437 	memcpy (addr, hp->h_addr, sizeof (struct in_addr));
3438 }
3439 
3440 static int
3441 StrToPortRange (const char* str, const char* proto, port_range *portRange)
3442 {
3443 	char*           sep;
3444 	struct servent*	sp;
3445 	char*		end;
3446 	u_short         loPort;
3447 	u_short         hiPort;
3448 
3449 	/* First see if this is a service, return corresponding port if so. */
3450 	sp = getservbyname (str,proto);
3451 	if (sp) {
3452 	        SETLOPORT(*portRange, ntohs(sp->s_port));
3453 		SETNUMPORTS(*portRange, 1);
3454 		return 0;
3455 	}
3456 
3457 	/* Not a service, see if it's a single port or port range. */
3458 	sep = strchr (str, '-');
3459 	if (sep == NULL) {
3460 	        SETLOPORT(*portRange, strtol(str, &end, 10));
3461 		if (end != str) {
3462 		        /* Single port. */
3463 		        SETNUMPORTS(*portRange, 1);
3464 			return 0;
3465 		}
3466 
3467 		/* Error in port range field. */
3468 		errx (EX_DATAERR, "%s/%s: unknown service", str, proto);
3469 	}
3470 
3471 	/* Port range, get the values and sanity check. */
3472 	sscanf (str, "%hu-%hu", &loPort, &hiPort);
3473 	SETLOPORT(*portRange, loPort);
3474 	SETNUMPORTS(*portRange, 0);	/* Error by default */
3475 	if (loPort <= hiPort)
3476 	        SETNUMPORTS(*portRange, hiPort - loPort + 1);
3477 
3478 	if (GETNUMPORTS(*portRange) == 0)
3479 	        errx (EX_DATAERR, "invalid port range %s", str);
3480 
3481 	return 0;
3482 }
3483 
3484 static int
3485 StrToProto (const char* str)
3486 {
3487 	if (!strcmp (str, "tcp"))
3488 		return IPPROTO_TCP;
3489 
3490 	if (!strcmp (str, "udp"))
3491 		return IPPROTO_UDP;
3492 
3493 	errx (EX_DATAERR, "unknown protocol %s. Expected tcp or udp", str);
3494 }
3495 
3496 static int
3497 StrToAddrAndPortRange (const char* str, struct in_addr* addr, char* proto,
3498 		       port_range *portRange)
3499 {
3500 	char*	ptr;
3501 
3502 	ptr = strchr (str, ':');
3503 	if (!ptr)
3504 		errx (EX_DATAERR, "%s is missing port number", str);
3505 
3506 	*ptr = '\0';
3507 	++ptr;
3508 
3509 	StrToAddr (str, addr);
3510 	return StrToPortRange (ptr, proto, portRange);
3511 }
3512 
3513 /* End of stuff taken from natd.c. */
3514 
3515 #define INC_ARGCV() do {        \
3516 	(*_av)++;               \
3517 	(*_ac)--;               \
3518 	av = *_av;              \
3519 	ac = *_ac;              \
3520 } while(0)
3521 
3522 /*
3523  * The next 3 functions add support for the addr, port and proto redirect and
3524  * their logic is loosely based on SetupAddressRedirect(), SetupPortRedirect()
3525  * and SetupProtoRedirect() from natd.c.
3526  *
3527  * Every setup_* function fills at least one redirect entry
3528  * (struct cfg_redir) and zero or more server pool entry (struct cfg_spool)
3529  * in buf.
3530  *
3531  * The format of data in buf is:
3532  *
3533  *
3534  *     cfg_nat    cfg_redir    cfg_spool    ......  cfg_spool
3535  *
3536  *    -------------------------------------        ------------
3537  *   |          | .....X ... |          |         |           |  .....
3538  *    ------------------------------------- ...... ------------
3539  *                     ^
3540  *                spool_cnt       n=0       ......   n=(X-1)
3541  *
3542  * len points to the amount of available space in buf
3543  * space counts the memory consumed by every function
3544  *
3545  * XXX - Every function get all the argv params so it
3546  * has to check, in optional parameters, that the next
3547  * args is a valid option for the redir entry and not
3548  * another token. Only redir_port and redir_proto are
3549  * affected by this.
3550  */
3551 
3552 static int
3553 setup_redir_addr(char *spool_buf, int len,
3554 		 int *_ac, char ***_av)
3555 {
3556 	char **av, *sep; /* Token separator. */
3557 	/* Temporary buffer used to hold server pool ip's. */
3558 	char tmp_spool_buf[NAT_BUF_LEN];
3559 	int ac, i, space, lsnat;
3560 	struct cfg_redir *r;
3561 	struct cfg_spool *tmp;
3562 
3563 	av = *_av;
3564 	ac = *_ac;
3565 	space = 0;
3566 	lsnat = 0;
3567 	if (len >= SOF_REDIR) {
3568 		r = (struct cfg_redir *)spool_buf;
3569 		/* Skip cfg_redir at beginning of buf. */
3570 		spool_buf = &spool_buf[SOF_REDIR];
3571 		space = SOF_REDIR;
3572 		len -= SOF_REDIR;
3573 	} else
3574 		goto nospace;
3575 	r->mode = REDIR_ADDR;
3576 	/* Extract local address. */
3577 	if (ac == 0)
3578 		errx(EX_DATAERR, "redirect_addr: missing local address");
3579 	sep = strchr(*av, ',');
3580 	if (sep) {		/* LSNAT redirection syntax. */
3581 		r->laddr.s_addr = INADDR_NONE;
3582 		/* Preserve av, copy spool servers to tmp_spool_buf. */
3583 		strncpy(tmp_spool_buf, *av, strlen(*av)+1);
3584 		lsnat = 1;
3585 	} else
3586 		StrToAddr(*av, &r->laddr);
3587 	INC_ARGCV();
3588 
3589 	/* Extract public address. */
3590 	if (ac == 0)
3591 		errx(EX_DATAERR, "redirect_addr: missing public address");
3592 	StrToAddr(*av, &r->paddr);
3593 	INC_ARGCV();
3594 
3595 	/* Setup LSNAT server pool. */
3596 	if (sep) {
3597 		sep = strtok(tmp_spool_buf, ",");
3598 		while (sep != NULL) {
3599 			tmp = (struct cfg_spool *)spool_buf;
3600 			if (len < SOF_SPOOL)
3601 				goto nospace;
3602 			len -= SOF_SPOOL;
3603 			space += SOF_SPOOL;
3604 			StrToAddr(sep, &tmp->addr);
3605 			tmp->port = ~0;
3606 			r->spool_cnt++;
3607 			/* Point to the next possible cfg_spool. */
3608 			spool_buf = &spool_buf[SOF_SPOOL];
3609 			sep = strtok(NULL, ",");
3610 		}
3611 	}
3612 	return(space);
3613 nospace:
3614 	errx(EX_DATAERR, "redirect_addr: buf is too small\n");
3615 }
3616 
3617 static int
3618 setup_redir_port(char *spool_buf, int len,
3619 		 int *_ac, char ***_av)
3620 {
3621 	char **av, *sep, *protoName;
3622 	char tmp_spool_buf[NAT_BUF_LEN];
3623 	int ac, space, lsnat;
3624 	struct cfg_redir *r;
3625 	struct cfg_spool *tmp;
3626 	u_short numLocalPorts;
3627 	port_range portRange;
3628 
3629 	av = *_av;
3630 	ac = *_ac;
3631 	space = 0;
3632 	lsnat = 0;
3633 	numLocalPorts = 0;
3634 
3635 	if (len >= SOF_REDIR) {
3636 		r = (struct cfg_redir *)spool_buf;
3637 		/* Skip cfg_redir at beginning of buf. */
3638 		spool_buf = &spool_buf[SOF_REDIR];
3639 		space = SOF_REDIR;
3640 		len -= SOF_REDIR;
3641 	} else
3642 		goto nospace;
3643 	r->mode = REDIR_PORT;
3644 	/*
3645 	 * Extract protocol.
3646 	 */
3647 	if (ac == 0)
3648 		errx (EX_DATAERR, "redirect_port: missing protocol");
3649 	r->proto = StrToProto(*av);
3650 	protoName = *av;
3651 	INC_ARGCV();
3652 
3653 	/*
3654 	 * Extract local address.
3655 	 */
3656 	if (ac == 0)
3657 		errx (EX_DATAERR, "redirect_port: missing local address");
3658 
3659 	sep = strchr(*av, ',');
3660 	/* LSNAT redirection syntax. */
3661 	if (sep) {
3662 		r->laddr.s_addr = INADDR_NONE;
3663 		r->lport = ~0;
3664 		numLocalPorts = 1;
3665 		/* Preserve av, copy spool servers to tmp_spool_buf. */
3666 		strncpy(tmp_spool_buf, *av, strlen(*av)+1);
3667 		lsnat = 1;
3668 	} else {
3669 		if (StrToAddrAndPortRange (*av, &r->laddr, protoName,
3670 		    &portRange) != 0)
3671 			errx(EX_DATAERR, "redirect_port:"
3672 			    "invalid local port range");
3673 
3674 		r->lport = GETLOPORT(portRange);
3675 		numLocalPorts = GETNUMPORTS(portRange);
3676 	}
3677 	INC_ARGCV();
3678 
3679 	/*
3680 	 * Extract public port and optionally address.
3681 	 */
3682 	if (ac == 0)
3683 		errx (EX_DATAERR, "redirect_port: missing public port");
3684 
3685 	sep = strchr (*av, ':');
3686 	if (sep) {
3687 	        if (StrToAddrAndPortRange (*av, &r->paddr, protoName,
3688 		    &portRange) != 0)
3689 		        errx(EX_DATAERR, "redirect_port:"
3690 			    "invalid public port range");
3691 	} else {
3692 		r->paddr.s_addr = INADDR_ANY;
3693 		if (StrToPortRange (*av, protoName, &portRange) != 0)
3694 		        errx(EX_DATAERR, "redirect_port:"
3695 			    "invalid public port range");
3696 	}
3697 
3698 	r->pport = GETLOPORT(portRange);
3699 	r->pport_cnt = GETNUMPORTS(portRange);
3700 	INC_ARGCV();
3701 
3702 	/*
3703 	 * Extract remote address and optionally port.
3704 	 */
3705 	/*
3706 	 * NB: isalpha(**av) => we've to check that next parameter is really an
3707 	 * option for this redirect entry, else stop here processing arg[cv].
3708 	 */
3709 	if (ac != 0 && !isalpha(**av)) {
3710 		sep = strchr (*av, ':');
3711 		if (sep) {
3712 		        if (StrToAddrAndPortRange (*av, &r->raddr, protoName,
3713 			    &portRange) != 0)
3714 				errx(EX_DATAERR, "redirect_port:"
3715 				    "invalid remote port range");
3716 		} else {
3717 		        SETLOPORT(portRange, 0);
3718 			SETNUMPORTS(portRange, 1);
3719 			StrToAddr (*av, &r->raddr);
3720 		}
3721 		INC_ARGCV();
3722 	} else {
3723 		SETLOPORT(portRange, 0);
3724 		SETNUMPORTS(portRange, 1);
3725 		r->raddr.s_addr = INADDR_ANY;
3726 	}
3727 	r->rport = GETLOPORT(portRange);
3728 	r->rport_cnt = GETNUMPORTS(portRange);
3729 
3730 	/*
3731 	 * Make sure port ranges match up, then add the redirect ports.
3732 	 */
3733 	if (numLocalPorts != r->pport_cnt)
3734 	        errx(EX_DATAERR, "redirect_port:"
3735 		    "port ranges must be equal in size");
3736 
3737 	/* Remote port range is allowed to be '0' which means all ports. */
3738 	if (r->rport_cnt != numLocalPorts &&
3739 	    (r->rport_cnt != 1 || r->rport != 0))
3740 	        errx(EX_DATAERR, "redirect_port: remote port must"
3741 		    "be 0 or equal to local port range in size");
3742 
3743 	/*
3744 	 * Setup LSNAT server pool.
3745 	 */
3746 	if (lsnat) {
3747 		sep = strtok(tmp_spool_buf, ",");
3748 		while (sep != NULL) {
3749 			tmp = (struct cfg_spool *)spool_buf;
3750 			if (len < SOF_SPOOL)
3751 				goto nospace;
3752 			len -= SOF_SPOOL;
3753 			space += SOF_SPOOL;
3754 			if (StrToAddrAndPortRange(sep, &tmp->addr, protoName,
3755 			    &portRange) != 0)
3756 				errx(EX_DATAERR, "redirect_port:"
3757 				    "invalid local port range");
3758 			if (GETNUMPORTS(portRange) != 1)
3759 				errx(EX_DATAERR, "redirect_port: local port"
3760 				    "must be single in this context");
3761 			tmp->port = GETLOPORT(portRange);
3762 			r->spool_cnt++;
3763 			/* Point to the next possible cfg_spool. */
3764 			spool_buf = &spool_buf[SOF_SPOOL];
3765 			sep = strtok(NULL, ",");
3766 		}
3767 	}
3768 	return (space);
3769 nospace:
3770 	errx(EX_DATAERR, "redirect_port: buf is too small\n");
3771 }
3772 
3773 static int
3774 setup_redir_proto(char *spool_buf, int len,
3775 		 int *_ac, char ***_av)
3776 {
3777 	char **av;
3778 	int ac, i, space;
3779 	struct protoent *protoent;
3780 	struct cfg_redir *r;
3781 
3782 	av = *_av;
3783 	ac = *_ac;
3784 	if (len >= SOF_REDIR) {
3785 		r = (struct cfg_redir *)spool_buf;
3786 		/* Skip cfg_redir at beginning of buf. */
3787 		spool_buf = &spool_buf[SOF_REDIR];
3788 		space = SOF_REDIR;
3789 		len -= SOF_REDIR;
3790 	} else
3791 		goto nospace;
3792 	r->mode = REDIR_PROTO;
3793 	/*
3794 	 * Extract protocol.
3795 	 */
3796 	if (ac == 0)
3797 		errx(EX_DATAERR, "redirect_proto: missing protocol");
3798 
3799 	protoent = getprotobyname(*av);
3800 	if (protoent == NULL)
3801 		errx(EX_DATAERR, "redirect_proto: unknown protocol %s", *av);
3802 	else
3803 		r->proto = protoent->p_proto;
3804 
3805 	INC_ARGCV();
3806 
3807 	/*
3808 	 * Extract local address.
3809 	 */
3810 	if (ac == 0)
3811 		errx(EX_DATAERR, "redirect_proto: missing local address");
3812 	else
3813 		StrToAddr(*av, &r->laddr);
3814 
3815 	INC_ARGCV();
3816 
3817 	/*
3818 	 * Extract optional public address.
3819 	 */
3820 	if (ac == 0) {
3821 		r->paddr.s_addr = INADDR_ANY;
3822 		r->raddr.s_addr = INADDR_ANY;
3823 	} else {
3824 		/* see above in setup_redir_port() */
3825 		if (!isalpha(**av)) {
3826 			StrToAddr(*av, &r->paddr);
3827 			INC_ARGCV();
3828 
3829 			/*
3830 			 * Extract optional remote address.
3831 			 */
3832 			/* see above in setup_redir_port() */
3833 			if (ac!=0 && !isalpha(**av)) {
3834 				StrToAddr(*av, &r->raddr);
3835 				INC_ARGCV();
3836 			}
3837 		}
3838 	}
3839 	return (space);
3840 nospace:
3841 	errx(EX_DATAERR, "redirect_proto: buf is too small\n");
3842 }
3843 
3844 static void
3845 show_nat(int ac, char **av);
3846 
3847 static void
3848 print_nat_config(char *buf) {
3849 	struct cfg_nat *n;
3850 	int i, cnt, flag, off;
3851 	struct cfg_redir *t;
3852 	struct cfg_spool *s;
3853 	struct protoent *p;
3854 
3855 	n = (struct cfg_nat *)buf;
3856 	flag = 1;
3857 	off  = sizeof(*n);
3858 	printf("ipfw nat %u config", n->id);
3859 	if (strlen(n->if_name) != 0)
3860 		printf(" if %s", n->if_name);
3861 	else if (n->ip.s_addr != 0)
3862 		printf(" ip %s", inet_ntoa(n->ip));
3863 	while (n->mode != 0) {
3864 		if (n->mode & PKT_ALIAS_LOG) {
3865 			printf(" log");
3866 			n->mode &= ~PKT_ALIAS_LOG;
3867 		} else if (n->mode & PKT_ALIAS_DENY_INCOMING) {
3868 			printf(" deny_in");
3869 			n->mode &= ~PKT_ALIAS_DENY_INCOMING;
3870 		} else if (n->mode & PKT_ALIAS_SAME_PORTS) {
3871 			printf(" same_ports");
3872 			n->mode &= ~PKT_ALIAS_SAME_PORTS;
3873 		} else if (n->mode & PKT_ALIAS_UNREGISTERED_ONLY) {
3874 			printf(" unreg_only");
3875 			n->mode &= ~PKT_ALIAS_UNREGISTERED_ONLY;
3876 		} else if (n->mode & PKT_ALIAS_RESET_ON_ADDR_CHANGE) {
3877 			printf(" reset");
3878 			n->mode &= ~PKT_ALIAS_RESET_ON_ADDR_CHANGE;
3879 		} else if (n->mode & PKT_ALIAS_REVERSE) {
3880 			printf(" reverse");
3881 			n->mode &= ~PKT_ALIAS_REVERSE;
3882 		} else if (n->mode & PKT_ALIAS_PROXY_ONLY) {
3883 			printf(" proxy_only");
3884 			n->mode &= ~PKT_ALIAS_PROXY_ONLY;
3885 		}
3886 	}
3887 	/* Print all the redirect's data configuration. */
3888 	for (cnt = 0; cnt < n->redir_cnt; cnt++) {
3889 		t = (struct cfg_redir *)&buf[off];
3890 		off += SOF_REDIR;
3891 		switch (t->mode) {
3892 		case REDIR_ADDR:
3893 			printf(" redirect_addr");
3894 			if (t->spool_cnt == 0)
3895 				printf(" %s", inet_ntoa(t->laddr));
3896 			else
3897 				for (i = 0; i < t->spool_cnt; i++) {
3898 					s = (struct cfg_spool *)&buf[off];
3899 					if (i)
3900 						printf(",");
3901 					else
3902 						printf(" ");
3903 					printf("%s", inet_ntoa(s->addr));
3904 					off += SOF_SPOOL;
3905 				}
3906 			printf(" %s", inet_ntoa(t->paddr));
3907 			break;
3908 		case REDIR_PORT:
3909 			p = getprotobynumber(t->proto);
3910 			printf(" redirect_port %s ", p->p_name);
3911 			if (!t->spool_cnt) {
3912 				printf("%s:%u", inet_ntoa(t->laddr), t->lport);
3913 				if (t->pport_cnt > 1)
3914 					printf("-%u", t->lport +
3915 					    t->pport_cnt - 1);
3916 			} else
3917 				for (i=0; i < t->spool_cnt; i++) {
3918 					s = (struct cfg_spool *)&buf[off];
3919 					if (i)
3920 						printf(",");
3921 					printf("%s:%u", inet_ntoa(s->addr),
3922 					    s->port);
3923 					off += SOF_SPOOL;
3924 				}
3925 
3926 			printf(" ");
3927 			if (t->paddr.s_addr)
3928 				printf("%s:", inet_ntoa(t->paddr));
3929 			printf("%u", t->pport);
3930 			if (!t->spool_cnt && t->pport_cnt > 1)
3931 				printf("-%u", t->pport + t->pport_cnt - 1);
3932 
3933 			if (t->raddr.s_addr) {
3934 				printf(" %s", inet_ntoa(t->raddr));
3935 				if (t->rport) {
3936 					printf(":%u", t->rport);
3937 					if (!t->spool_cnt && t->rport_cnt > 1)
3938 						printf("-%u", t->rport +
3939 						    t->rport_cnt - 1);
3940 				}
3941 			}
3942 			break;
3943 		case REDIR_PROTO:
3944 			p = getprotobynumber(t->proto);
3945 			printf(" redirect_proto %s %s", p->p_name,
3946 			    inet_ntoa(t->laddr));
3947 			if (t->paddr.s_addr != 0) {
3948 				printf(" %s", inet_ntoa(t->paddr));
3949 				if (t->raddr.s_addr)
3950 					printf(" %s", inet_ntoa(t->raddr));
3951 			}
3952 			break;
3953 		default:
3954 			errx(EX_DATAERR, "unknown redir mode");
3955 			break;
3956 		}
3957 	}
3958 	printf("\n");
3959 }
3960 
3961 static void
3962 config_nat(int ac, char **av)
3963 {
3964 	struct cfg_nat *n;              /* Nat instance configuration. */
3965 	struct in_addr ip;
3966 	int i, len, off, tok;
3967 	char *id, buf[NAT_BUF_LEN]; 	/* Buffer for serialized data. */
3968 
3969 	len = NAT_BUF_LEN;
3970 	/* Offset in buf: save space for n at the beginning. */
3971 	off = sizeof(*n);
3972 	memset(buf, 0, sizeof(buf));
3973 	n = (struct cfg_nat *)buf;
3974 
3975 	av++; ac--;
3976 	/* Nat id. */
3977 	if (ac && isdigit(**av)) {
3978 		id = *av;
3979 		i = atoi(*av);
3980 		ac--; av++;
3981 		n->id = i;
3982 	} else
3983 		errx(EX_DATAERR, "missing nat id");
3984 	if (ac == 0)
3985 		errx(EX_DATAERR, "missing option");
3986 
3987 	while (ac > 0) {
3988 		tok = match_token(nat_params, *av);
3989 		ac--; av++;
3990 		switch (tok) {
3991 		case TOK_IP:
3992 			if (ac == 0)
3993 				errx(EX_DATAERR, "missing option");
3994 			if (!inet_aton(av[0], &(n->ip)))
3995 				errx(EX_DATAERR, "bad ip address ``%s''",
3996 				    av[0]);
3997 			ac--; av++;
3998 			break;
3999 		case TOK_IF:
4000 			if (ac == 0)
4001 				errx(EX_DATAERR, "missing option");
4002 			set_addr_dynamic(av[0], n);
4003 			ac--; av++;
4004 			break;
4005 		case TOK_ALOG:
4006 			n->mode |= PKT_ALIAS_LOG;
4007 			break;
4008 		case TOK_DENY_INC:
4009 			n->mode |= PKT_ALIAS_DENY_INCOMING;
4010 			break;
4011 		case TOK_SAME_PORTS:
4012 			n->mode |= PKT_ALIAS_SAME_PORTS;
4013 			break;
4014 		case TOK_UNREG_ONLY:
4015 			n->mode |= PKT_ALIAS_UNREGISTERED_ONLY;
4016 			break;
4017 		case TOK_RESET_ADDR:
4018 			n->mode |= PKT_ALIAS_RESET_ON_ADDR_CHANGE;
4019 			break;
4020 		case TOK_ALIAS_REV:
4021 			n->mode |= PKT_ALIAS_REVERSE;
4022 			break;
4023 		case TOK_PROXY_ONLY:
4024 			n->mode |= PKT_ALIAS_PROXY_ONLY;
4025 			break;
4026 			/*
4027 			 * All the setup_redir_* functions work directly in the final
4028 			 * buffer, see above for details.
4029 			 */
4030 		case TOK_REDIR_ADDR:
4031 		case TOK_REDIR_PORT:
4032 		case TOK_REDIR_PROTO:
4033 			switch (tok) {
4034 			case TOK_REDIR_ADDR:
4035 				i = setup_redir_addr(&buf[off], len, &ac, &av);
4036 				break;
4037 			case TOK_REDIR_PORT:
4038 				i = setup_redir_port(&buf[off], len, &ac, &av);
4039 				break;
4040 			case TOK_REDIR_PROTO:
4041 				i = setup_redir_proto(&buf[off], len, &ac, &av);
4042 				break;
4043 			}
4044 			n->redir_cnt++;
4045 			off += i;
4046 			len -= i;
4047 			break;
4048 		default:
4049 			errx(EX_DATAERR, "unrecognised option ``%s''", av[-1]);
4050 		}
4051 	}
4052 
4053 	i = do_cmd(IP_FW_NAT_CFG, buf, off);
4054 	if (i)
4055 		err(1, "setsockopt(%s)", "IP_FW_NAT_CFG");
4056 
4057 	/* After every modification, we show the resultant rule. */
4058 	int _ac = 3;
4059 	char *_av[] = {"show", "config", id};
4060 	show_nat(_ac, _av);
4061 }
4062 
4063 static void
4064 config_pipe(int ac, char **av)
4065 {
4066 	struct dn_pipe p;
4067 	int i;
4068 	char *end;
4069 	void *par = NULL;
4070 
4071 	memset(&p, 0, sizeof p);
4072 
4073 	av++; ac--;
4074 	/* Pipe number */
4075 	if (ac && isdigit(**av)) {
4076 		i = atoi(*av); av++; ac--;
4077 		if (do_pipe == 1)
4078 			p.pipe_nr = i;
4079 		else
4080 			p.fs.fs_nr = i;
4081 	}
4082 	while (ac > 0) {
4083 		double d;
4084 		int tok = match_token(dummynet_params, *av);
4085 		ac--; av++;
4086 
4087 		switch(tok) {
4088 		case TOK_NOERROR:
4089 			p.fs.flags_fs |= DN_NOERROR;
4090 			break;
4091 
4092 		case TOK_PLR:
4093 			NEED1("plr needs argument 0..1\n");
4094 			d = strtod(av[0], NULL);
4095 			if (d > 1)
4096 				d = 1;
4097 			else if (d < 0)
4098 				d = 0;
4099 			p.fs.plr = (int)(d*0x7fffffff);
4100 			ac--; av++;
4101 			break;
4102 
4103 		case TOK_QUEUE:
4104 			NEED1("queue needs queue size\n");
4105 			end = NULL;
4106 			p.fs.qsize = strtoul(av[0], &end, 0);
4107 			if (*end == 'K' || *end == 'k') {
4108 				p.fs.flags_fs |= DN_QSIZE_IS_BYTES;
4109 				p.fs.qsize *= 1024;
4110 			} else if (*end == 'B' ||
4111 			    _substrcmp2(end, "by", "bytes") == 0) {
4112 				p.fs.flags_fs |= DN_QSIZE_IS_BYTES;
4113 			}
4114 			ac--; av++;
4115 			break;
4116 
4117 		case TOK_BUCKETS:
4118 			NEED1("buckets needs argument\n");
4119 			p.fs.rq_size = strtoul(av[0], NULL, 0);
4120 			ac--; av++;
4121 			break;
4122 
4123 		case TOK_MASK:
4124 			NEED1("mask needs mask specifier\n");
4125 			/*
4126 			 * per-flow queue, mask is dst_ip, dst_port,
4127 			 * src_ip, src_port, proto measured in bits
4128 			 */
4129 			par = NULL;
4130 
4131 			bzero(&p.fs.flow_mask, sizeof(p.fs.flow_mask));
4132 			end = NULL;
4133 
4134 			while (ac >= 1) {
4135 			    uint32_t *p32 = NULL;
4136 			    uint16_t *p16 = NULL;
4137 			    uint32_t *p20 = NULL;
4138 			    struct in6_addr *pa6 = NULL;
4139 			    uint32_t a;
4140 
4141 			    tok = match_token(dummynet_params, *av);
4142 			    ac--; av++;
4143 			    switch(tok) {
4144 			    case TOK_ALL:
4145 				    /*
4146 				     * special case, all bits significant
4147 				     */
4148 				    p.fs.flow_mask.dst_ip = ~0;
4149 				    p.fs.flow_mask.src_ip = ~0;
4150 				    p.fs.flow_mask.dst_port = ~0;
4151 				    p.fs.flow_mask.src_port = ~0;
4152 				    p.fs.flow_mask.proto = ~0;
4153 				    n2mask(&(p.fs.flow_mask.dst_ip6), 128);
4154 				    n2mask(&(p.fs.flow_mask.src_ip6), 128);
4155 				    p.fs.flow_mask.flow_id6 = ~0;
4156 				    p.fs.flags_fs |= DN_HAVE_FLOW_MASK;
4157 				    goto end_mask;
4158 
4159 			    case TOK_DSTIP:
4160 				    p32 = &p.fs.flow_mask.dst_ip;
4161 				    break;
4162 
4163 			    case TOK_SRCIP:
4164 				    p32 = &p.fs.flow_mask.src_ip;
4165 				    break;
4166 
4167 			    case TOK_DSTIP6:
4168 				    pa6 = &(p.fs.flow_mask.dst_ip6);
4169 				    break;
4170 
4171 			    case TOK_SRCIP6:
4172 				    pa6 = &(p.fs.flow_mask.src_ip6);
4173 				    break;
4174 
4175 			    case TOK_FLOWID:
4176 				    p20 = &p.fs.flow_mask.flow_id6;
4177 				    break;
4178 
4179 			    case TOK_DSTPORT:
4180 				    p16 = &p.fs.flow_mask.dst_port;
4181 				    break;
4182 
4183 			    case TOK_SRCPORT:
4184 				    p16 = &p.fs.flow_mask.src_port;
4185 				    break;
4186 
4187 			    case TOK_PROTO:
4188 				    break;
4189 
4190 			    default:
4191 				    ac++; av--; /* backtrack */
4192 				    goto end_mask;
4193 			    }
4194 			    if (ac < 1)
4195 				    errx(EX_USAGE, "mask: value missing");
4196 			    if (*av[0] == '/') {
4197 				    a = strtoul(av[0]+1, &end, 0);
4198 				    if (pa6 == NULL)
4199 					    a = (a == 32) ? ~0 : (1 << a) - 1;
4200 			    } else
4201 				    a = strtoul(av[0], &end, 0);
4202 			    if (p32 != NULL)
4203 				    *p32 = a;
4204 			    else if (p16 != NULL) {
4205 				    if (a > 0xFFFF)
4206 					    errx(EX_DATAERR,
4207 						"port mask must be 16 bit");
4208 				    *p16 = (uint16_t)a;
4209 			    } else if (p20 != NULL) {
4210 				    if (a > 0xfffff)
4211 					errx(EX_DATAERR,
4212 					    "flow_id mask must be 20 bit");
4213 				    *p20 = (uint32_t)a;
4214 			    } else if (pa6 != NULL) {
4215 				    if (a < 0 || a > 128)
4216 					errx(EX_DATAERR,
4217 					    "in6addr invalid mask len");
4218 				    else
4219 					n2mask(pa6, a);
4220 			    } else {
4221 				    if (a > 0xFF)
4222 					    errx(EX_DATAERR,
4223 						"proto mask must be 8 bit");
4224 				    p.fs.flow_mask.proto = (uint8_t)a;
4225 			    }
4226 			    if (a != 0)
4227 				    p.fs.flags_fs |= DN_HAVE_FLOW_MASK;
4228 			    ac--; av++;
4229 			} /* end while, config masks */
4230 end_mask:
4231 			break;
4232 
4233 		case TOK_RED:
4234 		case TOK_GRED:
4235 			NEED1("red/gred needs w_q/min_th/max_th/max_p\n");
4236 			p.fs.flags_fs |= DN_IS_RED;
4237 			if (tok == TOK_GRED)
4238 				p.fs.flags_fs |= DN_IS_GENTLE_RED;
4239 			/*
4240 			 * the format for parameters is w_q/min_th/max_th/max_p
4241 			 */
4242 			if ((end = strsep(&av[0], "/"))) {
4243 			    double w_q = strtod(end, NULL);
4244 			    if (w_q > 1 || w_q <= 0)
4245 				errx(EX_DATAERR, "0 < w_q <= 1");
4246 			    p.fs.w_q = (int) (w_q * (1 << SCALE_RED));
4247 			}
4248 			if ((end = strsep(&av[0], "/"))) {
4249 			    p.fs.min_th = strtoul(end, &end, 0);
4250 			    if (*end == 'K' || *end == 'k')
4251 				p.fs.min_th *= 1024;
4252 			}
4253 			if ((end = strsep(&av[0], "/"))) {
4254 			    p.fs.max_th = strtoul(end, &end, 0);
4255 			    if (*end == 'K' || *end == 'k')
4256 				p.fs.max_th *= 1024;
4257 			}
4258 			if ((end = strsep(&av[0], "/"))) {
4259 			    double max_p = strtod(end, NULL);
4260 			    if (max_p > 1 || max_p <= 0)
4261 				errx(EX_DATAERR, "0 < max_p <= 1");
4262 			    p.fs.max_p = (int)(max_p * (1 << SCALE_RED));
4263 			}
4264 			ac--; av++;
4265 			break;
4266 
4267 		case TOK_DROPTAIL:
4268 			p.fs.flags_fs &= ~(DN_IS_RED|DN_IS_GENTLE_RED);
4269 			break;
4270 
4271 		case TOK_BW:
4272 			NEED1("bw needs bandwidth or interface\n");
4273 			if (do_pipe != 1)
4274 			    errx(EX_DATAERR, "bandwidth only valid for pipes");
4275 			/*
4276 			 * set clocking interface or bandwidth value
4277 			 */
4278 			if (av[0][0] >= 'a' && av[0][0] <= 'z') {
4279 			    int l = sizeof(p.if_name)-1;
4280 			    /* interface name */
4281 			    strncpy(p.if_name, av[0], l);
4282 			    p.if_name[l] = '\0';
4283 			    p.bandwidth = 0;
4284 			} else {
4285 			    p.if_name[0] = '\0';
4286 			    p.bandwidth = strtoul(av[0], &end, 0);
4287 			    if (*end == 'K' || *end == 'k') {
4288 				end++;
4289 				p.bandwidth *= 1000;
4290 			    } else if (*end == 'M') {
4291 				end++;
4292 				p.bandwidth *= 1000000;
4293 			    }
4294 			    if ((*end == 'B' &&
4295 				  _substrcmp2(end, "Bi", "Bit/s") != 0) ||
4296 			        _substrcmp2(end, "by", "bytes") == 0)
4297 				p.bandwidth *= 8;
4298 			    if (p.bandwidth < 0)
4299 				errx(EX_DATAERR, "bandwidth too large");
4300 			}
4301 			ac--; av++;
4302 			break;
4303 
4304 		case TOK_DELAY:
4305 			if (do_pipe != 1)
4306 				errx(EX_DATAERR, "delay only valid for pipes");
4307 			NEED1("delay needs argument 0..10000ms\n");
4308 			p.delay = strtoul(av[0], NULL, 0);
4309 			ac--; av++;
4310 			break;
4311 
4312 		case TOK_WEIGHT:
4313 			if (do_pipe == 1)
4314 				errx(EX_DATAERR,"weight only valid for queues");
4315 			NEED1("weight needs argument 0..100\n");
4316 			p.fs.weight = strtoul(av[0], &end, 0);
4317 			ac--; av++;
4318 			break;
4319 
4320 		case TOK_PIPE:
4321 			if (do_pipe == 1)
4322 				errx(EX_DATAERR,"pipe only valid for queues");
4323 			NEED1("pipe needs pipe_number\n");
4324 			p.fs.parent_nr = strtoul(av[0], &end, 0);
4325 			ac--; av++;
4326 			break;
4327 
4328 		default:
4329 			errx(EX_DATAERR, "unrecognised option ``%s''", av[-1]);
4330 		}
4331 	}
4332 	if (do_pipe == 1) {
4333 		if (p.pipe_nr == 0)
4334 			errx(EX_DATAERR, "pipe_nr must be > 0");
4335 		if (p.delay > 10000)
4336 			errx(EX_DATAERR, "delay must be < 10000");
4337 	} else { /* do_pipe == 2, queue */
4338 		if (p.fs.parent_nr == 0)
4339 			errx(EX_DATAERR, "pipe must be > 0");
4340 		if (p.fs.weight >100)
4341 			errx(EX_DATAERR, "weight must be <= 100");
4342 	}
4343 	if (p.fs.flags_fs & DN_QSIZE_IS_BYTES) {
4344 		if (p.fs.qsize > 1024*1024)
4345 			errx(EX_DATAERR, "queue size must be < 1MB");
4346 	} else {
4347 		if (p.fs.qsize > 100)
4348 			errx(EX_DATAERR, "2 <= queue size <= 100");
4349 	}
4350 	if (p.fs.flags_fs & DN_IS_RED) {
4351 		size_t len;
4352 		int lookup_depth, avg_pkt_size;
4353 		double s, idle, weight, w_q;
4354 		struct clockinfo ck;
4355 		int t;
4356 
4357 		if (p.fs.min_th >= p.fs.max_th)
4358 		    errx(EX_DATAERR, "min_th %d must be < than max_th %d",
4359 			p.fs.min_th, p.fs.max_th);
4360 		if (p.fs.max_th == 0)
4361 		    errx(EX_DATAERR, "max_th must be > 0");
4362 
4363 		len = sizeof(int);
4364 		if (sysctlbyname("net.inet.ip.dummynet.red_lookup_depth",
4365 			&lookup_depth, &len, NULL, 0) == -1)
4366 
4367 		    errx(1, "sysctlbyname(\"%s\")",
4368 			"net.inet.ip.dummynet.red_lookup_depth");
4369 		if (lookup_depth == 0)
4370 		    errx(EX_DATAERR, "net.inet.ip.dummynet.red_lookup_depth"
4371 			" must be greater than zero");
4372 
4373 		len = sizeof(int);
4374 		if (sysctlbyname("net.inet.ip.dummynet.red_avg_pkt_size",
4375 			&avg_pkt_size, &len, NULL, 0) == -1)
4376 
4377 		    errx(1, "sysctlbyname(\"%s\")",
4378 			"net.inet.ip.dummynet.red_avg_pkt_size");
4379 		if (avg_pkt_size == 0)
4380 			errx(EX_DATAERR,
4381 			    "net.inet.ip.dummynet.red_avg_pkt_size must"
4382 			    " be greater than zero");
4383 
4384 		len = sizeof(struct clockinfo);
4385 		if (sysctlbyname("kern.clockrate", &ck, &len, NULL, 0) == -1)
4386 			errx(1, "sysctlbyname(\"%s\")", "kern.clockrate");
4387 
4388 		/*
4389 		 * Ticks needed for sending a medium-sized packet.
4390 		 * Unfortunately, when we are configuring a WF2Q+ queue, we
4391 		 * do not have bandwidth information, because that is stored
4392 		 * in the parent pipe, and also we have multiple queues
4393 		 * competing for it. So we set s=0, which is not very
4394 		 * correct. But on the other hand, why do we want RED with
4395 		 * WF2Q+ ?
4396 		 */
4397 		if (p.bandwidth==0) /* this is a WF2Q+ queue */
4398 			s = 0;
4399 		else
4400 			s = (double)ck.hz * avg_pkt_size * 8 / p.bandwidth;
4401 
4402 		/*
4403 		 * max idle time (in ticks) before avg queue size becomes 0.
4404 		 * NOTA:  (3/w_q) is approx the value x so that
4405 		 * (1-w_q)^x < 10^-3.
4406 		 */
4407 		w_q = ((double)p.fs.w_q) / (1 << SCALE_RED);
4408 		idle = s * 3. / w_q;
4409 		p.fs.lookup_step = (int)idle / lookup_depth;
4410 		if (!p.fs.lookup_step)
4411 			p.fs.lookup_step = 1;
4412 		weight = 1 - w_q;
4413 		for (t = p.fs.lookup_step; t > 1; --t)
4414 			weight *= 1 - w_q;
4415 		p.fs.lookup_weight = (int)(weight * (1 << SCALE_RED));
4416 	}
4417 	i = do_cmd(IP_DUMMYNET_CONFIGURE, &p, sizeof p);
4418 	if (i)
4419 		err(1, "setsockopt(%s)", "IP_DUMMYNET_CONFIGURE");
4420 }
4421 
4422 static void
4423 get_mac_addr_mask(const char *p, uint8_t *addr, uint8_t *mask)
4424 {
4425 	int i, l;
4426 	char *ap, *ptr, *optr;
4427 	struct ether_addr *mac;
4428 	const char *macset = "0123456789abcdefABCDEF:";
4429 
4430 	if (strcmp(p, "any") == 0) {
4431 		for (i = 0; i < ETHER_ADDR_LEN; i++)
4432 			addr[i] = mask[i] = 0;
4433 		return;
4434 	}
4435 
4436 	optr = ptr = strdup(p);
4437 	if ((ap = strsep(&ptr, "&/")) != NULL && *ap != 0) {
4438 		l = strlen(ap);
4439 		if (strspn(ap, macset) != l || (mac = ether_aton(ap)) == NULL)
4440 			errx(EX_DATAERR, "Incorrect MAC address");
4441 		bcopy(mac, addr, ETHER_ADDR_LEN);
4442 	} else
4443 		errx(EX_DATAERR, "Incorrect MAC address");
4444 
4445 	if (ptr != NULL) { /* we have mask? */
4446 		if (p[ptr - optr - 1] == '/') { /* mask len */
4447 			l = strtol(ptr, &ap, 10);
4448 			if (*ap != 0 || l > ETHER_ADDR_LEN * 8 || l < 0)
4449 				errx(EX_DATAERR, "Incorrect mask length");
4450 			for (i = 0; l > 0 && i < ETHER_ADDR_LEN; l -= 8, i++)
4451 				mask[i] = (l >= 8) ? 0xff: (~0) << (8 - l);
4452 		} else { /* mask */
4453 			l = strlen(ptr);
4454 			if (strspn(ptr, macset) != l ||
4455 			    (mac = ether_aton(ptr)) == NULL)
4456 				errx(EX_DATAERR, "Incorrect mask");
4457 			bcopy(mac, mask, ETHER_ADDR_LEN);
4458 		}
4459 	} else { /* default mask: ff:ff:ff:ff:ff:ff */
4460 		for (i = 0; i < ETHER_ADDR_LEN; i++)
4461 			mask[i] = 0xff;
4462 	}
4463 	for (i = 0; i < ETHER_ADDR_LEN; i++)
4464 		addr[i] &= mask[i];
4465 
4466 	free(optr);
4467 }
4468 
4469 /*
4470  * helper function, updates the pointer to cmd with the length
4471  * of the current command, and also cleans up the first word of
4472  * the new command in case it has been clobbered before.
4473  */
4474 static ipfw_insn *
4475 next_cmd(ipfw_insn *cmd)
4476 {
4477 	cmd += F_LEN(cmd);
4478 	bzero(cmd, sizeof(*cmd));
4479 	return cmd;
4480 }
4481 
4482 /*
4483  * Takes arguments and copies them into a comment
4484  */
4485 static void
4486 fill_comment(ipfw_insn *cmd, int ac, char **av)
4487 {
4488 	int i, l;
4489 	char *p = (char *)(cmd + 1);
4490 
4491 	cmd->opcode = O_NOP;
4492 	cmd->len =  (cmd->len & (F_NOT | F_OR));
4493 
4494 	/* Compute length of comment string. */
4495 	for (i = 0, l = 0; i < ac; i++)
4496 		l += strlen(av[i]) + 1;
4497 	if (l == 0)
4498 		return;
4499 	if (l > 84)
4500 		errx(EX_DATAERR,
4501 		    "comment too long (max 80 chars)");
4502 	l = 1 + (l+3)/4;
4503 	cmd->len =  (cmd->len & (F_NOT | F_OR)) | l;
4504 	for (i = 0; i < ac; i++) {
4505 		strcpy(p, av[i]);
4506 		p += strlen(av[i]);
4507 		*p++ = ' ';
4508 	}
4509 	*(--p) = '\0';
4510 }
4511 
4512 /*
4513  * A function to fill simple commands of size 1.
4514  * Existing flags are preserved.
4515  */
4516 static void
4517 fill_cmd(ipfw_insn *cmd, enum ipfw_opcodes opcode, int flags, uint16_t arg)
4518 {
4519 	cmd->opcode = opcode;
4520 	cmd->len =  ((cmd->len | flags) & (F_NOT | F_OR)) | 1;
4521 	cmd->arg1 = arg;
4522 }
4523 
4524 /*
4525  * Fetch and add the MAC address and type, with masks. This generates one or
4526  * two microinstructions, and returns the pointer to the last one.
4527  */
4528 static ipfw_insn *
4529 add_mac(ipfw_insn *cmd, int ac, char *av[])
4530 {
4531 	ipfw_insn_mac *mac;
4532 
4533 	if (ac < 2)
4534 		errx(EX_DATAERR, "MAC dst src");
4535 
4536 	cmd->opcode = O_MACADDR2;
4537 	cmd->len = (cmd->len & (F_NOT | F_OR)) | F_INSN_SIZE(ipfw_insn_mac);
4538 
4539 	mac = (ipfw_insn_mac *)cmd;
4540 	get_mac_addr_mask(av[0], mac->addr, mac->mask);	/* dst */
4541 	get_mac_addr_mask(av[1], &(mac->addr[ETHER_ADDR_LEN]),
4542 	    &(mac->mask[ETHER_ADDR_LEN])); /* src */
4543 	return cmd;
4544 }
4545 
4546 static ipfw_insn *
4547 add_mactype(ipfw_insn *cmd, int ac, char *av)
4548 {
4549 	if (ac < 1)
4550 		errx(EX_DATAERR, "missing MAC type");
4551 	if (strcmp(av, "any") != 0) { /* we have a non-null type */
4552 		fill_newports((ipfw_insn_u16 *)cmd, av, IPPROTO_ETHERTYPE);
4553 		cmd->opcode = O_MAC_TYPE;
4554 		return cmd;
4555 	} else
4556 		return NULL;
4557 }
4558 
4559 static ipfw_insn *
4560 add_proto0(ipfw_insn *cmd, char *av, u_char *protop)
4561 {
4562 	struct protoent *pe;
4563 	char *ep;
4564 	int proto;
4565 
4566 	proto = strtol(av, &ep, 10);
4567 	if (*ep != '\0' || proto <= 0) {
4568 		if ((pe = getprotobyname(av)) == NULL)
4569 			return NULL;
4570 		proto = pe->p_proto;
4571 	}
4572 
4573 	fill_cmd(cmd, O_PROTO, 0, proto);
4574 	*protop = proto;
4575 	return cmd;
4576 }
4577 
4578 static ipfw_insn *
4579 add_proto(ipfw_insn *cmd, char *av, u_char *protop)
4580 {
4581 	u_char proto = IPPROTO_IP;
4582 
4583 	if (_substrcmp(av, "all") == 0 || strcmp(av, "ip") == 0)
4584 		; /* do not set O_IP4 nor O_IP6 */
4585 	else if (strcmp(av, "ip4") == 0)
4586 		/* explicit "just IPv4" rule */
4587 		fill_cmd(cmd, O_IP4, 0, 0);
4588 	else if (strcmp(av, "ip6") == 0) {
4589 		/* explicit "just IPv6" rule */
4590 		proto = IPPROTO_IPV6;
4591 		fill_cmd(cmd, O_IP6, 0, 0);
4592 	} else
4593 		return add_proto0(cmd, av, protop);
4594 
4595 	*protop = proto;
4596 	return cmd;
4597 }
4598 
4599 static ipfw_insn *
4600 add_proto_compat(ipfw_insn *cmd, char *av, u_char *protop)
4601 {
4602 	u_char proto = IPPROTO_IP;
4603 
4604 	if (_substrcmp(av, "all") == 0 || strcmp(av, "ip") == 0)
4605 		; /* do not set O_IP4 nor O_IP6 */
4606 	else if (strcmp(av, "ipv4") == 0 || strcmp(av, "ip4") == 0)
4607 		/* explicit "just IPv4" rule */
4608 		fill_cmd(cmd, O_IP4, 0, 0);
4609 	else if (strcmp(av, "ipv6") == 0 || strcmp(av, "ip6") == 0) {
4610 		/* explicit "just IPv6" rule */
4611 		proto = IPPROTO_IPV6;
4612 		fill_cmd(cmd, O_IP6, 0, 0);
4613 	} else
4614 		return add_proto0(cmd, av, protop);
4615 
4616 	*protop = proto;
4617 	return cmd;
4618 }
4619 
4620 static ipfw_insn *
4621 add_srcip(ipfw_insn *cmd, char *av)
4622 {
4623 	fill_ip((ipfw_insn_ip *)cmd, av);
4624 	if (cmd->opcode == O_IP_DST_SET)			/* set */
4625 		cmd->opcode = O_IP_SRC_SET;
4626 	else if (cmd->opcode == O_IP_DST_LOOKUP)		/* table */
4627 		cmd->opcode = O_IP_SRC_LOOKUP;
4628 	else if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn))		/* me */
4629 		cmd->opcode = O_IP_SRC_ME;
4630 	else if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn_u32))	/* one IP */
4631 		cmd->opcode = O_IP_SRC;
4632 	else							/* addr/mask */
4633 		cmd->opcode = O_IP_SRC_MASK;
4634 	return cmd;
4635 }
4636 
4637 static ipfw_insn *
4638 add_dstip(ipfw_insn *cmd, char *av)
4639 {
4640 	fill_ip((ipfw_insn_ip *)cmd, av);
4641 	if (cmd->opcode == O_IP_DST_SET)			/* set */
4642 		;
4643 	else if (cmd->opcode == O_IP_DST_LOOKUP)		/* table */
4644 		;
4645 	else if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn))		/* me */
4646 		cmd->opcode = O_IP_DST_ME;
4647 	else if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn_u32))	/* one IP */
4648 		cmd->opcode = O_IP_DST;
4649 	else							/* addr/mask */
4650 		cmd->opcode = O_IP_DST_MASK;
4651 	return cmd;
4652 }
4653 
4654 static ipfw_insn *
4655 add_ports(ipfw_insn *cmd, char *av, u_char proto, int opcode)
4656 {
4657 	if (_substrcmp(av, "any") == 0) {
4658 		return NULL;
4659 	} else if (fill_newports((ipfw_insn_u16 *)cmd, av, proto)) {
4660 		/* XXX todo: check that we have a protocol with ports */
4661 		cmd->opcode = opcode;
4662 		return cmd;
4663 	}
4664 	return NULL;
4665 }
4666 
4667 static ipfw_insn *
4668 add_src(ipfw_insn *cmd, char *av, u_char proto)
4669 {
4670 	struct in6_addr a;
4671 	char *host, *ch;
4672 	ipfw_insn *ret = NULL;
4673 
4674 	if ((host = strdup(av)) == NULL)
4675 		return NULL;
4676 	if ((ch = strrchr(host, '/')) != NULL)
4677 		*ch = '\0';
4678 
4679 	if (proto == IPPROTO_IPV6  || strcmp(av, "me6") == 0 ||
4680 	    inet_pton(AF_INET6, host, &a))
4681 		ret = add_srcip6(cmd, av);
4682 	/* XXX: should check for IPv4, not !IPv6 */
4683 	if (ret == NULL && (proto == IPPROTO_IP || strcmp(av, "me") == 0 ||
4684 	    !inet_pton(AF_INET6, host, &a)))
4685 		ret = add_srcip(cmd, av);
4686 	if (ret == NULL && strcmp(av, "any") != 0)
4687 		ret = cmd;
4688 
4689 	free(host);
4690 	return ret;
4691 }
4692 
4693 static ipfw_insn *
4694 add_dst(ipfw_insn *cmd, char *av, u_char proto)
4695 {
4696 	struct in6_addr a;
4697 	char *host, *ch;
4698 	ipfw_insn *ret = NULL;
4699 
4700 	if ((host = strdup(av)) == NULL)
4701 		return NULL;
4702 	if ((ch = strrchr(host, '/')) != NULL)
4703 		*ch = '\0';
4704 
4705 	if (proto == IPPROTO_IPV6  || strcmp(av, "me6") == 0 ||
4706 	    inet_pton(AF_INET6, host, &a))
4707 		ret = add_dstip6(cmd, av);
4708 	/* XXX: should check for IPv4, not !IPv6 */
4709 	if (ret == NULL && (proto == IPPROTO_IP || strcmp(av, "me") == 0 ||
4710 	    !inet_pton(AF_INET6, host, &a)))
4711 		ret = add_dstip(cmd, av);
4712 	if (ret == NULL && strcmp(av, "any") != 0)
4713 		ret = cmd;
4714 
4715 	free(host);
4716 	return ret;
4717 }
4718 
4719 /*
4720  * Parse arguments and assemble the microinstructions which make up a rule.
4721  * Rules are added into the 'rulebuf' and then copied in the correct order
4722  * into the actual rule.
4723  *
4724  * The syntax for a rule starts with the action, followed by
4725  * optional action parameters, and the various match patterns.
4726  * In the assembled microcode, the first opcode must be an O_PROBE_STATE
4727  * (generated if the rule includes a keep-state option), then the
4728  * various match patterns, log/altq actions, and the actual action.
4729  *
4730  */
4731 static void
4732 add(int ac, char *av[])
4733 {
4734 	/*
4735 	 * rules are added into the 'rulebuf' and then copied in
4736 	 * the correct order into the actual rule.
4737 	 * Some things that need to go out of order (prob, action etc.)
4738 	 * go into actbuf[].
4739 	 */
4740 	static uint32_t rulebuf[255], actbuf[255], cmdbuf[255];
4741 
4742 	ipfw_insn *src, *dst, *cmd, *action, *prev=NULL;
4743 	ipfw_insn *first_cmd;	/* first match pattern */
4744 
4745 	struct ip_fw *rule;
4746 
4747 	/*
4748 	 * various flags used to record that we entered some fields.
4749 	 */
4750 	ipfw_insn *have_state = NULL;	/* check-state or keep-state */
4751 	ipfw_insn *have_log = NULL, *have_altq = NULL, *have_tag = NULL;
4752 	size_t len;
4753 
4754 	int i;
4755 
4756 	int open_par = 0;	/* open parenthesis ( */
4757 
4758 	/* proto is here because it is used to fetch ports */
4759 	u_char proto = IPPROTO_IP;	/* default protocol */
4760 
4761 	double match_prob = 1; /* match probability, default is always match */
4762 
4763 	bzero(actbuf, sizeof(actbuf));		/* actions go here */
4764 	bzero(cmdbuf, sizeof(cmdbuf));
4765 	bzero(rulebuf, sizeof(rulebuf));
4766 
4767 	rule = (struct ip_fw *)rulebuf;
4768 	cmd = (ipfw_insn *)cmdbuf;
4769 	action = (ipfw_insn *)actbuf;
4770 
4771 	av++; ac--;
4772 
4773 	/* [rule N]	-- Rule number optional */
4774 	if (ac && isdigit(**av)) {
4775 		rule->rulenum = atoi(*av);
4776 		av++;
4777 		ac--;
4778 	}
4779 
4780 	/* [set N]	-- set number (0..RESVD_SET), optional */
4781 	if (ac > 1 && _substrcmp(*av, "set") == 0) {
4782 		int set = strtoul(av[1], NULL, 10);
4783 		if (set < 0 || set > RESVD_SET)
4784 			errx(EX_DATAERR, "illegal set %s", av[1]);
4785 		rule->set = set;
4786 		av += 2; ac -= 2;
4787 	}
4788 
4789 	/* [prob D]	-- match probability, optional */
4790 	if (ac > 1 && _substrcmp(*av, "prob") == 0) {
4791 		match_prob = strtod(av[1], NULL);
4792 
4793 		if (match_prob <= 0 || match_prob > 1)
4794 			errx(EX_DATAERR, "illegal match prob. %s", av[1]);
4795 		av += 2; ac -= 2;
4796 	}
4797 
4798 	/* action	-- mandatory */
4799 	NEED1("missing action");
4800 	i = match_token(rule_actions, *av);
4801 	ac--; av++;
4802 	action->len = 1;	/* default */
4803 	switch(i) {
4804 	case TOK_CHECKSTATE:
4805 		have_state = action;
4806 		action->opcode = O_CHECK_STATE;
4807 		break;
4808 
4809 	case TOK_ACCEPT:
4810 		action->opcode = O_ACCEPT;
4811 		break;
4812 
4813 	case TOK_DENY:
4814 		action->opcode = O_DENY;
4815 		action->arg1 = 0;
4816 		break;
4817 
4818 	case TOK_REJECT:
4819 		action->opcode = O_REJECT;
4820 		action->arg1 = ICMP_UNREACH_HOST;
4821 		break;
4822 
4823 	case TOK_RESET:
4824 		action->opcode = O_REJECT;
4825 		action->arg1 = ICMP_REJECT_RST;
4826 		break;
4827 
4828 	case TOK_RESET6:
4829 		action->opcode = O_UNREACH6;
4830 		action->arg1 = ICMP6_UNREACH_RST;
4831 		break;
4832 
4833 	case TOK_UNREACH:
4834 		action->opcode = O_REJECT;
4835 		NEED1("missing reject code");
4836 		fill_reject_code(&action->arg1, *av);
4837 		ac--; av++;
4838 		break;
4839 
4840 	case TOK_UNREACH6:
4841 		action->opcode = O_UNREACH6;
4842 		NEED1("missing unreach code");
4843 		fill_unreach6_code(&action->arg1, *av);
4844 		ac--; av++;
4845 		break;
4846 
4847 	case TOK_COUNT:
4848 		action->opcode = O_COUNT;
4849 		break;
4850 
4851 	case TOK_QUEUE:
4852 		action->opcode = O_QUEUE;
4853 		goto chkarg;
4854 	case TOK_PIPE:
4855 		action->opcode = O_PIPE;
4856 		goto chkarg;
4857 	case TOK_SKIPTO:
4858 		action->opcode = O_SKIPTO;
4859 		goto chkarg;
4860 	case TOK_NETGRAPH:
4861 		action->opcode = O_NETGRAPH;
4862 		goto chkarg;
4863 	case TOK_NGTEE:
4864 		action->opcode = O_NGTEE;
4865 		goto chkarg;
4866 	case TOK_DIVERT:
4867 		action->opcode = O_DIVERT;
4868 		goto chkarg;
4869 	case TOK_TEE:
4870 		action->opcode = O_TEE;
4871 chkarg:
4872 		if (!ac)
4873 			errx(EX_USAGE, "missing argument for %s", *(av - 1));
4874 		if (isdigit(**av)) {
4875 			action->arg1 = strtoul(*av, NULL, 10);
4876 			if (action->arg1 <= 0 || action->arg1 >= IP_FW_TABLEARG)
4877 				errx(EX_DATAERR, "illegal argument for %s",
4878 				    *(av - 1));
4879 		} else if (_substrcmp(*av, TABLEARG) == 0) {
4880 			action->arg1 = IP_FW_TABLEARG;
4881 		} else if (i == TOK_DIVERT || i == TOK_TEE) {
4882 			struct servent *s;
4883 			setservent(1);
4884 			s = getservbyname(av[0], "divert");
4885 			if (s != NULL)
4886 				action->arg1 = ntohs(s->s_port);
4887 			else
4888 				errx(EX_DATAERR, "illegal divert/tee port");
4889 		} else
4890 			errx(EX_DATAERR, "illegal argument for %s", *(av - 1));
4891 		ac--; av++;
4892 		break;
4893 
4894 	case TOK_FORWARD: {
4895 		ipfw_insn_sa *p = (ipfw_insn_sa *)action;
4896 		char *s, *end;
4897 
4898 		NEED1("missing forward address[:port]");
4899 
4900 		action->opcode = O_FORWARD_IP;
4901 		action->len = F_INSN_SIZE(ipfw_insn_sa);
4902 
4903 		p->sa.sin_len = sizeof(struct sockaddr_in);
4904 		p->sa.sin_family = AF_INET;
4905 		p->sa.sin_port = 0;
4906 		/*
4907 		 * locate the address-port separator (':' or ',')
4908 		 */
4909 		s = strchr(*av, ':');
4910 		if (s == NULL)
4911 			s = strchr(*av, ',');
4912 		if (s != NULL) {
4913 			*(s++) = '\0';
4914 			i = strtoport(s, &end, 0 /* base */, 0 /* proto */);
4915 			if (s == end)
4916 				errx(EX_DATAERR,
4917 				    "illegal forwarding port ``%s''", s);
4918 			p->sa.sin_port = (u_short)i;
4919 		}
4920 		if (_substrcmp(*av, "tablearg") == 0)
4921 			p->sa.sin_addr.s_addr = INADDR_ANY;
4922 		else
4923 			lookup_host(*av, &(p->sa.sin_addr));
4924 		ac--; av++;
4925 		break;
4926 	    }
4927 	case TOK_COMMENT:
4928 		/* pretend it is a 'count' rule followed by the comment */
4929 		action->opcode = O_COUNT;
4930 		ac++; av--;	/* go back... */
4931 		break;
4932 
4933 	case TOK_NAT:
4934  		action->opcode = O_NAT;
4935  		action->len = F_INSN_SIZE(ipfw_insn_nat);
4936  		NEED1("missing nat number");
4937  	        action->arg1 = strtoul(*av, NULL, 10);
4938  		ac--; av++;
4939  		break;
4940 
4941 	default:
4942 		errx(EX_DATAERR, "invalid action %s\n", av[-1]);
4943 	}
4944 	action = next_cmd(action);
4945 
4946 	/*
4947 	 * [altq queuename] -- altq tag, optional
4948 	 * [log [logamount N]]	-- log, optional
4949 	 *
4950 	 * If they exist, it go first in the cmdbuf, but then it is
4951 	 * skipped in the copy section to the end of the buffer.
4952 	 */
4953 	while (ac != 0 && (i = match_token(rule_action_params, *av)) != -1) {
4954 		ac--; av++;
4955 		switch (i) {
4956 		case TOK_LOG:
4957 		    {
4958 			ipfw_insn_log *c = (ipfw_insn_log *)cmd;
4959 			int l;
4960 
4961 			if (have_log)
4962 				errx(EX_DATAERR,
4963 				    "log cannot be specified more than once");
4964 			have_log = (ipfw_insn *)c;
4965 			cmd->len = F_INSN_SIZE(ipfw_insn_log);
4966 			cmd->opcode = O_LOG;
4967 			if (ac && _substrcmp(*av, "logamount") == 0) {
4968 				ac--; av++;
4969 				NEED1("logamount requires argument");
4970 				l = atoi(*av);
4971 				if (l < 0)
4972 					errx(EX_DATAERR,
4973 					    "logamount must be positive");
4974 				c->max_log = l;
4975 				ac--; av++;
4976 			} else {
4977 				len = sizeof(c->max_log);
4978 				if (sysctlbyname("net.inet.ip.fw.verbose_limit",
4979 				    &c->max_log, &len, NULL, 0) == -1)
4980 					errx(1, "sysctlbyname(\"%s\")",
4981 					    "net.inet.ip.fw.verbose_limit");
4982 			}
4983 		    }
4984 			break;
4985 
4986 		case TOK_ALTQ:
4987 		    {
4988 			ipfw_insn_altq *a = (ipfw_insn_altq *)cmd;
4989 
4990 			NEED1("missing altq queue name");
4991 			if (have_altq)
4992 				errx(EX_DATAERR,
4993 				    "altq cannot be specified more than once");
4994 			have_altq = (ipfw_insn *)a;
4995 			cmd->len = F_INSN_SIZE(ipfw_insn_altq);
4996 			cmd->opcode = O_ALTQ;
4997 			fill_altq_qid(&a->qid, *av);
4998 			ac--; av++;
4999 		    }
5000 			break;
5001 
5002 		case TOK_TAG:
5003 		case TOK_UNTAG: {
5004 			uint16_t tag;
5005 
5006 			if (have_tag)
5007 				errx(EX_USAGE, "tag and untag cannot be "
5008 				    "specified more than once");
5009 			GET_UINT_ARG(tag, 1, 65534, i, rule_action_params);
5010 			have_tag = cmd;
5011 			fill_cmd(cmd, O_TAG, (i == TOK_TAG) ? 0: F_NOT, tag);
5012 			ac--; av++;
5013 			break;
5014 		}
5015 
5016 		default:
5017 			abort();
5018 		}
5019 		cmd = next_cmd(cmd);
5020 	}
5021 
5022 	if (have_state)	/* must be a check-state, we are done */
5023 		goto done;
5024 
5025 #define OR_START(target)					\
5026 	if (ac && (*av[0] == '(' || *av[0] == '{')) {		\
5027 		if (open_par)					\
5028 			errx(EX_USAGE, "nested \"(\" not allowed\n"); \
5029 		prev = NULL;					\
5030 		open_par = 1;					\
5031 		if ( (av[0])[1] == '\0') {			\
5032 			ac--; av++;				\
5033 		} else						\
5034 			(*av)++;				\
5035 	}							\
5036 	target:							\
5037 
5038 
5039 #define	CLOSE_PAR						\
5040 	if (open_par) {						\
5041 		if (ac && (					\
5042 		    strcmp(*av, ")") == 0 ||			\
5043 		    strcmp(*av, "}") == 0)) {			\
5044 			prev = NULL;				\
5045 			open_par = 0;				\
5046 			ac--; av++;				\
5047 		} else						\
5048 			errx(EX_USAGE, "missing \")\"\n");	\
5049 	}
5050 
5051 #define NOT_BLOCK						\
5052 	if (ac && _substrcmp(*av, "not") == 0) {		\
5053 		if (cmd->len & F_NOT)				\
5054 			errx(EX_USAGE, "double \"not\" not allowed\n"); \
5055 		cmd->len |= F_NOT;				\
5056 		ac--; av++;					\
5057 	}
5058 
5059 #define OR_BLOCK(target)					\
5060 	if (ac && _substrcmp(*av, "or") == 0) {		\
5061 		if (prev == NULL || open_par == 0)		\
5062 			errx(EX_DATAERR, "invalid OR block");	\
5063 		prev->len |= F_OR;				\
5064 		ac--; av++;					\
5065 		goto target;					\
5066 	}							\
5067 	CLOSE_PAR;
5068 
5069 	first_cmd = cmd;
5070 
5071 #if 0
5072 	/*
5073 	 * MAC addresses, optional.
5074 	 * If we have this, we skip the part "proto from src to dst"
5075 	 * and jump straight to the option parsing.
5076 	 */
5077 	NOT_BLOCK;
5078 	NEED1("missing protocol");
5079 	if (_substrcmp(*av, "MAC") == 0 ||
5080 	    _substrcmp(*av, "mac") == 0) {
5081 		ac--; av++;	/* the "MAC" keyword */
5082 		add_mac(cmd, ac, av); /* exits in case of errors */
5083 		cmd = next_cmd(cmd);
5084 		ac -= 2; av += 2;	/* dst-mac and src-mac */
5085 		NOT_BLOCK;
5086 		NEED1("missing mac type");
5087 		if (add_mactype(cmd, ac, av[0]))
5088 			cmd = next_cmd(cmd);
5089 		ac--; av++;	/* any or mac-type */
5090 		goto read_options;
5091 	}
5092 #endif
5093 
5094 	/*
5095 	 * protocol, mandatory
5096 	 */
5097     OR_START(get_proto);
5098 	NOT_BLOCK;
5099 	NEED1("missing protocol");
5100 	if (add_proto_compat(cmd, *av, &proto)) {
5101 		av++; ac--;
5102 		if (F_LEN(cmd) != 0) {
5103 			prev = cmd;
5104 			cmd = next_cmd(cmd);
5105 		}
5106 	} else if (first_cmd != cmd) {
5107 		errx(EX_DATAERR, "invalid protocol ``%s''", *av);
5108 	} else
5109 		goto read_options;
5110     OR_BLOCK(get_proto);
5111 
5112 	/*
5113 	 * "from", mandatory
5114 	 */
5115 	if (!ac || _substrcmp(*av, "from") != 0)
5116 		errx(EX_USAGE, "missing ``from''");
5117 	ac--; av++;
5118 
5119 	/*
5120 	 * source IP, mandatory
5121 	 */
5122     OR_START(source_ip);
5123 	NOT_BLOCK;	/* optional "not" */
5124 	NEED1("missing source address");
5125 	if (add_src(cmd, *av, proto)) {
5126 		ac--; av++;
5127 		if (F_LEN(cmd) != 0) {	/* ! any */
5128 			prev = cmd;
5129 			cmd = next_cmd(cmd);
5130 		}
5131 	} else
5132 		errx(EX_USAGE, "bad source address %s", *av);
5133     OR_BLOCK(source_ip);
5134 
5135 	/*
5136 	 * source ports, optional
5137 	 */
5138 	NOT_BLOCK;	/* optional "not" */
5139 	if (ac) {
5140 		if (_substrcmp(*av, "any") == 0 ||
5141 		    add_ports(cmd, *av, proto, O_IP_SRCPORT)) {
5142 			ac--; av++;
5143 			if (F_LEN(cmd) != 0)
5144 				cmd = next_cmd(cmd);
5145 		}
5146 	}
5147 
5148 	/*
5149 	 * "to", mandatory
5150 	 */
5151 	if (!ac || _substrcmp(*av, "to") != 0)
5152 		errx(EX_USAGE, "missing ``to''");
5153 	av++; ac--;
5154 
5155 	/*
5156 	 * destination, mandatory
5157 	 */
5158     OR_START(dest_ip);
5159 	NOT_BLOCK;	/* optional "not" */
5160 	NEED1("missing dst address");
5161 	if (add_dst(cmd, *av, proto)) {
5162 		ac--; av++;
5163 		if (F_LEN(cmd) != 0) {	/* ! any */
5164 			prev = cmd;
5165 			cmd = next_cmd(cmd);
5166 		}
5167 	} else
5168 		errx( EX_USAGE, "bad destination address %s", *av);
5169     OR_BLOCK(dest_ip);
5170 
5171 	/*
5172 	 * dest. ports, optional
5173 	 */
5174 	NOT_BLOCK;	/* optional "not" */
5175 	if (ac) {
5176 		if (_substrcmp(*av, "any") == 0 ||
5177 		    add_ports(cmd, *av, proto, O_IP_DSTPORT)) {
5178 			ac--; av++;
5179 			if (F_LEN(cmd) != 0)
5180 				cmd = next_cmd(cmd);
5181 		}
5182 	}
5183 
5184 read_options:
5185 	if (ac && first_cmd == cmd) {
5186 		/*
5187 		 * nothing specified so far, store in the rule to ease
5188 		 * printout later.
5189 		 */
5190 		 rule->_pad = 1;
5191 	}
5192 	prev = NULL;
5193 	while (ac) {
5194 		char *s;
5195 		ipfw_insn_u32 *cmd32;	/* alias for cmd */
5196 
5197 		s = *av;
5198 		cmd32 = (ipfw_insn_u32 *)cmd;
5199 
5200 		if (*s == '!') {	/* alternate syntax for NOT */
5201 			if (cmd->len & F_NOT)
5202 				errx(EX_USAGE, "double \"not\" not allowed\n");
5203 			cmd->len = F_NOT;
5204 			s++;
5205 		}
5206 		i = match_token(rule_options, s);
5207 		ac--; av++;
5208 		switch(i) {
5209 		case TOK_NOT:
5210 			if (cmd->len & F_NOT)
5211 				errx(EX_USAGE, "double \"not\" not allowed\n");
5212 			cmd->len = F_NOT;
5213 			break;
5214 
5215 		case TOK_OR:
5216 			if (open_par == 0 || prev == NULL)
5217 				errx(EX_USAGE, "invalid \"or\" block\n");
5218 			prev->len |= F_OR;
5219 			break;
5220 
5221 		case TOK_STARTBRACE:
5222 			if (open_par)
5223 				errx(EX_USAGE, "+nested \"(\" not allowed\n");
5224 			open_par = 1;
5225 			break;
5226 
5227 		case TOK_ENDBRACE:
5228 			if (!open_par)
5229 				errx(EX_USAGE, "+missing \")\"\n");
5230 			open_par = 0;
5231 			prev = NULL;
5232         		break;
5233 
5234 		case TOK_IN:
5235 			fill_cmd(cmd, O_IN, 0, 0);
5236 			break;
5237 
5238 		case TOK_OUT:
5239 			cmd->len ^= F_NOT; /* toggle F_NOT */
5240 			fill_cmd(cmd, O_IN, 0, 0);
5241 			break;
5242 
5243 		case TOK_DIVERTED:
5244 			fill_cmd(cmd, O_DIVERTED, 0, 3);
5245 			break;
5246 
5247 		case TOK_DIVERTEDLOOPBACK:
5248 			fill_cmd(cmd, O_DIVERTED, 0, 1);
5249 			break;
5250 
5251 		case TOK_DIVERTEDOUTPUT:
5252 			fill_cmd(cmd, O_DIVERTED, 0, 2);
5253 			break;
5254 
5255 		case TOK_FRAG:
5256 			fill_cmd(cmd, O_FRAG, 0, 0);
5257 			break;
5258 
5259 		case TOK_LAYER2:
5260 			fill_cmd(cmd, O_LAYER2, 0, 0);
5261 			break;
5262 
5263 		case TOK_XMIT:
5264 		case TOK_RECV:
5265 		case TOK_VIA:
5266 			NEED1("recv, xmit, via require interface name"
5267 				" or address");
5268 			fill_iface((ipfw_insn_if *)cmd, av[0]);
5269 			ac--; av++;
5270 			if (F_LEN(cmd) == 0)	/* not a valid address */
5271 				break;
5272 			if (i == TOK_XMIT)
5273 				cmd->opcode = O_XMIT;
5274 			else if (i == TOK_RECV)
5275 				cmd->opcode = O_RECV;
5276 			else if (i == TOK_VIA)
5277 				cmd->opcode = O_VIA;
5278 			break;
5279 
5280 		case TOK_ICMPTYPES:
5281 			NEED1("icmptypes requires list of types");
5282 			fill_icmptypes((ipfw_insn_u32 *)cmd, *av);
5283 			av++; ac--;
5284 			break;
5285 
5286 		case TOK_ICMP6TYPES:
5287 			NEED1("icmptypes requires list of types");
5288 			fill_icmp6types((ipfw_insn_icmp6 *)cmd, *av);
5289 			av++; ac--;
5290 			break;
5291 
5292 		case TOK_IPTTL:
5293 			NEED1("ipttl requires TTL");
5294 			if (strpbrk(*av, "-,")) {
5295 			    if (!add_ports(cmd, *av, 0, O_IPTTL))
5296 				errx(EX_DATAERR, "invalid ipttl %s", *av);
5297 			} else
5298 			    fill_cmd(cmd, O_IPTTL, 0, strtoul(*av, NULL, 0));
5299 			ac--; av++;
5300 			break;
5301 
5302 		case TOK_IPID:
5303 			NEED1("ipid requires id");
5304 			if (strpbrk(*av, "-,")) {
5305 			    if (!add_ports(cmd, *av, 0, O_IPID))
5306 				errx(EX_DATAERR, "invalid ipid %s", *av);
5307 			} else
5308 			    fill_cmd(cmd, O_IPID, 0, strtoul(*av, NULL, 0));
5309 			ac--; av++;
5310 			break;
5311 
5312 		case TOK_IPLEN:
5313 			NEED1("iplen requires length");
5314 			if (strpbrk(*av, "-,")) {
5315 			    if (!add_ports(cmd, *av, 0, O_IPLEN))
5316 				errx(EX_DATAERR, "invalid ip len %s", *av);
5317 			} else
5318 			    fill_cmd(cmd, O_IPLEN, 0, strtoul(*av, NULL, 0));
5319 			ac--; av++;
5320 			break;
5321 
5322 		case TOK_IPVER:
5323 			NEED1("ipver requires version");
5324 			fill_cmd(cmd, O_IPVER, 0, strtoul(*av, NULL, 0));
5325 			ac--; av++;
5326 			break;
5327 
5328 		case TOK_IPPRECEDENCE:
5329 			NEED1("ipprecedence requires value");
5330 			fill_cmd(cmd, O_IPPRECEDENCE, 0,
5331 			    (strtoul(*av, NULL, 0) & 7) << 5);
5332 			ac--; av++;
5333 			break;
5334 
5335 		case TOK_IPOPTS:
5336 			NEED1("missing argument for ipoptions");
5337 			fill_flags(cmd, O_IPOPT, f_ipopts, *av);
5338 			ac--; av++;
5339 			break;
5340 
5341 		case TOK_IPTOS:
5342 			NEED1("missing argument for iptos");
5343 			fill_flags(cmd, O_IPTOS, f_iptos, *av);
5344 			ac--; av++;
5345 			break;
5346 
5347 		case TOK_UID:
5348 			NEED1("uid requires argument");
5349 		    {
5350 			char *end;
5351 			uid_t uid;
5352 			struct passwd *pwd;
5353 
5354 			cmd->opcode = O_UID;
5355 			uid = strtoul(*av, &end, 0);
5356 			pwd = (*end == '\0') ? getpwuid(uid) : getpwnam(*av);
5357 			if (pwd == NULL)
5358 				errx(EX_DATAERR, "uid \"%s\" nonexistent", *av);
5359 			cmd32->d[0] = pwd->pw_uid;
5360 			cmd->len |= F_INSN_SIZE(ipfw_insn_u32);
5361 			ac--; av++;
5362 		    }
5363 			break;
5364 
5365 		case TOK_GID:
5366 			NEED1("gid requires argument");
5367 		    {
5368 			char *end;
5369 			gid_t gid;
5370 			struct group *grp;
5371 
5372 			cmd->opcode = O_GID;
5373 			gid = strtoul(*av, &end, 0);
5374 			grp = (*end == '\0') ? getgrgid(gid) : getgrnam(*av);
5375 			if (grp == NULL)
5376 				errx(EX_DATAERR, "gid \"%s\" nonexistent", *av);
5377 			cmd32->d[0] = grp->gr_gid;
5378 			cmd->len |= F_INSN_SIZE(ipfw_insn_u32);
5379 			ac--; av++;
5380 		    }
5381 			break;
5382 
5383 		case TOK_JAIL:
5384 			NEED1("jail requires argument");
5385 		    {
5386 			char *end;
5387 			int jid;
5388 
5389 			cmd->opcode = O_JAIL;
5390 			jid = (int)strtol(*av, &end, 0);
5391 			if (jid < 0 || *end != '\0')
5392 				errx(EX_DATAERR, "jail requires prison ID");
5393 			cmd32->d[0] = (uint32_t)jid;
5394 			cmd->len |= F_INSN_SIZE(ipfw_insn_u32);
5395 			ac--; av++;
5396 		    }
5397 			break;
5398 
5399 		case TOK_ESTAB:
5400 			fill_cmd(cmd, O_ESTAB, 0, 0);
5401 			break;
5402 
5403 		case TOK_SETUP:
5404 			fill_cmd(cmd, O_TCPFLAGS, 0,
5405 				(TH_SYN) | ( (TH_ACK) & 0xff) <<8 );
5406 			break;
5407 
5408 		case TOK_TCPDATALEN:
5409 			NEED1("tcpdatalen requires length");
5410 			if (strpbrk(*av, "-,")) {
5411 			    if (!add_ports(cmd, *av, 0, O_TCPDATALEN))
5412 				errx(EX_DATAERR, "invalid tcpdata len %s", *av);
5413 			} else
5414 			    fill_cmd(cmd, O_TCPDATALEN, 0,
5415 				    strtoul(*av, NULL, 0));
5416 			ac--; av++;
5417 			break;
5418 
5419 		case TOK_TCPOPTS:
5420 			NEED1("missing argument for tcpoptions");
5421 			fill_flags(cmd, O_TCPOPTS, f_tcpopts, *av);
5422 			ac--; av++;
5423 			break;
5424 
5425 		case TOK_TCPSEQ:
5426 		case TOK_TCPACK:
5427 			NEED1("tcpseq/tcpack requires argument");
5428 			cmd->len = F_INSN_SIZE(ipfw_insn_u32);
5429 			cmd->opcode = (i == TOK_TCPSEQ) ? O_TCPSEQ : O_TCPACK;
5430 			cmd32->d[0] = htonl(strtoul(*av, NULL, 0));
5431 			ac--; av++;
5432 			break;
5433 
5434 		case TOK_TCPWIN:
5435 			NEED1("tcpwin requires length");
5436 			fill_cmd(cmd, O_TCPWIN, 0,
5437 			    htons(strtoul(*av, NULL, 0)));
5438 			ac--; av++;
5439 			break;
5440 
5441 		case TOK_TCPFLAGS:
5442 			NEED1("missing argument for tcpflags");
5443 			cmd->opcode = O_TCPFLAGS;
5444 			fill_flags(cmd, O_TCPFLAGS, f_tcpflags, *av);
5445 			ac--; av++;
5446 			break;
5447 
5448 		case TOK_KEEPSTATE:
5449 			if (open_par)
5450 				errx(EX_USAGE, "keep-state cannot be part "
5451 				    "of an or block");
5452 			if (have_state)
5453 				errx(EX_USAGE, "only one of keep-state "
5454 					"and limit is allowed");
5455 			have_state = cmd;
5456 			fill_cmd(cmd, O_KEEP_STATE, 0, 0);
5457 			break;
5458 
5459 		case TOK_LIMIT: {
5460 			ipfw_insn_limit *c = (ipfw_insn_limit *)cmd;
5461 			int val;
5462 
5463 			if (open_par)
5464 				errx(EX_USAGE,
5465 				    "limit cannot be part of an or block");
5466 			if (have_state)
5467 				errx(EX_USAGE, "only one of keep-state and "
5468 				    "limit is allowed");
5469 			have_state = cmd;
5470 
5471 			cmd->len = F_INSN_SIZE(ipfw_insn_limit);
5472 			cmd->opcode = O_LIMIT;
5473 			c->limit_mask = c->conn_limit = 0;
5474 
5475 			while (ac > 0) {
5476 				if ((val = match_token(limit_masks, *av)) <= 0)
5477 					break;
5478 				c->limit_mask |= val;
5479 				ac--; av++;
5480 			}
5481 
5482 			if (c->limit_mask == 0)
5483 				errx(EX_USAGE, "limit: missing limit mask");
5484 
5485 			GET_UINT_ARG(c->conn_limit, 1, 65534, TOK_LIMIT,
5486 			    rule_options);
5487 
5488 			ac--; av++;
5489 			break;
5490 		}
5491 
5492 		case TOK_PROTO:
5493 			NEED1("missing protocol");
5494 			if (add_proto(cmd, *av, &proto)) {
5495 				ac--; av++;
5496 			} else
5497 				errx(EX_DATAERR, "invalid protocol ``%s''",
5498 				    *av);
5499 			break;
5500 
5501 		case TOK_SRCIP:
5502 			NEED1("missing source IP");
5503 			if (add_srcip(cmd, *av)) {
5504 				ac--; av++;
5505 			}
5506 			break;
5507 
5508 		case TOK_DSTIP:
5509 			NEED1("missing destination IP");
5510 			if (add_dstip(cmd, *av)) {
5511 				ac--; av++;
5512 			}
5513 			break;
5514 
5515 		case TOK_SRCIP6:
5516 			NEED1("missing source IP6");
5517 			if (add_srcip6(cmd, *av)) {
5518 				ac--; av++;
5519 			}
5520 			break;
5521 
5522 		case TOK_DSTIP6:
5523 			NEED1("missing destination IP6");
5524 			if (add_dstip6(cmd, *av)) {
5525 				ac--; av++;
5526 			}
5527 			break;
5528 
5529 		case TOK_SRCPORT:
5530 			NEED1("missing source port");
5531 			if (_substrcmp(*av, "any") == 0 ||
5532 			    add_ports(cmd, *av, proto, O_IP_SRCPORT)) {
5533 				ac--; av++;
5534 			} else
5535 				errx(EX_DATAERR, "invalid source port %s", *av);
5536 			break;
5537 
5538 		case TOK_DSTPORT:
5539 			NEED1("missing destination port");
5540 			if (_substrcmp(*av, "any") == 0 ||
5541 			    add_ports(cmd, *av, proto, O_IP_DSTPORT)) {
5542 				ac--; av++;
5543 			} else
5544 				errx(EX_DATAERR, "invalid destination port %s",
5545 				    *av);
5546 			break;
5547 
5548 		case TOK_MAC:
5549 			if (add_mac(cmd, ac, av)) {
5550 				ac -= 2; av += 2;
5551 			}
5552 			break;
5553 
5554 		case TOK_MACTYPE:
5555 			NEED1("missing mac type");
5556 			if (!add_mactype(cmd, ac, *av))
5557 				errx(EX_DATAERR, "invalid mac type %s", *av);
5558 			ac--; av++;
5559 			break;
5560 
5561 		case TOK_VERREVPATH:
5562 			fill_cmd(cmd, O_VERREVPATH, 0, 0);
5563 			break;
5564 
5565 		case TOK_VERSRCREACH:
5566 			fill_cmd(cmd, O_VERSRCREACH, 0, 0);
5567 			break;
5568 
5569 		case TOK_ANTISPOOF:
5570 			fill_cmd(cmd, O_ANTISPOOF, 0, 0);
5571 			break;
5572 
5573 		case TOK_IPSEC:
5574 			fill_cmd(cmd, O_IPSEC, 0, 0);
5575 			break;
5576 
5577 		case TOK_IPV6:
5578 			fill_cmd(cmd, O_IP6, 0, 0);
5579 			break;
5580 
5581 		case TOK_IPV4:
5582 			fill_cmd(cmd, O_IP4, 0, 0);
5583 			break;
5584 
5585 		case TOK_EXT6HDR:
5586 			fill_ext6hdr( cmd, *av );
5587 			ac--; av++;
5588 			break;
5589 
5590 		case TOK_FLOWID:
5591 			if (proto != IPPROTO_IPV6 )
5592 				errx( EX_USAGE, "flow-id filter is active "
5593 				    "only for ipv6 protocol\n");
5594 			fill_flow6( (ipfw_insn_u32 *) cmd, *av );
5595 			ac--; av++;
5596 			break;
5597 
5598 		case TOK_COMMENT:
5599 			fill_comment(cmd, ac, av);
5600 			av += ac;
5601 			ac = 0;
5602 			break;
5603 
5604 		case TOK_TAGGED:
5605 			if (ac > 0 && strpbrk(*av, "-,")) {
5606 				if (!add_ports(cmd, *av, 0, O_TAGGED))
5607 					errx(EX_DATAERR, "tagged: invalid tag"
5608 					    " list: %s", *av);
5609 			}
5610 			else {
5611 				uint16_t tag;
5612 
5613 				GET_UINT_ARG(tag, 1, 65534, TOK_TAGGED,
5614 				    rule_options);
5615 				fill_cmd(cmd, O_TAGGED, 0, tag);
5616 			}
5617 			ac--; av++;
5618 			break;
5619 
5620 		default:
5621 			errx(EX_USAGE, "unrecognised option [%d] %s\n", i, s);
5622 		}
5623 		if (F_LEN(cmd) > 0) {	/* prepare to advance */
5624 			prev = cmd;
5625 			cmd = next_cmd(cmd);
5626 		}
5627 	}
5628 
5629 done:
5630 	/*
5631 	 * Now copy stuff into the rule.
5632 	 * If we have a keep-state option, the first instruction
5633 	 * must be a PROBE_STATE (which is generated here).
5634 	 * If we have a LOG option, it was stored as the first command,
5635 	 * and now must be moved to the top of the action part.
5636 	 */
5637 	dst = (ipfw_insn *)rule->cmd;
5638 
5639 	/*
5640 	 * First thing to write into the command stream is the match probability.
5641 	 */
5642 	if (match_prob != 1) { /* 1 means always match */
5643 		dst->opcode = O_PROB;
5644 		dst->len = 2;
5645 		*((int32_t *)(dst+1)) = (int32_t)(match_prob * 0x7fffffff);
5646 		dst += dst->len;
5647 	}
5648 
5649 	/*
5650 	 * generate O_PROBE_STATE if necessary
5651 	 */
5652 	if (have_state && have_state->opcode != O_CHECK_STATE) {
5653 		fill_cmd(dst, O_PROBE_STATE, 0, 0);
5654 		dst = next_cmd(dst);
5655 	}
5656 
5657 	/* copy all commands but O_LOG, O_KEEP_STATE, O_LIMIT, O_ALTQ, O_TAG */
5658 	for (src = (ipfw_insn *)cmdbuf; src != cmd; src += i) {
5659 		i = F_LEN(src);
5660 
5661 		switch (src->opcode) {
5662 		case O_LOG:
5663 		case O_KEEP_STATE:
5664 		case O_LIMIT:
5665 		case O_ALTQ:
5666 		case O_TAG:
5667 			break;
5668 		default:
5669 			bcopy(src, dst, i * sizeof(uint32_t));
5670 			dst += i;
5671 		}
5672 	}
5673 
5674 	/*
5675 	 * put back the have_state command as last opcode
5676 	 */
5677 	if (have_state && have_state->opcode != O_CHECK_STATE) {
5678 		i = F_LEN(have_state);
5679 		bcopy(have_state, dst, i * sizeof(uint32_t));
5680 		dst += i;
5681 	}
5682 	/*
5683 	 * start action section
5684 	 */
5685 	rule->act_ofs = dst - rule->cmd;
5686 
5687 	/* put back O_LOG, O_ALTQ, O_TAG if necessary */
5688 	if (have_log) {
5689 		i = F_LEN(have_log);
5690 		bcopy(have_log, dst, i * sizeof(uint32_t));
5691 		dst += i;
5692 	}
5693 	if (have_altq) {
5694 		i = F_LEN(have_altq);
5695 		bcopy(have_altq, dst, i * sizeof(uint32_t));
5696 		dst += i;
5697 	}
5698 	if (have_tag) {
5699 		i = F_LEN(have_tag);
5700 		bcopy(have_tag, dst, i * sizeof(uint32_t));
5701 		dst += i;
5702 	}
5703 	/*
5704 	 * copy all other actions
5705 	 */
5706 	for (src = (ipfw_insn *)actbuf; src != action; src += i) {
5707 		i = F_LEN(src);
5708 		bcopy(src, dst, i * sizeof(uint32_t));
5709 		dst += i;
5710 	}
5711 
5712 	rule->cmd_len = (uint32_t *)dst - (uint32_t *)(rule->cmd);
5713 	i = (char *)dst - (char *)rule;
5714 	if (do_cmd(IP_FW_ADD, rule, (uintptr_t)&i) == -1)
5715 		err(EX_UNAVAILABLE, "getsockopt(%s)", "IP_FW_ADD");
5716 	if (!do_quiet)
5717 		show_ipfw(rule, 0, 0);
5718 }
5719 
5720 static void
5721 zero(int ac, char *av[], int optname /* IP_FW_ZERO or IP_FW_RESETLOG */)
5722 {
5723 	uint32_t arg, saved_arg;
5724 	int failed = EX_OK;
5725 	char const *name = optname == IP_FW_ZERO ?  "ZERO" : "RESETLOG";
5726 	char const *errstr;
5727 
5728 	av++; ac--;
5729 
5730 	if (!ac) {
5731 		/* clear all entries */
5732 		if (do_cmd(optname, NULL, 0) < 0)
5733 			err(EX_UNAVAILABLE, "setsockopt(IP_FW_%s)", name);
5734 		if (!do_quiet)
5735 			printf("%s.\n", optname == IP_FW_ZERO ?
5736 			    "Accounting cleared":"Logging counts reset");
5737 
5738 		return;
5739 	}
5740 
5741 	while (ac) {
5742 		/* Rule number */
5743 		if (isdigit(**av)) {
5744 			arg = strtonum(*av, 0, 0xffff, &errstr);
5745 			if (errstr)
5746 				errx(EX_DATAERR,
5747 				    "invalid rule number %s\n", *av);
5748 			saved_arg = arg;
5749 			if (use_set)
5750 				arg |= (1 << 24) | ((use_set - 1) << 16);
5751 			av++;
5752 			ac--;
5753 			if (do_cmd(optname, &arg, sizeof(arg))) {
5754 				warn("rule %u: setsockopt(IP_FW_%s)",
5755 				    saved_arg, name);
5756 				failed = EX_UNAVAILABLE;
5757 			} else if (!do_quiet)
5758 				printf("Entry %d %s.\n", saved_arg,
5759 				    optname == IP_FW_ZERO ?
5760 					"cleared" : "logging count reset");
5761 		} else {
5762 			errx(EX_USAGE, "invalid rule number ``%s''", *av);
5763 		}
5764 	}
5765 	if (failed != EX_OK)
5766 		exit(failed);
5767 }
5768 
5769 static void
5770 flush(int force)
5771 {
5772 	int cmd = do_pipe ? IP_DUMMYNET_FLUSH : IP_FW_FLUSH;
5773 
5774 	if (!force && !do_quiet) { /* need to ask user */
5775 		int c;
5776 
5777 		printf("Are you sure? [yn] ");
5778 		fflush(stdout);
5779 		do {
5780 			c = toupper(getc(stdin));
5781 			while (c != '\n' && getc(stdin) != '\n')
5782 				if (feof(stdin))
5783 					return; /* and do not flush */
5784 		} while (c != 'Y' && c != 'N');
5785 		printf("\n");
5786 		if (c == 'N')	/* user said no */
5787 			return;
5788 	}
5789 	/* `ipfw set N flush` - is the same that `ipfw delete set N` */
5790 	if (use_set) {
5791 		uint32_t arg = ((use_set - 1) & 0xffff) | (1 << 24);
5792 		if (do_cmd(IP_FW_DEL, &arg, sizeof(arg)) < 0)
5793 			err(EX_UNAVAILABLE, "setsockopt(IP_FW_DEL)");
5794 	} else if (do_cmd(cmd, NULL, 0) < 0)
5795 		err(EX_UNAVAILABLE, "setsockopt(IP_%s_FLUSH)",
5796 		    do_pipe ? "DUMMYNET" : "FW");
5797 	if (!do_quiet)
5798 		printf("Flushed all %s.\n", do_pipe ? "pipes" : "rules");
5799 }
5800 
5801 /*
5802  * Free a the (locally allocated) copy of command line arguments.
5803  */
5804 static void
5805 free_args(int ac, char **av)
5806 {
5807 	int i;
5808 
5809 	for (i=0; i < ac; i++)
5810 		free(av[i]);
5811 	free(av);
5812 }
5813 
5814 /*
5815  * This one handles all table-related commands
5816  * 	ipfw table N add addr[/masklen] [value]
5817  * 	ipfw table N delete addr[/masklen]
5818  * 	ipfw table N flush
5819  * 	ipfw table N list
5820  */
5821 static void
5822 table_handler(int ac, char *av[])
5823 {
5824 	ipfw_table_entry ent;
5825 	ipfw_table *tbl;
5826 	int do_add;
5827 	char *p;
5828 	socklen_t l;
5829 	uint32_t a;
5830 
5831 	ac--; av++;
5832 	if (ac && isdigit(**av)) {
5833 		ent.tbl = atoi(*av);
5834 		ac--; av++;
5835 	} else
5836 		errx(EX_USAGE, "table number required");
5837 	NEED1("table needs command");
5838 	if (_substrcmp(*av, "add") == 0 ||
5839 	    _substrcmp(*av, "delete") == 0) {
5840 		do_add = **av == 'a';
5841 		ac--; av++;
5842 		if (!ac)
5843 			errx(EX_USAGE, "IP address required");
5844 		p = strchr(*av, '/');
5845 		if (p) {
5846 			*p++ = '\0';
5847 			ent.masklen = atoi(p);
5848 			if (ent.masklen > 32)
5849 				errx(EX_DATAERR, "bad width ``%s''", p);
5850 		} else
5851 			ent.masklen = 32;
5852 		if (lookup_host(*av, (struct in_addr *)&ent.addr) != 0)
5853 			errx(EX_NOHOST, "hostname ``%s'' unknown", *av);
5854 		ac--; av++;
5855 		if (do_add && ac) {
5856 			unsigned int tval;
5857 			/* isdigit is a bit of a hack here.. */
5858 			if (strchr(*av, (int)'.') == NULL && isdigit(**av))  {
5859 				ent.value = strtoul(*av, NULL, 0);
5860 			} else {
5861 		        	if (lookup_host(*av, (struct in_addr *)&tval) == 0) {
5862 					/* The value must be stored in host order	 *
5863 					 * so that the values < 65k can be distinguished */
5864 		       			ent.value = ntohl(tval);
5865 				} else {
5866 					errx(EX_NOHOST, "hostname ``%s'' unknown", *av);
5867 				}
5868 			}
5869 		} else
5870 			ent.value = 0;
5871 		if (do_cmd(do_add ? IP_FW_TABLE_ADD : IP_FW_TABLE_DEL,
5872 		    &ent, sizeof(ent)) < 0) {
5873 			/* If running silent, don't bomb out on these errors. */
5874 			if (!(do_quiet && (errno == (do_add ? EEXIST : ESRCH))))
5875 				err(EX_OSERR, "setsockopt(IP_FW_TABLE_%s)",
5876 				    do_add ? "ADD" : "DEL");
5877 			/* In silent mode, react to a failed add by deleting */
5878 			if (do_add) {
5879 				do_cmd(IP_FW_TABLE_DEL, &ent, sizeof(ent));
5880 				if (do_cmd(IP_FW_TABLE_ADD,
5881 				    &ent, sizeof(ent)) < 0)
5882 					err(EX_OSERR,
5883 				            "setsockopt(IP_FW_TABLE_ADD)");
5884 			}
5885 		}
5886 	} else if (_substrcmp(*av, "flush") == 0) {
5887 		if (do_cmd(IP_FW_TABLE_FLUSH, &ent.tbl, sizeof(ent.tbl)) < 0)
5888 			err(EX_OSERR, "setsockopt(IP_FW_TABLE_FLUSH)");
5889 	} else if (_substrcmp(*av, "list") == 0) {
5890 		a = ent.tbl;
5891 		l = sizeof(a);
5892 		if (do_cmd(IP_FW_TABLE_GETSIZE, &a, (uintptr_t)&l) < 0)
5893 			err(EX_OSERR, "getsockopt(IP_FW_TABLE_GETSIZE)");
5894 		l = sizeof(*tbl) + a * sizeof(ipfw_table_entry);
5895 		tbl = malloc(l);
5896 		if (tbl == NULL)
5897 			err(EX_OSERR, "malloc");
5898 		tbl->tbl = ent.tbl;
5899 		if (do_cmd(IP_FW_TABLE_LIST, tbl, (uintptr_t)&l) < 0)
5900 			err(EX_OSERR, "getsockopt(IP_FW_TABLE_LIST)");
5901 		for (a = 0; a < tbl->cnt; a++) {
5902 			unsigned int tval;
5903 			tval = tbl->ent[a].value;
5904 			if (do_value_as_ip) {
5905 			    char tbuf[128];
5906 			    strncpy(tbuf, inet_ntoa(*(struct in_addr *)
5907 				&tbl->ent[a].addr), 127);
5908 			    /* inet_ntoa expects network order */
5909 			    tval = htonl(tval);
5910 			    printf("%s/%u %s\n", tbuf, tbl->ent[a].masklen,
5911 			        inet_ntoa(*(struct in_addr *)&tval));
5912 			} else {
5913 			    printf("%s/%u %u\n",
5914 			        inet_ntoa(*(struct in_addr *)&tbl->ent[a].addr),
5915 			        tbl->ent[a].masklen, tval);
5916 			}
5917 		}
5918 	} else
5919 		errx(EX_USAGE, "invalid table command %s", *av);
5920 }
5921 
5922 static void
5923 show_nat(int ac, char **av) {
5924 	struct cfg_nat *n;
5925 	struct cfg_redir *e;
5926 	int cmd, i, nbytes, do_cfg, do_rule, frule, lrule, nalloc, size;
5927 	int nat_cnt, redir_cnt, r;
5928 	uint8_t *data, *p;
5929 	char **lav, *endptr;
5930 
5931 	do_rule = 0;
5932 	nalloc = 1024;
5933 	size = 0;
5934 	data = NULL;
5935 	ac--; av++;
5936 
5937 	/* Parse parameters. */
5938 	for (cmd = IP_FW_NAT_GET_LOG, do_cfg = 0; ac != 0; ac--, av++) {
5939 		if (!strncmp(av[0], "config", strlen(av[0]))) {
5940 			cmd = IP_FW_NAT_GET_CONFIG, do_cfg = 1;
5941 			continue;
5942 		}
5943 		/* Convert command line rule #. */
5944 		frule = lrule = strtoul(av[0], &endptr, 10);
5945 		if (*endptr == '-')
5946 			lrule = strtoul(endptr+1, &endptr, 10);
5947 		if (lrule == 0)
5948 			err(EX_USAGE, "invalid rule number: %s", av[0]);
5949 		do_rule = 1;
5950 	}
5951 
5952 	nbytes = nalloc;
5953 	while (nbytes >= nalloc) {
5954 		nalloc = nalloc * 2;
5955 		nbytes = nalloc;
5956 		if ((data = realloc(data, nbytes)) == NULL)
5957 			err(EX_OSERR, "realloc");
5958 		if (do_cmd(cmd, data, (uintptr_t)&nbytes) < 0)
5959 			err(EX_OSERR, "getsockopt(IP_FW_GET_%s)",
5960 			    (cmd == IP_FW_NAT_GET_LOG) ? "LOG" : "CONFIG");
5961 	}
5962 	if (nbytes == 0)
5963 		exit(0);
5964 	if (do_cfg) {
5965 		nat_cnt = *((int *)data);
5966 		for (i = sizeof(nat_cnt); nat_cnt; nat_cnt--) {
5967 			n = (struct cfg_nat *)&data[i];
5968 			if (do_rule) {
5969 				if (!(frule <= n->id && lrule >= n->id))
5970 					continue;
5971 			}
5972 			print_nat_config(&data[i]);
5973 			i += sizeof(struct cfg_nat);
5974 			for (redir_cnt = 0; redir_cnt < n->redir_cnt; redir_cnt++) {
5975 				e = (struct cfg_redir *)&data[i];
5976 				i += sizeof(struct cfg_redir) + e->spool_cnt *
5977 				    sizeof(struct cfg_spool);
5978 			}
5979 		}
5980 	} else {
5981 		for (i = 0; 1; i += LIBALIAS_BUF_SIZE + sizeof(int)) {
5982 			p = &data[i];
5983 			if (p == data + nbytes)
5984 				break;
5985 			bcopy(p, &r, sizeof(int));
5986 			if (do_rule) {
5987 				if (!(frule <= r && lrule >= r))
5988 					continue;
5989 			}
5990 			printf("nat %u: %s\n", r, p+sizeof(int));
5991 		}
5992 	}
5993 }
5994 
5995 /*
5996  * Called with the arguments (excluding program name).
5997  * Returns 0 if successful, 1 if empty command, errx() in case of errors.
5998  */
5999 static int
6000 ipfw_main(int oldac, char **oldav)
6001 {
6002 	int ch, ac, save_ac;
6003 	const char *errstr;
6004 	char **av, **save_av;
6005 	int do_acct = 0;		/* Show packet/byte count */
6006 
6007 #define WHITESP		" \t\f\v\n\r"
6008 	if (oldac == 0)
6009 		return 1;
6010 	else if (oldac == 1) {
6011 		/*
6012 		 * If we are called with a single string, try to split it into
6013 		 * arguments for subsequent parsing.
6014 		 * But first, remove spaces after a ',', by copying the string
6015 		 * in-place.
6016 		 */
6017 		char *arg = oldav[0];	/* The string... */
6018 		int l = strlen(arg);
6019 		int copy = 0;		/* 1 if we need to copy, 0 otherwise */
6020 		int i, j;
6021 		for (i = j = 0; i < l; i++) {
6022 			if (arg[i] == '#')	/* comment marker */
6023 				break;
6024 			if (copy) {
6025 				arg[j++] = arg[i];
6026 				copy = !index("," WHITESP, arg[i]);
6027 			} else {
6028 				copy = !index(WHITESP, arg[i]);
6029 				if (copy)
6030 					arg[j++] = arg[i];
6031 			}
6032 		}
6033 		if (!copy && j > 0)	/* last char was a 'blank', remove it */
6034 			j--;
6035 		l = j;			/* the new argument length */
6036 		arg[j++] = '\0';
6037 		if (l == 0)		/* empty string! */
6038 			return 1;
6039 
6040 		/*
6041 		 * First, count number of arguments. Because of the previous
6042 		 * processing, this is just the number of blanks plus 1.
6043 		 */
6044 		for (i = 0, ac = 1; i < l; i++)
6045 			if (index(WHITESP, arg[i]) != NULL)
6046 				ac++;
6047 
6048 		av = calloc(ac, sizeof(char *));
6049 
6050 		/*
6051 		 * Second, copy arguments from cmd[] to av[]. For each one,
6052 		 * j is the initial character, i is the one past the end.
6053 		 */
6054 		for (ac = 0, i = j = 0; i < l; i++)
6055 			if (index(WHITESP, arg[i]) != NULL || i == l-1) {
6056 				if (i == l-1)
6057 					i++;
6058 				av[ac] = calloc(i-j+1, 1);
6059 				bcopy(arg+j, av[ac], i-j);
6060 				ac++;
6061 				j = i + 1;
6062 			}
6063 	} else {
6064 		/*
6065 		 * If an argument ends with ',' join with the next one.
6066 		 */
6067 		int first, i, l;
6068 
6069 		av = calloc(oldac, sizeof(char *));
6070 		for (first = i = ac = 0, l = 0; i < oldac; i++) {
6071 			char *arg = oldav[i];
6072 			int k = strlen(arg);
6073 
6074 			l += k;
6075 			if (arg[k-1] != ',' || i == oldac-1) {
6076 				/* Time to copy. */
6077 				av[ac] = calloc(l+1, 1);
6078 				for (l=0; first <= i; first++) {
6079 					strcat(av[ac]+l, oldav[first]);
6080 					l += strlen(oldav[first]);
6081 				}
6082 				ac++;
6083 				l = 0;
6084 				first = i+1;
6085 			}
6086 		}
6087 	}
6088 
6089 	/* Set the force flag for non-interactive processes */
6090 	if (!do_force)
6091 		do_force = !isatty(STDIN_FILENO);
6092 
6093 	/* Save arguments for final freeing of memory. */
6094 	save_ac = ac;
6095 	save_av = av;
6096 
6097 	optind = optreset = 0;
6098 	while ((ch = getopt(ac, av, "abcdefhinNqs:STtv")) != -1)
6099 		switch (ch) {
6100 		case 'a':
6101 			do_acct = 1;
6102 			break;
6103 
6104 		case 'b':
6105 			comment_only = 1;
6106 			do_compact = 1;
6107 			break;
6108 
6109 		case 'c':
6110 			do_compact = 1;
6111 			break;
6112 
6113 		case 'd':
6114 			do_dynamic = 1;
6115 			break;
6116 
6117 		case 'e':
6118 			do_expired = 1;
6119 			break;
6120 
6121 		case 'f':
6122 			do_force = 1;
6123 			break;
6124 
6125 		case 'h': /* help */
6126 			free_args(save_ac, save_av);
6127 			help();
6128 			break;	/* NOTREACHED */
6129 
6130 		case 'i':
6131 			do_value_as_ip = 1;
6132 			break;
6133 
6134 		case 'n':
6135 			test_only = 1;
6136 			break;
6137 
6138 		case 'N':
6139 			do_resolv = 1;
6140 			break;
6141 
6142 		case 'q':
6143 			do_quiet = 1;
6144 			break;
6145 
6146 		case 's': /* sort */
6147 			do_sort = atoi(optarg);
6148 			break;
6149 
6150 		case 'S':
6151 			show_sets = 1;
6152 			break;
6153 
6154 		case 't':
6155 			do_time = 1;
6156 			break;
6157 
6158 		case 'T':
6159 			do_time = 2;	/* numeric timestamp */
6160 			break;
6161 
6162 		case 'v': /* verbose */
6163 			verbose = 1;
6164 			break;
6165 
6166 		default:
6167 			free_args(save_ac, save_av);
6168 			return 1;
6169 		}
6170 
6171 	ac -= optind;
6172 	av += optind;
6173 	NEED1("bad arguments, for usage summary ``ipfw''");
6174 
6175 	/*
6176 	 * An undocumented behaviour of ipfw1 was to allow rule numbers first,
6177 	 * e.g. "100 add allow ..." instead of "add 100 allow ...".
6178 	 * In case, swap first and second argument to get the normal form.
6179 	 */
6180 	if (ac > 1 && isdigit(*av[0])) {
6181 		char *p = av[0];
6182 
6183 		av[0] = av[1];
6184 		av[1] = p;
6185 	}
6186 
6187 	/*
6188 	 * Optional: pipe, queue or nat.
6189 	 */
6190 	do_nat = 0;
6191 	do_pipe = 0;
6192 	if (!strncmp(*av, "nat", strlen(*av)))
6193  	        do_nat = 1;
6194  	else if (!strncmp(*av, "pipe", strlen(*av)))
6195 		do_pipe = 1;
6196 	else if (_substrcmp(*av, "queue") == 0)
6197 		do_pipe = 2;
6198 	else if (!strncmp(*av, "set", strlen(*av))) {
6199 		if (ac > 1 && isdigit(av[1][0])) {
6200 			use_set = strtonum(av[1], 0, RESVD_SET, &errstr);
6201 			if (errstr)
6202 				errx(EX_DATAERR,
6203 				    "invalid set number %s\n", av[1]);
6204 			ac -= 2; av += 2; use_set++;
6205 		}
6206 	}
6207 
6208 	if (do_pipe || do_nat) {
6209 		ac--;
6210 		av++;
6211 	}
6212 	NEED1("missing command");
6213 
6214 	/*
6215 	 * For pipes, queues and nats we normally say 'nat|pipe NN config'
6216 	 * but the code is easier to parse as 'nat|pipe config NN'
6217 	 * so we swap the two arguments.
6218 	 */
6219 	if ((do_pipe || do_nat) && ac > 1 && isdigit(*av[0])) {
6220 		char *p = av[0];
6221 
6222 		av[0] = av[1];
6223 		av[1] = p;
6224 	}
6225 
6226 	int try_next = 0;
6227 	if (use_set == 0) {
6228 		if (_substrcmp(*av, "add") == 0)
6229 			add(ac, av);
6230 		else if (do_nat && _substrcmp(*av, "show") == 0)
6231  			show_nat(ac, av);
6232 		else if (do_pipe && _substrcmp(*av, "config") == 0)
6233 			config_pipe(ac, av);
6234 		else if (do_nat && _substrcmp(*av, "config") == 0)
6235  			config_nat(ac, av);
6236 		else if (_substrcmp(*av, "set") == 0)
6237 			sets_handler(ac, av);
6238 		else if (_substrcmp(*av, "table") == 0)
6239 			table_handler(ac, av);
6240 		else if (_substrcmp(*av, "enable") == 0)
6241 			sysctl_handler(ac, av, 1);
6242 		else if (_substrcmp(*av, "disable") == 0)
6243 			sysctl_handler(ac, av, 0);
6244 		else
6245 			try_next = 1;
6246 	}
6247 
6248 	if (use_set || try_next) {
6249 		if (_substrcmp(*av, "delete") == 0)
6250 			delete(ac, av);
6251 		else if (_substrcmp(*av, "flush") == 0)
6252 			flush(do_force);
6253 		else if (_substrcmp(*av, "zero") == 0)
6254 			zero(ac, av, IP_FW_ZERO);
6255 		else if (_substrcmp(*av, "resetlog") == 0)
6256 			zero(ac, av, IP_FW_RESETLOG);
6257 		else if (_substrcmp(*av, "print") == 0 ||
6258 		         _substrcmp(*av, "list") == 0)
6259 			list(ac, av, do_acct);
6260 		else if (_substrcmp(*av, "show") == 0)
6261 			list(ac, av, 1 /* show counters */);
6262 		else
6263 			errx(EX_USAGE, "bad command `%s'", *av);
6264 	}
6265 
6266 	/* Free memory allocated in the argument parsing. */
6267 	free_args(save_ac, save_av);
6268 	return 0;
6269 }
6270 
6271 
6272 static void
6273 ipfw_readfile(int ac, char *av[])
6274 {
6275 #define MAX_ARGS	32
6276 	char	buf[BUFSIZ];
6277 	char	*cmd = NULL, *filename = av[ac-1];
6278 	int	c, lineno=0;
6279 	FILE	*f = NULL;
6280 	pid_t	preproc = 0;
6281 
6282 	filename = av[ac-1];
6283 
6284 	while ((c = getopt(ac, av, "cfNnp:qS")) != -1) {
6285 		switch(c) {
6286 		case 'c':
6287 			do_compact = 1;
6288 			break;
6289 
6290 		case 'f':
6291 			do_force = 1;
6292 			break;
6293 
6294 		case 'N':
6295 			do_resolv = 1;
6296 			break;
6297 
6298 		case 'n':
6299 			test_only = 1;
6300 			break;
6301 
6302 		case 'p':
6303 			cmd = optarg;
6304 			/*
6305 			 * Skip previous args and delete last one, so we
6306 			 * pass all but the last argument to the preprocessor
6307 			 * via av[optind-1]
6308 			 */
6309 			av += optind - 1;
6310 			ac -= optind - 1;
6311 			if (ac < 2)
6312 				errx(EX_USAGE, "no filename argument");
6313 			av[ac-1] = NULL;
6314 			fprintf(stderr, "command is %s\n", av[0]);
6315 			break;
6316 
6317 		case 'q':
6318 			do_quiet = 1;
6319 			break;
6320 
6321 		case 'S':
6322 			show_sets = 1;
6323 			break;
6324 
6325 		default:
6326 			errx(EX_USAGE, "bad arguments, for usage"
6327 			     " summary ``ipfw''");
6328 		}
6329 
6330 		if (cmd != NULL)
6331 			break;
6332 	}
6333 
6334 	if (cmd == NULL && ac != optind + 1) {
6335 		fprintf(stderr, "ac %d, optind %d\n", ac, optind);
6336 		errx(EX_USAGE, "extraneous filename arguments");
6337 	}
6338 
6339 	if ((f = fopen(filename, "r")) == NULL)
6340 		err(EX_UNAVAILABLE, "fopen: %s", filename);
6341 
6342 	if (cmd != NULL) {			/* pipe through preprocessor */
6343 		int pipedes[2];
6344 
6345 		if (pipe(pipedes) == -1)
6346 			err(EX_OSERR, "cannot create pipe");
6347 
6348 		preproc = fork();
6349 		if (preproc == -1)
6350 			err(EX_OSERR, "cannot fork");
6351 
6352 		if (preproc == 0) {
6353 			/*
6354 			 * Child, will run the preprocessor with the
6355 			 * file on stdin and the pipe on stdout.
6356 			 */
6357 			if (dup2(fileno(f), 0) == -1
6358 			    || dup2(pipedes[1], 1) == -1)
6359 				err(EX_OSERR, "dup2()");
6360 			fclose(f);
6361 			close(pipedes[1]);
6362 			close(pipedes[0]);
6363 			execvp(cmd, av);
6364 			err(EX_OSERR, "execvp(%s) failed", cmd);
6365 		} else { /* parent, will reopen f as the pipe */
6366 			fclose(f);
6367 			close(pipedes[1]);
6368 			if ((f = fdopen(pipedes[0], "r")) == NULL) {
6369 				int savederrno = errno;
6370 
6371 				(void)kill(preproc, SIGTERM);
6372 				errno = savederrno;
6373 				err(EX_OSERR, "fdopen()");
6374 			}
6375 		}
6376 	}
6377 
6378 	while (fgets(buf, BUFSIZ, f)) {		/* read commands */
6379 		char linename[10];
6380 		char *args[1];
6381 
6382 		lineno++;
6383 		sprintf(linename, "Line %d", lineno);
6384 		setprogname(linename); /* XXX */
6385 		args[0] = buf;
6386 		ipfw_main(1, args);
6387 	}
6388 	fclose(f);
6389 	if (cmd != NULL) {
6390 		int status;
6391 
6392 		if (waitpid(preproc, &status, 0) == -1)
6393 			errx(EX_OSERR, "waitpid()");
6394 		if (WIFEXITED(status) && WEXITSTATUS(status) != EX_OK)
6395 			errx(EX_UNAVAILABLE,
6396 			    "preprocessor exited with status %d",
6397 			    WEXITSTATUS(status));
6398 		else if (WIFSIGNALED(status))
6399 			errx(EX_UNAVAILABLE,
6400 			    "preprocessor exited with signal %d",
6401 			    WTERMSIG(status));
6402 	}
6403 }
6404 
6405 int
6406 main(int ac, char *av[])
6407 {
6408 	/*
6409 	 * If the last argument is an absolute pathname, interpret it
6410 	 * as a file to be preprocessed.
6411 	 */
6412 
6413 	if (ac > 1 && av[ac - 1][0] == '/' && access(av[ac - 1], R_OK) == 0)
6414 		ipfw_readfile(ac, av);
6415 	else {
6416 		if (ipfw_main(ac-1, av+1))
6417 			show_usage();
6418 	}
6419 	return EX_OK;
6420 }
6421