Added support for user id matching.
[ipfw.git] / dummynet / ip_fw2.c
1 /*-
2  * Copyright (c) 2002 Luigi Rizzo, Universita` di Pisa
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23  * SUCH DAMAGE.
24  */
25
26 #include <sys/cdefs.h>
27 __FBSDID("$FreeBSD: src/sys/netinet/ip_fw2.c,v 1.175.2.13 2008/10/30 16:29:04 bz Exp $");
28
29 #define        DEB(x)
30 #define        DDB(x) x
31
32 /*
33  * Implement IP packet firewall (new version)
34  */
35
36 #if !defined(KLD_MODULE)
37 #include "opt_ipfw.h"
38 #include "opt_ipdivert.h"
39 #include "opt_ipdn.h"
40 #include "opt_inet.h"
41 #ifndef INET
42 #error IPFIREWALL requires INET.
43 #endif /* INET */
44 #endif
45 #include "opt_inet6.h"
46 #include "opt_ipsec.h"
47 #include "opt_mac.h"
48
49 #include <sys/param.h>
50 #include <sys/systm.h>
51 #include <sys/malloc.h>
52 #include <sys/mbuf.h>
53 #include <sys/kernel.h>
54 #include <sys/lock.h>
55 #include <sys/jail.h>
56 #include <sys/module.h>
57 #include <sys/priv.h>
58 #include <sys/proc.h>
59 #include <sys/socket.h>
60 #include <sys/socketvar.h>
61 #include <sys/sysctl.h>
62 #include <sys/syslog.h>
63 #include <sys/ucred.h>
64 #include <net/ethernet.h> /* for ETHERTYPE_IP */
65 #include <net/if.h>
66 #include <net/radix.h>
67 #include <net/route.h>
68 #include <net/pf_mtag.h>
69
70 #define IPFW_INTERNAL   /* Access to protected data structures in ip_fw.h. */
71
72 #include <netinet/in.h>
73 #include <netinet/in_var.h>
74 #include <netinet/in_pcb.h>
75 #include <netinet/ip.h>
76 #include <netinet/ip_var.h>
77 #include <netinet/ip_icmp.h>
78 #include <netinet/ip_fw.h>
79 #include <netinet/ip_divert.h>
80 #include <netinet/ip_dummynet.h>
81 #include <netinet/ip_carp.h>
82 #include <netinet/pim.h>
83 #include <netinet/tcp_var.h>
84 #include <netinet/udp.h>
85 #include <netinet/udp_var.h>
86 #include <netinet/sctp.h>
87 #include <netgraph/ng_ipfw.h>
88
89 #include <netinet/ip6.h>
90 #include <netinet/icmp6.h>
91 #ifdef INET6
92 #include <netinet6/scope6_var.h>
93 #endif
94
95 #include <machine/in_cksum.h>   /* XXX for in_cksum */
96
97 #ifdef MAC
98 #include <security/mac/mac_framework.h>
99 #endif
100
101 #include "missing.h"
102
103 /*
104  * set_disable contains one bit per set value (0..31).
105  * If the bit is set, all rules with the corresponding set
106  * are disabled. Set RESVD_SET(31) is reserved for the default rule
107  * and rules that are not deleted by the flush command,
108  * and CANNOT be disabled.
109  * Rules in set RESVD_SET can only be deleted explicitly.
110  */
111 static u_int32_t set_disable;
112 static int fw_verbose;
113 static struct callout ipfw_timeout;
114 static int verbose_limit;
115
116 static uma_zone_t ipfw_dyn_rule_zone;
117
118 /*
119  * Data structure to cache our ucred related
120  * information. This structure only gets used if
121  * the user specified UID/GID based constraints in
122  * a firewall rule.
123  */
124 struct ip_fw_ugid {
125         gid_t           fw_groups[NGROUPS];
126         int             fw_ngroups;
127         uid_t           fw_uid;
128         int             fw_prid;
129 };
130
131 /*
132  * list of rules for layer 3
133  */
134 struct ip_fw_chain layer3_chain;
135
136 MALLOC_DEFINE(M_IPFW, "IpFw/IpAcct", "IpFw/IpAcct chain's");
137 MALLOC_DEFINE(M_IPFW_TBL, "ipfw_tbl", "IpFw tables");
138 #define IPFW_NAT_LOADED (ipfw_nat_ptr != NULL)
139 ipfw_nat_t *ipfw_nat_ptr = NULL;
140 ipfw_nat_cfg_t *ipfw_nat_cfg_ptr;
141 ipfw_nat_cfg_t *ipfw_nat_del_ptr;
142 ipfw_nat_cfg_t *ipfw_nat_get_cfg_ptr;
143 ipfw_nat_cfg_t *ipfw_nat_get_log_ptr;
144
145 struct table_entry {
146         struct radix_node       rn[2];
147         struct sockaddr_in      addr, mask;
148         u_int32_t               value;
149 };
150
151 static int autoinc_step = 100; /* bounded to 1..1000 in add_rule() */
152
153 extern int ipfw_chg_hook(SYSCTL_HANDLER_ARGS);
154
155 #ifdef SYSCTL_NODE
156 SYSCTL_NODE(_net_inet_ip, OID_AUTO, fw, CTLFLAG_RW, 0, "Firewall");
157 SYSCTL_PROC(_net_inet_ip_fw, OID_AUTO, enable,
158     CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_SECURE3, &fw_enable, 0,
159     ipfw_chg_hook, "I", "Enable ipfw");
160 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, autoinc_step, CTLFLAG_RW,
161     &autoinc_step, 0, "Rule number autincrement step");
162 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, one_pass,
163     CTLFLAG_RW | CTLFLAG_SECURE3,
164     &fw_one_pass, 0,
165     "Only do a single pass through ipfw when using dummynet(4)");
166 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, verbose,
167     CTLFLAG_RW | CTLFLAG_SECURE3,
168     &fw_verbose, 0, "Log matches to ipfw rules");
169 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, verbose_limit, CTLFLAG_RW,
170     &verbose_limit, 0, "Set upper limit of matches of ipfw rules logged");
171 SYSCTL_UINT(_net_inet_ip_fw, OID_AUTO, default_rule, CTLFLAG_RD,
172     NULL, IPFW_DEFAULT_RULE, "The default/max possible rule number.");
173 SYSCTL_UINT(_net_inet_ip_fw, OID_AUTO, tables_max, CTLFLAG_RD,
174     NULL, IPFW_TABLES_MAX, "The maximum number of tables.");
175 #endif /* SYSCTL_NODE */
176
177 /*
178  * Description of dynamic rules.
179  *
180  * Dynamic rules are stored in lists accessed through a hash table
181  * (ipfw_dyn_v) whose size is curr_dyn_buckets. This value can
182  * be modified through the sysctl variable dyn_buckets which is
183  * updated when the table becomes empty.
184  *
185  * XXX currently there is only one list, ipfw_dyn.
186  *
187  * When a packet is received, its address fields are first masked
188  * with the mask defined for the rule, then hashed, then matched
189  * against the entries in the corresponding list.
190  * Dynamic rules can be used for different purposes:
191  *  + stateful rules;
192  *  + enforcing limits on the number of sessions;
193  *  + in-kernel NAT (not implemented yet)
194  *
195  * The lifetime of dynamic rules is regulated by dyn_*_lifetime,
196  * measured in seconds and depending on the flags.
197  *
198  * The total number of dynamic rules is stored in dyn_count.
199  * The max number of dynamic rules is dyn_max. When we reach
200  * the maximum number of rules we do not create anymore. This is
201  * done to avoid consuming too much memory, but also too much
202  * time when searching on each packet (ideally, we should try instead
203  * to put a limit on the length of the list on each bucket...).
204  *
205  * Each dynamic rule holds a pointer to the parent ipfw rule so
206  * we know what action to perform. Dynamic rules are removed when
207  * the parent rule is deleted. XXX we should make them survive.
208  *
209  * There are some limitations with dynamic rules -- we do not
210  * obey the 'randomized match', and we do not do multiple
211  * passes through the firewall. XXX check the latter!!!
212  */
213 static ipfw_dyn_rule **ipfw_dyn_v = NULL;
214 static u_int32_t dyn_buckets = 256; /* must be power of 2 */
215 static u_int32_t curr_dyn_buckets = 256; /* must be power of 2 */
216
217 #if defined( __linux__ ) || defined( _WIN32 )
218 DEFINE_SPINLOCK(ipfw_dyn_mtx);
219 #else
220 static struct mtx ipfw_dyn_mtx;         /* mutex guarding dynamic rules */
221 #endif /* !__linux__ */
222 #define IPFW_DYN_LOCK_INIT() \
223         mtx_init(&ipfw_dyn_mtx, "IPFW dynamic rules", NULL, MTX_DEF)
224 #define IPFW_DYN_LOCK_DESTROY() mtx_destroy(&ipfw_dyn_mtx)
225 #define IPFW_DYN_LOCK()         mtx_lock(&ipfw_dyn_mtx)
226 #define IPFW_DYN_UNLOCK()       mtx_unlock(&ipfw_dyn_mtx)
227 #define IPFW_DYN_LOCK_ASSERT()  mtx_assert(&ipfw_dyn_mtx, MA_OWNED)
228
229 /*
230  * Timeouts for various events in handing dynamic rules.
231  */
232 static u_int32_t dyn_ack_lifetime = 300;
233 static u_int32_t dyn_syn_lifetime = 20;
234 static u_int32_t dyn_fin_lifetime = 1;
235 static u_int32_t dyn_rst_lifetime = 1;
236 static u_int32_t dyn_udp_lifetime = 10;
237 static u_int32_t dyn_short_lifetime = 5;
238
239 /*
240  * Keepalives are sent if dyn_keepalive is set. They are sent every
241  * dyn_keepalive_period seconds, in the last dyn_keepalive_interval
242  * seconds of lifetime of a rule.
243  * dyn_rst_lifetime and dyn_fin_lifetime should be strictly lower
244  * than dyn_keepalive_period.
245  */
246
247 static u_int32_t dyn_keepalive_interval = 20;
248 static u_int32_t dyn_keepalive_period = 5;
249 static u_int32_t dyn_keepalive = 1;     /* do send keepalives */
250
251 static u_int32_t static_count;  /* # of static rules */
252 static u_int32_t static_len;    /* size in bytes of static rules */
253 static u_int32_t dyn_count;             /* # of dynamic rules */
254 static u_int32_t dyn_max = 4096;        /* max # of dynamic rules */
255
256 #ifdef SYSCTL_NODE
257 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_buckets, CTLFLAG_RW,
258     &dyn_buckets, 0, "Number of dyn. buckets");
259 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, curr_dyn_buckets, CTLFLAG_RD,
260     &curr_dyn_buckets, 0, "Current Number of dyn. buckets");
261 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_count, CTLFLAG_RD,
262     &dyn_count, 0, "Number of dyn. rules");
263 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_max, CTLFLAG_RW,
264     &dyn_max, 0, "Max number of dyn. rules");
265 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, static_count, CTLFLAG_RD,
266     &static_count, 0, "Number of static rules");
267 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_ack_lifetime, CTLFLAG_RW,
268     &dyn_ack_lifetime, 0, "Lifetime of dyn. rules for acks");
269 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_syn_lifetime, CTLFLAG_RW,
270     &dyn_syn_lifetime, 0, "Lifetime of dyn. rules for syn");
271 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_fin_lifetime, CTLFLAG_RW,
272     &dyn_fin_lifetime, 0, "Lifetime of dyn. rules for fin");
273 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_rst_lifetime, CTLFLAG_RW,
274     &dyn_rst_lifetime, 0, "Lifetime of dyn. rules for rst");
275 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_udp_lifetime, CTLFLAG_RW,
276     &dyn_udp_lifetime, 0, "Lifetime of dyn. rules for UDP");
277 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_short_lifetime, CTLFLAG_RW,
278     &dyn_short_lifetime, 0, "Lifetime of dyn. rules for other situations");
279 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, dyn_keepalive, CTLFLAG_RW,
280     &dyn_keepalive, 0, "Enable keepalives for dyn. rules");
281 #endif /* SYSCTL_NODE */
282
283 #ifdef INET6
284 /*
285  * IPv6 specific variables
286  */
287 #ifdef SYSCTL_NODE
288 SYSCTL_DECL(_net_inet6_ip6);
289 #endif /* SYSCTL_NODE */
290
291 static struct sysctl_ctx_list ip6_fw_sysctl_ctx;
292 static struct sysctl_oid *ip6_fw_sysctl_tree;
293 #endif /* INET6 */
294
295 static int fw_deny_unknown_exthdrs = 1;
296
297
298 /*
299  * L3HDR maps an ipv4 pointer into a layer3 header pointer of type T
300  * Other macros just cast void * into the appropriate type
301  */
302 #define L3HDR(T, ip)    ((T *)((u_int32_t *)(ip) + (ip)->ip_hl))
303 #define TCP(p)          ((struct tcphdr *)(p))
304 #define SCTP(p)         ((struct sctphdr *)(p))
305 #define UDP(p)          ((struct udphdr *)(p))
306 #define ICMP(p)         ((struct icmphdr *)(p))
307 #define ICMP6(p)        ((struct icmp6_hdr *)(p))
308
309 static __inline int
310 icmptype_match(struct icmphdr *icmp, ipfw_insn_u32 *cmd)
311 {
312         int type = icmp->icmp_type;
313
314         return (type <= ICMP_MAXTYPE && (cmd->d[0] & (1<<type)) );
315 }
316
317 #define TT      ( (1 << ICMP_ECHO) | (1 << ICMP_ROUTERSOLICIT) | \
318     (1 << ICMP_TSTAMP) | (1 << ICMP_IREQ) | (1 << ICMP_MASKREQ) )
319
320 static int
321 is_icmp_query(struct icmphdr *icmp)
322 {
323         int type = icmp->icmp_type;
324
325         return (type <= ICMP_MAXTYPE && (TT & (1<<type)) );
326 }
327 #undef TT
328
329 /*
330  * The following checks use two arrays of 8 or 16 bits to store the
331  * bits that we want set or clear, respectively. They are in the
332  * low and high half of cmd->arg1 or cmd->d[0].
333  *
334  * We scan options and store the bits we find set. We succeed if
335  *
336  *      (want_set & ~bits) == 0 && (want_clear & ~bits) == want_clear
337  *
338  * The code is sometimes optimized not to store additional variables.
339  */
340
341 static int
342 flags_match(ipfw_insn *cmd, u_int8_t bits)
343 {
344         u_char want_clear;
345         bits = ~bits;
346
347         if ( ((cmd->arg1 & 0xff) & bits) != 0)
348                 return 0; /* some bits we want set were clear */
349         want_clear = (cmd->arg1 >> 8) & 0xff;
350         if ( (want_clear & bits) != want_clear)
351                 return 0; /* some bits we want clear were set */
352         return 1;
353 }
354
355 static int
356 ipopts_match(struct ip *ip, ipfw_insn *cmd)
357 {
358         int optlen, bits = 0;
359         u_char *cp = (u_char *)(ip + 1);
360         int x = (ip->ip_hl << 2) - sizeof (struct ip);
361
362         for (; x > 0; x -= optlen, cp += optlen) {
363                 int opt = cp[IPOPT_OPTVAL];
364
365                 if (opt == IPOPT_EOL)
366                         break;
367                 if (opt == IPOPT_NOP)
368                         optlen = 1;
369                 else {
370                         optlen = cp[IPOPT_OLEN];
371                         if (optlen <= 0 || optlen > x)
372                                 return 0; /* invalid or truncated */
373                 }
374                 switch (opt) {
375
376                 default:
377                         break;
378
379                 case IPOPT_LSRR:
380                         bits |= IP_FW_IPOPT_LSRR;
381                         break;
382
383                 case IPOPT_SSRR:
384                         bits |= IP_FW_IPOPT_SSRR;
385                         break;
386
387                 case IPOPT_RR:
388                         bits |= IP_FW_IPOPT_RR;
389                         break;
390
391                 case IPOPT_TS:
392                         bits |= IP_FW_IPOPT_TS;
393                         break;
394                 }
395         }
396         return (flags_match(cmd, bits));
397 }
398
399 static int
400 tcpopts_match(struct tcphdr *tcp, ipfw_insn *cmd)
401 {
402         int optlen, bits = 0;
403         u_char *cp = (u_char *)(tcp + 1);
404         int x = (tcp->th_off << 2) - sizeof(struct tcphdr);
405
406         for (; x > 0; x -= optlen, cp += optlen) {
407                 int opt = cp[0];
408                 if (opt == TCPOPT_EOL)
409                         break;
410                 if (opt == TCPOPT_NOP)
411                         optlen = 1;
412                 else {
413                         optlen = cp[1];
414                         if (optlen <= 0)
415                                 break;
416                 }
417
418                 switch (opt) {
419
420                 default:
421                         break;
422
423                 case TCPOPT_MAXSEG:
424                         bits |= IP_FW_TCPOPT_MSS;
425                         break;
426
427                 case TCPOPT_WINDOW:
428                         bits |= IP_FW_TCPOPT_WINDOW;
429                         break;
430
431                 case TCPOPT_SACK_PERMITTED:
432                 case TCPOPT_SACK:
433                         bits |= IP_FW_TCPOPT_SACK;
434                         break;
435
436                 case TCPOPT_TIMESTAMP:
437                         bits |= IP_FW_TCPOPT_TS;
438                         break;
439
440                 }
441         }
442         return (flags_match(cmd, bits));
443 }
444
445 static int
446 iface_match(struct ifnet *ifp, ipfw_insn_if *cmd)
447 {
448         if (ifp == NULL)        /* no iface with this packet, match fails */
449                 return 0;
450         /* Check by name or by IP address */
451         if (cmd->name[0] != '\0') { /* match by name */
452                 /* Check name */
453                 if (cmd->p.glob) {
454                         if (fnmatch(cmd->name, ifp->if_xname, 0) == 0)
455                                 return(1);
456                 } else {
457                         if (strncmp(ifp->if_xname, cmd->name, IFNAMSIZ) == 0)
458                                 return(1);
459                 }
460         } else {
461 #if !defined( __linux__ ) && !defined( _WIN32 )
462                 struct ifaddr *ia;
463
464                 /* XXX lock? */
465                 TAILQ_FOREACH(ia, &ifp->if_addrhead, ifa_link) {
466                         if (ia->ifa_addr->sa_family != AF_INET)
467                                 continue;
468                         if (cmd->p.ip.s_addr == ((struct sockaddr_in *)
469                             (ia->ifa_addr))->sin_addr.s_addr)
470                                 return(1);      /* match */
471                 }
472 #endif
473         }
474         return(0);      /* no match, fail ... */
475 }
476
477 #if !defined( __linux__ ) && !defined( _WIN32 )
478 /*
479  * The verify_path function checks if a route to the src exists and
480  * if it is reachable via ifp (when provided).
481  * 
482  * The 'verrevpath' option checks that the interface that an IP packet
483  * arrives on is the same interface that traffic destined for the
484  * packet's source address would be routed out of.  The 'versrcreach'
485  * option just checks that the source address is reachable via any route
486  * (except default) in the routing table.  These two are a measure to block
487  * forged packets.  This is also commonly known as "anti-spoofing" or Unicast
488  * Reverse Path Forwarding (Unicast RFP) in Cisco-ese. The name of the knobs
489  * is purposely reminiscent of the Cisco IOS command,
490  *
491  *   ip verify unicast reverse-path
492  *   ip verify unicast source reachable-via any
493  *
494  * which implements the same functionality. But note that syntax is
495  * misleading. The check may be performed on all IP packets whether unicast,
496  * multicast, or broadcast.
497  */
498 static int
499 verify_path(struct in_addr src, struct ifnet *ifp, u_int fib)
500 {
501         struct route ro;
502         struct sockaddr_in *dst;
503
504         bzero(&ro, sizeof(ro));
505
506         dst = (struct sockaddr_in *)&(ro.ro_dst);
507         dst->sin_family = AF_INET;
508         dst->sin_len = sizeof(*dst);
509         dst->sin_addr = src;
510         in_rtalloc_ign(&ro, RTF_CLONING, fib);
511
512         if (ro.ro_rt == NULL)
513                 return 0;
514
515         /*
516          * If ifp is provided, check for equality with rtentry.
517          * We should use rt->rt_ifa->ifa_ifp, instead of rt->rt_ifp,
518          * in order to pass packets injected back by if_simloop():
519          * if useloopback == 1 routing entry (via lo0) for our own address
520          * may exist, so we need to handle routing assymetry.
521          */
522         if (ifp != NULL && ro.ro_rt->rt_ifa->ifa_ifp != ifp) {
523                 RTFREE(ro.ro_rt);
524                 return 0;
525         }
526
527         /* if no ifp provided, check if rtentry is not default route */
528         if (ifp == NULL &&
529              satosin(rt_key(ro.ro_rt))->sin_addr.s_addr == INADDR_ANY) {
530                 RTFREE(ro.ro_rt);
531                 return 0;
532         }
533
534         /* or if this is a blackhole/reject route */
535         if (ifp == NULL && ro.ro_rt->rt_flags & (RTF_REJECT|RTF_BLACKHOLE)) {
536                 RTFREE(ro.ro_rt);
537                 return 0;
538         }
539
540         /* found valid route */
541         RTFREE(ro.ro_rt);
542         return 1;
543 }
544 #endif
545
546 #ifdef INET6
547 /*
548  * ipv6 specific rules here...
549  */
550 static __inline int
551 icmp6type_match (int type, ipfw_insn_u32 *cmd)
552 {
553         return (type <= ICMP6_MAXTYPE && (cmd->d[type/32] & (1<<(type%32)) ) );
554 }
555
556 static int
557 flow6id_match( int curr_flow, ipfw_insn_u32 *cmd )
558 {
559         int i;
560         for (i=0; i <= cmd->o.arg1; ++i )
561                 if (curr_flow == cmd->d[i] )
562                         return 1;
563         return 0;
564 }
565
566 /* support for IP6_*_ME opcodes */
567 static int
568 search_ip6_addr_net (struct in6_addr * ip6_addr)
569 {
570         struct ifnet *mdc;
571         struct ifaddr *mdc2;
572         struct in6_ifaddr *fdm;
573         struct in6_addr copia;
574
575         TAILQ_FOREACH(mdc, &ifnet, if_link)
576                 TAILQ_FOREACH(mdc2, &mdc->if_addrlist, ifa_list) {
577                         if (mdc2->ifa_addr->sa_family == AF_INET6) {
578                                 fdm = (struct in6_ifaddr *)mdc2;
579                                 copia = fdm->ia_addr.sin6_addr;
580                                 /* need for leaving scope_id in the sock_addr */
581                                 in6_clearscope(&copia);
582                                 if (IN6_ARE_ADDR_EQUAL(ip6_addr, &copia))
583                                         return 1;
584                         }
585                 }
586         return 0;
587 }
588
589 static int
590 verify_path6(struct in6_addr *src, struct ifnet *ifp)
591 {
592         struct route_in6 ro;
593         struct sockaddr_in6 *dst;
594
595         bzero(&ro, sizeof(ro));
596
597         dst = (struct sockaddr_in6 * )&(ro.ro_dst);
598         dst->sin6_family = AF_INET6;
599         dst->sin6_len = sizeof(*dst);
600         dst->sin6_addr = *src;
601         /* XXX MRT 0 for ipv6 at this time */
602         rtalloc_ign((struct route *)&ro, RTF_CLONING);
603
604         if (ro.ro_rt == NULL)
605                 return 0;
606
607         /* 
608          * if ifp is provided, check for equality with rtentry
609          * We should use rt->rt_ifa->ifa_ifp, instead of rt->rt_ifp,
610          * to support the case of sending packets to an address of our own.
611          * (where the former interface is the first argument of if_simloop()
612          *  (=ifp), the latter is lo0)
613          */
614         if (ifp != NULL && ro.ro_rt->rt_ifa->ifa_ifp != ifp) {
615                 RTFREE(ro.ro_rt);
616                 return 0;
617         }
618
619         /* if no ifp provided, check if rtentry is not default route */
620         if (ifp == NULL &&
621             IN6_IS_ADDR_UNSPECIFIED(&satosin6(rt_key(ro.ro_rt))->sin6_addr)) {
622                 RTFREE(ro.ro_rt);
623                 return 0;
624         }
625
626         /* or if this is a blackhole/reject route */
627         if (ifp == NULL && ro.ro_rt->rt_flags & (RTF_REJECT|RTF_BLACKHOLE)) {
628                 RTFREE(ro.ro_rt);
629                 return 0;
630         }
631
632         /* found valid route */
633         RTFREE(ro.ro_rt);
634         return 1;
635
636 }
637 static __inline int
638 hash_packet6(struct ipfw_flow_id *id)
639 {
640         u_int32_t i;
641         i = (id->dst_ip6.__u6_addr.__u6_addr32[2]) ^
642             (id->dst_ip6.__u6_addr.__u6_addr32[3]) ^
643             (id->src_ip6.__u6_addr.__u6_addr32[2]) ^
644             (id->src_ip6.__u6_addr.__u6_addr32[3]) ^
645             (id->dst_port) ^ (id->src_port);
646         return i;
647 }
648
649 static int
650 is_icmp6_query(int icmp6_type)
651 {
652         if ((icmp6_type <= ICMP6_MAXTYPE) &&
653             (icmp6_type == ICMP6_ECHO_REQUEST ||
654             icmp6_type == ICMP6_MEMBERSHIP_QUERY ||
655             icmp6_type == ICMP6_WRUREQUEST ||
656             icmp6_type == ICMP6_FQDN_QUERY ||
657             icmp6_type == ICMP6_NI_QUERY))
658                 return (1);
659
660         return (0);
661 }
662
663 static void
664 send_reject6(struct ip_fw_args *args, int code, u_int hlen, struct ip6_hdr *ip6)
665 {
666         struct mbuf *m;
667
668         m = args->m;
669         if (code == ICMP6_UNREACH_RST && args->f_id.proto == IPPROTO_TCP) {
670                 struct tcphdr *tcp;
671                 tcp_seq ack, seq;
672                 int flags;
673                 struct {
674                         struct ip6_hdr ip6;
675                         struct tcphdr th;
676                 } ti;
677                 tcp = (struct tcphdr *)((char *)ip6 + hlen);
678
679                 if ((tcp->th_flags & TH_RST) != 0) {
680                         m_freem(m);
681                         args->m = NULL;
682                         return;
683                 }
684
685                 ti.ip6 = *ip6;
686                 ti.th = *tcp;
687                 ti.th.th_seq = ntohl(ti.th.th_seq);
688                 ti.th.th_ack = ntohl(ti.th.th_ack);
689                 ti.ip6.ip6_nxt = IPPROTO_TCP;
690
691                 if (ti.th.th_flags & TH_ACK) {
692                         ack = 0;
693                         seq = ti.th.th_ack;
694                         flags = TH_RST;
695                 } else {
696                         ack = ti.th.th_seq;
697                         if ((m->m_flags & M_PKTHDR) != 0) {
698                                 /*
699                                  * total new data to ACK is:
700                                  * total packet length,
701                                  * minus the header length,
702                                  * minus the tcp header length.
703                                  */
704                                 ack += m->m_pkthdr.len - hlen
705                                         - (ti.th.th_off << 2);
706                         } else if (ip6->ip6_plen) {
707                                 ack += ntohs(ip6->ip6_plen) + sizeof(*ip6) -
708                                     hlen - (ti.th.th_off << 2);
709                         } else {
710                                 m_freem(m);
711                                 return;
712                         }
713                         if (tcp->th_flags & TH_SYN)
714                                 ack++;
715                         seq = 0;
716                         flags = TH_RST|TH_ACK;
717                 }
718                 bcopy(&ti, ip6, sizeof(ti));
719                 /*
720                  * m is only used to recycle the mbuf
721                  * The data in it is never read so we don't need
722                  * to correct the offsets or anything
723                  */
724                 tcp_respond(NULL, ip6, tcp, m, ack, seq, flags);
725         } else if (code != ICMP6_UNREACH_RST) { /* Send an ICMPv6 unreach. */
726 #if 0
727                 /*
728                  * Unlike above, the mbufs need to line up with the ip6 hdr,
729                  * as the contents are read. We need to m_adj() the
730                  * needed amount.
731                  * The mbuf will however be thrown away so we can adjust it.
732                  * Remember we did an m_pullup on it already so we
733                  * can make some assumptions about contiguousness.
734                  */
735                 if (args->L3offset)
736                         m_adj(m, args->L3offset);
737 #endif
738                 icmp6_error(m, ICMP6_DST_UNREACH, code, 0);
739         } else
740                 m_freem(m);
741
742         args->m = NULL;
743 }
744
745 #endif /* INET6 */
746
747 static u_int64_t norule_counter;        /* counter for ipfw_log(NULL...) */
748
749 #define SNPARGS(buf, len) buf + len, sizeof(buf) > len ? sizeof(buf) - len : 0
750 #define SNP(buf) buf, sizeof(buf)
751
752 /*
753  * We enter here when we have a rule with O_LOG.
754  * XXX this function alone takes about 2Kbytes of code!
755  */
756 static void
757 ipfw_log(struct ip_fw *f, u_int hlen, struct ip_fw_args *args,
758     struct mbuf *m, struct ifnet *oif, u_short offset, uint32_t tablearg,
759     struct ip *ip)
760 {
761         struct ether_header *eh = args->eh;
762         char *action;
763         int limit_reached = 0;
764         char action2[40], proto[128], fragment[32];
765
766         fragment[0] = '\0';
767         proto[0] = '\0';
768
769         if (f == NULL) {        /* bogus pkt */
770                 if (verbose_limit != 0 && norule_counter >= verbose_limit)
771                         return;
772                 norule_counter++;
773                 if (norule_counter == verbose_limit)
774                         limit_reached = verbose_limit;
775                 action = "Refuse";
776         } else {        /* O_LOG is the first action, find the real one */
777                 ipfw_insn *cmd = ACTION_PTR(f);
778                 ipfw_insn_log *l = (ipfw_insn_log *)cmd;
779
780                 if (l->max_log != 0 && l->log_left == 0)
781                         return;
782                 l->log_left--;
783                 if (l->log_left == 0)
784                         limit_reached = l->max_log;
785                 cmd += F_LEN(cmd);      /* point to first action */
786                 if (cmd->opcode == O_ALTQ) {
787                         ipfw_insn_altq *altq = (ipfw_insn_altq *)cmd;
788
789                         snprintf(SNPARGS(action2, 0), "Altq %d",
790                                 altq->qid);
791                         cmd += F_LEN(cmd);
792                 }
793                 if (cmd->opcode == O_PROB)
794                         cmd += F_LEN(cmd);
795
796                 if (cmd->opcode == O_TAG)
797                         cmd += F_LEN(cmd);
798
799                 action = action2;
800                 switch (cmd->opcode) {
801                 case O_DENY:
802                         action = "Deny";
803                         break;
804
805                 case O_REJECT:
806                         if (cmd->arg1==ICMP_REJECT_RST)
807                                 action = "Reset";
808                         else if (cmd->arg1==ICMP_UNREACH_HOST)
809                                 action = "Reject";
810                         else
811                                 snprintf(SNPARGS(action2, 0), "Unreach %d",
812                                         cmd->arg1);
813                         break;
814
815                 case O_UNREACH6:
816                         if (cmd->arg1==ICMP6_UNREACH_RST)
817                                 action = "Reset";
818                         else
819                                 snprintf(SNPARGS(action2, 0), "Unreach %d",
820                                         cmd->arg1);
821                         break;
822
823                 case O_ACCEPT:
824                         action = "Accept";
825                         break;
826                 case O_COUNT:
827                         action = "Count";
828                         break;
829                 case O_DIVERT:
830                         snprintf(SNPARGS(action2, 0), "Divert %d",
831                                 cmd->arg1);
832                         break;
833                 case O_TEE:
834                         snprintf(SNPARGS(action2, 0), "Tee %d",
835                                 cmd->arg1);
836                         break;
837                 case O_SETFIB:
838                         snprintf(SNPARGS(action2, 0), "SetFib %d",
839                                 cmd->arg1);
840                         break;
841                 case O_SKIPTO:
842                         snprintf(SNPARGS(action2, 0), "SkipTo %d",
843                                 cmd->arg1);
844                         break;
845                 case O_PIPE:
846                         snprintf(SNPARGS(action2, 0), "Pipe %d",
847                                 cmd->arg1);
848                         break;
849                 case O_QUEUE:
850                         snprintf(SNPARGS(action2, 0), "Queue %d",
851                                 cmd->arg1);
852                         break;
853                 case O_FORWARD_IP: {
854                         ipfw_insn_sa *sa = (ipfw_insn_sa *)cmd;
855                         int len;
856                         struct in_addr dummyaddr;
857                         if (sa->sa.sin_addr.s_addr == INADDR_ANY)
858                                 dummyaddr.s_addr = htonl(tablearg);
859                         else
860                                 dummyaddr.s_addr = sa->sa.sin_addr.s_addr;
861
862                         len = snprintf(SNPARGS(action2, 0), "Forward to %s",
863                                 inet_ntoa(dummyaddr));
864
865                         if (sa->sa.sin_port)
866                                 snprintf(SNPARGS(action2, len), ":%d",
867                                     sa->sa.sin_port);
868                         }
869                         break;
870                 case O_NETGRAPH:
871                         snprintf(SNPARGS(action2, 0), "Netgraph %d",
872                                 cmd->arg1);
873                         break;
874                 case O_NGTEE:
875                         snprintf(SNPARGS(action2, 0), "Ngtee %d",
876                                 cmd->arg1);
877                         break;
878                 case O_NAT:
879                         action = "Nat";
880                         break;
881                 default:
882                         action = "UNKNOWN";
883                         break;
884                 }
885         }
886
887         if (hlen == 0) {        /* non-ip */
888                 snprintf(SNPARGS(proto, 0), "MAC");
889
890         } else {
891                 int len;
892                 char src[48], dst[48];
893                 struct icmphdr *icmp;
894                 struct tcphdr *tcp;
895                 struct udphdr *udp;
896 #ifdef INET6
897                 struct ip6_hdr *ip6 = NULL;
898                 struct icmp6_hdr *icmp6;
899 #endif
900                 src[0] = '\0';
901                 dst[0] = '\0';
902 #ifdef INET6
903                 if (IS_IP6_FLOW_ID(&(args->f_id))) {
904                         char ip6buf[INET6_ADDRSTRLEN];
905                         snprintf(src, sizeof(src), "[%s]",
906                             ip6_sprintf(ip6buf, &args->f_id.src_ip6));
907                         snprintf(dst, sizeof(dst), "[%s]",
908                             ip6_sprintf(ip6buf, &args->f_id.dst_ip6));
909
910                         ip6 = (struct ip6_hdr *)ip;
911                         tcp = (struct tcphdr *)(((char *)ip) + hlen);
912                         udp = (struct udphdr *)(((char *)ip) + hlen);
913                 } else
914 #endif
915                 {
916                         tcp = L3HDR(struct tcphdr, ip);
917                         udp = L3HDR(struct udphdr, ip);
918
919                         inet_ntoa_r(ip->ip_src, src);
920                         inet_ntoa_r(ip->ip_dst, dst);
921                 }
922
923                 switch (args->f_id.proto) {
924                 case IPPROTO_TCP:
925                         len = snprintf(SNPARGS(proto, 0), "TCP %s", src);
926                         if (offset == 0)
927                                 snprintf(SNPARGS(proto, len), ":%d %s:%d",
928                                     ntohs(tcp->th_sport),
929                                     dst,
930                                     ntohs(tcp->th_dport));
931                         else
932                                 snprintf(SNPARGS(proto, len), " %s", dst);
933                         break;
934
935                 case IPPROTO_UDP:
936                         len = snprintf(SNPARGS(proto, 0), "UDP %s", src);
937                         if (offset == 0)
938                                 snprintf(SNPARGS(proto, len), ":%d %s:%d",
939                                     ntohs(udp->uh_sport),
940                                     dst,
941                                     ntohs(udp->uh_dport));
942                         else
943                                 snprintf(SNPARGS(proto, len), " %s", dst);
944                         break;
945
946                 case IPPROTO_ICMP:
947                         icmp = L3HDR(struct icmphdr, ip);
948                         if (offset == 0)
949                                 len = snprintf(SNPARGS(proto, 0),
950                                     "ICMP:%u.%u ",
951                                     icmp->icmp_type, icmp->icmp_code);
952                         else
953                                 len = snprintf(SNPARGS(proto, 0), "ICMP ");
954                         len += snprintf(SNPARGS(proto, len), "%s", src);
955                         snprintf(SNPARGS(proto, len), " %s", dst);
956                         break;
957 #ifdef INET6
958                 case IPPROTO_ICMPV6:
959                         icmp6 = (struct icmp6_hdr *)(((char *)ip) + hlen);
960                         if (offset == 0)
961                                 len = snprintf(SNPARGS(proto, 0),
962                                     "ICMPv6:%u.%u ",
963                                     icmp6->icmp6_type, icmp6->icmp6_code);
964                         else
965                                 len = snprintf(SNPARGS(proto, 0), "ICMPv6 ");
966                         len += snprintf(SNPARGS(proto, len), "%s", src);
967                         snprintf(SNPARGS(proto, len), " %s", dst);
968                         break;
969 #endif
970                 default:
971                         len = snprintf(SNPARGS(proto, 0), "P:%d %s",
972                             args->f_id.proto, src);
973                         snprintf(SNPARGS(proto, len), " %s", dst);
974                         break;
975                 }
976
977 #ifdef INET6
978                 if (IS_IP6_FLOW_ID(&(args->f_id))) {
979                         if (offset & (IP6F_OFF_MASK | IP6F_MORE_FRAG))
980                                 snprintf(SNPARGS(fragment, 0),
981                                     " (frag %08x:%d@%d%s)",
982                                     args->f_id.frag_id6,
983                                     ntohs(ip6->ip6_plen) - hlen,
984                                     ntohs(offset & IP6F_OFF_MASK) << 3,
985                                     (offset & IP6F_MORE_FRAG) ? "+" : "");
986                 } else
987 #endif
988                 {
989                         int ip_off, ip_len;
990                         if (1 || eh != NULL) { /* layer 2 packets are as on the wire */
991                                 ip_off = ntohs(ip->ip_off);
992                                 ip_len = ntohs(ip->ip_len);
993                         } else {
994                                 ip_off = ip->ip_off;
995                                 ip_len = ip->ip_len;
996                         }
997                         if (ip_off & (IP_MF | IP_OFFMASK))
998                                 snprintf(SNPARGS(fragment, 0),
999                                     " (frag %d:%d@%d%s)",
1000                                     ntohs(ip->ip_id), ip_len - (ip->ip_hl << 2),
1001                                     offset << 3,
1002                                     (ip_off & IP_MF) ? "+" : "");
1003                 }
1004         }
1005         if (oif || m->m_pkthdr.rcvif)
1006                 log(LOG_SECURITY | LOG_INFO,
1007                     "ipfw: %d %s %s %s via %s%s\n",
1008                     f ? f->rulenum : -1,
1009                     action, proto, oif ? "out" : "in",
1010                     oif ? oif->if_xname : m->m_pkthdr.rcvif->if_xname,
1011                     fragment);
1012         else
1013                 log(LOG_SECURITY | LOG_INFO,
1014                     "ipfw: %d %s %s [no if info]%s\n",
1015                     f ? f->rulenum : -1,
1016                     action, proto, fragment);
1017         if (limit_reached)
1018                 log(LOG_SECURITY | LOG_NOTICE,
1019                     "ipfw: limit %d reached on entry %d\n",
1020                     limit_reached, f ? f->rulenum : -1);
1021 }
1022
1023 /*
1024  * IMPORTANT: the hash function for dynamic rules must be commutative
1025  * in source and destination (ip,port), because rules are bidirectional
1026  * and we want to find both in the same bucket.
1027  */
1028 static __inline int
1029 hash_packet(struct ipfw_flow_id *id)
1030 {
1031         u_int32_t i;
1032
1033 #ifdef INET6
1034         if (IS_IP6_FLOW_ID(id)) 
1035                 i = hash_packet6(id);
1036         else
1037 #endif /* INET6 */
1038         i = (id->dst_ip) ^ (id->src_ip) ^ (id->dst_port) ^ (id->src_port);
1039         i &= (curr_dyn_buckets - 1);
1040         return i;
1041 }
1042
1043 /**
1044  * unlink a dynamic rule from a chain. prev is a pointer to
1045  * the previous one, q is a pointer to the rule to delete,
1046  * head is a pointer to the head of the queue.
1047  * Modifies q and potentially also head.
1048  */
1049 #define UNLINK_DYN_RULE(prev, head, q) {                                \
1050         ipfw_dyn_rule *old_q = q;                                       \
1051                                                                         \
1052         /* remove a refcount to the parent */                           \
1053         if (q->dyn_type == O_LIMIT)                                     \
1054                 q->parent->count--;                                     \
1055         DEB(printf("ipfw: unlink entry 0x%08x %d -> 0x%08x %d, %d left\n",\
1056                 (q->id.src_ip), (q->id.src_port),                       \
1057                 (q->id.dst_ip), (q->id.dst_port), dyn_count-1 ); )      \
1058         if (prev != NULL)                                               \
1059                 prev->next = q = q->next;                               \
1060         else                                                            \
1061                 head = q = q->next;                                     \
1062         dyn_count--;                                                    \
1063         uma_zfree(ipfw_dyn_rule_zone, old_q); }
1064
1065 #define TIME_LEQ(a,b)       ((int)((a)-(b)) <= 0)
1066
1067 /**
1068  * Remove dynamic rules pointing to "rule", or all of them if rule == NULL.
1069  *
1070  * If keep_me == NULL, rules are deleted even if not expired,
1071  * otherwise only expired rules are removed.
1072  *
1073  * The value of the second parameter is also used to point to identify
1074  * a rule we absolutely do not want to remove (e.g. because we are
1075  * holding a reference to it -- this is the case with O_LIMIT_PARENT
1076  * rules). The pointer is only used for comparison, so any non-null
1077  * value will do.
1078  */
1079 static void
1080 remove_dyn_rule(struct ip_fw *rule, ipfw_dyn_rule *keep_me)
1081 {
1082         static u_int32_t last_remove = 0;
1083
1084 #define FORCE (keep_me == NULL)
1085
1086         ipfw_dyn_rule *prev, *q;
1087         int i, pass = 0, max_pass = 0;
1088
1089         IPFW_DYN_LOCK_ASSERT();
1090
1091         if (ipfw_dyn_v == NULL || dyn_count == 0)
1092                 return;
1093         /* do not expire more than once per second, it is useless */
1094         if (!FORCE && last_remove == time_uptime)
1095                 return;
1096         last_remove = time_uptime;
1097
1098         /*
1099          * because O_LIMIT refer to parent rules, during the first pass only
1100          * remove child and mark any pending LIMIT_PARENT, and remove
1101          * them in a second pass.
1102          */
1103 next_pass:
1104         for (i = 0 ; i < curr_dyn_buckets ; i++) {
1105                 for (prev=NULL, q = ipfw_dyn_v[i] ; q ; ) {
1106                         /*
1107                          * Logic can become complex here, so we split tests.
1108                          */
1109                         if (q == keep_me)
1110                                 goto next;
1111                         if (rule != NULL && rule != q->rule)
1112                                 goto next; /* not the one we are looking for */
1113                         if (q->dyn_type == O_LIMIT_PARENT) {
1114                                 /*
1115                                  * handle parent in the second pass,
1116                                  * record we need one.
1117                                  */
1118                                 max_pass = 1;
1119                                 if (pass == 0)
1120                                         goto next;
1121                                 if (FORCE && q->count != 0 ) {
1122                                         /* XXX should not happen! */
1123                                         printf("ipfw: OUCH! cannot remove rule,"
1124                                              " count %d\n", q->count);
1125                                 }
1126                         } else {
1127                                 if (!FORCE &&
1128                                     !TIME_LEQ( q->expire, time_uptime ))
1129                                         goto next;
1130                         }
1131              if (q->dyn_type != O_LIMIT_PARENT || !q->count) {
1132                      UNLINK_DYN_RULE(prev, ipfw_dyn_v[i], q);
1133                      continue;
1134              }
1135 next:
1136                         prev=q;
1137                         q=q->next;
1138                 }
1139         }
1140         if (pass++ < max_pass)
1141                 goto next_pass;
1142 }
1143
1144
1145 /**
1146  * lookup a dynamic rule.
1147  */
1148 static ipfw_dyn_rule *
1149 lookup_dyn_rule_locked(struct ipfw_flow_id *pkt, int *match_direction,
1150     struct tcphdr *tcp)
1151 {
1152         /*
1153          * stateful ipfw extensions.
1154          * Lookup into dynamic session queue
1155          */
1156 #define MATCH_REVERSE   0
1157 #define MATCH_FORWARD   1
1158 #define MATCH_NONE      2
1159 #define MATCH_UNKNOWN   3
1160         int i, dir = MATCH_NONE;
1161         ipfw_dyn_rule *prev, *q=NULL;
1162
1163         IPFW_DYN_LOCK_ASSERT();
1164
1165         if (ipfw_dyn_v == NULL)
1166                 goto done;      /* not found */
1167         i = hash_packet( pkt );
1168         for (prev=NULL, q = ipfw_dyn_v[i] ; q != NULL ; ) {
1169                 if (q->dyn_type == O_LIMIT_PARENT && q->count)
1170                         goto next;
1171                 if (TIME_LEQ( q->expire, time_uptime)) { /* expire entry */
1172                         UNLINK_DYN_RULE(prev, ipfw_dyn_v[i], q);
1173                         continue;
1174                 }
1175                 if (pkt->proto == q->id.proto &&
1176                     q->dyn_type != O_LIMIT_PARENT) {
1177                         if (IS_IP6_FLOW_ID(pkt)) {
1178                             if (IN6_ARE_ADDR_EQUAL(&(pkt->src_ip6),
1179                                 &(q->id.src_ip6)) &&
1180                             IN6_ARE_ADDR_EQUAL(&(pkt->dst_ip6),
1181                                 &(q->id.dst_ip6)) &&
1182                             pkt->src_port == q->id.src_port &&
1183                             pkt->dst_port == q->id.dst_port ) {
1184                                 dir = MATCH_FORWARD;
1185                                 break;
1186                             }
1187                             if (IN6_ARE_ADDR_EQUAL(&(pkt->src_ip6),
1188                                     &(q->id.dst_ip6)) &&
1189                                 IN6_ARE_ADDR_EQUAL(&(pkt->dst_ip6),
1190                                     &(q->id.src_ip6)) &&
1191                                 pkt->src_port == q->id.dst_port &&
1192                                 pkt->dst_port == q->id.src_port ) {
1193                                     dir = MATCH_REVERSE;
1194                                     break;
1195                             }
1196                         } else {
1197                             if (pkt->src_ip == q->id.src_ip &&
1198                                 pkt->dst_ip == q->id.dst_ip &&
1199                                 pkt->src_port == q->id.src_port &&
1200                                 pkt->dst_port == q->id.dst_port ) {
1201                                     dir = MATCH_FORWARD;
1202                                     break;
1203                             }
1204                             if (pkt->src_ip == q->id.dst_ip &&
1205                                 pkt->dst_ip == q->id.src_ip &&
1206                                 pkt->src_port == q->id.dst_port &&
1207                                 pkt->dst_port == q->id.src_port ) {
1208                                     dir = MATCH_REVERSE;
1209                                     break;
1210                             }
1211                         }
1212                 }
1213 next:
1214                 prev = q;
1215                 q = q->next;
1216         }
1217         if (q == NULL)
1218                 goto done; /* q = NULL, not found */
1219
1220         if ( prev != NULL) { /* found and not in front */
1221                 prev->next = q->next;
1222                 q->next = ipfw_dyn_v[i];
1223                 ipfw_dyn_v[i] = q;
1224         }
1225         if (pkt->proto == IPPROTO_TCP) { /* update state according to flags */
1226                 u_char flags = pkt->flags & (TH_FIN|TH_SYN|TH_RST);
1227
1228 #define BOTH_SYN        (TH_SYN | (TH_SYN << 8))
1229 #define BOTH_FIN        (TH_FIN | (TH_FIN << 8))
1230                 q->state |= (dir == MATCH_FORWARD ) ? flags : (flags << 8);
1231                 switch (q->state) {
1232                 case TH_SYN:                            /* opening */
1233                         q->expire = time_uptime + dyn_syn_lifetime;
1234                         break;
1235
1236                 case BOTH_SYN:                  /* move to established */
1237                 case BOTH_SYN | TH_FIN :        /* one side tries to close */
1238                 case BOTH_SYN | (TH_FIN << 8) :
1239                         if (tcp) {
1240 #define _SEQ_GE(a,b) ((int)(a) - (int)(b) >= 0)
1241                             u_int32_t ack = ntohl(tcp->th_ack);
1242                             if (dir == MATCH_FORWARD) {
1243                                 if (q->ack_fwd == 0 || _SEQ_GE(ack, q->ack_fwd))
1244                                     q->ack_fwd = ack;
1245                                 else { /* ignore out-of-sequence */
1246                                     break;
1247                                 }
1248                             } else {
1249                                 if (q->ack_rev == 0 || _SEQ_GE(ack, q->ack_rev))
1250                                     q->ack_rev = ack;
1251                                 else { /* ignore out-of-sequence */
1252                                     break;
1253                                 }
1254                             }
1255                         }
1256                         q->expire = time_uptime + dyn_ack_lifetime;
1257                         break;
1258
1259                 case BOTH_SYN | BOTH_FIN:       /* both sides closed */
1260                         if (dyn_fin_lifetime >= dyn_keepalive_period)
1261                                 dyn_fin_lifetime = dyn_keepalive_period - 1;
1262                         q->expire = time_uptime + dyn_fin_lifetime;
1263                         break;
1264
1265                 default:
1266 #if 0
1267                         /*
1268                          * reset or some invalid combination, but can also
1269                          * occur if we use keep-state the wrong way.
1270                          */
1271                         if ( (q->state & ((TH_RST << 8)|TH_RST)) == 0)
1272                                 printf("invalid state: 0x%x\n", q->state);
1273 #endif
1274                         if (dyn_rst_lifetime >= dyn_keepalive_period)
1275                                 dyn_rst_lifetime = dyn_keepalive_period - 1;
1276                         q->expire = time_uptime + dyn_rst_lifetime;
1277                         break;
1278                 }
1279         } else if (pkt->proto == IPPROTO_UDP) {
1280                 q->expire = time_uptime + dyn_udp_lifetime;
1281         } else {
1282                 /* other protocols */
1283                 q->expire = time_uptime + dyn_short_lifetime;
1284         }
1285 done:
1286         if (match_direction)
1287                 *match_direction = dir;
1288         return q;
1289 }
1290
1291 static ipfw_dyn_rule *
1292 lookup_dyn_rule(struct ipfw_flow_id *pkt, int *match_direction,
1293     struct tcphdr *tcp)
1294 {
1295         ipfw_dyn_rule *q;
1296
1297         IPFW_DYN_LOCK();
1298         q = lookup_dyn_rule_locked(pkt, match_direction, tcp);
1299         if (q == NULL)
1300                 IPFW_DYN_UNLOCK();
1301         /* NB: return table locked when q is not NULL */
1302         return q;
1303 }
1304
1305 static void
1306 realloc_dynamic_table(void)
1307 {
1308         IPFW_DYN_LOCK_ASSERT();
1309
1310         /*
1311          * Try reallocation, make sure we have a power of 2 and do
1312          * not allow more than 64k entries. In case of overflow,
1313          * default to 1024.
1314          */
1315
1316         if (dyn_buckets > 65536)
1317                 dyn_buckets = 1024;
1318         if ((dyn_buckets & (dyn_buckets-1)) != 0) { /* not a power of 2 */
1319                 dyn_buckets = curr_dyn_buckets; /* reset */
1320                 return;
1321         }
1322         curr_dyn_buckets = dyn_buckets;
1323         if (ipfw_dyn_v != NULL)
1324                 free(ipfw_dyn_v, M_IPFW);
1325         for (;;) {
1326                 ipfw_dyn_v = malloc(curr_dyn_buckets * sizeof(ipfw_dyn_rule *),
1327                        M_IPFW, M_NOWAIT | M_ZERO);
1328                 if (ipfw_dyn_v != NULL || curr_dyn_buckets <= 2)
1329                         break;
1330                 curr_dyn_buckets /= 2;
1331         }
1332 }
1333
1334 /**
1335  * Install state of type 'type' for a dynamic session.
1336  * The hash table contains two type of rules:
1337  * - regular rules (O_KEEP_STATE)
1338  * - rules for sessions with limited number of sess per user
1339  *   (O_LIMIT). When they are created, the parent is
1340  *   increased by 1, and decreased on delete. In this case,
1341  *   the third parameter is the parent rule and not the chain.
1342  * - "parent" rules for the above (O_LIMIT_PARENT).
1343  */
1344 static ipfw_dyn_rule *
1345 add_dyn_rule(struct ipfw_flow_id *id, u_int8_t dyn_type, struct ip_fw *rule)
1346 {
1347         ipfw_dyn_rule *r;
1348         int i;
1349
1350         IPFW_DYN_LOCK_ASSERT();
1351
1352         if (ipfw_dyn_v == NULL ||
1353             (dyn_count == 0 && dyn_buckets != curr_dyn_buckets)) {
1354                 realloc_dynamic_table();
1355                 if (ipfw_dyn_v == NULL)
1356                         return NULL; /* failed ! */
1357         }
1358         i = hash_packet(id);
1359
1360         r = uma_zalloc(ipfw_dyn_rule_zone, M_NOWAIT | M_ZERO);
1361         if (r == NULL) {
1362                 printf ("ipfw: sorry cannot allocate state\n");
1363                 return NULL;
1364         }
1365
1366         /* increase refcount on parent, and set pointer */
1367         if (dyn_type == O_LIMIT) {
1368                 ipfw_dyn_rule *parent = (ipfw_dyn_rule *)rule;
1369                 if ( parent->dyn_type != O_LIMIT_PARENT)
1370                         panic("invalid parent");
1371                 parent->count++;
1372                 r->parent = parent;
1373                 rule = parent->rule;
1374         }
1375
1376         r->id = *id;
1377         r->expire = time_uptime + dyn_syn_lifetime;
1378         r->rule = rule;
1379         r->dyn_type = dyn_type;
1380         r->pcnt = r->bcnt = 0;
1381         r->count = 0;
1382
1383         r->bucket = i;
1384         r->next = ipfw_dyn_v[i];
1385         ipfw_dyn_v[i] = r;
1386         dyn_count++;
1387         DEB(printf("ipfw: add dyn entry ty %d 0x%08x %d -> 0x%08x %d, total %d\n",
1388            dyn_type,
1389            (r->id.src_ip), (r->id.src_port),
1390            (r->id.dst_ip), (r->id.dst_port),
1391            dyn_count ); )
1392         return r;
1393 }
1394
1395 /**
1396  * lookup dynamic parent rule using pkt and rule as search keys.
1397  * If the lookup fails, then install one.
1398  */
1399 static ipfw_dyn_rule *
1400 lookup_dyn_parent(struct ipfw_flow_id *pkt, struct ip_fw *rule)
1401 {
1402         ipfw_dyn_rule *q;
1403         int i;
1404
1405         IPFW_DYN_LOCK_ASSERT();
1406
1407         if (ipfw_dyn_v) {
1408                 int is_v6 = IS_IP6_FLOW_ID(pkt);
1409                 i = hash_packet( pkt );
1410                 for (q = ipfw_dyn_v[i] ; q != NULL ; q=q->next)
1411                         if (q->dyn_type == O_LIMIT_PARENT &&
1412                             rule== q->rule &&
1413                             pkt->proto == q->id.proto &&
1414                             pkt->src_port == q->id.src_port &&
1415                             pkt->dst_port == q->id.dst_port &&
1416                             (
1417                                 (is_v6 &&
1418                                  IN6_ARE_ADDR_EQUAL(&(pkt->src_ip6),
1419                                         &(q->id.src_ip6)) &&
1420                                  IN6_ARE_ADDR_EQUAL(&(pkt->dst_ip6),
1421                                         &(q->id.dst_ip6))) ||
1422                                 (!is_v6 &&
1423                                  pkt->src_ip == q->id.src_ip &&
1424                                  pkt->dst_ip == q->id.dst_ip)
1425                             )
1426                         ) {
1427                                 q->expire = time_uptime + dyn_short_lifetime;
1428                                 DEB(printf("ipfw: lookup_dyn_parent found 0x%p\n",q);)
1429                                 return q;
1430                         }
1431         }
1432         return add_dyn_rule(pkt, O_LIMIT_PARENT, rule);
1433 }
1434
1435 /**
1436  * Install dynamic state for rule type cmd->o.opcode
1437  *
1438  * Returns 1 (failure) if state is not installed because of errors or because
1439  * session limitations are enforced.
1440  */
1441 static int
1442 install_state(struct ip_fw *rule, ipfw_insn_limit *cmd,
1443     struct ip_fw_args *args, uint32_t tablearg)
1444 {
1445         static int last_log;
1446         ipfw_dyn_rule *q;
1447         struct in_addr da;
1448         char src[48], dst[48];
1449
1450         src[0] = '\0';
1451         dst[0] = '\0';
1452
1453         DEB(
1454         printf("ipfw: %s: type %d 0x%08x %u -> 0x%08x %u\n",
1455             __func__, cmd->o.opcode,
1456             (args->f_id.src_ip), (args->f_id.src_port),
1457             (args->f_id.dst_ip), (args->f_id.dst_port));
1458         )
1459
1460         IPFW_DYN_LOCK();
1461
1462         q = lookup_dyn_rule_locked(&args->f_id, NULL, NULL);
1463
1464         if (q != NULL) {        /* should never occur */
1465                 if (last_log != time_uptime) {
1466                         last_log = time_uptime;
1467                         printf("ipfw: %s: entry already present, done\n",
1468                             __func__);
1469                 }
1470                 IPFW_DYN_UNLOCK();
1471                 return (0);
1472         }
1473
1474         if (dyn_count >= dyn_max)
1475                 /* Run out of slots, try to remove any expired rule. */
1476                 remove_dyn_rule(NULL, (ipfw_dyn_rule *)1);
1477
1478         if (dyn_count >= dyn_max) {
1479                 if (last_log != time_uptime) {
1480                         last_log = time_uptime;
1481                         printf("ipfw: %s: Too many dynamic rules\n", __func__);
1482                 }
1483                 IPFW_DYN_UNLOCK();
1484                 return (1);     /* cannot install, notify caller */
1485         }
1486
1487         switch (cmd->o.opcode) {
1488         case O_KEEP_STATE:      /* bidir rule */
1489                 add_dyn_rule(&args->f_id, O_KEEP_STATE, rule);
1490                 break;
1491
1492         case O_LIMIT: {         /* limit number of sessions */
1493                 struct ipfw_flow_id id;
1494                 ipfw_dyn_rule *parent;
1495                 uint32_t conn_limit;
1496                 uint16_t limit_mask = cmd->limit_mask;
1497
1498                 conn_limit = (cmd->conn_limit == IP_FW_TABLEARG) ?
1499                     tablearg : cmd->conn_limit;
1500                   
1501                 DEB(
1502                 if (cmd->conn_limit == IP_FW_TABLEARG)
1503                         printf("ipfw: %s: O_LIMIT rule, conn_limit: %u "
1504                             "(tablearg)\n", __func__, conn_limit);
1505                 else
1506                         printf("ipfw: %s: O_LIMIT rule, conn_limit: %u\n",
1507                             __func__, conn_limit);
1508                 )
1509
1510                 id.dst_ip = id.src_ip = id.dst_port = id.src_port = 0;
1511                 id.proto = args->f_id.proto;
1512                 id.addr_type = args->f_id.addr_type;
1513                 id.fib = M_GETFIB(args->m);
1514
1515                 if (IS_IP6_FLOW_ID (&(args->f_id))) {
1516                         if (limit_mask & DYN_SRC_ADDR)
1517                                 id.src_ip6 = args->f_id.src_ip6;
1518                         if (limit_mask & DYN_DST_ADDR)
1519                                 id.dst_ip6 = args->f_id.dst_ip6;
1520                 } else {
1521                         if (limit_mask & DYN_SRC_ADDR)
1522                                 id.src_ip = args->f_id.src_ip;
1523                         if (limit_mask & DYN_DST_ADDR)
1524                                 id.dst_ip = args->f_id.dst_ip;
1525                 }
1526                 if (limit_mask & DYN_SRC_PORT)
1527                         id.src_port = args->f_id.src_port;
1528                 if (limit_mask & DYN_DST_PORT)
1529                         id.dst_port = args->f_id.dst_port;
1530                 if ((parent = lookup_dyn_parent(&id, rule)) == NULL) {
1531                         printf("ipfw: %s: add parent failed\n", __func__);
1532                         IPFW_DYN_UNLOCK();
1533                         return (1);
1534                 }
1535
1536                 if (parent->count >= conn_limit) {
1537                         /* See if we can remove some expired rule. */
1538                         remove_dyn_rule(rule, parent);
1539                         if (parent->count >= conn_limit) {
1540                                 if (fw_verbose && last_log != time_uptime) {
1541                                         last_log = time_uptime;
1542 #ifdef INET6
1543                                         /*
1544                                          * XXX IPv6 flows are not
1545                                          * supported yet.
1546                                          */
1547                                         if (IS_IP6_FLOW_ID(&(args->f_id))) {
1548                                                 char ip6buf[INET6_ADDRSTRLEN];
1549                                                 snprintf(src, sizeof(src),
1550                                                     "[%s]", ip6_sprintf(ip6buf,
1551                                                         &args->f_id.src_ip6));
1552                                                 snprintf(dst, sizeof(dst),
1553                                                     "[%s]", ip6_sprintf(ip6buf,
1554                                                         &args->f_id.dst_ip6));
1555                                         } else
1556 #endif
1557                                         {
1558                                                 da.s_addr =
1559                                                     htonl(args->f_id.src_ip);
1560                                                 inet_ntoa_r(da, src);
1561                                                 da.s_addr =
1562                                                     htonl(args->f_id.dst_ip);
1563                                                 inet_ntoa_r(da, dst);
1564                                         }
1565                                         log(LOG_SECURITY | LOG_DEBUG,
1566                                             "ipfw: %d %s %s:%u -> %s:%u, %s\n",
1567                                             parent->rule->rulenum,
1568                                             "drop session",
1569                                             src, (args->f_id.src_port),
1570                                             dst, (args->f_id.dst_port),
1571                                             "too many entries");
1572                                 }
1573                                 IPFW_DYN_UNLOCK();
1574                                 return (1);
1575                         }
1576                 }
1577                 add_dyn_rule(&args->f_id, O_LIMIT, (struct ip_fw *)parent);
1578                 break;
1579         }
1580         default:
1581                 printf("ipfw: %s: unknown dynamic rule type %u\n",
1582                     __func__, cmd->o.opcode);
1583                 IPFW_DYN_UNLOCK();
1584                 return (1);
1585         }
1586
1587         /* XXX just set lifetime */
1588         lookup_dyn_rule_locked(&args->f_id, NULL, NULL);
1589
1590         IPFW_DYN_UNLOCK();
1591         return (0);
1592 }
1593
1594 /*
1595  * Generate a TCP packet, containing either a RST or a keepalive.
1596  * When flags & TH_RST, we are sending a RST packet, because of a
1597  * "reset" action matched the packet.
1598  * Otherwise we are sending a keepalive, and flags & TH_
1599  * The 'replyto' mbuf is the mbuf being replied to, if any, and is required
1600  * so that MAC can label the reply appropriately.
1601  */
1602 static struct mbuf *
1603 send_pkt(struct mbuf *replyto, struct ipfw_flow_id *id, u_int32_t seq,
1604     u_int32_t ack, int flags)
1605 {
1606 #if defined( __linux__ ) || defined( _WIN32 )
1607         return NULL;
1608 #else
1609         struct mbuf *m;
1610         struct ip *ip;
1611         struct tcphdr *tcp;
1612
1613         MGETHDR(m, M_DONTWAIT, MT_DATA);
1614         if (m == 0)
1615                 return (NULL);
1616         m->m_pkthdr.rcvif = (struct ifnet *)0;
1617
1618         M_SETFIB(m, id->fib);
1619 #ifdef MAC
1620         if (replyto != NULL)
1621                 mac_create_mbuf_netlayer(replyto, m);
1622         else
1623                 mac_create_mbuf_from_firewall(m);
1624 #else
1625         (void)replyto;          /* don't warn about unused arg */
1626 #endif
1627
1628         m->m_pkthdr.len = m->m_len = sizeof(struct ip) + sizeof(struct tcphdr);
1629         m->m_data += max_linkhdr;
1630
1631         ip = mtod(m, struct ip *);
1632         bzero(ip, m->m_len);
1633         tcp = (struct tcphdr *)(ip + 1); /* no IP options */
1634         ip->ip_p = IPPROTO_TCP;
1635         tcp->th_off = 5;
1636         /*
1637          * Assume we are sending a RST (or a keepalive in the reverse
1638          * direction), swap src and destination addresses and ports.
1639          */
1640         ip->ip_src.s_addr = htonl(id->dst_ip);
1641         ip->ip_dst.s_addr = htonl(id->src_ip);
1642         tcp->th_sport = htons(id->dst_port);
1643         tcp->th_dport = htons(id->src_port);
1644         if (flags & TH_RST) {   /* we are sending a RST */
1645                 if (flags & TH_ACK) {
1646                         tcp->th_seq = htonl(ack);
1647                         tcp->th_ack = htonl(0);
1648                         tcp->th_flags = TH_RST;
1649                 } else {
1650                         if (flags & TH_SYN)
1651                                 seq++;
1652                         tcp->th_seq = htonl(0);
1653                         tcp->th_ack = htonl(seq);
1654                         tcp->th_flags = TH_RST | TH_ACK;
1655                 }
1656         } else {
1657                 /*
1658                  * We are sending a keepalive. flags & TH_SYN determines
1659                  * the direction, forward if set, reverse if clear.
1660                  * NOTE: seq and ack are always assumed to be correct
1661                  * as set by the caller. This may be confusing...
1662                  */
1663                 if (flags & TH_SYN) {
1664                         /*
1665                          * we have to rewrite the correct addresses!
1666                          */
1667                         ip->ip_dst.s_addr = htonl(id->dst_ip);
1668                         ip->ip_src.s_addr = htonl(id->src_ip);
1669                         tcp->th_dport = htons(id->dst_port);
1670                         tcp->th_sport = htons(id->src_port);
1671                 }
1672                 tcp->th_seq = htonl(seq);
1673                 tcp->th_ack = htonl(ack);
1674                 tcp->th_flags = TH_ACK;
1675         }
1676         /*
1677          * set ip_len to the payload size so we can compute
1678          * the tcp checksum on the pseudoheader
1679          * XXX check this, could save a couple of words ?
1680          */
1681         ip->ip_len = htons(sizeof(struct tcphdr));
1682         tcp->th_sum = in_cksum(m, m->m_pkthdr.len);
1683         /*
1684          * now fill fields left out earlier
1685          */
1686         ip->ip_ttl = ip_defttl;
1687         ip->ip_len = m->m_pkthdr.len;
1688         m->m_flags |= M_SKIP_FIREWALL;
1689         return (m);
1690 #endif /* !__linux__ */
1691 }
1692
1693 /*
1694  * sends a reject message, consuming the mbuf passed as an argument.
1695  */
1696 static void
1697 send_reject(struct ip_fw_args *args, int code, int ip_len, struct ip *ip)
1698 {
1699
1700 #if 0
1701         /* XXX When ip is not guaranteed to be at mtod() we will
1702          * need to account for this */
1703          * The mbuf will however be thrown away so we can adjust it.
1704          * Remember we did an m_pullup on it already so we
1705          * can make some assumptions about contiguousness.
1706          */
1707         if (args->L3offset)
1708                 m_adj(m, args->L3offset);
1709 #endif
1710         if (code != ICMP_REJECT_RST) { /* Send an ICMP unreach */
1711                 /* We need the IP header in host order for icmp_error(). */
1712 #if !defined( __linux__ ) && !defined( _WIN32 )
1713                 if (args->eh != NULL) {
1714                         ip->ip_len = ntohs(ip->ip_len);
1715                         ip->ip_off = ntohs(ip->ip_off);
1716                 }
1717 #endif
1718                 icmp_error(args->m, ICMP_UNREACH, code, 0L, 0);
1719         } else if (args->f_id.proto == IPPROTO_TCP) {
1720                 struct tcphdr *const tcp =
1721                     L3HDR(struct tcphdr, mtod(args->m, struct ip *));
1722                 if ( (tcp->th_flags & TH_RST) == 0) {
1723                         struct mbuf *m;
1724                         m = send_pkt(args->m, &(args->f_id),
1725                                 ntohl(tcp->th_seq), ntohl(tcp->th_ack),
1726                                 tcp->th_flags | TH_RST);
1727                         if (m != NULL)
1728                                 ip_output(m, NULL, NULL, 0, NULL, NULL);
1729                 }
1730                 m_freem(args->m);
1731         } else
1732                 m_freem(args->m);
1733         args->m = NULL;
1734 }
1735
1736 /**
1737  *
1738  * Given an ip_fw *, lookup_next_rule will return a pointer
1739  * to the next rule, which can be either the jump
1740  * target (for skipto instructions) or the next one in the list (in
1741  * all other cases including a missing jump target).
1742  * The result is also written in the "next_rule" field of the rule.
1743  * Backward jumps are not allowed, so start looking from the next
1744  * rule...
1745  *
1746  * This never returns NULL -- in case we do not have an exact match,
1747  * the next rule is returned. When the ruleset is changed,
1748  * pointers are flushed so we are always correct.
1749  */
1750
1751 static struct ip_fw *
1752 lookup_next_rule(struct ip_fw *me, u_int32_t tablearg)
1753 {
1754         struct ip_fw *rule = NULL;
1755         ipfw_insn *cmd;
1756         u_int16_t       rulenum;
1757
1758         /* look for action, in case it is a skipto */
1759         cmd = ACTION_PTR(me);
1760         if (cmd->opcode == O_LOG)
1761                 cmd += F_LEN(cmd);
1762         if (cmd->opcode == O_ALTQ)
1763                 cmd += F_LEN(cmd);
1764         if (cmd->opcode == O_TAG)
1765                 cmd += F_LEN(cmd);
1766         if (cmd->opcode == O_SKIPTO ) {
1767                 if (tablearg != 0) {
1768                         rulenum = (u_int16_t)tablearg;
1769                 } else {
1770                         rulenum = cmd->arg1;
1771                 }
1772                 for (rule = me->next; rule ; rule = rule->next) {
1773                         if (rule->rulenum >= rulenum) {
1774                                 break;
1775                         }
1776                 }
1777         }
1778         if (rule == NULL)                       /* failure or not a skipto */
1779                 rule = me->next;
1780         me->next_rule = rule;
1781         return rule;
1782 }
1783
1784 #ifdef radix
1785 static int
1786 add_table_entry(struct ip_fw_chain *ch, uint16_t tbl, in_addr_t addr,
1787     uint8_t mlen, uint32_t value)
1788 {
1789         struct radix_node_head *rnh;
1790         struct table_entry *ent;
1791         struct radix_node *rn;
1792
1793         if (tbl >= IPFW_TABLES_MAX)
1794                 return (EINVAL);
1795         rnh = ch->tables[tbl];
1796         ent = malloc(sizeof(*ent), M_IPFW_TBL, M_NOWAIT | M_ZERO);
1797         if (ent == NULL)
1798                 return (ENOMEM);
1799         ent->value = value;
1800         ent->addr.sin_len = ent->mask.sin_len = 8;
1801         ent->mask.sin_addr.s_addr = htonl(mlen ? ~((1 << (32 - mlen)) - 1) : 0);
1802         ent->addr.sin_addr.s_addr = addr & ent->mask.sin_addr.s_addr;
1803         IPFW_WLOCK(ch);
1804         rn = rnh->rnh_addaddr(&ent->addr, &ent->mask, rnh, (void *)ent);
1805         if (rn == NULL) {
1806                 IPFW_WUNLOCK(ch);
1807                 free(ent, M_IPFW_TBL);
1808                 return (EEXIST);
1809         }
1810         IPFW_WUNLOCK(ch);
1811         return (0);
1812 }
1813
1814 static int
1815 del_table_entry(struct ip_fw_chain *ch, uint16_t tbl, in_addr_t addr,
1816     uint8_t mlen)
1817 {
1818         struct radix_node_head *rnh;
1819         struct table_entry *ent;
1820         struct sockaddr_in sa, mask;
1821
1822         if (tbl >= IPFW_TABLES_MAX)
1823                 return (EINVAL);
1824         rnh = ch->tables[tbl];
1825         sa.sin_len = mask.sin_len = 8;
1826         mask.sin_addr.s_addr = htonl(mlen ? ~((1 << (32 - mlen)) - 1) : 0);
1827         sa.sin_addr.s_addr = addr & mask.sin_addr.s_addr;
1828         IPFW_WLOCK(ch);
1829         ent = (struct table_entry *)rnh->rnh_deladdr(&sa, &mask, rnh);
1830         if (ent == NULL) {
1831                 IPFW_WUNLOCK(ch);
1832                 return (ESRCH);
1833         }
1834         IPFW_WUNLOCK(ch);
1835         free(ent, M_IPFW_TBL);
1836         return (0);
1837 }
1838
1839 static int
1840 flush_table_entry(struct radix_node *rn, void *arg)
1841 {
1842         struct radix_node_head * const rnh = arg;
1843         struct table_entry *ent;
1844
1845         ent = (struct table_entry *)
1846             rnh->rnh_deladdr(rn->rn_key, rn->rn_mask, rnh);
1847         if (ent != NULL)
1848                 free(ent, M_IPFW_TBL);
1849         return (0);
1850 }
1851
1852 static int
1853 flush_table(struct ip_fw_chain *ch, uint16_t tbl)
1854 {
1855         struct radix_node_head *rnh;
1856
1857         IPFW_WLOCK_ASSERT(ch);
1858
1859         if (tbl >= IPFW_TABLES_MAX)
1860                 return (EINVAL);
1861         rnh = ch->tables[tbl];
1862         KASSERT(rnh != NULL, ("NULL IPFW table"));
1863         rnh->rnh_walktree(rnh, flush_table_entry, rnh);
1864         return (0);
1865 }
1866 #endif
1867
1868 static void
1869 flush_tables(struct ip_fw_chain *ch)
1870 {
1871 #ifdef radix
1872         uint16_t tbl;
1873
1874         IPFW_WLOCK_ASSERT(ch);
1875
1876         for (tbl = 0; tbl < IPFW_TABLES_MAX; tbl++)
1877                 flush_table(ch, tbl);
1878 #endif
1879 }
1880
1881 static int
1882 init_tables(struct ip_fw_chain *ch)
1883
1884 #ifdef radix
1885         int i;
1886         uint16_t j;
1887
1888         for (i = 0; i < IPFW_TABLES_MAX; i++) {
1889                 if (!rn_inithead((void **)&ch->tables[i], 32)) {
1890                         for (j = 0; j < i; j++) {
1891                                 (void) flush_table(ch, j);
1892                         }
1893                         return (ENOMEM);
1894                 }
1895         }
1896 #endif
1897         return (0);
1898 }
1899
1900 static int
1901 lookup_table(struct ip_fw_chain *ch, uint16_t tbl, in_addr_t addr,
1902     uint32_t *val)
1903 {
1904 #ifdef radix
1905         struct radix_node_head *rnh;
1906         struct table_entry *ent;
1907         struct sockaddr_in sa;
1908
1909         if (tbl >= IPFW_TABLES_MAX)
1910                 return (0);
1911         rnh = ch->tables[tbl];
1912         sa.sin_len = 8;
1913         sa.sin_addr.s_addr = addr;
1914         ent = (struct table_entry *)(rnh->rnh_lookup(&sa, NULL, rnh));
1915         if (ent != NULL) {
1916                 *val = ent->value;
1917                 return (1);
1918         }
1919 #endif
1920         return (0);
1921 }
1922
1923 #ifdef radix
1924 static int
1925 count_table_entry(struct radix_node *rn, void *arg)
1926 {
1927         u_int32_t * const cnt = arg;
1928
1929         (*cnt)++;
1930         return (0);
1931 }
1932
1933 static int
1934 count_table(struct ip_fw_chain *ch, uint32_t tbl, uint32_t *cnt)
1935 {
1936         struct radix_node_head *rnh;
1937
1938         if (tbl >= IPFW_TABLES_MAX)
1939                 return (EINVAL);
1940         rnh = ch->tables[tbl];
1941         *cnt = 0;
1942         rnh->rnh_walktree(rnh, count_table_entry, cnt);
1943         return (0);
1944 }
1945
1946 static int
1947 dump_table_entry(struct radix_node *rn, void *arg)
1948 {
1949         struct table_entry * const n = (struct table_entry *)rn;
1950         ipfw_table * const tbl = arg;
1951         ipfw_table_entry *ent;
1952
1953         if (tbl->cnt == tbl->size)
1954                 return (1);
1955         ent = &tbl->ent[tbl->cnt];
1956         ent->tbl = tbl->tbl;
1957         if (in_nullhost(n->mask.sin_addr))
1958                 ent->masklen = 0;
1959         else
1960                 ent->masklen = 33 - ffs(ntohl(n->mask.sin_addr.s_addr));
1961         ent->addr = n->addr.sin_addr.s_addr;
1962         ent->value = n->value;
1963         tbl->cnt++;
1964         return (0);
1965 }
1966
1967 static int
1968 dump_table(struct ip_fw_chain *ch, ipfw_table *tbl)
1969 {
1970         struct radix_node_head *rnh;
1971
1972         if (tbl->tbl >= IPFW_TABLES_MAX)
1973                 return (EINVAL);
1974         rnh = ch->tables[tbl->tbl];
1975         tbl->cnt = 0;
1976         rnh->rnh_walktree(rnh, dump_table_entry, tbl);
1977         return (0);
1978 }
1979 #endif
1980
1981 #if 0
1982 static void
1983 fill_ugid_cache(struct inpcb *inp, struct ip_fw_ugid *ugp)
1984 {
1985         struct ucred *cr;
1986
1987         cr = inp->inp_cred;
1988         ugp->fw_prid = jailed(cr) ? cr->cr_prison->pr_id : -1;
1989         ugp->fw_uid = cr->cr_uid;
1990         ugp->fw_ngroups = cr->cr_ngroups;
1991         bcopy(cr->cr_groups, ugp->fw_groups, sizeof(ugp->fw_groups));
1992 }
1993 #endif /* no uigid support */
1994
1995 static int
1996 check_uidgid(ipfw_insn_u32 *insn, int proto, struct ifnet *oif,
1997     struct in_addr dst_ip, u_int16_t dst_port, struct in_addr src_ip,
1998     u_int16_t src_port, struct ip_fw_ugid *ugp, int *ugid_lookupp,
1999     struct inpcb *inp, struct sk_buff *skb)
2000 {
2001 #if 1   /* Linux */
2002
2003         const struct file *filp;
2004
2005         if (insn->o.opcode == O_JAIL)
2006                 return 0;
2007
2008         if (skb->sk == NULL || skb->sk->sk_socket == NULL)
2009                 return 0;
2010
2011         filp = skb->sk->sk_socket->file;
2012         if (filp == NULL)
2013                 return 0;
2014
2015 #if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,28)
2016 /* use the current's real uid/gid */
2017 #define UID f_uid
2018 #define GID f_gid
2019 #else /* 2.6.29 */
2020 /* use the current's file access real uid/gid */
2021 #define UID f_cred->fsuid
2022 #define GID f_cred->fsgid
2023 #endif
2024
2025         if (insn->o.opcode == O_UID) {
2026                 if (filp->UID != (uid_t)insn->d[0])
2027                         return 0;
2028         }
2029
2030         if (insn->o.opcode == O_GID) {
2031                 if (filp->GID != (gid_t)insn->d[0])
2032                         return 0;
2033         }
2034
2035         return 1;
2036
2037 #else /* FreeBSD original code */
2038         struct inpcbinfo *pi;
2039         int wildcard;
2040         struct inpcb *pcb;
2041         int match;
2042         gid_t *gp;
2043
2044         /*
2045          * Check to see if the UDP or TCP stack supplied us with
2046          * the PCB. If so, rather then holding a lock and looking
2047          * up the PCB, we can use the one that was supplied.
2048          */
2049         if (inp && *ugid_lookupp == 0) {
2050                 INP_LOCK_ASSERT(inp);
2051                 if (inp->inp_socket != NULL) {
2052                         fill_ugid_cache(inp, ugp);
2053                         *ugid_lookupp = 1;
2054                 } else
2055                         *ugid_lookupp = -1;
2056         }
2057         /*
2058          * If we have already been here and the packet has no
2059          * PCB entry associated with it, then we can safely
2060          * assume that this is a no match.
2061          */
2062         if (*ugid_lookupp == -1)
2063                 return (0);
2064         if (proto == IPPROTO_TCP) {
2065                 wildcard = 0;
2066                 pi = &tcbinfo;
2067         } else if (proto == IPPROTO_UDP) {
2068                 wildcard = INPLOOKUP_WILDCARD;
2069                 pi = &udbinfo;
2070         } else
2071                 return 0;
2072         match = 0;
2073         if (*ugid_lookupp == 0) {
2074                 INP_INFO_RLOCK(pi);
2075                 pcb =  (oif) ?
2076                         in_pcblookup_hash(pi,
2077                                 dst_ip, htons(dst_port),
2078                                 src_ip, htons(src_port),
2079                                 wildcard, oif) :
2080                         in_pcblookup_hash(pi,
2081                                 src_ip, htons(src_port),
2082                                 dst_ip, htons(dst_port),
2083                                 wildcard, NULL);
2084                 if (pcb != NULL) {
2085                         fill_ugid_cache(pcb, ugp);
2086                         *ugid_lookupp = 1;
2087                 }
2088                 INP_INFO_RUNLOCK(pi);
2089                 if (*ugid_lookupp == 0) {
2090                         /*
2091                          * If the lookup did not yield any results, there
2092                          * is no sense in coming back and trying again. So
2093                          * we can set lookup to -1 and ensure that we wont
2094                          * bother the pcb system again.
2095                          */
2096                         *ugid_lookupp = -1;
2097                         return (0);
2098                 }
2099         } 
2100         if (insn->o.opcode == O_UID)
2101                 match = (ugp->fw_uid == (uid_t)insn->d[0]);
2102         else if (insn->o.opcode == O_GID) {
2103                 for (gp = ugp->fw_groups;
2104                         gp < &ugp->fw_groups[ugp->fw_ngroups]; gp++)
2105                         if (*gp == (gid_t)insn->d[0]) {
2106                                 match = 1;
2107                                 break;
2108                         }
2109         } else if (insn->o.opcode == O_JAIL)
2110                 match = (ugp->fw_prid == (int)insn->d[0]);
2111         return match;
2112 #endif
2113 }
2114
2115 /*
2116  * The main check routine for the firewall.
2117  *
2118  * All arguments are in args so we can modify them and return them
2119  * back to the caller.
2120  *
2121  * Parameters:
2122  *
2123  *      args->m (in/out) The packet; we set to NULL when/if we nuke it.
2124  *              Starts with the IP header.
2125  *      args->eh (in)   Mac header if present, or NULL for layer3 packet.
2126  *      args->L3offset  Number of bytes bypassed if we came from L2.
2127  *                      e.g. often sizeof(eh)  ** NOTYET **
2128  *      args->oif       Outgoing interface, or NULL if packet is incoming.
2129  *              The incoming interface is in the mbuf. (in)
2130  *      args->divert_rule (in/out)
2131  *              Skip up to the first rule past this rule number;
2132  *              upon return, non-zero port number for divert or tee.
2133  *
2134  *      args->rule      Pointer to the last matching rule (in/out)
2135  *      args->next_hop  Socket we are forwarding to (out).
2136  *      args->f_id      Addresses grabbed from the packet (out)
2137  *      args->cookie    a cookie depending on rule action
2138  *
2139  * Return value:
2140  *
2141  *      IP_FW_PASS      the packet must be accepted
2142  *      IP_FW_DENY      the packet must be dropped
2143  *      IP_FW_DIVERT    divert packet, port in m_tag
2144  *      IP_FW_TEE       tee packet, port in m_tag
2145  *      IP_FW_DUMMYNET  to dummynet, pipe in args->cookie
2146  *      IP_FW_NETGRAPH  into netgraph, cookie args->cookie
2147  *
2148  */
2149 int
2150 ipfw_chk(struct ip_fw_args *args)
2151 {
2152         /*
2153          * Local variables holding state during the processing of a packet:
2154          *
2155          * IMPORTANT NOTE: to speed up the processing of rules, there
2156          * are some assumption on the values of the variables, which
2157          * are documented here. Should you change them, please check
2158          * the implementation of the various instructions to make sure
2159          * that they still work.
2160          *
2161          * args->eh     The MAC header. It is non-null for a layer2
2162          *      packet, it is NULL for a layer-3 packet.
2163          * **notyet**
2164          * args->L3offset Offset in the packet to the L3 (IP or equiv.) header.
2165          *
2166          * m | args->m  Pointer to the mbuf, as received from the caller.
2167          *      It may change if ipfw_chk() does an m_pullup, or if it
2168          *      consumes the packet because it calls send_reject().
2169          *      XXX This has to change, so that ipfw_chk() never modifies
2170          *      or consumes the buffer.
2171          * ip   is the beginning of the ip(4 or 6) header.
2172          *      Calculated by adding the L3offset to the start of data.
2173          *      (Until we start using L3offset, the packet is
2174          *      supposed to start with the ip header).
2175          */
2176         struct mbuf *m = args->m;
2177         struct ip *ip = mtod(m, struct ip *);
2178
2179         /*
2180          * For rules which contain uid/gid or jail constraints, cache
2181          * a copy of the users credentials after the pcb lookup has been
2182          * executed. This will speed up the processing of rules with
2183          * these types of constraints, as well as decrease contention
2184          * on pcb related locks.
2185          */
2186         struct ip_fw_ugid fw_ugid_cache;
2187         int ugid_lookup = 0;
2188
2189         /*
2190          * divinput_flags       If non-zero, set to the IP_FW_DIVERT_*_FLAG
2191          *      associated with a packet input on a divert socket.  This
2192          *      will allow to distinguish traffic and its direction when
2193          *      it originates from a divert socket.
2194          */
2195         u_int divinput_flags = 0;
2196
2197         /*
2198          * oif | args->oif      If NULL, ipfw_chk has been called on the
2199          *      inbound path (ether_input, ip_input).
2200          *      If non-NULL, ipfw_chk has been called on the outbound path
2201          *      (ether_output, ip_output).
2202          */
2203         struct ifnet *oif = args->oif;
2204
2205         struct ip_fw *f = NULL;         /* matching rule */
2206         int retval = 0;
2207
2208         /*
2209          * hlen The length of the IP header.
2210          */
2211         u_int hlen = 0;         /* hlen >0 means we have an IP pkt */
2212
2213         /*
2214          * offset       The offset of a fragment. offset != 0 means that
2215          *      we have a fragment at this offset of an IPv4 packet.
2216          *      offset == 0 means that (if this is an IPv4 packet)
2217          *      this is the first or only fragment.
2218          *      For IPv6 offset == 0 means there is no Fragment Header. 
2219          *      If offset != 0 for IPv6 always use correct mask to
2220          *      get the correct offset because we add IP6F_MORE_FRAG
2221          *      to be able to dectect the first fragment which would
2222          *      otherwise have offset = 0.
2223          */
2224         u_short offset = 0;
2225
2226         /*
2227          * Local copies of addresses. They are only valid if we have
2228          * an IP packet.
2229          *
2230          * proto        The protocol. Set to 0 for non-ip packets,
2231          *      or to the protocol read from the packet otherwise.
2232          *      proto != 0 means that we have an IPv4 packet.
2233          *
2234          * src_port, dst_port   port numbers, in HOST format. Only
2235          *      valid for TCP and UDP packets.
2236          *
2237          * src_ip, dst_ip       ip addresses, in NETWORK format.
2238          *      Only valid for IPv4 packets.
2239          */
2240         u_int8_t proto;
2241         u_int16_t src_port = 0, dst_port = 0;   /* NOTE: host format    */
2242         struct in_addr src_ip, dst_ip;          /* NOTE: network format */
2243         u_int16_t ip_len=0;
2244         int pktlen;
2245         u_int16_t       etype = 0;      /* Host order stored ether type */
2246
2247         /*
2248          * dyn_dir = MATCH_UNKNOWN when rules unchecked,
2249          *      MATCH_NONE when checked and not matched (q = NULL),
2250          *      MATCH_FORWARD or MATCH_REVERSE otherwise (q != NULL)
2251          */
2252         int dyn_dir = MATCH_UNKNOWN;
2253         ipfw_dyn_rule *q = NULL;
2254         struct ip_fw_chain *chain = &layer3_chain;
2255         struct m_tag *mtag;
2256
2257         /*
2258          * We store in ulp a pointer to the upper layer protocol header.
2259          * In the ipv4 case this is easy to determine from the header,
2260          * but for ipv6 we might have some additional headers in the middle.
2261          * ulp is NULL if not found.
2262          */
2263         void *ulp = NULL;               /* upper layer protocol pointer. */
2264         /* XXX ipv6 variables */
2265         int is_ipv6 = 0;
2266         u_int16_t ext_hd = 0;   /* bits vector for extension header filtering */
2267         /* end of ipv6 variables */
2268         int is_ipv4 = 0;
2269
2270         if (m->m_flags & M_SKIP_FIREWALL)
2271                 return (IP_FW_PASS);    /* accept */
2272
2273         dst_ip.s_addr = 0;      /* make sure it is initialized */
2274         src_ip.s_addr = 0;      /* make sure it is initialized */
2275         pktlen = m->m_pkthdr.len;
2276         args->f_id.fib = M_GETFIB(m); /* note mbuf not altered) */
2277         proto = args->f_id.proto = 0;   /* mark f_id invalid */
2278                 /* XXX 0 is a valid proto: IP/IPv6 Hop-by-Hop Option */
2279
2280 /*
2281  * PULLUP_TO(len, p, T) makes sure that len + sizeof(T) is contiguous,
2282  * then it sets p to point at the offset "len" in the mbuf. WARNING: the
2283  * pointer might become stale after other pullups (but we never use it
2284  * this way).
2285  */
2286 #define PULLUP_TO(_len, p, T)                                           \
2287 do {                                                                    \
2288         int x = (_len) + sizeof(T);                                     \
2289         if ((m)->m_len < x) {                                           \
2290                         goto pullup_failed;                             \
2291         }                                                               \
2292         p = (mtod(m, char *) + (_len));                         \
2293 } while (0)
2294
2295         /*
2296          * if we have an ether header,
2297          */
2298         if (args->eh)
2299                 etype = ntohs(args->eh->ether_type);
2300
2301         /* Identify IP packets and fill up variables. */
2302         if (pktlen >= sizeof(struct ip6_hdr) &&
2303             (args->eh == NULL || etype == ETHERTYPE_IPV6) && ip->ip_v == 6) {
2304                 struct ip6_hdr *ip6 = (struct ip6_hdr *)ip;
2305                 is_ipv6 = 1;
2306                 args->f_id.addr_type = 6;
2307                 hlen = sizeof(struct ip6_hdr);
2308                 proto = ip6->ip6_nxt;
2309
2310                 /* Search extension headers to find upper layer protocols */
2311                 while (ulp == NULL) {
2312                         switch (proto) {
2313                         case IPPROTO_ICMPV6:
2314                                 PULLUP_TO(hlen, ulp, struct icmp6_hdr);
2315                                 args->f_id.flags = ICMP6(ulp)->icmp6_type;
2316                                 break;
2317
2318                         case IPPROTO_TCP:
2319                                 PULLUP_TO(hlen, ulp, struct tcphdr);
2320                                 dst_port = TCP(ulp)->th_dport;
2321                                 src_port = TCP(ulp)->th_sport;
2322                                 args->f_id.flags = TCP(ulp)->th_flags;
2323                                 break;
2324
2325                         case IPPROTO_SCTP:
2326                                 PULLUP_TO(hlen, ulp, struct sctphdr);
2327                                 src_port = SCTP(ulp)->src_port;
2328                                 dst_port = SCTP(ulp)->dest_port;
2329                                 break;
2330
2331                         case IPPROTO_UDP:
2332                                 PULLUP_TO(hlen, ulp, struct udphdr);
2333                                 dst_port = UDP(ulp)->uh_dport;
2334                                 src_port = UDP(ulp)->uh_sport;
2335                                 break;
2336
2337                         case IPPROTO_HOPOPTS:   /* RFC 2460 */
2338                                 PULLUP_TO(hlen, ulp, struct ip6_hbh);
2339                                 ext_hd |= EXT_HOPOPTS;
2340                                 hlen += (((struct ip6_hbh *)ulp)->ip6h_len + 1) << 3;
2341                                 proto = ((struct ip6_hbh *)ulp)->ip6h_nxt;
2342                                 ulp = NULL;
2343                                 break;
2344
2345                         case IPPROTO_ROUTING:   /* RFC 2460 */
2346                                 PULLUP_TO(hlen, ulp, struct ip6_rthdr);
2347                                 switch (((struct ip6_rthdr *)ulp)->ip6r_type) {
2348                                 case 0:
2349                                         ext_hd |= EXT_RTHDR0;
2350                                         break;
2351                                 case 2:
2352                                         ext_hd |= EXT_RTHDR2;
2353                                         break;
2354                                 default:
2355                                         printf("IPFW2: IPV6 - Unknown Routing "
2356                                             "Header type(%d)\n",
2357                                             ((struct ip6_rthdr *)ulp)->ip6r_type);
2358                                         if (fw_deny_unknown_exthdrs)
2359                                             return (IP_FW_DENY);
2360                                         break;
2361                                 }
2362                                 ext_hd |= EXT_ROUTING;
2363                                 hlen += (((struct ip6_rthdr *)ulp)->ip6r_len + 1) << 3;
2364                                 proto = ((struct ip6_rthdr *)ulp)->ip6r_nxt;
2365                                 ulp = NULL;
2366                                 break;
2367
2368                         case IPPROTO_FRAGMENT:  /* RFC 2460 */
2369                                 PULLUP_TO(hlen, ulp, struct ip6_frag);
2370                                 ext_hd |= EXT_FRAGMENT;
2371                                 hlen += sizeof (struct ip6_frag);
2372                                 proto = ((struct ip6_frag *)ulp)->ip6f_nxt;
2373                                 offset = ((struct ip6_frag *)ulp)->ip6f_offlg &
2374                                         IP6F_OFF_MASK;
2375                                 /* Add IP6F_MORE_FRAG for offset of first
2376                                  * fragment to be != 0. */
2377                                 offset |= ((struct ip6_frag *)ulp)->ip6f_offlg &
2378                                         IP6F_MORE_FRAG;
2379                                 if (offset == 0) {
2380                                         printf("IPFW2: IPV6 - Invalid Fragment "
2381                                             "Header\n");
2382                                         if (fw_deny_unknown_exthdrs)
2383                                             return (IP_FW_DENY);
2384                                         break;
2385                                 }
2386                                 args->f_id.frag_id6 =
2387                                     ntohl(((struct ip6_frag *)ulp)->ip6f_ident);
2388                                 ulp = NULL;
2389                                 break;
2390
2391                         case IPPROTO_DSTOPTS:   /* RFC 2460 */
2392                                 PULLUP_TO(hlen, ulp, struct ip6_hbh);
2393                                 ext_hd |= EXT_DSTOPTS;
2394                                 hlen += (((struct ip6_hbh *)ulp)->ip6h_len + 1) << 3;
2395                                 proto = ((struct ip6_hbh *)ulp)->ip6h_nxt;
2396                                 ulp = NULL;
2397                                 break;
2398
2399                         case IPPROTO_AH:        /* RFC 2402 */
2400                                 PULLUP_TO(hlen, ulp, struct ip6_ext);
2401                                 ext_hd |= EXT_AH;
2402                                 hlen += (((struct ip6_ext *)ulp)->ip6e_len + 2) << 2;
2403                                 proto = ((struct ip6_ext *)ulp)->ip6e_nxt;
2404                                 ulp = NULL;
2405                                 break;
2406
2407                         case IPPROTO_ESP:       /* RFC 2406 */
2408                                 PULLUP_TO(hlen, ulp, uint32_t); /* SPI, Seq# */
2409                                 /* Anything past Seq# is variable length and
2410                                  * data past this ext. header is encrypted. */
2411                                 ext_hd |= EXT_ESP;
2412                                 break;
2413
2414                         case IPPROTO_NONE:      /* RFC 2460 */
2415                                 /*
2416                                  * Packet ends here, and IPv6 header has
2417                                  * already been pulled up. If ip6e_len!=0
2418                                  * then octets must be ignored.
2419                                  */
2420                                 ulp = ip; /* non-NULL to get out of loop. */
2421                                 break;
2422
2423                         case IPPROTO_OSPFIGP:
2424                                 /* XXX OSPF header check? */
2425                                 PULLUP_TO(hlen, ulp, struct ip6_ext);
2426                                 break;
2427
2428                         case IPPROTO_PIM:
2429                                 /* XXX PIM header check? */
2430                                 PULLUP_TO(hlen, ulp, struct pim);
2431                                 break;
2432
2433                         case IPPROTO_CARP:
2434                                 PULLUP_TO(hlen, ulp, struct carp_header);
2435                                 if (((struct carp_header *)ulp)->carp_version !=
2436                                     CARP_VERSION) 
2437                                         return (IP_FW_DENY);
2438                                 if (((struct carp_header *)ulp)->carp_type !=
2439                                     CARP_ADVERTISEMENT) 
2440                                         return (IP_FW_DENY);
2441                                 break;
2442
2443                         case IPPROTO_IPV6:      /* RFC 2893 */
2444                                 PULLUP_TO(hlen, ulp, struct ip6_hdr);
2445                                 break;
2446
2447                         case IPPROTO_IPV4:      /* RFC 2893 */
2448                                 PULLUP_TO(hlen, ulp, struct ip);
2449                                 break;
2450
2451                         default:
2452                                 printf("IPFW2: IPV6 - Unknown Extension "
2453                                     "Header(%d), ext_hd=%x\n", proto, ext_hd);
2454                                 if (fw_deny_unknown_exthdrs)
2455                                     return (IP_FW_DENY);
2456                                 PULLUP_TO(hlen, ulp, struct ip6_ext);
2457                                 break;
2458                         } /*switch */
2459                 }
2460                 ip = mtod(m, struct ip *);
2461                 ip6 = (struct ip6_hdr *)ip;
2462                 args->f_id.src_ip6 = ip6->ip6_src;
2463                 args->f_id.dst_ip6 = ip6->ip6_dst;
2464                 args->f_id.src_ip = 0;
2465                 args->f_id.dst_ip = 0;
2466                 args->f_id.flow_id6 = ntohl(ip6->ip6_flow);
2467         } else if (pktlen >= sizeof(struct ip) &&
2468             (args->eh == NULL || etype == ETHERTYPE_IP) && ip->ip_v == 4) {
2469                 is_ipv4 = 1;
2470                 hlen = ip->ip_hl << 2;
2471                 args->f_id.addr_type = 4;
2472
2473                 /*
2474                  * Collect parameters into local variables for faster matching.
2475                  */
2476                 proto = ip->ip_p;
2477                 src_ip = ip->ip_src;
2478                 dst_ip = ip->ip_dst;
2479
2480                 if (1 || args->eh != NULL) { /* layer 2 packets are as on the wire */
2481                         offset = ntohs(ip->ip_off) & IP_OFFMASK;
2482                         ip_len = ntohs(ip->ip_len);
2483                 } else {
2484                         offset = ip->ip_off & IP_OFFMASK;
2485                         ip_len = ip->ip_len;
2486                 }
2487                 pktlen = ip_len < pktlen ? ip_len : pktlen;
2488
2489                 if (offset == 0) {
2490                         switch (proto) {
2491                         case IPPROTO_TCP:
2492                                 PULLUP_TO(hlen, ulp, struct tcphdr);
2493                                 dst_port = TCP(ulp)->th_dport;
2494                                 src_port = TCP(ulp)->th_sport;
2495                                 args->f_id.flags = TCP(ulp)->th_flags;
2496                                 break;
2497
2498                         case IPPROTO_UDP:
2499                                 PULLUP_TO(hlen, ulp, struct udphdr);
2500                                 dst_port = UDP(ulp)->uh_dport;
2501                                 src_port = UDP(ulp)->uh_sport;
2502                                 break;
2503
2504                         case IPPROTO_ICMP:
2505                                 PULLUP_TO(hlen, ulp, struct icmphdr);
2506                                 args->f_id.flags = ICMP(ulp)->icmp_type;
2507                                 break;
2508
2509                         default:
2510                                 break;
2511                         }
2512                 }
2513
2514                 ip = mtod(m, struct ip *);
2515                 args->f_id.src_ip = ntohl(src_ip.s_addr);
2516                 args->f_id.dst_ip = ntohl(dst_ip.s_addr);
2517         }
2518 #undef PULLUP_TO
2519         if (proto) { /* we may have port numbers, store them */
2520                 args->f_id.proto = proto;
2521                 args->f_id.src_port = src_port = ntohs(src_port);
2522                 args->f_id.dst_port = dst_port = ntohs(dst_port);
2523         }
2524
2525         IPFW_RLOCK(chain);
2526         mtag = m_tag_find(m, PACKET_TAG_DIVERT, NULL);
2527         if (args->rule) {
2528                 /*
2529                  * Packet has already been tagged. Look for the next rule
2530                  * to restart processing.
2531                  *
2532                  * If fw_one_pass != 0 then just accept it.
2533                  * XXX should not happen here, but optimized out in
2534                  * the caller.
2535                  */
2536                 if (fw_one_pass) {
2537                         IPFW_RUNLOCK(chain);
2538                         return (IP_FW_PASS);
2539                 }
2540
2541                 f = args->rule->next_rule;
2542                 if (f == NULL)
2543                         f = lookup_next_rule(args->rule, 0);
2544         } else {
2545                 /*
2546                  * Find the starting rule. It can be either the first
2547                  * one, or the one after divert_rule if asked so.
2548                  */
2549                 int skipto = mtag ? divert_cookie(mtag) : 0;
2550
2551                 f = chain->rules;
2552                 if (args->eh == NULL && skipto != 0) {
2553                         if (skipto >= IPFW_DEFAULT_RULE) {
2554                                 IPFW_RUNLOCK(chain);
2555                                 return (IP_FW_DENY); /* invalid */
2556                         }
2557                         while (f && f->rulenum <= skipto)
2558                                 f = f->next;
2559                         if (f == NULL) {        /* drop packet */
2560                                 IPFW_RUNLOCK(chain);
2561                                 return (IP_FW_DENY);
2562                         }
2563                 }
2564         }
2565         /* reset divert rule to avoid confusion later */
2566         if (mtag) {
2567                 divinput_flags = divert_info(mtag) &
2568                     (IP_FW_DIVERT_OUTPUT_FLAG | IP_FW_DIVERT_LOOPBACK_FLAG);
2569                 m_tag_delete(m, mtag);
2570         }
2571
2572         /*
2573          * Now scan the rules, and parse microinstructions for each rule.
2574          */
2575         for (; f; f = f->next) {
2576                 ipfw_insn *cmd;
2577                 uint32_t tablearg = 0;
2578                 int l, cmdlen, skip_or; /* skip rest of OR block */
2579
2580 again:
2581                 if (set_disable & (1 << f->set) )
2582                         continue;
2583
2584                 skip_or = 0;
2585                 for (l = f->cmd_len, cmd = f->cmd ; l > 0 ;
2586                     l -= cmdlen, cmd += cmdlen) {
2587                         int match;
2588
2589                         /*
2590                          * check_body is a jump target used when we find a
2591                          * CHECK_STATE, and need to jump to the body of
2592                          * the target rule.
2593                          */
2594
2595 check_body:
2596                         cmdlen = F_LEN(cmd);
2597                         /*
2598                          * An OR block (insn_1 || .. || insn_n) has the
2599                          * F_OR bit set in all but the last instruction.
2600                          * The first match will set "skip_or", and cause
2601                          * the following instructions to be skipped until
2602                          * past the one with the F_OR bit clear.
2603                          */
2604                         if (skip_or) {          /* skip this instruction */
2605                                 if ((cmd->len & F_OR) == 0)
2606                                         skip_or = 0;    /* next one is good */
2607                                 continue;
2608                         }
2609                         match = 0; /* set to 1 if we succeed */
2610
2611                         switch (cmd->opcode) {
2612                         /*
2613                          * The first set of opcodes compares the packet's
2614                          * fields with some pattern, setting 'match' if a
2615                          * match is found. At the end of the loop there is
2616                          * logic to deal with F_NOT and F_OR flags associated
2617                          * with the opcode.
2618                          */
2619                         case O_NOP:
2620                                 match = 1;
2621                                 break;
2622
2623                         case O_FORWARD_MAC:
2624                                 printf("ipfw: opcode %d unimplemented\n",
2625                                     cmd->opcode);
2626                                 break;
2627
2628                         case O_GID:
2629                         case O_UID:
2630                         case O_JAIL:
2631                                 /*
2632                                  * We only check offset == 0 && proto != 0,
2633                                  * as this ensures that we have a
2634                                  * packet with the ports info.
2635                                  */
2636                                 if (offset!=0)
2637                                         break;
2638                                 if (is_ipv6) /* XXX to be fixed later */
2639                                         break;
2640                                 if (proto == IPPROTO_TCP ||
2641                                     proto == IPPROTO_UDP)
2642                                         match = check_uidgid(
2643                                                     (ipfw_insn_u32 *)cmd,
2644                                                     proto, oif,
2645                                                     dst_ip, dst_port,
2646                                                     src_ip, src_port, &fw_ugid_cache,
2647                                                     &ugid_lookup, args->inp, m->m_skb);
2648                                 break;
2649
2650                         case O_RECV:
2651                                 match = iface_match(m->m_pkthdr.rcvif,
2652                                     (ipfw_insn_if *)cmd);
2653                                 break;
2654
2655                         case O_XMIT:
2656                                 match = iface_match(oif, (ipfw_insn_if *)cmd);
2657                                 break;
2658
2659                         case O_VIA:
2660                                 match = iface_match(oif ? oif :
2661                                     m->m_pkthdr.rcvif, (ipfw_insn_if *)cmd);
2662                                 break;
2663
2664                         case O_MACADDR2:
2665                                 if (args->eh != NULL) { /* have MAC header */
2666                                         u_int32_t *want = (u_int32_t *)
2667                                                 ((ipfw_insn_mac *)cmd)->addr;
2668                                         u_int32_t *mask = (u_int32_t *)
2669                                                 ((ipfw_insn_mac *)cmd)->mask;
2670                                         u_int32_t *hdr = (u_int32_t *)args->eh;
2671
2672                                         match =
2673                                             ( want[0] == (hdr[0] & mask[0]) &&
2674                                               want[1] == (hdr[1] & mask[1]) &&
2675                                               want[2] == (hdr[2] & mask[2]) );
2676                                 }
2677                                 break;
2678
2679                         case O_MAC_TYPE:
2680                                 if (args->eh != NULL) {
2681                                         u_int16_t *p =
2682                                             ((ipfw_insn_u16 *)cmd)->ports;
2683                                         int i;
2684
2685                                         for (i = cmdlen - 1; !match && i>0;
2686                                             i--, p += 2)
2687                                                 match = (etype >= p[0] &&
2688                                                     etype <= p[1]);
2689                                 }
2690                                 break;
2691
2692                         case O_FRAG:
2693                                 match = (offset != 0);
2694                                 break;
2695
2696                         case O_IN:      /* "out" is "not in" */
2697                                 match = (oif == NULL);
2698                                 break;
2699
2700                         case O_LAYER2:
2701                                 match = (args->eh != NULL);
2702                                 break;
2703
2704                         case O_DIVERTED:
2705                                 match = (cmd->arg1 & 1 && divinput_flags &
2706                                     IP_FW_DIVERT_LOOPBACK_FLAG) ||
2707                                         (cmd->arg1 & 2 && divinput_flags &
2708                                     IP_FW_DIVERT_OUTPUT_FLAG);
2709                                 break;
2710
2711                         case O_PROTO:
2712                                 /*
2713                                  * We do not allow an arg of 0 so the
2714                                  * check of "proto" only suffices.
2715                                  */
2716                                 match = (proto == cmd->arg1);
2717                                 break;
2718
2719                         case O_IP_SRC:
2720                                 match = is_ipv4 &&
2721                                     (((ipfw_insn_ip *)cmd)->addr.s_addr ==
2722                                     src_ip.s_addr);
2723                                 break;
2724
2725                         case O_IP_SRC_LOOKUP:
2726                         case O_IP_DST_LOOKUP:
2727                                 if (is_ipv4) {
2728                                     uint32_t a =
2729                                         (cmd->opcode == O_IP_DST_LOOKUP) ?
2730                                             dst_ip.s_addr : src_ip.s_addr;
2731                                     uint32_t v = 0;
2732
2733                                     match = lookup_table(chain, cmd->arg1, a,
2734                                         &v);
2735                                     if (!match)
2736                                         break;
2737                                     if (cmdlen == F_INSN_SIZE(ipfw_insn_u32))
2738                                         match =
2739                                             ((ipfw_insn_u32 *)cmd)->d[0] == v;
2740                                     else
2741                                         tablearg = v;
2742                                 }
2743                                 break;
2744
2745                         case O_IP_SRC_MASK:
2746                         case O_IP_DST_MASK:
2747                                 if (is_ipv4) {
2748                                     uint32_t a =
2749                                         (cmd->opcode == O_IP_DST_MASK) ?
2750                                             dst_ip.s_addr : src_ip.s_addr;
2751                                     uint32_t *p = ((ipfw_insn_u32 *)cmd)->d;
2752                                     int i = cmdlen-1;
2753
2754                                     for (; !match && i>0; i-= 2, p+= 2)
2755                                         match = (p[0] == (a & p[1]));
2756                                 }
2757                                 break;
2758
2759                         case O_IP_SRC_ME:
2760                                 if (is_ipv4) {
2761                                         struct ifnet *tif;
2762
2763                                         INADDR_TO_IFP(src_ip, tif);
2764                                         match = (tif != NULL);
2765                                 }
2766                                 break;
2767
2768                         case O_IP_DST_SET:
2769                         case O_IP_SRC_SET:
2770                                 if (is_ipv4) {
2771                                         u_int32_t *d = (u_int32_t *)(cmd+1);
2772                                         u_int32_t addr =
2773                                             cmd->opcode == O_IP_DST_SET ?
2774                                                 args->f_id.dst_ip :
2775                                                 args->f_id.src_ip;
2776
2777                                             if (addr < d[0])
2778                                                     break;
2779                                             addr -= d[0]; /* subtract base */
2780                                             match = (addr < cmd->arg1) &&
2781                                                 ( d[ 1 + (addr>>5)] &
2782                                                   (1<<(addr & 0x1f)) );
2783                                 }
2784                                 break;
2785
2786                         case O_IP_DST:
2787                                 match = is_ipv4 &&
2788                                     (((ipfw_insn_ip *)cmd)->addr.s_addr ==
2789                                     dst_ip.s_addr);
2790                                 break;
2791
2792                         case O_IP_DST_ME:
2793                                 if (is_ipv4) {
2794                                         struct ifnet *tif;
2795
2796                                         INADDR_TO_IFP(dst_ip, tif);
2797                                         match = (tif != NULL);
2798                                 }
2799                                 break;
2800
2801                         case O_IP_SRCPORT:
2802                         case O_IP_DSTPORT:
2803                                 /*
2804                                  * offset == 0 && proto != 0 is enough
2805                                  * to guarantee that we have a
2806                                  * packet with port info.
2807                                  */
2808                                 if ((proto==IPPROTO_UDP || proto==IPPROTO_TCP)
2809                                     && offset == 0) {
2810                                         u_int16_t x =
2811                                             (cmd->opcode == O_IP_SRCPORT) ?
2812                                                 src_port : dst_port ;
2813                                         u_int16_t *p =
2814                                             ((ipfw_insn_u16 *)cmd)->ports;
2815                                         int i;
2816
2817                                         for (i = cmdlen - 1; !match && i>0;
2818                                             i--, p += 2)
2819                                                 match = (x>=p[0] && x<=p[1]);
2820                                 }
2821                                 break;
2822
2823                         case O_ICMPTYPE:
2824                                 match = (offset == 0 && proto==IPPROTO_ICMP &&
2825                                     icmptype_match(ICMP(ulp), (ipfw_insn_u32 *)cmd) );
2826                                 break;
2827
2828 #ifdef INET6
2829                         case O_ICMP6TYPE:
2830                                 match = is_ipv6 && offset == 0 &&
2831                                     proto==IPPROTO_ICMPV6 &&
2832                                     icmp6type_match(
2833                                         ICMP6(ulp)->icmp6_type,
2834                                         (ipfw_insn_u32 *)cmd);
2835                                 break;
2836 #endif /* INET6 */
2837
2838                         case O_IPOPT:
2839                                 match = (is_ipv4 &&
2840                                     ipopts_match(ip, cmd) );
2841                                 break;
2842
2843                         case O_IPVER:
2844                                 match = (is_ipv4 &&
2845                                     cmd->arg1 == ip->ip_v);
2846                                 break;
2847
2848                         case O_IPID:
2849                         case O_IPLEN:
2850                         case O_IPTTL:
2851                                 if (is_ipv4) {  /* only for IP packets */
2852                                     uint16_t x;
2853                                     uint16_t *p;
2854                                     int i;
2855
2856                                     if (cmd->opcode == O_IPLEN)
2857                                         x = ip_len;
2858                                     else if (cmd->opcode == O_IPTTL)
2859                                         x = ip->ip_ttl;
2860                                     else /* must be IPID */
2861                                         x = ntohs(ip->ip_id);
2862                                     if (cmdlen == 1) {
2863                                         match = (cmd->arg1 == x);
2864                                         break;
2865                                     }
2866                                     /* otherwise we have ranges */
2867                                     p = ((ipfw_insn_u16 *)cmd)->ports;
2868                                     i = cmdlen - 1;
2869                                     for (; !match && i>0; i--, p += 2)
2870                                         match = (x >= p[0] && x <= p[1]);
2871                                 }
2872                                 break;
2873
2874                         case O_IPPRECEDENCE:
2875                                 match = (is_ipv4 &&
2876                                     (cmd->arg1 == (ip->ip_tos & 0xe0)) );
2877                                 break;
2878
2879                         case O_IPTOS:
2880                                 match = (is_ipv4 &&
2881                                     flags_match(cmd, ip->ip_tos));
2882                                 break;
2883
2884                         case O_TCPDATALEN:
2885                                 if (proto == IPPROTO_TCP && offset == 0) {
2886                                     struct tcphdr *tcp;
2887                                     uint16_t x;
2888                                     uint16_t *p;
2889                                     int i;
2890
2891                                     tcp = TCP(ulp);
2892                                     x = ip_len -
2893                                         ((ip->ip_hl + tcp->th_off) << 2);
2894                                     if (cmdlen == 1) {
2895                                         match = (cmd->arg1 == x);
2896                                         break;
2897                                     }
2898                                     /* otherwise we have ranges */
2899                                     p = ((ipfw_insn_u16 *)cmd)->ports;
2900                                     i = cmdlen - 1;
2901                                     for (; !match && i>0; i--, p += 2)
2902                                         match = (x >= p[0] && x <= p[1]);
2903                                 }
2904                                 break;
2905
2906                         case O_TCPFLAGS:
2907                                 match = (proto == IPPROTO_TCP && offset == 0 &&
2908                                     flags_match(cmd, TCP(ulp)->th_flags));
2909                                 break;
2910
2911                         case O_TCPOPTS:
2912                                 match = (proto == IPPROTO_TCP && offset == 0 &&
2913                                     tcpopts_match(TCP(ulp), cmd));
2914                                 break;
2915
2916                         case O_TCPSEQ:
2917                                 match = (proto == IPPROTO_TCP && offset == 0 &&
2918                                     ((ipfw_insn_u32 *)cmd)->d[0] ==
2919                                         TCP(ulp)->th_seq);
2920                                 break;
2921
2922                         case O_TCPACK:
2923                                 match = (proto == IPPROTO_TCP && offset == 0 &&
2924                                     ((ipfw_insn_u32 *)cmd)->d[0] ==
2925                                         TCP(ulp)->th_ack);
2926                                 break;
2927
2928                         case O_TCPWIN:
2929                                 match = (proto == IPPROTO_TCP && offset == 0 &&
2930                                     cmd->arg1 == TCP(ulp)->th_win);
2931                                 break;
2932
2933                         case O_ESTAB:
2934                                 /* reject packets which have SYN only */
2935                                 /* XXX should i also check for TH_ACK ? */
2936                                 match = (proto == IPPROTO_TCP && offset == 0 &&
2937                                     (TCP(ulp)->th_flags &
2938                                      (TH_RST | TH_ACK | TH_SYN)) != TH_SYN);
2939                                 break;
2940
2941                         case O_ALTQ: {
2942                                 struct pf_mtag *at;
2943                                 ipfw_insn_altq *altq = (ipfw_insn_altq *)cmd;
2944
2945                                 match = 1;
2946                                 at = pf_find_mtag(m);
2947                                 if (at != NULL && at->qid != 0)
2948                                         break;
2949                                 at = pf_get_mtag(m);
2950                                 if (at == NULL) {
2951                                         /*
2952                                          * Let the packet fall back to the
2953                                          * default ALTQ.
2954                                          */
2955                                         break;
2956                                 }
2957                                 at->qid = altq->qid;
2958                                 if (is_ipv4)
2959                                         at->af = AF_INET;
2960                                 else
2961                                         at->af = AF_LINK;
2962                                 at->hdr = ip;
2963                                 break;
2964                         }
2965
2966                         case O_LOG:
2967                                 if (fw_verbose)
2968                                         ipfw_log(f, hlen, args, m,
2969                                             oif, offset, tablearg, ip);
2970                                 match = 1;
2971                                 break;
2972
2973                         case O_PROB:
2974                                 match = (random()<((ipfw_insn_u32 *)cmd)->d[0]);
2975                                 break;
2976
2977 #if 0
2978                         case O_VERREVPATH:
2979                                 /* Outgoing packets automatically pass/match */
2980                                 match = ((oif != NULL) ||
2981                                     (m->m_pkthdr.rcvif == NULL) ||
2982                                     (
2983 #ifdef INET6
2984                                     is_ipv6 ?
2985                                         verify_path6(&(args->f_id.src_ip6),
2986                                             m->m_pkthdr.rcvif) :
2987 #endif
2988                                     verify_path(src_ip, m->m_pkthdr.rcvif,
2989                                         args->f_id.fib)));
2990                                 break;
2991
2992                         case O_VERSRCREACH:
2993                                 /* Outgoing packets automatically pass/match */
2994                                 match = (hlen > 0 && ((oif != NULL) ||
2995 #ifdef INET6
2996                                     is_ipv6 ?
2997                                         verify_path6(&(args->f_id.src_ip6),
2998                                             NULL) :
2999 #endif
3000                                     verify_path(src_ip, NULL, args->f_id.fib)));
3001                                 break;
3002
3003                         case O_ANTISPOOF:
3004                                 /* Outgoing packets automatically pass/match */
3005                                 if (oif == NULL && hlen > 0 &&
3006                                     (  (is_ipv4 && in_localaddr(src_ip))
3007 #ifdef INET6
3008                                     || (is_ipv6 &&
3009                                         in6_localaddr(&(args->f_id.src_ip6)))
3010 #endif
3011                                     ))
3012                                         match =
3013 #ifdef INET6
3014                                             is_ipv6 ? verify_path6(
3015                                                 &(args->f_id.src_ip6),
3016                                                 m->m_pkthdr.rcvif) :
3017 #endif
3018                                             verify_path(src_ip,
3019                                                 m->m_pkthdr.rcvif,
3020                                                 args->f_id.fib);
3021                                 else
3022                                         match = 1;
3023                                 break;
3024 #endif
3025
3026                         case O_IPSEC:
3027 #ifdef IPSEC
3028                                 match = (m_tag_find(m,
3029                                     PACKET_TAG_IPSEC_IN_DONE, NULL) != NULL);
3030 #endif
3031                                 /* otherwise no match */
3032                                 break;
3033
3034 #ifdef INET6
3035                         case O_IP6_SRC:
3036                                 match = is_ipv6 &&
3037                                     IN6_ARE_ADDR_EQUAL(&args->f_id.src_ip6,
3038                                     &((ipfw_insn_ip6 *)cmd)->addr6);
3039                                 break;
3040
3041                         case O_IP6_DST:
3042                                 match = is_ipv6 &&
3043                                 IN6_ARE_ADDR_EQUAL(&args->f_id.dst_ip6,
3044                                     &((ipfw_insn_ip6 *)cmd)->addr6);
3045                                 break;
3046                         case O_IP6_SRC_MASK:
3047                         case O_IP6_DST_MASK:
3048                                 if (is_ipv6) {
3049                                         int i = cmdlen - 1;
3050                                         struct in6_addr p;
3051                                         struct in6_addr *d =
3052                                             &((ipfw_insn_ip6 *)cmd)->addr6;
3053
3054                                         for (; !match && i > 0; d += 2,
3055                                             i -= F_INSN_SIZE(struct in6_addr)
3056                                             * 2) {
3057                                                 p = (cmd->opcode ==
3058                                                     O_IP6_SRC_MASK) ?
3059                                                     args->f_id.src_ip6:
3060                                                     args->f_id.dst_ip6;
3061                                                 APPLY_MASK(&p, &d[1]);
3062                                                 match =
3063                                                     IN6_ARE_ADDR_EQUAL(&d[0],
3064                                                     &p);
3065                                         }
3066                                 }
3067                                 break;
3068
3069                         case O_IP6_SRC_ME:
3070                                 match= is_ipv6 && search_ip6_addr_net(&args->f_id.src_ip6);
3071                                 break;
3072
3073                         case O_IP6_DST_ME:
3074                                 match= is_ipv6 && search_ip6_addr_net(&args->f_id.dst_ip6);
3075                                 break;
3076
3077                         case O_FLOW6ID:
3078                                 match = is_ipv6 &&
3079                                     flow6id_match(args->f_id.flow_id6,
3080                                     (ipfw_insn_u32 *) cmd);
3081                                 break;
3082
3083                         case O_EXT_HDR:
3084                                 match = is_ipv6 &&
3085                                     (ext_hd & ((ipfw_insn *) cmd)->arg1);
3086                                 break;
3087
3088                         case O_IP6:
3089                                 match = is_ipv6;
3090                                 break;
3091 #endif
3092
3093                         case O_IP4:
3094                                 match = is_ipv4;
3095                                 break;
3096
3097 #if 0
3098                         case O_TAG: {
3099                                 uint32_t tag = (cmd->arg1 == IP_FW_TABLEARG) ?
3100                                     tablearg : cmd->arg1;
3101
3102                                 /* Packet is already tagged with this tag? */
3103                                 mtag = m_tag_locate(m, MTAG_IPFW, tag, NULL);
3104
3105                                 /* We have `untag' action when F_NOT flag is
3106                                  * present. And we must remove this mtag from
3107                                  * mbuf and reset `match' to zero (`match' will
3108                                  * be inversed later).
3109                                  * Otherwise we should allocate new mtag and
3110                                  * push it into mbuf.
3111                                  */
3112                                 if (cmd->len & F_NOT) { /* `untag' action */
3113                                         if (mtag != NULL)
3114                                                 m_tag_delete(m, mtag);
3115                                 } else if (mtag == NULL) {
3116                                         if ((mtag = m_tag_alloc(MTAG_IPFW,
3117                                             tag, 0, M_NOWAIT)) != NULL)
3118                                                 m_tag_prepend(m, mtag);
3119                                 }
3120                                 match = (cmd->len & F_NOT) ? 0: 1;
3121                                 break;
3122                         }
3123
3124                         case O_FIB: /* try match the specified fib */
3125                                 if (args->f_id.fib == cmd->arg1)
3126                                         match = 1;
3127                                 break;
3128
3129                         case O_TAGGED: {
3130                                 uint32_t tag = (cmd->arg1 == IP_FW_TABLEARG) ?
3131                                     tablearg : cmd->arg1;
3132
3133                                 if (cmdlen == 1) {
3134                                         match = m_tag_locate(m, MTAG_IPFW,
3135                                             tag, NULL) != NULL;
3136                                         break;
3137                                 }
3138
3139                                 /* we have ranges */
3140                                 for (mtag = m_tag_first(m);
3141                                     mtag != NULL && !match;
3142                                     mtag = m_tag_next(m, mtag)) {
3143                                         uint16_t *p;
3144                                         int i;
3145
3146                                         if (mtag->m_tag_cookie != MTAG_IPFW)
3147                                                 continue;
3148
3149                                         p = ((ipfw_insn_u16 *)cmd)->ports;
3150                                         i = cmdlen - 1;
3151                                         for(; !match && i > 0; i--, p += 2)
3152                                                 match =
3153                                                     mtag->m_tag_id >= p[0] &&
3154                                                     mtag->m_tag_id <= p[1];
3155                                 }
3156                                 break;
3157                         }
3158 #endif
3159                                 
3160                         /*
3161                          * The second set of opcodes represents 'actions',
3162                          * i.e. the terminal part of a rule once the packet
3163                          * matches all previous patterns.
3164                          * Typically there is only one action for each rule,
3165                          * and the opcode is stored at the end of the rule
3166                          * (but there are exceptions -- see below).
3167                          *
3168                          * In general, here we set retval and terminate the
3169                          * outer loop (would be a 'break 3' in some language,
3170                          * but we need to do a 'goto done').
3171                          *
3172                          * Exceptions:
3173                          * O_COUNT and O_SKIPTO actions:
3174                          *   instead of terminating, we jump to the next rule
3175                          *   ('goto next_rule', equivalent to a 'break 2'),
3176                          *   or to the SKIPTO target ('goto again' after
3177                          *   having set f, cmd and l), respectively.
3178                          *
3179                          * O_TAG, O_LOG and O_ALTQ action parameters:
3180                          *   perform some action and set match = 1;
3181                          *
3182                          * O_LIMIT and O_KEEP_STATE: these opcodes are
3183                          *   not real 'actions', and are stored right
3184                          *   before the 'action' part of the rule.
3185                          *   These opcodes try to install an entry in the
3186                          *   state tables; if successful, we continue with
3187                          *   the next opcode (match=1; break;), otherwise
3188                          *   the packet *   must be dropped
3189                          *   ('goto done' after setting retval);
3190                          *
3191                          * O_PROBE_STATE and O_CHECK_STATE: these opcodes
3192                          *   cause a lookup of the state table, and a jump
3193                          *   to the 'action' part of the parent rule
3194                          *   ('goto check_body') if an entry is found, or
3195                          *   (CHECK_STATE only) a jump to the next rule if
3196                          *   the entry is not found ('goto next_rule').
3197                          *   The result of the lookup is cached to make
3198                          *   further instances of these opcodes are
3199                          *   effectively NOPs.
3200                          */
3201                         case O_LIMIT:
3202                         case O_KEEP_STATE:
3203                                 if (install_state(f,
3204                                     (ipfw_insn_limit *)cmd, args, tablearg)) {
3205                                         retval = IP_FW_DENY;
3206                                         goto done; /* error/limit violation */
3207                                 }
3208                                 match = 1;
3209                                 break;
3210
3211                         case O_PROBE_STATE:
3212                         case O_CHECK_STATE:
3213                                 /*
3214                                  * dynamic rules are checked at the first
3215                                  * keep-state or check-state occurrence,
3216                                  * with the result being stored in dyn_dir.
3217                                  * The compiler introduces a PROBE_STATE
3218                                  * instruction for us when we have a
3219                                  * KEEP_STATE (because PROBE_STATE needs
3220                                  * to be run first).
3221                                  */
3222                                 if (dyn_dir == MATCH_UNKNOWN &&
3223                                     (q = lookup_dyn_rule(&args->f_id,
3224                                      &dyn_dir, proto == IPPROTO_TCP ?
3225                                         TCP(ulp) : NULL))
3226                                         != NULL) {
3227                                         /*
3228                                          * Found dynamic entry, update stats
3229                                          * and jump to the 'action' part of
3230                                          * the parent rule.
3231                                          */
3232                                         q->pcnt++;
3233                                         q->bcnt += pktlen;
3234                                         f = q->rule;
3235                                         cmd = ACTION_PTR(f);
3236                                         l = f->cmd_len - f->act_ofs;
3237                                         IPFW_DYN_UNLOCK();
3238                                         goto check_body;
3239                                 }
3240                                 /*
3241                                  * Dynamic entry not found. If CHECK_STATE,
3242                                  * skip to next rule, if PROBE_STATE just
3243                                  * ignore and continue with next opcode.
3244                                  */
3245                                 if (cmd->opcode == O_CHECK_STATE)
3246                                         goto next_rule;
3247                                 match = 1;
3248                                 break;
3249
3250                         case O_ACCEPT:
3251                                 retval = 0;     /* accept */
3252                                 goto done;
3253
3254                         case O_PIPE:
3255                         case O_QUEUE:
3256                                 args->rule = f; /* report matching rule */
3257                                 if (cmd->arg1 == IP_FW_TABLEARG)
3258                                         args->cookie = tablearg;
3259                                 else
3260                                         args->cookie = cmd->arg1;
3261                                 retval = IP_FW_DUMMYNET;
3262                                 goto done;
3263
3264 #if 0
3265                         case O_DIVERT:
3266                         case O_TEE: {
3267                                 struct divert_tag *dt;
3268
3269                                 if (args->eh) /* not on layer 2 */
3270                                         break;
3271                                 mtag = m_tag_get(PACKET_TAG_DIVERT,
3272                                                 sizeof(struct divert_tag),
3273                                                 M_NOWAIT);
3274                                 if (mtag == NULL) {
3275                                         /* XXX statistic */
3276                                         /* drop packet */
3277                                         IPFW_RUNLOCK(chain);
3278                                         return (IP_FW_DENY);
3279                                 }
3280                                 dt = (struct divert_tag *)(mtag+1);
3281                                 dt->cookie = f->rulenum;
3282                                 if (cmd->arg1 == IP_FW_TABLEARG)
3283                                         dt->info = tablearg;
3284                                 else
3285                                         dt->info = cmd->arg1;
3286                                 m_tag_prepend(m, mtag);
3287                                 retval = (cmd->opcode == O_DIVERT) ?
3288                                     IP_FW_DIVERT : IP_FW_TEE;
3289                                 goto done;
3290                         }
3291 #endif
3292
3293                         case O_COUNT:
3294                         case O_SKIPTO:
3295                                 f->pcnt++;      /* update stats */
3296                                 f->bcnt += pktlen;
3297                                 f->timestamp = time_uptime;
3298                                 if (cmd->opcode == O_COUNT)
3299                                         goto next_rule;
3300                                 /* handle skipto */
3301                                 if (cmd->arg1 == IP_FW_TABLEARG) {
3302                                         f = lookup_next_rule(f, tablearg);
3303                                 } else {
3304                                         if (f->next_rule == NULL)
3305                                                 lookup_next_rule(f, 0);
3306                                         f = f->next_rule;
3307                                 }
3308                                 goto again;
3309
3310                         case O_REJECT:
3311                                 /*
3312                                  * Drop the packet and send a reject notice
3313                                  * if the packet is not ICMP (or is an ICMP
3314                                  * query), and it is not multicast/broadcast.
3315                                  */
3316                                 if (hlen > 0 && is_ipv4 && offset == 0 &&
3317                                     (proto != IPPROTO_ICMP ||
3318                                      is_icmp_query(ICMP(ulp))) &&
3319                                     !(m->m_flags & (M_BCAST|M_MCAST)) &&
3320                                     !IN_MULTICAST(ntohl(dst_ip.s_addr))) {
3321                                         send_reject(args, cmd->arg1, ip_len, ip);
3322                                         m = args->m;
3323                                 }
3324                                 /* FALLTHROUGH */
3325 #ifdef INET6
3326                         case O_UNREACH6:
3327                                 if (hlen > 0 && is_ipv6 &&
3328                                     ((offset & IP6F_OFF_MASK) == 0) &&
3329                                     (proto != IPPROTO_ICMPV6 ||
3330                                      (is_icmp6_query(args->f_id.flags) == 1)) &&
3331                                     !(m->m_flags & (M_BCAST|M_MCAST)) &&
3332                                     !IN6_IS_ADDR_MULTICAST(&args->f_id.dst_ip6)) {
3333                                         send_reject6(
3334                                             args, cmd->arg1, hlen,
3335                                             (struct ip6_hdr *)ip);
3336                                         m = args->m;
3337                                 }
3338                                 /* FALLTHROUGH */
3339 #endif
3340                         case O_DENY:
3341                                 retval = IP_FW_DENY;
3342                                 goto done;
3343
3344                         case O_FORWARD_IP: {
3345                                 struct sockaddr_in *sa;
3346                                 sa = &(((ipfw_insn_sa *)cmd)->sa);
3347                                 if (args->eh)   /* not valid on layer2 pkts */
3348                                         break;
3349                                 if (!q || dyn_dir == MATCH_FORWARD) {
3350                                         if (sa->sin_addr.s_addr == INADDR_ANY) {
3351                                                 bcopy(sa, &args->hopstore,
3352                                                         sizeof(*sa));
3353                                                 args->hopstore.sin_addr.s_addr =
3354                                                     htonl(tablearg);
3355                                                 args->next_hop =
3356                                                     &args->hopstore;
3357                                         } else {
3358                                                 args->next_hop = sa;
3359                                         }
3360                                 }
3361                                 retval = IP_FW_PASS;
3362                             }
3363                             goto done;
3364
3365                         case O_NETGRAPH:
3366                         case O_NGTEE:
3367                                 args->rule = f; /* report matching rule */
3368                                 if (cmd->arg1 == IP_FW_TABLEARG)
3369                                         args->cookie = tablearg;
3370                                 else
3371                                         args->cookie = cmd->arg1;
3372                                 retval = (cmd->opcode == O_NETGRAPH) ?
3373                                     IP_FW_NETGRAPH : IP_FW_NGTEE;
3374                                 goto done;
3375
3376 #if 0
3377                         case O_SETFIB:
3378                                 f->pcnt++;      /* update stats */
3379                                 f->bcnt += pktlen;
3380                                 f->timestamp = time_uptime;
3381                                 M_SETFIB(m, cmd->arg1);
3382                                 args->f_id.fib = cmd->arg1;
3383                                 goto next_rule;
3384
3385                         case O_NAT: {
3386                                 struct cfg_nat *t;
3387                                 int nat_id;
3388
3389                                 if (IPFW_NAT_LOADED) {
3390                                         args->rule = f; /* Report matching rule. */
3391                                         t = ((ipfw_insn_nat *)cmd)->nat;
3392                                         if (t == NULL) {
3393                                                 nat_id = (cmd->arg1 == IP_FW_TABLEARG) ?
3394                                                     tablearg : cmd->arg1;
3395                                                 LOOKUP_NAT(layer3_chain, nat_id, t);
3396                                                 if (t == NULL) {
3397                                                         retval = IP_FW_DENY;
3398                                                         goto done;
3399                                                 }
3400                                                 if (cmd->arg1 != IP_FW_TABLEARG)
3401                                                         ((ipfw_insn_nat *)cmd)->nat = t;
3402                                         }
3403                                         retval = ipfw_nat_ptr(args, t, m);
3404                                 } else
3405                                         retval = IP_FW_DENY;
3406                                 goto done;
3407                         }
3408 #endif
3409
3410                         default:
3411                                 break; // XXX we disabled some
3412                                 panic("-- unknown opcode %d\n", cmd->opcode);
3413                         } /* end of switch() on opcodes */
3414
3415                         if (cmd->len & F_NOT)
3416                                 match = !match;
3417
3418                         if (match) {
3419                                 if (cmd->len & F_OR)
3420                                         skip_or = 1;
3421                         } else {
3422                                 if (!(cmd->len & F_OR)) /* not an OR block, */
3423                                         break;          /* try next rule    */
3424                         }
3425
3426                 }       /* end of inner for, scan opcodes */
3427
3428 next_rule:;             /* try next rule                */
3429
3430         }               /* end of outer for, scan rules */
3431         printf("ipfw: ouch!, skip past end of rules, denying packet\n");
3432         IPFW_RUNLOCK(chain);
3433         return (IP_FW_DENY);
3434
3435 done:
3436         /* Update statistics */
3437         f->pcnt++;
3438         f->bcnt += pktlen;
3439         f->timestamp = time_uptime;
3440         IPFW_RUNLOCK(chain);
3441         return (retval);
3442
3443 pullup_failed:
3444         if (fw_verbose)
3445                 printf("ipfw: pullup failed\n");
3446         return (IP_FW_DENY);
3447 }
3448
3449 /*
3450  * When a rule is added/deleted, clear the next_rule pointers in all rules.
3451  * These will be reconstructed on the fly as packets are matched.
3452  */
3453 static void
3454 flush_rule_ptrs(struct ip_fw_chain *chain)
3455 {
3456         struct ip_fw *rule;
3457
3458         IPFW_WLOCK_ASSERT(chain);
3459
3460         for (rule = chain->rules; rule; rule = rule->next)
3461                 rule->next_rule = NULL;
3462 }
3463
3464 /*
3465  * Add a new rule to the list. Copy the rule into a malloc'ed area, then
3466  * possibly create a rule number and add the rule to the list.
3467  * Update the rule_number in the input struct so the caller knows it as well.
3468  */
3469 static int
3470 add_rule(struct ip_fw_chain *chain, struct ip_fw *input_rule)
3471 {
3472         struct ip_fw *rule, *f, *prev;
3473         int l = RULESIZE(input_rule);
3474
3475         if (chain->rules == NULL && input_rule->rulenum != IPFW_DEFAULT_RULE)
3476                 return (EINVAL);
3477
3478         rule = malloc(l, M_IPFW, M_NOWAIT | M_ZERO);
3479         if (rule == NULL)
3480                 return (ENOSPC);
3481
3482         bcopy(input_rule, rule, l);
3483
3484         rule->next = NULL;
3485         rule->next_rule = NULL;
3486
3487         rule->pcnt = 0;
3488         rule->bcnt = 0;
3489         rule->timestamp = 0;
3490
3491         IPFW_WLOCK(chain);
3492
3493         if (chain->rules == NULL) {     /* default rule */
3494                 chain->rules = rule;
3495                 goto done;
3496         }
3497
3498         /*
3499          * If rulenum is 0, find highest numbered rule before the
3500          * default rule, and add autoinc_step
3501          */
3502         if (autoinc_step < 1)
3503                 autoinc_step = 1;
3504         else if (autoinc_step > 1000)
3505                 autoinc_step = 1000;
3506         if (rule->rulenum == 0) {
3507                 /*
3508                  * locate the highest numbered rule before default
3509                  */
3510                 for (f = chain->rules; f; f = f->next) {
3511                         if (f->rulenum == IPFW_DEFAULT_RULE)
3512                                 break;
3513                         rule->rulenum = f->rulenum;
3514                 }
3515                 if (rule->rulenum < IPFW_DEFAULT_RULE - autoinc_step)
3516                         rule->rulenum += autoinc_step;
3517                 input_rule->rulenum = rule->rulenum;
3518         }
3519
3520         /*
3521          * Now insert the new rule in the right place in the sorted list.
3522          */
3523         for (prev = NULL, f = chain->rules; f; prev = f, f = f->next) {
3524                 if (f->rulenum > rule->rulenum) { /* found the location */
3525                         if (prev) {
3526                                 rule->next = f;
3527                                 prev->next = rule;
3528                         } else { /* head insert */
3529                                 rule->next = chain->rules;
3530                                 chain->rules = rule;
3531                         }
3532                         break;
3533                 }
3534         }
3535         flush_rule_ptrs(chain);
3536 done:
3537         static_count++;
3538         static_len += l;
3539         IPFW_WUNLOCK(chain);
3540         DEB(printf("ipfw: installed rule %d, static count now %d\n",
3541                 rule->rulenum, static_count);)
3542         return (0);
3543 }
3544
3545 /**
3546  * Remove a static rule (including derived * dynamic rules)
3547  * and place it on the ``reap list'' for later reclamation.
3548  * The caller is in charge of clearing rule pointers to avoid
3549  * dangling pointers.
3550  * @return a pointer to the next entry.
3551  * Arguments are not checked, so they better be correct.
3552  */
3553 static struct ip_fw *
3554 remove_rule(struct ip_fw_chain *chain, struct ip_fw *rule,
3555     struct ip_fw *prev)
3556 {
3557         struct ip_fw *n;
3558         int l = RULESIZE(rule);
3559
3560         IPFW_WLOCK_ASSERT(chain);
3561
3562         n = rule->next;
3563         IPFW_DYN_LOCK();
3564         remove_dyn_rule(rule, NULL /* force removal */);
3565         IPFW_DYN_UNLOCK();
3566         if (prev == NULL)
3567                 chain->rules = n;
3568         else
3569                 prev->next = n;
3570         static_count--;
3571         static_len -= l;
3572
3573         rule->next = chain->reap;
3574         chain->reap = rule;
3575
3576         return n;
3577 }
3578
3579 /*
3580  * Hook for cleaning up dummynet when an ipfw rule is deleted.
3581  * Set/cleared when dummynet module is loaded/unloaded.
3582  */
3583 void    (*ip_dn_ruledel_ptr)(void *) = NULL;
3584
3585 /**
3586  * Reclaim storage associated with a list of rules.  This is
3587  * typically the list created using remove_rule.
3588  * A NULL pointer on input is handled correctly.
3589  */
3590 static void
3591 reap_rules(struct ip_fw *head)
3592 {
3593         struct ip_fw *rule;
3594
3595         while ((rule = head) != NULL) {
3596                 head = head->next;
3597                 if (ip_dn_ruledel_ptr)
3598                         ip_dn_ruledel_ptr(rule);
3599                 free(rule, M_IPFW);
3600         }
3601 }
3602
3603 /*
3604  * Remove all rules from a chain (except rules in set RESVD_SET
3605  * unless kill_default = 1).  The caller is responsible for
3606  * reclaiming storage for the rules left in chain->reap.
3607  */
3608 static void
3609 free_chain(struct ip_fw_chain *chain, int kill_default)
3610 {
3611         struct ip_fw *prev, *rule;
3612
3613         IPFW_WLOCK_ASSERT(chain);
3614
3615         flush_rule_ptrs(chain); /* more efficient to do outside the loop */
3616         for (prev = NULL, rule = chain->rules; rule ; )
3617                 if (kill_default || rule->set != RESVD_SET)
3618                         rule = remove_rule(chain, rule, prev);
3619                 else {
3620                         prev = rule;
3621                         rule = rule->next;
3622                 }
3623 }
3624
3625 /**
3626  * Remove all rules with given number, and also do set manipulation.
3627  * Assumes chain != NULL && *chain != NULL.
3628  *
3629  * The argument is an u_int32_t. The low 16 bit are the rule or set number,
3630  * the next 8 bits are the new set, the top 8 bits are the command:
3631  *
3632  *      0       delete rules with given number
3633  *      1       delete rules with given set number
3634  *      2       move rules with given number to new set
3635  *      3       move rules with given set number to new set
3636  *      4       swap sets with given numbers
3637  *      5       delete rules with given number and with given set number
3638  */
3639 static int
3640 del_entry(struct ip_fw_chain *chain, u_int32_t arg)
3641 {
3642         struct ip_fw *prev = NULL, *rule;
3643         u_int16_t rulenum;      /* rule or old_set */
3644         u_int8_t cmd, new_set;
3645
3646         rulenum = arg & 0xffff;
3647         cmd = (arg >> 24) & 0xff;
3648         new_set = (arg >> 16) & 0xff;
3649
3650         if (cmd > 5 || new_set > RESVD_SET)
3651                 return EINVAL;
3652         if (cmd == 0 || cmd == 2 || cmd == 5) {
3653                 if (rulenum >= IPFW_DEFAULT_RULE)
3654                         return EINVAL;
3655         } else {
3656                 if (rulenum > RESVD_SET)        /* old_set */
3657                         return EINVAL;
3658         }
3659
3660         IPFW_WLOCK(chain);
3661         rule = chain->rules;
3662         chain->reap = NULL;
3663         switch (cmd) {
3664         case 0: /* delete rules with given number */
3665                 /*
3666                  * locate first rule to delete
3667                  */
3668                 for (; rule->rulenum < rulenum; prev = rule, rule = rule->next)
3669                         ;
3670                 if (rule->rulenum != rulenum) {
3671                         IPFW_WUNLOCK(chain);
3672                         return EINVAL;
3673                 }
3674
3675                 /*
3676                  * flush pointers outside the loop, then delete all matching
3677                  * rules. prev remains the same throughout the cycle.
3678                  */
3679                 flush_rule_ptrs(chain);
3680                 while (rule->rulenum == rulenum)
3681                         rule = remove_rule(chain, rule, prev);
3682                 break;
3683
3684         case 1: /* delete all rules with given set number */
3685                 flush_rule_ptrs(chain);
3686                 rule = chain->rules;
3687                 while (rule->rulenum < IPFW_DEFAULT_RULE)
3688                         if (rule->set == rulenum)
3689                                 rule = remove_rule(chain, rule, prev);
3690                         else {
3691                                 prev = rule;
3692                                 rule = rule->next;
3693                         }
3694                 break;
3695
3696         case 2: /* move rules with given number to new set */
3697                 rule = chain->rules;
3698                 for (; rule->rulenum < IPFW_DEFAULT_RULE; rule = rule->next)
3699                         if (rule->rulenum == rulenum)
3700                                 rule->set = new_set;
3701                 break;
3702
3703         case 3: /* move rules with given set number to new set */
3704                 for (; rule->rulenum < IPFW_DEFAULT_RULE; rule = rule->next)
3705                         if (rule->set == rulenum)
3706                                 rule->set = new_set;
3707                 break;
3708
3709         case 4: /* swap two sets */
3710                 for (; rule->rulenum < IPFW_DEFAULT_RULE; rule = rule->next)
3711                         if (rule->set == rulenum)
3712                                 rule->set = new_set;
3713                         else if (rule->set == new_set)
3714                                 rule->set = rulenum;
3715                 break;
3716         case 5: /* delete rules with given number and with given set number.
3717                  * rulenum - given rule number;
3718                  * new_set - given set number.
3719                  */
3720                 for (; rule->rulenum < rulenum; prev = rule, rule = rule->next)
3721                         ;
3722                 if (rule->rulenum != rulenum) {
3723                         IPFW_WUNLOCK(chain);
3724                         return (EINVAL);
3725                 }
3726                 flush_rule_ptrs(chain);
3727                 while (rule->rulenum == rulenum) {
3728                         if (rule->set == new_set)
3729                                 rule = remove_rule(chain, rule, prev);
3730                         else {
3731                                 prev = rule;
3732                                 rule = rule->next;
3733                         }
3734                 }
3735         }
3736         /*
3737          * Look for rules to reclaim.  We grab the list before
3738          * releasing the lock then reclaim them w/o the lock to
3739          * avoid a LOR with dummynet.
3740          */
3741         rule = chain->reap;
3742         chain->reap = NULL;
3743         IPFW_WUNLOCK(chain);
3744         if (rule)
3745                 reap_rules(rule);
3746         return 0;
3747 }
3748
3749 /*
3750  * Clear counters for a specific rule.
3751  * The enclosing "table" is assumed locked.
3752  */
3753 static void
3754 clear_counters(struct ip_fw *rule, int log_only)
3755 {
3756         ipfw_insn_log *l = (ipfw_insn_log *)ACTION_PTR(rule);
3757
3758         if (log_only == 0) {
3759                 rule->bcnt = rule->pcnt = 0;
3760                 rule->timestamp = 0;
3761         }
3762         if (l->o.opcode == O_LOG)
3763                 l->log_left = l->max_log;
3764 }
3765
3766 /**
3767  * Reset some or all counters on firewall rules.
3768  * The argument `arg' is an u_int32_t. The low 16 bit are the rule number,
3769  * the next 8 bits are the set number, the top 8 bits are the command:
3770  *      0       work with rules from all set's;
3771  *      1       work with rules only from specified set.
3772  * Specified rule number is zero if we want to clear all entries.
3773  * log_only is 1 if we only want to reset logs, zero otherwise.
3774  */
3775 static int
3776 zero_entry(struct ip_fw_chain *chain, u_int32_t arg, int log_only)
3777 {
3778         struct ip_fw *rule;
3779         char *msg;
3780
3781         uint16_t rulenum = arg & 0xffff;
3782         uint8_t set = (arg >> 16) & 0xff;
3783         uint8_t cmd = (arg >> 24) & 0xff;
3784
3785         if (cmd > 1)
3786                 return (EINVAL);
3787         if (cmd == 1 && set > RESVD_SET)
3788                 return (EINVAL);
3789
3790         IPFW_WLOCK(chain);
3791         if (rulenum == 0) {
3792                 norule_counter = 0;
3793                 for (rule = chain->rules; rule; rule = rule->next) {
3794                         /* Skip rules from another set. */
3795                         if (cmd == 1 && rule->set != set)
3796                                 continue;
3797                         clear_counters(rule, log_only);
3798                 }
3799                 msg = log_only ? "All logging counts reset" :
3800                     "Accounting cleared";
3801         } else {
3802                 int cleared = 0;
3803                 /*
3804                  * We can have multiple rules with the same number, so we
3805                  * need to clear them all.
3806                  */
3807                 for (rule = chain->rules; rule; rule = rule->next)
3808                         if (rule->rulenum == rulenum) {
3809                                 while (rule && rule->rulenum == rulenum) {
3810                                         if (cmd == 0 || rule->set == set)
3811                                                 clear_counters(rule, log_only);
3812                                         rule = rule->next;
3813                                 }
3814                                 cleared = 1;
3815                                 break;
3816                         }
3817                 if (!cleared) { /* we did not find any matching rules */
3818                         IPFW_WUNLOCK(chain);
3819                         return (EINVAL);
3820                 }
3821                 msg = log_only ? "logging count reset" : "cleared";
3822         }
3823         IPFW_WUNLOCK(chain);
3824
3825         if (fw_verbose) {
3826 #define lev LOG_SECURITY | LOG_NOTICE
3827
3828                 if (rulenum)
3829                         log(lev, "ipfw: Entry %d %s.\n", rulenum, msg);
3830                 else
3831                         log(lev, "ipfw: %s.\n", msg);
3832         }
3833         return (0);
3834 }
3835
3836 /*
3837  * Check validity of the structure before insert.
3838  * Fortunately rules are simple, so this mostly need to check rule sizes.
3839  */
3840 static int
3841 check_ipfw_struct(struct ip_fw *rule, int size)
3842 {
3843         int l, cmdlen = 0;
3844         int have_action=0;
3845         ipfw_insn *cmd;
3846
3847         if (size < sizeof(*rule)) {
3848                 printf("ipfw: rule too short\n");
3849                 return (EINVAL);
3850         }
3851         /* first, check for valid size */
3852         l = RULESIZE(rule);
3853         if (l != size) {
3854                 printf("ipfw: size mismatch (have %d want %d)\n", size, l);
3855                 return (EINVAL);
3856         }
3857         if (rule->act_ofs >= rule->cmd_len) {
3858                 printf("ipfw: bogus action offset (%u > %u)\n",
3859                     rule->act_ofs, rule->cmd_len - 1);
3860                 return (EINVAL);
3861         }
3862         /*
3863          * Now go for the individual checks. Very simple ones, basically only
3864          * instruction sizes.
3865          */
3866         for (l = rule->cmd_len, cmd = rule->cmd ;
3867                         l > 0 ; l -= cmdlen, cmd += cmdlen) {
3868                 cmdlen = F_LEN(cmd);
3869                 if (cmdlen > l) {
3870                         printf("ipfw: opcode %d size truncated\n",
3871                             cmd->opcode);
3872                         return EINVAL;
3873                 }
3874                 DEB(printf("ipfw: opcode %d\n", cmd->opcode);)
3875                 switch (cmd->opcode) {
3876                 case O_PROBE_STATE:
3877                 case O_KEEP_STATE:
3878                 case O_PROTO:
3879                 case O_IP_SRC_ME:
3880                 case O_IP_DST_ME:
3881                 case O_LAYER2:
3882                 case O_IN:
3883                 case O_FRAG:
3884                 case O_DIVERTED:
3885                 case O_IPOPT:
3886                 case O_IPTOS:
3887                 case O_IPPRECEDENCE:
3888                 case O_IPVER:
3889                 case O_TCPWIN:
3890                 case O_TCPFLAGS:
3891                 case O_TCPOPTS:
3892                 case O_ESTAB:
3893                 case O_VERREVPATH:
3894                 case O_VERSRCREACH:
3895                 case O_ANTISPOOF:
3896                 case O_IPSEC:
3897 #ifdef INET6
3898                 case O_IP6_SRC_ME:
3899                 case O_IP6_DST_ME:
3900                 case O_EXT_HDR:
3901                 case O_IP6:
3902 #endif
3903                 case O_IP4:
3904                 case O_TAG:
3905                         if (cmdlen != F_INSN_SIZE(ipfw_insn))
3906                                 goto bad_size;
3907                         break;
3908
3909                 case O_FIB:
3910                         if (cmdlen != F_INSN_SIZE(ipfw_insn))
3911                                 goto bad_size;
3912                         if (cmd->arg1 >= rt_numfibs) {
3913                                 printf("ipfw: invalid fib number %d\n",
3914                                         cmd->arg1);
3915                                 return EINVAL;
3916                         }
3917                         break;
3918
3919                 case O_SETFIB:
3920                         if (cmdlen != F_INSN_SIZE(ipfw_insn))
3921                                 goto bad_size;
3922                         if (cmd->arg1 >= rt_numfibs) {
3923                                 printf("ipfw: invalid fib number %d\n",
3924                                         cmd->arg1);
3925                                 return EINVAL;
3926                         }
3927                         goto check_action;
3928
3929                 case O_UID:
3930                 case O_GID:
3931                 case O_JAIL:
3932                 case O_IP_SRC:
3933                 case O_IP_DST:
3934                 case O_TCPSEQ:
3935                 case O_TCPACK:
3936                 case O_PROB:
3937                 case O_ICMPTYPE:
3938                         if (cmdlen != F_INSN_SIZE(ipfw_insn_u32))
3939                                 goto bad_size;
3940                         break;
3941
3942                 case O_LIMIT:
3943                         if (cmdlen != F_INSN_SIZE(ipfw_insn_limit))
3944                                 goto bad_size;
3945                         break;
3946
3947                 case O_LOG:
3948                         if (cmdlen != F_INSN_SIZE(ipfw_insn_log))
3949                                 goto bad_size;
3950
3951                         ((ipfw_insn_log *)cmd)->log_left =
3952                             ((ipfw_insn_log *)cmd)->max_log;
3953
3954                         break;
3955
3956                 case O_IP_SRC_MASK:
3957                 case O_IP_DST_MASK:
3958                         /* only odd command lengths */
3959                         if ( !(cmdlen & 1) || cmdlen > 31)
3960                                 goto bad_size;
3961                         break;
3962
3963                 case O_IP_SRC_SET:
3964                 case O_IP_DST_SET:
3965                         if (cmd->arg1 == 0 || cmd->arg1 > 256) {
3966                                 printf("ipfw: invalid set size %d\n",
3967                                         cmd->arg1);
3968                                 return EINVAL;
3969                         }
3970                         if (cmdlen != F_INSN_SIZE(ipfw_insn_u32) +
3971                             (cmd->arg1+31)/32 )
3972                                 goto bad_size;
3973                         break;
3974
3975                 case O_IP_SRC_LOOKUP:
3976                 case O_IP_DST_LOOKUP:
3977                         if (cmd->arg1 >= IPFW_TABLES_MAX) {
3978                                 printf("ipfw: invalid table number %d\n",
3979                                     cmd->arg1);
3980                                 return (EINVAL);
3981                         }
3982                         if (cmdlen != F_INSN_SIZE(ipfw_insn) &&
3983                             cmdlen != F_INSN_SIZE(ipfw_insn_u32))
3984                                 goto bad_size;
3985                         break;
3986
3987                 case O_MACADDR2:
3988                         if (cmdlen != F_INSN_SIZE(ipfw_insn_mac))
3989                                 goto bad_size;
3990                         break;
3991
3992                 case O_NOP:
3993                 case O_IPID:
3994                 case O_IPTTL:
3995                 case O_IPLEN:
3996                 case O_TCPDATALEN:
3997                 case O_TAGGED:
3998                         if (cmdlen < 1 || cmdlen > 31)
3999                                 goto bad_size;
4000                         break;
4001
4002                 case O_MAC_TYPE:
4003                 case O_IP_SRCPORT:
4004                 case O_IP_DSTPORT: /* XXX artificial limit, 30 port pairs */
4005                         if (cmdlen < 2 || cmdlen > 31)
4006                                 goto bad_size;
4007                         break;
4008
4009                 case O_RECV:
4010                 case O_XMIT:
4011                 case O_VIA:
4012                         if (cmdlen != F_INSN_SIZE(ipfw_insn_if))
4013                                 goto bad_size;
4014                         break;
4015
4016                 case O_ALTQ:
4017                         if (cmdlen != F_INSN_SIZE(ipfw_insn_altq))
4018                                 goto bad_size;
4019                         break;
4020
4021                 case O_PIPE:
4022                 case O_QUEUE:
4023                         if (cmdlen != F_INSN_SIZE(ipfw_insn))
4024                                 goto bad_size;
4025                         goto check_action;
4026
4027                 case O_FORWARD_IP:
4028 #ifdef  IPFIREWALL_FORWARD
4029                         if (cmdlen != F_INSN_SIZE(ipfw_insn_sa))
4030                                 goto bad_size;
4031                         goto check_action;
4032 #else
4033                         return EINVAL;
4034 #endif
4035
4036                 case O_DIVERT:
4037                 case O_TEE:
4038                         if (ip_divert_ptr == NULL)
4039                                 return EINVAL;
4040                         else
4041                                 goto check_size;
4042                 case O_NETGRAPH:
4043                 case O_NGTEE:
4044                         if (!NG_IPFW_LOADED)
4045                                 return EINVAL;
4046                         else
4047                                 goto check_size;
4048                 case O_NAT:
4049                         if (!IPFW_NAT_LOADED)
4050                                 return EINVAL;
4051                         if (cmdlen != F_INSN_SIZE(ipfw_insn_nat))
4052                                 goto bad_size;          
4053                         goto check_action;
4054                 case O_FORWARD_MAC: /* XXX not implemented yet */
4055                 case O_CHECK_STATE:
4056                 case O_COUNT:
4057                 case O_ACCEPT:
4058                 case O_DENY:
4059                 case O_REJECT:
4060 #ifdef INET6
4061                 case O_UNREACH6:
4062 #endif
4063                 case O_SKIPTO:
4064 check_size:
4065                         if (cmdlen != F_INSN_SIZE(ipfw_insn))
4066                                 goto bad_size;
4067 check_action:
4068                         if (have_action) {
4069                                 printf("ipfw: opcode %d, multiple actions"
4070                                         " not allowed\n",
4071                                         cmd->opcode);
4072                                 return EINVAL;
4073                         }
4074                         have_action = 1;
4075                         if (l != cmdlen) {
4076                                 printf("ipfw: opcode %d, action must be"
4077                                         " last opcode\n",
4078                                         cmd->opcode);
4079                                 return EINVAL;
4080                         }
4081                         break;
4082 #ifdef INET6
4083                 case O_IP6_SRC:
4084                 case O_IP6_DST:
4085                         if (cmdlen != F_INSN_SIZE(struct in6_addr) +
4086                             F_INSN_SIZE(ipfw_insn))
4087                                 goto bad_size;
4088                         break;
4089
4090                 case O_FLOW6ID:
4091                         if (cmdlen != F_INSN_SIZE(ipfw_insn_u32) +
4092                             ((ipfw_insn_u32 *)cmd)->o.arg1)
4093                                 goto bad_size;
4094                         break;
4095
4096                 case O_IP6_SRC_MASK:
4097                 case O_IP6_DST_MASK:
4098                         if ( !(cmdlen & 1) || cmdlen > 127)
4099                                 goto bad_size;
4100                         break;
4101                 case O_ICMP6TYPE:
4102                         if( cmdlen != F_INSN_SIZE( ipfw_insn_icmp6 ) )
4103                                 goto bad_size;
4104                         break;
4105 #endif
4106
4107                 default:
4108                         switch (cmd->opcode) {
4109 #ifndef INET6
4110                         case O_IP6_SRC_ME:
4111                         case O_IP6_DST_ME:
4112                         case O_EXT_HDR:
4113                         case O_IP6:
4114                         case O_UNREACH6:
4115                         case O_IP6_SRC:
4116                         case O_IP6_DST:
4117                         case O_FLOW6ID:
4118                         case O_IP6_SRC_MASK:
4119                         case O_IP6_DST_MASK:
4120                         case O_ICMP6TYPE:
4121                                 printf("ipfw: no IPv6 support in kernel\n");
4122                                 return EPROTONOSUPPORT;
4123 #endif
4124                         default:
4125                                 printf("ipfw: opcode %d, unknown opcode\n",
4126                                         cmd->opcode);
4127                                 return EINVAL;
4128                         }
4129                 }
4130         }
4131         if (have_action == 0) {
4132                 printf("ipfw: missing action\n");
4133                 return EINVAL;
4134         }
4135         return 0;
4136
4137 bad_size:
4138         printf("ipfw: opcode %d size %d wrong\n",
4139                 cmd->opcode, cmdlen);
4140         return EINVAL;
4141 }
4142
4143 /*
4144  * Copy the static and dynamic rules to the supplied buffer
4145  * and return the amount of space actually used.
4146  */
4147 static size_t
4148 ipfw_getrules(struct ip_fw_chain *chain, void *buf, size_t space)
4149 {
4150         char *bp = buf;
4151         char *ep = bp + space;
4152         struct ip_fw *rule;
4153         int i;
4154         time_t  boot_seconds;
4155
4156         boot_seconds = boottime.tv_sec;
4157         /* XXX this can take a long time and locking will block packet flow */
4158         IPFW_RLOCK(chain);
4159         for (rule = chain->rules; rule ; rule = rule->next) {
4160                 /*
4161                  * Verify the entry fits in the buffer in case the
4162                  * rules changed between calculating buffer space and
4163                  * now.  This would be better done using a generation
4164                  * number but should suffice for now.
4165                  */
4166                 i = RULESIZE(rule);
4167                 if (bp + i <= ep) {
4168                         bcopy(rule, bp, i);
4169                         /*
4170                          * XXX HACK. Store the disable mask in the "next" pointer
4171                          * in a wild attempt to keep the ABI the same.
4172                          * Why do we do this on EVERY rule?
4173                          */
4174                         bcopy(&set_disable, &(((struct ip_fw *)bp)->next_rule),
4175                             sizeof(set_disable));
4176                         if (((struct ip_fw *)bp)->timestamp)
4177                                 ((struct ip_fw *)bp)->timestamp += boot_seconds;
4178                         bp += i;
4179                 }
4180         }
4181         IPFW_RUNLOCK(chain);
4182         if (ipfw_dyn_v) {
4183                 ipfw_dyn_rule *p, *last = NULL;
4184
4185                 IPFW_DYN_LOCK();
4186                 for (i = 0 ; i < curr_dyn_buckets; i++)
4187                         for (p = ipfw_dyn_v[i] ; p != NULL; p = p->next) {
4188                                 if (bp + sizeof *p <= ep) {
4189                                         ipfw_dyn_rule *dst =
4190                                                 (ipfw_dyn_rule *)bp;
4191                                         bcopy(p, dst, sizeof *p);
4192                                         bcopy(&(p->rule->rulenum), &(dst->rule),
4193                                             sizeof(p->rule->rulenum));
4194                                         /*
4195                                          * store set number into high word of
4196                                          * dst->rule pointer.
4197                                          */
4198                                         bcopy(&(p->rule->set),
4199                                             (char *)&dst->rule +
4200                                             sizeof(p->rule->rulenum),
4201                                             sizeof(p->rule->set));
4202                                         /*
4203                                          * store a non-null value in "next".
4204                                          * The userland code will interpret a
4205                                          * NULL here as a marker
4206                                          * for the last dynamic rule.
4207                                          */
4208                                         bcopy(&dst, &dst->next, sizeof(dst));
4209                                         last = dst;
4210                                         dst->expire =
4211                                             TIME_LEQ(dst->expire, time_uptime) ?
4212                                                 0 : dst->expire - time_uptime ;
4213                                         bp += sizeof(ipfw_dyn_rule);
4214                                 }
4215                         }
4216                 IPFW_DYN_UNLOCK();
4217                 if (last != NULL) /* mark last dynamic rule */
4218                         bzero(&last->next, sizeof(last));
4219         }
4220         return (bp - (char *)buf);
4221 }
4222
4223
4224 /**
4225  * {set|get}sockopt parser.
4226  */
4227 static int
4228 ipfw_ctl(struct sockopt *sopt)
4229 {
4230 #define RULE_MAXSIZE    (256*sizeof(u_int32_t))
4231         int error;
4232         size_t size;
4233         struct ip_fw *buf, *rule;
4234         u_int32_t rulenum[2];
4235
4236         error = priv_check(sopt->sopt_td, PRIV_NETINET_IPFW);
4237         if (error)
4238                 return (error);
4239
4240         /*
4241          * Disallow modifications in really-really secure mode, but still allow
4242          * the logging counters to be reset.
4243          */
4244         if (sopt->sopt_name == IP_FW_ADD ||
4245             (sopt->sopt_dir == SOPT_SET && sopt->sopt_name != IP_FW_RESETLOG)) {
4246                 error = securelevel_ge(sopt->sopt_td->td_ucred, 3);
4247                 if (error)
4248                         return (error);
4249         }
4250
4251         error = 0;
4252
4253         switch (sopt->sopt_name) {
4254         case IP_FW_GET:
4255                 /*
4256                  * pass up a copy of the current rules. Static rules
4257                  * come first (the last of which has number IPFW_DEFAULT_RULE),
4258                  * followed by a possibly empty list of dynamic rule.
4259                  * The last dynamic rule has NULL in the "next" field.
4260                  *
4261                  * Note that the calculated size is used to bound the
4262                  * amount of data returned to the user.  The rule set may
4263                  * change between calculating the size and returning the
4264                  * data in which case we'll just return what fits.
4265                  */
4266                 size = static_len;      /* size of static rules */
4267                 if (ipfw_dyn_v)         /* add size of dyn.rules */
4268                         size += (dyn_count * sizeof(ipfw_dyn_rule));
4269
4270                 /*
4271                  * XXX todo: if the user passes a short length just to know
4272                  * how much room is needed, do not bother filling up the
4273                  * buffer, just jump to the sooptcopyout.
4274                  */
4275                 buf = malloc(size, M_TEMP, M_WAITOK);
4276                 error = sooptcopyout(sopt, buf,
4277                                 ipfw_getrules(&layer3_chain, buf, size));
4278                 free(buf, M_TEMP);
4279                 break;
4280
4281         case IP_FW_FLUSH:
4282                 /*
4283                  * Normally we cannot release the lock on each iteration.
4284                  * We could do it here only because we start from the head all
4285                  * the times so there is no risk of missing some entries.
4286                  * On the other hand, the risk is that we end up with
4287                  * a very inconsistent ruleset, so better keep the lock
4288                  * around the whole cycle.
4289                  *
4290                  * XXX this code can be improved by resetting the head of
4291                  * the list to point to the default rule, and then freeing
4292                  * the old list without the need for a lock.
4293                  */
4294
4295                 IPFW_WLOCK(&layer3_chain);
4296                 layer3_chain.reap = NULL;
4297                 free_chain(&layer3_chain, 0 /* keep default rule */);
4298                 rule = layer3_chain.reap;
4299                 layer3_chain.reap = NULL;
4300                 IPFW_WUNLOCK(&layer3_chain);
4301                 if (rule != NULL)
4302                         reap_rules(rule);
4303                 break;
4304
4305         case IP_FW_ADD:
4306                 rule = malloc(RULE_MAXSIZE, M_TEMP, M_WAITOK);
4307                 error = sooptcopyin(sopt, rule, RULE_MAXSIZE,
4308                         sizeof(struct ip_fw) );
4309                 if (error == 0)
4310                         error = check_ipfw_struct(rule, sopt->sopt_valsize);
4311                 if (error == 0) {
4312                         error = add_rule(&layer3_chain, rule);
4313                         size = RULESIZE(rule);
4314                         if (!error && sopt->sopt_dir == SOPT_GET)
4315                                 error = sooptcopyout(sopt, rule, size);
4316                 }
4317                 free(rule, M_TEMP);
4318                 break;
4319
4320         case IP_FW_DEL:
4321                 /*
4322                  * IP_FW_DEL is used for deleting single rules or sets,
4323                  * and (ab)used to atomically manipulate sets. Argument size
4324                  * is used to distinguish between the two:
4325                  *    sizeof(u_int32_t)
4326                  *      delete single rule or set of rules,
4327                  *      or reassign rules (or sets) to a different set.
4328                  *    2*sizeof(u_int32_t)
4329                  *      atomic disable/enable sets.
4330                  *      first u_int32_t contains sets to be disabled,
4331                  *      second u_int32_t contains sets to be enabled.
4332                  */
4333                 error = sooptcopyin(sopt, rulenum,
4334                         2*sizeof(u_int32_t), sizeof(u_int32_t));
4335                 if (error)
4336                         break;
4337                 size = sopt->sopt_valsize;
4338                 if (size == sizeof(u_int32_t))  /* delete or reassign */
4339                         error = del_entry(&layer3_chain, rulenum[0]);
4340                 else if (size == 2*sizeof(u_int32_t)) /* set enable/disable */
4341                         set_disable =
4342                             (set_disable | rulenum[0]) & ~rulenum[1] &
4343                             ~(1<<RESVD_SET); /* set RESVD_SET always enabled */
4344                 else
4345                         error = EINVAL;
4346                 break;
4347
4348         case IP_FW_ZERO:
4349         case IP_FW_RESETLOG: /* argument is an u_int_32, the rule number */
4350                 rulenum[0] = 0;
4351                 if (sopt->sopt_val != 0) {
4352                     error = sooptcopyin(sopt, rulenum,
4353                             sizeof(u_int32_t), sizeof(u_int32_t));
4354                     if (error)
4355                         break;
4356                 }
4357                 error = zero_entry(&layer3_chain, rulenum[0],
4358                         sopt->sopt_name == IP_FW_RESETLOG);
4359                 break;
4360
4361 #ifdef radix
4362         case IP_FW_TABLE_ADD:
4363                 {
4364                         ipfw_table_entry ent;
4365
4366                         error = sooptcopyin(sopt, &ent,
4367                             sizeof(ent), sizeof(ent));
4368                         if (error)
4369                                 break;
4370                         error = add_table_entry(&layer3_chain, ent.tbl,
4371                             ent.addr, ent.masklen, ent.value);
4372                 }
4373                 break;
4374
4375         case IP_FW_TABLE_DEL:
4376                 {
4377                         ipfw_table_entry ent;
4378
4379                         error = sooptcopyin(sopt, &ent,
4380                             sizeof(ent), sizeof(ent));
4381                         if (error)
4382                                 break;
4383                         error = del_table_entry(&layer3_chain, ent.tbl,
4384                             ent.addr, ent.masklen);
4385                 }
4386                 break;
4387
4388         case IP_FW_TABLE_FLUSH:
4389                 {
4390                         u_int16_t tbl;
4391
4392                         error = sooptcopyin(sopt, &tbl,
4393                             sizeof(tbl), sizeof(tbl));
4394                         if (error)
4395                                 break;
4396                         IPFW_WLOCK(&layer3_chain);
4397                         error = flush_table(&layer3_chain, tbl);
4398                         IPFW_WUNLOCK(&layer3_chain);
4399                 }
4400                 break;
4401
4402         case IP_FW_TABLE_GETSIZE:
4403                 {
4404                         u_int32_t tbl, cnt;
4405
4406                         if ((error = sooptcopyin(sopt, &tbl, sizeof(tbl),
4407                             sizeof(tbl))))
4408                                 break;
4409                         IPFW_RLOCK(&layer3_chain);
4410                         error = count_table(&layer3_chain, tbl, &cnt);
4411                         IPFW_RUNLOCK(&layer3_chain);
4412                         if (error)
4413                                 break;
4414                         error = sooptcopyout(sopt, &cnt, sizeof(cnt));
4415                 }
4416                 break;
4417
4418         case IP_FW_TABLE_LIST:
4419                 {
4420                         ipfw_table *tbl;
4421
4422                         if (sopt->sopt_valsize < sizeof(*tbl)) {
4423                                 error = EINVAL;
4424                                 break;
4425                         }
4426                         size = sopt->sopt_valsize;
4427                         tbl = malloc(size, M_TEMP, M_WAITOK);
4428                         error = sooptcopyin(sopt, tbl, size, sizeof(*tbl));
4429                         if (error) {
4430                                 free(tbl, M_TEMP);
4431                                 break;
4432                         }
4433                         tbl->size = (size - sizeof(*tbl)) /
4434                             sizeof(ipfw_table_entry);
4435                         IPFW_RLOCK(&layer3_chain);
4436                         error = dump_table(&layer3_chain, tbl);
4437                         IPFW_RUNLOCK(&layer3_chain);
4438                         if (error) {
4439                                 free(tbl, M_TEMP);
4440                                 break;
4441                         }
4442                         error = sooptcopyout(sopt, tbl, size);
4443                         free(tbl, M_TEMP);
4444                 }
4445                 break;
4446
4447 #endif /* radix */
4448
4449         case IP_FW_NAT_CFG:
4450                 if (IPFW_NAT_LOADED)
4451                         error = ipfw_nat_cfg_ptr(sopt);
4452                 else {
4453                         printf("IP_FW_NAT_CFG: %s\n",
4454                                 "ipfw_nat not present, please load it");
4455                         error = EINVAL;
4456                 }
4457                 break;
4458
4459         case IP_FW_NAT_DEL:
4460                 if (IPFW_NAT_LOADED)
4461                         error = ipfw_nat_del_ptr(sopt);
4462                 else {
4463                         printf("IP_FW_NAT_DEL: %s\n",
4464                                 "ipfw_nat not present, please load it");
4465                         error = EINVAL;
4466                 }
4467                 break;
4468
4469         case IP_FW_NAT_GET_CONFIG:
4470                 if (IPFW_NAT_LOADED)
4471                         error = ipfw_nat_get_cfg_ptr(sopt);
4472                 else {
4473                         printf("IP_FW_NAT_GET_CFG: %s\n",
4474                                 "ipfw_nat not present, please load it");
4475                         error = EINVAL;
4476                 }
4477                 break;
4478
4479         case IP_FW_NAT_GET_LOG:
4480                 if (IPFW_NAT_LOADED)
4481                         error = ipfw_nat_get_log_ptr(sopt);
4482                 else {
4483                         printf("IP_FW_NAT_GET_LOG: %s\n",
4484                                 "ipfw_nat not present, please load it");
4485                         error = EINVAL;
4486                 }
4487                 break;
4488
4489         default:
4490                 printf("ipfw: ipfw_ctl invalid option %d\n", sopt->sopt_name);
4491                 error = EINVAL;
4492         }
4493
4494         return (error);
4495 #undef RULE_MAXSIZE
4496 }
4497
4498 /**
4499  * dummynet needs a reference to the default rule, because rules can be
4500  * deleted while packets hold a reference to them. When this happens,
4501  * dummynet changes the reference to the default rule (it could well be a
4502  * NULL pointer, but this way we do not need to check for the special
4503  * case, plus here he have info on the default behaviour).
4504  */
4505 struct ip_fw *ip_fw_default_rule;
4506
4507 /*
4508  * This procedure is only used to handle keepalives. It is invoked
4509  * every dyn_keepalive_period
4510  */
4511 static void
4512 ipfw_tick(void * __unused unused)
4513 {
4514         struct mbuf *m0, *m, *mnext, **mtailp;
4515         int i;
4516         ipfw_dyn_rule *q;
4517
4518         if (dyn_keepalive == 0 || ipfw_dyn_v == NULL || dyn_count == 0)
4519                 goto done;
4520
4521         /*
4522          * We make a chain of packets to go out here -- not deferring
4523          * until after we drop the IPFW dynamic rule lock would result
4524          * in a lock order reversal with the normal packet input -> ipfw
4525          * call stack.
4526          */
4527         m0 = NULL;
4528         mtailp = &m0;
4529         IPFW_DYN_LOCK();
4530         for (i = 0 ; i < curr_dyn_buckets ; i++) {
4531                 for (q = ipfw_dyn_v[i] ; q ; q = q->next ) {
4532                         if (q->dyn_type == O_LIMIT_PARENT)
4533                                 continue;
4534                         if (q->id.proto != IPPROTO_TCP)
4535                                 continue;
4536                         if ( (q->state & BOTH_SYN) != BOTH_SYN)
4537                                 continue;
4538                         if (TIME_LEQ( time_uptime+dyn_keepalive_interval,
4539                             q->expire))
4540                                 continue;       /* too early */
4541                         if (TIME_LEQ(q->expire, time_uptime))
4542                                 continue;       /* too late, rule expired */
4543
4544                         *mtailp = send_pkt(NULL, &(q->id), q->ack_rev - 1,
4545                                 q->ack_fwd, TH_SYN);
4546                         if (*mtailp != NULL)
4547                                 mtailp = &(*mtailp)->m_nextpkt;
4548                         *mtailp = send_pkt(NULL, &(q->id), q->ack_fwd - 1,
4549                                 q->ack_rev, 0);
4550                         if (*mtailp != NULL)
4551                                 mtailp = &(*mtailp)->m_nextpkt;
4552                 }
4553         }
4554         IPFW_DYN_UNLOCK();
4555         for (m = mnext = m0; m != NULL; m = mnext) {
4556                 mnext = m->m_nextpkt;
4557                 m->m_nextpkt = NULL;
4558                 ip_output(m, NULL, NULL, 0, NULL, NULL);
4559         }
4560 done:
4561         callout_reset(&ipfw_timeout, dyn_keepalive_period*hz, ipfw_tick, NULL);
4562 }
4563
4564 int
4565 ipfw_init(void)
4566 {
4567         struct ip_fw default_rule;
4568         int error;
4569
4570 #ifdef INET6
4571         /* Setup IPv6 fw sysctl tree. */
4572         sysctl_ctx_init(&ip6_fw_sysctl_ctx);
4573         ip6_fw_sysctl_tree = SYSCTL_ADD_NODE(&ip6_fw_sysctl_ctx,
4574             SYSCTL_STATIC_CHILDREN(_net_inet6_ip6), OID_AUTO, "fw",
4575             CTLFLAG_RW | CTLFLAG_SECURE, 0, "Firewall");
4576         SYSCTL_ADD_PROC(&ip6_fw_sysctl_ctx, SYSCTL_CHILDREN(ip6_fw_sysctl_tree),
4577             OID_AUTO, "enable", CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_SECURE3,
4578             &fw6_enable, 0, ipfw_chg_hook, "I", "Enable ipfw+6");
4579         SYSCTL_ADD_INT(&ip6_fw_sysctl_ctx, SYSCTL_CHILDREN(ip6_fw_sysctl_tree),
4580             OID_AUTO, "deny_unknown_exthdrs", CTLFLAG_RW | CTLFLAG_SECURE,
4581             &fw_deny_unknown_exthdrs, 0,
4582             "Deny packets with unknown IPv6 Extension Headers");
4583 #endif
4584
4585         layer3_chain.rules = NULL;
4586         IPFW_LOCK_INIT(&layer3_chain);
4587         ipfw_dyn_rule_zone = uma_zcreate("IPFW dynamic rule",
4588             sizeof(ipfw_dyn_rule), NULL, NULL, NULL, NULL,
4589             UMA_ALIGN_PTR, 0);
4590         IPFW_DYN_LOCK_INIT();
4591         callout_init(&ipfw_timeout, CALLOUT_MPSAFE);
4592
4593         bzero(&default_rule, sizeof default_rule);
4594
4595         default_rule.act_ofs = 0;
4596         default_rule.rulenum = IPFW_DEFAULT_RULE;
4597         default_rule.cmd_len = 1;
4598         default_rule.set = RESVD_SET;
4599
4600         default_rule.cmd[0].len = 1;
4601         default_rule.cmd[0].opcode =
4602 #ifdef IPFIREWALL_DEFAULT_TO_ACCEPT
4603                                 1 ? O_ACCEPT :
4604 #endif
4605                                 O_DENY;
4606
4607         error = add_rule(&layer3_chain, &default_rule);
4608         if (error != 0) {
4609                 printf("ipfw2: error %u initializing default rule "
4610                         "(support disabled)\n", error);
4611                 IPFW_DYN_LOCK_DESTROY();
4612                 IPFW_LOCK_DESTROY(&layer3_chain);
4613                 uma_zdestroy(ipfw_dyn_rule_zone);
4614                 return (error);
4615         }
4616
4617         ip_fw_default_rule = layer3_chain.rules;
4618         printf("ipfw2 "
4619 #ifdef INET6
4620                 "(+ipv6) "
4621 #endif
4622                 "initialized, divert %s, nat %s, "
4623                 "rule-based forwarding "
4624 #ifdef IPFIREWALL_FORWARD
4625                 "enabled, "
4626 #else
4627                 "disabled, "
4628 #endif
4629                 "default to %s, logging ",
4630 #ifdef IPDIVERT
4631                 "enabled",
4632 #else
4633                 "loadable",
4634 #endif
4635 #ifdef IPFIREWALL_NAT
4636                 "enabled",
4637 #else
4638                 "loadable",
4639 #endif
4640
4641                 default_rule.cmd[0].opcode == O_ACCEPT ? "accept" : "deny");
4642
4643 #ifdef IPFIREWALL_VERBOSE
4644         fw_verbose = 1;
4645 #endif
4646 #ifdef IPFIREWALL_VERBOSE_LIMIT
4647         verbose_limit = IPFIREWALL_VERBOSE_LIMIT;
4648 #endif
4649         if (fw_verbose == 0)
4650                 printf("disabled\n");
4651         else if (verbose_limit == 0)
4652                 printf("unlimited\n");
4653         else
4654                 printf("limited to %d packets/entry by default\n",
4655                     verbose_limit);
4656
4657         error = init_tables(&layer3_chain);
4658         if (error) {
4659                 IPFW_DYN_LOCK_DESTROY();
4660                 IPFW_LOCK_DESTROY(&layer3_chain);
4661                 uma_zdestroy(ipfw_dyn_rule_zone);
4662                 return (error);
4663         }
4664         ip_fw_ctl_ptr = ipfw_ctl;
4665         ip_fw_chk_ptr = ipfw_chk;
4666         callout_reset(&ipfw_timeout, hz, ipfw_tick, NULL);      
4667         LIST_INIT(&layer3_chain.nat);
4668         return (0);
4669 }
4670
4671 void
4672 ipfw_destroy(void)
4673 {
4674         struct ip_fw *reap;
4675
4676         ip_fw_chk_ptr = NULL;
4677         ip_fw_ctl_ptr = NULL;
4678         callout_drain(&ipfw_timeout);
4679         IPFW_WLOCK(&layer3_chain);
4680         flush_tables(&layer3_chain);
4681         layer3_chain.reap = NULL;
4682         free_chain(&layer3_chain, 1 /* kill default rule */);
4683         reap = layer3_chain.reap, layer3_chain.reap = NULL;
4684         IPFW_WUNLOCK(&layer3_chain);
4685         if (reap != NULL)
4686                 reap_rules(reap);
4687         IPFW_DYN_LOCK_DESTROY();
4688         uma_zdestroy(ipfw_dyn_rule_zone);
4689         if (ipfw_dyn_v != NULL)
4690                 free(ipfw_dyn_v, M_IPFW);
4691         IPFW_LOCK_DESTROY(&layer3_chain);
4692
4693 #ifdef INET6
4694         /* Free IPv6 fw sysctl tree. */
4695         sysctl_ctx_free(&ip6_fw_sysctl_ctx);
4696 #endif
4697
4698         printf("IP firewall unloaded\n");
4699 }