xref: /freebsd/sbin/ipfw/ipfw2.c (revision 8ef24a0d4b28fe230e20637f56869cc4148cd2ca)
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/types.h>
24 #include <sys/param.h>
25 #include <sys/socket.h>
26 #include <sys/sockio.h>
27 #include <sys/sysctl.h>
28 
29 #include "ipfw2.h"
30 
31 #include <ctype.h>
32 #include <err.h>
33 #include <errno.h>
34 #include <grp.h>
35 #include <netdb.h>
36 #include <pwd.h>
37 #include <stdio.h>
38 #include <stdarg.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <sysexits.h>
42 #include <time.h>	/* ctime */
43 #include <timeconv.h>	/* _long_to_time */
44 #include <unistd.h>
45 #include <fcntl.h>
46 #include <stddef.h>	/* offsetof */
47 
48 #include <net/ethernet.h>
49 #include <net/if.h>		/* only IFNAMSIZ */
50 #include <netinet/in.h>
51 #include <netinet/in_systm.h>	/* only n_short, n_long */
52 #include <netinet/ip.h>
53 #include <netinet/ip_icmp.h>
54 #include <netinet/ip_fw.h>
55 #include <netinet/tcp.h>
56 #include <arpa/inet.h>
57 
58 struct cmdline_opts co;	/* global options */
59 
60 struct format_opts {
61 	int bcwidth;
62 	int pcwidth;
63 	int show_counters;
64 	int show_time;		/* show timestamp */
65 	uint32_t set_mask;	/* enabled sets mask */
66 	uint32_t flags;		/* request flags */
67 	uint32_t first;		/* first rule to request */
68 	uint32_t last;		/* last rule to request */
69 	uint32_t dcnt;		/* number of dynamic states */
70 	ipfw_obj_ctlv *tstate;	/* table state data */
71 };
72 
73 int resvd_set_number = RESVD_SET;
74 
75 int ipfw_socket = -1;
76 
77 #define	CHECK_LENGTH(v, len) do {				\
78 	if ((v) < (len))					\
79 		errx(EX_DATAERR, "Rule too long");		\
80 	} while (0)
81 /*
82  * Check if we have enough space in cmd buffer. Note that since
83  * first 8? u32 words are reserved by reserved header, full cmd
84  * buffer can't be used, so we need to protect from buffer overrun
85  * only. At the beginning, cblen is less than actual buffer size by
86  * size of ipfw_insn_u32 instruction + 1 u32 work. This eliminates need
87  * for checking small instructions fitting in given range.
88  * We also (ab)use the fact that ipfw_insn is always the first field
89  * for any custom instruction.
90  */
91 #define	CHECK_CMDLEN	CHECK_LENGTH(cblen, F_LEN((ipfw_insn *)cmd))
92 
93 #define GET_UINT_ARG(arg, min, max, tok, s_x) do {			\
94 	if (!av[0])							\
95 		errx(EX_USAGE, "%s: missing argument", match_value(s_x, tok)); \
96 	if (_substrcmp(*av, "tablearg") == 0) {				\
97 		arg = IP_FW_TARG;					\
98 		break;							\
99 	}								\
100 									\
101 	{								\
102 	long _xval;							\
103 	char *end;							\
104 									\
105 	_xval = strtol(*av, &end, 10);					\
106 									\
107 	if (!isdigit(**av) || *end != '\0' || (_xval == 0 && errno == EINVAL)) \
108 		errx(EX_DATAERR, "%s: invalid argument: %s",		\
109 		    match_value(s_x, tok), *av);			\
110 									\
111 	if (errno == ERANGE || _xval < min || _xval > 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 (_xval == IP_FW_TARG)					\
116 		errx(EX_DATAERR, "%s: illegal argument value: %s",	\
117 		    match_value(s_x, tok), *av);			\
118 	arg = _xval;							\
119 	}								\
120 } while (0)
121 
122 static struct _s_x f_tcpflags[] = {
123 	{ "syn", TH_SYN },
124 	{ "fin", TH_FIN },
125 	{ "ack", TH_ACK },
126 	{ "psh", TH_PUSH },
127 	{ "rst", TH_RST },
128 	{ "urg", TH_URG },
129 	{ "tcp flag", 0 },
130 	{ NULL,	0 }
131 };
132 
133 static struct _s_x f_tcpopts[] = {
134 	{ "mss",	IP_FW_TCPOPT_MSS },
135 	{ "maxseg",	IP_FW_TCPOPT_MSS },
136 	{ "window",	IP_FW_TCPOPT_WINDOW },
137 	{ "sack",	IP_FW_TCPOPT_SACK },
138 	{ "ts",		IP_FW_TCPOPT_TS },
139 	{ "timestamp",	IP_FW_TCPOPT_TS },
140 	{ "cc",		IP_FW_TCPOPT_CC },
141 	{ "tcp option",	0 },
142 	{ NULL,	0 }
143 };
144 
145 /*
146  * IP options span the range 0 to 255 so we need to remap them
147  * (though in fact only the low 5 bits are significant).
148  */
149 static struct _s_x f_ipopts[] = {
150 	{ "ssrr",	IP_FW_IPOPT_SSRR},
151 	{ "lsrr",	IP_FW_IPOPT_LSRR},
152 	{ "rr",		IP_FW_IPOPT_RR},
153 	{ "ts",		IP_FW_IPOPT_TS},
154 	{ "ip option",	0 },
155 	{ NULL,	0 }
156 };
157 
158 static struct _s_x f_iptos[] = {
159 	{ "lowdelay",	IPTOS_LOWDELAY},
160 	{ "throughput",	IPTOS_THROUGHPUT},
161 	{ "reliability", IPTOS_RELIABILITY},
162 	{ "mincost",	IPTOS_MINCOST},
163 	{ "congestion",	IPTOS_ECN_CE},
164 	{ "ecntransport", IPTOS_ECN_ECT0},
165 	{ "ip tos option", 0},
166 	{ NULL,	0 }
167 };
168 
169 struct _s_x f_ipdscp[] = {
170 	{ "af11", IPTOS_DSCP_AF11 >> 2 },	/* 001010 */
171 	{ "af12", IPTOS_DSCP_AF12 >> 2 },	/* 001100 */
172 	{ "af13", IPTOS_DSCP_AF13 >> 2 },	/* 001110 */
173 	{ "af21", IPTOS_DSCP_AF21 >> 2 },	/* 010010 */
174 	{ "af22", IPTOS_DSCP_AF22 >> 2 },	/* 010100 */
175 	{ "af23", IPTOS_DSCP_AF23 >> 2 },	/* 010110 */
176 	{ "af31", IPTOS_DSCP_AF31 >> 2 },	/* 011010 */
177 	{ "af32", IPTOS_DSCP_AF32 >> 2 },	/* 011100 */
178 	{ "af33", IPTOS_DSCP_AF33 >> 2 },	/* 011110 */
179 	{ "af41", IPTOS_DSCP_AF41 >> 2 },	/* 100010 */
180 	{ "af42", IPTOS_DSCP_AF42 >> 2 },	/* 100100 */
181 	{ "af43", IPTOS_DSCP_AF43 >> 2 },	/* 100110 */
182 	{ "be", IPTOS_DSCP_CS0 >> 2 }, 	/* 000000 */
183 	{ "ef", IPTOS_DSCP_EF >> 2 },	/* 101110 */
184 	{ "cs0", IPTOS_DSCP_CS0 >> 2 },	/* 000000 */
185 	{ "cs1", IPTOS_DSCP_CS1 >> 2 },	/* 001000 */
186 	{ "cs2", IPTOS_DSCP_CS2 >> 2 },	/* 010000 */
187 	{ "cs3", IPTOS_DSCP_CS3 >> 2 },	/* 011000 */
188 	{ "cs4", IPTOS_DSCP_CS4 >> 2 },	/* 100000 */
189 	{ "cs5", IPTOS_DSCP_CS5 >> 2 },	/* 101000 */
190 	{ "cs6", IPTOS_DSCP_CS6 >> 2 },	/* 110000 */
191 	{ "cs7", IPTOS_DSCP_CS7 >> 2 },	/* 100000 */
192 	{ NULL, 0 }
193 };
194 
195 static struct _s_x limit_masks[] = {
196 	{"all",		DYN_SRC_ADDR|DYN_SRC_PORT|DYN_DST_ADDR|DYN_DST_PORT},
197 	{"src-addr",	DYN_SRC_ADDR},
198 	{"src-port",	DYN_SRC_PORT},
199 	{"dst-addr",	DYN_DST_ADDR},
200 	{"dst-port",	DYN_DST_PORT},
201 	{NULL,		0}
202 };
203 
204 /*
205  * we use IPPROTO_ETHERTYPE as a fake protocol id to call the print routines
206  * This is only used in this code.
207  */
208 #define IPPROTO_ETHERTYPE	0x1000
209 static struct _s_x ether_types[] = {
210     /*
211      * Note, we cannot use "-:&/" in the names because they are field
212      * separators in the type specifications. Also, we use s = NULL as
213      * end-delimiter, because a type of 0 can be legal.
214      */
215 	{ "ip",		0x0800 },
216 	{ "ipv4",	0x0800 },
217 	{ "ipv6",	0x86dd },
218 	{ "arp",	0x0806 },
219 	{ "rarp",	0x8035 },
220 	{ "vlan",	0x8100 },
221 	{ "loop",	0x9000 },
222 	{ "trail",	0x1000 },
223 	{ "at",		0x809b },
224 	{ "atalk",	0x809b },
225 	{ "aarp",	0x80f3 },
226 	{ "pppoe_disc",	0x8863 },
227 	{ "pppoe_sess",	0x8864 },
228 	{ "ipx_8022",	0x00E0 },
229 	{ "ipx_8023",	0x0000 },
230 	{ "ipx_ii",	0x8137 },
231 	{ "ipx_snap",	0x8137 },
232 	{ "ipx",	0x8137 },
233 	{ "ns",		0x0600 },
234 	{ NULL,		0 }
235 };
236 
237 static struct _s_x rule_eactions[] = {
238 	{ NULL, 0 }	/* terminator */
239 };
240 
241 static struct _s_x rule_actions[] = {
242 	{ "accept",		TOK_ACCEPT },
243 	{ "pass",		TOK_ACCEPT },
244 	{ "allow",		TOK_ACCEPT },
245 	{ "permit",		TOK_ACCEPT },
246 	{ "count",		TOK_COUNT },
247 	{ "pipe",		TOK_PIPE },
248 	{ "queue",		TOK_QUEUE },
249 	{ "divert",		TOK_DIVERT },
250 	{ "tee",		TOK_TEE },
251 	{ "netgraph",		TOK_NETGRAPH },
252 	{ "ngtee",		TOK_NGTEE },
253 	{ "fwd",		TOK_FORWARD },
254 	{ "forward",		TOK_FORWARD },
255 	{ "skipto",		TOK_SKIPTO },
256 	{ "deny",		TOK_DENY },
257 	{ "drop",		TOK_DENY },
258 	{ "reject",		TOK_REJECT },
259 	{ "reset6",		TOK_RESET6 },
260 	{ "reset",		TOK_RESET },
261 	{ "unreach6",		TOK_UNREACH6 },
262 	{ "unreach",		TOK_UNREACH },
263 	{ "check-state",	TOK_CHECKSTATE },
264 	{ "//",			TOK_COMMENT },
265 	{ "nat",		TOK_NAT },
266 	{ "reass",		TOK_REASS },
267 	{ "setfib",		TOK_SETFIB },
268 	{ "setdscp",		TOK_SETDSCP },
269 	{ "call",		TOK_CALL },
270 	{ "return",		TOK_RETURN },
271 	{ "eaction",		TOK_EACTION },
272 	{ NULL, 0 }	/* terminator */
273 };
274 
275 static struct _s_x rule_action_params[] = {
276 	{ "altq",		TOK_ALTQ },
277 	{ "log",		TOK_LOG },
278 	{ "tag",		TOK_TAG },
279 	{ "untag",		TOK_UNTAG },
280 	{ NULL, 0 }	/* terminator */
281 };
282 
283 /*
284  * The 'lookup' instruction accepts one of the following arguments.
285  * -1 is a terminator for the list.
286  * Arguments are passed as v[1] in O_DST_LOOKUP options.
287  */
288 static int lookup_key[] = {
289 	TOK_DSTIP, TOK_SRCIP, TOK_DSTPORT, TOK_SRCPORT,
290 	TOK_UID, TOK_JAIL, TOK_DSCP, -1 };
291 
292 static struct _s_x rule_options[] = {
293 	{ "tagged",		TOK_TAGGED },
294 	{ "uid",		TOK_UID },
295 	{ "gid",		TOK_GID },
296 	{ "jail",		TOK_JAIL },
297 	{ "in",			TOK_IN },
298 	{ "limit",		TOK_LIMIT },
299 	{ "keep-state",		TOK_KEEPSTATE },
300 	{ "bridged",		TOK_LAYER2 },
301 	{ "layer2",		TOK_LAYER2 },
302 	{ "out",		TOK_OUT },
303 	{ "diverted",		TOK_DIVERTED },
304 	{ "diverted-loopback",	TOK_DIVERTEDLOOPBACK },
305 	{ "diverted-output",	TOK_DIVERTEDOUTPUT },
306 	{ "xmit",		TOK_XMIT },
307 	{ "recv",		TOK_RECV },
308 	{ "via",		TOK_VIA },
309 	{ "fragment",		TOK_FRAG },
310 	{ "frag",		TOK_FRAG },
311 	{ "fib",		TOK_FIB },
312 	{ "ipoptions",		TOK_IPOPTS },
313 	{ "ipopts",		TOK_IPOPTS },
314 	{ "iplen",		TOK_IPLEN },
315 	{ "ipid",		TOK_IPID },
316 	{ "ipprecedence",	TOK_IPPRECEDENCE },
317 	{ "dscp",		TOK_DSCP },
318 	{ "iptos",		TOK_IPTOS },
319 	{ "ipttl",		TOK_IPTTL },
320 	{ "ipversion",		TOK_IPVER },
321 	{ "ipver",		TOK_IPVER },
322 	{ "estab",		TOK_ESTAB },
323 	{ "established",	TOK_ESTAB },
324 	{ "setup",		TOK_SETUP },
325 	{ "sockarg",		TOK_SOCKARG },
326 	{ "tcpdatalen",		TOK_TCPDATALEN },
327 	{ "tcpflags",		TOK_TCPFLAGS },
328 	{ "tcpflgs",		TOK_TCPFLAGS },
329 	{ "tcpoptions",		TOK_TCPOPTS },
330 	{ "tcpopts",		TOK_TCPOPTS },
331 	{ "tcpseq",		TOK_TCPSEQ },
332 	{ "tcpack",		TOK_TCPACK },
333 	{ "tcpwin",		TOK_TCPWIN },
334 	{ "icmptype",		TOK_ICMPTYPES },
335 	{ "icmptypes",		TOK_ICMPTYPES },
336 	{ "dst-ip",		TOK_DSTIP },
337 	{ "src-ip",		TOK_SRCIP },
338 	{ "dst-port",		TOK_DSTPORT },
339 	{ "src-port",		TOK_SRCPORT },
340 	{ "proto",		TOK_PROTO },
341 	{ "MAC",		TOK_MAC },
342 	{ "mac",		TOK_MAC },
343 	{ "mac-type",		TOK_MACTYPE },
344 	{ "verrevpath",		TOK_VERREVPATH },
345 	{ "versrcreach",	TOK_VERSRCREACH },
346 	{ "antispoof",		TOK_ANTISPOOF },
347 	{ "ipsec",		TOK_IPSEC },
348 	{ "icmp6type",		TOK_ICMP6TYPES },
349 	{ "icmp6types",		TOK_ICMP6TYPES },
350 	{ "ext6hdr",		TOK_EXT6HDR},
351 	{ "flow-id",		TOK_FLOWID},
352 	{ "ipv6",		TOK_IPV6},
353 	{ "ip6",		TOK_IPV6},
354 	{ "ipv4",		TOK_IPV4},
355 	{ "ip4",		TOK_IPV4},
356 	{ "dst-ipv6",		TOK_DSTIP6},
357 	{ "dst-ip6",		TOK_DSTIP6},
358 	{ "src-ipv6",		TOK_SRCIP6},
359 	{ "src-ip6",		TOK_SRCIP6},
360 	{ "lookup",		TOK_LOOKUP},
361 	{ "flow",		TOK_FLOW},
362 	{ "//",			TOK_COMMENT },
363 
364 	{ "not",		TOK_NOT },		/* pseudo option */
365 	{ "!", /* escape ? */	TOK_NOT },		/* pseudo option */
366 	{ "or",			TOK_OR },		/* pseudo option */
367 	{ "|", /* escape */	TOK_OR },		/* pseudo option */
368 	{ "{",			TOK_STARTBRACE },	/* pseudo option */
369 	{ "(",			TOK_STARTBRACE },	/* pseudo option */
370 	{ "}",			TOK_ENDBRACE },		/* pseudo option */
371 	{ ")",			TOK_ENDBRACE },		/* pseudo option */
372 	{ NULL, 0 }	/* terminator */
373 };
374 
375 void bprint_uint_arg(struct buf_pr *bp, const char *str, uint32_t arg);
376 static int ipfw_get_config(struct cmdline_opts *co, struct format_opts *fo,
377     ipfw_cfg_lheader **pcfg, size_t *psize);
378 static int ipfw_show_config(struct cmdline_opts *co, struct format_opts *fo,
379     ipfw_cfg_lheader *cfg, size_t sz, int ac, char **av);
380 static void ipfw_list_tifaces(void);
381 
382 struct tidx;
383 static uint16_t pack_object(struct tidx *tstate, char *name, int otype);
384 static uint16_t pack_table(struct tidx *tstate, char *name);
385 
386 static char *table_search_ctlv(ipfw_obj_ctlv *ctlv, uint16_t idx);
387 static void object_sort_ctlv(ipfw_obj_ctlv *ctlv);
388 static char *object_search_ctlv(ipfw_obj_ctlv *ctlv, uint16_t idx,
389     uint16_t type);
390 
391 /*
392  * Simple string buffer API.
393  * Used to simplify buffer passing between function and for
394  * transparent overrun handling.
395  */
396 
397 /*
398  * Allocates new buffer of given size @sz.
399  *
400  * Returns 0 on success.
401  */
402 int
403 bp_alloc(struct buf_pr *b, size_t size)
404 {
405 	memset(b, 0, sizeof(struct buf_pr));
406 
407 	if ((b->buf = calloc(1, size)) == NULL)
408 		return (ENOMEM);
409 
410 	b->ptr = b->buf;
411 	b->size = size;
412 	b->avail = b->size;
413 
414 	return (0);
415 }
416 
417 void
418 bp_free(struct buf_pr *b)
419 {
420 
421 	free(b->buf);
422 }
423 
424 /*
425  * Flushes buffer so new writer start from beginning.
426  */
427 void
428 bp_flush(struct buf_pr *b)
429 {
430 
431 	b->ptr = b->buf;
432 	b->avail = b->size;
433 	b->buf[0] = '\0';
434 }
435 
436 /*
437  * Print message specified by @format and args.
438  * Automatically manage buffer space and transparently handle
439  * buffer overruns.
440  *
441  * Returns number of bytes that should have been printed.
442  */
443 int
444 bprintf(struct buf_pr *b, char *format, ...)
445 {
446 	va_list args;
447 	int i;
448 
449 	va_start(args, format);
450 
451 	i = vsnprintf(b->ptr, b->avail, format, args);
452 	va_end(args);
453 
454 	if (i > b->avail || i < 0) {
455 		/* Overflow or print error */
456 		b->avail = 0;
457 	} else {
458 		b->ptr += i;
459 		b->avail -= i;
460 	}
461 
462 	b->needed += i;
463 
464 	return (i);
465 }
466 
467 /*
468  * Special values printer for tablearg-aware opcodes.
469  */
470 void
471 bprint_uint_arg(struct buf_pr *bp, const char *str, uint32_t arg)
472 {
473 
474 	if (str != NULL)
475 		bprintf(bp, "%s", str);
476 	if (arg == IP_FW_TARG)
477 		bprintf(bp, "tablearg");
478 	else
479 		bprintf(bp, "%u", arg);
480 }
481 
482 /*
483  * Helper routine to print a possibly unaligned uint64_t on
484  * various platform. If width > 0, print the value with
485  * the desired width, followed by a space;
486  * otherwise, return the required width.
487  */
488 int
489 pr_u64(struct buf_pr *b, uint64_t *pd, int width)
490 {
491 #ifdef TCC
492 #define U64_FMT "I64"
493 #else
494 #define U64_FMT "llu"
495 #endif
496 	uint64_t u;
497 	unsigned long long d;
498 
499 	bcopy (pd, &u, sizeof(u));
500 	d = u;
501 	return (width > 0) ?
502 		bprintf(b, "%*" U64_FMT " ", width, d) :
503 		snprintf(NULL, 0, "%" U64_FMT, d) ;
504 #undef U64_FMT
505 }
506 
507 
508 void *
509 safe_calloc(size_t number, size_t size)
510 {
511 	void *ret = calloc(number, size);
512 
513 	if (ret == NULL)
514 		err(EX_OSERR, "calloc");
515 	return ret;
516 }
517 
518 void *
519 safe_realloc(void *ptr, size_t size)
520 {
521 	void *ret = realloc(ptr, size);
522 
523 	if (ret == NULL)
524 		err(EX_OSERR, "realloc");
525 	return ret;
526 }
527 
528 /*
529  * Compare things like interface or table names.
530  */
531 int
532 stringnum_cmp(const char *a, const char *b)
533 {
534 	int la, lb;
535 
536 	la = strlen(a);
537 	lb = strlen(b);
538 
539 	if (la > lb)
540 		return (1);
541 	else if (la < lb)
542 		return (-01);
543 
544 	return (strcmp(a, b));
545 }
546 
547 
548 /*
549  * conditionally runs the command.
550  * Selected options or negative -> getsockopt
551  */
552 int
553 do_cmd(int optname, void *optval, uintptr_t optlen)
554 {
555 	int i;
556 
557 	if (co.test_only)
558 		return 0;
559 
560 	if (ipfw_socket == -1)
561 		ipfw_socket = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
562 	if (ipfw_socket < 0)
563 		err(EX_UNAVAILABLE, "socket");
564 
565 	if (optname == IP_FW_GET || optname == IP_DUMMYNET_GET ||
566 	    optname == IP_FW_ADD || optname == IP_FW3 ||
567 	    optname == IP_FW_NAT_GET_CONFIG ||
568 	    optname < 0 ||
569 	    optname == IP_FW_NAT_GET_LOG) {
570 		if (optname < 0)
571 			optname = -optname;
572 		i = getsockopt(ipfw_socket, IPPROTO_IP, optname, optval,
573 			(socklen_t *)optlen);
574 	} else {
575 		i = setsockopt(ipfw_socket, IPPROTO_IP, optname, optval, optlen);
576 	}
577 	return i;
578 }
579 
580 /*
581  * do_set3 - pass ipfw control cmd to kernel
582  * @optname: option name
583  * @optval: pointer to option data
584  * @optlen: option length
585  *
586  * Assumes op3 header is already embedded.
587  * Calls setsockopt() with IP_FW3 as kernel-visible opcode.
588  * Returns 0 on success or errno otherwise.
589  */
590 int
591 do_set3(int optname, ip_fw3_opheader *op3, uintptr_t optlen)
592 {
593 
594 	if (co.test_only)
595 		return (0);
596 
597 	if (ipfw_socket == -1)
598 		ipfw_socket = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
599 	if (ipfw_socket < 0)
600 		err(EX_UNAVAILABLE, "socket");
601 
602 	op3->opcode = optname;
603 
604 	return (setsockopt(ipfw_socket, IPPROTO_IP, IP_FW3, op3, optlen));
605 }
606 
607 /*
608  * do_get3 - pass ipfw control cmd to kernel
609  * @optname: option name
610  * @optval: pointer to option data
611  * @optlen: pointer to option length
612  *
613  * Assumes op3 header is already embedded.
614  * Calls getsockopt() with IP_FW3 as kernel-visible opcode.
615  * Returns 0 on success or errno otherwise.
616  */
617 int
618 do_get3(int optname, ip_fw3_opheader *op3, size_t *optlen)
619 {
620 	int error;
621 
622 	if (co.test_only)
623 		return (0);
624 
625 	if (ipfw_socket == -1)
626 		ipfw_socket = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
627 	if (ipfw_socket < 0)
628 		err(EX_UNAVAILABLE, "socket");
629 
630 	op3->opcode = optname;
631 
632 	error = getsockopt(ipfw_socket, IPPROTO_IP, IP_FW3, op3,
633 	    (socklen_t *)optlen);
634 
635 	return (error);
636 }
637 
638 /**
639  * match_token takes a table and a string, returns the value associated
640  * with the string (-1 in case of failure).
641  */
642 int
643 match_token(struct _s_x *table, const char *string)
644 {
645 	struct _s_x *pt;
646 	uint i = strlen(string);
647 
648 	for (pt = table ; i && pt->s != NULL ; pt++)
649 		if (strlen(pt->s) == i && !bcmp(string, pt->s, i))
650 			return pt->x;
651 	return (-1);
652 }
653 
654 /**
655  * match_token_relaxed takes a table and a string, returns the value associated
656  * with the string for the best match.
657  *
658  * Returns:
659  * value from @table for matched records
660  * -1 for non-matched records
661  * -2 if more than one records match @string.
662  */
663 int
664 match_token_relaxed(struct _s_x *table, const char *string)
665 {
666 	struct _s_x *pt, *m;
667 	int i, c;
668 
669 	i = strlen(string);
670 	c = 0;
671 
672 	for (pt = table ; i != 0 && pt->s != NULL ; pt++) {
673 		if (strncmp(pt->s, string, i) != 0)
674 			continue;
675 		m = pt;
676 		c++;
677 	}
678 
679 	if (c == 1)
680 		return (m->x);
681 
682 	return (c > 0 ? -2: -1);
683 }
684 
685 int
686 get_token(struct _s_x *table, const char *string, const char *errbase)
687 {
688 	int tcmd;
689 
690 	if ((tcmd = match_token_relaxed(table, string)) < 0)
691 		errx(EX_USAGE, "%s %s %s",
692 		    (tcmd == 0) ? "invalid" : "ambiguous", errbase, string);
693 
694 	return (tcmd);
695 }
696 
697 /**
698  * match_value takes a table and a value, returns the string associated
699  * with the value (NULL in case of failure).
700  */
701 char const *
702 match_value(struct _s_x *p, int value)
703 {
704 	for (; p->s != NULL; p++)
705 		if (p->x == value)
706 			return p->s;
707 	return NULL;
708 }
709 
710 size_t
711 concat_tokens(char *buf, size_t bufsize, struct _s_x *table, char *delimiter)
712 {
713 	struct _s_x *pt;
714 	int l;
715 	size_t sz;
716 
717 	for (sz = 0, pt = table ; pt->s != NULL; pt++) {
718 		l = snprintf(buf + sz, bufsize - sz, "%s%s",
719 		    (sz == 0) ? "" : delimiter, pt->s);
720 		sz += l;
721 		bufsize += l;
722 		if (sz > bufsize)
723 			return (bufsize);
724 	}
725 
726 	return (sz);
727 }
728 
729 /*
730  * helper function to process a set of flags and set bits in the
731  * appropriate masks.
732  */
733 int
734 fill_flags(struct _s_x *flags, char *p, char **e, uint32_t *set,
735     uint32_t *clear)
736 {
737 	char *q;	/* points to the separator */
738 	int val;
739 	uint32_t *which;	/* mask we are working on */
740 
741 	while (p && *p) {
742 		if (*p == '!') {
743 			p++;
744 			which = clear;
745 		} else
746 			which = set;
747 		q = strchr(p, ',');
748 		if (q)
749 			*q++ = '\0';
750 		val = match_token(flags, p);
751 		if (val <= 0) {
752 			if (e != NULL)
753 				*e = p;
754 			return (-1);
755 		}
756 		*which |= (uint32_t)val;
757 		p = q;
758 	}
759 	return (0);
760 }
761 
762 void
763 print_flags_buffer(char *buf, size_t sz, struct _s_x *list, uint32_t set)
764 {
765 	char const *comma = "";
766 	int i, l;
767 
768 	for (i = 0; list[i].x != 0; i++) {
769 		if ((set & list[i].x) == 0)
770 			continue;
771 
772 		set &= ~list[i].x;
773 		l = snprintf(buf, sz, "%s%s", comma, list[i].s);
774 		if (l >= sz)
775 			return;
776 		comma = ",";
777 		buf += l;
778 		sz -=l;
779 	}
780 }
781 
782 /*
783  * _substrcmp takes two strings and returns 1 if they do not match,
784  * and 0 if they match exactly or the first string is a sub-string
785  * of the second.  A warning is printed to stderr in the case that the
786  * first string is a sub-string of the second.
787  *
788  * This function will be removed in the future through the usual
789  * deprecation process.
790  */
791 int
792 _substrcmp(const char *str1, const char* str2)
793 {
794 
795 	if (strncmp(str1, str2, strlen(str1)) != 0)
796 		return 1;
797 
798 	if (strlen(str1) != strlen(str2))
799 		warnx("DEPRECATED: '%s' matched '%s' as a sub-string",
800 		    str1, str2);
801 	return 0;
802 }
803 
804 /*
805  * _substrcmp2 takes three strings and returns 1 if the first two do not match,
806  * and 0 if they match exactly or the second string is a sub-string
807  * of the first.  A warning is printed to stderr in the case that the
808  * first string does not match the third.
809  *
810  * This function exists to warn about the bizarre construction
811  * strncmp(str, "by", 2) which is used to allow people to use a shortcut
812  * for "bytes".  The problem is that in addition to accepting "by",
813  * "byt", "byte", and "bytes", it also excepts "by_rabid_dogs" and any
814  * other string beginning with "by".
815  *
816  * This function will be removed in the future through the usual
817  * deprecation process.
818  */
819 int
820 _substrcmp2(const char *str1, const char* str2, const char* str3)
821 {
822 
823 	if (strncmp(str1, str2, strlen(str2)) != 0)
824 		return 1;
825 
826 	if (strcmp(str1, str3) != 0)
827 		warnx("DEPRECATED: '%s' matched '%s'",
828 		    str1, str3);
829 	return 0;
830 }
831 
832 /*
833  * prints one port, symbolic or numeric
834  */
835 static void
836 print_port(struct buf_pr *bp, int proto, uint16_t port)
837 {
838 
839 	if (proto == IPPROTO_ETHERTYPE) {
840 		char const *s;
841 
842 		if (co.do_resolv && (s = match_value(ether_types, port)) )
843 			bprintf(bp, "%s", s);
844 		else
845 			bprintf(bp, "0x%04x", port);
846 	} else {
847 		struct servent *se = NULL;
848 		if (co.do_resolv) {
849 			struct protoent *pe = getprotobynumber(proto);
850 
851 			se = getservbyport(htons(port), pe ? pe->p_name : NULL);
852 		}
853 		if (se)
854 			bprintf(bp, "%s", se->s_name);
855 		else
856 			bprintf(bp, "%d", port);
857 	}
858 }
859 
860 static struct _s_x _port_name[] = {
861 	{"dst-port",	O_IP_DSTPORT},
862 	{"src-port",	O_IP_SRCPORT},
863 	{"ipid",	O_IPID},
864 	{"iplen",	O_IPLEN},
865 	{"ipttl",	O_IPTTL},
866 	{"mac-type",	O_MAC_TYPE},
867 	{"tcpdatalen",	O_TCPDATALEN},
868 	{"tcpwin",	O_TCPWIN},
869 	{"tagged",	O_TAGGED},
870 	{NULL,		0}
871 };
872 
873 /*
874  * Print the values in a list 16-bit items of the types above.
875  * XXX todo: add support for mask.
876  */
877 static void
878 print_newports(struct buf_pr *bp, ipfw_insn_u16 *cmd, int proto, int opcode)
879 {
880 	uint16_t *p = cmd->ports;
881 	int i;
882 	char const *sep;
883 
884 	if (opcode != 0) {
885 		sep = match_value(_port_name, opcode);
886 		if (sep == NULL)
887 			sep = "???";
888 		bprintf(bp, " %s", sep);
889 	}
890 	sep = " ";
891 	for (i = F_LEN((ipfw_insn *)cmd) - 1; i > 0; i--, p += 2) {
892 		bprintf(bp, "%s", sep);
893 		print_port(bp, proto, p[0]);
894 		if (p[0] != p[1]) {
895 			bprintf(bp, "-");
896 			print_port(bp, proto, p[1]);
897 		}
898 		sep = ",";
899 	}
900 }
901 
902 /*
903  * Like strtol, but also translates service names into port numbers
904  * for some protocols.
905  * In particular:
906  *	proto == -1 disables the protocol check;
907  *	proto == IPPROTO_ETHERTYPE looks up an internal table
908  *	proto == <some value in /etc/protocols> matches the values there.
909  * Returns *end == s in case the parameter is not found.
910  */
911 static int
912 strtoport(char *s, char **end, int base, int proto)
913 {
914 	char *p, *buf;
915 	char *s1;
916 	int i;
917 
918 	*end = s;		/* default - not found */
919 	if (*s == '\0')
920 		return 0;	/* not found */
921 
922 	if (isdigit(*s))
923 		return strtol(s, end, base);
924 
925 	/*
926 	 * find separator. '\\' escapes the next char.
927 	 */
928 	for (s1 = s; *s1 && (isalnum(*s1) || *s1 == '\\') ; s1++)
929 		if (*s1 == '\\' && s1[1] != '\0')
930 			s1++;
931 
932 	buf = safe_calloc(s1 - s + 1, 1);
933 
934 	/*
935 	 * copy into a buffer skipping backslashes
936 	 */
937 	for (p = s, i = 0; p != s1 ; p++)
938 		if (*p != '\\')
939 			buf[i++] = *p;
940 	buf[i++] = '\0';
941 
942 	if (proto == IPPROTO_ETHERTYPE) {
943 		i = match_token(ether_types, buf);
944 		free(buf);
945 		if (i != -1) {	/* found */
946 			*end = s1;
947 			return i;
948 		}
949 	} else {
950 		struct protoent *pe = NULL;
951 		struct servent *se;
952 
953 		if (proto != 0)
954 			pe = getprotobynumber(proto);
955 		setservent(1);
956 		se = getservbyname(buf, pe ? pe->p_name : NULL);
957 		free(buf);
958 		if (se != NULL) {
959 			*end = s1;
960 			return ntohs(se->s_port);
961 		}
962 	}
963 	return 0;	/* not found */
964 }
965 
966 /*
967  * Fill the body of the command with the list of port ranges.
968  */
969 static int
970 fill_newports(ipfw_insn_u16 *cmd, char *av, int proto, int cblen)
971 {
972 	uint16_t a, b, *p = cmd->ports;
973 	int i = 0;
974 	char *s = av;
975 
976 	while (*s) {
977 		a = strtoport(av, &s, 0, proto);
978 		if (s == av) 			/* empty or invalid argument */
979 			return (0);
980 
981 		CHECK_LENGTH(cblen, i + 2);
982 
983 		switch (*s) {
984 		case '-':			/* a range */
985 			av = s + 1;
986 			b = strtoport(av, &s, 0, proto);
987 			/* Reject expressions like '1-abc' or '1-2-3'. */
988 			if (s == av || (*s != ',' && *s != '\0'))
989 				return (0);
990 			p[0] = a;
991 			p[1] = b;
992 			break;
993 		case ',':			/* comma separated list */
994 		case '\0':
995 			p[0] = p[1] = a;
996 			break;
997 		default:
998 			warnx("port list: invalid separator <%c> in <%s>",
999 				*s, av);
1000 			return (0);
1001 		}
1002 
1003 		i++;
1004 		p += 2;
1005 		av = s + 1;
1006 	}
1007 	if (i > 0) {
1008 		if (i + 1 > F_LEN_MASK)
1009 			errx(EX_DATAERR, "too many ports/ranges\n");
1010 		cmd->o.len |= i + 1;	/* leave F_NOT and F_OR untouched */
1011 	}
1012 	return (i);
1013 }
1014 
1015 /*
1016  * Fill the body of the command with the list of DiffServ codepoints.
1017  */
1018 static void
1019 fill_dscp(ipfw_insn *cmd, char *av, int cblen)
1020 {
1021 	uint32_t *low, *high;
1022 	char *s = av, *a;
1023 	int code;
1024 
1025 	cmd->opcode = O_DSCP;
1026 	cmd->len |= F_INSN_SIZE(ipfw_insn_u32) + 1;
1027 
1028 	CHECK_CMDLEN;
1029 
1030 	low = (uint32_t *)(cmd + 1);
1031 	high = low + 1;
1032 
1033 	*low = 0;
1034 	*high = 0;
1035 
1036 	while (s != NULL) {
1037 		a = strchr(s, ',');
1038 
1039 		if (a != NULL)
1040 			*a++ = '\0';
1041 
1042 		if (isalpha(*s)) {
1043 			if ((code = match_token(f_ipdscp, s)) == -1)
1044 				errx(EX_DATAERR, "Unknown DSCP code");
1045 		} else {
1046 			code = strtoul(s, NULL, 10);
1047 			if (code < 0 || code > 63)
1048 				errx(EX_DATAERR, "Invalid DSCP value");
1049 		}
1050 
1051 		if (code >= 32)
1052 			*high |= 1 << (code - 32);
1053 		else
1054 			*low |= 1 << code;
1055 
1056 		s = a;
1057 	}
1058 }
1059 
1060 static struct _s_x icmpcodes[] = {
1061       { "net",			ICMP_UNREACH_NET },
1062       { "host",			ICMP_UNREACH_HOST },
1063       { "protocol",		ICMP_UNREACH_PROTOCOL },
1064       { "port",			ICMP_UNREACH_PORT },
1065       { "needfrag",		ICMP_UNREACH_NEEDFRAG },
1066       { "srcfail",		ICMP_UNREACH_SRCFAIL },
1067       { "net-unknown",		ICMP_UNREACH_NET_UNKNOWN },
1068       { "host-unknown",		ICMP_UNREACH_HOST_UNKNOWN },
1069       { "isolated",		ICMP_UNREACH_ISOLATED },
1070       { "net-prohib",		ICMP_UNREACH_NET_PROHIB },
1071       { "host-prohib",		ICMP_UNREACH_HOST_PROHIB },
1072       { "tosnet",		ICMP_UNREACH_TOSNET },
1073       { "toshost",		ICMP_UNREACH_TOSHOST },
1074       { "filter-prohib",	ICMP_UNREACH_FILTER_PROHIB },
1075       { "host-precedence",	ICMP_UNREACH_HOST_PRECEDENCE },
1076       { "precedence-cutoff",	ICMP_UNREACH_PRECEDENCE_CUTOFF },
1077       { NULL, 0 }
1078 };
1079 
1080 static void
1081 fill_reject_code(u_short *codep, char *str)
1082 {
1083 	int val;
1084 	char *s;
1085 
1086 	val = strtoul(str, &s, 0);
1087 	if (s == str || *s != '\0' || val >= 0x100)
1088 		val = match_token(icmpcodes, str);
1089 	if (val < 0)
1090 		errx(EX_DATAERR, "unknown ICMP unreachable code ``%s''", str);
1091 	*codep = val;
1092 	return;
1093 }
1094 
1095 static void
1096 print_reject_code(struct buf_pr *bp, uint16_t code)
1097 {
1098 	char const *s;
1099 
1100 	if ((s = match_value(icmpcodes, code)) != NULL)
1101 		bprintf(bp, "unreach %s", s);
1102 	else
1103 		bprintf(bp, "unreach %u", code);
1104 }
1105 
1106 /*
1107  * Returns the number of bits set (from left) in a contiguous bitmask,
1108  * or -1 if the mask is not contiguous.
1109  * XXX this needs a proper fix.
1110  * This effectively works on masks in big-endian (network) format.
1111  * when compiled on little endian architectures.
1112  *
1113  * First bit is bit 7 of the first byte -- note, for MAC addresses,
1114  * the first bit on the wire is bit 0 of the first byte.
1115  * len is the max length in bits.
1116  */
1117 int
1118 contigmask(uint8_t *p, int len)
1119 {
1120 	int i, n;
1121 
1122 	for (i=0; i<len ; i++)
1123 		if ( (p[i/8] & (1 << (7 - (i%8)))) == 0) /* first bit unset */
1124 			break;
1125 	for (n=i+1; n < len; n++)
1126 		if ( (p[n/8] & (1 << (7 - (n%8)))) != 0)
1127 			return -1; /* mask not contiguous */
1128 	return i;
1129 }
1130 
1131 /*
1132  * print flags set/clear in the two bitmasks passed as parameters.
1133  * There is a specialized check for f_tcpflags.
1134  */
1135 static void
1136 print_flags(struct buf_pr *bp, char const *name, ipfw_insn *cmd,
1137     struct _s_x *list)
1138 {
1139 	char const *comma = "";
1140 	int i;
1141 	uint8_t set = cmd->arg1 & 0xff;
1142 	uint8_t clear = (cmd->arg1 >> 8) & 0xff;
1143 
1144 	if (list == f_tcpflags && set == TH_SYN && clear == TH_ACK) {
1145 		bprintf(bp, " setup");
1146 		return;
1147 	}
1148 
1149 	bprintf(bp, " %s ", name);
1150 	for (i=0; list[i].x != 0; i++) {
1151 		if (set & list[i].x) {
1152 			set &= ~list[i].x;
1153 			bprintf(bp, "%s%s", comma, list[i].s);
1154 			comma = ",";
1155 		}
1156 		if (clear & list[i].x) {
1157 			clear &= ~list[i].x;
1158 			bprintf(bp, "%s!%s", comma, list[i].s);
1159 			comma = ",";
1160 		}
1161 	}
1162 }
1163 
1164 
1165 /*
1166  * Print the ip address contained in a command.
1167  */
1168 static void
1169 print_ip(struct buf_pr *bp, struct format_opts *fo, ipfw_insn_ip *cmd,
1170     char const *s)
1171 {
1172 	struct hostent *he = NULL;
1173 	struct in_addr *ia;
1174 	uint32_t len = F_LEN((ipfw_insn *)cmd);
1175 	uint32_t *a = ((ipfw_insn_u32 *)cmd)->d;
1176 	char *t;
1177 
1178 	if (cmd->o.opcode == O_IP_DST_LOOKUP && len > F_INSN_SIZE(ipfw_insn_u32)) {
1179 		uint32_t d = a[1];
1180 		const char *arg = "<invalid>";
1181 
1182 		if (d < sizeof(lookup_key)/sizeof(lookup_key[0]))
1183 			arg = match_value(rule_options, lookup_key[d]);
1184 		t = table_search_ctlv(fo->tstate, ((ipfw_insn *)cmd)->arg1);
1185 		bprintf(bp, "%s lookup %s %s", cmd->o.len & F_NOT ? " not": "",
1186 			arg, t);
1187 		return;
1188 	}
1189 	bprintf(bp, "%s%s ", cmd->o.len & F_NOT ? " not": "", s);
1190 
1191 	if (cmd->o.opcode == O_IP_SRC_ME || cmd->o.opcode == O_IP_DST_ME) {
1192 		bprintf(bp, "me");
1193 		return;
1194 	}
1195 	if (cmd->o.opcode == O_IP_SRC_LOOKUP ||
1196 	    cmd->o.opcode == O_IP_DST_LOOKUP) {
1197 		t = table_search_ctlv(fo->tstate, ((ipfw_insn *)cmd)->arg1);
1198 		bprintf(bp, "table(%s", t);
1199 		if (len == F_INSN_SIZE(ipfw_insn_u32))
1200 			bprintf(bp, ",%u", *a);
1201 		bprintf(bp, ")");
1202 		return;
1203 	}
1204 	if (cmd->o.opcode == O_IP_SRC_SET || cmd->o.opcode == O_IP_DST_SET) {
1205 		uint32_t x, *map = (uint32_t *)&(cmd->mask);
1206 		int i, j;
1207 		char comma = '{';
1208 
1209 		x = cmd->o.arg1 - 1;
1210 		x = htonl( ~x );
1211 		cmd->addr.s_addr = htonl(cmd->addr.s_addr);
1212 		bprintf(bp, "%s/%d", inet_ntoa(cmd->addr),
1213 			contigmask((uint8_t *)&x, 32));
1214 		x = cmd->addr.s_addr = htonl(cmd->addr.s_addr);
1215 		x &= 0xff; /* base */
1216 		/*
1217 		 * Print bits and ranges.
1218 		 * Locate first bit set (i), then locate first bit unset (j).
1219 		 * If we have 3+ consecutive bits set, then print them as a
1220 		 * range, otherwise only print the initial bit and rescan.
1221 		 */
1222 		for (i=0; i < cmd->o.arg1; i++)
1223 			if (map[i/32] & (1<<(i & 31))) {
1224 				for (j=i+1; j < cmd->o.arg1; j++)
1225 					if (!(map[ j/32] & (1<<(j & 31))))
1226 						break;
1227 				bprintf(bp, "%c%d", comma, i+x);
1228 				if (j>i+2) { /* range has at least 3 elements */
1229 					bprintf(bp, "-%d", j-1+x);
1230 					i = j-1;
1231 				}
1232 				comma = ',';
1233 			}
1234 		bprintf(bp, "}");
1235 		return;
1236 	}
1237 	/*
1238 	 * len == 2 indicates a single IP, whereas lists of 1 or more
1239 	 * addr/mask pairs have len = (2n+1). We convert len to n so we
1240 	 * use that to count the number of entries.
1241 	 */
1242     for (len = len / 2; len > 0; len--, a += 2) {
1243 	int mb =	/* mask length */
1244 	    (cmd->o.opcode == O_IP_SRC || cmd->o.opcode == O_IP_DST) ?
1245 		32 : contigmask((uint8_t *)&(a[1]), 32);
1246 	if (mb == 32 && co.do_resolv)
1247 		he = gethostbyaddr((char *)&(a[0]), sizeof(u_long), AF_INET);
1248 	if (he != NULL)		/* resolved to name */
1249 		bprintf(bp, "%s", he->h_name);
1250 	else if (mb == 0)	/* any */
1251 		bprintf(bp, "any");
1252 	else {		/* numeric IP followed by some kind of mask */
1253 		ia = (struct in_addr *)&a[0];
1254 		bprintf(bp, "%s", inet_ntoa(*ia));
1255 		if (mb < 0) {
1256 			ia = (struct in_addr *)&a[1];
1257 			bprintf(bp, ":%s", inet_ntoa(*ia));
1258 		} else if (mb < 32)
1259 			bprintf(bp, "/%d", mb);
1260 	}
1261 	if (len > 1)
1262 		bprintf(bp, ",");
1263     }
1264 }
1265 
1266 /*
1267  * prints a MAC address/mask pair
1268  */
1269 static void
1270 print_mac(struct buf_pr *bp, uint8_t *addr, uint8_t *mask)
1271 {
1272 	int l = contigmask(mask, 48);
1273 
1274 	if (l == 0)
1275 		bprintf(bp, " any");
1276 	else {
1277 		bprintf(bp, " %02x:%02x:%02x:%02x:%02x:%02x",
1278 		    addr[0], addr[1], addr[2], addr[3], addr[4], addr[5]);
1279 		if (l == -1)
1280 			bprintf(bp, "&%02x:%02x:%02x:%02x:%02x:%02x",
1281 			    mask[0], mask[1], mask[2],
1282 			    mask[3], mask[4], mask[5]);
1283 		else if (l < 48)
1284 			bprintf(bp, "/%d", l);
1285 	}
1286 }
1287 
1288 static void
1289 fill_icmptypes(ipfw_insn_u32 *cmd, char *av)
1290 {
1291 	uint8_t type;
1292 
1293 	cmd->d[0] = 0;
1294 	while (*av) {
1295 		if (*av == ',')
1296 			av++;
1297 
1298 		type = strtoul(av, &av, 0);
1299 
1300 		if (*av != ',' && *av != '\0')
1301 			errx(EX_DATAERR, "invalid ICMP type");
1302 
1303 		if (type > 31)
1304 			errx(EX_DATAERR, "ICMP type out of range");
1305 
1306 		cmd->d[0] |= 1 << type;
1307 	}
1308 	cmd->o.opcode = O_ICMPTYPE;
1309 	cmd->o.len |= F_INSN_SIZE(ipfw_insn_u32);
1310 }
1311 
1312 static void
1313 print_icmptypes(struct buf_pr *bp, ipfw_insn_u32 *cmd)
1314 {
1315 	int i;
1316 	char sep= ' ';
1317 
1318 	bprintf(bp, " icmptypes");
1319 	for (i = 0; i < 32; i++) {
1320 		if ( (cmd->d[0] & (1 << (i))) == 0)
1321 			continue;
1322 		bprintf(bp, "%c%d", sep, i);
1323 		sep = ',';
1324 	}
1325 }
1326 
1327 static void
1328 print_dscp(struct buf_pr *bp, ipfw_insn_u32 *cmd)
1329 {
1330 	int i = 0;
1331 	uint32_t *v;
1332 	char sep= ' ';
1333 	const char *code;
1334 
1335 	bprintf(bp, " dscp");
1336 	v = cmd->d;
1337 	while (i < 64) {
1338 		if (*v & (1 << i)) {
1339 			if ((code = match_value(f_ipdscp, i)) != NULL)
1340 				bprintf(bp, "%c%s", sep, code);
1341 			else
1342 				bprintf(bp, "%c%d", sep, i);
1343 			sep = ',';
1344 		}
1345 
1346 		if ((++i % 32) == 0)
1347 			v++;
1348 	}
1349 }
1350 
1351 /*
1352  * show_ipfw() prints the body of an ipfw rule.
1353  * Because the standard rule has at least proto src_ip dst_ip, we use
1354  * a helper function to produce these entries if not provided explicitly.
1355  * The first argument is the list of fields we have, the second is
1356  * the list of fields we want to be printed.
1357  *
1358  * Special cases if we have provided a MAC header:
1359  *   + if the rule does not contain IP addresses/ports, do not print them;
1360  *   + if the rule does not contain an IP proto, print "all" instead of "ip";
1361  *
1362  * Once we have 'have_options', IP header fields are printed as options.
1363  */
1364 #define	HAVE_PROTO	0x0001
1365 #define	HAVE_SRCIP	0x0002
1366 #define	HAVE_DSTIP	0x0004
1367 #define	HAVE_PROTO4	0x0008
1368 #define	HAVE_PROTO6	0x0010
1369 #define	HAVE_IP		0x0100
1370 #define	HAVE_OPTIONS	0x8000
1371 
1372 static void
1373 show_prerequisites(struct buf_pr *bp, int *flags, int want, int cmd)
1374 {
1375 	(void)cmd;	/* UNUSED */
1376 	if (co.comment_only)
1377 		return;
1378 	if ( (*flags & HAVE_IP) == HAVE_IP)
1379 		*flags |= HAVE_OPTIONS;
1380 
1381 	if ( !(*flags & HAVE_OPTIONS)) {
1382 		if ( !(*flags & HAVE_PROTO) && (want & HAVE_PROTO)) {
1383 			if ( (*flags & HAVE_PROTO4))
1384 				bprintf(bp, " ip4");
1385 			else if ( (*flags & HAVE_PROTO6))
1386 				bprintf(bp, " ip6");
1387 			else
1388 				bprintf(bp, " ip");
1389 		}
1390 		if ( !(*flags & HAVE_SRCIP) && (want & HAVE_SRCIP))
1391 			bprintf(bp, " from any");
1392 		if ( !(*flags & HAVE_DSTIP) && (want & HAVE_DSTIP))
1393 			bprintf(bp, " to any");
1394 	}
1395 	*flags |= want;
1396 }
1397 
1398 static void
1399 show_static_rule(struct cmdline_opts *co, struct format_opts *fo,
1400     struct buf_pr *bp, struct ip_fw_rule *rule, struct ip_fw_bcounter *cntr)
1401 {
1402 	static int twidth = 0;
1403 	int l;
1404 	ipfw_insn *cmd, *has_eaction = NULL, *tagptr = NULL;
1405 	const char *comment = NULL;	/* ptr to comment if we have one */
1406 	int proto = 0;		/* default */
1407 	int flags = 0;	/* prerequisites */
1408 	ipfw_insn_log *logptr = NULL; /* set if we find an O_LOG */
1409 	ipfw_insn_altq *altqptr = NULL; /* set if we find an O_ALTQ */
1410 	int or_block = 0;	/* we are in an or block */
1411 	uint32_t uval;
1412 
1413 	if ((fo->set_mask & (1 << rule->set)) == 0) {
1414 		/* disabled mask */
1415 		if (!co->show_sets)
1416 			return;
1417 		else
1418 			bprintf(bp, "# DISABLED ");
1419 	}
1420 	bprintf(bp, "%05u ", rule->rulenum);
1421 
1422 	/* Print counters if enabled */
1423 	if (fo->pcwidth > 0 || fo->bcwidth > 0) {
1424 		pr_u64(bp, &cntr->pcnt, fo->pcwidth);
1425 		pr_u64(bp, &cntr->bcnt, fo->bcwidth);
1426 	}
1427 
1428 	if (co->do_time == 2)
1429 		bprintf(bp, "%10u ", cntr->timestamp);
1430 	else if (co->do_time == 1) {
1431 		char timestr[30];
1432 		time_t t = (time_t)0;
1433 
1434 		if (twidth == 0) {
1435 			strcpy(timestr, ctime(&t));
1436 			*strchr(timestr, '\n') = '\0';
1437 			twidth = strlen(timestr);
1438 		}
1439 		if (cntr->timestamp > 0) {
1440 			t = _long_to_time(cntr->timestamp);
1441 
1442 			strcpy(timestr, ctime(&t));
1443 			*strchr(timestr, '\n') = '\0';
1444 			bprintf(bp, "%s ", timestr);
1445 		} else {
1446 			bprintf(bp, "%*s", twidth, " ");
1447 		}
1448 	}
1449 
1450 	if (co->show_sets)
1451 		bprintf(bp, "set %d ", rule->set);
1452 
1453 	/*
1454 	 * print the optional "match probability"
1455 	 */
1456 	if (rule->cmd_len > 0) {
1457 		cmd = rule->cmd ;
1458 		if (cmd->opcode == O_PROB) {
1459 			ipfw_insn_u32 *p = (ipfw_insn_u32 *)cmd;
1460 			double d = 1.0 * p->d[0];
1461 
1462 			d = (d / 0x7fffffff);
1463 			bprintf(bp, "prob %f ", d);
1464 		}
1465 	}
1466 
1467 	/*
1468 	 * first print actions
1469 	 */
1470 	for (l = rule->cmd_len - rule->act_ofs, cmd = ACTION_PTR(rule);
1471 			l > 0 ; l -= F_LEN(cmd), cmd += F_LEN(cmd)) {
1472 		switch(cmd->opcode) {
1473 		case O_CHECK_STATE:
1474 			bprintf(bp, "check-state");
1475 			/* avoid printing anything else */
1476 			flags = HAVE_PROTO | HAVE_SRCIP |
1477 				HAVE_DSTIP | HAVE_IP;
1478 			break;
1479 
1480 		case O_ACCEPT:
1481 			bprintf(bp, "allow");
1482 			break;
1483 
1484 		case O_COUNT:
1485 			bprintf(bp, "count");
1486 			break;
1487 
1488 		case O_DENY:
1489 			bprintf(bp, "deny");
1490 			break;
1491 
1492 		case O_REJECT:
1493 			if (cmd->arg1 == ICMP_REJECT_RST)
1494 				bprintf(bp, "reset");
1495 			else if (cmd->arg1 == ICMP_UNREACH_HOST)
1496 				bprintf(bp, "reject");
1497 			else
1498 				print_reject_code(bp, cmd->arg1);
1499 			break;
1500 
1501 		case O_UNREACH6:
1502 			if (cmd->arg1 == ICMP6_UNREACH_RST)
1503 				bprintf(bp, "reset6");
1504 			else
1505 				print_unreach6_code(bp, cmd->arg1);
1506 			break;
1507 
1508 		case O_SKIPTO:
1509 			bprint_uint_arg(bp, "skipto ", cmd->arg1);
1510 			break;
1511 
1512 		case O_PIPE:
1513 			bprint_uint_arg(bp, "pipe ", cmd->arg1);
1514 			break;
1515 
1516 		case O_QUEUE:
1517 			bprint_uint_arg(bp, "queue ", cmd->arg1);
1518 			break;
1519 
1520 		case O_DIVERT:
1521 			bprint_uint_arg(bp, "divert ", cmd->arg1);
1522 			break;
1523 
1524 		case O_TEE:
1525 			bprint_uint_arg(bp, "tee ", cmd->arg1);
1526 			break;
1527 
1528 		case O_NETGRAPH:
1529 			bprint_uint_arg(bp, "netgraph ", cmd->arg1);
1530 			break;
1531 
1532 		case O_NGTEE:
1533 			bprint_uint_arg(bp, "ngtee ", cmd->arg1);
1534 			break;
1535 
1536 		case O_FORWARD_IP:
1537 		    {
1538 			ipfw_insn_sa *s = (ipfw_insn_sa *)cmd;
1539 
1540 			if (s->sa.sin_addr.s_addr == INADDR_ANY) {
1541 				bprintf(bp, "fwd tablearg");
1542 			} else {
1543 				bprintf(bp, "fwd %s",inet_ntoa(s->sa.sin_addr));
1544 			}
1545 			if (s->sa.sin_port)
1546 				bprintf(bp, ",%d", s->sa.sin_port);
1547 		    }
1548 			break;
1549 
1550 		case O_FORWARD_IP6:
1551 		    {
1552 			char buf[INET6_ADDRSTRLEN + IF_NAMESIZE + 2];
1553 			ipfw_insn_sa6 *s = (ipfw_insn_sa6 *)cmd;
1554 
1555 			bprintf(bp, "fwd ");
1556 			if (getnameinfo((const struct sockaddr *)&s->sa,
1557 			    sizeof(struct sockaddr_in6), buf, sizeof(buf),
1558 			    NULL, 0, NI_NUMERICHOST) == 0)
1559 				bprintf(bp, "%s", buf);
1560 			if (s->sa.sin6_port)
1561 				bprintf(bp, ",%d", s->sa.sin6_port);
1562 		    }
1563 			break;
1564 
1565 		case O_LOG: /* O_LOG is printed last */
1566 			logptr = (ipfw_insn_log *)cmd;
1567 			break;
1568 
1569 		case O_ALTQ: /* O_ALTQ is printed after O_LOG */
1570 			altqptr = (ipfw_insn_altq *)cmd;
1571 			break;
1572 
1573 		case O_TAG:
1574 			tagptr = cmd;
1575 			break;
1576 
1577 		case O_NAT:
1578 			if (cmd->arg1 != 0)
1579 				bprint_uint_arg(bp, "nat ", cmd->arg1);
1580 			else
1581 				bprintf(bp, "nat global");
1582 			break;
1583 
1584 		case O_SETFIB:
1585 			bprint_uint_arg(bp, "setfib ", cmd->arg1 & 0x7FFF);
1586  			break;
1587 
1588 		case O_EXTERNAL_ACTION: {
1589 			const char *ename;
1590 
1591 			/*
1592 			 * The external action can consists of two following
1593 			 * each other opcodes - O_EXTERNAL_ACTION and
1594 			 * O_EXTERNAL_INSTANCE. The first contains the ID of
1595 			 * name of external action. The second contains the ID
1596 			 * of name of external action instance.
1597 			 * NOTE: in case when external action has no named
1598 			 * instances support, the second opcode isn't needed.
1599 			 */
1600 			has_eaction = cmd;
1601 			ename = object_search_ctlv(fo->tstate, cmd->arg1,
1602 			    IPFW_TLV_EACTION);
1603 			if (match_token(rule_eactions, ename) != -1)
1604 				bprintf(bp, "%s", ename);
1605 			else
1606 				bprintf(bp, "eaction %s", ename);
1607 			break;
1608 		}
1609 
1610 		case O_EXTERNAL_INSTANCE: {
1611 			const char *ename;
1612 
1613 			if (has_eaction == NULL)
1614 				break;
1615 			/*
1616 			 * XXX: we need to teach ipfw(9) to rewrite opcodes
1617 			 * in the user buffer on rule addition. When we add
1618 			 * the rule, we specify zero TLV type for
1619 			 * O_EXTERNAL_INSTANCE object. To show correct
1620 			 * rule after `ipfw add` we need to search instance
1621 			 * name with zero type. But when we do `ipfw show`
1622 			 * we calculate TLV type using IPFW_TLV_EACTION_NAME()
1623 			 * macro.
1624 			 */
1625 			ename = object_search_ctlv(fo->tstate, cmd->arg1, 0);
1626 			if (ename == NULL)
1627 				ename = object_search_ctlv(fo->tstate,
1628 				    cmd->arg1,
1629 				    IPFW_TLV_EACTION_NAME(has_eaction->arg1));
1630 			bprintf(bp, " %s", ename);
1631 			break;
1632 		}
1633 
1634 		case O_SETDSCP:
1635 		    {
1636 			const char *code;
1637 
1638 			if (cmd->arg1 == IP_FW_TARG) {
1639 				bprint_uint_arg(bp, "setdscp ", cmd->arg1);
1640 				break;
1641 			}
1642 			uval = cmd->arg1 & 0x3F;
1643 			if ((code = match_value(f_ipdscp, uval)) != NULL)
1644 				bprintf(bp, "setdscp %s", code);
1645 			else
1646 				bprint_uint_arg(bp, "setdscp ", uval);
1647 		    }
1648  			break;
1649 
1650 		case O_REASS:
1651 			bprintf(bp, "reass");
1652 			break;
1653 
1654 		case O_CALLRETURN:
1655 			if (cmd->len & F_NOT)
1656 				bprintf(bp, "return");
1657 			else
1658 				bprint_uint_arg(bp, "call ", cmd->arg1);
1659 			break;
1660 
1661 		default:
1662 			bprintf(bp, "** unrecognized action %d len %d ",
1663 				cmd->opcode, cmd->len);
1664 		}
1665 	}
1666 	if (logptr) {
1667 		if (logptr->max_log > 0)
1668 			bprintf(bp, " log logamount %d", logptr->max_log);
1669 		else
1670 			bprintf(bp, " log");
1671 	}
1672 #ifndef NO_ALTQ
1673 	if (altqptr) {
1674 		print_altq_cmd(bp, altqptr);
1675 	}
1676 #endif
1677 	if (tagptr) {
1678 		if (tagptr->len & F_NOT)
1679 			bprint_uint_arg(bp, " untag ", tagptr->arg1);
1680 		else
1681 			bprint_uint_arg(bp, " tag ", tagptr->arg1);
1682 	}
1683 
1684 	/*
1685 	 * then print the body.
1686 	 */
1687 	for (l = rule->act_ofs, cmd = rule->cmd;
1688 			l > 0 ; l -= F_LEN(cmd) , cmd += F_LEN(cmd)) {
1689 		if ((cmd->len & F_OR) || (cmd->len & F_NOT))
1690 			continue;
1691 		if (cmd->opcode == O_IP4) {
1692 			flags |= HAVE_PROTO4;
1693 			break;
1694 		} else if (cmd->opcode == O_IP6) {
1695 			flags |= HAVE_PROTO6;
1696 			break;
1697 		}
1698 	}
1699 	if (rule->flags & IPFW_RULE_NOOPT) {	/* empty rules before options */
1700 		if (!co->do_compact) {
1701 			show_prerequisites(bp, &flags, HAVE_PROTO, 0);
1702 			bprintf(bp, " from any to any");
1703 		}
1704 		flags |= HAVE_IP | HAVE_OPTIONS | HAVE_PROTO |
1705 			 HAVE_SRCIP | HAVE_DSTIP;
1706 	}
1707 
1708 	if (co->comment_only)
1709 		comment = "...";
1710 
1711 	for (l = rule->act_ofs, cmd = rule->cmd;
1712 			l > 0 ; l -= F_LEN(cmd) , cmd += F_LEN(cmd)) {
1713 		/* useful alias */
1714 		ipfw_insn_u32 *cmd32 = (ipfw_insn_u32 *)cmd;
1715 
1716 		if (co->comment_only) {
1717 			if (cmd->opcode != O_NOP)
1718 				continue;
1719 			bprintf(bp, " // %s\n", (char *)(cmd + 1));
1720 			return;
1721 		}
1722 
1723 		show_prerequisites(bp, &flags, 0, cmd->opcode);
1724 
1725 		switch(cmd->opcode) {
1726 		case O_PROB:
1727 			break;	/* done already */
1728 
1729 		case O_PROBE_STATE:
1730 			break; /* no need to print anything here */
1731 
1732 		case O_IP_SRC:
1733 		case O_IP_SRC_LOOKUP:
1734 		case O_IP_SRC_MASK:
1735 		case O_IP_SRC_ME:
1736 		case O_IP_SRC_SET:
1737 			show_prerequisites(bp, &flags, HAVE_PROTO, 0);
1738 			if (!(flags & HAVE_SRCIP))
1739 				bprintf(bp, " from");
1740 			if ((cmd->len & F_OR) && !or_block)
1741 				bprintf(bp, " {");
1742 			print_ip(bp, fo, (ipfw_insn_ip *)cmd,
1743 				(flags & HAVE_OPTIONS) ? " src-ip" : "");
1744 			flags |= HAVE_SRCIP;
1745 			break;
1746 
1747 		case O_IP_DST:
1748 		case O_IP_DST_LOOKUP:
1749 		case O_IP_DST_MASK:
1750 		case O_IP_DST_ME:
1751 		case O_IP_DST_SET:
1752 			show_prerequisites(bp, &flags, HAVE_PROTO|HAVE_SRCIP, 0);
1753 			if (!(flags & HAVE_DSTIP))
1754 				bprintf(bp, " to");
1755 			if ((cmd->len & F_OR) && !or_block)
1756 				bprintf(bp, " {");
1757 			print_ip(bp, fo, (ipfw_insn_ip *)cmd,
1758 				(flags & HAVE_OPTIONS) ? " dst-ip" : "");
1759 			flags |= HAVE_DSTIP;
1760 			break;
1761 
1762 		case O_IP6_SRC:
1763 		case O_IP6_SRC_MASK:
1764 		case O_IP6_SRC_ME:
1765 			show_prerequisites(bp, &flags, HAVE_PROTO, 0);
1766 			if (!(flags & HAVE_SRCIP))
1767 				bprintf(bp, " from");
1768 			if ((cmd->len & F_OR) && !or_block)
1769 				bprintf(bp, " {");
1770 			print_ip6(bp, (ipfw_insn_ip6 *)cmd,
1771 			    (flags & HAVE_OPTIONS) ? " src-ip6" : "");
1772 			flags |= HAVE_SRCIP | HAVE_PROTO;
1773 			break;
1774 
1775 		case O_IP6_DST:
1776 		case O_IP6_DST_MASK:
1777 		case O_IP6_DST_ME:
1778 			show_prerequisites(bp, &flags, HAVE_PROTO|HAVE_SRCIP, 0);
1779 			if (!(flags & HAVE_DSTIP))
1780 				bprintf(bp, " to");
1781 			if ((cmd->len & F_OR) && !or_block)
1782 				bprintf(bp, " {");
1783 			print_ip6(bp, (ipfw_insn_ip6 *)cmd,
1784 			    (flags & HAVE_OPTIONS) ? " dst-ip6" : "");
1785 			flags |= HAVE_DSTIP;
1786 			break;
1787 
1788 		case O_FLOW6ID:
1789 			print_flow6id(bp, (ipfw_insn_u32 *) cmd );
1790 			flags |= HAVE_OPTIONS;
1791 			break;
1792 
1793 		case O_IP_DSTPORT:
1794 			show_prerequisites(bp, &flags,
1795 				HAVE_PROTO | HAVE_SRCIP |
1796 				HAVE_DSTIP | HAVE_IP, 0);
1797 		case O_IP_SRCPORT:
1798 			if (flags & HAVE_DSTIP)
1799 				flags |= HAVE_IP;
1800 			show_prerequisites(bp, &flags,
1801 				HAVE_PROTO | HAVE_SRCIP, 0);
1802 			if ((cmd->len & F_OR) && !or_block)
1803 				bprintf(bp, " {");
1804 			if (cmd->len & F_NOT)
1805 				bprintf(bp, " not");
1806 			print_newports(bp, (ipfw_insn_u16 *)cmd, proto,
1807 				(flags & HAVE_OPTIONS) ? cmd->opcode : 0);
1808 			break;
1809 
1810 		case O_PROTO: {
1811 			struct protoent *pe = NULL;
1812 
1813 			if ((cmd->len & F_OR) && !or_block)
1814 				bprintf(bp, " {");
1815 			if (cmd->len & F_NOT)
1816 				bprintf(bp, " not");
1817 			proto = cmd->arg1;
1818 			pe = getprotobynumber(cmd->arg1);
1819 			if ((flags & (HAVE_PROTO4 | HAVE_PROTO6)) &&
1820 			    !(flags & HAVE_PROTO))
1821 				show_prerequisites(bp, &flags,
1822 				    HAVE_PROTO | HAVE_IP | HAVE_SRCIP |
1823 				    HAVE_DSTIP | HAVE_OPTIONS, 0);
1824 			if (flags & HAVE_OPTIONS)
1825 				bprintf(bp, " proto");
1826 			if (pe)
1827 				bprintf(bp, " %s", pe->p_name);
1828 			else
1829 				bprintf(bp, " %u", cmd->arg1);
1830 			}
1831 			flags |= HAVE_PROTO;
1832 			break;
1833 
1834 		default: /*options ... */
1835 			if (!(cmd->len & (F_OR|F_NOT)))
1836 				if (((cmd->opcode == O_IP6) &&
1837 				    (flags & HAVE_PROTO6)) ||
1838 				    ((cmd->opcode == O_IP4) &&
1839 				    (flags & HAVE_PROTO4)))
1840 					break;
1841 			show_prerequisites(bp, &flags, HAVE_PROTO | HAVE_SRCIP |
1842 				    HAVE_DSTIP | HAVE_IP | HAVE_OPTIONS, 0);
1843 			if ((cmd->len & F_OR) && !or_block)
1844 				bprintf(bp, " {");
1845 			if (cmd->len & F_NOT && cmd->opcode != O_IN)
1846 				bprintf(bp, " not");
1847 			switch(cmd->opcode) {
1848 			case O_MACADDR2: {
1849 				ipfw_insn_mac *m = (ipfw_insn_mac *)cmd;
1850 
1851 				bprintf(bp, " MAC");
1852 				print_mac(bp, m->addr, m->mask);
1853 				print_mac(bp, m->addr + 6, m->mask + 6);
1854 				}
1855 				break;
1856 
1857 			case O_MAC_TYPE:
1858 				print_newports(bp, (ipfw_insn_u16 *)cmd,
1859 						IPPROTO_ETHERTYPE, cmd->opcode);
1860 				break;
1861 
1862 
1863 			case O_FRAG:
1864 				bprintf(bp, " frag");
1865 				break;
1866 
1867 			case O_FIB:
1868 				bprintf(bp, " fib %u", cmd->arg1 );
1869 				break;
1870 			case O_SOCKARG:
1871 				bprintf(bp, " sockarg");
1872 				break;
1873 
1874 			case O_IN:
1875 				bprintf(bp, cmd->len & F_NOT ? " out" : " in");
1876 				break;
1877 
1878 			case O_DIVERTED:
1879 				switch (cmd->arg1) {
1880 				case 3:
1881 					bprintf(bp, " diverted");
1882 					break;
1883 				case 1:
1884 					bprintf(bp, " diverted-loopback");
1885 					break;
1886 				case 2:
1887 					bprintf(bp, " diverted-output");
1888 					break;
1889 				default:
1890 					bprintf(bp, " diverted-?<%u>", cmd->arg1);
1891 					break;
1892 				}
1893 				break;
1894 
1895 			case O_LAYER2:
1896 				bprintf(bp, " layer2");
1897 				break;
1898 			case O_XMIT:
1899 			case O_RECV:
1900 			case O_VIA:
1901 			    {
1902 				char const *s, *t;
1903 				ipfw_insn_if *cmdif = (ipfw_insn_if *)cmd;
1904 
1905 				if (cmd->opcode == O_XMIT)
1906 					s = "xmit";
1907 				else if (cmd->opcode == O_RECV)
1908 					s = "recv";
1909 				else /* if (cmd->opcode == O_VIA) */
1910 					s = "via";
1911 				if (cmdif->name[0] == '\0')
1912 					bprintf(bp, " %s %s", s,
1913 					    inet_ntoa(cmdif->p.ip));
1914 				else if (cmdif->name[0] == '\1') {
1915 					/* interface table */
1916 					t = table_search_ctlv(fo->tstate,
1917 					    cmdif->p.kidx);
1918 					bprintf(bp, " %s table(%s)", s, t);
1919 				} else
1920 					bprintf(bp, " %s %s", s, cmdif->name);
1921 
1922 				break;
1923 			    }
1924 			case O_IP_FLOW_LOOKUP:
1925 			    {
1926 				char *t;
1927 
1928 				t = table_search_ctlv(fo->tstate, cmd->arg1);
1929 				bprintf(bp, " flow table(%s", t);
1930 				if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn_u32))
1931 					bprintf(bp, ",%u",
1932 					    ((ipfw_insn_u32 *)cmd)->d[0]);
1933 				bprintf(bp, ")");
1934 				break;
1935 			    }
1936 			case O_IPID:
1937 				if (F_LEN(cmd) == 1)
1938 				    bprintf(bp, " ipid %u", cmd->arg1 );
1939 				else
1940 				    print_newports(bp, (ipfw_insn_u16 *)cmd, 0,
1941 					O_IPID);
1942 				break;
1943 
1944 			case O_IPTTL:
1945 				if (F_LEN(cmd) == 1)
1946 				    bprintf(bp, " ipttl %u", cmd->arg1 );
1947 				else
1948 				    print_newports(bp, (ipfw_insn_u16 *)cmd, 0,
1949 					O_IPTTL);
1950 				break;
1951 
1952 			case O_IPVER:
1953 				bprintf(bp, " ipver %u", cmd->arg1 );
1954 				break;
1955 
1956 			case O_IPPRECEDENCE:
1957 				bprintf(bp, " ipprecedence %u", cmd->arg1 >> 5);
1958 				break;
1959 
1960 			case O_DSCP:
1961 				print_dscp(bp, (ipfw_insn_u32 *)cmd);
1962 	 			break;
1963 
1964 			case O_IPLEN:
1965 				if (F_LEN(cmd) == 1)
1966 				    bprintf(bp, " iplen %u", cmd->arg1 );
1967 				else
1968 				    print_newports(bp, (ipfw_insn_u16 *)cmd, 0,
1969 					O_IPLEN);
1970 				break;
1971 
1972 			case O_IPOPT:
1973 				print_flags(bp, "ipoptions", cmd, f_ipopts);
1974 				break;
1975 
1976 			case O_IPTOS:
1977 				print_flags(bp, "iptos", cmd, f_iptos);
1978 				break;
1979 
1980 			case O_ICMPTYPE:
1981 				print_icmptypes(bp, (ipfw_insn_u32 *)cmd);
1982 				break;
1983 
1984 			case O_ESTAB:
1985 				bprintf(bp, " established");
1986 				break;
1987 
1988 			case O_TCPDATALEN:
1989 				if (F_LEN(cmd) == 1)
1990 				    bprintf(bp, " tcpdatalen %u", cmd->arg1 );
1991 				else
1992 				    print_newports(bp, (ipfw_insn_u16 *)cmd, 0,
1993 					O_TCPDATALEN);
1994 				break;
1995 
1996 			case O_TCPFLAGS:
1997 				print_flags(bp, "tcpflags", cmd, f_tcpflags);
1998 				break;
1999 
2000 			case O_TCPOPTS:
2001 				print_flags(bp, "tcpoptions", cmd, f_tcpopts);
2002 				break;
2003 
2004 			case O_TCPWIN:
2005 				if (F_LEN(cmd) == 1)
2006 				    bprintf(bp, " tcpwin %u", cmd->arg1);
2007 				else
2008 				    print_newports(bp, (ipfw_insn_u16 *)cmd, 0,
2009 					O_TCPWIN);
2010 				break;
2011 
2012 			case O_TCPACK:
2013 				bprintf(bp, " tcpack %d", ntohl(cmd32->d[0]));
2014 				break;
2015 
2016 			case O_TCPSEQ:
2017 				bprintf(bp, " tcpseq %d", ntohl(cmd32->d[0]));
2018 				break;
2019 
2020 			case O_UID:
2021 			    {
2022 				struct passwd *pwd = getpwuid(cmd32->d[0]);
2023 
2024 				if (pwd)
2025 					bprintf(bp, " uid %s", pwd->pw_name);
2026 				else
2027 					bprintf(bp, " uid %u", cmd32->d[0]);
2028 			    }
2029 				break;
2030 
2031 			case O_GID:
2032 			    {
2033 				struct group *grp = getgrgid(cmd32->d[0]);
2034 
2035 				if (grp)
2036 					bprintf(bp, " gid %s", grp->gr_name);
2037 				else
2038 					bprintf(bp, " gid %u", cmd32->d[0]);
2039 			    }
2040 				break;
2041 
2042 			case O_JAIL:
2043 				bprintf(bp, " jail %d", cmd32->d[0]);
2044 				break;
2045 
2046 			case O_VERREVPATH:
2047 				bprintf(bp, " verrevpath");
2048 				break;
2049 
2050 			case O_VERSRCREACH:
2051 				bprintf(bp, " versrcreach");
2052 				break;
2053 
2054 			case O_ANTISPOOF:
2055 				bprintf(bp, " antispoof");
2056 				break;
2057 
2058 			case O_IPSEC:
2059 				bprintf(bp, " ipsec");
2060 				break;
2061 
2062 			case O_NOP:
2063 				comment = (char *)(cmd + 1);
2064 				break;
2065 
2066 			case O_KEEP_STATE:
2067 				bprintf(bp, " keep-state");
2068 				break;
2069 
2070 			case O_LIMIT: {
2071 				struct _s_x *p = limit_masks;
2072 				ipfw_insn_limit *c = (ipfw_insn_limit *)cmd;
2073 				uint8_t x = c->limit_mask;
2074 				char const *comma = " ";
2075 
2076 				bprintf(bp, " limit");
2077 				for (; p->x != 0 ; p++)
2078 					if ((x & p->x) == p->x) {
2079 						x &= ~p->x;
2080 						bprintf(bp, "%s%s", comma,p->s);
2081 						comma = ",";
2082 					}
2083 				bprint_uint_arg(bp, " ", c->conn_limit);
2084 				break;
2085 			}
2086 
2087 			case O_IP6:
2088 				bprintf(bp, " ip6");
2089 				break;
2090 
2091 			case O_IP4:
2092 				bprintf(bp, " ip4");
2093 				break;
2094 
2095 			case O_ICMP6TYPE:
2096 				print_icmp6types(bp, (ipfw_insn_u32 *)cmd);
2097 				break;
2098 
2099 			case O_EXT_HDR:
2100 				print_ext6hdr(bp, (ipfw_insn *)cmd);
2101 				break;
2102 
2103 			case O_TAGGED:
2104 				if (F_LEN(cmd) == 1)
2105 					bprint_uint_arg(bp, " tagged ",
2106 					    cmd->arg1);
2107 				else
2108 					print_newports(bp, (ipfw_insn_u16 *)cmd,
2109 					    0, O_TAGGED);
2110 				break;
2111 
2112 			default:
2113 				bprintf(bp, " [opcode %d len %d]",
2114 				    cmd->opcode, cmd->len);
2115 			}
2116 		}
2117 		if (cmd->len & F_OR) {
2118 			bprintf(bp, " or");
2119 			or_block = 1;
2120 		} else if (or_block) {
2121 			bprintf(bp, " }");
2122 			or_block = 0;
2123 		}
2124 	}
2125 	show_prerequisites(bp, &flags, HAVE_PROTO | HAVE_SRCIP | HAVE_DSTIP
2126 					      | HAVE_IP, 0);
2127 	if (comment)
2128 		bprintf(bp, " // %s", comment);
2129 	bprintf(bp, "\n");
2130 }
2131 
2132 static void
2133 show_dyn_state(struct cmdline_opts *co, struct format_opts *fo,
2134     struct buf_pr *bp, ipfw_dyn_rule *d)
2135 {
2136 	struct protoent *pe;
2137 	struct in_addr a;
2138 	uint16_t rulenum;
2139 	char buf[INET6_ADDRSTRLEN];
2140 
2141 	if (!co->do_expired) {
2142 		if (!d->expire && !(d->dyn_type == O_LIMIT_PARENT))
2143 			return;
2144 	}
2145 	bcopy(&d->rule, &rulenum, sizeof(rulenum));
2146 	bprintf(bp, "%05d", rulenum);
2147 	if (fo->pcwidth > 0 || fo->bcwidth > 0) {
2148 		bprintf(bp, " ");
2149 		pr_u64(bp, &d->pcnt, fo->pcwidth);
2150 		pr_u64(bp, &d->bcnt, fo->bcwidth);
2151 		bprintf(bp, "(%ds)", d->expire);
2152 	}
2153 	switch (d->dyn_type) {
2154 	case O_LIMIT_PARENT:
2155 		bprintf(bp, " PARENT %d", d->count);
2156 		break;
2157 	case O_LIMIT:
2158 		bprintf(bp, " LIMIT");
2159 		break;
2160 	case O_KEEP_STATE: /* bidir, no mask */
2161 		bprintf(bp, " STATE");
2162 		break;
2163 	}
2164 
2165 	if ((pe = getprotobynumber(d->id.proto)) != NULL)
2166 		bprintf(bp, " %s", pe->p_name);
2167 	else
2168 		bprintf(bp, " proto %u", d->id.proto);
2169 
2170 	if (d->id.addr_type == 4) {
2171 		a.s_addr = htonl(d->id.src_ip);
2172 		bprintf(bp, " %s %d", inet_ntoa(a), d->id.src_port);
2173 
2174 		a.s_addr = htonl(d->id.dst_ip);
2175 		bprintf(bp, " <-> %s %d", inet_ntoa(a), d->id.dst_port);
2176 	} else if (d->id.addr_type == 6) {
2177 		bprintf(bp, " %s %d", inet_ntop(AF_INET6, &d->id.src_ip6, buf,
2178 		    sizeof(buf)), d->id.src_port);
2179 		bprintf(bp, " <-> %s %d", inet_ntop(AF_INET6, &d->id.dst_ip6,
2180 		    buf, sizeof(buf)), d->id.dst_port);
2181 	} else
2182 		bprintf(bp, " UNKNOWN <-> UNKNOWN\n");
2183 }
2184 
2185 static int
2186 do_range_cmd(int cmd, ipfw_range_tlv *rt)
2187 {
2188 	ipfw_range_header rh;
2189 	size_t sz;
2190 
2191 	memset(&rh, 0, sizeof(rh));
2192 	memcpy(&rh.range, rt, sizeof(*rt));
2193 	rh.range.head.length = sizeof(*rt);
2194 	rh.range.head.type = IPFW_TLV_RANGE;
2195 	sz = sizeof(rh);
2196 
2197 	if (do_get3(cmd, &rh.opheader, &sz) != 0)
2198 		return (-1);
2199 	/* Save number of matched objects */
2200 	rt->new_set = rh.range.new_set;
2201 	return (0);
2202 }
2203 
2204 /*
2205  * This one handles all set-related commands
2206  * 	ipfw set { show | enable | disable }
2207  * 	ipfw set swap X Y
2208  * 	ipfw set move X to Y
2209  * 	ipfw set move rule X to Y
2210  */
2211 void
2212 ipfw_sets_handler(char *av[])
2213 {
2214 	uint32_t masks[2];
2215 	int i;
2216 	uint8_t cmd, rulenum;
2217 	ipfw_range_tlv rt;
2218 	char *msg;
2219 	size_t size;
2220 
2221 	av++;
2222 	memset(&rt, 0, sizeof(rt));
2223 
2224 	if (av[0] == NULL)
2225 		errx(EX_USAGE, "set needs command");
2226 	if (_substrcmp(*av, "show") == 0) {
2227 		struct format_opts fo;
2228 		ipfw_cfg_lheader *cfg;
2229 
2230 		memset(&fo, 0, sizeof(fo));
2231 		if (ipfw_get_config(&co, &fo, &cfg, &size) != 0)
2232 			err(EX_OSERR, "requesting config failed");
2233 
2234 		for (i = 0, msg = "disable"; i < RESVD_SET; i++)
2235 			if ((cfg->set_mask & (1<<i)) == 0) {
2236 				printf("%s %d", msg, i);
2237 				msg = "";
2238 			}
2239 		msg = (cfg->set_mask != (uint32_t)-1) ? " enable" : "enable";
2240 		for (i = 0; i < RESVD_SET; i++)
2241 			if ((cfg->set_mask & (1<<i)) != 0) {
2242 				printf("%s %d", msg, i);
2243 				msg = "";
2244 			}
2245 		printf("\n");
2246 		free(cfg);
2247 	} else if (_substrcmp(*av, "swap") == 0) {
2248 		av++;
2249 		if ( av[0] == NULL || av[1] == NULL )
2250 			errx(EX_USAGE, "set swap needs 2 set numbers\n");
2251 		rt.set = atoi(av[0]);
2252 		rt.new_set = atoi(av[1]);
2253 		if (!isdigit(*(av[0])) || rt.set > RESVD_SET)
2254 			errx(EX_DATAERR, "invalid set number %s\n", av[0]);
2255 		if (!isdigit(*(av[1])) || rt.new_set > RESVD_SET)
2256 			errx(EX_DATAERR, "invalid set number %s\n", av[1]);
2257 		i = do_range_cmd(IP_FW_SET_SWAP, &rt);
2258 	} else if (_substrcmp(*av, "move") == 0) {
2259 		av++;
2260 		if (av[0] && _substrcmp(*av, "rule") == 0) {
2261 			rt.flags = IPFW_RCFLAG_RANGE; /* move rules to new set */
2262 			cmd = IP_FW_XMOVE;
2263 			av++;
2264 		} else
2265 			cmd = IP_FW_SET_MOVE; /* Move set to new one */
2266 		if (av[0] == NULL || av[1] == NULL || av[2] == NULL ||
2267 				av[3] != NULL ||  _substrcmp(av[1], "to") != 0)
2268 			errx(EX_USAGE, "syntax: set move [rule] X to Y\n");
2269 		rulenum = atoi(av[0]);
2270 		rt.new_set = atoi(av[2]);
2271 		if (cmd == IP_FW_XMOVE) {
2272 			rt.start_rule = rulenum;
2273 			rt.end_rule = rulenum;
2274 		} else
2275 			rt.set = rulenum;
2276 		rt.new_set = atoi(av[2]);
2277 		if (!isdigit(*(av[0])) || (cmd == 3 && rt.set > RESVD_SET) ||
2278 			(cmd == 2 && rt.start_rule == IPFW_DEFAULT_RULE) )
2279 			errx(EX_DATAERR, "invalid source number %s\n", av[0]);
2280 		if (!isdigit(*(av[2])) || rt.new_set > RESVD_SET)
2281 			errx(EX_DATAERR, "invalid dest. set %s\n", av[1]);
2282 		i = do_range_cmd(cmd, &rt);
2283 	} else if (_substrcmp(*av, "disable") == 0 ||
2284 		   _substrcmp(*av, "enable") == 0 ) {
2285 		int which = _substrcmp(*av, "enable") == 0 ? 1 : 0;
2286 
2287 		av++;
2288 		masks[0] = masks[1] = 0;
2289 
2290 		while (av[0]) {
2291 			if (isdigit(**av)) {
2292 				i = atoi(*av);
2293 				if (i < 0 || i > RESVD_SET)
2294 					errx(EX_DATAERR,
2295 					    "invalid set number %d\n", i);
2296 				masks[which] |= (1<<i);
2297 			} else if (_substrcmp(*av, "disable") == 0)
2298 				which = 0;
2299 			else if (_substrcmp(*av, "enable") == 0)
2300 				which = 1;
2301 			else
2302 				errx(EX_DATAERR,
2303 					"invalid set command %s\n", *av);
2304 			av++;
2305 		}
2306 		if ( (masks[0] & masks[1]) != 0 )
2307 			errx(EX_DATAERR,
2308 			    "cannot enable and disable the same set\n");
2309 
2310 		rt.set = masks[0];
2311 		rt.new_set = masks[1];
2312 		i = do_range_cmd(IP_FW_SET_ENABLE, &rt);
2313 		if (i)
2314 			warn("set enable/disable: setsockopt(IP_FW_SET_ENABLE)");
2315 	} else
2316 		errx(EX_USAGE, "invalid set command %s\n", *av);
2317 }
2318 
2319 void
2320 ipfw_sysctl_handler(char *av[], int which)
2321 {
2322 	av++;
2323 
2324 	if (av[0] == NULL) {
2325 		warnx("missing keyword to enable/disable\n");
2326 	} else if (_substrcmp(*av, "firewall") == 0) {
2327 		sysctlbyname("net.inet.ip.fw.enable", NULL, 0,
2328 		    &which, sizeof(which));
2329 		sysctlbyname("net.inet6.ip6.fw.enable", NULL, 0,
2330 		    &which, sizeof(which));
2331 	} else if (_substrcmp(*av, "one_pass") == 0) {
2332 		sysctlbyname("net.inet.ip.fw.one_pass", NULL, 0,
2333 		    &which, sizeof(which));
2334 	} else if (_substrcmp(*av, "debug") == 0) {
2335 		sysctlbyname("net.inet.ip.fw.debug", NULL, 0,
2336 		    &which, sizeof(which));
2337 	} else if (_substrcmp(*av, "verbose") == 0) {
2338 		sysctlbyname("net.inet.ip.fw.verbose", NULL, 0,
2339 		    &which, sizeof(which));
2340 	} else if (_substrcmp(*av, "dyn_keepalive") == 0) {
2341 		sysctlbyname("net.inet.ip.fw.dyn_keepalive", NULL, 0,
2342 		    &which, sizeof(which));
2343 #ifndef NO_ALTQ
2344 	} else if (_substrcmp(*av, "altq") == 0) {
2345 		altq_set_enabled(which);
2346 #endif
2347 	} else {
2348 		warnx("unrecognize enable/disable keyword: %s\n", *av);
2349 	}
2350 }
2351 
2352 typedef void state_cb(struct cmdline_opts *co, struct format_opts *fo,
2353     void *arg, void *state);
2354 
2355 static void
2356 prepare_format_dyn(struct cmdline_opts *co, struct format_opts *fo,
2357     void *arg, void *_state)
2358 {
2359 	ipfw_dyn_rule *d;
2360 	int width;
2361 	uint8_t set;
2362 
2363 	d = (ipfw_dyn_rule *)_state;
2364 	/* Count _ALL_ states */
2365 	fo->dcnt++;
2366 
2367 	if (fo->show_counters == 0)
2368 		return;
2369 
2370 	if (co->use_set) {
2371 		/* skip states from another set */
2372 		bcopy((char *)&d->rule + sizeof(uint16_t), &set,
2373 		    sizeof(uint8_t));
2374 		if (set != co->use_set - 1)
2375 			return;
2376 	}
2377 
2378 	width = pr_u64(NULL, &d->pcnt, 0);
2379 	if (width > fo->pcwidth)
2380 		fo->pcwidth = width;
2381 
2382 	width = pr_u64(NULL, &d->bcnt, 0);
2383 	if (width > fo->bcwidth)
2384 		fo->bcwidth = width;
2385 }
2386 
2387 static int
2388 foreach_state(struct cmdline_opts *co, struct format_opts *fo,
2389     caddr_t base, size_t sz, state_cb dyn_bc, void *dyn_arg)
2390 {
2391 	int ttype;
2392 	state_cb *fptr;
2393 	void *farg;
2394 	ipfw_obj_tlv *tlv;
2395 	ipfw_obj_ctlv *ctlv;
2396 
2397 	fptr = NULL;
2398 	ttype = 0;
2399 
2400 	while (sz > 0) {
2401 		ctlv = (ipfw_obj_ctlv *)base;
2402 		switch (ctlv->head.type) {
2403 		case IPFW_TLV_DYNSTATE_LIST:
2404 			base += sizeof(*ctlv);
2405 			sz -= sizeof(*ctlv);
2406 			ttype = IPFW_TLV_DYN_ENT;
2407 			fptr = dyn_bc;
2408 			farg = dyn_arg;
2409 			break;
2410 		default:
2411 			return (sz);
2412 		}
2413 
2414 		while (sz > 0) {
2415 			tlv = (ipfw_obj_tlv *)base;
2416 			if (tlv->type != ttype)
2417 				break;
2418 
2419 			fptr(co, fo, farg, tlv + 1);
2420 			sz -= tlv->length;
2421 			base += tlv->length;
2422 		}
2423 	}
2424 
2425 	return (sz);
2426 }
2427 
2428 static void
2429 prepare_format_opts(struct cmdline_opts *co, struct format_opts *fo,
2430     ipfw_obj_tlv *rtlv, int rcnt, caddr_t dynbase, size_t dynsz)
2431 {
2432 	int bcwidth, pcwidth, width;
2433 	int n;
2434 	struct ip_fw_bcounter *cntr;
2435 	struct ip_fw_rule *r;
2436 
2437 	bcwidth = 0;
2438 	pcwidth = 0;
2439 	if (fo->show_counters != 0) {
2440 		for (n = 0; n < rcnt; n++,
2441 		    rtlv = (ipfw_obj_tlv *)((caddr_t)rtlv + rtlv->length)) {
2442 			cntr = (struct ip_fw_bcounter *)(rtlv + 1);
2443 			r = (struct ip_fw_rule *)((caddr_t)cntr + cntr->size);
2444 			/* skip rules from another set */
2445 			if (co->use_set && r->set != co->use_set - 1)
2446 				continue;
2447 
2448 			/* packet counter */
2449 			width = pr_u64(NULL, &cntr->pcnt, 0);
2450 			if (width > pcwidth)
2451 				pcwidth = width;
2452 
2453 			/* byte counter */
2454 			width = pr_u64(NULL, &cntr->bcnt, 0);
2455 			if (width > bcwidth)
2456 				bcwidth = width;
2457 		}
2458 	}
2459 	fo->bcwidth = bcwidth;
2460 	fo->pcwidth = pcwidth;
2461 
2462 	fo->dcnt = 0;
2463 	if (co->do_dynamic && dynsz > 0)
2464 		foreach_state(co, fo, dynbase, dynsz, prepare_format_dyn, NULL);
2465 }
2466 
2467 static int
2468 list_static_range(struct cmdline_opts *co, struct format_opts *fo,
2469     struct buf_pr *bp, ipfw_obj_tlv *rtlv, int rcnt)
2470 {
2471 	int n, seen;
2472 	struct ip_fw_rule *r;
2473 	struct ip_fw_bcounter *cntr;
2474 	int c = 0;
2475 
2476 	for (n = seen = 0; n < rcnt; n++,
2477 	    rtlv = (ipfw_obj_tlv *)((caddr_t)rtlv + rtlv->length)) {
2478 
2479 		if ((fo->show_counters | fo->show_time) != 0) {
2480 			cntr = (struct ip_fw_bcounter *)(rtlv + 1);
2481 			r = (struct ip_fw_rule *)((caddr_t)cntr + cntr->size);
2482 		} else {
2483 			cntr = NULL;
2484 			r = (struct ip_fw_rule *)(rtlv + 1);
2485 		}
2486 		if (r->rulenum > fo->last)
2487 			break;
2488 		if (co->use_set && r->set != co->use_set - 1)
2489 			continue;
2490 		if (r->rulenum >= fo->first && r->rulenum <= fo->last) {
2491 			show_static_rule(co, fo, bp, r, cntr);
2492 			printf("%s", bp->buf);
2493 			c += rtlv->length;
2494 			bp_flush(bp);
2495 			seen++;
2496 		}
2497 	}
2498 
2499 	return (seen);
2500 }
2501 
2502 static void
2503 list_dyn_state(struct cmdline_opts *co, struct format_opts *fo,
2504     void *_arg, void *_state)
2505 {
2506 	uint16_t rulenum;
2507 	uint8_t set;
2508 	ipfw_dyn_rule *d;
2509 	struct buf_pr *bp;
2510 
2511 	d = (ipfw_dyn_rule *)_state;
2512 	bp = (struct buf_pr *)_arg;
2513 
2514 	bcopy(&d->rule, &rulenum, sizeof(rulenum));
2515 	if (rulenum > fo->last)
2516 		return;
2517 	if (co->use_set) {
2518 		bcopy((char *)&d->rule + sizeof(uint16_t),
2519 		      &set, sizeof(uint8_t));
2520 		if (set != co->use_set - 1)
2521 			return;
2522 	}
2523 	if (rulenum >= fo->first) {
2524 		show_dyn_state(co, fo, bp, d);
2525 		printf("%s\n", bp->buf);
2526 		bp_flush(bp);
2527 	}
2528 }
2529 
2530 static int
2531 list_dyn_range(struct cmdline_opts *co, struct format_opts *fo,
2532     struct buf_pr *bp, caddr_t base, size_t sz)
2533 {
2534 
2535 	sz = foreach_state(co, fo, base, sz, list_dyn_state, bp);
2536 	return (sz);
2537 }
2538 
2539 void
2540 ipfw_list(int ac, char *av[], int show_counters)
2541 {
2542 	ipfw_cfg_lheader *cfg;
2543 	struct format_opts sfo;
2544 	size_t sz;
2545 	int error;
2546 	int lac;
2547 	char **lav;
2548 	uint32_t rnum;
2549 	char *endptr;
2550 
2551 	if (co.test_only) {
2552 		fprintf(stderr, "Testing only, list disabled\n");
2553 		return;
2554 	}
2555 	if (co.do_pipe) {
2556 		dummynet_list(ac, av, show_counters);
2557 		return;
2558 	}
2559 
2560 	ac--;
2561 	av++;
2562 	memset(&sfo, 0, sizeof(sfo));
2563 
2564 	/* Determine rule range to request */
2565 	if (ac > 0) {
2566 		for (lac = ac, lav = av; lac != 0; lac--) {
2567 			rnum = strtoul(*lav++, &endptr, 10);
2568 			if (sfo.first == 0 || rnum < sfo.first)
2569 				sfo.first = rnum;
2570 
2571 			if (*endptr == '-')
2572 				rnum = strtoul(endptr + 1, &endptr, 10);
2573 			if (sfo.last == 0 || rnum > sfo.last)
2574 				sfo.last = rnum;
2575 		}
2576 	}
2577 
2578 	/* get configuraion from kernel */
2579 	cfg = NULL;
2580 	sfo.show_counters = show_counters;
2581 	sfo.show_time = co.do_time;
2582 	sfo.flags = IPFW_CFG_GET_STATIC;
2583 	if (co.do_dynamic != 0)
2584 		sfo.flags |= IPFW_CFG_GET_STATES;
2585 	if ((sfo.show_counters | sfo.show_time) != 0)
2586 		sfo.flags |= IPFW_CFG_GET_COUNTERS;
2587 	if (ipfw_get_config(&co, &sfo, &cfg, &sz) != 0)
2588 		err(EX_OSERR, "retrieving config failed");
2589 
2590 	error = ipfw_show_config(&co, &sfo, cfg, sz, ac, av);
2591 
2592 	free(cfg);
2593 
2594 	if (error != EX_OK)
2595 		exit(error);
2596 }
2597 
2598 static int
2599 ipfw_show_config(struct cmdline_opts *co, struct format_opts *fo,
2600     ipfw_cfg_lheader *cfg, size_t sz, int ac, char *av[])
2601 {
2602 	caddr_t dynbase;
2603 	size_t dynsz;
2604 	int rcnt;
2605 	int exitval = EX_OK;
2606 	int lac;
2607 	char **lav;
2608 	char *endptr;
2609 	size_t readsz;
2610 	struct buf_pr bp;
2611 	ipfw_obj_ctlv *ctlv, *tstate;
2612 	ipfw_obj_tlv *rbase;
2613 
2614 	/*
2615 	 * Handle tablenames TLV first, if any
2616 	 */
2617 	tstate = NULL;
2618 	rbase = NULL;
2619 	dynbase = NULL;
2620 	dynsz = 0;
2621 	readsz = sizeof(*cfg);
2622 	rcnt = 0;
2623 
2624 	fo->set_mask = cfg->set_mask;
2625 
2626 	ctlv = (ipfw_obj_ctlv *)(cfg + 1);
2627 
2628 	if (cfg->flags & IPFW_CFG_GET_STATIC) {
2629 		/* We've requested static rules */
2630 		if (ctlv->head.type == IPFW_TLV_TBLNAME_LIST) {
2631 			object_sort_ctlv(ctlv);
2632 			fo->tstate = ctlv;
2633 			readsz += ctlv->head.length;
2634 			ctlv = (ipfw_obj_ctlv *)((caddr_t)ctlv +
2635 			    ctlv->head.length);
2636 		}
2637 
2638 		if (ctlv->head.type == IPFW_TLV_RULE_LIST) {
2639 			rbase = (ipfw_obj_tlv *)(ctlv + 1);
2640 			rcnt = ctlv->count;
2641 			readsz += ctlv->head.length;
2642 			ctlv = (ipfw_obj_ctlv *)((caddr_t)ctlv +
2643 			    ctlv->head.length);
2644 		}
2645 	}
2646 
2647 	if ((cfg->flags & IPFW_CFG_GET_STATES) && (readsz != sz))  {
2648 		/* We may have some dynamic states */
2649 		dynsz = sz - readsz;
2650 		/* Skip empty header */
2651 		if (dynsz != sizeof(ipfw_obj_ctlv))
2652 			dynbase = (caddr_t)ctlv;
2653 		else
2654 			dynsz = 0;
2655 	}
2656 
2657 	prepare_format_opts(co, fo, rbase, rcnt, dynbase, dynsz);
2658 	bp_alloc(&bp, 4096);
2659 
2660 	/* if no rule numbers were specified, list all rules */
2661 	if (ac == 0) {
2662 		fo->first = 0;
2663 		fo->last = IPFW_DEFAULT_RULE;
2664 		list_static_range(co, fo, &bp, rbase, rcnt);
2665 
2666 		if (co->do_dynamic && dynsz > 0) {
2667 			printf("## Dynamic rules (%d %zu):\n", fo->dcnt, dynsz);
2668 			list_dyn_range(co, fo, &bp, dynbase, dynsz);
2669 		}
2670 
2671 		bp_free(&bp);
2672 		return (EX_OK);
2673 	}
2674 
2675 	/* display specific rules requested on command line */
2676 	for (lac = ac, lav = av; lac != 0; lac--) {
2677 		/* convert command line rule # */
2678 		fo->last = fo->first = strtoul(*lav++, &endptr, 10);
2679 		if (*endptr == '-')
2680 			fo->last = strtoul(endptr + 1, &endptr, 10);
2681 		if (*endptr) {
2682 			exitval = EX_USAGE;
2683 			warnx("invalid rule number: %s", *(lav - 1));
2684 			continue;
2685 		}
2686 
2687 		if (list_static_range(co, fo, &bp, rbase, rcnt) == 0) {
2688 			/* give precedence to other error(s) */
2689 			if (exitval == EX_OK)
2690 				exitval = EX_UNAVAILABLE;
2691 			if (fo->first == fo->last)
2692 				warnx("rule %u does not exist", fo->first);
2693 			else
2694 				warnx("no rules in range %u-%u",
2695 				    fo->first, fo->last);
2696 		}
2697 	}
2698 
2699 	if (co->do_dynamic && dynsz > 0) {
2700 		printf("## Dynamic rules:\n");
2701 		for (lac = ac, lav = av; lac != 0; lac--) {
2702 			fo->last = fo->first = strtoul(*lav++, &endptr, 10);
2703 			if (*endptr == '-')
2704 				fo->last = strtoul(endptr+1, &endptr, 10);
2705 			if (*endptr)
2706 				/* already warned */
2707 				continue;
2708 			list_dyn_range(co, fo, &bp, dynbase, dynsz);
2709 		}
2710 	}
2711 
2712 	bp_free(&bp);
2713 	return (exitval);
2714 }
2715 
2716 
2717 /*
2718  * Retrieves current ipfw configuration of given type
2719  * and stores its pointer to @pcfg.
2720  *
2721  * Caller is responsible for freeing @pcfg.
2722  *
2723  * Returns 0 on success.
2724  */
2725 
2726 static int
2727 ipfw_get_config(struct cmdline_opts *co, struct format_opts *fo,
2728     ipfw_cfg_lheader **pcfg, size_t *psize)
2729 {
2730 	ipfw_cfg_lheader *cfg;
2731 	size_t sz;
2732 	int i;
2733 
2734 
2735 	if (co->test_only != 0) {
2736 		fprintf(stderr, "Testing only, list disabled\n");
2737 		return (0);
2738 	}
2739 
2740 	/* Start with some data size */
2741 	sz = 4096;
2742 	cfg = NULL;
2743 
2744 	for (i = 0; i < 16; i++) {
2745 		if (cfg != NULL)
2746 			free(cfg);
2747 		if ((cfg = calloc(1, sz)) == NULL)
2748 			return (ENOMEM);
2749 
2750 		cfg->flags = fo->flags;
2751 		cfg->start_rule = fo->first;
2752 		cfg->end_rule = fo->last;
2753 
2754 		if (do_get3(IP_FW_XGET, &cfg->opheader, &sz) != 0) {
2755 			if (errno != ENOMEM) {
2756 				free(cfg);
2757 				return (errno);
2758 			}
2759 
2760 			/* Buffer size is not enough. Try to increase */
2761 			sz = sz * 2;
2762 			if (sz < cfg->size)
2763 				sz = cfg->size;
2764 			continue;
2765 		}
2766 
2767 		*pcfg = cfg;
2768 		*psize = sz;
2769 		return (0);
2770 	}
2771 
2772 	free(cfg);
2773 	return (ENOMEM);
2774 }
2775 
2776 static int
2777 lookup_host (char *host, struct in_addr *ipaddr)
2778 {
2779 	struct hostent *he;
2780 
2781 	if (!inet_aton(host, ipaddr)) {
2782 		if ((he = gethostbyname(host)) == NULL)
2783 			return(-1);
2784 		*ipaddr = *(struct in_addr *)he->h_addr_list[0];
2785 	}
2786 	return(0);
2787 }
2788 
2789 struct tidx {
2790 	ipfw_obj_ntlv *idx;
2791 	uint32_t count;
2792 	uint32_t size;
2793 	uint16_t counter;
2794 	uint8_t set;
2795 };
2796 
2797 int
2798 ipfw_check_object_name(const char *name)
2799 {
2800 	int c, i, l;
2801 
2802 	/*
2803 	 * Check that name is null-terminated and contains
2804 	 * valid symbols only. Valid mask is:
2805 	 * [a-zA-Z0-9\-_\.]{1,63}
2806 	 */
2807 	l = strlen(name);
2808 	if (l == 0 || l >= 64)
2809 		return (EINVAL);
2810 	for (i = 0; i < l; i++) {
2811 		c = name[i];
2812 		if (isalpha(c) || isdigit(c) || c == '_' ||
2813 		    c == '-' || c == '.')
2814 			continue;
2815 		return (EINVAL);
2816 	}
2817 	return (0);
2818 }
2819 
2820 static int
2821 eaction_check_name(const char *name)
2822 {
2823 
2824 	if (ipfw_check_object_name(name) != 0)
2825 		return (EINVAL);
2826 	/* Restrict some 'special' names */
2827 	if (match_token(rule_actions, name) != -1 &&
2828 	    match_token(rule_action_params, name) != -1)
2829 		return (EINVAL);
2830 	return (0);
2831 }
2832 
2833 static uint16_t
2834 pack_object(struct tidx *tstate, char *name, int otype)
2835 {
2836 	int i;
2837 	ipfw_obj_ntlv *ntlv;
2838 
2839 	for (i = 0; i < tstate->count; i++) {
2840 		if (strcmp(tstate->idx[i].name, name) != 0)
2841 			continue;
2842 		if (tstate->idx[i].set != tstate->set)
2843 			continue;
2844 		if (tstate->idx[i].head.type != otype)
2845 			continue;
2846 
2847 		return (tstate->idx[i].idx);
2848 	}
2849 
2850 	if (tstate->count + 1 > tstate->size) {
2851 		tstate->size += 4;
2852 		tstate->idx = realloc(tstate->idx, tstate->size *
2853 		    sizeof(ipfw_obj_ntlv));
2854 		if (tstate->idx == NULL)
2855 			return (0);
2856 	}
2857 
2858 	ntlv = &tstate->idx[i];
2859 	memset(ntlv, 0, sizeof(ipfw_obj_ntlv));
2860 	strlcpy(ntlv->name, name, sizeof(ntlv->name));
2861 	ntlv->head.type = otype;
2862 	ntlv->head.length = sizeof(ipfw_obj_ntlv);
2863 	ntlv->set = tstate->set;
2864 	ntlv->idx = ++tstate->counter;
2865 	tstate->count++;
2866 
2867 	return (ntlv->idx);
2868 }
2869 
2870 static uint16_t
2871 pack_table(struct tidx *tstate, char *name)
2872 {
2873 
2874 	if (table_check_name(name) != 0)
2875 		return (0);
2876 
2877 	return (pack_object(tstate, name, IPFW_TLV_TBL_NAME));
2878 }
2879 
2880 static void
2881 fill_table(ipfw_insn *cmd, char *av, uint8_t opcode, struct tidx *tstate)
2882 {
2883 	uint32_t *d = ((ipfw_insn_u32 *)cmd)->d;
2884 	uint16_t uidx;
2885 	char *p;
2886 
2887 	if ((p = strchr(av + 6, ')')) == NULL)
2888 		errx(EX_DATAERR, "forgotten parenthesis: '%s'", av);
2889 	*p = '\0';
2890 	p = strchr(av + 6, ',');
2891 	if (p)
2892 		*p++ = '\0';
2893 
2894 	if ((uidx = pack_table(tstate, av + 6)) == 0)
2895 		errx(EX_DATAERR, "Invalid table name: %s", av + 6);
2896 
2897 	cmd->opcode = opcode;
2898 	cmd->arg1 = uidx;
2899 	if (p) {
2900 		cmd->len |= F_INSN_SIZE(ipfw_insn_u32);
2901 		d[0] = strtoul(p, NULL, 0);
2902 	} else
2903 		cmd->len |= F_INSN_SIZE(ipfw_insn);
2904 }
2905 
2906 
2907 /*
2908  * fills the addr and mask fields in the instruction as appropriate from av.
2909  * Update length as appropriate.
2910  * The following formats are allowed:
2911  *	me	returns O_IP_*_ME
2912  *	1.2.3.4		single IP address
2913  *	1.2.3.4:5.6.7.8	address:mask
2914  *	1.2.3.4/24	address/mask
2915  *	1.2.3.4/26{1,6,5,4,23}	set of addresses in a subnet
2916  * We can have multiple comma-separated address/mask entries.
2917  */
2918 static void
2919 fill_ip(ipfw_insn_ip *cmd, char *av, int cblen, struct tidx *tstate)
2920 {
2921 	int len = 0;
2922 	uint32_t *d = ((ipfw_insn_u32 *)cmd)->d;
2923 
2924 	cmd->o.len &= ~F_LEN_MASK;	/* zero len */
2925 
2926 	if (_substrcmp(av, "any") == 0)
2927 		return;
2928 
2929 	if (_substrcmp(av, "me") == 0) {
2930 		cmd->o.len |= F_INSN_SIZE(ipfw_insn);
2931 		return;
2932 	}
2933 
2934 	if (strncmp(av, "table(", 6) == 0) {
2935 		fill_table(&cmd->o, av, O_IP_DST_LOOKUP, tstate);
2936 		return;
2937 	}
2938 
2939     while (av) {
2940 	/*
2941 	 * After the address we can have '/' or ':' indicating a mask,
2942 	 * ',' indicating another address follows, '{' indicating a
2943 	 * set of addresses of unspecified size.
2944 	 */
2945 	char *t = NULL, *p = strpbrk(av, "/:,{");
2946 	int masklen;
2947 	char md, nd = '\0';
2948 
2949 	CHECK_LENGTH(cblen, F_INSN_SIZE(ipfw_insn) + 2 + len);
2950 
2951 	if (p) {
2952 		md = *p;
2953 		*p++ = '\0';
2954 		if ((t = strpbrk(p, ",{")) != NULL) {
2955 			nd = *t;
2956 			*t = '\0';
2957 		}
2958 	} else
2959 		md = '\0';
2960 
2961 	if (lookup_host(av, (struct in_addr *)&d[0]) != 0)
2962 		errx(EX_NOHOST, "hostname ``%s'' unknown", av);
2963 	switch (md) {
2964 	case ':':
2965 		if (!inet_aton(p, (struct in_addr *)&d[1]))
2966 			errx(EX_DATAERR, "bad netmask ``%s''", p);
2967 		break;
2968 	case '/':
2969 		masklen = atoi(p);
2970 		if (masklen == 0)
2971 			d[1] = htonl(0U);	/* mask */
2972 		else if (masklen > 32)
2973 			errx(EX_DATAERR, "bad width ``%s''", p);
2974 		else
2975 			d[1] = htonl(~0U << (32 - masklen));
2976 		break;
2977 	case '{':	/* no mask, assume /24 and put back the '{' */
2978 		d[1] = htonl(~0U << (32 - 24));
2979 		*(--p) = md;
2980 		break;
2981 
2982 	case ',':	/* single address plus continuation */
2983 		*(--p) = md;
2984 		/* FALLTHROUGH */
2985 	case 0:		/* initialization value */
2986 	default:
2987 		d[1] = htonl(~0U);	/* force /32 */
2988 		break;
2989 	}
2990 	d[0] &= d[1];		/* mask base address with mask */
2991 	if (t)
2992 		*t = nd;
2993 	/* find next separator */
2994 	if (p)
2995 		p = strpbrk(p, ",{");
2996 	if (p && *p == '{') {
2997 		/*
2998 		 * We have a set of addresses. They are stored as follows:
2999 		 *   arg1	is the set size (powers of 2, 2..256)
3000 		 *   addr	is the base address IN HOST FORMAT
3001 		 *   mask..	is an array of arg1 bits (rounded up to
3002 		 *		the next multiple of 32) with bits set
3003 		 *		for each host in the map.
3004 		 */
3005 		uint32_t *map = (uint32_t *)&cmd->mask;
3006 		int low, high;
3007 		int i = contigmask((uint8_t *)&(d[1]), 32);
3008 
3009 		if (len > 0)
3010 			errx(EX_DATAERR, "address set cannot be in a list");
3011 		if (i < 24 || i > 31)
3012 			errx(EX_DATAERR, "invalid set with mask %d\n", i);
3013 		cmd->o.arg1 = 1<<(32-i);	/* map length		*/
3014 		d[0] = ntohl(d[0]);		/* base addr in host format */
3015 		cmd->o.opcode = O_IP_DST_SET;	/* default */
3016 		cmd->o.len |= F_INSN_SIZE(ipfw_insn_u32) + (cmd->o.arg1+31)/32;
3017 		for (i = 0; i < (cmd->o.arg1+31)/32 ; i++)
3018 			map[i] = 0;	/* clear map */
3019 
3020 		av = p + 1;
3021 		low = d[0] & 0xff;
3022 		high = low + cmd->o.arg1 - 1;
3023 		/*
3024 		 * Here, i stores the previous value when we specify a range
3025 		 * of addresses within a mask, e.g. 45-63. i = -1 means we
3026 		 * have no previous value.
3027 		 */
3028 		i = -1;	/* previous value in a range */
3029 		while (isdigit(*av)) {
3030 			char *s;
3031 			int a = strtol(av, &s, 0);
3032 
3033 			if (s == av) { /* no parameter */
3034 			    if (*av != '}')
3035 				errx(EX_DATAERR, "set not closed\n");
3036 			    if (i != -1)
3037 				errx(EX_DATAERR, "incomplete range %d-", i);
3038 			    break;
3039 			}
3040 			if (a < low || a > high)
3041 			    errx(EX_DATAERR, "addr %d out of range [%d-%d]\n",
3042 				a, low, high);
3043 			a -= low;
3044 			if (i == -1)	/* no previous in range */
3045 			    i = a;
3046 			else {		/* check that range is valid */
3047 			    if (i > a)
3048 				errx(EX_DATAERR, "invalid range %d-%d",
3049 					i+low, a+low);
3050 			    if (*s == '-')
3051 				errx(EX_DATAERR, "double '-' in range");
3052 			}
3053 			for (; i <= a; i++)
3054 			    map[i/32] |= 1<<(i & 31);
3055 			i = -1;
3056 			if (*s == '-')
3057 			    i = a;
3058 			else if (*s == '}')
3059 			    break;
3060 			av = s+1;
3061 		}
3062 		return;
3063 	}
3064 	av = p;
3065 	if (av)			/* then *av must be a ',' */
3066 		av++;
3067 
3068 	/* Check this entry */
3069 	if (d[1] == 0) { /* "any", specified as x.x.x.x/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) {	/* "not any" never matches */
3077 			if (av == NULL && len == 0) /* only this entry */
3078 				errx(EX_DATAERR, "not any never matches");
3079 		}
3080 		/* else do nothing and skip this entry */
3081 		return;
3082 	}
3083 	/* A single IP can be stored in an optimized format */
3084 	if (d[1] == (uint32_t)~0 && av == NULL && len == 0) {
3085 		cmd->o.len |= F_INSN_SIZE(ipfw_insn_u32);
3086 		return;
3087 	}
3088 	len += 2;	/* two words... */
3089 	d += 2;
3090     } /* end while */
3091     if (len + 1 > F_LEN_MASK)
3092 	errx(EX_DATAERR, "address list too long");
3093     cmd->o.len |= len+1;
3094 }
3095 
3096 
3097 /* n2mask sets n bits of the mask */
3098 void
3099 n2mask(struct in6_addr *mask, int n)
3100 {
3101 	static int	minimask[9] =
3102 	    { 0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff };
3103 	u_char		*p;
3104 
3105 	memset(mask, 0, sizeof(struct in6_addr));
3106 	p = (u_char *) mask;
3107 	for (; n > 0; p++, n -= 8) {
3108 		if (n >= 8)
3109 			*p = 0xff;
3110 		else
3111 			*p = minimask[n];
3112 	}
3113 	return;
3114 }
3115 
3116 static void
3117 fill_flags_cmd(ipfw_insn *cmd, enum ipfw_opcodes opcode,
3118 	struct _s_x *flags, char *p)
3119 {
3120 	char *e;
3121 	uint32_t set = 0, clear = 0;
3122 
3123 	if (fill_flags(flags, p, &e, &set, &clear) != 0)
3124 		errx(EX_DATAERR, "invalid flag %s", e);
3125 
3126 	cmd->opcode = opcode;
3127 	cmd->len =  (cmd->len & (F_NOT | F_OR)) | 1;
3128 	cmd->arg1 = (set & 0xff) | ( (clear & 0xff) << 8);
3129 }
3130 
3131 
3132 void
3133 ipfw_delete(char *av[])
3134 {
3135 	int i, j;
3136 	int exitval = EX_OK;
3137 	int do_set = 0;
3138 	char *sep;
3139 	ipfw_range_tlv rt;
3140 
3141 	av++;
3142 	NEED1("missing rule specification");
3143 	memset(&rt, 0, sizeof(rt));
3144 	if ( *av && _substrcmp(*av, "set") == 0) {
3145 		/* Do not allow using the following syntax:
3146 		 *	ipfw set N delete set M
3147 		 */
3148 		if (co.use_set)
3149 			errx(EX_DATAERR, "invalid syntax");
3150 		do_set = 1;	/* delete set */
3151 		av++;
3152 	}
3153 
3154 	/* Rule number */
3155 	while (*av && isdigit(**av)) {
3156 		i = strtol(*av, &sep, 10);
3157 		j = i;
3158 		if (*sep== '-')
3159 			j = strtol(sep + 1, NULL, 10);
3160 		av++;
3161 		if (co.do_nat) {
3162 			exitval = do_cmd(IP_FW_NAT_DEL, &i, sizeof i);
3163 			if (exitval) {
3164 				exitval = EX_UNAVAILABLE;
3165 				warn("rule %u not available", i);
3166 			}
3167  		} else if (co.do_pipe) {
3168 			exitval = ipfw_delete_pipe(co.do_pipe, i);
3169 		} else {
3170 			if (do_set != 0) {
3171 				rt.set = i & 31;
3172 				rt.flags = IPFW_RCFLAG_SET;
3173 			} else {
3174 				rt.start_rule = i & 0xffff;
3175 				rt.end_rule = j & 0xffff;
3176 				if (rt.start_rule == 0 && rt.end_rule == 0)
3177 					rt.flags |= IPFW_RCFLAG_ALL;
3178 				else
3179 					rt.flags |= IPFW_RCFLAG_RANGE;
3180 				if (co.use_set != 0) {
3181 					rt.set = co.use_set - 1;
3182 					rt.flags |= IPFW_RCFLAG_SET;
3183 				}
3184 			}
3185 			i = do_range_cmd(IP_FW_XDEL, &rt);
3186 			if (i != 0) {
3187 				exitval = EX_UNAVAILABLE;
3188 				warn("rule %u: setsockopt(IP_FW_XDEL)",
3189 				    rt.start_rule);
3190 			} else if (rt.new_set == 0) {
3191 				exitval = EX_UNAVAILABLE;
3192 				if (rt.start_rule != rt.end_rule)
3193 					warnx("no rules rules in %u-%u range",
3194 					    rt.start_rule, rt.end_rule);
3195 				else
3196 					warnx("rule %u not found",
3197 					    rt.start_rule);
3198 			}
3199 		}
3200 	}
3201 	if (exitval != EX_OK)
3202 		exit(exitval);
3203 }
3204 
3205 
3206 /*
3207  * fill the interface structure. We do not check the name as we can
3208  * create interfaces dynamically, so checking them at insert time
3209  * makes relatively little sense.
3210  * Interface names containing '*', '?', or '[' are assumed to be shell
3211  * patterns which match interfaces.
3212  */
3213 static void
3214 fill_iface(ipfw_insn_if *cmd, char *arg, int cblen, struct tidx *tstate)
3215 {
3216 	char *p;
3217 	uint16_t uidx;
3218 
3219 	cmd->name[0] = '\0';
3220 	cmd->o.len |= F_INSN_SIZE(ipfw_insn_if);
3221 
3222 	CHECK_CMDLEN;
3223 
3224 	/* Parse the interface or address */
3225 	if (strcmp(arg, "any") == 0)
3226 		cmd->o.len = 0;		/* effectively ignore this command */
3227 	else if (strncmp(arg, "table(", 6) == 0) {
3228 		if ((p = strchr(arg + 6, ')')) == NULL)
3229 			errx(EX_DATAERR, "forgotten parenthesis: '%s'", arg);
3230 		*p = '\0';
3231 		p = strchr(arg + 6, ',');
3232 		if (p)
3233 			*p++ = '\0';
3234 		if ((uidx = pack_table(tstate, arg + 6)) == 0)
3235 			errx(EX_DATAERR, "Invalid table name: %s", arg + 6);
3236 
3237 		cmd->name[0] = '\1'; /* Special value indicating table */
3238 		cmd->p.kidx = uidx;
3239 	} else if (!isdigit(*arg)) {
3240 		strlcpy(cmd->name, arg, sizeof(cmd->name));
3241 		cmd->p.glob = strpbrk(arg, "*?[") != NULL ? 1 : 0;
3242 	} else if (!inet_aton(arg, &cmd->p.ip))
3243 		errx(EX_DATAERR, "bad ip address ``%s''", arg);
3244 }
3245 
3246 static void
3247 get_mac_addr_mask(const char *p, uint8_t *addr, uint8_t *mask)
3248 {
3249 	int i;
3250 	size_t l;
3251 	char *ap, *ptr, *optr;
3252 	struct ether_addr *mac;
3253 	const char *macset = "0123456789abcdefABCDEF:";
3254 
3255 	if (strcmp(p, "any") == 0) {
3256 		for (i = 0; i < ETHER_ADDR_LEN; i++)
3257 			addr[i] = mask[i] = 0;
3258 		return;
3259 	}
3260 
3261 	optr = ptr = strdup(p);
3262 	if ((ap = strsep(&ptr, "&/")) != NULL && *ap != 0) {
3263 		l = strlen(ap);
3264 		if (strspn(ap, macset) != l || (mac = ether_aton(ap)) == NULL)
3265 			errx(EX_DATAERR, "Incorrect MAC address");
3266 		bcopy(mac, addr, ETHER_ADDR_LEN);
3267 	} else
3268 		errx(EX_DATAERR, "Incorrect MAC address");
3269 
3270 	if (ptr != NULL) { /* we have mask? */
3271 		if (p[ptr - optr - 1] == '/') { /* mask len */
3272 			long ml = strtol(ptr, &ap, 10);
3273 			if (*ap != 0 || ml > ETHER_ADDR_LEN * 8 || ml < 0)
3274 				errx(EX_DATAERR, "Incorrect mask length");
3275 			for (i = 0; ml > 0 && i < ETHER_ADDR_LEN; ml -= 8, i++)
3276 				mask[i] = (ml >= 8) ? 0xff: (~0) << (8 - ml);
3277 		} else { /* mask */
3278 			l = strlen(ptr);
3279 			if (strspn(ptr, macset) != l ||
3280 			    (mac = ether_aton(ptr)) == NULL)
3281 				errx(EX_DATAERR, "Incorrect mask");
3282 			bcopy(mac, mask, ETHER_ADDR_LEN);
3283 		}
3284 	} else { /* default mask: ff:ff:ff:ff:ff:ff */
3285 		for (i = 0; i < ETHER_ADDR_LEN; i++)
3286 			mask[i] = 0xff;
3287 	}
3288 	for (i = 0; i < ETHER_ADDR_LEN; i++)
3289 		addr[i] &= mask[i];
3290 
3291 	free(optr);
3292 }
3293 
3294 /*
3295  * helper function, updates the pointer to cmd with the length
3296  * of the current command, and also cleans up the first word of
3297  * the new command in case it has been clobbered before.
3298  */
3299 static ipfw_insn *
3300 next_cmd(ipfw_insn *cmd, int *len)
3301 {
3302 	*len -= F_LEN(cmd);
3303 	CHECK_LENGTH(*len, 0);
3304 	cmd += F_LEN(cmd);
3305 	bzero(cmd, sizeof(*cmd));
3306 	return cmd;
3307 }
3308 
3309 /*
3310  * Takes arguments and copies them into a comment
3311  */
3312 static void
3313 fill_comment(ipfw_insn *cmd, char **av, int cblen)
3314 {
3315 	int i, l;
3316 	char *p = (char *)(cmd + 1);
3317 
3318 	cmd->opcode = O_NOP;
3319 	cmd->len =  (cmd->len & (F_NOT | F_OR));
3320 
3321 	/* Compute length of comment string. */
3322 	for (i = 0, l = 0; av[i] != NULL; i++)
3323 		l += strlen(av[i]) + 1;
3324 	if (l == 0)
3325 		return;
3326 	if (l > 84)
3327 		errx(EX_DATAERR,
3328 		    "comment too long (max 80 chars)");
3329 	l = 1 + (l+3)/4;
3330 	cmd->len =  (cmd->len & (F_NOT | F_OR)) | l;
3331 	CHECK_CMDLEN;
3332 
3333 	for (i = 0; av[i] != NULL; i++) {
3334 		strcpy(p, av[i]);
3335 		p += strlen(av[i]);
3336 		*p++ = ' ';
3337 	}
3338 	*(--p) = '\0';
3339 }
3340 
3341 /*
3342  * A function to fill simple commands of size 1.
3343  * Existing flags are preserved.
3344  */
3345 static void
3346 fill_cmd(ipfw_insn *cmd, enum ipfw_opcodes opcode, int flags, uint16_t arg)
3347 {
3348 	cmd->opcode = opcode;
3349 	cmd->len =  ((cmd->len | flags) & (F_NOT | F_OR)) | 1;
3350 	cmd->arg1 = arg;
3351 }
3352 
3353 /*
3354  * Fetch and add the MAC address and type, with masks. This generates one or
3355  * two microinstructions, and returns the pointer to the last one.
3356  */
3357 static ipfw_insn *
3358 add_mac(ipfw_insn *cmd, char *av[], int cblen)
3359 {
3360 	ipfw_insn_mac *mac;
3361 
3362 	if ( ( av[0] == NULL ) || ( av[1] == NULL ) )
3363 		errx(EX_DATAERR, "MAC dst src");
3364 
3365 	cmd->opcode = O_MACADDR2;
3366 	cmd->len = (cmd->len & (F_NOT | F_OR)) | F_INSN_SIZE(ipfw_insn_mac);
3367 	CHECK_CMDLEN;
3368 
3369 	mac = (ipfw_insn_mac *)cmd;
3370 	get_mac_addr_mask(av[0], mac->addr, mac->mask);	/* dst */
3371 	get_mac_addr_mask(av[1], &(mac->addr[ETHER_ADDR_LEN]),
3372 	    &(mac->mask[ETHER_ADDR_LEN])); /* src */
3373 	return cmd;
3374 }
3375 
3376 static ipfw_insn *
3377 add_mactype(ipfw_insn *cmd, char *av, int cblen)
3378 {
3379 	if (!av)
3380 		errx(EX_DATAERR, "missing MAC type");
3381 	if (strcmp(av, "any") != 0) { /* we have a non-null type */
3382 		fill_newports((ipfw_insn_u16 *)cmd, av, IPPROTO_ETHERTYPE,
3383 		    cblen);
3384 		cmd->opcode = O_MAC_TYPE;
3385 		return cmd;
3386 	} else
3387 		return NULL;
3388 }
3389 
3390 static ipfw_insn *
3391 add_proto0(ipfw_insn *cmd, char *av, u_char *protop)
3392 {
3393 	struct protoent *pe;
3394 	char *ep;
3395 	int proto;
3396 
3397 	proto = strtol(av, &ep, 10);
3398 	if (*ep != '\0' || proto <= 0) {
3399 		if ((pe = getprotobyname(av)) == NULL)
3400 			return NULL;
3401 		proto = pe->p_proto;
3402 	}
3403 
3404 	fill_cmd(cmd, O_PROTO, 0, proto);
3405 	*protop = proto;
3406 	return cmd;
3407 }
3408 
3409 static ipfw_insn *
3410 add_proto(ipfw_insn *cmd, char *av, u_char *protop)
3411 {
3412 	u_char proto = IPPROTO_IP;
3413 
3414 	if (_substrcmp(av, "all") == 0 || strcmp(av, "ip") == 0)
3415 		; /* do not set O_IP4 nor O_IP6 */
3416 	else if (strcmp(av, "ip4") == 0)
3417 		/* explicit "just IPv4" rule */
3418 		fill_cmd(cmd, O_IP4, 0, 0);
3419 	else if (strcmp(av, "ip6") == 0) {
3420 		/* explicit "just IPv6" rule */
3421 		proto = IPPROTO_IPV6;
3422 		fill_cmd(cmd, O_IP6, 0, 0);
3423 	} else
3424 		return add_proto0(cmd, av, protop);
3425 
3426 	*protop = proto;
3427 	return cmd;
3428 }
3429 
3430 static ipfw_insn *
3431 add_proto_compat(ipfw_insn *cmd, char *av, u_char *protop)
3432 {
3433 	u_char proto = IPPROTO_IP;
3434 
3435 	if (_substrcmp(av, "all") == 0 || strcmp(av, "ip") == 0)
3436 		; /* do not set O_IP4 nor O_IP6 */
3437 	else if (strcmp(av, "ipv4") == 0 || strcmp(av, "ip4") == 0)
3438 		/* explicit "just IPv4" rule */
3439 		fill_cmd(cmd, O_IP4, 0, 0);
3440 	else if (strcmp(av, "ipv6") == 0 || strcmp(av, "ip6") == 0) {
3441 		/* explicit "just IPv6" rule */
3442 		proto = IPPROTO_IPV6;
3443 		fill_cmd(cmd, O_IP6, 0, 0);
3444 	} else
3445 		return add_proto0(cmd, av, protop);
3446 
3447 	*protop = proto;
3448 	return cmd;
3449 }
3450 
3451 static ipfw_insn *
3452 add_srcip(ipfw_insn *cmd, char *av, int cblen, struct tidx *tstate)
3453 {
3454 	fill_ip((ipfw_insn_ip *)cmd, av, cblen, tstate);
3455 	if (cmd->opcode == O_IP_DST_SET)			/* set */
3456 		cmd->opcode = O_IP_SRC_SET;
3457 	else if (cmd->opcode == O_IP_DST_LOOKUP)		/* table */
3458 		cmd->opcode = O_IP_SRC_LOOKUP;
3459 	else if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn))		/* me */
3460 		cmd->opcode = O_IP_SRC_ME;
3461 	else if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn_u32))	/* one IP */
3462 		cmd->opcode = O_IP_SRC;
3463 	else							/* addr/mask */
3464 		cmd->opcode = O_IP_SRC_MASK;
3465 	return cmd;
3466 }
3467 
3468 static ipfw_insn *
3469 add_dstip(ipfw_insn *cmd, char *av, int cblen, struct tidx *tstate)
3470 {
3471 	fill_ip((ipfw_insn_ip *)cmd, av, cblen, tstate);
3472 	if (cmd->opcode == O_IP_DST_SET)			/* set */
3473 		;
3474 	else if (cmd->opcode == O_IP_DST_LOOKUP)		/* table */
3475 		;
3476 	else if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn))		/* me */
3477 		cmd->opcode = O_IP_DST_ME;
3478 	else if (F_LEN(cmd) == F_INSN_SIZE(ipfw_insn_u32))	/* one IP */
3479 		cmd->opcode = O_IP_DST;
3480 	else							/* addr/mask */
3481 		cmd->opcode = O_IP_DST_MASK;
3482 	return cmd;
3483 }
3484 
3485 static struct _s_x f_reserved_keywords[] = {
3486 	{ "altq",	TOK_OR },
3487 	{ "//",		TOK_OR },
3488 	{ "diverted",	TOK_OR },
3489 	{ "dst-port",	TOK_OR },
3490 	{ "src-port",	TOK_OR },
3491 	{ "established",	TOK_OR },
3492 	{ "keep-state",	TOK_OR },
3493 	{ "frag",	TOK_OR },
3494 	{ "icmptypes",	TOK_OR },
3495 	{ "in",		TOK_OR },
3496 	{ "out",	TOK_OR },
3497 	{ "ip6",	TOK_OR },
3498 	{ "any",	TOK_OR },
3499 	{ "to",		TOK_OR },
3500 	{ "via",	TOK_OR },
3501 	{ "{",		TOK_OR },
3502 	{ NULL, 0 }	/* terminator */
3503 };
3504 
3505 static ipfw_insn *
3506 add_ports(ipfw_insn *cmd, char *av, u_char proto, int opcode, int cblen)
3507 {
3508 
3509 	if (match_token(f_reserved_keywords, av) != -1)
3510 		return (NULL);
3511 
3512 	if (fill_newports((ipfw_insn_u16 *)cmd, av, proto, cblen)) {
3513 		/* XXX todo: check that we have a protocol with ports */
3514 		cmd->opcode = opcode;
3515 		return cmd;
3516 	}
3517 	return NULL;
3518 }
3519 
3520 static ipfw_insn *
3521 add_src(ipfw_insn *cmd, char *av, u_char proto, int cblen, struct tidx *tstate)
3522 {
3523 	struct in6_addr a;
3524 	char *host, *ch, buf[INET6_ADDRSTRLEN];
3525 	ipfw_insn *ret = NULL;
3526 	int len;
3527 
3528 	/* Copy first address in set if needed */
3529 	if ((ch = strpbrk(av, "/,")) != NULL) {
3530 		len = ch - av;
3531 		strlcpy(buf, av, sizeof(buf));
3532 		if (len < sizeof(buf))
3533 			buf[len] = '\0';
3534 		host = buf;
3535 	} else
3536 		host = av;
3537 
3538 	if (proto == IPPROTO_IPV6  || strcmp(av, "me6") == 0 ||
3539 	    inet_pton(AF_INET6, host, &a) == 1)
3540 		ret = add_srcip6(cmd, av, cblen);
3541 	/* XXX: should check for IPv4, not !IPv6 */
3542 	if (ret == NULL && (proto == IPPROTO_IP || strcmp(av, "me") == 0 ||
3543 	    inet_pton(AF_INET6, host, &a) != 1))
3544 		ret = add_srcip(cmd, av, cblen, tstate);
3545 	if (ret == NULL && strcmp(av, "any") != 0)
3546 		ret = cmd;
3547 
3548 	return ret;
3549 }
3550 
3551 static ipfw_insn *
3552 add_dst(ipfw_insn *cmd, char *av, u_char proto, int cblen, struct tidx *tstate)
3553 {
3554 	struct in6_addr a;
3555 	char *host, *ch, buf[INET6_ADDRSTRLEN];
3556 	ipfw_insn *ret = NULL;
3557 	int len;
3558 
3559 	/* Copy first address in set if needed */
3560 	if ((ch = strpbrk(av, "/,")) != NULL) {
3561 		len = ch - av;
3562 		strlcpy(buf, av, sizeof(buf));
3563 		if (len < sizeof(buf))
3564 			buf[len] = '\0';
3565 		host = buf;
3566 	} else
3567 		host = av;
3568 
3569 	if (proto == IPPROTO_IPV6  || strcmp(av, "me6") == 0 ||
3570 	    inet_pton(AF_INET6, host, &a) == 1)
3571 		ret = add_dstip6(cmd, av, cblen);
3572 	/* XXX: should check for IPv4, not !IPv6 */
3573 	if (ret == NULL && (proto == IPPROTO_IP || strcmp(av, "me") == 0 ||
3574 	    inet_pton(AF_INET6, host, &a) != 1))
3575 		ret = add_dstip(cmd, av, cblen, tstate);
3576 	if (ret == NULL && strcmp(av, "any") != 0)
3577 		ret = cmd;
3578 
3579 	return ret;
3580 }
3581 
3582 /*
3583  * Parse arguments and assemble the microinstructions which make up a rule.
3584  * Rules are added into the 'rulebuf' and then copied in the correct order
3585  * into the actual rule.
3586  *
3587  * The syntax for a rule starts with the action, followed by
3588  * optional action parameters, and the various match patterns.
3589  * In the assembled microcode, the first opcode must be an O_PROBE_STATE
3590  * (generated if the rule includes a keep-state option), then the
3591  * various match patterns, log/altq actions, and the actual action.
3592  *
3593  */
3594 void
3595 compile_rule(char *av[], uint32_t *rbuf, int *rbufsize, struct tidx *tstate)
3596 {
3597 	/*
3598 	 * rules are added into the 'rulebuf' and then copied in
3599 	 * the correct order into the actual rule.
3600 	 * Some things that need to go out of order (prob, action etc.)
3601 	 * go into actbuf[].
3602 	 */
3603 	static uint32_t actbuf[255], cmdbuf[255];
3604 	int rblen, ablen, cblen;
3605 
3606 	ipfw_insn *src, *dst, *cmd, *action, *prev=NULL;
3607 	ipfw_insn *first_cmd;	/* first match pattern */
3608 
3609 	struct ip_fw_rule *rule;
3610 
3611 	/*
3612 	 * various flags used to record that we entered some fields.
3613 	 */
3614 	ipfw_insn *have_state = NULL;	/* check-state or keep-state */
3615 	ipfw_insn *have_log = NULL, *have_altq = NULL, *have_tag = NULL;
3616 	size_t len;
3617 
3618 	int i;
3619 
3620 	int open_par = 0;	/* open parenthesis ( */
3621 
3622 	/* proto is here because it is used to fetch ports */
3623 	u_char proto = IPPROTO_IP;	/* default protocol */
3624 
3625 	double match_prob = 1; /* match probability, default is always match */
3626 
3627 	bzero(actbuf, sizeof(actbuf));		/* actions go here */
3628 	bzero(cmdbuf, sizeof(cmdbuf));
3629 	bzero(rbuf, *rbufsize);
3630 
3631 	rule = (struct ip_fw_rule *)rbuf;
3632 	cmd = (ipfw_insn *)cmdbuf;
3633 	action = (ipfw_insn *)actbuf;
3634 
3635 	rblen = *rbufsize / sizeof(uint32_t);
3636 	rblen -= sizeof(struct ip_fw_rule) / sizeof(uint32_t);
3637 	ablen = sizeof(actbuf) / sizeof(actbuf[0]);
3638 	cblen = sizeof(cmdbuf) / sizeof(cmdbuf[0]);
3639 	cblen -= F_INSN_SIZE(ipfw_insn_u32) + 1;
3640 
3641 #define	CHECK_RBUFLEN(len)	{ CHECK_LENGTH(rblen, len); rblen -= len; }
3642 #define	CHECK_ACTLEN		CHECK_LENGTH(ablen, action->len)
3643 
3644 	av++;
3645 
3646 	/* [rule N]	-- Rule number optional */
3647 	if (av[0] && isdigit(**av)) {
3648 		rule->rulenum = atoi(*av);
3649 		av++;
3650 	}
3651 
3652 	/* [set N]	-- set number (0..RESVD_SET), optional */
3653 	if (av[0] && av[1] && _substrcmp(*av, "set") == 0) {
3654 		int set = strtoul(av[1], NULL, 10);
3655 		if (set < 0 || set > RESVD_SET)
3656 			errx(EX_DATAERR, "illegal set %s", av[1]);
3657 		rule->set = set;
3658 		tstate->set = set;
3659 		av += 2;
3660 	}
3661 
3662 	/* [prob D]	-- match probability, optional */
3663 	if (av[0] && av[1] && _substrcmp(*av, "prob") == 0) {
3664 		match_prob = strtod(av[1], NULL);
3665 
3666 		if (match_prob <= 0 || match_prob > 1)
3667 			errx(EX_DATAERR, "illegal match prob. %s", av[1]);
3668 		av += 2;
3669 	}
3670 
3671 	/* action	-- mandatory */
3672 	NEED1("missing action");
3673 	i = match_token(rule_actions, *av);
3674 	av++;
3675 	action->len = 1;	/* default */
3676 	CHECK_ACTLEN;
3677 	switch(i) {
3678 	case TOK_CHECKSTATE:
3679 		have_state = action;
3680 		action->opcode = O_CHECK_STATE;
3681 		break;
3682 
3683 	case TOK_ACCEPT:
3684 		action->opcode = O_ACCEPT;
3685 		break;
3686 
3687 	case TOK_DENY:
3688 		action->opcode = O_DENY;
3689 		action->arg1 = 0;
3690 		break;
3691 
3692 	case TOK_REJECT:
3693 		action->opcode = O_REJECT;
3694 		action->arg1 = ICMP_UNREACH_HOST;
3695 		break;
3696 
3697 	case TOK_RESET:
3698 		action->opcode = O_REJECT;
3699 		action->arg1 = ICMP_REJECT_RST;
3700 		break;
3701 
3702 	case TOK_RESET6:
3703 		action->opcode = O_UNREACH6;
3704 		action->arg1 = ICMP6_UNREACH_RST;
3705 		break;
3706 
3707 	case TOK_UNREACH:
3708 		action->opcode = O_REJECT;
3709 		NEED1("missing reject code");
3710 		fill_reject_code(&action->arg1, *av);
3711 		av++;
3712 		break;
3713 
3714 	case TOK_UNREACH6:
3715 		action->opcode = O_UNREACH6;
3716 		NEED1("missing unreach code");
3717 		fill_unreach6_code(&action->arg1, *av);
3718 		av++;
3719 		break;
3720 
3721 	case TOK_COUNT:
3722 		action->opcode = O_COUNT;
3723 		break;
3724 
3725 	case TOK_NAT:
3726 		action->opcode = O_NAT;
3727 		action->len = F_INSN_SIZE(ipfw_insn_nat);
3728 		CHECK_ACTLEN;
3729 		if (*av != NULL && _substrcmp(*av, "global") == 0) {
3730 			action->arg1 = 0;
3731 			av++;
3732 			break;
3733 		} else
3734 			goto chkarg;
3735 	case TOK_QUEUE:
3736 		action->opcode = O_QUEUE;
3737 		goto chkarg;
3738 	case TOK_PIPE:
3739 		action->opcode = O_PIPE;
3740 		goto chkarg;
3741 	case TOK_SKIPTO:
3742 		action->opcode = O_SKIPTO;
3743 		goto chkarg;
3744 	case TOK_NETGRAPH:
3745 		action->opcode = O_NETGRAPH;
3746 		goto chkarg;
3747 	case TOK_NGTEE:
3748 		action->opcode = O_NGTEE;
3749 		goto chkarg;
3750 	case TOK_DIVERT:
3751 		action->opcode = O_DIVERT;
3752 		goto chkarg;
3753 	case TOK_TEE:
3754 		action->opcode = O_TEE;
3755 		goto chkarg;
3756 	case TOK_CALL:
3757 		action->opcode = O_CALLRETURN;
3758 chkarg:
3759 		if (!av[0])
3760 			errx(EX_USAGE, "missing argument for %s", *(av - 1));
3761 		if (isdigit(**av)) {
3762 			action->arg1 = strtoul(*av, NULL, 10);
3763 			if (action->arg1 <= 0 || action->arg1 >= IP_FW_TABLEARG)
3764 				errx(EX_DATAERR, "illegal argument for %s",
3765 				    *(av - 1));
3766 		} else if (_substrcmp(*av, "tablearg") == 0) {
3767 			action->arg1 = IP_FW_TARG;
3768 		} else if (i == TOK_DIVERT || i == TOK_TEE) {
3769 			struct servent *s;
3770 			setservent(1);
3771 			s = getservbyname(av[0], "divert");
3772 			if (s != NULL)
3773 				action->arg1 = ntohs(s->s_port);
3774 			else
3775 				errx(EX_DATAERR, "illegal divert/tee port");
3776 		} else
3777 			errx(EX_DATAERR, "illegal argument for %s", *(av - 1));
3778 		av++;
3779 		break;
3780 
3781 	case TOK_FORWARD: {
3782 		/*
3783 		 * Locate the address-port separator (':' or ',').
3784 		 * Could be one of the following:
3785 		 *	hostname:port
3786 		 *	IPv4 a.b.c.d,port
3787 		 *	IPv4 a.b.c.d:port
3788 		 *	IPv6 w:x:y::z,port
3789 		 * The ':' can only be used with hostname and IPv4 address.
3790 		 * XXX-BZ Should we also support [w:x:y::z]:port?
3791 		 */
3792 		struct sockaddr_storage result;
3793 		struct addrinfo *res;
3794 		char *s, *end;
3795 		int family;
3796 		u_short port_number;
3797 
3798 		NEED1("missing forward address[:port]");
3799 
3800 		/*
3801 		 * locate the address-port separator (':' or ',')
3802 		 */
3803 		s = strchr(*av, ',');
3804 		if (s == NULL) {
3805 			/* Distinguish between IPv4:port and IPv6 cases. */
3806 			s = strchr(*av, ':');
3807 			if (s && strchr(s+1, ':'))
3808 				s = NULL; /* no port */
3809 		}
3810 
3811 		port_number = 0;
3812 		if (s != NULL) {
3813 			/* Terminate host portion and set s to start of port. */
3814 			*(s++) = '\0';
3815 			i = strtoport(s, &end, 0 /* base */, 0 /* proto */);
3816 			if (s == end)
3817 				errx(EX_DATAERR,
3818 				    "illegal forwarding port ``%s''", s);
3819 			port_number = (u_short)i;
3820 		}
3821 
3822 		if (_substrcmp(*av, "tablearg") == 0) {
3823 			family = PF_INET;
3824 			((struct sockaddr_in*)&result)->sin_addr.s_addr =
3825 			    INADDR_ANY;
3826 		} else {
3827 			/*
3828 			 * Resolve the host name or address to a family and a
3829 			 * network representation of the address.
3830 			 */
3831 			if (getaddrinfo(*av, NULL, NULL, &res))
3832 				errx(EX_DATAERR, NULL);
3833 			/* Just use the first host in the answer. */
3834 			family = res->ai_family;
3835 			memcpy(&result, res->ai_addr, res->ai_addrlen);
3836 			freeaddrinfo(res);
3837 		}
3838 
3839  		if (family == PF_INET) {
3840 			ipfw_insn_sa *p = (ipfw_insn_sa *)action;
3841 
3842 			action->opcode = O_FORWARD_IP;
3843 			action->len = F_INSN_SIZE(ipfw_insn_sa);
3844 			CHECK_ACTLEN;
3845 
3846 			/*
3847 			 * In the kernel we assume AF_INET and use only
3848 			 * sin_port and sin_addr. Remember to set sin_len as
3849 			 * the routing code seems to use it too.
3850 			 */
3851 			p->sa.sin_len = sizeof(struct sockaddr_in);
3852 			p->sa.sin_family = AF_INET;
3853 			p->sa.sin_port = port_number;
3854 			p->sa.sin_addr.s_addr =
3855 			     ((struct sockaddr_in *)&result)->sin_addr.s_addr;
3856 		} else if (family == PF_INET6) {
3857 			ipfw_insn_sa6 *p = (ipfw_insn_sa6 *)action;
3858 
3859 			action->opcode = O_FORWARD_IP6;
3860 			action->len = F_INSN_SIZE(ipfw_insn_sa6);
3861 			CHECK_ACTLEN;
3862 
3863 			p->sa.sin6_len = sizeof(struct sockaddr_in6);
3864 			p->sa.sin6_family = AF_INET6;
3865 			p->sa.sin6_port = port_number;
3866 			p->sa.sin6_flowinfo = 0;
3867 			p->sa.sin6_scope_id =
3868 			    ((struct sockaddr_in6 *)&result)->sin6_scope_id;
3869 			bcopy(&((struct sockaddr_in6*)&result)->sin6_addr,
3870 			    &p->sa.sin6_addr, sizeof(p->sa.sin6_addr));
3871 		} else {
3872 			errx(EX_DATAERR, "Invalid address family in forward action");
3873 		}
3874 		av++;
3875 		break;
3876 	    }
3877 	case TOK_COMMENT:
3878 		/* pretend it is a 'count' rule followed by the comment */
3879 		action->opcode = O_COUNT;
3880 		av--;		/* go back... */
3881 		break;
3882 
3883 	case TOK_SETFIB:
3884 	    {
3885 		int numfibs;
3886 		size_t intsize = sizeof(int);
3887 
3888 		action->opcode = O_SETFIB;
3889 		NEED1("missing fib number");
3890 		if (_substrcmp(*av, "tablearg") == 0) {
3891 			action->arg1 = IP_FW_TARG;
3892 		} else {
3893 		        action->arg1 = strtoul(*av, NULL, 10);
3894 			if (sysctlbyname("net.fibs", &numfibs, &intsize,
3895 			    NULL, 0) == -1)
3896 				errx(EX_DATAERR, "fibs not suported.\n");
3897 			if (action->arg1 >= numfibs)  /* Temporary */
3898 				errx(EX_DATAERR, "fib too large.\n");
3899 			/* Add high-order bit to fib to make room for tablearg*/
3900 			action->arg1 |= 0x8000;
3901 		}
3902 		av++;
3903 		break;
3904 	    }
3905 
3906 	case TOK_SETDSCP:
3907 	    {
3908 		int code;
3909 
3910 		action->opcode = O_SETDSCP;
3911 		NEED1("missing DSCP code");
3912 		if (_substrcmp(*av, "tablearg") == 0) {
3913 			action->arg1 = IP_FW_TARG;
3914 		} else if (isalpha(*av[0])) {
3915 			if ((code = match_token(f_ipdscp, *av)) == -1)
3916 				errx(EX_DATAERR, "Unknown DSCP code");
3917 			action->arg1 = code;
3918 		} else
3919 		        action->arg1 = strtoul(*av, NULL, 10);
3920 		/* Add high-order bit to DSCP to make room for tablearg */
3921 		if (action->arg1 != IP_FW_TARG)
3922 			action->arg1 |= 0x8000;
3923 		av++;
3924 		break;
3925 	    }
3926 
3927 	case TOK_REASS:
3928 		action->opcode = O_REASS;
3929 		break;
3930 
3931 	case TOK_RETURN:
3932 		fill_cmd(action, O_CALLRETURN, F_NOT, 0);
3933 		break;
3934 
3935 	default:
3936 		av--;
3937 		if (match_token(rule_eactions, *av) == -1)
3938 			errx(EX_DATAERR, "invalid action %s\n", *av);
3939 		/*
3940 		 * External actions support.
3941 		 * XXX: we support only syntax with instance name.
3942 		 *	For known external actions (from rule_eactions list)
3943 		 *	we can handle syntax directly. But with `eaction'
3944 		 *	keyword we can use only `eaction <name> <instance>'
3945 		 *	syntax.
3946 		 */
3947 	case TOK_EACTION: {
3948 		uint16_t idx;
3949 
3950 		NEED1("Missing eaction name");
3951 		if (eaction_check_name(*av) != 0)
3952 			errx(EX_DATAERR, "Invalid eaction name %s", *av);
3953 		idx = pack_object(tstate, *av, IPFW_TLV_EACTION);
3954 		if (idx == 0)
3955 			errx(EX_DATAERR, "pack_object failed");
3956 		fill_cmd(action, O_EXTERNAL_ACTION, 0, idx);
3957 		av++;
3958 		NEED1("Missing eaction instance name");
3959 		action = next_cmd(action, &ablen);
3960 		action->len = 1;
3961 		CHECK_ACTLEN;
3962 		if (eaction_check_name(*av) != 0)
3963 			errx(EX_DATAERR, "Invalid eaction instance name %s",
3964 			    *av);
3965 		/*
3966 		 * External action instance object has TLV type depended
3967 		 * from the external action name object index. Since we
3968 		 * currently don't know this index, use zero as TLV type.
3969 		 */
3970 		idx = pack_object(tstate, *av, 0);
3971 		if (idx == 0)
3972 			errx(EX_DATAERR, "pack_object failed");
3973 		fill_cmd(action, O_EXTERNAL_INSTANCE, 0, idx);
3974 		av++;
3975 		}
3976 	}
3977 	action = next_cmd(action, &ablen);
3978 
3979 	/*
3980 	 * [altq queuename] -- altq tag, optional
3981 	 * [log [logamount N]]	-- log, optional
3982 	 *
3983 	 * If they exist, it go first in the cmdbuf, but then it is
3984 	 * skipped in the copy section to the end of the buffer.
3985 	 */
3986 	while (av[0] != NULL && (i = match_token(rule_action_params, *av)) != -1) {
3987 		av++;
3988 		switch (i) {
3989 		case TOK_LOG:
3990 		    {
3991 			ipfw_insn_log *c = (ipfw_insn_log *)cmd;
3992 			int l;
3993 
3994 			if (have_log)
3995 				errx(EX_DATAERR,
3996 				    "log cannot be specified more than once");
3997 			have_log = (ipfw_insn *)c;
3998 			cmd->len = F_INSN_SIZE(ipfw_insn_log);
3999 			CHECK_CMDLEN;
4000 			cmd->opcode = O_LOG;
4001 			if (av[0] && _substrcmp(*av, "logamount") == 0) {
4002 				av++;
4003 				NEED1("logamount requires argument");
4004 				l = atoi(*av);
4005 				if (l < 0)
4006 					errx(EX_DATAERR,
4007 					    "logamount must be positive");
4008 				c->max_log = l;
4009 				av++;
4010 			} else {
4011 				len = sizeof(c->max_log);
4012 				if (sysctlbyname("net.inet.ip.fw.verbose_limit",
4013 				    &c->max_log, &len, NULL, 0) == -1) {
4014 					if (co.test_only) {
4015 						c->max_log = 0;
4016 						break;
4017 					}
4018 					errx(1, "sysctlbyname(\"%s\")",
4019 					    "net.inet.ip.fw.verbose_limit");
4020 				}
4021 			}
4022 		    }
4023 			break;
4024 
4025 #ifndef NO_ALTQ
4026 		case TOK_ALTQ:
4027 		    {
4028 			ipfw_insn_altq *a = (ipfw_insn_altq *)cmd;
4029 
4030 			NEED1("missing altq queue name");
4031 			if (have_altq)
4032 				errx(EX_DATAERR,
4033 				    "altq cannot be specified more than once");
4034 			have_altq = (ipfw_insn *)a;
4035 			cmd->len = F_INSN_SIZE(ipfw_insn_altq);
4036 			CHECK_CMDLEN;
4037 			cmd->opcode = O_ALTQ;
4038 			a->qid = altq_name_to_qid(*av);
4039 			av++;
4040 		    }
4041 			break;
4042 #endif
4043 
4044 		case TOK_TAG:
4045 		case TOK_UNTAG: {
4046 			uint16_t tag;
4047 
4048 			if (have_tag)
4049 				errx(EX_USAGE, "tag and untag cannot be "
4050 				    "specified more than once");
4051 			GET_UINT_ARG(tag, IPFW_ARG_MIN, IPFW_ARG_MAX, i,
4052 			   rule_action_params);
4053 			have_tag = cmd;
4054 			fill_cmd(cmd, O_TAG, (i == TOK_TAG) ? 0: F_NOT, tag);
4055 			av++;
4056 			break;
4057 		}
4058 
4059 		default:
4060 			abort();
4061 		}
4062 		cmd = next_cmd(cmd, &cblen);
4063 	}
4064 
4065 	if (have_state)	/* must be a check-state, we are done */
4066 		goto done;
4067 
4068 #define OR_START(target)					\
4069 	if (av[0] && (*av[0] == '(' || *av[0] == '{')) { 	\
4070 		if (open_par)					\
4071 			errx(EX_USAGE, "nested \"(\" not allowed\n"); \
4072 		prev = NULL;					\
4073 		open_par = 1;					\
4074 		if ( (av[0])[1] == '\0') {			\
4075 			av++;					\
4076 		} else						\
4077 			(*av)++;				\
4078 	}							\
4079 	target:							\
4080 
4081 
4082 #define	CLOSE_PAR						\
4083 	if (open_par) {						\
4084 		if (av[0] && (					\
4085 		    strcmp(*av, ")") == 0 ||			\
4086 		    strcmp(*av, "}") == 0)) {			\
4087 			prev = NULL;				\
4088 			open_par = 0;				\
4089 			av++;					\
4090 		} else						\
4091 			errx(EX_USAGE, "missing \")\"\n");	\
4092 	}
4093 
4094 #define NOT_BLOCK						\
4095 	if (av[0] && _substrcmp(*av, "not") == 0) {		\
4096 		if (cmd->len & F_NOT)				\
4097 			errx(EX_USAGE, "double \"not\" not allowed\n"); \
4098 		cmd->len |= F_NOT;				\
4099 		av++;						\
4100 	}
4101 
4102 #define OR_BLOCK(target)					\
4103 	if (av[0] && _substrcmp(*av, "or") == 0) {		\
4104 		if (prev == NULL || open_par == 0)		\
4105 			errx(EX_DATAERR, "invalid OR block");	\
4106 		prev->len |= F_OR;				\
4107 		av++;					\
4108 		goto target;					\
4109 	}							\
4110 	CLOSE_PAR;
4111 
4112 	first_cmd = cmd;
4113 
4114 #if 0
4115 	/*
4116 	 * MAC addresses, optional.
4117 	 * If we have this, we skip the part "proto from src to dst"
4118 	 * and jump straight to the option parsing.
4119 	 */
4120 	NOT_BLOCK;
4121 	NEED1("missing protocol");
4122 	if (_substrcmp(*av, "MAC") == 0 ||
4123 	    _substrcmp(*av, "mac") == 0) {
4124 		av++;			/* the "MAC" keyword */
4125 		add_mac(cmd, av);	/* exits in case of errors */
4126 		cmd = next_cmd(cmd);
4127 		av += 2;		/* dst-mac and src-mac */
4128 		NOT_BLOCK;
4129 		NEED1("missing mac type");
4130 		if (add_mactype(cmd, av[0]))
4131 			cmd = next_cmd(cmd);
4132 		av++;			/* any or mac-type */
4133 		goto read_options;
4134 	}
4135 #endif
4136 
4137 	/*
4138 	 * protocol, mandatory
4139 	 */
4140     OR_START(get_proto);
4141 	NOT_BLOCK;
4142 	NEED1("missing protocol");
4143 	if (add_proto_compat(cmd, *av, &proto)) {
4144 		av++;
4145 		if (F_LEN(cmd) != 0) {
4146 			prev = cmd;
4147 			cmd = next_cmd(cmd, &cblen);
4148 		}
4149 	} else if (first_cmd != cmd) {
4150 		errx(EX_DATAERR, "invalid protocol ``%s''", *av);
4151 	} else
4152 		goto read_options;
4153     OR_BLOCK(get_proto);
4154 
4155 	/*
4156 	 * "from", mandatory
4157 	 */
4158 	if ((av[0] == NULL) || _substrcmp(*av, "from") != 0)
4159 		errx(EX_USAGE, "missing ``from''");
4160 	av++;
4161 
4162 	/*
4163 	 * source IP, mandatory
4164 	 */
4165     OR_START(source_ip);
4166 	NOT_BLOCK;	/* optional "not" */
4167 	NEED1("missing source address");
4168 	if (add_src(cmd, *av, proto, cblen, tstate)) {
4169 		av++;
4170 		if (F_LEN(cmd) != 0) {	/* ! any */
4171 			prev = cmd;
4172 			cmd = next_cmd(cmd, &cblen);
4173 		}
4174 	} else
4175 		errx(EX_USAGE, "bad source address %s", *av);
4176     OR_BLOCK(source_ip);
4177 
4178 	/*
4179 	 * source ports, optional
4180 	 */
4181 	NOT_BLOCK;	/* optional "not" */
4182 	if ( av[0] != NULL ) {
4183 		if (_substrcmp(*av, "any") == 0 ||
4184 		    add_ports(cmd, *av, proto, O_IP_SRCPORT, cblen)) {
4185 			av++;
4186 			if (F_LEN(cmd) != 0)
4187 				cmd = next_cmd(cmd, &cblen);
4188 		}
4189 	}
4190 
4191 	/*
4192 	 * "to", mandatory
4193 	 */
4194 	if ( (av[0] == NULL) || _substrcmp(*av, "to") != 0 )
4195 		errx(EX_USAGE, "missing ``to''");
4196 	av++;
4197 
4198 	/*
4199 	 * destination, mandatory
4200 	 */
4201     OR_START(dest_ip);
4202 	NOT_BLOCK;	/* optional "not" */
4203 	NEED1("missing dst address");
4204 	if (add_dst(cmd, *av, proto, cblen, tstate)) {
4205 		av++;
4206 		if (F_LEN(cmd) != 0) {	/* ! any */
4207 			prev = cmd;
4208 			cmd = next_cmd(cmd, &cblen);
4209 		}
4210 	} else
4211 		errx( EX_USAGE, "bad destination address %s", *av);
4212     OR_BLOCK(dest_ip);
4213 
4214 	/*
4215 	 * dest. ports, optional
4216 	 */
4217 	NOT_BLOCK;	/* optional "not" */
4218 	if (av[0]) {
4219 		if (_substrcmp(*av, "any") == 0 ||
4220 		    add_ports(cmd, *av, proto, O_IP_DSTPORT, cblen)) {
4221 			av++;
4222 			if (F_LEN(cmd) != 0)
4223 				cmd = next_cmd(cmd, &cblen);
4224 		}
4225 	}
4226 
4227 read_options:
4228 	if (av[0] && first_cmd == cmd) {
4229 		/*
4230 		 * nothing specified so far, store in the rule to ease
4231 		 * printout later.
4232 		 */
4233 		 rule->flags |= IPFW_RULE_NOOPT;
4234 	}
4235 	prev = NULL;
4236 	while ( av[0] != NULL ) {
4237 		char *s;
4238 		ipfw_insn_u32 *cmd32;	/* alias for cmd */
4239 
4240 		s = *av;
4241 		cmd32 = (ipfw_insn_u32 *)cmd;
4242 
4243 		if (*s == '!') {	/* alternate syntax for NOT */
4244 			if (cmd->len & F_NOT)
4245 				errx(EX_USAGE, "double \"not\" not allowed\n");
4246 			cmd->len = F_NOT;
4247 			s++;
4248 		}
4249 		i = match_token(rule_options, s);
4250 		av++;
4251 		switch(i) {
4252 		case TOK_NOT:
4253 			if (cmd->len & F_NOT)
4254 				errx(EX_USAGE, "double \"not\" not allowed\n");
4255 			cmd->len = F_NOT;
4256 			break;
4257 
4258 		case TOK_OR:
4259 			if (open_par == 0 || prev == NULL)
4260 				errx(EX_USAGE, "invalid \"or\" block\n");
4261 			prev->len |= F_OR;
4262 			break;
4263 
4264 		case TOK_STARTBRACE:
4265 			if (open_par)
4266 				errx(EX_USAGE, "+nested \"(\" not allowed\n");
4267 			open_par = 1;
4268 			break;
4269 
4270 		case TOK_ENDBRACE:
4271 			if (!open_par)
4272 				errx(EX_USAGE, "+missing \")\"\n");
4273 			open_par = 0;
4274 			prev = NULL;
4275 			break;
4276 
4277 		case TOK_IN:
4278 			fill_cmd(cmd, O_IN, 0, 0);
4279 			break;
4280 
4281 		case TOK_OUT:
4282 			cmd->len ^= F_NOT; /* toggle F_NOT */
4283 			fill_cmd(cmd, O_IN, 0, 0);
4284 			break;
4285 
4286 		case TOK_DIVERTED:
4287 			fill_cmd(cmd, O_DIVERTED, 0, 3);
4288 			break;
4289 
4290 		case TOK_DIVERTEDLOOPBACK:
4291 			fill_cmd(cmd, O_DIVERTED, 0, 1);
4292 			break;
4293 
4294 		case TOK_DIVERTEDOUTPUT:
4295 			fill_cmd(cmd, O_DIVERTED, 0, 2);
4296 			break;
4297 
4298 		case TOK_FRAG:
4299 			fill_cmd(cmd, O_FRAG, 0, 0);
4300 			break;
4301 
4302 		case TOK_LAYER2:
4303 			fill_cmd(cmd, O_LAYER2, 0, 0);
4304 			break;
4305 
4306 		case TOK_XMIT:
4307 		case TOK_RECV:
4308 		case TOK_VIA:
4309 			NEED1("recv, xmit, via require interface name"
4310 				" or address");
4311 			fill_iface((ipfw_insn_if *)cmd, av[0], cblen, tstate);
4312 			av++;
4313 			if (F_LEN(cmd) == 0)	/* not a valid address */
4314 				break;
4315 			if (i == TOK_XMIT)
4316 				cmd->opcode = O_XMIT;
4317 			else if (i == TOK_RECV)
4318 				cmd->opcode = O_RECV;
4319 			else if (i == TOK_VIA)
4320 				cmd->opcode = O_VIA;
4321 			break;
4322 
4323 		case TOK_ICMPTYPES:
4324 			NEED1("icmptypes requires list of types");
4325 			fill_icmptypes((ipfw_insn_u32 *)cmd, *av);
4326 			av++;
4327 			break;
4328 
4329 		case TOK_ICMP6TYPES:
4330 			NEED1("icmptypes requires list of types");
4331 			fill_icmp6types((ipfw_insn_icmp6 *)cmd, *av, cblen);
4332 			av++;
4333 			break;
4334 
4335 		case TOK_IPTTL:
4336 			NEED1("ipttl requires TTL");
4337 			if (strpbrk(*av, "-,")) {
4338 			    if (!add_ports(cmd, *av, 0, O_IPTTL, cblen))
4339 				errx(EX_DATAERR, "invalid ipttl %s", *av);
4340 			} else
4341 			    fill_cmd(cmd, O_IPTTL, 0, strtoul(*av, NULL, 0));
4342 			av++;
4343 			break;
4344 
4345 		case TOK_IPID:
4346 			NEED1("ipid requires id");
4347 			if (strpbrk(*av, "-,")) {
4348 			    if (!add_ports(cmd, *av, 0, O_IPID, cblen))
4349 				errx(EX_DATAERR, "invalid ipid %s", *av);
4350 			} else
4351 			    fill_cmd(cmd, O_IPID, 0, strtoul(*av, NULL, 0));
4352 			av++;
4353 			break;
4354 
4355 		case TOK_IPLEN:
4356 			NEED1("iplen requires length");
4357 			if (strpbrk(*av, "-,")) {
4358 			    if (!add_ports(cmd, *av, 0, O_IPLEN, cblen))
4359 				errx(EX_DATAERR, "invalid ip len %s", *av);
4360 			} else
4361 			    fill_cmd(cmd, O_IPLEN, 0, strtoul(*av, NULL, 0));
4362 			av++;
4363 			break;
4364 
4365 		case TOK_IPVER:
4366 			NEED1("ipver requires version");
4367 			fill_cmd(cmd, O_IPVER, 0, strtoul(*av, NULL, 0));
4368 			av++;
4369 			break;
4370 
4371 		case TOK_IPPRECEDENCE:
4372 			NEED1("ipprecedence requires value");
4373 			fill_cmd(cmd, O_IPPRECEDENCE, 0,
4374 			    (strtoul(*av, NULL, 0) & 7) << 5);
4375 			av++;
4376 			break;
4377 
4378 		case TOK_DSCP:
4379 			NEED1("missing DSCP code");
4380 			fill_dscp(cmd, *av, cblen);
4381 			av++;
4382 			break;
4383 
4384 		case TOK_IPOPTS:
4385 			NEED1("missing argument for ipoptions");
4386 			fill_flags_cmd(cmd, O_IPOPT, f_ipopts, *av);
4387 			av++;
4388 			break;
4389 
4390 		case TOK_IPTOS:
4391 			NEED1("missing argument for iptos");
4392 			fill_flags_cmd(cmd, O_IPTOS, f_iptos, *av);
4393 			av++;
4394 			break;
4395 
4396 		case TOK_UID:
4397 			NEED1("uid requires argument");
4398 		    {
4399 			char *end;
4400 			uid_t uid;
4401 			struct passwd *pwd;
4402 
4403 			cmd->opcode = O_UID;
4404 			uid = strtoul(*av, &end, 0);
4405 			pwd = (*end == '\0') ? getpwuid(uid) : getpwnam(*av);
4406 			if (pwd == NULL)
4407 				errx(EX_DATAERR, "uid \"%s\" nonexistent", *av);
4408 			cmd32->d[0] = pwd->pw_uid;
4409 			cmd->len |= F_INSN_SIZE(ipfw_insn_u32);
4410 			av++;
4411 		    }
4412 			break;
4413 
4414 		case TOK_GID:
4415 			NEED1("gid requires argument");
4416 		    {
4417 			char *end;
4418 			gid_t gid;
4419 			struct group *grp;
4420 
4421 			cmd->opcode = O_GID;
4422 			gid = strtoul(*av, &end, 0);
4423 			grp = (*end == '\0') ? getgrgid(gid) : getgrnam(*av);
4424 			if (grp == NULL)
4425 				errx(EX_DATAERR, "gid \"%s\" nonexistent", *av);
4426 			cmd32->d[0] = grp->gr_gid;
4427 			cmd->len |= F_INSN_SIZE(ipfw_insn_u32);
4428 			av++;
4429 		    }
4430 			break;
4431 
4432 		case TOK_JAIL:
4433 			NEED1("jail requires argument");
4434 		    {
4435 			char *end;
4436 			int jid;
4437 
4438 			cmd->opcode = O_JAIL;
4439 			jid = (int)strtol(*av, &end, 0);
4440 			if (jid < 0 || *end != '\0')
4441 				errx(EX_DATAERR, "jail requires prison ID");
4442 			cmd32->d[0] = (uint32_t)jid;
4443 			cmd->len |= F_INSN_SIZE(ipfw_insn_u32);
4444 			av++;
4445 		    }
4446 			break;
4447 
4448 		case TOK_ESTAB:
4449 			fill_cmd(cmd, O_ESTAB, 0, 0);
4450 			break;
4451 
4452 		case TOK_SETUP:
4453 			fill_cmd(cmd, O_TCPFLAGS, 0,
4454 				(TH_SYN) | ( (TH_ACK) & 0xff) <<8 );
4455 			break;
4456 
4457 		case TOK_TCPDATALEN:
4458 			NEED1("tcpdatalen requires length");
4459 			if (strpbrk(*av, "-,")) {
4460 			    if (!add_ports(cmd, *av, 0, O_TCPDATALEN, cblen))
4461 				errx(EX_DATAERR, "invalid tcpdata len %s", *av);
4462 			} else
4463 			    fill_cmd(cmd, O_TCPDATALEN, 0,
4464 				    strtoul(*av, NULL, 0));
4465 			av++;
4466 			break;
4467 
4468 		case TOK_TCPOPTS:
4469 			NEED1("missing argument for tcpoptions");
4470 			fill_flags_cmd(cmd, O_TCPOPTS, f_tcpopts, *av);
4471 			av++;
4472 			break;
4473 
4474 		case TOK_TCPSEQ:
4475 		case TOK_TCPACK:
4476 			NEED1("tcpseq/tcpack requires argument");
4477 			cmd->len = F_INSN_SIZE(ipfw_insn_u32);
4478 			cmd->opcode = (i == TOK_TCPSEQ) ? O_TCPSEQ : O_TCPACK;
4479 			cmd32->d[0] = htonl(strtoul(*av, NULL, 0));
4480 			av++;
4481 			break;
4482 
4483 		case TOK_TCPWIN:
4484 			NEED1("tcpwin requires length");
4485 			if (strpbrk(*av, "-,")) {
4486 			    if (!add_ports(cmd, *av, 0, O_TCPWIN, cblen))
4487 				errx(EX_DATAERR, "invalid tcpwin len %s", *av);
4488 			} else
4489 			    fill_cmd(cmd, O_TCPWIN, 0,
4490 				    strtoul(*av, NULL, 0));
4491 			av++;
4492 			break;
4493 
4494 		case TOK_TCPFLAGS:
4495 			NEED1("missing argument for tcpflags");
4496 			cmd->opcode = O_TCPFLAGS;
4497 			fill_flags_cmd(cmd, O_TCPFLAGS, f_tcpflags, *av);
4498 			av++;
4499 			break;
4500 
4501 		case TOK_KEEPSTATE:
4502 			if (open_par)
4503 				errx(EX_USAGE, "keep-state cannot be part "
4504 				    "of an or block");
4505 			if (have_state)
4506 				errx(EX_USAGE, "only one of keep-state "
4507 					"and limit is allowed");
4508 			have_state = cmd;
4509 			fill_cmd(cmd, O_KEEP_STATE, 0, 0);
4510 			break;
4511 
4512 		case TOK_LIMIT: {
4513 			ipfw_insn_limit *c = (ipfw_insn_limit *)cmd;
4514 			int val;
4515 
4516 			if (open_par)
4517 				errx(EX_USAGE,
4518 				    "limit cannot be part of an or block");
4519 			if (have_state)
4520 				errx(EX_USAGE, "only one of keep-state and "
4521 				    "limit is allowed");
4522 			have_state = cmd;
4523 
4524 			cmd->len = F_INSN_SIZE(ipfw_insn_limit);
4525 			CHECK_CMDLEN;
4526 			cmd->opcode = O_LIMIT;
4527 			c->limit_mask = c->conn_limit = 0;
4528 
4529 			while ( av[0] != NULL ) {
4530 				if ((val = match_token(limit_masks, *av)) <= 0)
4531 					break;
4532 				c->limit_mask |= val;
4533 				av++;
4534 			}
4535 
4536 			if (c->limit_mask == 0)
4537 				errx(EX_USAGE, "limit: missing limit mask");
4538 
4539 			GET_UINT_ARG(c->conn_limit, IPFW_ARG_MIN, IPFW_ARG_MAX,
4540 			    TOK_LIMIT, rule_options);
4541 
4542 			av++;
4543 			break;
4544 		}
4545 
4546 		case TOK_PROTO:
4547 			NEED1("missing protocol");
4548 			if (add_proto(cmd, *av, &proto)) {
4549 				av++;
4550 			} else
4551 				errx(EX_DATAERR, "invalid protocol ``%s''",
4552 				    *av);
4553 			break;
4554 
4555 		case TOK_SRCIP:
4556 			NEED1("missing source IP");
4557 			if (add_srcip(cmd, *av, cblen, tstate)) {
4558 				av++;
4559 			}
4560 			break;
4561 
4562 		case TOK_DSTIP:
4563 			NEED1("missing destination IP");
4564 			if (add_dstip(cmd, *av, cblen, tstate)) {
4565 				av++;
4566 			}
4567 			break;
4568 
4569 		case TOK_SRCIP6:
4570 			NEED1("missing source IP6");
4571 			if (add_srcip6(cmd, *av, cblen)) {
4572 				av++;
4573 			}
4574 			break;
4575 
4576 		case TOK_DSTIP6:
4577 			NEED1("missing destination IP6");
4578 			if (add_dstip6(cmd, *av, cblen)) {
4579 				av++;
4580 			}
4581 			break;
4582 
4583 		case TOK_SRCPORT:
4584 			NEED1("missing source port");
4585 			if (_substrcmp(*av, "any") == 0 ||
4586 			    add_ports(cmd, *av, proto, O_IP_SRCPORT, cblen)) {
4587 				av++;
4588 			} else
4589 				errx(EX_DATAERR, "invalid source port %s", *av);
4590 			break;
4591 
4592 		case TOK_DSTPORT:
4593 			NEED1("missing destination port");
4594 			if (_substrcmp(*av, "any") == 0 ||
4595 			    add_ports(cmd, *av, proto, O_IP_DSTPORT, cblen)) {
4596 				av++;
4597 			} else
4598 				errx(EX_DATAERR, "invalid destination port %s",
4599 				    *av);
4600 			break;
4601 
4602 		case TOK_MAC:
4603 			if (add_mac(cmd, av, cblen))
4604 				av += 2;
4605 			break;
4606 
4607 		case TOK_MACTYPE:
4608 			NEED1("missing mac type");
4609 			if (!add_mactype(cmd, *av, cblen))
4610 				errx(EX_DATAERR, "invalid mac type %s", *av);
4611 			av++;
4612 			break;
4613 
4614 		case TOK_VERREVPATH:
4615 			fill_cmd(cmd, O_VERREVPATH, 0, 0);
4616 			break;
4617 
4618 		case TOK_VERSRCREACH:
4619 			fill_cmd(cmd, O_VERSRCREACH, 0, 0);
4620 			break;
4621 
4622 		case TOK_ANTISPOOF:
4623 			fill_cmd(cmd, O_ANTISPOOF, 0, 0);
4624 			break;
4625 
4626 		case TOK_IPSEC:
4627 			fill_cmd(cmd, O_IPSEC, 0, 0);
4628 			break;
4629 
4630 		case TOK_IPV6:
4631 			fill_cmd(cmd, O_IP6, 0, 0);
4632 			break;
4633 
4634 		case TOK_IPV4:
4635 			fill_cmd(cmd, O_IP4, 0, 0);
4636 			break;
4637 
4638 		case TOK_EXT6HDR:
4639 			fill_ext6hdr( cmd, *av );
4640 			av++;
4641 			break;
4642 
4643 		case TOK_FLOWID:
4644 			if (proto != IPPROTO_IPV6 )
4645 				errx( EX_USAGE, "flow-id filter is active "
4646 				    "only for ipv6 protocol\n");
4647 			fill_flow6( (ipfw_insn_u32 *) cmd, *av, cblen);
4648 			av++;
4649 			break;
4650 
4651 		case TOK_COMMENT:
4652 			fill_comment(cmd, av, cblen);
4653 			av[0]=NULL;
4654 			break;
4655 
4656 		case TOK_TAGGED:
4657 			if (av[0] && strpbrk(*av, "-,")) {
4658 				if (!add_ports(cmd, *av, 0, O_TAGGED, cblen))
4659 					errx(EX_DATAERR, "tagged: invalid tag"
4660 					    " list: %s", *av);
4661 			}
4662 			else {
4663 				uint16_t tag;
4664 
4665 				GET_UINT_ARG(tag, IPFW_ARG_MIN, IPFW_ARG_MAX,
4666 				    TOK_TAGGED, rule_options);
4667 				fill_cmd(cmd, O_TAGGED, 0, tag);
4668 			}
4669 			av++;
4670 			break;
4671 
4672 		case TOK_FIB:
4673 			NEED1("fib requires fib number");
4674 			fill_cmd(cmd, O_FIB, 0, strtoul(*av, NULL, 0));
4675 			av++;
4676 			break;
4677 		case TOK_SOCKARG:
4678 			fill_cmd(cmd, O_SOCKARG, 0, 0);
4679 			break;
4680 
4681 		case TOK_LOOKUP: {
4682 			ipfw_insn_u32 *c = (ipfw_insn_u32 *)cmd;
4683 			int j;
4684 
4685 			if (!av[0] || !av[1])
4686 				errx(EX_USAGE, "format: lookup argument tablenum");
4687 			cmd->opcode = O_IP_DST_LOOKUP;
4688 			cmd->len |= F_INSN_SIZE(ipfw_insn) + 2;
4689 			i = match_token(rule_options, *av);
4690 			for (j = 0; lookup_key[j] >= 0 ; j++) {
4691 				if (i == lookup_key[j])
4692 					break;
4693 			}
4694 			if (lookup_key[j] <= 0)
4695 				errx(EX_USAGE, "format: cannot lookup on %s", *av);
4696 			__PAST_END(c->d, 1) = j; // i converted to option
4697 			av++;
4698 
4699 			if ((j = pack_table(tstate, *av)) == 0)
4700 				errx(EX_DATAERR, "Invalid table name: %s", *av);
4701 
4702 			cmd->arg1 = j;
4703 			av++;
4704 		    }
4705 			break;
4706 		case TOK_FLOW:
4707 			NEED1("missing table name");
4708 			if (strncmp(*av, "table(", 6) != 0)
4709 				errx(EX_DATAERR,
4710 				    "enclose table name into \"table()\"");
4711 			fill_table(cmd, *av, O_IP_FLOW_LOOKUP, tstate);
4712 			av++;
4713 			break;
4714 
4715 		default:
4716 			errx(EX_USAGE, "unrecognised option [%d] %s\n", i, s);
4717 		}
4718 		if (F_LEN(cmd) > 0) {	/* prepare to advance */
4719 			prev = cmd;
4720 			cmd = next_cmd(cmd, &cblen);
4721 		}
4722 	}
4723 
4724 done:
4725 	/*
4726 	 * Now copy stuff into the rule.
4727 	 * If we have a keep-state option, the first instruction
4728 	 * must be a PROBE_STATE (which is generated here).
4729 	 * If we have a LOG option, it was stored as the first command,
4730 	 * and now must be moved to the top of the action part.
4731 	 */
4732 	dst = (ipfw_insn *)rule->cmd;
4733 
4734 	/*
4735 	 * First thing to write into the command stream is the match probability.
4736 	 */
4737 	if (match_prob != 1) { /* 1 means always match */
4738 		dst->opcode = O_PROB;
4739 		dst->len = 2;
4740 		*((int32_t *)(dst+1)) = (int32_t)(match_prob * 0x7fffffff);
4741 		dst += dst->len;
4742 	}
4743 
4744 	/*
4745 	 * generate O_PROBE_STATE if necessary
4746 	 */
4747 	if (have_state && have_state->opcode != O_CHECK_STATE) {
4748 		fill_cmd(dst, O_PROBE_STATE, 0, 0);
4749 		dst = next_cmd(dst, &rblen);
4750 	}
4751 
4752 	/* copy all commands but O_LOG, O_KEEP_STATE, O_LIMIT, O_ALTQ, O_TAG */
4753 	for (src = (ipfw_insn *)cmdbuf; src != cmd; src += i) {
4754 		i = F_LEN(src);
4755 		CHECK_RBUFLEN(i);
4756 
4757 		switch (src->opcode) {
4758 		case O_LOG:
4759 		case O_KEEP_STATE:
4760 		case O_LIMIT:
4761 		case O_ALTQ:
4762 		case O_TAG:
4763 			break;
4764 		default:
4765 			bcopy(src, dst, i * sizeof(uint32_t));
4766 			dst += i;
4767 		}
4768 	}
4769 
4770 	/*
4771 	 * put back the have_state command as last opcode
4772 	 */
4773 	if (have_state && have_state->opcode != O_CHECK_STATE) {
4774 		i = F_LEN(have_state);
4775 		CHECK_RBUFLEN(i);
4776 		bcopy(have_state, dst, i * sizeof(uint32_t));
4777 		dst += i;
4778 	}
4779 	/*
4780 	 * start action section
4781 	 */
4782 	rule->act_ofs = dst - rule->cmd;
4783 
4784 	/* put back O_LOG, O_ALTQ, O_TAG if necessary */
4785 	if (have_log) {
4786 		i = F_LEN(have_log);
4787 		CHECK_RBUFLEN(i);
4788 		bcopy(have_log, dst, i * sizeof(uint32_t));
4789 		dst += i;
4790 	}
4791 	if (have_altq) {
4792 		i = F_LEN(have_altq);
4793 		CHECK_RBUFLEN(i);
4794 		bcopy(have_altq, dst, i * sizeof(uint32_t));
4795 		dst += i;
4796 	}
4797 	if (have_tag) {
4798 		i = F_LEN(have_tag);
4799 		CHECK_RBUFLEN(i);
4800 		bcopy(have_tag, dst, i * sizeof(uint32_t));
4801 		dst += i;
4802 	}
4803 
4804 	/*
4805 	 * copy all other actions
4806 	 */
4807 	for (src = (ipfw_insn *)actbuf; src != action; src += i) {
4808 		i = F_LEN(src);
4809 		CHECK_RBUFLEN(i);
4810 		bcopy(src, dst, i * sizeof(uint32_t));
4811 		dst += i;
4812 	}
4813 
4814 	rule->cmd_len = (uint32_t *)dst - (uint32_t *)(rule->cmd);
4815 	*rbufsize = (char *)dst - (char *)rule;
4816 }
4817 
4818 static int
4819 compare_ntlv(const void *_a, const void *_b)
4820 {
4821 	ipfw_obj_ntlv *a, *b;
4822 
4823 	a = (ipfw_obj_ntlv *)_a;
4824 	b = (ipfw_obj_ntlv *)_b;
4825 
4826 	if (a->set < b->set)
4827 		return (-1);
4828 	else if (a->set > b->set)
4829 		return (1);
4830 
4831 	if (a->idx < b->idx)
4832 		return (-1);
4833 	else if (a->idx > b->idx)
4834 		return (1);
4835 
4836 	if (a->head.type < b->head.type)
4837 		return (-1);
4838 	else if (a->head.type > b->head.type)
4839 		return (1);
4840 
4841 	return (0);
4842 }
4843 
4844 /*
4845  * Provide kernel with sorted list of referenced objects
4846  */
4847 static void
4848 object_sort_ctlv(ipfw_obj_ctlv *ctlv)
4849 {
4850 
4851 	qsort(ctlv + 1, ctlv->count, ctlv->objsize, compare_ntlv);
4852 }
4853 
4854 struct object_kt {
4855 	uint16_t	uidx;
4856 	uint16_t	type;
4857 };
4858 static int
4859 compare_object_kntlv(const void *k, const void *v)
4860 {
4861 	ipfw_obj_ntlv *ntlv;
4862 	struct object_kt key;
4863 
4864 	key = *((struct object_kt *)k);
4865 	ntlv = (ipfw_obj_ntlv *)v;
4866 
4867 	if (key.uidx < ntlv->idx)
4868 		return (-1);
4869 	else if (key.uidx > ntlv->idx)
4870 		return (1);
4871 
4872 	if (key.type < ntlv->head.type)
4873 		return (-1);
4874 	else if (key.type > ntlv->head.type)
4875 		return (1);
4876 
4877 	return (0);
4878 }
4879 
4880 /*
4881  * Finds object name in @ctlv by @idx and @type.
4882  * Uses the following facts:
4883  * 1) All TLVs are the same size
4884  * 2) Kernel implementation provides already sorted list.
4885  *
4886  * Returns table name or NULL.
4887  */
4888 static char *
4889 object_search_ctlv(ipfw_obj_ctlv *ctlv, uint16_t idx, uint16_t type)
4890 {
4891 	ipfw_obj_ntlv *ntlv;
4892 	struct object_kt key;
4893 
4894 	key.uidx = idx;
4895 	key.type = type;
4896 
4897 	ntlv = bsearch(&key, (ctlv + 1), ctlv->count, ctlv->objsize,
4898 	    compare_object_kntlv);
4899 
4900 	if (ntlv != NULL)
4901 		return (ntlv->name);
4902 
4903 	return (NULL);
4904 }
4905 
4906 static char *
4907 table_search_ctlv(ipfw_obj_ctlv *ctlv, uint16_t idx)
4908 {
4909 
4910 	return (object_search_ctlv(ctlv, idx, IPFW_TLV_TBL_NAME));
4911 }
4912 
4913 /*
4914  * Adds one or more rules to ipfw chain.
4915  * Data layout:
4916  * Request:
4917  * [
4918  *   ip_fw3_opheader
4919  *   [ ipfw_obj_ctlv(IPFW_TLV_TBL_LIST) ipfw_obj_ntlv x N ] (optional *1)
4920  *   [ ipfw_obj_ctlv(IPFW_TLV_RULE_LIST) [ ip_fw_rule ip_fw_insn ] x N ] (*2) (*3)
4921  * ]
4922  * Reply:
4923  * [
4924  *   ip_fw3_opheader
4925  *   [ ipfw_obj_ctlv(IPFW_TLV_TBL_LIST) ipfw_obj_ntlv x N ] (optional)
4926  *   [ ipfw_obj_ctlv(IPFW_TLV_RULE_LIST) [ ip_fw_rule ip_fw_insn ] x N ]
4927  * ]
4928  *
4929  * Rules in reply are modified to store their actual ruleset number.
4930  *
4931  * (*1) TLVs inside IPFW_TLV_TBL_LIST needs to be sorted ascending
4932  * according to their idx field and there has to be no duplicates.
4933  * (*2) Numbered rules inside IPFW_TLV_RULE_LIST needs to be sorted ascending.
4934  * (*3) Each ip_fw structure needs to be aligned to u64 boundary.
4935  */
4936 void
4937 ipfw_add(char *av[])
4938 {
4939 	uint32_t rulebuf[1024];
4940 	int rbufsize, default_off, tlen, rlen;
4941 	size_t sz;
4942 	struct tidx ts;
4943 	struct ip_fw_rule *rule;
4944 	caddr_t tbuf;
4945 	ip_fw3_opheader *op3;
4946 	ipfw_obj_ctlv *ctlv, *tstate;
4947 
4948 	rbufsize = sizeof(rulebuf);
4949 	memset(rulebuf, 0, rbufsize);
4950 	memset(&ts, 0, sizeof(ts));
4951 
4952 	/* Optimize case with no tables */
4953 	default_off = sizeof(ipfw_obj_ctlv) + sizeof(ip_fw3_opheader);
4954 	op3 = (ip_fw3_opheader *)rulebuf;
4955 	ctlv = (ipfw_obj_ctlv *)(op3 + 1);
4956 	rule = (struct ip_fw_rule *)(ctlv + 1);
4957 	rbufsize -= default_off;
4958 
4959 	compile_rule(av, (uint32_t *)rule, &rbufsize, &ts);
4960 	/* Align rule size to u64 boundary */
4961 	rlen = roundup2(rbufsize, sizeof(uint64_t));
4962 
4963 	tbuf = NULL;
4964 	sz = 0;
4965 	tstate = NULL;
4966 	if (ts.count != 0) {
4967 		/* Some tables. We have to alloc more data */
4968 		tlen = ts.count * sizeof(ipfw_obj_ntlv);
4969 		sz = default_off + sizeof(ipfw_obj_ctlv) + tlen + rlen;
4970 
4971 		if ((tbuf = calloc(1, sz)) == NULL)
4972 			err(EX_UNAVAILABLE, "malloc() failed for IP_FW_ADD");
4973 		op3 = (ip_fw3_opheader *)tbuf;
4974 		/* Tables first */
4975 		ctlv = (ipfw_obj_ctlv *)(op3 + 1);
4976 		ctlv->head.type = IPFW_TLV_TBLNAME_LIST;
4977 		ctlv->head.length = sizeof(ipfw_obj_ctlv) + tlen;
4978 		ctlv->count = ts.count;
4979 		ctlv->objsize = sizeof(ipfw_obj_ntlv);
4980 		memcpy(ctlv + 1, ts.idx, tlen);
4981 		object_sort_ctlv(ctlv);
4982 		tstate = ctlv;
4983 		/* Rule next */
4984 		ctlv = (ipfw_obj_ctlv *)((caddr_t)ctlv + ctlv->head.length);
4985 		ctlv->head.type = IPFW_TLV_RULE_LIST;
4986 		ctlv->head.length = sizeof(ipfw_obj_ctlv) + rlen;
4987 		ctlv->count = 1;
4988 		memcpy(ctlv + 1, rule, rbufsize);
4989 	} else {
4990 		/* Simply add header */
4991 		sz = rlen + default_off;
4992 		memset(ctlv, 0, sizeof(*ctlv));
4993 		ctlv->head.type = IPFW_TLV_RULE_LIST;
4994 		ctlv->head.length = sizeof(ipfw_obj_ctlv) + rlen;
4995 		ctlv->count = 1;
4996 	}
4997 
4998 	if (do_get3(IP_FW_XADD, op3, &sz) != 0)
4999 		err(EX_UNAVAILABLE, "getsockopt(%s)", "IP_FW_XADD");
5000 
5001 	if (!co.do_quiet) {
5002 		struct format_opts sfo;
5003 		struct buf_pr bp;
5004 		memset(&sfo, 0, sizeof(sfo));
5005 		sfo.tstate = tstate;
5006 		sfo.set_mask = (uint32_t)(-1);
5007 		bp_alloc(&bp, 4096);
5008 		show_static_rule(&co, &sfo, &bp, rule, NULL);
5009 		printf("%s", bp.buf);
5010 		bp_free(&bp);
5011 	}
5012 
5013 	if (tbuf != NULL)
5014 		free(tbuf);
5015 
5016 	if (ts.idx != NULL)
5017 		free(ts.idx);
5018 }
5019 
5020 /*
5021  * clear the counters or the log counters.
5022  * optname has the following values:
5023  *  0 (zero both counters and logging)
5024  *  1 (zero logging only)
5025  */
5026 void
5027 ipfw_zero(int ac, char *av[], int optname)
5028 {
5029 	ipfw_range_tlv rt;
5030 	uint32_t arg;
5031 	int failed = EX_OK;
5032 	char const *errstr;
5033 	char const *name = optname ? "RESETLOG" : "ZERO";
5034 
5035 	optname = optname ? IP_FW_XRESETLOG : IP_FW_XZERO;
5036 	memset(&rt, 0, sizeof(rt));
5037 
5038 	av++; ac--;
5039 
5040 	if (ac == 0) {
5041 		/* clear all entries */
5042 		rt.flags = IPFW_RCFLAG_ALL;
5043 		if (do_range_cmd(optname, &rt) < 0)
5044 			err(EX_UNAVAILABLE, "setsockopt(IP_FW_X%s)", name);
5045 		if (!co.do_quiet)
5046 			printf("%s.\n", optname == IP_FW_XZERO ?
5047 			    "Accounting cleared":"Logging counts reset");
5048 
5049 		return;
5050 	}
5051 
5052 	while (ac) {
5053 		/* Rule number */
5054 		if (isdigit(**av)) {
5055 			arg = strtonum(*av, 0, 0xffff, &errstr);
5056 			if (errstr)
5057 				errx(EX_DATAERR,
5058 				    "invalid rule number %s\n", *av);
5059 			rt.start_rule = arg;
5060 			rt.end_rule = arg;
5061 			rt.flags |= IPFW_RCFLAG_RANGE;
5062 			if (co.use_set != 0) {
5063 				rt.set = co.use_set - 1;
5064 				rt.flags |= IPFW_RCFLAG_SET;
5065 			}
5066 			if (do_range_cmd(optname, &rt) != 0) {
5067 				warn("rule %u: setsockopt(IP_FW_X%s)",
5068 				    arg, name);
5069 				failed = EX_UNAVAILABLE;
5070 			} else if (rt.new_set == 0) {
5071 				printf("Entry %d not found\n", arg);
5072 				failed = EX_UNAVAILABLE;
5073 			} else if (!co.do_quiet)
5074 				printf("Entry %d %s.\n", arg,
5075 				    optname == IP_FW_XZERO ?
5076 					"cleared" : "logging count reset");
5077 		} else {
5078 			errx(EX_USAGE, "invalid rule number ``%s''", *av);
5079 		}
5080 		av++; ac--;
5081 	}
5082 	if (failed != EX_OK)
5083 		exit(failed);
5084 }
5085 
5086 void
5087 ipfw_flush(int force)
5088 {
5089 	ipfw_range_tlv rt;
5090 
5091 	if (!force && !co.do_quiet) { /* need to ask user */
5092 		int c;
5093 
5094 		printf("Are you sure? [yn] ");
5095 		fflush(stdout);
5096 		do {
5097 			c = toupper(getc(stdin));
5098 			while (c != '\n' && getc(stdin) != '\n')
5099 				if (feof(stdin))
5100 					return; /* and do not flush */
5101 		} while (c != 'Y' && c != 'N');
5102 		printf("\n");
5103 		if (c == 'N')	/* user said no */
5104 			return;
5105 	}
5106 	if (co.do_pipe) {
5107 		dummynet_flush();
5108 		return;
5109 	}
5110 	/* `ipfw set N flush` - is the same that `ipfw delete set N` */
5111 	memset(&rt, 0, sizeof(rt));
5112 	if (co.use_set != 0) {
5113 		rt.set = co.use_set - 1;
5114 		rt.flags = IPFW_RCFLAG_SET;
5115 	} else
5116 		rt.flags = IPFW_RCFLAG_ALL;
5117 	if (do_range_cmd(IP_FW_XDEL, &rt) != 0)
5118 			err(EX_UNAVAILABLE, "setsockopt(IP_FW_XDEL)");
5119 	if (!co.do_quiet)
5120 		printf("Flushed all %s.\n", co.do_pipe ? "pipes" : "rules");
5121 }
5122 
5123 static struct _s_x intcmds[] = {
5124       { "talist",	TOK_TALIST },
5125       { "iflist",	TOK_IFLIST },
5126       { "olist",	TOK_OLIST },
5127       { "vlist",	TOK_VLIST },
5128       { NULL, 0 }
5129 };
5130 
5131 static void
5132 ipfw_list_objects(int ac, char *av[])
5133 {
5134 	ipfw_obj_lheader req, *olh;
5135 	ipfw_obj_ntlv *ntlv;
5136 	size_t sz;
5137 	int i;
5138 
5139 	memset(&req, 0, sizeof(req));
5140 	sz = sizeof(req);
5141 	if (do_get3(IP_FW_DUMP_SRVOBJECTS, &req.opheader, &sz) != 0)
5142 		if (errno != ENOMEM)
5143 			return;
5144 
5145 	sz = req.size;
5146 	if ((olh = calloc(1, sz)) == NULL)
5147 		return;
5148 
5149 	olh->size = sz;
5150 	if (do_get3(IP_FW_DUMP_SRVOBJECTS, &olh->opheader, &sz) != 0) {
5151 		free(olh);
5152 		return;
5153 	}
5154 
5155 	if (olh->count > 0)
5156 		printf("Objects list:\n");
5157 	else
5158 		printf("There are no objects\n");
5159 	ntlv = (ipfw_obj_ntlv *)(olh + 1);
5160 	for (i = 0; i < olh->count; i++) {
5161 		printf(" kidx: %4d\ttype: %6d\tname: %s\n", ntlv->idx,
5162 		    ntlv->head.type, ntlv->name);
5163 		ntlv++;
5164 	}
5165 	free(olh);
5166 }
5167 
5168 void
5169 ipfw_internal_handler(int ac, char *av[])
5170 {
5171 	int tcmd;
5172 
5173 	ac--; av++;
5174 	NEED1("internal cmd required");
5175 
5176 	if ((tcmd = match_token(intcmds, *av)) == -1)
5177 		errx(EX_USAGE, "invalid internal sub-cmd: %s", *av);
5178 
5179 	switch (tcmd) {
5180 	case TOK_IFLIST:
5181 		ipfw_list_tifaces();
5182 		break;
5183 	case TOK_TALIST:
5184 		ipfw_list_ta(ac, av);
5185 		break;
5186 	case TOK_OLIST:
5187 		ipfw_list_objects(ac, av);
5188 		break;
5189 	case TOK_VLIST:
5190 		ipfw_list_values(ac, av);
5191 		break;
5192 	}
5193 }
5194 
5195 static int
5196 ipfw_get_tracked_ifaces(ipfw_obj_lheader **polh)
5197 {
5198 	ipfw_obj_lheader req, *olh;
5199 	size_t sz;
5200 
5201 	memset(&req, 0, sizeof(req));
5202 	sz = sizeof(req);
5203 
5204 	if (do_get3(IP_FW_XIFLIST, &req.opheader, &sz) != 0) {
5205 		if (errno != ENOMEM)
5206 			return (errno);
5207 	}
5208 
5209 	sz = req.size;
5210 	if ((olh = calloc(1, sz)) == NULL)
5211 		return (ENOMEM);
5212 
5213 	olh->size = sz;
5214 	if (do_get3(IP_FW_XIFLIST, &olh->opheader, &sz) != 0) {
5215 		free(olh);
5216 		return (errno);
5217 	}
5218 
5219 	*polh = olh;
5220 	return (0);
5221 }
5222 
5223 static int
5224 ifinfo_cmp(const void *a, const void *b)
5225 {
5226 	ipfw_iface_info *ia, *ib;
5227 
5228 	ia = (ipfw_iface_info *)a;
5229 	ib = (ipfw_iface_info *)b;
5230 
5231 	return (stringnum_cmp(ia->ifname, ib->ifname));
5232 }
5233 
5234 /*
5235  * Retrieves table list from kernel,
5236  * optionally sorts it and calls requested function for each table.
5237  * Returns 0 on success.
5238  */
5239 static void
5240 ipfw_list_tifaces()
5241 {
5242 	ipfw_obj_lheader *olh;
5243 	ipfw_iface_info *info;
5244 	int i, error;
5245 
5246 	if ((error = ipfw_get_tracked_ifaces(&olh)) != 0)
5247 		err(EX_OSERR, "Unable to request ipfw tracked interface list");
5248 
5249 
5250 	qsort(olh + 1, olh->count, olh->objsize, ifinfo_cmp);
5251 
5252 	info = (ipfw_iface_info *)(olh + 1);
5253 	for (i = 0; i < olh->count; i++) {
5254 		if (info->flags & IPFW_IFFLAG_RESOLVED)
5255 			printf("%s ifindex: %d refcount: %u changes: %u\n",
5256 			    info->ifname, info->ifindex, info->refcnt,
5257 			    info->gencnt);
5258 		else
5259 			printf("%s ifindex: unresolved refcount: %u changes: %u\n",
5260 			    info->ifname, info->refcnt, info->gencnt);
5261 		info = (ipfw_iface_info *)((caddr_t)info + olh->objsize);
5262 	}
5263 
5264 	free(olh);
5265 }
5266 
5267 
5268 
5269 
5270