2 * Copyright (c) 2002 Luigi Rizzo
3 * Copyright (c) 1996 Alex Nash, Paul Traina, Poul-Henning Kamp
4 * Copyright (c) 1994 Ugen J.S.Antsilevich
6 * Idea and grammar partially left from:
7 * Copyright (c) 1993 Daniel Boulet
9 * Redistribution and use in source forms, with and without modification,
10 * are permitted provided that this entire comment appears intact.
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.
16 * This software is provided ``AS IS'' without any warranties of any kind.
18 * NEW command line interface for IP firewall facility
20 * $FreeBSD: src/sbin/ipfw/ipfw2.c,v 1.4.2.13 2003/05/27 22:21:11 gshapiro Exp $
21 * $DragonFly: src/sbin/ipfw/ipfw2.c,v 1.12 2007/11/05 08:58:35 sephe Exp $
24 #include <sys/param.h>
26 #include <sys/socket.h>
27 #include <sys/sockio.h>
28 #include <sys/sysctl.h>
48 #include <netinet/in.h>
49 #include <netinet/in_systm.h>
50 #include <netinet/ip.h>
51 #include <netinet/ip_icmp.h>
52 #include <net/ipfw/ip_fw.h>
53 #include <net/route.h> /* def. of struct route */
54 #include <net/ethernet.h>
55 #include <net/dummynet/ip_dummynet.h>
56 #include <netinet/tcp.h>
57 #include <arpa/inet.h>
59 int s
, /* main RAW socket */
60 do_resolv
, /* Would try to resolve all */
61 do_acct
, /* Show packet/byte count */
62 do_time
, /* Show time stamps */
63 do_quiet
, /* Be quiet in add and flush */
64 do_force
, /* Don't ask for confirmation */
65 do_pipe
, /* this cmd refers to a pipe */
66 do_sort
, /* field to sort results (0 = no) */
67 do_dynamic
, /* display dynamic rules */
68 do_expired
, /* display expired dynamic rules */
69 do_compact
, /* show rules in compact mode */
70 show_sets
, /* display rule sets */
73 #define IP_MASK_ALL 0xffffffff
76 * structure to hold flag names and associated values to be
77 * set in the appropriate masks.
78 * A NULL string terminates the array.
79 * Often, an element with 0 value contains an error string.
87 static struct _s_x f_tcpflags
[] = {
98 static struct _s_x f_tcpopts
[] = {
99 { "mss", IP_FW_TCPOPT_MSS
},
100 { "maxseg", IP_FW_TCPOPT_MSS
},
101 { "window", IP_FW_TCPOPT_WINDOW
},
102 { "sack", IP_FW_TCPOPT_SACK
},
103 { "ts", IP_FW_TCPOPT_TS
},
104 { "timestamp", IP_FW_TCPOPT_TS
},
105 { "cc", IP_FW_TCPOPT_CC
},
111 * IP options span the range 0 to 255 so we need to remap them
112 * (though in fact only the low 5 bits are significant).
114 static struct _s_x f_ipopts
[] = {
115 { "ssrr", IP_FW_IPOPT_SSRR
},
116 { "lsrr", IP_FW_IPOPT_LSRR
},
117 { "rr", IP_FW_IPOPT_RR
},
118 { "ts", IP_FW_IPOPT_TS
},
123 static struct _s_x f_iptos
[] = {
124 { "lowdelay", IPTOS_LOWDELAY
},
125 { "throughput", IPTOS_THROUGHPUT
},
126 { "reliability", IPTOS_RELIABILITY
},
127 { "mincost", IPTOS_MINCOST
},
128 { "congestion", IPTOS_CE
},
129 { "ecntransport", IPTOS_ECT
},
130 { "ip tos option", 0},
134 static struct _s_x limit_masks
[] = {
135 {"all", DYN_SRC_ADDR
|DYN_SRC_PORT
|DYN_DST_ADDR
|DYN_DST_PORT
},
136 {"src-addr", DYN_SRC_ADDR
},
137 {"src-port", DYN_SRC_PORT
},
138 {"dst-addr", DYN_DST_ADDR
},
139 {"dst-port", DYN_DST_PORT
},
144 * we use IPPROTO_ETHERTYPE as a fake protocol id to call the print routines
145 * This is only used in this code.
147 #define IPPROTO_ETHERTYPE 0x1000
148 static struct _s_x ether_types
[] = {
150 * Note, we cannot use "-:&/" in the names because they are field
151 * separators in the type specifications. Also, we use s = NULL as
152 * end-delimiter, because a type of 0 can be legal.
165 { "pppoe_disc", 0x8863 },
166 { "pppoe_sess", 0x8864 },
167 { "ipx_8022", 0x00E0 },
168 { "ipx_8023", 0x0000 },
169 { "ipx_ii", 0x8137 },
170 { "ipx_snap", 0x8137 },
176 static void show_usage(void);
247 struct _s_x dummynet_params
[] = {
249 { "noerror", TOK_NOERROR
},
250 { "buckets", TOK_BUCKETS
},
251 { "dst-ip", TOK_DSTIP
},
252 { "src-ip", TOK_SRCIP
},
253 { "dst-port", TOK_DSTPORT
},
254 { "src-port", TOK_SRCPORT
},
255 { "proto", TOK_PROTO
},
256 { "weight", TOK_WEIGHT
},
258 { "mask", TOK_MASK
},
259 { "droptail", TOK_DROPTAIL
},
261 { "gred", TOK_GRED
},
263 { "bandwidth", TOK_BW
},
264 { "delay", TOK_DELAY
},
265 { "pipe", TOK_PIPE
},
266 { "queue", TOK_QUEUE
},
267 { "dummynet-params", TOK_NULL
},
271 struct _s_x rule_actions
[] = {
272 { "accept", TOK_ACCEPT
},
273 { "pass", TOK_ACCEPT
},
274 { "allow", TOK_ACCEPT
},
275 { "permit", TOK_ACCEPT
},
276 { "count", TOK_COUNT
},
277 { "pipe", TOK_PIPE
},
278 { "queue", TOK_QUEUE
},
279 { "divert", TOK_DIVERT
},
281 { "fwd", TOK_FORWARD
},
282 { "forward", TOK_FORWARD
},
283 { "skipto", TOK_SKIPTO
},
284 { "deny", TOK_DENY
},
285 { "drop", TOK_DENY
},
286 { "reject", TOK_REJECT
},
287 { "reset", TOK_RESET
},
288 { "unreach", TOK_UNREACH
},
289 { "check-state", TOK_CHECKSTATE
},
294 struct _s_x rule_options
[] = {
298 { "limit", TOK_LIMIT
},
299 { "keep-state", TOK_KEEPSTATE
},
300 { "layer2", TOK_LAYER2
},
302 { "xmit", TOK_XMIT
},
303 { "recv", TOK_RECV
},
305 { "fragment", TOK_FRAG
},
306 { "frag", TOK_FRAG
},
307 { "ipoptions", TOK_IPOPTS
},
308 { "ipopts", TOK_IPOPTS
},
309 { "iplen", TOK_IPLEN
},
310 { "ipid", TOK_IPID
},
311 { "ipprecedence", TOK_IPPRECEDENCE
},
312 { "iptos", TOK_IPTOS
},
313 { "ipttl", TOK_IPTTL
},
314 { "ipversion", TOK_IPVER
},
315 { "ipver", TOK_IPVER
},
316 { "estab", TOK_ESTAB
},
317 { "established", TOK_ESTAB
},
318 { "setup", TOK_SETUP
},
319 { "tcpflags", TOK_TCPFLAGS
},
320 { "tcpflgs", TOK_TCPFLAGS
},
321 { "tcpoptions", TOK_TCPOPTS
},
322 { "tcpopts", TOK_TCPOPTS
},
323 { "tcpseq", TOK_TCPSEQ
},
324 { "tcpack", TOK_TCPACK
},
325 { "tcpwin", TOK_TCPWIN
},
326 { "icmptype", TOK_ICMPTYPES
},
327 { "icmptypes", TOK_ICMPTYPES
},
328 { "dst-ip", TOK_DSTIP
},
329 { "src-ip", TOK_SRCIP
},
330 { "dst-port", TOK_DSTPORT
},
331 { "src-port", TOK_SRCPORT
},
332 { "proto", TOK_PROTO
},
335 { "mac-type", TOK_MACTYPE
},
337 { "not", TOK_NOT
}, /* pseudo option */
338 { "!", /* escape ? */ TOK_NOT
}, /* pseudo option */
339 { "or", TOK_OR
}, /* pseudo option */
340 { "|", /* escape */ TOK_OR
}, /* pseudo option */
341 { "{", TOK_STARTBRACE
}, /* pseudo option */
342 { "(", TOK_STARTBRACE
}, /* pseudo option */
343 { "}", TOK_ENDBRACE
}, /* pseudo option */
344 { ")", TOK_ENDBRACE
}, /* pseudo option */
350 * match_token takes a table and a string, returns the value associated
351 * with the string (0 meaning an error in most cases)
354 match_token(struct _s_x
*table
, char *string
)
357 int i
= strlen(string
);
359 for (pt
= table
; i
&& pt
->s
!= NULL
; pt
++)
360 if (strlen(pt
->s
) == i
&& !bcmp(string
, pt
->s
, i
))
366 match_value(struct _s_x
*p
, u_int32_t value
)
368 for (; p
->s
!= NULL
; p
++)
375 * prints one port, symbolic or numeric
378 print_port(int proto
, u_int16_t port
)
381 if (proto
== IPPROTO_ETHERTYPE
) {
384 if (do_resolv
&& (s
= match_value(ether_types
, port
)) )
387 printf("0x%04x", port
);
389 struct servent
*se
= NULL
;
391 struct protoent
*pe
= getprotobynumber(proto
);
393 se
= getservbyport(htons(port
), pe
? pe
->p_name
: NULL
);
396 printf("%s", se
->s_name
);
403 * print the values in a list of ports
404 * XXX todo: add support for mask.
407 print_newports(ipfw_insn_u16
*cmd
, int proto
, int opcode
)
409 u_int16_t
*p
= cmd
->ports
;
413 if (cmd
->o
.len
& F_NOT
)
416 printf ("%s", opcode
== O_MAC_TYPE
? " mac-type" :
417 (opcode
== O_IP_DSTPORT
? " dst-port" : " src-port"));
418 for (i
= F_LEN((ipfw_insn
*)cmd
) - 1; i
> 0; i
--, p
+= 2) {
420 print_port(proto
, p
[0]);
423 print_port(proto
, p
[1]);
430 * Like strtol, but also translates service names into port numbers
431 * for some protocols.
433 * proto == -1 disables the protocol check;
434 * proto == IPPROTO_ETHERTYPE looks up an internal table
435 * proto == <some value in /etc/protocols> matches the values there.
436 * Returns *end == s in case the parameter is not found.
439 strtoport(char *s
, char **end
, int base
, int proto
)
445 *end
= s
; /* default - not found */
447 return 0; /* not found */
450 return strtol(s
, end
, base
);
453 * find separator. '\\' escapes the next char.
455 for (s1
= s
; *s1
&& (isalnum(*s1
) || *s1
== '\\') ; s1
++)
456 if (*s1
== '\\' && s1
[1] != '\0')
459 buf
= malloc(s1
- s
+ 1);
464 * copy into a buffer skipping backslashes
466 for (p
= s
, i
= 0; p
!= s1
; p
++)
471 if (proto
== IPPROTO_ETHERTYPE
) {
472 i
= match_token(ether_types
, buf
);
474 if (i
!= -1) { /* found */
479 struct protoent
*pe
= NULL
;
483 pe
= getprotobynumber(proto
);
485 se
= getservbyname(buf
, pe
? pe
->p_name
: NULL
);
489 return ntohs(se
->s_port
);
492 return 0; /* not found */
496 * fill the body of the command with the list of port ranges.
497 * At the moment it only understands numeric ranges.
500 fill_newports(ipfw_insn_u16
*cmd
, char *av
, int proto
)
502 u_int16_t
*p
= cmd
->ports
;
509 a
= strtoport(av
, &s
, 0, proto
);
510 if (s
== av
) /* no parameter */
512 if (*s
== '-') { /* a range */
514 b
= strtoport(av
, &s
, 0, proto
);
515 if (s
== av
) /* no parameter */
519 } else if (*s
== ',' || *s
== '\0' ) {
521 } else { /* invalid separator */
522 errx(EX_DATAERR
, "invalid separator <%c> in <%s>\n",
530 if (i
+1 > F_LEN_MASK
)
531 errx(EX_DATAERR
, "too many ports/ranges\n");
532 cmd
->o
.len
|= i
+1; /* leave F_NOT and F_OR untouched */
537 static struct _s_x icmpcodes
[] = {
538 { "net", ICMP_UNREACH_NET
},
539 { "host", ICMP_UNREACH_HOST
},
540 { "protocol", ICMP_UNREACH_PROTOCOL
},
541 { "port", ICMP_UNREACH_PORT
},
542 { "needfrag", ICMP_UNREACH_NEEDFRAG
},
543 { "srcfail", ICMP_UNREACH_SRCFAIL
},
544 { "net-unknown", ICMP_UNREACH_NET_UNKNOWN
},
545 { "host-unknown", ICMP_UNREACH_HOST_UNKNOWN
},
546 { "isolated", ICMP_UNREACH_ISOLATED
},
547 { "net-prohib", ICMP_UNREACH_NET_PROHIB
},
548 { "host-prohib", ICMP_UNREACH_HOST_PROHIB
},
549 { "tosnet", ICMP_UNREACH_TOSNET
},
550 { "toshost", ICMP_UNREACH_TOSHOST
},
551 { "filter-prohib", ICMP_UNREACH_FILTER_PROHIB
},
552 { "host-precedence", ICMP_UNREACH_HOST_PRECEDENCE
},
553 { "precedence-cutoff", ICMP_UNREACH_PRECEDENCE_CUTOFF
},
558 fill_reject_code(u_short
*codep
, char *str
)
563 val
= strtoul(str
, &s
, 0);
564 if (s
== str
|| *s
!= '\0' || val
>= 0x100)
565 val
= match_token(icmpcodes
, str
);
567 errx(EX_DATAERR
, "unknown ICMP unreachable code ``%s''", str
);
573 print_reject_code(u_int16_t code
)
575 char *s
= match_value(icmpcodes
, code
);
578 printf("unreach %s", s
);
580 printf("unreach %u", code
);
584 * Returns the number of bits set (from left) in a contiguous bitmask,
585 * or -1 if the mask is not contiguous.
586 * XXX this needs a proper fix.
587 * This effectively works on masks in big-endian (network) format.
588 * when compiled on little endian architectures.
590 * First bit is bit 7 of the first byte -- note, for MAC addresses,
591 * the first bit on the wire is bit 0 of the first byte.
592 * len is the max length in bits.
595 contigmask(u_char
*p
, int len
)
598 for (i
=0; i
<len
; i
++)
599 if ( (p
[i
/8] & (1 << (7 - (i
%8)))) == 0) /* first bit unset */
601 for (n
=i
+1; n
< len
; n
++)
602 if ( (p
[n
/8] & (1 << (7 - (n
%8)))) != 0)
603 return -1; /* mask not contiguous */
608 * print flags set/clear in the two bitmasks passed as parameters.
609 * There is a specialized check for f_tcpflags.
612 print_flags(char *name
, ipfw_insn
*cmd
, struct _s_x
*list
)
616 u_char set
= cmd
->arg1
& 0xff;
617 u_char clear
= (cmd
->arg1
>> 8) & 0xff;
619 if (list
== f_tcpflags
&& set
== TH_SYN
&& clear
== TH_ACK
) {
624 printf(" %s ", name
);
625 for (i
=0; list
[i
].x
!= 0; i
++) {
626 if (set
& list
[i
].x
) {
628 printf("%s%s", comma
, list
[i
].s
);
631 if (clear
& list
[i
].x
) {
633 printf("%s!%s", comma
, list
[i
].s
);
640 * Print the ip address contained in a command.
643 print_ip(ipfw_insn_ip
*cmd
, char *s
)
645 struct hostent
*he
= NULL
;
648 printf("%s%s ", cmd
->o
.len
& F_NOT
? " not": "", s
);
650 if (cmd
->o
.opcode
== O_IP_SRC_ME
|| cmd
->o
.opcode
== O_IP_DST_ME
) {
654 if (cmd
->o
.opcode
== O_IP_SRC_SET
|| cmd
->o
.opcode
== O_IP_DST_SET
) {
661 cmd
->addr
.s_addr
= htonl(cmd
->addr
.s_addr
);
662 printf("%s/%d", inet_ntoa(cmd
->addr
),
663 contigmask((u_char
*)&x
, 32));
664 x
= cmd
->addr
.s_addr
= htonl(cmd
->addr
.s_addr
);
665 x
&= 0xff; /* base */
666 d
= (u_int32_t
*)&(cmd
->mask
);
667 for (i
=0; i
< cmd
->o
.arg1
; i
++)
668 if (d
[ i
/32] & (1<<(i
& 31))) {
669 printf("%c%d", comma
, i
+x
);
675 if (cmd
->o
.opcode
== O_IP_SRC
|| cmd
->o
.opcode
== O_IP_DST
)
678 mb
= contigmask((u_char
*)&(cmd
->mask
.s_addr
), 32);
679 if (mb
== 32 && do_resolv
)
680 he
= gethostbyaddr((char *)&(cmd
->addr
.s_addr
),
681 sizeof(u_long
), AF_INET
);
682 if (he
!= NULL
) /* resolved to name */
683 printf("%s", he
->h_name
);
684 else if (mb
== 0) /* any */
686 else { /* numeric IP followed by some kind of mask */
687 printf("%s", inet_ntoa(cmd
->addr
));
689 printf(":%s", inet_ntoa(cmd
->mask
));
696 * prints a MAC address/mask pair
699 print_mac(u_char
*addr
, u_char
*mask
)
701 int l
= contigmask(mask
, 48);
706 printf(" %02x:%02x:%02x:%02x:%02x:%02x",
707 addr
[0], addr
[1], addr
[2], addr
[3], addr
[4], addr
[5]);
709 printf("&%02x:%02x:%02x:%02x:%02x:%02x",
710 mask
[0], mask
[1], mask
[2],
711 mask
[3], mask
[4], mask
[5]);
718 fill_icmptypes(ipfw_insn_u32
*cmd
, char *av
)
727 type
= strtoul(av
, &av
, 0);
729 if (*av
!= ',' && *av
!= '\0')
730 errx(EX_DATAERR
, "invalid ICMP type");
733 errx(EX_DATAERR
, "ICMP type out of range");
735 cmd
->d
[0] |= 1 << type
;
737 cmd
->o
.opcode
= O_ICMPTYPE
;
738 cmd
->o
.len
|= F_INSN_SIZE(ipfw_insn_u32
);
742 print_icmptypes(ipfw_insn_u32
*cmd
)
747 printf(" icmptypes");
748 for (i
= 0; i
< 32; i
++) {
749 if ( (cmd
->d
[0] & (1 << (i
))) == 0)
751 printf("%c%d", sep
, i
);
757 * show_ipfw() prints the body of an ipfw rule.
758 * Because the standard rule has at least proto src_ip dst_ip, we use
759 * a helper function to produce these entries if not provided explicitly.
760 * The first argument is the list of fields we have, the second is
761 * the list of fields we want to be printed.
763 * Special cases if we have provided a MAC header:
764 * + if the rule does not contain IP addresses/ports, do not print them;
765 * + if the rule does not contain an IP proto, print "all" instead of "ip";
767 * Once we have 'have_options', IP header fields are printed as options.
769 #define HAVE_PROTO 0x0001
770 #define HAVE_SRCIP 0x0002
771 #define HAVE_DSTIP 0x0004
772 #define HAVE_MAC 0x0008
773 #define HAVE_MACTYPE 0x0010
774 #define HAVE_OPTIONS 0x8000
776 #define HAVE_IP (HAVE_PROTO | HAVE_SRCIP | HAVE_DSTIP)
778 show_prerequisites(int *flags
, int want
, int cmd
)
780 if ( (*flags
& HAVE_IP
) == HAVE_IP
)
781 *flags
|= HAVE_OPTIONS
;
783 if ( (*flags
& (HAVE_MAC
|HAVE_MACTYPE
|HAVE_OPTIONS
)) == HAVE_MAC
&&
786 * mac-type was optimized out by the compiler,
790 *flags
|= HAVE_MACTYPE
| HAVE_OPTIONS
;
793 if ( !(*flags
& HAVE_OPTIONS
)) {
794 if ( !(*flags
& HAVE_PROTO
) && (want
& HAVE_PROTO
))
796 if ( !(*flags
& HAVE_SRCIP
) && (want
& HAVE_SRCIP
))
798 if ( !(*flags
& HAVE_DSTIP
) && (want
& HAVE_DSTIP
))
805 show_ipfw(struct ipfw_ioc_rule
*rule
, int pcwidth
, int bcwidth
)
807 static int twidth
= 0;
810 int proto
= 0; /* default */
811 int flags
= 0; /* prerequisites */
812 ipfw_insn_log
*logptr
= NULL
; /* set if we find an O_LOG */
813 int or_block
= 0; /* we are in an or block */
815 u_int32_t set_disable
= rule
->set_disable
;
817 if (set_disable
& (1 << rule
->set
)) { /* disabled */
821 printf("# DISABLED ");
823 printf("%05u ", rule
->rulenum
);
826 printf("%*llu %*llu ", pcwidth
, rule
->pcnt
, bcwidth
,
833 strcpy(timestr
, ctime((time_t *)&twidth
));
834 *strchr(timestr
, '\n') = '\0';
835 twidth
= strlen(timestr
);
837 if (rule
->timestamp
) {
838 #if _FreeBSD_version < 500000 /* XXX check */
839 #define _long_to_time(x) (time_t)(x)
841 time_t t
= _long_to_time(rule
->timestamp
);
843 strcpy(timestr
, ctime(&t
));
844 *strchr(timestr
, '\n') = '\0';
845 printf("%s ", timestr
);
847 printf("%*s ", twidth
, " ");
852 printf("set %d ", rule
->set
);
855 * print the optional "match probability"
857 if (rule
->cmd_len
> 0) {
859 if (cmd
->opcode
== O_PROB
) {
860 ipfw_insn_u32
*p
= (ipfw_insn_u32
*)cmd
;
861 double d
= 1.0 * p
->d
[0];
863 d
= (d
/ 0x7fffffff);
864 printf("prob %f ", d
);
869 * first print actions
871 for (l
= rule
->cmd_len
- rule
->act_ofs
, cmd
= ACTION_PTR(rule
);
872 l
> 0 ; l
-= F_LEN(cmd
), cmd
+= F_LEN(cmd
)) {
873 switch(cmd
->opcode
) {
875 printf("check-state");
876 flags
= HAVE_IP
; /* avoid printing anything else */
892 if (cmd
->arg1
== ICMP_REJECT_RST
)
894 else if (cmd
->arg1
== ICMP_UNREACH_HOST
)
897 print_reject_code(cmd
->arg1
);
901 printf("skipto %u", cmd
->arg1
);
905 printf("pipe %u", cmd
->arg1
);
909 printf("queue %u", cmd
->arg1
);
913 printf("divert %u", cmd
->arg1
);
917 printf("tee %u", cmd
->arg1
);
922 ipfw_insn_sa
*s
= (ipfw_insn_sa
*)cmd
;
924 printf("fwd %s", inet_ntoa(s
->sa
.sin_addr
));
926 printf(",%d", s
->sa
.sin_port
);
930 case O_LOG
: /* O_LOG is printed last */
931 logptr
= (ipfw_insn_log
*)cmd
;
935 printf("** unrecognized action %d len %d",
936 cmd
->opcode
, cmd
->len
);
940 if (logptr
->max_log
> 0)
941 printf(" log logamount %d", logptr
->max_log
);
947 * then print the body.
949 if (rule
->usr_flags
& IPFW_USR_F_NORULE
) {
950 /* empty rules before options */
952 printf(" ip from any to any");
953 flags
|= HAVE_IP
| HAVE_OPTIONS
;
956 for (l
= rule
->act_ofs
, cmd
= rule
->cmd
;
957 l
> 0 ; l
-= F_LEN(cmd
) , cmd
+= F_LEN(cmd
)) {
959 ipfw_insn_u32
*cmd32
= (ipfw_insn_u32
*)cmd
;
961 show_prerequisites(&flags
, 0, cmd
->opcode
);
963 switch(cmd
->opcode
) {
965 break; /* done already */
968 break; /* no need to print anything here */
971 ipfw_insn_mac
*m
= (ipfw_insn_mac
*)cmd
;
973 if ((cmd
->len
& F_OR
) && !or_block
)
975 if (cmd
->len
& F_NOT
)
979 print_mac( m
->addr
, m
->mask
);
980 print_mac( m
->addr
+ 6, m
->mask
+ 6);
985 if ((cmd
->len
& F_OR
) && !or_block
)
987 print_newports((ipfw_insn_u16
*)cmd
, IPPROTO_ETHERTYPE
,
988 (flags
& HAVE_OPTIONS
) ? cmd
->opcode
: 0);
989 flags
|= HAVE_MAC
| HAVE_MACTYPE
| HAVE_OPTIONS
;
996 show_prerequisites(&flags
, HAVE_PROTO
, 0);
997 if (!(flags
& HAVE_SRCIP
))
999 if ((cmd
->len
& F_OR
) && !or_block
)
1001 print_ip((ipfw_insn_ip
*)cmd
,
1002 (flags
& HAVE_OPTIONS
) ? " src-ip" : "");
1003 flags
|= HAVE_SRCIP
;
1010 show_prerequisites(&flags
, HAVE_PROTO
|HAVE_SRCIP
, 0);
1011 if (!(flags
& HAVE_DSTIP
))
1013 if ((cmd
->len
& F_OR
) && !or_block
)
1015 print_ip((ipfw_insn_ip
*)cmd
,
1016 (flags
& HAVE_OPTIONS
) ? " dst-ip" : "");
1017 flags
|= HAVE_DSTIP
;
1021 show_prerequisites(&flags
, HAVE_IP
, 0);
1023 show_prerequisites(&flags
, HAVE_PROTO
|HAVE_SRCIP
, 0);
1024 if ((cmd
->len
& F_OR
) && !or_block
)
1026 print_newports((ipfw_insn_u16
*)cmd
, proto
,
1027 (flags
& HAVE_OPTIONS
) ? cmd
->opcode
: 0);
1031 struct protoent
*pe
;
1033 if ((cmd
->len
& F_OR
) && !or_block
)
1035 if (cmd
->len
& F_NOT
)
1038 pe
= getprotobynumber(cmd
->arg1
);
1039 if (flags
& HAVE_OPTIONS
)
1042 printf(" %s", pe
->p_name
);
1044 printf(" %u", cmd
->arg1
);
1046 flags
|= HAVE_PROTO
;
1049 default: /*options ... */
1050 show_prerequisites(&flags
, HAVE_IP
| HAVE_OPTIONS
, 0);
1051 if ((cmd
->len
& F_OR
) && !or_block
)
1053 if (cmd
->len
& F_NOT
&& cmd
->opcode
!= O_IN
)
1055 switch(cmd
->opcode
) {
1061 printf(cmd
->len
& F_NOT
? " out" : " in");
1071 ipfw_insn_if
*cmdif
= (ipfw_insn_if
*)cmd
;
1073 if (cmd
->opcode
== O_XMIT
)
1075 else if (cmd
->opcode
== O_RECV
)
1077 else if (cmd
->opcode
== O_VIA
)
1081 if (cmdif
->name
[0] == '\0')
1083 inet_ntoa(cmdif
->p
.ip
));
1084 printf(" %s %s", s
, cmdif
->name
);
1089 printf(" ipid %u", cmd
->arg1
);
1093 printf(" ipttl %u", cmd
->arg1
);
1097 printf(" ipver %u", cmd
->arg1
);
1100 case O_IPPRECEDENCE
:
1101 printf(" ipprecedence %u", (cmd
->arg1
) >> 5 );
1105 printf(" iplen %u", cmd
->arg1
);
1109 print_flags("ipoptions", cmd
, f_ipopts
);
1113 print_flags("iptos", cmd
, f_iptos
);
1117 print_icmptypes((ipfw_insn_u32
*)cmd
);
1121 printf(" established");
1125 print_flags("tcpflags", cmd
, f_tcpflags
);
1129 print_flags("tcpoptions", cmd
, f_tcpopts
);
1133 printf(" tcpwin %d", ntohs(cmd
->arg1
));
1137 printf(" tcpack %ld", ntohl(cmd32
->d
[0]));
1141 printf(" tcpseq %ld", ntohl(cmd32
->d
[0]));
1146 struct passwd
*pwd
= getpwuid(cmd32
->d
[0]);
1149 printf(" uid %s", pwd
->pw_name
);
1151 printf(" uid %u", cmd32
->d
[0]);
1157 struct group
*grp
= getgrgid(cmd32
->d
[0]);
1160 printf(" gid %s", grp
->gr_name
);
1162 printf(" gid %u", cmd32
->d
[0]);
1167 printf(" keep-state");
1172 struct _s_x
*p
= limit_masks
;
1173 ipfw_insn_limit
*c
= (ipfw_insn_limit
*)cmd
;
1174 u_int8_t x
= c
->limit_mask
;
1178 for ( ; p
->x
!= 0 ; p
++)
1179 if ((x
& p
->x
) == p
->x
) {
1181 printf("%s%s", comma
, p
->s
);
1184 printf(" %d", c
->conn_limit
);
1189 printf(" [opcode %d len %d]",
1190 cmd
->opcode
, cmd
->len
);
1193 if (cmd
->len
& F_OR
) {
1196 } else if (or_block
) {
1201 show_prerequisites(&flags
, HAVE_IP
, 0);
1207 show_dyn_ipfw(struct ipfw_ioc_state
*d
, int pcwidth
, int bcwidth
)
1209 struct protoent
*pe
;
1213 if (!d
->expire
&& !(d
->dyn_type
== O_LIMIT_PARENT
))
1217 printf("%05u %*llu %*llu (%ds)", d
->rulenum
, pcwidth
, d
->pcnt
,
1218 bcwidth
, d
->bcnt
, d
->expire
);
1219 switch (d
->dyn_type
) {
1220 case O_LIMIT_PARENT
:
1221 printf(" PARENT %d", d
->count
);
1226 case O_KEEP_STATE
: /* bidir, no mask */
1231 if ((pe
= getprotobynumber(d
->id
.u
.ip
.proto
)) != NULL
)
1232 printf(" %s", pe
->p_name
);
1234 printf(" proto %u", d
->id
.u
.ip
.proto
);
1236 a
.s_addr
= htonl(d
->id
.u
.ip
.src_ip
);
1237 printf(" %s %d", inet_ntoa(a
), d
->id
.u
.ip
.src_port
);
1239 a
.s_addr
= htonl(d
->id
.u
.ip
.dst_ip
);
1240 printf(" <-> %s %d", inet_ntoa(a
), d
->id
.u
.ip
.dst_port
);
1245 sort_q(const void *pa
, const void *pb
)
1247 int rev
= (do_sort
< 0);
1248 int field
= rev
? -do_sort
: do_sort
;
1250 const struct dn_ioc_flowqueue
*a
= pa
;
1251 const struct dn_ioc_flowqueue
*b
= pb
;
1255 res
= a
->len
- b
->len
;
1258 res
= a
->len_bytes
- b
->len_bytes
;
1261 case 3: /* tot pkts */
1262 res
= a
->tot_pkts
- b
->tot_pkts
;
1265 case 4: /* tot bytes */
1266 res
= a
->tot_bytes
- b
->tot_bytes
;
1273 return (int)(rev
? res
: -res
);
1277 list_queues(struct dn_ioc_flowset
*fs
, struct dn_ioc_flowqueue
*q
)
1281 printf(" mask: 0x%02x 0x%08x/0x%04x -> 0x%08x/0x%04x\n",
1282 fs
->flow_mask
.u
.ip
.proto
,
1283 fs
->flow_mask
.u
.ip
.src_ip
, fs
->flow_mask
.u
.ip
.src_port
,
1284 fs
->flow_mask
.u
.ip
.dst_ip
, fs
->flow_mask
.u
.ip
.dst_port
);
1285 if (fs
->rq_elements
== 0)
1288 printf("BKT Prot ___Source IP/port____ "
1289 "____Dest. IP/port____ Tot_pkt/bytes Pkt/Byte Drp\n");
1291 heapsort(q
, fs
->rq_elements
, sizeof(*q
), sort_q
);
1292 for (l
= 0; l
< fs
->rq_elements
; l
++) {
1294 struct protoent
*pe
;
1296 ina
.s_addr
= htonl(q
[l
].id
.u
.ip
.src_ip
);
1297 printf("%3d ", q
[l
].hash_slot
);
1298 pe
= getprotobynumber(q
[l
].id
.u
.ip
.proto
);
1300 printf("%-4s ", pe
->p_name
);
1302 printf("%4u ", q
[l
].id
.u
.ip
.proto
);
1303 printf("%15s/%-5d ",
1304 inet_ntoa(ina
), q
[l
].id
.u
.ip
.src_port
);
1305 ina
.s_addr
= htonl(q
[l
].id
.u
.ip
.dst_ip
);
1306 printf("%15s/%-5d ",
1307 inet_ntoa(ina
), q
[l
].id
.u
.ip
.dst_port
);
1308 printf("%4qu %8qu %2u %4u %3u\n",
1309 q
[l
].tot_pkts
, q
[l
].tot_bytes
,
1310 q
[l
].len
, q
[l
].len_bytes
, q
[l
].drops
);
1312 printf(" S %20qd F %20qd\n",
1318 print_flowset_parms(struct dn_ioc_flowset
*fs
, char *prefix
)
1323 char red
[90]; /* Display RED parameters */
1326 if (fs
->flags_fs
& DN_QSIZE_IS_BYTES
) {
1328 sprintf(qs
, "%d KB", l
/ 1024);
1330 sprintf(qs
, "%d B", l
);
1332 sprintf(qs
, "%3d sl.", l
);
1334 sprintf(plr
, "plr %f", 1.0 * fs
->plr
/ (double)(0x7fffffff));
1337 if (fs
->flags_fs
& DN_IS_RED
) /* RED parameters */
1339 "\n\t %cRED w_q %f min_th %d max_th %d max_p %f",
1340 (fs
->flags_fs
& DN_IS_GENTLE_RED
) ? 'G' : ' ',
1341 1.0 * fs
->w_q
/ (double)(1 << SCALE_RED
),
1342 SCALE_VAL(fs
->min_th
),
1343 SCALE_VAL(fs
->max_th
),
1344 1.0 * fs
->max_p
/ (double)(1 << SCALE_RED
));
1346 sprintf(red
, "droptail");
1348 printf("%s %s%s %d queues (%d buckets) %s\n",
1349 prefix
, qs
, plr
, fs
->rq_elements
, fs
->rq_size
, red
);
1353 list_pipes(void *data
, int nbytes
, int ac
, char *av
[])
1357 struct dn_ioc_pipe
*p
= (struct dn_ioc_pipe
*)data
;
1358 struct dn_ioc_flowset
*fs
;
1359 struct dn_ioc_flowqueue
*q
;
1363 rulenum
= strtoul(*av
++, NULL
, 10);
1366 for (; nbytes
>= sizeof(*p
); p
= (struct dn_ioc_pipe
*)next
) {
1367 double b
= p
->bandwidth
;
1371 if (p
->fs
.fs_type
!= DN_IS_PIPE
)
1372 break; /* done with pipes, now queues */
1375 * compute length, as pipe have variable size
1377 l
= sizeof(*p
) + p
->fs
.rq_elements
* sizeof(*q
);
1378 next
= (void *)p
+ l
;
1381 if (rulenum
!= 0 && rulenum
!= p
->pipe_nr
)
1388 sprintf(buf
, "unlimited");
1389 else if (b
>= 1000000)
1390 sprintf(buf
, "%7.3f Mbit/s", b
/1000000);
1392 sprintf(buf
, "%7.3f Kbit/s", b
/1000);
1394 sprintf(buf
, "%7.3f bit/s ", b
);
1396 sprintf(prefix
, "%05d: %s %4d ms ",
1397 p
->pipe_nr
, buf
, p
->delay
);
1398 print_flowset_parms(&p
->fs
, prefix
);
1400 printf(" V %20qd\n", p
->V
>> MY_M
);
1402 q
= (struct dn_ioc_flowqueue
*)(p
+1);
1403 list_queues(&p
->fs
, q
);
1405 for (fs
= next
; nbytes
>= sizeof(*fs
); fs
= next
) {
1408 if (fs
->fs_type
!= DN_IS_QUEUE
)
1410 l
= sizeof(*fs
) + fs
->rq_elements
* sizeof(*q
);
1411 next
= (void *)fs
+ l
;
1413 q
= (struct dn_ioc_flowqueue
*)(fs
+1);
1414 sprintf(prefix
, "q%05d: weight %d pipe %d ",
1415 fs
->fs_nr
, fs
->weight
, fs
->parent_nr
);
1416 print_flowset_parms(fs
, prefix
);
1422 * This one handles all set-related commands
1423 * ipfw set { show | enable | disable }
1425 * ipfw set move X to Y
1426 * ipfw set move rule X to Y
1429 sets_handler(int ac
, char *av
[])
1431 u_int32_t set_disable
, masks
[2];
1434 u_int8_t cmd
, new_set
;
1440 errx(EX_USAGE
, "set needs command");
1441 if (!strncmp(*av
, "show", strlen(*av
)) ) {
1445 nbytes
= sizeof(struct ipfw_ioc_rule
);
1446 if ((data
= malloc(nbytes
)) == NULL
)
1447 err(EX_OSERR
, "malloc");
1448 if (getsockopt(s
, IPPROTO_IP
, IP_FW_GET
, data
, &nbytes
) < 0)
1449 err(EX_OSERR
, "getsockopt(IP_FW_GET)");
1450 set_disable
= ((struct ipfw_ioc_rule
*)data
)->set_disable
;
1452 for (i
= 0, msg
= "disable" ; i
< 31; i
++)
1453 if ( (set_disable
& (1<<i
))) {
1454 printf("%s %d", msg
, i
);
1457 msg
= (set_disable
) ? " enable" : "enable";
1458 for (i
= 0; i
< 31; i
++)
1459 if ( !(set_disable
& (1<<i
))) {
1460 printf("%s %d", msg
, i
);
1464 } else if (!strncmp(*av
, "swap", strlen(*av
))) {
1467 errx(EX_USAGE
, "set swap needs 2 set numbers\n");
1468 rulenum
= atoi(av
[0]);
1469 new_set
= atoi(av
[1]);
1470 if (!isdigit(*(av
[0])) || rulenum
> 30)
1471 errx(EX_DATAERR
, "invalid set number %s\n", av
[0]);
1472 if (!isdigit(*(av
[1])) || new_set
> 30)
1473 errx(EX_DATAERR
, "invalid set number %s\n", av
[1]);
1474 masks
[0] = (4 << 24) | (new_set
<< 16) | (rulenum
);
1475 i
= setsockopt(s
, IPPROTO_IP
, IP_FW_DEL
,
1476 masks
, sizeof(u_int32_t
));
1477 } else if (!strncmp(*av
, "move", strlen(*av
))) {
1479 if (ac
&& !strncmp(*av
, "rule", strlen(*av
))) {
1484 if (ac
!= 3 || strncmp(av
[1], "to", strlen(*av
)))
1485 errx(EX_USAGE
, "syntax: set move [rule] X to Y\n");
1486 rulenum
= atoi(av
[0]);
1487 new_set
= atoi(av
[2]);
1488 if (!isdigit(*(av
[0])) || (cmd
== 3 && rulenum
> 30) ||
1489 (cmd
== 2 && rulenum
== 65535) )
1490 errx(EX_DATAERR
, "invalid source number %s\n", av
[0]);
1491 if (!isdigit(*(av
[2])) || new_set
> 30)
1492 errx(EX_DATAERR
, "invalid dest. set %s\n", av
[1]);
1493 masks
[0] = (cmd
<< 24) | (new_set
<< 16) | (rulenum
);
1494 i
= setsockopt(s
, IPPROTO_IP
, IP_FW_DEL
,
1495 masks
, sizeof(u_int32_t
));
1496 } else if (!strncmp(*av
, "disable", strlen(*av
)) ||
1497 !strncmp(*av
, "enable", strlen(*av
)) ) {
1498 int which
= !strncmp(*av
, "enable", strlen(*av
)) ? 1 : 0;
1501 masks
[0] = masks
[1] = 0;
1504 if (isdigit(**av
)) {
1506 if (i
< 0 || i
> 30)
1508 "invalid set number %d\n", i
);
1509 masks
[which
] |= (1<<i
);
1510 } else if (!strncmp(*av
, "disable", strlen(*av
)))
1512 else if (!strncmp(*av
, "enable", strlen(*av
)))
1516 "invalid set command %s\n", *av
);
1519 if ( (masks
[0] & masks
[1]) != 0 )
1521 "cannot enable and disable the same set\n");
1523 i
= setsockopt(s
, IPPROTO_IP
, IP_FW_DEL
, masks
, sizeof(masks
));
1525 warn("set enable/disable: setsockopt(IP_FW_DEL)");
1527 errx(EX_USAGE
, "invalid set command %s\n", *av
);
1531 sysctl_handler(int ac
, char *av
[], int which
)
1537 warnx("missing keyword to enable/disable\n");
1538 } else if (strncmp(*av
, "firewall", strlen(*av
)) == 0) {
1539 sysctlbyname("net.inet.ip.fw.enable", NULL
, 0,
1540 &which
, sizeof(which
));
1541 } else if (strncmp(*av
, "one_pass", strlen(*av
)) == 0) {
1542 sysctlbyname("net.inet.ip.fw.one_pass", NULL
, 0,
1543 &which
, sizeof(which
));
1544 } else if (strncmp(*av
, "debug", strlen(*av
)) == 0) {
1545 sysctlbyname("net.inet.ip.fw.debug", NULL
, 0,
1546 &which
, sizeof(which
));
1547 } else if (strncmp(*av
, "verbose", strlen(*av
)) == 0) {
1548 sysctlbyname("net.inet.ip.fw.verbose", NULL
, 0,
1549 &which
, sizeof(which
));
1550 } else if (strncmp(*av
, "dyn_keepalive", strlen(*av
)) == 0) {
1551 sysctlbyname("net.inet.ip.fw.dyn_keepalive", NULL
, 0,
1552 &which
, sizeof(which
));
1554 warnx("unrecognize enable/disable keyword: %s\n", *av
);
1559 list(int ac
, char *av
[])
1561 struct ipfw_ioc_rule
*r
;
1562 struct ipfw_ioc_state
*dynrules
, *d
;
1565 int bcwidth
, n
, nbytes
, nstat
, ndyn
, pcwidth
, width
;
1566 int exitval
= EX_OK
;
1573 const int ocmd
= do_pipe
? IP_DUMMYNET_GET
: IP_FW_GET
;
1574 int nalloc
= 1024; /* start somewhere... */
1579 /* get rules or pipes from kernel, resizing array as necessary */
1582 while (nbytes
>= nalloc
) {
1583 nalloc
= nalloc
* 2 + 200;
1585 if ((data
= realloc(data
, nbytes
)) == NULL
)
1586 err(EX_OSERR
, "realloc");
1587 if (getsockopt(s
, IPPROTO_IP
, ocmd
, data
, &nbytes
) < 0)
1588 err(EX_OSERR
, "getsockopt(IP_%s_GET)",
1589 do_pipe
? "DUMMYNET" : "FW");
1593 list_pipes(data
, nbytes
, ac
, av
);
1598 * Count static rules.
1601 nstat
= r
->static_count
;
1604 * Count dynamic rules. This is easier as they have
1607 dynrules
= (struct ipfw_ioc_state
*)((void *)r
+ r
->static_len
);
1608 ndyn
= (nbytes
- r
->static_len
) / sizeof(*dynrules
);
1610 /* if showing stats, figure out column widths ahead of time */
1611 bcwidth
= pcwidth
= 0;
1613 for (n
= 0, r
= data
; n
< nstat
;
1614 n
++, r
= (void *)r
+ IOC_RULESIZE(r
)) {
1615 /* packet counter */
1616 width
= snprintf(NULL
, 0, "%llu", r
->pcnt
);
1617 if (width
> pcwidth
)
1621 width
= snprintf(NULL
, 0, "%llu", r
->bcnt
);
1622 if (width
> bcwidth
)
1626 if (do_dynamic
&& ndyn
) {
1627 for (n
= 0, d
= dynrules
; n
< ndyn
; n
++, d
++) {
1628 width
= snprintf(NULL
, 0, "%llu", d
->pcnt
);
1629 if (width
> pcwidth
)
1632 width
= snprintf(NULL
, 0, "%llu", d
->bcnt
);
1633 if (width
> bcwidth
)
1637 /* if no rule numbers were specified, list all rules */
1639 for (n
= 0, r
= data
; n
< nstat
;
1640 n
++, r
= (void *)r
+ IOC_RULESIZE(r
) )
1641 show_ipfw(r
, pcwidth
, bcwidth
);
1643 if (do_dynamic
&& ndyn
) {
1644 printf("## Dynamic rules (%d):\n", ndyn
);
1645 for (n
= 0, d
= dynrules
; n
< ndyn
; n
++, d
++)
1646 show_dyn_ipfw(d
, pcwidth
, bcwidth
);
1651 /* display specific rules requested on command line */
1653 for (lac
= ac
, lav
= av
; lac
!= 0; lac
--) {
1654 /* convert command line rule # */
1655 rnum
= strtoul(*lav
++, &endptr
, 10);
1658 warnx("invalid rule number: %s", *(lav
- 1));
1661 for (n
= seen
= 0, r
= data
; n
< nstat
;
1662 n
++, r
= (void *)r
+ IOC_RULESIZE(r
) ) {
1663 if (r
->rulenum
> rnum
)
1665 if (r
->rulenum
== rnum
) {
1666 show_ipfw(r
, pcwidth
, bcwidth
);
1671 /* give precedence to other error(s) */
1672 if (exitval
== EX_OK
)
1673 exitval
= EX_UNAVAILABLE
;
1674 warnx("rule %lu does not exist", rnum
);
1678 if (do_dynamic
&& ndyn
) {
1679 printf("## Dynamic rules:\n");
1680 for (lac
= ac
, lav
= av
; lac
!= 0; lac
--) {
1681 rnum
= strtoul(*lav
++, &endptr
, 10);
1683 /* already warned */
1685 for (n
= 0, d
= dynrules
; n
< ndyn
; n
++, d
++) {
1686 if (d
->rulenum
> rnum
)
1688 if (d
->rulenum
== rnum
)
1689 show_dyn_ipfw(d
, pcwidth
, bcwidth
);
1699 if (exitval
!= EX_OK
)
1706 fprintf(stderr
, "usage: ipfw [options]\n"
1707 " add [number] rule\n"
1708 " pipe number config [pipeconfig]\n"
1709 " queue number config [queueconfig]\n"
1711 " [pipe] delete number ...\n"
1712 " [pipe] {list|show} [number ...]\n"
1713 " {zero|resetlog} [number ...]\n"
1714 "do \"ipfw -h\" or see ipfw manpage for details\n"
1724 fprintf(stderr
, "ipfw syntax summary:\n"
1725 "ipfw add [N] [prob {0..1}] ACTION [log [logamount N]] ADDR OPTIONS\n"
1726 "ipfw {pipe|queue} N config BODY\n"
1727 "ipfw [pipe] {zero|delete|show} [N{,N}]\n"
1729 "RULE: [1..] [PROB] BODY\n"
1730 "RULENUM: INTEGER(1..65534)\n"
1731 "PROB: prob REAL(0..1)\n"
1732 "BODY: check-state [LOG] (no body) |\n"
1733 " ACTION [LOG] MATCH_ADDR [OPTION_LIST]\n"
1734 "ACTION: check-state | allow | count | deny | reject | skipto N |\n"
1735 " {divert|tee} PORT | forward ADDR | pipe N | queue N\n"
1736 "ADDR: [ MAC dst src ether_type ] \n"
1737 " [ from IPLIST [ PORT ] to IPLIST [ PORTLIST ] ]\n"
1738 "IPLIST: IPADDR | ( IPADDR or ... or IPADDR )\n"
1739 "IPADDR: [not] { any | me | ip | ip/bits | ip:mask | ip/bits{x,y,z} }\n"
1740 "OPTION_LIST: OPTION [,OPTION_LIST]\n"
1747 lookup_host (char *host
, struct in_addr
*ipaddr
)
1751 if (!inet_aton(host
, ipaddr
)) {
1752 if ((he
= gethostbyname(host
)) == NULL
)
1754 *ipaddr
= *(struct in_addr
*)he
->h_addr_list
[0];
1760 * fills the addr and mask fields in the instruction as appropriate from av.
1761 * Update length as appropriate.
1762 * The following formats are allowed:
1763 * any matches any IP. Actually returns an empty instruction.
1764 * me returns O_IP_*_ME
1765 * 1.2.3.4 single IP address
1766 * 1.2.3.4:5.6.7.8 address:mask
1767 * 1.2.3.4/24 address/mask
1768 * 1.2.3.4/26{1,6,5,4,23} set of addresses in a subnet
1771 fill_ip(ipfw_insn_ip
*cmd
, char *av
)
1773 char *p
= 0, md
= 0;
1776 cmd
->o
.len
&= ~F_LEN_MASK
; /* zero len */
1778 if (!strncmp(av
, "any", strlen(av
)))
1781 if (!strncmp(av
, "me", strlen(av
))) {
1782 cmd
->o
.len
|= F_INSN_SIZE(ipfw_insn
);
1786 p
= strchr(av
, '/');
1788 p
= strchr(av
, ':');
1794 if (lookup_host(av
, &cmd
->addr
) != 0)
1795 errx(EX_NOHOST
, "hostname ``%s'' unknown", av
);
1798 if (!inet_aton(p
, &cmd
->mask
))
1799 errx(EX_DATAERR
, "bad netmask ``%s''", p
);
1804 cmd
->mask
.s_addr
= htonl(0);
1806 errx(EX_DATAERR
, "bad width ``%s''", p
);
1808 cmd
->mask
.s_addr
= htonl(~0 << (32 - i
));
1811 cmd
->mask
.s_addr
= htonl(~0);
1814 cmd
->addr
.s_addr
&= cmd
->mask
.s_addr
;
1816 * now look if we have a set of addresses. They are stored as follows:
1817 * arg1 is the set size (powers of 2, 2..256)
1818 * addr is the base address IN HOST FORMAT
1819 * mask.. is an array of u_int32_t with bits set.
1823 if (p
) { /* fetch addresses */
1826 int i
= contigmask((u_char
*)&(cmd
->mask
), 32);
1828 if (i
< 24 || i
> 31) {
1829 fprintf(stderr
, "invalid set with mask %d\n",
1833 cmd
->o
.arg1
= 1<<(32-i
);
1834 cmd
->addr
.s_addr
= ntohl(cmd
->addr
.s_addr
);
1835 d
= (u_int32_t
*)&cmd
->mask
;
1836 cmd
->o
.opcode
= O_IP_DST_SET
; /* default */
1837 cmd
->o
.len
|= F_INSN_SIZE(ipfw_insn_u32
) + (cmd
->o
.arg1
+31)/32;
1838 for (i
= 0; i
< (cmd
->o
.arg1
+31)/32 ; i
++)
1839 d
[i
] = 0; /* clear masks */
1842 low
= cmd
->addr
.s_addr
& 0xff;
1843 high
= low
+ cmd
->o
.arg1
- 1;
1844 while (isdigit(*av
)) {
1846 u_int16_t a
= strtol(av
, &s
, 0);
1848 if (s
== av
) /* no parameter */
1850 if (a
< low
|| a
> high
) {
1851 fprintf(stderr
, "addr %d out of range [%d-%d]\n",
1856 d
[ a
/32] |= 1<<(a
& 31);
1864 if (cmd
->mask
.s_addr
== 0) { /* any */
1865 if (cmd
->o
.len
& F_NOT
)
1866 errx(EX_DATAERR
, "not any never matches");
1867 else /* useless, nuke it */
1869 } else if (cmd
->mask
.s_addr
== IP_MASK_ALL
) /* one IP */
1870 cmd
->o
.len
|= F_INSN_SIZE(ipfw_insn_u32
);
1871 else /* addr/mask */
1872 cmd
->o
.len
|= F_INSN_SIZE(ipfw_insn_ip
);
1877 * helper function to process a set of flags and set bits in the
1878 * appropriate masks.
1881 fill_flags(ipfw_insn
*cmd
, enum ipfw_opcodes opcode
,
1882 struct _s_x
*flags
, char *p
)
1884 u_int8_t set
=0, clear
=0;
1887 char *q
; /* points to the separator */
1889 u_int8_t
*which
; /* mask we are working on */
1899 val
= match_token(flags
, p
);
1901 errx(EX_DATAERR
, "invalid flag %s", p
);
1902 *which
|= (u_int8_t
)val
;
1905 cmd
->opcode
= opcode
;
1906 cmd
->len
= (cmd
->len
& (F_NOT
| F_OR
)) | 1;
1907 cmd
->arg1
= (set
& 0xff) | ( (clear
& 0xff) << 8);
1912 delete(int ac
, char *av
[])
1915 struct dn_ioc_pipe pipe
;
1917 int exitval
= EX_OK
;
1920 memset(&pipe
, 0, sizeof pipe
);
1923 if (ac
> 0 && !strncmp(*av
, "set", strlen(*av
))) {
1924 do_set
= 1; /* delete set */
1929 while (ac
&& isdigit(**av
)) {
1930 i
= atoi(*av
); av
++; ac
--;
1936 i
= setsockopt(s
, IPPROTO_IP
, IP_DUMMYNET_DEL
,
1937 &pipe
, sizeof pipe
);
1940 warn("rule %u: setsockopt(IP_DUMMYNET_DEL)",
1941 do_pipe
== 1 ? pipe
.pipe_nr
:
1945 rulenum
= (i
& 0xffff) | (do_set
<< 24);
1946 i
= setsockopt(s
, IPPROTO_IP
, IP_FW_DEL
, &rulenum
,
1949 exitval
= EX_UNAVAILABLE
;
1950 warn("rule %u: setsockopt(IP_FW_DEL)",
1955 if (exitval
!= EX_OK
)
1961 * fill the interface structure. We do not check the name as we can
1962 * create interfaces dynamically, so checking them at insert time
1963 * makes relatively little sense.
1964 * Interface names containing '*', '?', or '[' are assumed to be shell
1965 * patterns which match interfaces.
1968 fill_iface(ipfw_insn_if
*cmd
, char *arg
)
1970 cmd
->name
[0] = '\0';
1971 cmd
->o
.len
|= F_INSN_SIZE(ipfw_insn_if
);
1973 /* Parse the interface or address */
1974 if (!strcmp(arg
, "any"))
1975 cmd
->o
.len
= 0; /* effectively ignore this command */
1976 else if (!isdigit(*arg
)) {
1977 strlcpy(cmd
->name
, arg
, sizeof(cmd
->name
));
1978 cmd
->p
.glob
= strpbrk(arg
, "*?[") != NULL
? 1 : 0;
1979 } else if (!inet_aton(arg
, &cmd
->p
.ip
))
1980 errx(EX_DATAERR
, "bad ip address ``%s''", arg
);
1983 static unsigned long
1984 getbw(const char *str
, u_short
*flags
, int kb
)
1990 val
= strtoul(str
, &end
, 0);
1991 if (*end
== 'k' || *end
== 'K') {
1994 } else if (*end
== 'm' || *end
== 'M') {
2000 * Deal with bits or bytes or b(bits) or B(bytes). If there is no
2001 * trailer assume bits.
2003 if (strncasecmp(end
, "bit", 3) == 0) {
2005 } else if (strncasecmp(end
, "byte", 4) == 0) {
2007 } else if (*end
== 'b') {
2009 } else if (*end
== 'B') {
2014 * Return in bits if flags is NULL, else flag bits
2015 * or bytes in flags and return the unconverted value.
2017 if (inbytes
&& flags
)
2018 *flags
|= DN_QSIZE_IS_BYTES
;
2019 else if (inbytes
&& flags
== NULL
)
2025 * the following macro returns an error message if we run out of
2028 #define NEED1(msg) {if (!ac) errx(EX_USAGE, msg);}
2031 config_pipe(int ac
, char **av
)
2033 struct dn_ioc_pipe pipe
;
2039 memset(&pipe
, 0, sizeof pipe
);
2043 if (ac
&& isdigit(**av
)) {
2044 i
= atoi(*av
); av
++; ac
--;
2052 int tok
= match_token(dummynet_params
, *av
);
2057 pipe
.fs
.flags_fs
|= DN_NOERROR
;
2061 NEED1("plr needs argument 0..1\n");
2062 d
= strtod(av
[0], NULL
);
2067 pipe
.fs
.plr
= (int)(d
*0x7fffffff);
2072 NEED1("queue needs queue size\n");
2074 pipe
.fs
.qsize
= getbw(av
[0], &pipe
.fs
.flags_fs
, 1024);
2079 NEED1("buckets needs argument\n");
2080 pipe
.fs
.rq_size
= strtoul(av
[0], NULL
, 0);
2085 NEED1("mask needs mask specifier\n");
2087 * per-flow queue, mask is dst_ip, dst_port,
2088 * src_ip, src_port, proto measured in bits
2092 pipe
.fs
.flow_mask
.type
= ETHERTYPE_IP
;
2093 pipe
.fs
.flow_mask
.u
.ip
.dst_ip
= 0;
2094 pipe
.fs
.flow_mask
.u
.ip
.src_ip
= 0;
2095 pipe
.fs
.flow_mask
.u
.ip
.dst_port
= 0;
2096 pipe
.fs
.flow_mask
.u
.ip
.src_port
= 0;
2097 pipe
.fs
.flow_mask
.u
.ip
.proto
= 0;
2101 u_int32_t
*p32
= NULL
;
2102 u_int16_t
*p16
= NULL
;
2104 tok
= match_token(dummynet_params
, *av
);
2109 * special case, all bits significant
2111 pipe
.fs
.flow_mask
.u
.ip
.dst_ip
= ~0;
2112 pipe
.fs
.flow_mask
.u
.ip
.src_ip
= ~0;
2113 pipe
.fs
.flow_mask
.u
.ip
.dst_port
= ~0;
2114 pipe
.fs
.flow_mask
.u
.ip
.src_port
= ~0;
2115 pipe
.fs
.flow_mask
.u
.ip
.proto
= ~0;
2116 pipe
.fs
.flags_fs
|= DN_HAVE_FLOW_MASK
;
2120 p32
= &pipe
.fs
.flow_mask
.u
.ip
.dst_ip
;
2124 p32
= &pipe
.fs
.flow_mask
.u
.ip
.src_ip
;
2128 p16
= &pipe
.fs
.flow_mask
.u
.ip
.dst_port
;
2132 p16
= &pipe
.fs
.flow_mask
.u
.ip
.src_port
;
2139 ac
++; av
--; /* backtrack */
2143 errx(EX_USAGE
, "mask: value missing");
2144 if (*av
[0] == '/') {
2145 a
= strtoul(av
[0]+1, &end
, 0);
2146 a
= (a
== 32) ? ~0 : (1 << a
) - 1;
2148 a
= strtoul(av
[0], &end
, 0);
2151 else if (p16
!= NULL
) {
2154 "mask: must be 16 bit");
2155 *p16
= (u_int16_t
)a
;
2159 "mask: must be 8 bit");
2160 pipe
.fs
.flow_mask
.u
.ip
.proto
= (uint8_t)a
;
2163 pipe
.fs
.flags_fs
|= DN_HAVE_FLOW_MASK
;
2165 } /* end while, config masks */
2171 NEED1("red/gred needs w_q/min_th/max_th/max_p\n");
2172 pipe
.fs
.flags_fs
|= DN_IS_RED
;
2173 if (tok
== TOK_GRED
)
2174 pipe
.fs
.flags_fs
|= DN_IS_GENTLE_RED
;
2176 * the format for parameters is w_q/min_th/max_th/max_p
2178 if ((end
= strsep(&av
[0], "/"))) {
2179 double w_q
= strtod(end
, NULL
);
2180 if (w_q
> 1 || w_q
<= 0)
2181 errx(EX_DATAERR
, "0 < w_q <= 1");
2182 pipe
.fs
.w_q
= (int) (w_q
* (1 << SCALE_RED
));
2184 if ((end
= strsep(&av
[0], "/"))) {
2185 pipe
.fs
.min_th
= strtoul(end
, &end
, 0);
2186 if (*end
== 'K' || *end
== 'k')
2187 pipe
.fs
.min_th
*= 1024;
2189 if ((end
= strsep(&av
[0], "/"))) {
2190 pipe
.fs
.max_th
= strtoul(end
, &end
, 0);
2191 if (*end
== 'K' || *end
== 'k')
2192 pipe
.fs
.max_th
*= 1024;
2194 if ((end
= strsep(&av
[0], "/"))) {
2195 double max_p
= strtod(end
, NULL
);
2196 if (max_p
> 1 || max_p
<= 0)
2197 errx(EX_DATAERR
, "0 < max_p <= 1");
2198 pipe
.fs
.max_p
= (int)(max_p
* (1 << SCALE_RED
));
2204 pipe
.fs
.flags_fs
&= ~(DN_IS_RED
|DN_IS_GENTLE_RED
);
2208 NEED1("bw needs bandwidth\n");
2210 errx(EX_DATAERR
, "bandwidth only valid for pipes");
2212 * set bandwidth value
2214 pipe
.bandwidth
= getbw(av
[0], NULL
, 1000);
2215 if (pipe
.bandwidth
< 0)
2216 errx(EX_DATAERR
, "bandwidth too large");
2222 errx(EX_DATAERR
, "delay only valid for pipes");
2223 NEED1("delay needs argument 0..10000ms\n");
2224 pipe
.delay
= strtoul(av
[0], NULL
, 0);
2230 errx(EX_DATAERR
,"weight only valid for queues");
2231 NEED1("weight needs argument 0..100\n");
2232 pipe
.fs
.weight
= strtoul(av
[0], &end
, 0);
2238 errx(EX_DATAERR
,"pipe only valid for queues");
2239 NEED1("pipe needs pipe_number\n");
2240 pipe
.fs
.parent_nr
= strtoul(av
[0], &end
, 0);
2245 errx(EX_DATAERR
, "unrecognised option ``%s''", *av
);
2249 if (pipe
.pipe_nr
== 0)
2250 errx(EX_DATAERR
, "pipe_nr must be > 0");
2251 if (pipe
.delay
> 10000)
2252 errx(EX_DATAERR
, "delay must be < 10000");
2253 } else { /* do_pipe == 2, queue */
2254 if (pipe
.fs
.parent_nr
== 0)
2255 errx(EX_DATAERR
, "pipe must be > 0");
2256 if (pipe
.fs
.weight
>100)
2257 errx(EX_DATAERR
, "weight must be <= 100");
2259 if (pipe
.fs
.flags_fs
& DN_QSIZE_IS_BYTES
) {
2260 if (pipe
.fs
.qsize
> 1024*1024)
2261 errx(EX_DATAERR
, "queue size must be < 1MB");
2263 if (pipe
.fs
.qsize
> 100)
2264 errx(EX_DATAERR
, "2 <= queue size <= 100");
2266 if (pipe
.fs
.flags_fs
& DN_IS_RED
) {
2268 int lookup_depth
, avg_pkt_size
;
2269 double s
, idle
, weight
, w_q
;
2273 if (pipe
.fs
.min_th
>= pipe
.fs
.max_th
)
2274 errx(EX_DATAERR
, "min_th %d must be < than max_th %d",
2275 pipe
.fs
.min_th
, pipe
.fs
.max_th
);
2276 if (pipe
.fs
.max_th
== 0)
2277 errx(EX_DATAERR
, "max_th must be > 0");
2280 if (sysctlbyname("net.inet.ip.dummynet.red_lookup_depth",
2281 &lookup_depth
, &len
, NULL
, 0) == -1)
2283 errx(1, "sysctlbyname(\"%s\")",
2284 "net.inet.ip.dummynet.red_lookup_depth");
2285 if (lookup_depth
== 0)
2286 errx(EX_DATAERR
, "net.inet.ip.dummynet.red_lookup_depth"
2287 " must be greater than zero");
2290 if (sysctlbyname("net.inet.ip.dummynet.red_avg_pkt_size",
2291 &avg_pkt_size
, &len
, NULL
, 0) == -1)
2293 errx(1, "sysctlbyname(\"%s\")",
2294 "net.inet.ip.dummynet.red_avg_pkt_size");
2295 if (avg_pkt_size
== 0)
2297 "net.inet.ip.dummynet.red_avg_pkt_size must"
2298 " be greater than zero");
2300 len
= sizeof(clock_hz
);
2301 if (sysctlbyname("net.inet.ip.dummynet.hz", &clock_hz
, &len
,
2303 errx(1, "sysctlbyname(\"%s\")",
2304 "net.inet.ip.dummynet.hz");
2308 * Ticks needed for sending a medium-sized packet.
2309 * Unfortunately, when we are configuring a WF2Q+ queue, we
2310 * do not have bandwidth information, because that is stored
2311 * in the parent pipe, and also we have multiple queues
2312 * competing for it. So we set s=0, which is not very
2313 * correct. But on the other hand, why do we want RED with
2316 if (pipe
.bandwidth
==0) /* this is a WF2Q+ queue */
2319 s
= clock_hz
* avg_pkt_size
* 8 / pipe
.bandwidth
;
2322 * max idle time (in ticks) before avg queue size becomes 0.
2323 * NOTA: (3/w_q) is approx the value x so that
2324 * (1-w_q)^x < 10^-3.
2326 w_q
= ((double)pipe
.fs
.w_q
) / (1 << SCALE_RED
);
2327 idle
= s
* 3. / w_q
;
2328 pipe
.fs
.lookup_step
= (int)idle
/ lookup_depth
;
2329 if (!pipe
.fs
.lookup_step
)
2330 pipe
.fs
.lookup_step
= 1;
2332 for (t
= pipe
.fs
.lookup_step
; t
> 0; --t
)
2334 pipe
.fs
.lookup_weight
= (int)(weight
* (1 << SCALE_RED
));
2336 i
= setsockopt(s
, IPPROTO_IP
, IP_DUMMYNET_CONFIGURE
, &pipe
,
2339 err(1, "setsockopt(%s)", "IP_DUMMYNET_CONFIGURE");
2343 get_mac_addr_mask(char *p
, u_char
*addr
, u_char
*mask
)
2348 addr
[i
] = mask
[i
] = 0;
2349 if (!strcmp(p
, "any"))
2352 for (i
=0; *p
&& i
<6;i
++, p
++) {
2353 addr
[i
] = strtol(p
, &p
, 16);
2354 if (*p
!= ':') /* we start with the mask */
2357 if (*p
== '/') { /* mask len */
2358 l
= strtol(p
+1, &p
, 0);
2359 for (i
=0; l
>0; l
-=8, i
++)
2360 mask
[i
] = (l
>=8) ? 0xff : (~0) << (8-l
);
2361 } else if (*p
== '&') { /* mask */
2362 for (i
=0, p
++; *p
&& i
<6;i
++, p
++) {
2363 mask
[i
] = strtol(p
, &p
, 16);
2367 } else if (*p
== '\0') {
2376 * helper function, updates the pointer to cmd with the length
2377 * of the current command, and also cleans up the first word of
2378 * the new command in case it has been clobbered before.
2381 next_cmd(ipfw_insn
*cmd
)
2384 bzero(cmd
, sizeof(*cmd
));
2389 * A function to fill simple commands of size 1.
2390 * Existing flags are preserved.
2393 fill_cmd(ipfw_insn
*cmd
, enum ipfw_opcodes opcode
, int flags
, u_int16_t arg
)
2395 cmd
->opcode
= opcode
;
2396 cmd
->len
= ((cmd
->len
| flags
) & (F_NOT
| F_OR
)) | 1;
2401 * Fetch and add the MAC address and type, with masks. This generates one or
2402 * two microinstructions, and returns the pointer to the last one.
2405 add_mac(ipfw_insn
*cmd
, int ac
, char *av
[])
2410 errx(EX_DATAERR
, "MAC dst src");
2412 cmd
->opcode
= O_MACADDR2
;
2413 cmd
->len
= (cmd
->len
& (F_NOT
| F_OR
)) | F_INSN_SIZE(ipfw_insn_mac
);
2415 mac
= (ipfw_insn_mac
*)cmd
;
2416 get_mac_addr_mask(av
[0], mac
->addr
, mac
->mask
); /* dst */
2417 get_mac_addr_mask(av
[1], &(mac
->addr
[6]), &(mac
->mask
[6])); /* src */
2422 add_mactype(ipfw_insn
*cmd
, int ac
, char *av
)
2425 errx(EX_DATAERR
, "missing MAC type");
2426 if (strcmp(av
, "any") != 0) { /* we have a non-null type */
2427 fill_newports((ipfw_insn_u16
*)cmd
, av
, IPPROTO_ETHERTYPE
);
2428 cmd
->opcode
= O_MAC_TYPE
;
2435 add_proto(ipfw_insn
*cmd
, char *av
)
2437 struct protoent
*pe
;
2440 if (!strncmp(av
, "all", strlen(av
)))
2441 ; /* same as "ip" */
2442 else if ((proto
= atoi(av
)) > 0)
2444 else if ((pe
= getprotobyname(av
)) != NULL
)
2445 proto
= pe
->p_proto
;
2448 if (proto
!= IPPROTO_IP
)
2449 fill_cmd(cmd
, O_PROTO
, 0, proto
);
2454 add_srcip(ipfw_insn
*cmd
, char *av
)
2456 fill_ip((ipfw_insn_ip
*)cmd
, av
);
2457 if (cmd
->opcode
== O_IP_DST_SET
) /* set */
2458 cmd
->opcode
= O_IP_SRC_SET
;
2459 else if (F_LEN(cmd
) == F_INSN_SIZE(ipfw_insn
)) /* me */
2460 cmd
->opcode
= O_IP_SRC_ME
;
2461 else if (F_LEN(cmd
) == F_INSN_SIZE(ipfw_insn_u32
)) /* one IP */
2462 cmd
->opcode
= O_IP_SRC
;
2463 else if (F_LEN(cmd
) == F_INSN_SIZE(ipfw_insn_ip
)) /* addr/mask */
2464 cmd
->opcode
= O_IP_SRC_MASK
;
2469 add_dstip(ipfw_insn
*cmd
, char *av
)
2471 fill_ip((ipfw_insn_ip
*)cmd
, av
);
2472 if (cmd
->opcode
== O_IP_DST_SET
) /* set */
2474 else if (F_LEN(cmd
) == F_INSN_SIZE(ipfw_insn
)) /* me */
2475 cmd
->opcode
= O_IP_DST_ME
;
2476 else if (F_LEN(cmd
) == F_INSN_SIZE(ipfw_insn_u32
)) /* one IP */
2477 cmd
->opcode
= O_IP_DST
;
2478 else if (F_LEN(cmd
) == F_INSN_SIZE(ipfw_insn_ip
)) /* addr/mask */
2479 cmd
->opcode
= O_IP_DST_MASK
;
2484 add_ports(ipfw_insn
*cmd
, char *av
, u_char proto
, int opcode
)
2486 if (!strncmp(av
, "any", strlen(av
))) {
2488 } else if (fill_newports((ipfw_insn_u16
*)cmd
, av
, proto
)) {
2489 /* XXX todo: check that we have a protocol with ports */
2490 cmd
->opcode
= opcode
;
2497 * Parse arguments and assemble the microinstructions which make up a rule.
2498 * Rules are added into the 'rulebuf' and then copied in the correct order
2499 * into the actual rule.
2501 * The syntax for a rule starts with the action, followed by an
2502 * optional log action, and the various match patterns.
2503 * In the assembled microcode, the first opcode must be a O_PROBE_STATE
2504 * (generated if the rule includes a keep-state option), then the
2505 * various match patterns, the "log" action, and the actual action.
2509 add(int ac
, char *av
[])
2512 * rules are added into the 'rulebuf' and then copied in
2513 * the correct order into the actual rule.
2514 * Some things that need to go out of order (prob, action etc.)
2517 static uint32_t rulebuf
[IPFW_RULE_SIZE_MAX
];
2518 static uint32_t actbuf
[IPFW_RULE_SIZE_MAX
];
2519 static uint32_t cmdbuf
[IPFW_RULE_SIZE_MAX
];
2521 ipfw_insn
*src
, *dst
, *cmd
, *action
, *prev
= NULL
;
2522 ipfw_insn
*first_cmd
; /* first match pattern */
2524 struct ipfw_ioc_rule
*rule
;
2527 * various flags used to record that we entered some fields.
2529 ipfw_insn
*have_state
= NULL
; /* check-state or keep-state */
2533 int open_par
= 0; /* open parenthesis ( */
2535 /* proto is here because it is used to fetch ports */
2536 u_char proto
= IPPROTO_IP
; /* default protocol */
2538 double match_prob
= 1; /* match probability, default is always match */
2540 bzero(actbuf
, sizeof(actbuf
)); /* actions go here */
2541 bzero(cmdbuf
, sizeof(cmdbuf
));
2542 bzero(rulebuf
, sizeof(rulebuf
));
2544 rule
= (struct ipfw_ioc_rule
*)rulebuf
;
2545 cmd
= (ipfw_insn
*)cmdbuf
;
2546 action
= (ipfw_insn
*)actbuf
;
2550 /* [rule N] -- Rule number optional */
2551 if (ac
&& isdigit(**av
)) {
2552 rule
->rulenum
= atoi(*av
);
2557 /* [set N] -- set number (0..30), optional */
2558 if (ac
> 1 && !strncmp(*av
, "set", strlen(*av
))) {
2559 int set
= strtoul(av
[1], NULL
, 10);
2560 if (set
< 0 || set
> 30)
2561 errx(EX_DATAERR
, "illegal set %s", av
[1]);
2566 /* [prob D] -- match probability, optional */
2567 if (ac
> 1 && !strncmp(*av
, "prob", strlen(*av
))) {
2568 match_prob
= strtod(av
[1], NULL
);
2570 if (match_prob
<= 0 || match_prob
> 1)
2571 errx(EX_DATAERR
, "illegal match prob. %s", av
[1]);
2575 /* action -- mandatory */
2576 NEED1("missing action");
2577 i
= match_token(rule_actions
, *av
);
2579 action
->len
= 1; /* default */
2581 case TOK_CHECKSTATE
:
2582 have_state
= action
;
2583 action
->opcode
= O_CHECK_STATE
;
2587 action
->opcode
= O_ACCEPT
;
2591 action
->opcode
= O_DENY
;
2596 action
->opcode
= O_REJECT
;
2597 action
->arg1
= ICMP_UNREACH_HOST
;
2601 action
->opcode
= O_REJECT
;
2602 action
->arg1
= ICMP_REJECT_RST
;
2606 action
->opcode
= O_REJECT
;
2607 NEED1("missing reject code");
2608 fill_reject_code(&action
->arg1
, *av
);
2613 action
->opcode
= O_COUNT
;
2618 action
->len
= F_INSN_SIZE(ipfw_insn_pipe
);
2621 action
->opcode
= O_QUEUE
;
2622 else if (i
== TOK_PIPE
)
2623 action
->opcode
= O_PIPE
;
2624 else if (i
== TOK_SKIPTO
)
2625 action
->opcode
= O_SKIPTO
;
2626 NEED1("missing skipto/pipe/queue number");
2627 action
->arg1
= strtoul(*av
, NULL
, 10);
2633 action
->opcode
= (i
== TOK_DIVERT
) ? O_DIVERT
: O_TEE
;
2634 NEED1("missing divert/tee port");
2635 action
->arg1
= strtoul(*av
, NULL
, 0);
2636 if (action
->arg1
== 0) {
2639 s
= getservbyname(av
[0], "divert");
2641 action
->arg1
= ntohs(s
->s_port
);
2643 errx(EX_DATAERR
, "illegal divert/tee port");
2649 ipfw_insn_sa
*p
= (ipfw_insn_sa
*)action
;
2652 NEED1("missing forward address[:port]");
2654 action
->opcode
= O_FORWARD_IP
;
2655 action
->len
= F_INSN_SIZE(ipfw_insn_sa
);
2657 p
->sa
.sin_len
= sizeof(struct sockaddr_in
);
2658 p
->sa
.sin_family
= AF_INET
;
2661 * locate the address-port separator (':' or ',')
2663 s
= strchr(*av
, ':');
2665 s
= strchr(*av
, ',');
2668 i
= strtoport(s
, &end
, 0 /* base */, 0 /* proto */);
2671 "illegal forwarding port ``%s''", s
);
2672 p
->sa
.sin_port
= (u_short
)i
;
2674 lookup_host(*av
, &(p
->sa
.sin_addr
));
2680 errx(EX_DATAERR
, "invalid action %s\n", av
[-1]);
2682 action
= next_cmd(action
);
2685 * [log [logamount N]] -- log, optional
2687 * If exists, it goes first in the cmdbuf, but then it is
2688 * skipped in the copy section to the end of the buffer.
2690 if (ac
&& !strncmp(*av
, "log", strlen(*av
))) {
2691 ipfw_insn_log
*c
= (ipfw_insn_log
*)cmd
;
2693 cmd
->len
= F_INSN_SIZE(ipfw_insn_log
);
2694 cmd
->opcode
= O_LOG
;
2696 if (ac
&& !strncmp(*av
, "logamount", strlen(*av
))) {
2698 NEED1("logamount requires argument");
2699 c
->max_log
= atoi(*av
);
2701 errx(EX_DATAERR
, "logamount must be positive");
2704 cmd
= next_cmd(cmd
);
2707 if (have_state
) /* must be a check-state, we are done */
2710 #define OR_START(target) \
2711 if (ac && (*av[0] == '(' || *av[0] == '{')) { \
2713 errx(EX_USAGE, "nested \"(\" not allowed\n"); \
2716 if ( (av[0])[1] == '\0') { \
2727 !strncmp(*av, ")", strlen(*av)) || \
2728 !strncmp(*av, "}", strlen(*av)) )) { \
2733 errx(EX_USAGE, "missing \")\"\n"); \
2737 if (ac && !strncmp(*av, "not", strlen(*av))) { \
2738 if (cmd->len & F_NOT) \
2739 errx(EX_USAGE, "double \"not\" not allowed\n"); \
2740 cmd->len |= F_NOT; \
2744 #define OR_BLOCK(target) \
2745 if (ac && !strncmp(*av, "or", strlen(*av))) { \
2746 if (prev == NULL || open_par == 0) \
2747 errx(EX_DATAERR, "invalid OR block"); \
2748 prev->len |= F_OR; \
2758 * MAC addresses, optional.
2759 * If we have this, we skip the part "proto from src to dst"
2760 * and jump straight to the option parsing.
2763 NEED1("missing protocol");
2764 if (!strncmp(*av
, "MAC", strlen(*av
)) ||
2765 !strncmp(*av
, "mac", strlen(*av
))) {
2766 ac
--; av
++; /* the "MAC" keyword */
2767 add_mac(cmd
, ac
, av
); /* exits in case of errors */
2768 cmd
= next_cmd(cmd
);
2769 ac
-= 2; av
+= 2; /* dst-mac and src-mac */
2771 NEED1("missing mac type");
2772 if (add_mactype(cmd
, ac
, av
[0]))
2773 cmd
= next_cmd(cmd
);
2774 ac
--; av
++; /* any or mac-type */
2780 * protocol, mandatory
2782 OR_START(get_proto
);
2784 NEED1("missing protocol");
2785 if (add_proto(cmd
, *av
)) {
2787 if (F_LEN(cmd
) == 0) /* plain IP */
2792 cmd
= next_cmd(cmd
);
2794 } else if (first_cmd
!= cmd
) {
2795 errx(EX_DATAERR
, "invalid protocol ``%s''", *av
);
2798 OR_BLOCK(get_proto
);
2803 if (!ac
|| strncmp(*av
, "from", strlen(*av
)))
2804 errx(EX_USAGE
, "missing ``from''");
2808 * source IP, mandatory
2810 OR_START(source_ip
);
2811 NOT_BLOCK
; /* optional "not" */
2812 NEED1("missing source address");
2813 if (add_srcip(cmd
, *av
)) {
2815 if (F_LEN(cmd
) != 0) { /* ! any */
2817 cmd
= next_cmd(cmd
);
2820 OR_BLOCK(source_ip
);
2823 * source ports, optional
2825 NOT_BLOCK
; /* optional "not" */
2827 if (!strncmp(*av
, "any", strlen(*av
)) ||
2828 add_ports(cmd
, *av
, proto
, O_IP_SRCPORT
)) {
2830 if (F_LEN(cmd
) != 0)
2831 cmd
= next_cmd(cmd
);
2838 if (!ac
|| strncmp(*av
, "to", strlen(*av
)))
2839 errx(EX_USAGE
, "missing ``to''");
2843 * destination, mandatory
2846 NOT_BLOCK
; /* optional "not" */
2847 NEED1("missing dst address");
2848 if (add_dstip(cmd
, *av
)) {
2850 if (F_LEN(cmd
) != 0) { /* ! any */
2852 cmd
= next_cmd(cmd
);
2858 * dest. ports, optional
2860 NOT_BLOCK
; /* optional "not" */
2862 if (!strncmp(*av
, "any", strlen(*av
)) ||
2863 add_ports(cmd
, *av
, proto
, O_IP_DSTPORT
)) {
2865 if (F_LEN(cmd
) != 0)
2866 cmd
= next_cmd(cmd
);
2871 if (ac
&& first_cmd
== cmd
) {
2873 * nothing specified so far, store in the rule to ease
2876 rule
->usr_flags
= IPFW_USR_F_NORULE
;
2881 ipfw_insn_u32
*cmd32
; /* alias for cmd */
2884 cmd32
= (ipfw_insn_u32
*)cmd
;
2886 if (*s
== '!') { /* alternate syntax for NOT */
2887 if (cmd
->len
& F_NOT
)
2888 errx(EX_USAGE
, "double \"not\" not allowed\n");
2892 i
= match_token(rule_options
, s
);
2896 if (cmd
->len
& F_NOT
)
2897 errx(EX_USAGE
, "double \"not\" not allowed\n");
2902 if (open_par
== 0 || prev
== NULL
)
2903 errx(EX_USAGE
, "invalid \"or\" block\n");
2907 case TOK_STARTBRACE
:
2909 errx(EX_USAGE
, "+nested \"(\" not allowed\n");
2915 errx(EX_USAGE
, "+missing \")\"\n");
2921 fill_cmd(cmd
, O_IN
, 0, 0);
2925 cmd
->len
^= F_NOT
; /* toggle F_NOT */
2926 fill_cmd(cmd
, O_IN
, 0, 0);
2930 fill_cmd(cmd
, O_FRAG
, 0, 0);
2934 fill_cmd(cmd
, O_LAYER2
, 0, 0);
2940 NEED1("recv, xmit, via require interface name"
2942 fill_iface((ipfw_insn_if
*)cmd
, av
[0]);
2944 if (F_LEN(cmd
) == 0) /* not a valid address */
2947 cmd
->opcode
= O_XMIT
;
2948 else if (i
== TOK_RECV
)
2949 cmd
->opcode
= O_RECV
;
2950 else if (i
== TOK_VIA
)
2951 cmd
->opcode
= O_VIA
;
2955 NEED1("icmptypes requires list of types");
2956 fill_icmptypes((ipfw_insn_u32
*)cmd
, *av
);
2961 NEED1("ipttl requires TTL");
2962 fill_cmd(cmd
, O_IPTTL
, 0, strtoul(*av
, NULL
, 0));
2967 NEED1("ipid requires length");
2968 fill_cmd(cmd
, O_IPID
, 0, strtoul(*av
, NULL
, 0));
2973 NEED1("iplen requires length");
2974 fill_cmd(cmd
, O_IPLEN
, 0, strtoul(*av
, NULL
, 0));
2979 NEED1("ipver requires version");
2980 fill_cmd(cmd
, O_IPVER
, 0, strtoul(*av
, NULL
, 0));
2984 case TOK_IPPRECEDENCE
:
2985 NEED1("ipprecedence requires value");
2986 fill_cmd(cmd
, O_IPPRECEDENCE
, 0,
2987 (strtoul(*av
, NULL
, 0) & 7) << 5);
2992 NEED1("missing argument for ipoptions");
2993 fill_flags(cmd
, O_IPOPT
, f_ipopts
, *av
);
2998 NEED1("missing argument for iptos");
2999 fill_flags(cmd
, O_IPTOS
, f_iptos
, *av
);
3004 NEED1("uid requires argument");
3010 cmd
->opcode
= O_UID
;
3011 uid
= strtoul(*av
, &end
, 0);
3012 pwd
= (*end
== '\0') ? getpwuid(uid
) : getpwnam(*av
);
3014 errx(EX_DATAERR
, "uid \"%s\" nonexistent", *av
);
3015 cmd32
->d
[0] = pwd
->pw_uid
;
3016 cmd
->len
= F_INSN_SIZE(ipfw_insn_u32
);
3022 NEED1("gid requires argument");
3028 cmd
->opcode
= O_GID
;
3029 gid
= strtoul(*av
, &end
, 0);
3030 grp
= (*end
== '\0') ? getgrgid(gid
) : getgrnam(*av
);
3032 errx(EX_DATAERR
, "gid \"%s\" nonexistent", *av
);
3033 cmd32
->d
[0] = grp
->gr_gid
;
3034 cmd
->len
= F_INSN_SIZE(ipfw_insn_u32
);
3040 fill_cmd(cmd
, O_ESTAB
, 0, 0);
3044 fill_cmd(cmd
, O_TCPFLAGS
, 0,
3045 (TH_SYN
) | ( (TH_ACK
) & 0xff) <<8 );
3049 NEED1("missing argument for tcpoptions");
3050 fill_flags(cmd
, O_TCPOPTS
, f_tcpopts
, *av
);
3056 NEED1("tcpseq/tcpack requires argument");
3057 cmd
->len
= F_INSN_SIZE(ipfw_insn_u32
);
3058 cmd
->opcode
= (i
== TOK_TCPSEQ
) ? O_TCPSEQ
: O_TCPACK
;
3059 cmd32
->d
[0] = htonl(strtoul(*av
, NULL
, 0));
3064 NEED1("tcpwin requires length");
3065 fill_cmd(cmd
, O_TCPWIN
, 0,
3066 htons(strtoul(*av
, NULL
, 0)));
3071 NEED1("missing argument for tcpflags");
3072 cmd
->opcode
= O_TCPFLAGS
;
3073 fill_flags(cmd
, O_TCPFLAGS
, f_tcpflags
, *av
);
3079 errx(EX_USAGE
, "keep-state cannot be part "
3082 errx(EX_USAGE
, "only one of keep-state "
3083 "and limit is allowed");
3085 fill_cmd(cmd
, O_KEEP_STATE
, 0, 0);
3090 errx(EX_USAGE
, "limit cannot be part "
3093 errx(EX_USAGE
, "only one of keep-state "
3094 "and limit is allowed");
3095 NEED1("limit needs mask and # of connections");
3098 ipfw_insn_limit
*c
= (ipfw_insn_limit
*)cmd
;
3100 cmd
->len
= F_INSN_SIZE(ipfw_insn_limit
);
3101 cmd
->opcode
= O_LIMIT
;
3107 val
= match_token(limit_masks
, *av
);
3110 c
->limit_mask
|= val
;
3113 c
->conn_limit
= atoi(*av
);
3114 if (c
->conn_limit
== 0)
3115 errx(EX_USAGE
, "limit: limit must be >0");
3116 if (c
->limit_mask
== 0)
3117 errx(EX_USAGE
, "missing limit mask");
3123 NEED1("missing protocol");
3124 if (add_proto(cmd
, *av
)) {
3128 errx(EX_DATAERR
, "invalid protocol ``%s''", *av
);
3132 NEED1("missing source IP");
3133 if (add_srcip(cmd
, *av
)) {
3139 NEED1("missing destination IP");
3140 if (add_dstip(cmd
, *av
)) {
3146 NEED1("missing source port");
3147 if (!strncmp(*av
, "any", strlen(*av
)) ||
3148 add_ports(cmd
, *av
, proto
, O_IP_SRCPORT
)) {
3151 errx(EX_DATAERR
, "invalid source port %s", *av
);
3155 NEED1("missing destination port");
3156 if (!strncmp(*av
, "any", strlen(*av
)) ||
3157 add_ports(cmd
, *av
, proto
, O_IP_DSTPORT
)) {
3160 errx(EX_DATAERR
, "invalid destination port %s",
3166 errx(EX_USAGE
, "MAC dst-mac src-mac");
3167 if (add_mac(cmd
, ac
, av
)) {
3173 NEED1("missing mac type");
3174 if (!add_mactype(cmd
, ac
, *av
))
3175 errx(EX_DATAERR
, "invalid mac type %s", *av
);
3180 errx(EX_USAGE
, "unrecognised option [%d] %s\n", i
, s
);
3182 if (F_LEN(cmd
) > 0) { /* prepare to advance */
3184 cmd
= next_cmd(cmd
);
3190 * Now copy stuff into the rule.
3191 * If we have a keep-state option, the first instruction
3192 * must be a PROBE_STATE (which is generated here).
3193 * If we have a LOG option, it was stored as the first command,
3194 * and now must be moved to the top of the action part.
3196 dst
= (ipfw_insn
*)rule
->cmd
;
3199 * First thing to write into the command stream is the match probability.
3201 if (match_prob
!= 1) { /* 1 means always match */
3202 dst
->opcode
= O_PROB
;
3204 *((int32_t *)(dst
+1)) = (int32_t)(match_prob
* 0x7fffffff);
3209 * generate O_PROBE_STATE if necessary
3211 if (have_state
&& have_state
->opcode
!= O_CHECK_STATE
) {
3212 fill_cmd(dst
, O_PROBE_STATE
, 0, 0);
3213 dst
= next_cmd(dst
);
3216 * copy all commands but O_LOG, O_KEEP_STATE, O_LIMIT
3218 for (src
= (ipfw_insn
*)cmdbuf
; src
!= cmd
; src
+= i
) {
3221 switch (src
->opcode
) {
3227 bcopy(src
, dst
, i
* sizeof(u_int32_t
));
3233 * put back the have_state command as last opcode
3235 if (have_state
&& have_state
->opcode
!= O_CHECK_STATE
) {
3236 i
= F_LEN(have_state
);
3237 bcopy(have_state
, dst
, i
* sizeof(u_int32_t
));
3241 * start action section
3243 rule
->act_ofs
= dst
- rule
->cmd
;
3246 * put back O_LOG if necessary
3248 src
= (ipfw_insn
*)cmdbuf
;
3249 if ( src
->opcode
== O_LOG
) {
3251 bcopy(src
, dst
, i
* sizeof(u_int32_t
));
3255 * copy all other actions
3257 for (src
= (ipfw_insn
*)actbuf
; src
!= action
; src
+= i
) {
3259 bcopy(src
, dst
, i
* sizeof(u_int32_t
));
3263 rule
->cmd_len
= (u_int32_t
*)dst
- (u_int32_t
*)(rule
->cmd
);
3264 i
= (void *)dst
- (void *)rule
;
3265 if (getsockopt(s
, IPPROTO_IP
, IP_FW_ADD
, rule
, &i
) == -1)
3266 err(EX_UNAVAILABLE
, "getsockopt(%s)", "IP_FW_ADD");
3268 show_ipfw(rule
, 10, 10);
3272 zero(int ac
, char *av
[])
3280 /* clear all entries */
3281 if (setsockopt(s
, IPPROTO_IP
, IP_FW_ZERO
, NULL
, 0) < 0)
3282 err(EX_UNAVAILABLE
, "setsockopt(%s)", "IP_FW_ZERO");
3284 printf("Accounting cleared.\n");
3291 if (isdigit(**av
)) {
3292 rulenum
= atoi(*av
);
3295 if (setsockopt(s
, IPPROTO_IP
,
3296 IP_FW_ZERO
, &rulenum
, sizeof rulenum
)) {
3297 warn("rule %u: setsockopt(IP_FW_ZERO)",
3299 failed
= EX_UNAVAILABLE
;
3300 } else if (!do_quiet
)
3301 printf("Entry %d cleared\n", rulenum
);
3303 errx(EX_USAGE
, "invalid rule number ``%s''", *av
);
3306 if (failed
!= EX_OK
)
3311 resetlog(int ac
, char *av
[])
3319 /* clear all entries */
3320 if (setsockopt(s
, IPPROTO_IP
, IP_FW_RESETLOG
, NULL
, 0) < 0)
3321 err(EX_UNAVAILABLE
, "setsockopt(IP_FW_RESETLOG)");
3323 printf("Logging counts reset.\n");
3330 if (isdigit(**av
)) {
3331 rulenum
= atoi(*av
);
3334 if (setsockopt(s
, IPPROTO_IP
,
3335 IP_FW_RESETLOG
, &rulenum
, sizeof rulenum
)) {
3336 warn("rule %u: setsockopt(IP_FW_RESETLOG)",
3338 failed
= EX_UNAVAILABLE
;
3339 } else if (!do_quiet
)
3340 printf("Entry %d logging count reset\n",
3343 errx(EX_DATAERR
, "invalid rule number ``%s''", *av
);
3346 if (failed
!= EX_OK
)
3353 int cmd
= do_pipe
? IP_DUMMYNET_FLUSH
: IP_FW_FLUSH
;
3355 if (!do_force
&& !do_quiet
) { /* need to ask user */
3358 printf("Are you sure? [yn] ");
3361 c
= toupper(getc(stdin
));
3362 while (c
!= '\n' && getc(stdin
) != '\n')
3364 return; /* and do not flush */
3365 } while (c
!= 'Y' && c
!= 'N');
3367 if (c
== 'N') /* user said no */
3370 if (setsockopt(s
, IPPROTO_IP
, cmd
, NULL
, 0) < 0)
3371 err(EX_UNAVAILABLE
, "setsockopt(IP_%s_FLUSH)",
3372 do_pipe
? "DUMMYNET" : "FW");
3374 printf("Flushed all %s.\n", do_pipe
? "pipes" : "rules");
3378 ipfw_main(int ac
, char **av
)
3385 /* Set the force flag for non-interactive processes */
3386 do_force
= !isatty(STDIN_FILENO
);
3388 optind
= optreset
= 1;
3389 while ((ch
= getopt(ac
, av
, "hs:acdefNqStv")) != -1)
3391 case 'h': /* help */
3393 break; /* NOTREACHED */
3395 case 's': /* sort */
3396 do_sort
= atoi(optarg
);
3425 case 'v': /* verbose */
3434 NEED1("bad arguments, for usage summary ``ipfw''");
3437 * optional: pipe or queue
3439 if (!strncmp(*av
, "pipe", strlen(*av
))) {
3443 } else if (!strncmp(*av
, "queue", strlen(*av
))) {
3448 NEED1("missing command");
3451 * for pipes and queues we normally say 'pipe NN config'
3452 * but the code is easier to parse as 'pipe config NN'
3453 * so we swap the two arguments.
3455 if (do_pipe
> 0 && ac
> 1 && *av
[0] >= '0' && *av
[0] <= '9') {
3460 if (!strncmp(*av
, "add", strlen(*av
)))
3462 else if (do_pipe
&& !strncmp(*av
, "config", strlen(*av
)))
3463 config_pipe(ac
, av
);
3464 else if (!strncmp(*av
, "delete", strlen(*av
)))
3466 else if (!strncmp(*av
, "flush", strlen(*av
)))
3468 else if (!strncmp(*av
, "zero", strlen(*av
)))
3470 else if (!strncmp(*av
, "resetlog", strlen(*av
)))
3472 else if (!strncmp(*av
, "print", strlen(*av
)) ||
3473 !strncmp(*av
, "list", strlen(*av
)))
3475 else if (!strncmp(*av
, "enable", strlen(*av
)))
3476 sysctl_handler(ac
, av
, 1);
3477 else if (!strncmp(*av
, "disable", strlen(*av
)))
3478 sysctl_handler(ac
, av
, 0);
3479 else if (!strncmp(*av
, "set", strlen(*av
)))
3480 sets_handler(ac
, av
);
3481 else if (!strncmp(*av
, "show", strlen(*av
))) {
3485 errx(EX_USAGE
, "bad command `%s'", *av
);
3491 ipfw_readfile(int ac
, char *av
[])
3494 #define WHITESP " \t\f\v\n\r"
3496 char *a
, *p
, *args
[MAX_ARGS
], *cmd
= NULL
;
3498 int i
=0, lineno
=0, qflag
=0, pflag
=0, status
;
3503 while ((c
= getopt(ac
, av
, "D:U:p:q")) != -1)
3507 errx(EX_USAGE
, "-D requires -p");
3508 if (i
> MAX_ARGS
- 2)
3510 "too many -D or -U options");
3517 errx(EX_USAGE
, "-U requires -p");
3518 if (i
> MAX_ARGS
- 2)
3520 "too many -D or -U options");
3537 errx(EX_USAGE
, "bad arguments, for usage"
3538 " summary ``ipfw''");
3544 errx(EX_USAGE
, "extraneous filename arguments");
3546 if ((f
= fopen(av
[0], "r")) == NULL
)
3547 err(EX_UNAVAILABLE
, "fopen: %s", av
[0]);
3550 /* pipe through preprocessor (cpp or m4) */
3555 if (pipe(pipedes
) == -1)
3556 err(EX_OSERR
, "cannot create pipe");
3558 switch((preproc
= fork())) {
3560 err(EX_OSERR
, "cannot fork");
3564 if (dup2(fileno(f
), 0) == -1
3565 || dup2(pipedes
[1], 1) == -1)
3566 err(EX_OSERR
, "dup2()");
3571 err(EX_OSERR
, "execvp(%s) failed", cmd
);
3577 if ((f
= fdopen(pipedes
[0], "r")) == NULL
) {
3578 int savederrno
= errno
;
3580 kill(preproc
, SIGTERM
);
3582 err(EX_OSERR
, "fdopen()");
3587 while (fgets(buf
, BUFSIZ
, f
)) {
3589 sprintf(linename
, "Line %d", lineno
);
3594 if ((p
= strchr(buf
, '#')) != NULL
)
3599 for (a
= strtok(buf
, WHITESP
);
3600 a
&& i
< MAX_ARGS
; a
= strtok(NULL
, WHITESP
), i
++)
3602 if (i
== (qflag
? 2: 1))
3605 errx(EX_USAGE
, "%s: too many arguments",
3613 if (waitpid(preproc
, &status
, 0) == -1)
3614 errx(EX_OSERR
, "waitpid()");
3615 if (WIFEXITED(status
) && WEXITSTATUS(status
) != EX_OK
)
3616 errx(EX_UNAVAILABLE
,
3617 "preprocessor exited with status %d",
3618 WEXITSTATUS(status
));
3619 else if (WIFSIGNALED(status
))
3620 errx(EX_UNAVAILABLE
,
3621 "preprocessor exited with signal %d",
3627 main(int ac
, char *av
[])
3629 s
= socket(AF_INET
, SOCK_RAW
, IPPROTO_RAW
);
3631 err(EX_UNAVAILABLE
, "socket");
3634 * If the last argument is an absolute pathname, interpret it
3635 * as a file to be preprocessed.
3638 if (ac
> 1 && av
[ac
- 1][0] == '/' && access(av
[ac
- 1], R_OK
) == 0)
3639 ipfw_readfile(ac
, av
);