]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/netinet/ipfw/ip_fw2.c
MFC r223080:
[FreeBSD/stable/8.git] / sys / netinet / ipfw / ip_fw2.c
1 /*-
2  * Copyright (c) 2002-2009 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$");
28
29 /*
30  * The FreeBSD IP packet firewall, main file
31  */
32
33 #if !defined(KLD_MODULE)
34 #include "opt_ipfw.h"
35 #include "opt_ipdivert.h"
36 #include "opt_ipdn.h"
37 #include "opt_inet.h"
38 #ifndef INET
39 #error IPFIREWALL requires INET.
40 #endif /* INET */
41 #endif
42 #include "opt_inet6.h"
43 #include "opt_ipsec.h"
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/condvar.h>
48 #include <sys/eventhandler.h>
49 #include <sys/malloc.h>
50 #include <sys/mbuf.h>
51 #include <sys/kernel.h>
52 #include <sys/lock.h>
53 #include <sys/jail.h>
54 #include <sys/module.h>
55 #include <sys/priv.h>
56 #include <sys/proc.h>
57 #include <sys/rwlock.h>
58 #include <sys/socket.h>
59 #include <sys/socketvar.h>
60 #include <sys/sysctl.h>
61 #include <sys/syslog.h>
62 #include <sys/ucred.h>
63 #include <net/ethernet.h> /* for ETHERTYPE_IP */
64 #include <net/if.h>
65 #include <net/route.h>
66 #include <net/pf_mtag.h>
67 #include <net/vnet.h>
68
69 #include <netinet/in.h>
70 #include <netinet/in_var.h>
71 #include <netinet/in_pcb.h>
72 #include <netinet/ip.h>
73 #include <netinet/ip_var.h>
74 #include <netinet/ip_icmp.h>
75 #include <netinet/ip_fw.h>
76 #include <netinet/ipfw/ip_fw_private.h>
77 #include <netinet/ip_carp.h>
78 #include <netinet/pim.h>
79 #include <netinet/tcp_var.h>
80 #include <netinet/udp.h>
81 #include <netinet/udp_var.h>
82 #include <netinet/sctp.h>
83
84 #include <netinet/ip6.h>
85 #include <netinet/icmp6.h>
86 #ifdef INET6
87 #include <netinet6/scope6_var.h>
88 #include <netinet6/ip6_var.h>
89 #endif
90
91 #include <machine/in_cksum.h>   /* XXX for in_cksum */
92
93 #ifdef MAC
94 #include <security/mac/mac_framework.h>
95 #endif
96
97 /*
98  * static variables followed by global ones.
99  * All ipfw global variables are here.
100  */
101
102 /* ipfw_vnet_ready controls when we are open for business */
103 static VNET_DEFINE(int, ipfw_vnet_ready) = 0;
104 #define V_ipfw_vnet_ready       VNET(ipfw_vnet_ready)
105
106 static VNET_DEFINE(int, fw_deny_unknown_exthdrs);
107 #define V_fw_deny_unknown_exthdrs       VNET(fw_deny_unknown_exthdrs)
108
109 #ifdef IPFIREWALL_DEFAULT_TO_ACCEPT
110 static int default_to_accept = 1;
111 #else
112 static int default_to_accept;
113 #endif
114
115 VNET_DEFINE(int, autoinc_step);
116
117 /*
118  * Each rule belongs to one of 32 different sets (0..31).
119  * The variable set_disable contains one bit per set.
120  * If the bit is set, all rules in the corresponding set
121  * are disabled. Set RESVD_SET(31) is reserved for the default rule
122  * and rules that are not deleted by the flush command,
123  * and CANNOT be disabled.
124  * Rules in set RESVD_SET can only be deleted individually.
125  */
126 VNET_DEFINE(u_int32_t, set_disable);
127 #define V_set_disable                   VNET(set_disable)
128
129 VNET_DEFINE(int, fw_verbose);
130 /* counter for ipfw_log(NULL...) */
131 VNET_DEFINE(u_int64_t, norule_counter);
132 VNET_DEFINE(int, verbose_limit);
133
134 /* layer3_chain contains the list of rules for layer 3 */
135 VNET_DEFINE(struct ip_fw_chain, layer3_chain);
136
137 ipfw_nat_t *ipfw_nat_ptr = NULL;
138 struct cfg_nat *(*lookup_nat_ptr)(struct nat_list *, int);
139 ipfw_nat_cfg_t *ipfw_nat_cfg_ptr;
140 ipfw_nat_cfg_t *ipfw_nat_del_ptr;
141 ipfw_nat_cfg_t *ipfw_nat_get_cfg_ptr;
142 ipfw_nat_cfg_t *ipfw_nat_get_log_ptr;
143
144 #ifdef SYSCTL_NODE
145 uint32_t dummy_def = IPFW_DEFAULT_RULE;
146 uint32_t dummy_tables_max = IPFW_TABLES_MAX;
147
148 SYSBEGIN(f3)
149
150 SYSCTL_NODE(_net_inet_ip, OID_AUTO, fw, CTLFLAG_RW, 0, "Firewall");
151 SYSCTL_VNET_INT(_net_inet_ip_fw, OID_AUTO, one_pass,
152     CTLFLAG_RW | CTLFLAG_SECURE3, &VNET_NAME(fw_one_pass), 0,
153     "Only do a single pass through ipfw when using dummynet(4)");
154 SYSCTL_VNET_INT(_net_inet_ip_fw, OID_AUTO, autoinc_step,
155     CTLFLAG_RW, &VNET_NAME(autoinc_step), 0,
156     "Rule number auto-increment step");
157 SYSCTL_VNET_INT(_net_inet_ip_fw, OID_AUTO, verbose,
158     CTLFLAG_RW | CTLFLAG_SECURE3, &VNET_NAME(fw_verbose), 0,
159     "Log matches to ipfw rules");
160 SYSCTL_VNET_INT(_net_inet_ip_fw, OID_AUTO, verbose_limit,
161     CTLFLAG_RW, &VNET_NAME(verbose_limit), 0,
162     "Set upper limit of matches of ipfw rules logged");
163 SYSCTL_UINT(_net_inet_ip_fw, OID_AUTO, default_rule, CTLFLAG_RD,
164     &dummy_def, 0,
165     "The default/max possible rule number.");
166 SYSCTL_UINT(_net_inet_ip_fw, OID_AUTO, tables_max, CTLFLAG_RD,
167     &dummy_tables_max, 0,
168     "The maximum number of tables.");
169 SYSCTL_INT(_net_inet_ip_fw, OID_AUTO, default_to_accept, CTLFLAG_RDTUN,
170     &default_to_accept, 0,
171     "Make the default rule accept all packets.");
172 TUNABLE_INT("net.inet.ip.fw.default_to_accept", &default_to_accept);
173 SYSCTL_VNET_INT(_net_inet_ip_fw, OID_AUTO, static_count,
174     CTLFLAG_RD, &VNET_NAME(layer3_chain.n_rules), 0,
175     "Number of static rules");
176
177 #ifdef INET6
178 SYSCTL_DECL(_net_inet6_ip6);
179 SYSCTL_NODE(_net_inet6_ip6, OID_AUTO, fw, CTLFLAG_RW, 0, "Firewall");
180 SYSCTL_VNET_INT(_net_inet6_ip6_fw, OID_AUTO, deny_unknown_exthdrs,
181     CTLFLAG_RW | CTLFLAG_SECURE, &VNET_NAME(fw_deny_unknown_exthdrs), 0,
182     "Deny packets with unknown IPv6 Extension Headers");
183 #endif /* INET6 */
184
185 SYSEND
186
187 #endif /* SYSCTL_NODE */
188
189
190 /*
191  * Some macros used in the various matching options.
192  * L3HDR maps an ipv4 pointer into a layer3 header pointer of type T
193  * Other macros just cast void * into the appropriate type
194  */
195 #define L3HDR(T, ip)    ((T *)((u_int32_t *)(ip) + (ip)->ip_hl))
196 #define TCP(p)          ((struct tcphdr *)(p))
197 #define SCTP(p)         ((struct sctphdr *)(p))
198 #define UDP(p)          ((struct udphdr *)(p))
199 #define ICMP(p)         ((struct icmphdr *)(p))
200 #define ICMP6(p)        ((struct icmp6_hdr *)(p))
201
202 static __inline int
203 icmptype_match(struct icmphdr *icmp, ipfw_insn_u32 *cmd)
204 {
205         int type = icmp->icmp_type;
206
207         return (type <= ICMP_MAXTYPE && (cmd->d[0] & (1<<type)) );
208 }
209
210 #define TT      ( (1 << ICMP_ECHO) | (1 << ICMP_ROUTERSOLICIT) | \
211     (1 << ICMP_TSTAMP) | (1 << ICMP_IREQ) | (1 << ICMP_MASKREQ) )
212
213 static int
214 is_icmp_query(struct icmphdr *icmp)
215 {
216         int type = icmp->icmp_type;
217
218         return (type <= ICMP_MAXTYPE && (TT & (1<<type)) );
219 }
220 #undef TT
221
222 /*
223  * The following checks use two arrays of 8 or 16 bits to store the
224  * bits that we want set or clear, respectively. They are in the
225  * low and high half of cmd->arg1 or cmd->d[0].
226  *
227  * We scan options and store the bits we find set. We succeed if
228  *
229  *      (want_set & ~bits) == 0 && (want_clear & ~bits) == want_clear
230  *
231  * The code is sometimes optimized not to store additional variables.
232  */
233
234 static int
235 flags_match(ipfw_insn *cmd, u_int8_t bits)
236 {
237         u_char want_clear;
238         bits = ~bits;
239
240         if ( ((cmd->arg1 & 0xff) & bits) != 0)
241                 return 0; /* some bits we want set were clear */
242         want_clear = (cmd->arg1 >> 8) & 0xff;
243         if ( (want_clear & bits) != want_clear)
244                 return 0; /* some bits we want clear were set */
245         return 1;
246 }
247
248 static int
249 ipopts_match(struct ip *ip, ipfw_insn *cmd)
250 {
251         int optlen, bits = 0;
252         u_char *cp = (u_char *)(ip + 1);
253         int x = (ip->ip_hl << 2) - sizeof (struct ip);
254
255         for (; x > 0; x -= optlen, cp += optlen) {
256                 int opt = cp[IPOPT_OPTVAL];
257
258                 if (opt == IPOPT_EOL)
259                         break;
260                 if (opt == IPOPT_NOP)
261                         optlen = 1;
262                 else {
263                         optlen = cp[IPOPT_OLEN];
264                         if (optlen <= 0 || optlen > x)
265                                 return 0; /* invalid or truncated */
266                 }
267                 switch (opt) {
268
269                 default:
270                         break;
271
272                 case IPOPT_LSRR:
273                         bits |= IP_FW_IPOPT_LSRR;
274                         break;
275
276                 case IPOPT_SSRR:
277                         bits |= IP_FW_IPOPT_SSRR;
278                         break;
279
280                 case IPOPT_RR:
281                         bits |= IP_FW_IPOPT_RR;
282                         break;
283
284                 case IPOPT_TS:
285                         bits |= IP_FW_IPOPT_TS;
286                         break;
287                 }
288         }
289         return (flags_match(cmd, bits));
290 }
291
292 static int
293 tcpopts_match(struct tcphdr *tcp, ipfw_insn *cmd)
294 {
295         int optlen, bits = 0;
296         u_char *cp = (u_char *)(tcp + 1);
297         int x = (tcp->th_off << 2) - sizeof(struct tcphdr);
298
299         for (; x > 0; x -= optlen, cp += optlen) {
300                 int opt = cp[0];
301                 if (opt == TCPOPT_EOL)
302                         break;
303                 if (opt == TCPOPT_NOP)
304                         optlen = 1;
305                 else {
306                         optlen = cp[1];
307                         if (optlen <= 0)
308                                 break;
309                 }
310
311                 switch (opt) {
312
313                 default:
314                         break;
315
316                 case TCPOPT_MAXSEG:
317                         bits |= IP_FW_TCPOPT_MSS;
318                         break;
319
320                 case TCPOPT_WINDOW:
321                         bits |= IP_FW_TCPOPT_WINDOW;
322                         break;
323
324                 case TCPOPT_SACK_PERMITTED:
325                 case TCPOPT_SACK:
326                         bits |= IP_FW_TCPOPT_SACK;
327                         break;
328
329                 case TCPOPT_TIMESTAMP:
330                         bits |= IP_FW_TCPOPT_TS;
331                         break;
332
333                 }
334         }
335         return (flags_match(cmd, bits));
336 }
337
338 static int
339 iface_match(struct ifnet *ifp, ipfw_insn_if *cmd)
340 {
341         if (ifp == NULL)        /* no iface with this packet, match fails */
342                 return 0;
343         /* Check by name or by IP address */
344         if (cmd->name[0] != '\0') { /* match by name */
345                 /* Check name */
346                 if (cmd->p.glob) {
347                         if (fnmatch(cmd->name, ifp->if_xname, 0) == 0)
348                                 return(1);
349                 } else {
350                         if (strncmp(ifp->if_xname, cmd->name, IFNAMSIZ) == 0)
351                                 return(1);
352                 }
353         } else {
354 #ifdef  __FreeBSD__     /* and OSX too ? */
355                 struct ifaddr *ia;
356
357                 if_addr_rlock(ifp);
358                 TAILQ_FOREACH(ia, &ifp->if_addrhead, ifa_link) {
359                         if (ia->ifa_addr->sa_family != AF_INET)
360                                 continue;
361                         if (cmd->p.ip.s_addr == ((struct sockaddr_in *)
362                             (ia->ifa_addr))->sin_addr.s_addr) {
363                                 if_addr_runlock(ifp);
364                                 return(1);      /* match */
365                         }
366                 }
367                 if_addr_runlock(ifp);
368 #endif /* __FreeBSD__ */
369         }
370         return(0);      /* no match, fail ... */
371 }
372
373 /*
374  * The verify_path function checks if a route to the src exists and
375  * if it is reachable via ifp (when provided).
376  * 
377  * The 'verrevpath' option checks that the interface that an IP packet
378  * arrives on is the same interface that traffic destined for the
379  * packet's source address would be routed out of.
380  * The 'versrcreach' option just checks that the source address is
381  * reachable via any route (except default) in the routing table.
382  * These two are a measure to block forged packets. This is also
383  * commonly known as "anti-spoofing" or Unicast Reverse Path
384  * Forwarding (Unicast RFP) in Cisco-ese. The name of the knobs
385  * is purposely reminiscent of the Cisco IOS command,
386  *
387  *   ip verify unicast reverse-path
388  *   ip verify unicast source reachable-via any
389  *
390  * which implements the same functionality. But note that the syntax
391  * is misleading, and the check may be performed on all IP packets
392  * whether unicast, multicast, or broadcast.
393  */
394 static int
395 verify_path(struct in_addr src, struct ifnet *ifp, u_int fib)
396 {
397 #ifndef __FreeBSD__
398         return 0;
399 #else
400         struct route ro;
401         struct sockaddr_in *dst;
402
403         bzero(&ro, sizeof(ro));
404
405         dst = (struct sockaddr_in *)&(ro.ro_dst);
406         dst->sin_family = AF_INET;
407         dst->sin_len = sizeof(*dst);
408         dst->sin_addr = src;
409         in_rtalloc_ign(&ro, 0, fib);
410
411         if (ro.ro_rt == NULL)
412                 return 0;
413
414         /*
415          * If ifp is provided, check for equality with rtentry.
416          * We should use rt->rt_ifa->ifa_ifp, instead of rt->rt_ifp,
417          * in order to pass packets injected back by if_simloop():
418          * if useloopback == 1 routing entry (via lo0) for our own address
419          * may exist, so we need to handle routing assymetry.
420          */
421         if (ifp != NULL && ro.ro_rt->rt_ifa->ifa_ifp != ifp) {
422                 RTFREE(ro.ro_rt);
423                 return 0;
424         }
425
426         /* if no ifp provided, check if rtentry is not default route */
427         if (ifp == NULL &&
428              satosin(rt_key(ro.ro_rt))->sin_addr.s_addr == INADDR_ANY) {
429                 RTFREE(ro.ro_rt);
430                 return 0;
431         }
432
433         /* or if this is a blackhole/reject route */
434         if (ifp == NULL && ro.ro_rt->rt_flags & (RTF_REJECT|RTF_BLACKHOLE)) {
435                 RTFREE(ro.ro_rt);
436                 return 0;
437         }
438
439         /* found valid route */
440         RTFREE(ro.ro_rt);
441         return 1;
442 #endif /* __FreeBSD__ */
443 }
444
445 #ifdef INET6
446 /*
447  * ipv6 specific rules here...
448  */
449 static __inline int
450 icmp6type_match (int type, ipfw_insn_u32 *cmd)
451 {
452         return (type <= ICMP6_MAXTYPE && (cmd->d[type/32] & (1<<(type%32)) ) );
453 }
454
455 static int
456 flow6id_match( int curr_flow, ipfw_insn_u32 *cmd )
457 {
458         int i;
459         for (i=0; i <= cmd->o.arg1; ++i )
460                 if (curr_flow == cmd->d[i] )
461                         return 1;
462         return 0;
463 }
464
465 /* support for IP6_*_ME opcodes */
466 static int
467 search_ip6_addr_net (struct in6_addr * ip6_addr)
468 {
469         struct ifnet *mdc;
470         struct ifaddr *mdc2;
471         struct in6_ifaddr *fdm;
472         struct in6_addr copia;
473
474         TAILQ_FOREACH(mdc, &V_ifnet, if_link) {
475                 if_addr_rlock(mdc);
476                 TAILQ_FOREACH(mdc2, &mdc->if_addrhead, ifa_link) {
477                         if (mdc2->ifa_addr->sa_family == AF_INET6) {
478                                 fdm = (struct in6_ifaddr *)mdc2;
479                                 copia = fdm->ia_addr.sin6_addr;
480                                 /* need for leaving scope_id in the sock_addr */
481                                 in6_clearscope(&copia);
482                                 if (IN6_ARE_ADDR_EQUAL(ip6_addr, &copia)) {
483                                         if_addr_runlock(mdc);
484                                         return 1;
485                                 }
486                         }
487                 }
488                 if_addr_runlock(mdc);
489         }
490         return 0;
491 }
492
493 static int
494 verify_path6(struct in6_addr *src, struct ifnet *ifp)
495 {
496         struct route_in6 ro;
497         struct sockaddr_in6 *dst;
498
499         bzero(&ro, sizeof(ro));
500
501         dst = (struct sockaddr_in6 * )&(ro.ro_dst);
502         dst->sin6_family = AF_INET6;
503         dst->sin6_len = sizeof(*dst);
504         dst->sin6_addr = *src;
505         /* XXX MRT 0 for ipv6 at this time */
506         rtalloc_ign((struct route *)&ro, 0);
507
508         if (ro.ro_rt == NULL)
509                 return 0;
510
511         /* 
512          * if ifp is provided, check for equality with rtentry
513          * We should use rt->rt_ifa->ifa_ifp, instead of rt->rt_ifp,
514          * to support the case of sending packets to an address of our own.
515          * (where the former interface is the first argument of if_simloop()
516          *  (=ifp), the latter is lo0)
517          */
518         if (ifp != NULL && ro.ro_rt->rt_ifa->ifa_ifp != ifp) {
519                 RTFREE(ro.ro_rt);
520                 return 0;
521         }
522
523         /* if no ifp provided, check if rtentry is not default route */
524         if (ifp == NULL &&
525             IN6_IS_ADDR_UNSPECIFIED(&satosin6(rt_key(ro.ro_rt))->sin6_addr)) {
526                 RTFREE(ro.ro_rt);
527                 return 0;
528         }
529
530         /* or if this is a blackhole/reject route */
531         if (ifp == NULL && ro.ro_rt->rt_flags & (RTF_REJECT|RTF_BLACKHOLE)) {
532                 RTFREE(ro.ro_rt);
533                 return 0;
534         }
535
536         /* found valid route */
537         RTFREE(ro.ro_rt);
538         return 1;
539
540 }
541
542 static int
543 is_icmp6_query(int icmp6_type)
544 {
545         if ((icmp6_type <= ICMP6_MAXTYPE) &&
546             (icmp6_type == ICMP6_ECHO_REQUEST ||
547             icmp6_type == ICMP6_MEMBERSHIP_QUERY ||
548             icmp6_type == ICMP6_WRUREQUEST ||
549             icmp6_type == ICMP6_FQDN_QUERY ||
550             icmp6_type == ICMP6_NI_QUERY))
551                 return (1);
552
553         return (0);
554 }
555
556 static void
557 send_reject6(struct ip_fw_args *args, int code, u_int hlen, struct ip6_hdr *ip6)
558 {
559         struct mbuf *m;
560
561         m = args->m;
562         if (code == ICMP6_UNREACH_RST && args->f_id.proto == IPPROTO_TCP) {
563                 struct tcphdr *tcp;
564                 tcp = (struct tcphdr *)((char *)ip6 + hlen);
565
566                 if ((tcp->th_flags & TH_RST) == 0) {
567                         struct mbuf *m0;
568                         m0 = ipfw_send_pkt(args->m, &(args->f_id),
569                             ntohl(tcp->th_seq), ntohl(tcp->th_ack),
570                             tcp->th_flags | TH_RST);
571                         if (m0 != NULL)
572                                 ip6_output(m0, NULL, NULL, 0, NULL, NULL,
573                                     NULL);
574                 }
575                 FREE_PKT(m);
576         } else if (code != ICMP6_UNREACH_RST) { /* Send an ICMPv6 unreach. */
577 #if 0
578                 /*
579                  * Unlike above, the mbufs need to line up with the ip6 hdr,
580                  * as the contents are read. We need to m_adj() the
581                  * needed amount.
582                  * The mbuf will however be thrown away so we can adjust it.
583                  * Remember we did an m_pullup on it already so we
584                  * can make some assumptions about contiguousness.
585                  */
586                 if (args->L3offset)
587                         m_adj(m, args->L3offset);
588 #endif
589                 icmp6_error(m, ICMP6_DST_UNREACH, code, 0);
590         } else
591                 FREE_PKT(m);
592
593         args->m = NULL;
594 }
595
596 #endif /* INET6 */
597
598
599 /*
600  * sends a reject message, consuming the mbuf passed as an argument.
601  */
602 static void
603 send_reject(struct ip_fw_args *args, int code, int iplen, struct ip *ip)
604 {
605
606 #if 0
607         /* XXX When ip is not guaranteed to be at mtod() we will
608          * need to account for this */
609          * The mbuf will however be thrown away so we can adjust it.
610          * Remember we did an m_pullup on it already so we
611          * can make some assumptions about contiguousness.
612          */
613         if (args->L3offset)
614                 m_adj(m, args->L3offset);
615 #endif
616         if (code != ICMP_REJECT_RST) { /* Send an ICMP unreach */
617                 /* We need the IP header in host order for icmp_error(). */
618                 SET_HOST_IPLEN(ip);
619                 icmp_error(args->m, ICMP_UNREACH, code, 0L, 0);
620         } else if (args->f_id.proto == IPPROTO_TCP) {
621                 struct tcphdr *const tcp =
622                     L3HDR(struct tcphdr, mtod(args->m, struct ip *));
623                 if ( (tcp->th_flags & TH_RST) == 0) {
624                         struct mbuf *m;
625                         m = ipfw_send_pkt(args->m, &(args->f_id),
626                                 ntohl(tcp->th_seq), ntohl(tcp->th_ack),
627                                 tcp->th_flags | TH_RST);
628                         if (m != NULL)
629                                 ip_output(m, NULL, NULL, 0, NULL, NULL);
630                 }
631                 FREE_PKT(args->m);
632         } else
633                 FREE_PKT(args->m);
634         args->m = NULL;
635 }
636
637 /*
638  * Support for uid/gid/jail lookup. These tests are expensive
639  * (because we may need to look into the list of active sockets)
640  * so we cache the results. ugid_lookupp is 0 if we have not
641  * yet done a lookup, 1 if we succeeded, and -1 if we tried
642  * and failed. The function always returns the match value.
643  * We could actually spare the variable and use *uc, setting
644  * it to '(void *)check_uidgid if we have no info, NULL if
645  * we tried and failed, or any other value if successful.
646  */
647 static int
648 check_uidgid(ipfw_insn_u32 *insn, int proto, struct ifnet *oif,
649     struct in_addr dst_ip, u_int16_t dst_port, struct in_addr src_ip,
650     u_int16_t src_port, int *ugid_lookupp,
651     struct ucred **uc, struct inpcb *inp)
652 {
653 #ifndef __FreeBSD__
654         return cred_check(insn, proto, oif,
655             dst_ip, dst_port, src_ip, src_port,
656             (struct bsd_ucred *)uc, ugid_lookupp, ((struct mbuf *)inp)->m_skb);
657 #else  /* FreeBSD */
658         struct inpcbinfo *pi;
659         int wildcard;
660         struct inpcb *pcb;
661         int match;
662
663         /*
664          * Check to see if the UDP or TCP stack supplied us with
665          * the PCB. If so, rather then holding a lock and looking
666          * up the PCB, we can use the one that was supplied.
667          */
668         if (inp && *ugid_lookupp == 0) {
669                 INP_LOCK_ASSERT(inp);
670                 if (inp->inp_socket != NULL) {
671                         *uc = crhold(inp->inp_cred);
672                         *ugid_lookupp = 1;
673                 } else
674                         *ugid_lookupp = -1;
675         }
676         /*
677          * If we have already been here and the packet has no
678          * PCB entry associated with it, then we can safely
679          * assume that this is a no match.
680          */
681         if (*ugid_lookupp == -1)
682                 return (0);
683         if (proto == IPPROTO_TCP) {
684                 wildcard = 0;
685                 pi = &V_tcbinfo;
686         } else if (proto == IPPROTO_UDP) {
687                 wildcard = INPLOOKUP_WILDCARD;
688                 pi = &V_udbinfo;
689         } else
690                 return 0;
691         match = 0;
692         if (*ugid_lookupp == 0) {
693                 INP_INFO_RLOCK(pi);
694                 pcb =  (oif) ?
695                         in_pcblookup_hash(pi,
696                                 dst_ip, htons(dst_port),
697                                 src_ip, htons(src_port),
698                                 wildcard, oif) :
699                         in_pcblookup_hash(pi,
700                                 src_ip, htons(src_port),
701                                 dst_ip, htons(dst_port),
702                                 wildcard, NULL);
703                 if (pcb != NULL) {
704                         *uc = crhold(pcb->inp_cred);
705                         *ugid_lookupp = 1;
706                 }
707                 INP_INFO_RUNLOCK(pi);
708                 if (*ugid_lookupp == 0) {
709                         /*
710                          * We tried and failed, set the variable to -1
711                          * so we will not try again on this packet.
712                          */
713                         *ugid_lookupp = -1;
714                         return (0);
715                 }
716         } 
717         if (insn->o.opcode == O_UID)
718                 match = ((*uc)->cr_uid == (uid_t)insn->d[0]);
719         else if (insn->o.opcode == O_GID)
720                 match = groupmember((gid_t)insn->d[0], *uc);
721         else if (insn->o.opcode == O_JAIL)
722                 match = ((*uc)->cr_prison->pr_id == (int)insn->d[0]);
723         return match;
724 #endif /* __FreeBSD__ */
725 }
726
727 /*
728  * Helper function to set args with info on the rule after the matching
729  * one. slot is precise, whereas we guess rule_id as they are
730  * assigned sequentially.
731  */
732 static inline void
733 set_match(struct ip_fw_args *args, int slot,
734         struct ip_fw_chain *chain)
735 {
736         args->rule.chain_id = chain->id;
737         args->rule.slot = slot + 1; /* we use 0 as a marker */
738         args->rule.rule_id = 1 + chain->map[slot]->id;
739         args->rule.rulenum = chain->map[slot]->rulenum;
740 }
741
742 /*
743  * The main check routine for the firewall.
744  *
745  * All arguments are in args so we can modify them and return them
746  * back to the caller.
747  *
748  * Parameters:
749  *
750  *      args->m (in/out) The packet; we set to NULL when/if we nuke it.
751  *              Starts with the IP header.
752  *      args->eh (in)   Mac header if present, NULL for layer3 packet.
753  *      args->L3offset  Number of bytes bypassed if we came from L2.
754  *                      e.g. often sizeof(eh)  ** NOTYET **
755  *      args->oif       Outgoing interface, NULL if packet is incoming.
756  *              The incoming interface is in the mbuf. (in)
757  *      args->divert_rule (in/out)
758  *              Skip up to the first rule past this rule number;
759  *              upon return, non-zero port number for divert or tee.
760  *
761  *      args->rule      Pointer to the last matching rule (in/out)
762  *      args->next_hop  Socket we are forwarding to (out).
763  *      args->f_id      Addresses grabbed from the packet (out)
764  *      args->rule.info a cookie depending on rule action
765  *
766  * Return value:
767  *
768  *      IP_FW_PASS      the packet must be accepted
769  *      IP_FW_DENY      the packet must be dropped
770  *      IP_FW_DIVERT    divert packet, port in m_tag
771  *      IP_FW_TEE       tee packet, port in m_tag
772  *      IP_FW_DUMMYNET  to dummynet, pipe in args->cookie
773  *      IP_FW_NETGRAPH  into netgraph, cookie args->cookie
774  *              args->rule contains the matching rule,
775  *              args->rule.info has additional information.
776  *
777  */
778 int
779 ipfw_chk(struct ip_fw_args *args)
780 {
781
782         /*
783          * Local variables holding state while processing a packet:
784          *
785          * IMPORTANT NOTE: to speed up the processing of rules, there
786          * are some assumption on the values of the variables, which
787          * are documented here. Should you change them, please check
788          * the implementation of the various instructions to make sure
789          * that they still work.
790          *
791          * args->eh     The MAC header. It is non-null for a layer2
792          *      packet, it is NULL for a layer-3 packet.
793          * **notyet**
794          * args->L3offset Offset in the packet to the L3 (IP or equiv.) header.
795          *
796          * m | args->m  Pointer to the mbuf, as received from the caller.
797          *      It may change if ipfw_chk() does an m_pullup, or if it
798          *      consumes the packet because it calls send_reject().
799          *      XXX This has to change, so that ipfw_chk() never modifies
800          *      or consumes the buffer.
801          * ip   is the beginning of the ip(4 or 6) header.
802          *      Calculated by adding the L3offset to the start of data.
803          *      (Until we start using L3offset, the packet is
804          *      supposed to start with the ip header).
805          */
806         struct mbuf *m = args->m;
807         struct ip *ip = mtod(m, struct ip *);
808
809         /*
810          * For rules which contain uid/gid or jail constraints, cache
811          * a copy of the users credentials after the pcb lookup has been
812          * executed. This will speed up the processing of rules with
813          * these types of constraints, as well as decrease contention
814          * on pcb related locks.
815          */
816 #ifndef __FreeBSD__
817         struct bsd_ucred ucred_cache;
818 #else
819         struct ucred *ucred_cache = NULL;
820 #endif
821         int ucred_lookup = 0;
822
823         /*
824          * oif | args->oif      If NULL, ipfw_chk has been called on the
825          *      inbound path (ether_input, ip_input).
826          *      If non-NULL, ipfw_chk has been called on the outbound path
827          *      (ether_output, ip_output).
828          */
829         struct ifnet *oif = args->oif;
830
831         int f_pos = 0;          /* index of current rule in the array */
832         int retval = 0;
833
834         /*
835          * hlen The length of the IP header.
836          */
837         u_int hlen = 0;         /* hlen >0 means we have an IP pkt */
838
839         /*
840          * offset       The offset of a fragment. offset != 0 means that
841          *      we have a fragment at this offset of an IPv4 packet.
842          *      offset == 0 means that (if this is an IPv4 packet)
843          *      this is the first or only fragment.
844          *      For IPv6 offset == 0 means there is no Fragment Header. 
845          *      If offset != 0 for IPv6 always use correct mask to
846          *      get the correct offset because we add IP6F_MORE_FRAG
847          *      to be able to dectect the first fragment which would
848          *      otherwise have offset = 0.
849          */
850         u_short offset = 0;
851
852         /*
853          * Local copies of addresses. They are only valid if we have
854          * an IP packet.
855          *
856          * proto        The protocol. Set to 0 for non-ip packets,
857          *      or to the protocol read from the packet otherwise.
858          *      proto != 0 means that we have an IPv4 packet.
859          *
860          * src_port, dst_port   port numbers, in HOST format. Only
861          *      valid for TCP and UDP packets.
862          *
863          * src_ip, dst_ip       ip addresses, in NETWORK format.
864          *      Only valid for IPv4 packets.
865          */
866         uint8_t proto;
867         uint16_t src_port = 0, dst_port = 0;    /* NOTE: host format    */
868         struct in_addr src_ip, dst_ip;          /* NOTE: network format */
869         uint16_t iplen=0;
870         int pktlen;
871         uint16_t        etype = 0;      /* Host order stored ether type */
872
873         /*
874          * dyn_dir = MATCH_UNKNOWN when rules unchecked,
875          *      MATCH_NONE when checked and not matched (q = NULL),
876          *      MATCH_FORWARD or MATCH_REVERSE otherwise (q != NULL)
877          */
878         int dyn_dir = MATCH_UNKNOWN;
879         ipfw_dyn_rule *q = NULL;
880         struct ip_fw_chain *chain = &V_layer3_chain;
881
882         /*
883          * We store in ulp a pointer to the upper layer protocol header.
884          * In the ipv4 case this is easy to determine from the header,
885          * but for ipv6 we might have some additional headers in the middle.
886          * ulp is NULL if not found.
887          */
888         void *ulp = NULL;               /* upper layer protocol pointer. */
889
890         /* XXX ipv6 variables */
891         int is_ipv6 = 0;
892         uint8_t icmp6_type = 0;
893         uint16_t ext_hd = 0;    /* bits vector for extension header filtering */
894         /* end of ipv6 variables */
895
896         int is_ipv4 = 0;
897
898         int done = 0;           /* flag to exit the outer loop */
899
900         if (m->m_flags & M_SKIP_FIREWALL || (! V_ipfw_vnet_ready))
901                 return (IP_FW_PASS);    /* accept */
902
903         dst_ip.s_addr = 0;              /* make sure it is initialized */
904         src_ip.s_addr = 0;              /* make sure it is initialized */
905         pktlen = m->m_pkthdr.len;
906         args->f_id.fib = M_GETFIB(m); /* note mbuf not altered) */
907         proto = args->f_id.proto = 0;   /* mark f_id invalid */
908                 /* XXX 0 is a valid proto: IP/IPv6 Hop-by-Hop Option */
909
910 /*
911  * PULLUP_TO(len, p, T) makes sure that len + sizeof(T) is contiguous,
912  * then it sets p to point at the offset "len" in the mbuf. WARNING: the
913  * pointer might become stale after other pullups (but we never use it
914  * this way).
915  */
916 #define PULLUP_TO(_len, p, T)   PULLUP_LEN(_len, p, sizeof(T))
917 #define PULLUP_LEN(_len, p, T)                                  \
918 do {                                                            \
919         int x = (_len) + T;                                     \
920         if ((m)->m_len < x) {                                   \
921                 args->m = m = m_pullup(m, x);                   \
922                 if (m == NULL)                                  \
923                         goto pullup_failed;                     \
924         }                                                       \
925         p = (mtod(m, char *) + (_len));                         \
926 } while (0)
927
928         /*
929          * if we have an ether header,
930          */
931         if (args->eh)
932                 etype = ntohs(args->eh->ether_type);
933
934         /* Identify IP packets and fill up variables. */
935         if (pktlen >= sizeof(struct ip6_hdr) &&
936             (args->eh == NULL || etype == ETHERTYPE_IPV6) && ip->ip_v == 6) {
937                 struct ip6_hdr *ip6 = (struct ip6_hdr *)ip;
938                 is_ipv6 = 1;
939                 args->f_id.addr_type = 6;
940                 hlen = sizeof(struct ip6_hdr);
941                 proto = ip6->ip6_nxt;
942
943                 /* Search extension headers to find upper layer protocols */
944                 while (ulp == NULL) {
945                         switch (proto) {
946                         case IPPROTO_ICMPV6:
947                                 PULLUP_TO(hlen, ulp, struct icmp6_hdr);
948                                 icmp6_type = ICMP6(ulp)->icmp6_type;
949                                 break;
950
951                         case IPPROTO_TCP:
952                                 PULLUP_TO(hlen, ulp, struct tcphdr);
953                                 dst_port = TCP(ulp)->th_dport;
954                                 src_port = TCP(ulp)->th_sport;
955                                 /* save flags for dynamic rules */
956                                 args->f_id._flags = TCP(ulp)->th_flags;
957                                 break;
958
959                         case IPPROTO_SCTP:
960                                 PULLUP_TO(hlen, ulp, struct sctphdr);
961                                 src_port = SCTP(ulp)->src_port;
962                                 dst_port = SCTP(ulp)->dest_port;
963                                 break;
964
965                         case IPPROTO_UDP:
966                                 PULLUP_TO(hlen, ulp, struct udphdr);
967                                 dst_port = UDP(ulp)->uh_dport;
968                                 src_port = UDP(ulp)->uh_sport;
969                                 break;
970
971                         case IPPROTO_HOPOPTS:   /* RFC 2460 */
972                                 PULLUP_TO(hlen, ulp, struct ip6_hbh);
973                                 ext_hd |= EXT_HOPOPTS;
974                                 hlen += (((struct ip6_hbh *)ulp)->ip6h_len + 1) << 3;
975                                 proto = ((struct ip6_hbh *)ulp)->ip6h_nxt;
976                                 ulp = NULL;
977                                 break;
978
979                         case IPPROTO_ROUTING:   /* RFC 2460 */
980                                 PULLUP_TO(hlen, ulp, struct ip6_rthdr);
981                                 switch (((struct ip6_rthdr *)ulp)->ip6r_type) {
982                                 case 0:
983                                         ext_hd |= EXT_RTHDR0;
984                                         break;
985                                 case 2:
986                                         ext_hd |= EXT_RTHDR2;
987                                         break;
988                                 default:
989                                         printf("IPFW2: IPV6 - Unknown Routing "
990                                             "Header type(%d)\n",
991                                             ((struct ip6_rthdr *)ulp)->ip6r_type);
992                                         if (V_fw_deny_unknown_exthdrs)
993                                             return (IP_FW_DENY);
994                                         break;
995                                 }
996                                 ext_hd |= EXT_ROUTING;
997                                 hlen += (((struct ip6_rthdr *)ulp)->ip6r_len + 1) << 3;
998                                 proto = ((struct ip6_rthdr *)ulp)->ip6r_nxt;
999                                 ulp = NULL;
1000                                 break;
1001
1002                         case IPPROTO_FRAGMENT:  /* RFC 2460 */
1003                                 PULLUP_TO(hlen, ulp, struct ip6_frag);
1004                                 ext_hd |= EXT_FRAGMENT;
1005                                 hlen += sizeof (struct ip6_frag);
1006                                 proto = ((struct ip6_frag *)ulp)->ip6f_nxt;
1007                                 offset = ((struct ip6_frag *)ulp)->ip6f_offlg &
1008                                         IP6F_OFF_MASK;
1009                                 /* Add IP6F_MORE_FRAG for offset of first
1010                                  * fragment to be != 0. */
1011                                 offset |= ((struct ip6_frag *)ulp)->ip6f_offlg &
1012                                         IP6F_MORE_FRAG;
1013                                 if (offset == 0) {
1014                                         printf("IPFW2: IPV6 - Invalid Fragment "
1015                                             "Header\n");
1016                                         if (V_fw_deny_unknown_exthdrs)
1017                                             return (IP_FW_DENY);
1018                                         break;
1019                                 }
1020                                 args->f_id.extra =
1021                                     ntohl(((struct ip6_frag *)ulp)->ip6f_ident);
1022                                 ulp = NULL;
1023                                 break;
1024
1025                         case IPPROTO_DSTOPTS:   /* RFC 2460 */
1026                                 PULLUP_TO(hlen, ulp, struct ip6_hbh);
1027                                 ext_hd |= EXT_DSTOPTS;
1028                                 hlen += (((struct ip6_hbh *)ulp)->ip6h_len + 1) << 3;
1029                                 proto = ((struct ip6_hbh *)ulp)->ip6h_nxt;
1030                                 ulp = NULL;
1031                                 break;
1032
1033                         case IPPROTO_AH:        /* RFC 2402 */
1034                                 PULLUP_TO(hlen, ulp, struct ip6_ext);
1035                                 ext_hd |= EXT_AH;
1036                                 hlen += (((struct ip6_ext *)ulp)->ip6e_len + 2) << 2;
1037                                 proto = ((struct ip6_ext *)ulp)->ip6e_nxt;
1038                                 ulp = NULL;
1039                                 break;
1040
1041                         case IPPROTO_ESP:       /* RFC 2406 */
1042                                 PULLUP_TO(hlen, ulp, uint32_t); /* SPI, Seq# */
1043                                 /* Anything past Seq# is variable length and
1044                                  * data past this ext. header is encrypted. */
1045                                 ext_hd |= EXT_ESP;
1046                                 break;
1047
1048                         case IPPROTO_NONE:      /* RFC 2460 */
1049                                 /*
1050                                  * Packet ends here, and IPv6 header has
1051                                  * already been pulled up. If ip6e_len!=0
1052                                  * then octets must be ignored.
1053                                  */
1054                                 ulp = ip; /* non-NULL to get out of loop. */
1055                                 break;
1056
1057                         case IPPROTO_OSPFIGP:
1058                                 /* XXX OSPF header check? */
1059                                 PULLUP_TO(hlen, ulp, struct ip6_ext);
1060                                 break;
1061
1062                         case IPPROTO_PIM:
1063                                 /* XXX PIM header check? */
1064                                 PULLUP_TO(hlen, ulp, struct pim);
1065                                 break;
1066
1067                         case IPPROTO_CARP:
1068                                 PULLUP_TO(hlen, ulp, struct carp_header);
1069                                 if (((struct carp_header *)ulp)->carp_version !=
1070                                     CARP_VERSION) 
1071                                         return (IP_FW_DENY);
1072                                 if (((struct carp_header *)ulp)->carp_type !=
1073                                     CARP_ADVERTISEMENT) 
1074                                         return (IP_FW_DENY);
1075                                 break;
1076
1077                         case IPPROTO_IPV6:      /* RFC 2893 */
1078                                 PULLUP_TO(hlen, ulp, struct ip6_hdr);
1079                                 break;
1080
1081                         case IPPROTO_IPV4:      /* RFC 2893 */
1082                                 PULLUP_TO(hlen, ulp, struct ip);
1083                                 break;
1084
1085                         default:
1086                                 printf("IPFW2: IPV6 - Unknown Extension "
1087                                     "Header(%d), ext_hd=%x\n", proto, ext_hd);
1088                                 if (V_fw_deny_unknown_exthdrs)
1089                                     return (IP_FW_DENY);
1090                                 PULLUP_TO(hlen, ulp, struct ip6_ext);
1091                                 break;
1092                         } /*switch */
1093                 }
1094                 ip = mtod(m, struct ip *);
1095                 ip6 = (struct ip6_hdr *)ip;
1096                 args->f_id.src_ip6 = ip6->ip6_src;
1097                 args->f_id.dst_ip6 = ip6->ip6_dst;
1098                 args->f_id.src_ip = 0;
1099                 args->f_id.dst_ip = 0;
1100                 args->f_id.flow_id6 = ntohl(ip6->ip6_flow);
1101         } else if (pktlen >= sizeof(struct ip) &&
1102             (args->eh == NULL || etype == ETHERTYPE_IP) && ip->ip_v == 4) {
1103                 is_ipv4 = 1;
1104                 hlen = ip->ip_hl << 2;
1105                 args->f_id.addr_type = 4;
1106
1107                 /*
1108                  * Collect parameters into local variables for faster matching.
1109                  */
1110                 proto = ip->ip_p;
1111                 src_ip = ip->ip_src;
1112                 dst_ip = ip->ip_dst;
1113                 offset = ntohs(ip->ip_off) & IP_OFFMASK;
1114                 iplen = ntohs(ip->ip_len);
1115                 pktlen = iplen < pktlen ? iplen : pktlen;
1116
1117                 if (offset == 0) {
1118                         switch (proto) {
1119                         case IPPROTO_TCP:
1120                                 PULLUP_TO(hlen, ulp, struct tcphdr);
1121                                 dst_port = TCP(ulp)->th_dport;
1122                                 src_port = TCP(ulp)->th_sport;
1123                                 /* save flags for dynamic rules */
1124                                 args->f_id._flags = TCP(ulp)->th_flags;
1125                                 break;
1126
1127                         case IPPROTO_SCTP:
1128                                 PULLUP_TO(hlen, ulp, struct sctphdr);
1129                                 src_port = SCTP(ulp)->src_port;
1130                                 dst_port = SCTP(ulp)->dest_port;
1131                                 break;
1132
1133                         case IPPROTO_UDP:
1134                                 PULLUP_TO(hlen, ulp, struct udphdr);
1135                                 dst_port = UDP(ulp)->uh_dport;
1136                                 src_port = UDP(ulp)->uh_sport;
1137                                 break;
1138
1139                         case IPPROTO_ICMP:
1140                                 PULLUP_TO(hlen, ulp, struct icmphdr);
1141                                 //args->f_id.flags = ICMP(ulp)->icmp_type;
1142                                 break;
1143
1144                         default:
1145                                 break;
1146                         }
1147                 }
1148
1149                 ip = mtod(m, struct ip *);
1150                 args->f_id.src_ip = ntohl(src_ip.s_addr);
1151                 args->f_id.dst_ip = ntohl(dst_ip.s_addr);
1152         }
1153 #undef PULLUP_TO
1154         if (proto) { /* we may have port numbers, store them */
1155                 args->f_id.proto = proto;
1156                 args->f_id.src_port = src_port = ntohs(src_port);
1157                 args->f_id.dst_port = dst_port = ntohs(dst_port);
1158         }
1159
1160         IPFW_RLOCK(chain);
1161         if (! V_ipfw_vnet_ready) { /* shutting down, leave NOW. */
1162                 IPFW_RUNLOCK(chain);
1163                 return (IP_FW_PASS);    /* accept */
1164         }
1165         if (args->rule.slot) {
1166                 /*
1167                  * Packet has already been tagged as a result of a previous
1168                  * match on rule args->rule aka args->rule_id (PIPE, QUEUE,
1169                  * REASS, NETGRAPH, DIVERT/TEE...)
1170                  * Validate the slot and continue from the next one
1171                  * if still present, otherwise do a lookup.
1172                  */
1173                 f_pos = (args->rule.chain_id == chain->id) ?
1174                     args->rule.slot :
1175                     ipfw_find_rule(chain, args->rule.rulenum,
1176                         args->rule.rule_id);
1177         } else {
1178                 f_pos = 0;
1179         }
1180
1181         /*
1182          * Now scan the rules, and parse microinstructions for each rule.
1183          * We have two nested loops and an inner switch. Sometimes we
1184          * need to break out of one or both loops, or re-enter one of
1185          * the loops with updated variables. Loop variables are:
1186          *
1187          *      f_pos (outer loop) points to the current rule.
1188          *              On output it points to the matching rule.
1189          *      done (outer loop) is used as a flag to break the loop.
1190          *      l (inner loop)  residual length of current rule.
1191          *              cmd points to the current microinstruction.
1192          *
1193          * We break the inner loop by setting l=0 and possibly
1194          * cmdlen=0 if we don't want to advance cmd.
1195          * We break the outer loop by setting done=1
1196          * We can restart the inner loop by setting l>0 and f_pos, f, cmd
1197          * as needed.
1198          */
1199         for (; f_pos < chain->n_rules; f_pos++) {
1200                 ipfw_insn *cmd;
1201                 uint32_t tablearg = 0;
1202                 int l, cmdlen, skip_or; /* skip rest of OR block */
1203                 struct ip_fw *f;
1204
1205                 f = chain->map[f_pos];
1206                 if (V_set_disable & (1 << f->set) )
1207                         continue;
1208
1209                 skip_or = 0;
1210                 for (l = f->cmd_len, cmd = f->cmd ; l > 0 ;
1211                     l -= cmdlen, cmd += cmdlen) {
1212                         int match;
1213
1214                         /*
1215                          * check_body is a jump target used when we find a
1216                          * CHECK_STATE, and need to jump to the body of
1217                          * the target rule.
1218                          */
1219
1220 /* check_body: */
1221                         cmdlen = F_LEN(cmd);
1222                         /*
1223                          * An OR block (insn_1 || .. || insn_n) has the
1224                          * F_OR bit set in all but the last instruction.
1225                          * The first match will set "skip_or", and cause
1226                          * the following instructions to be skipped until
1227                          * past the one with the F_OR bit clear.
1228                          */
1229                         if (skip_or) {          /* skip this instruction */
1230                                 if ((cmd->len & F_OR) == 0)
1231                                         skip_or = 0;    /* next one is good */
1232                                 continue;
1233                         }
1234                         match = 0; /* set to 1 if we succeed */
1235
1236                         switch (cmd->opcode) {
1237                         /*
1238                          * The first set of opcodes compares the packet's
1239                          * fields with some pattern, setting 'match' if a
1240                          * match is found. At the end of the loop there is
1241                          * logic to deal with F_NOT and F_OR flags associated
1242                          * with the opcode.
1243                          */
1244                         case O_NOP:
1245                                 match = 1;
1246                                 break;
1247
1248                         case O_FORWARD_MAC:
1249                                 printf("ipfw: opcode %d unimplemented\n",
1250                                     cmd->opcode);
1251                                 break;
1252
1253                         case O_GID:
1254                         case O_UID:
1255                         case O_JAIL:
1256                                 /*
1257                                  * We only check offset == 0 && proto != 0,
1258                                  * as this ensures that we have a
1259                                  * packet with the ports info.
1260                                  */
1261                                 if (offset!=0)
1262                                         break;
1263                                 if (is_ipv6) /* XXX to be fixed later */
1264                                         break;
1265                                 if (proto == IPPROTO_TCP ||
1266                                     proto == IPPROTO_UDP)
1267                                         match = check_uidgid(
1268                                                     (ipfw_insn_u32 *)cmd,
1269                                                     proto, oif,
1270                                                     dst_ip, dst_port,
1271                                                     src_ip, src_port, &ucred_lookup,
1272 #ifdef __FreeBSD__
1273                                                     &ucred_cache, args->inp);
1274 #else
1275                                                     (void *)&ucred_cache,
1276                                                     (struct inpcb *)args->m);
1277 #endif
1278                                 break;
1279
1280                         case O_RECV:
1281                                 match = iface_match(m->m_pkthdr.rcvif,
1282                                     (ipfw_insn_if *)cmd);
1283                                 break;
1284
1285                         case O_XMIT:
1286                                 match = iface_match(oif, (ipfw_insn_if *)cmd);
1287                                 break;
1288
1289                         case O_VIA:
1290                                 match = iface_match(oif ? oif :
1291                                     m->m_pkthdr.rcvif, (ipfw_insn_if *)cmd);
1292                                 break;
1293
1294                         case O_MACADDR2:
1295                                 if (args->eh != NULL) { /* have MAC header */
1296                                         u_int32_t *want = (u_int32_t *)
1297                                                 ((ipfw_insn_mac *)cmd)->addr;
1298                                         u_int32_t *mask = (u_int32_t *)
1299                                                 ((ipfw_insn_mac *)cmd)->mask;
1300                                         u_int32_t *hdr = (u_int32_t *)args->eh;
1301
1302                                         match =
1303                                             ( want[0] == (hdr[0] & mask[0]) &&
1304                                               want[1] == (hdr[1] & mask[1]) &&
1305                                               want[2] == (hdr[2] & mask[2]) );
1306                                 }
1307                                 break;
1308
1309                         case O_MAC_TYPE:
1310                                 if (args->eh != NULL) {
1311                                         u_int16_t *p =
1312                                             ((ipfw_insn_u16 *)cmd)->ports;
1313                                         int i;
1314
1315                                         for (i = cmdlen - 1; !match && i>0;
1316                                             i--, p += 2)
1317                                                 match = (etype >= p[0] &&
1318                                                     etype <= p[1]);
1319                                 }
1320                                 break;
1321
1322                         case O_FRAG:
1323                                 match = (offset != 0);
1324                                 break;
1325
1326                         case O_IN:      /* "out" is "not in" */
1327                                 match = (oif == NULL);
1328                                 break;
1329
1330                         case O_LAYER2:
1331                                 match = (args->eh != NULL);
1332                                 break;
1333
1334                         case O_DIVERTED:
1335                             {
1336                                 /* For diverted packets, args->rule.info
1337                                  * contains the divert port (in host format)
1338                                  * reason and direction.
1339                                  */
1340                                 uint32_t i = args->rule.info;
1341                                 match = (i&IPFW_IS_MASK) == IPFW_IS_DIVERT &&
1342                                     cmd->arg1 & ((i & IPFW_INFO_IN) ? 1 : 2);
1343                             }
1344                                 break;
1345
1346                         case O_PROTO:
1347                                 /*
1348                                  * We do not allow an arg of 0 so the
1349                                  * check of "proto" only suffices.
1350                                  */
1351                                 match = (proto == cmd->arg1);
1352                                 break;
1353
1354                         case O_IP_SRC:
1355                                 match = is_ipv4 &&
1356                                     (((ipfw_insn_ip *)cmd)->addr.s_addr ==
1357                                     src_ip.s_addr);
1358                                 break;
1359
1360                         case O_IP_SRC_LOOKUP:
1361                         case O_IP_DST_LOOKUP:
1362                                 if (is_ipv4) {
1363                                     uint32_t key =
1364                                         (cmd->opcode == O_IP_DST_LOOKUP) ?
1365                                             dst_ip.s_addr : src_ip.s_addr;
1366                                     uint32_t v = 0;
1367
1368                                     if (cmdlen > F_INSN_SIZE(ipfw_insn_u32)) {
1369                                         /* generic lookup. The key must be
1370                                          * in 32bit big-endian format.
1371                                          */
1372                                         v = ((ipfw_insn_u32 *)cmd)->d[1];
1373                                         if (v == 0)
1374                                             key = dst_ip.s_addr;
1375                                         else if (v == 1)
1376                                             key = src_ip.s_addr;
1377                                         else if (v == 6) /* dscp */
1378                                             key = (ip->ip_tos >> 2) & 0x3f;
1379                                         else if (offset != 0)
1380                                             break;
1381                                         else if (proto != IPPROTO_TCP &&
1382                                                 proto != IPPROTO_UDP)
1383                                             break;
1384                                         else if (v == 2)
1385                                             key = htonl(dst_port);
1386                                         else if (v == 3)
1387                                             key = htonl(src_port);
1388                                         else if (v == 4 || v == 5) {
1389                                             check_uidgid(
1390                                                 (ipfw_insn_u32 *)cmd,
1391                                                 proto, oif,
1392                                                 dst_ip, dst_port,
1393                                                 src_ip, src_port, &ucred_lookup,
1394 #ifdef __FreeBSD__
1395                                                 &ucred_cache, args->inp);
1396                                             if (v == 4 /* O_UID */)
1397                                                 key = ucred_cache->cr_uid;
1398                                             else if (v == 5 /* O_JAIL */)
1399                                                 key = ucred_cache->cr_prison->pr_id;
1400 #else /* !__FreeBSD__ */
1401                                                 (void *)&ucred_cache,
1402                                                 (struct inpcb *)args->m);
1403                                             if (v ==4 /* O_UID */)
1404                                                 key = ucred_cache.uid;
1405                                             else if (v == 5 /* O_JAIL */)
1406                                                 key = ucred_cache.xid;
1407 #endif /* !__FreeBSD__ */
1408                                             key = htonl(key);
1409                                         } else
1410                                             break;
1411                                     }
1412                                     match = ipfw_lookup_table(chain,
1413                                         cmd->arg1, key, &v);
1414                                     if (!match)
1415                                         break;
1416                                     if (cmdlen == F_INSN_SIZE(ipfw_insn_u32))
1417                                         match =
1418                                             ((ipfw_insn_u32 *)cmd)->d[0] == v;
1419                                     else
1420                                         tablearg = v;
1421                                 }
1422                                 break;
1423
1424                         case O_IP_SRC_MASK:
1425                         case O_IP_DST_MASK:
1426                                 if (is_ipv4) {
1427                                     uint32_t a =
1428                                         (cmd->opcode == O_IP_DST_MASK) ?
1429                                             dst_ip.s_addr : src_ip.s_addr;
1430                                     uint32_t *p = ((ipfw_insn_u32 *)cmd)->d;
1431                                     int i = cmdlen-1;
1432
1433                                     for (; !match && i>0; i-= 2, p+= 2)
1434                                         match = (p[0] == (a & p[1]));
1435                                 }
1436                                 break;
1437
1438                         case O_IP_SRC_ME:
1439                                 if (is_ipv4) {
1440                                         struct ifnet *tif;
1441
1442                                         INADDR_TO_IFP(src_ip, tif);
1443                                         match = (tif != NULL);
1444                                         break;
1445                                 }
1446 #ifdef INET6
1447                                 /* FALLTHROUGH */
1448                         case O_IP6_SRC_ME:
1449                                 match= is_ipv6 && search_ip6_addr_net(&args->f_id.src_ip6);
1450 #endif
1451                                 break;
1452
1453                         case O_IP_DST_SET:
1454                         case O_IP_SRC_SET:
1455                                 if (is_ipv4) {
1456                                         u_int32_t *d = (u_int32_t *)(cmd+1);
1457                                         u_int32_t addr =
1458                                             cmd->opcode == O_IP_DST_SET ?
1459                                                 args->f_id.dst_ip :
1460                                                 args->f_id.src_ip;
1461
1462                                             if (addr < d[0])
1463                                                     break;
1464                                             addr -= d[0]; /* subtract base */
1465                                             match = (addr < cmd->arg1) &&
1466                                                 ( d[ 1 + (addr>>5)] &
1467                                                   (1<<(addr & 0x1f)) );
1468                                 }
1469                                 break;
1470
1471                         case O_IP_DST:
1472                                 match = is_ipv4 &&
1473                                     (((ipfw_insn_ip *)cmd)->addr.s_addr ==
1474                                     dst_ip.s_addr);
1475                                 break;
1476
1477                         case O_IP_DST_ME:
1478                                 if (is_ipv4) {
1479                                         struct ifnet *tif;
1480
1481                                         INADDR_TO_IFP(dst_ip, tif);
1482                                         match = (tif != NULL);
1483                                         break;
1484                                 }
1485 #ifdef INET6
1486                                 /* FALLTHROUGH */
1487                         case O_IP6_DST_ME:
1488                                 match= is_ipv6 && search_ip6_addr_net(&args->f_id.dst_ip6);
1489 #endif
1490                                 break;
1491
1492
1493                         case O_IP_SRCPORT:
1494                         case O_IP_DSTPORT:
1495                                 /*
1496                                  * offset == 0 && proto != 0 is enough
1497                                  * to guarantee that we have a
1498                                  * packet with port info.
1499                                  */
1500                                 if ((proto==IPPROTO_UDP || proto==IPPROTO_TCP)
1501                                     && offset == 0) {
1502                                         u_int16_t x =
1503                                             (cmd->opcode == O_IP_SRCPORT) ?
1504                                                 src_port : dst_port ;
1505                                         u_int16_t *p =
1506                                             ((ipfw_insn_u16 *)cmd)->ports;
1507                                         int i;
1508
1509                                         for (i = cmdlen - 1; !match && i>0;
1510                                             i--, p += 2)
1511                                                 match = (x>=p[0] && x<=p[1]);
1512                                 }
1513                                 break;
1514
1515                         case O_ICMPTYPE:
1516                                 match = (offset == 0 && proto==IPPROTO_ICMP &&
1517                                     icmptype_match(ICMP(ulp), (ipfw_insn_u32 *)cmd) );
1518                                 break;
1519
1520 #ifdef INET6
1521                         case O_ICMP6TYPE:
1522                                 match = is_ipv6 && offset == 0 &&
1523                                     proto==IPPROTO_ICMPV6 &&
1524                                     icmp6type_match(
1525                                         ICMP6(ulp)->icmp6_type,
1526                                         (ipfw_insn_u32 *)cmd);
1527                                 break;
1528 #endif /* INET6 */
1529
1530                         case O_IPOPT:
1531                                 match = (is_ipv4 &&
1532                                     ipopts_match(ip, cmd) );
1533                                 break;
1534
1535                         case O_IPVER:
1536                                 match = (is_ipv4 &&
1537                                     cmd->arg1 == ip->ip_v);
1538                                 break;
1539
1540                         case O_IPID:
1541                         case O_IPLEN:
1542                         case O_IPTTL:
1543                                 if (is_ipv4) {  /* only for IP packets */
1544                                     uint16_t x;
1545                                     uint16_t *p;
1546                                     int i;
1547
1548                                     if (cmd->opcode == O_IPLEN)
1549                                         x = iplen;
1550                                     else if (cmd->opcode == O_IPTTL)
1551                                         x = ip->ip_ttl;
1552                                     else /* must be IPID */
1553                                         x = ntohs(ip->ip_id);
1554                                     if (cmdlen == 1) {
1555                                         match = (cmd->arg1 == x);
1556                                         break;
1557                                     }
1558                                     /* otherwise we have ranges */
1559                                     p = ((ipfw_insn_u16 *)cmd)->ports;
1560                                     i = cmdlen - 1;
1561                                     for (; !match && i>0; i--, p += 2)
1562                                         match = (x >= p[0] && x <= p[1]);
1563                                 }
1564                                 break;
1565
1566                         case O_IPPRECEDENCE:
1567                                 match = (is_ipv4 &&
1568                                     (cmd->arg1 == (ip->ip_tos & 0xe0)) );
1569                                 break;
1570
1571                         case O_IPTOS:
1572                                 match = (is_ipv4 &&
1573                                     flags_match(cmd, ip->ip_tos));
1574                                 break;
1575
1576                         case O_TCPDATALEN:
1577                                 if (proto == IPPROTO_TCP && offset == 0) {
1578                                     struct tcphdr *tcp;
1579                                     uint16_t x;
1580                                     uint16_t *p;
1581                                     int i;
1582
1583                                     tcp = TCP(ulp);
1584                                     x = iplen -
1585                                         ((ip->ip_hl + tcp->th_off) << 2);
1586                                     if (cmdlen == 1) {
1587                                         match = (cmd->arg1 == x);
1588                                         break;
1589                                     }
1590                                     /* otherwise we have ranges */
1591                                     p = ((ipfw_insn_u16 *)cmd)->ports;
1592                                     i = cmdlen - 1;
1593                                     for (; !match && i>0; i--, p += 2)
1594                                         match = (x >= p[0] && x <= p[1]);
1595                                 }
1596                                 break;
1597
1598                         case O_TCPFLAGS:
1599                                 match = (proto == IPPROTO_TCP && offset == 0 &&
1600                                     flags_match(cmd, TCP(ulp)->th_flags));
1601                                 break;
1602
1603                         case O_TCPOPTS:
1604                                 PULLUP_LEN(hlen, ulp, (TCP(ulp)->th_off << 2));
1605                                 match = (proto == IPPROTO_TCP && offset == 0 &&
1606                                     tcpopts_match(TCP(ulp), cmd));
1607                                 break;
1608
1609                         case O_TCPSEQ:
1610                                 match = (proto == IPPROTO_TCP && offset == 0 &&
1611                                     ((ipfw_insn_u32 *)cmd)->d[0] ==
1612                                         TCP(ulp)->th_seq);
1613                                 break;
1614
1615                         case O_TCPACK:
1616                                 match = (proto == IPPROTO_TCP && offset == 0 &&
1617                                     ((ipfw_insn_u32 *)cmd)->d[0] ==
1618                                         TCP(ulp)->th_ack);
1619                                 break;
1620
1621                         case O_TCPWIN:
1622                                 match = (proto == IPPROTO_TCP && offset == 0 &&
1623                                     cmd->arg1 == TCP(ulp)->th_win);
1624                                 break;
1625
1626                         case O_ESTAB:
1627                                 /* reject packets which have SYN only */
1628                                 /* XXX should i also check for TH_ACK ? */
1629                                 match = (proto == IPPROTO_TCP && offset == 0 &&
1630                                     (TCP(ulp)->th_flags &
1631                                      (TH_RST | TH_ACK | TH_SYN)) != TH_SYN);
1632                                 break;
1633
1634                         case O_ALTQ: {
1635                                 struct pf_mtag *at;
1636                                 ipfw_insn_altq *altq = (ipfw_insn_altq *)cmd;
1637
1638                                 match = 1;
1639                                 at = pf_find_mtag(m);
1640                                 if (at != NULL && at->qid != 0)
1641                                         break;
1642                                 at = pf_get_mtag(m);
1643                                 if (at == NULL) {
1644                                         /*
1645                                          * Let the packet fall back to the
1646                                          * default ALTQ.
1647                                          */
1648                                         break;
1649                                 }
1650                                 at->qid = altq->qid;
1651                                 if (is_ipv4)
1652                                         at->af = AF_INET;
1653                                 else
1654                                         at->af = AF_LINK;
1655                                 at->hdr = ip;
1656                                 break;
1657                         }
1658
1659                         case O_LOG:
1660                                 ipfw_log(f, hlen, args, m,
1661                                             oif, offset, tablearg, ip);
1662                                 match = 1;
1663                                 break;
1664
1665                         case O_PROB:
1666                                 match = (random()<((ipfw_insn_u32 *)cmd)->d[0]);
1667                                 break;
1668
1669                         case O_VERREVPATH:
1670                                 /* Outgoing packets automatically pass/match */
1671                                 match = ((oif != NULL) ||
1672                                     (m->m_pkthdr.rcvif == NULL) ||
1673                                     (
1674 #ifdef INET6
1675                                     is_ipv6 ?
1676                                         verify_path6(&(args->f_id.src_ip6),
1677                                             m->m_pkthdr.rcvif) :
1678 #endif
1679                                     verify_path(src_ip, m->m_pkthdr.rcvif,
1680                                         args->f_id.fib)));
1681                                 break;
1682
1683                         case O_VERSRCREACH:
1684                                 /* Outgoing packets automatically pass/match */
1685                                 match = (hlen > 0 && ((oif != NULL) ||
1686 #ifdef INET6
1687                                     is_ipv6 ?
1688                                         verify_path6(&(args->f_id.src_ip6),
1689                                             NULL) :
1690 #endif
1691                                     verify_path(src_ip, NULL, args->f_id.fib)));
1692                                 break;
1693
1694                         case O_ANTISPOOF:
1695                                 /* Outgoing packets automatically pass/match */
1696                                 if (oif == NULL && hlen > 0 &&
1697                                     (  (is_ipv4 && in_localaddr(src_ip))
1698 #ifdef INET6
1699                                     || (is_ipv6 &&
1700                                         in6_localaddr(&(args->f_id.src_ip6)))
1701 #endif
1702                                     ))
1703                                         match =
1704 #ifdef INET6
1705                                             is_ipv6 ? verify_path6(
1706                                                 &(args->f_id.src_ip6),
1707                                                 m->m_pkthdr.rcvif) :
1708 #endif
1709                                             verify_path(src_ip,
1710                                                 m->m_pkthdr.rcvif,
1711                                                 args->f_id.fib);
1712                                 else
1713                                         match = 1;
1714                                 break;
1715
1716                         case O_IPSEC:
1717 #ifdef IPSEC
1718                                 match = (m_tag_find(m,
1719                                     PACKET_TAG_IPSEC_IN_DONE, NULL) != NULL);
1720 #endif
1721                                 /* otherwise no match */
1722                                 break;
1723
1724 #ifdef INET6
1725                         case O_IP6_SRC:
1726                                 match = is_ipv6 &&
1727                                     IN6_ARE_ADDR_EQUAL(&args->f_id.src_ip6,
1728                                     &((ipfw_insn_ip6 *)cmd)->addr6);
1729                                 break;
1730
1731                         case O_IP6_DST:
1732                                 match = is_ipv6 &&
1733                                 IN6_ARE_ADDR_EQUAL(&args->f_id.dst_ip6,
1734                                     &((ipfw_insn_ip6 *)cmd)->addr6);
1735                                 break;
1736                         case O_IP6_SRC_MASK:
1737                         case O_IP6_DST_MASK:
1738                                 if (is_ipv6) {
1739                                         int i = cmdlen - 1;
1740                                         struct in6_addr p;
1741                                         struct in6_addr *d =
1742                                             &((ipfw_insn_ip6 *)cmd)->addr6;
1743
1744                                         for (; !match && i > 0; d += 2,
1745                                             i -= F_INSN_SIZE(struct in6_addr)
1746                                             * 2) {
1747                                                 p = (cmd->opcode ==
1748                                                     O_IP6_SRC_MASK) ?
1749                                                     args->f_id.src_ip6:
1750                                                     args->f_id.dst_ip6;
1751                                                 APPLY_MASK(&p, &d[1]);
1752                                                 match =
1753                                                     IN6_ARE_ADDR_EQUAL(&d[0],
1754                                                     &p);
1755                                         }
1756                                 }
1757                                 break;
1758
1759                         case O_FLOW6ID:
1760                                 match = is_ipv6 &&
1761                                     flow6id_match(args->f_id.flow_id6,
1762                                     (ipfw_insn_u32 *) cmd);
1763                                 break;
1764
1765                         case O_EXT_HDR:
1766                                 match = is_ipv6 &&
1767                                     (ext_hd & ((ipfw_insn *) cmd)->arg1);
1768                                 break;
1769
1770                         case O_IP6:
1771                                 match = is_ipv6;
1772                                 break;
1773 #endif
1774
1775                         case O_IP4:
1776                                 match = is_ipv4;
1777                                 break;
1778
1779                         case O_TAG: {
1780                                 struct m_tag *mtag;
1781                                 uint32_t tag = (cmd->arg1 == IP_FW_TABLEARG) ?
1782                                     tablearg : cmd->arg1;
1783
1784                                 /* Packet is already tagged with this tag? */
1785                                 mtag = m_tag_locate(m, MTAG_IPFW, tag, NULL);
1786
1787                                 /* We have `untag' action when F_NOT flag is
1788                                  * present. And we must remove this mtag from
1789                                  * mbuf and reset `match' to zero (`match' will
1790                                  * be inversed later).
1791                                  * Otherwise we should allocate new mtag and
1792                                  * push it into mbuf.
1793                                  */
1794                                 if (cmd->len & F_NOT) { /* `untag' action */
1795                                         if (mtag != NULL)
1796                                                 m_tag_delete(m, mtag);
1797                                         match = 0;
1798                                 } else {
1799                                         if (mtag == NULL) {
1800                                                 mtag = m_tag_alloc( MTAG_IPFW,
1801                                                     tag, 0, M_NOWAIT);
1802                                                 if (mtag != NULL)
1803                                                         m_tag_prepend(m, mtag);
1804                                         }
1805                                         match = 1;
1806                                 }
1807                                 break;
1808                         }
1809
1810                         case O_FIB: /* try match the specified fib */
1811                                 if (args->f_id.fib == cmd->arg1)
1812                                         match = 1;
1813                                 break;
1814
1815                         case O_TAGGED: {
1816                                 struct m_tag *mtag;
1817                                 uint32_t tag = (cmd->arg1 == IP_FW_TABLEARG) ?
1818                                     tablearg : cmd->arg1;
1819
1820                                 if (cmdlen == 1) {
1821                                         match = m_tag_locate(m, MTAG_IPFW,
1822                                             tag, NULL) != NULL;
1823                                         break;
1824                                 }
1825
1826                                 /* we have ranges */
1827                                 for (mtag = m_tag_first(m);
1828                                     mtag != NULL && !match;
1829                                     mtag = m_tag_next(m, mtag)) {
1830                                         uint16_t *p;
1831                                         int i;
1832
1833                                         if (mtag->m_tag_cookie != MTAG_IPFW)
1834                                                 continue;
1835
1836                                         p = ((ipfw_insn_u16 *)cmd)->ports;
1837                                         i = cmdlen - 1;
1838                                         for(; !match && i > 0; i--, p += 2)
1839                                                 match =
1840                                                     mtag->m_tag_id >= p[0] &&
1841                                                     mtag->m_tag_id <= p[1];
1842                                 }
1843                                 break;
1844                         }
1845                                 
1846                         /*
1847                          * The second set of opcodes represents 'actions',
1848                          * i.e. the terminal part of a rule once the packet
1849                          * matches all previous patterns.
1850                          * Typically there is only one action for each rule,
1851                          * and the opcode is stored at the end of the rule
1852                          * (but there are exceptions -- see below).
1853                          *
1854                          * In general, here we set retval and terminate the
1855                          * outer loop (would be a 'break 3' in some language,
1856                          * but we need to set l=0, done=1)
1857                          *
1858                          * Exceptions:
1859                          * O_COUNT and O_SKIPTO actions:
1860                          *   instead of terminating, we jump to the next rule
1861                          *   (setting l=0), or to the SKIPTO target (setting
1862                          *   f/f_len, cmd and l as needed), respectively.
1863                          *
1864                          * O_TAG, O_LOG and O_ALTQ action parameters:
1865                          *   perform some action and set match = 1;
1866                          *
1867                          * O_LIMIT and O_KEEP_STATE: these opcodes are
1868                          *   not real 'actions', and are stored right
1869                          *   before the 'action' part of the rule.
1870                          *   These opcodes try to install an entry in the
1871                          *   state tables; if successful, we continue with
1872                          *   the next opcode (match=1; break;), otherwise
1873                          *   the packet must be dropped (set retval,
1874                          *   break loops with l=0, done=1)
1875                          *
1876                          * O_PROBE_STATE and O_CHECK_STATE: these opcodes
1877                          *   cause a lookup of the state table, and a jump
1878                          *   to the 'action' part of the parent rule
1879                          *   if an entry is found, or
1880                          *   (CHECK_STATE only) a jump to the next rule if
1881                          *   the entry is not found.
1882                          *   The result of the lookup is cached so that
1883                          *   further instances of these opcodes become NOPs.
1884                          *   The jump to the next rule is done by setting
1885                          *   l=0, cmdlen=0.
1886                          */
1887                         case O_LIMIT:
1888                         case O_KEEP_STATE:
1889                                 if (ipfw_install_state(f,
1890                                     (ipfw_insn_limit *)cmd, args, tablearg)) {
1891                                         /* error or limit violation */
1892                                         retval = IP_FW_DENY;
1893                                         l = 0;  /* exit inner loop */
1894                                         done = 1; /* exit outer loop */
1895                                 }
1896                                 match = 1;
1897                                 break;
1898
1899                         case O_PROBE_STATE:
1900                         case O_CHECK_STATE:
1901                                 /*
1902                                  * dynamic rules are checked at the first
1903                                  * keep-state or check-state occurrence,
1904                                  * with the result being stored in dyn_dir.
1905                                  * The compiler introduces a PROBE_STATE
1906                                  * instruction for us when we have a
1907                                  * KEEP_STATE (because PROBE_STATE needs
1908                                  * to be run first).
1909                                  */
1910                                 if (dyn_dir == MATCH_UNKNOWN &&
1911                                     (q = ipfw_lookup_dyn_rule(&args->f_id,
1912                                      &dyn_dir, proto == IPPROTO_TCP ?
1913                                         TCP(ulp) : NULL))
1914                                         != NULL) {
1915                                         /*
1916                                          * Found dynamic entry, update stats
1917                                          * and jump to the 'action' part of
1918                                          * the parent rule by setting
1919                                          * f, cmd, l and clearing cmdlen.
1920                                          */
1921                                         q->pcnt++;
1922                                         q->bcnt += pktlen;
1923                                         /* XXX we would like to have f_pos
1924                                          * readily accessible in the dynamic
1925                                          * rule, instead of having to
1926                                          * lookup q->rule.
1927                                          */
1928                                         f = q->rule;
1929                                         f_pos = ipfw_find_rule(chain,
1930                                                 f->rulenum, f->id);
1931                                         cmd = ACTION_PTR(f);
1932                                         l = f->cmd_len - f->act_ofs;
1933                                         ipfw_dyn_unlock();
1934                                         cmdlen = 0;
1935                                         match = 1;
1936                                         break;
1937                                 }
1938                                 /*
1939                                  * Dynamic entry not found. If CHECK_STATE,
1940                                  * skip to next rule, if PROBE_STATE just
1941                                  * ignore and continue with next opcode.
1942                                  */
1943                                 if (cmd->opcode == O_CHECK_STATE)
1944                                         l = 0;  /* exit inner loop */
1945                                 match = 1;
1946                                 break;
1947
1948                         case O_ACCEPT:
1949                                 retval = 0;     /* accept */
1950                                 l = 0;          /* exit inner loop */
1951                                 done = 1;       /* exit outer loop */
1952                                 break;
1953
1954                         case O_PIPE:
1955                         case O_QUEUE:
1956                                 set_match(args, f_pos, chain);
1957                                 args->rule.info = (cmd->arg1 == IP_FW_TABLEARG) ?
1958                                         tablearg : cmd->arg1;
1959                                 if (cmd->opcode == O_PIPE)
1960                                         args->rule.info |= IPFW_IS_PIPE;
1961                                 if (V_fw_one_pass)
1962                                         args->rule.info |= IPFW_ONEPASS;
1963                                 retval = IP_FW_DUMMYNET;
1964                                 l = 0;          /* exit inner loop */
1965                                 done = 1;       /* exit outer loop */
1966                                 break;
1967
1968                         case O_DIVERT:
1969                         case O_TEE:
1970                                 if (args->eh) /* not on layer 2 */
1971                                     break;
1972                                 /* otherwise this is terminal */
1973                                 l = 0;          /* exit inner loop */
1974                                 done = 1;       /* exit outer loop */
1975                                 retval = (cmd->opcode == O_DIVERT) ?
1976                                         IP_FW_DIVERT : IP_FW_TEE;
1977                                 set_match(args, f_pos, chain);
1978                                 args->rule.info = (cmd->arg1 == IP_FW_TABLEARG) ?
1979                                     tablearg : cmd->arg1;
1980                                 break;
1981
1982                         case O_COUNT:
1983                                 f->pcnt++;      /* update stats */
1984                                 f->bcnt += pktlen;
1985                                 f->timestamp = time_uptime;
1986                                 l = 0;          /* exit inner loop */
1987                                 break;
1988
1989                         case O_SKIPTO:
1990                             f->pcnt++;  /* update stats */
1991                             f->bcnt += pktlen;
1992                             f->timestamp = time_uptime;
1993                             /* If possible use cached f_pos (in f->next_rule),
1994                              * whose version is written in f->next_rule
1995                              * (horrible hacks to avoid changing the ABI).
1996                              */
1997                             if (cmd->arg1 != IP_FW_TABLEARG &&
1998                                     (uintptr_t)f->x_next == chain->id) {
1999                                 f_pos = (uintptr_t)f->next_rule;
2000                             } else {
2001                                 int i = (cmd->arg1 == IP_FW_TABLEARG) ?
2002                                         tablearg : cmd->arg1;
2003                                 /* make sure we do not jump backward */
2004                                 if (i <= f->rulenum)
2005                                     i = f->rulenum + 1;
2006                                 f_pos = ipfw_find_rule(chain, i, 0);
2007                                 /* update the cache */
2008                                 if (cmd->arg1 != IP_FW_TABLEARG) {
2009                                     f->next_rule =
2010                                         (void *)(uintptr_t)f_pos;
2011                                     f->x_next =
2012                                         (void *)(uintptr_t)chain->id;
2013                                 }
2014                             }
2015                             /*
2016                              * Skip disabled rules, and re-enter
2017                              * the inner loop with the correct
2018                              * f_pos, f, l and cmd.
2019                              * Also clear cmdlen and skip_or
2020                              */
2021                             for (; f_pos < chain->n_rules - 1 &&
2022                                     (V_set_disable &
2023                                      (1 << chain->map[f_pos]->set));
2024                                     f_pos++)
2025                                 ;
2026                             /* Re-enter the inner loop at the skipto rule. */
2027                             f = chain->map[f_pos];
2028                             l = f->cmd_len;
2029                             cmd = f->cmd;
2030                             match = 1;
2031                             cmdlen = 0;
2032                             skip_or = 0;
2033                             continue;
2034                             break;      /* not reached */
2035
2036                         case O_REJECT:
2037                                 /*
2038                                  * Drop the packet and send a reject notice
2039                                  * if the packet is not ICMP (or is an ICMP
2040                                  * query), and it is not multicast/broadcast.
2041                                  */
2042                                 if (hlen > 0 && is_ipv4 && offset == 0 &&
2043                                     (proto != IPPROTO_ICMP ||
2044                                      is_icmp_query(ICMP(ulp))) &&
2045                                     !(m->m_flags & (M_BCAST|M_MCAST)) &&
2046                                     !IN_MULTICAST(ntohl(dst_ip.s_addr))) {
2047                                         send_reject(args, cmd->arg1, iplen, ip);
2048                                         m = args->m;
2049                                 }
2050                                 /* FALLTHROUGH */
2051 #ifdef INET6
2052                         case O_UNREACH6:
2053                                 if (hlen > 0 && is_ipv6 &&
2054                                     ((offset & IP6F_OFF_MASK) == 0) &&
2055                                     (proto != IPPROTO_ICMPV6 ||
2056                                      (is_icmp6_query(icmp6_type) == 1)) &&
2057                                     !(m->m_flags & (M_BCAST|M_MCAST)) &&
2058                                     !IN6_IS_ADDR_MULTICAST(&args->f_id.dst_ip6)) {
2059                                         send_reject6(
2060                                             args, cmd->arg1, hlen,
2061                                             (struct ip6_hdr *)ip);
2062                                         m = args->m;
2063                                 }
2064                                 /* FALLTHROUGH */
2065 #endif
2066                         case O_DENY:
2067                                 retval = IP_FW_DENY;
2068                                 l = 0;          /* exit inner loop */
2069                                 done = 1;       /* exit outer loop */
2070                                 break;
2071
2072                         case O_FORWARD_IP:
2073                                 if (args->eh)   /* not valid on layer2 pkts */
2074                                         break;
2075                                 if (q == NULL || q->rule != f ||
2076                                     dyn_dir == MATCH_FORWARD) {
2077                                     struct sockaddr_in *sa;
2078                                     sa = &(((ipfw_insn_sa *)cmd)->sa);
2079                                     if (sa->sin_addr.s_addr == INADDR_ANY) {
2080                                         bcopy(sa, &args->hopstore,
2081                                                         sizeof(*sa));
2082                                         args->hopstore.sin_addr.s_addr =
2083                                                     htonl(tablearg);
2084                                         args->next_hop = &args->hopstore;
2085                                     } else {
2086                                         args->next_hop = sa;
2087                                     }
2088                                 }
2089                                 retval = IP_FW_PASS;
2090                                 l = 0;          /* exit inner loop */
2091                                 done = 1;       /* exit outer loop */
2092                                 break;
2093
2094                         case O_NETGRAPH:
2095                         case O_NGTEE:
2096                                 set_match(args, f_pos, chain);
2097                                 args->rule.info = (cmd->arg1 == IP_FW_TABLEARG) ?
2098                                         tablearg : cmd->arg1;
2099                                 if (V_fw_one_pass)
2100                                         args->rule.info |= IPFW_ONEPASS;
2101                                 retval = (cmd->opcode == O_NETGRAPH) ?
2102                                     IP_FW_NETGRAPH : IP_FW_NGTEE;
2103                                 l = 0;          /* exit inner loop */
2104                                 done = 1;       /* exit outer loop */
2105                                 break;
2106
2107                         case O_SETFIB: {
2108                                 uint32_t fib;
2109
2110                                 f->pcnt++;      /* update stats */
2111                                 f->bcnt += pktlen;
2112                                 f->timestamp = time_uptime;
2113                                 fib = (cmd->arg1 == IP_FW_TABLEARG) ? tablearg:
2114                                     cmd->arg1;
2115                                 if (fib >= rt_numfibs)
2116                                         fib = 0;
2117                                 M_SETFIB(m, fib);
2118                                 args->f_id.fib = fib;
2119                                 l = 0;          /* exit inner loop */
2120                                 break;
2121                         }
2122
2123                         case O_NAT:
2124                                 if (!IPFW_NAT_LOADED) {
2125                                     retval = IP_FW_DENY;
2126                                 } else {
2127                                     struct cfg_nat *t;
2128                                     int nat_id;
2129
2130                                     set_match(args, f_pos, chain);
2131                                     /* Check if this is 'global' nat rule */
2132                                     if (cmd->arg1 == 0) {
2133                                             retval = ipfw_nat_ptr(args, NULL, m);
2134                                             l = 0;
2135                                             done = 1;
2136                                             break;
2137                                     }
2138                                     t = ((ipfw_insn_nat *)cmd)->nat;
2139                                     if (t == NULL) {
2140                                         nat_id = (cmd->arg1 == IP_FW_TABLEARG) ?
2141                                                 tablearg : cmd->arg1;
2142                                         t = (*lookup_nat_ptr)(&chain->nat, nat_id);
2143
2144                                         if (t == NULL) {
2145                                             retval = IP_FW_DENY;
2146                                             l = 0;      /* exit inner loop */
2147                                             done = 1;   /* exit outer loop */
2148                                             break;
2149                                         }
2150                                         if (cmd->arg1 != IP_FW_TABLEARG)
2151                                             ((ipfw_insn_nat *)cmd)->nat = t;
2152                                     }
2153                                     retval = ipfw_nat_ptr(args, t, m);
2154                                 }
2155                                 l = 0;          /* exit inner loop */
2156                                 done = 1;       /* exit outer loop */
2157                                 break;
2158
2159                         case O_REASS: {
2160                                 int ip_off;
2161
2162                                 f->pcnt++;
2163                                 f->bcnt += pktlen;
2164                                 l = 0;  /* in any case exit inner loop */
2165                                 ip_off = ntohs(ip->ip_off);
2166
2167                                 /* if not fragmented, go to next rule */
2168                                 if ((ip_off & (IP_MF | IP_OFFMASK)) == 0)
2169                                     break;
2170                                 /* 
2171                                  * ip_reass() expects len & off in host
2172                                  * byte order.
2173                                  */
2174                                 SET_HOST_IPLEN(ip);
2175
2176                                 args->m = m = ip_reass(m);
2177
2178                                 /*
2179                                  * do IP header checksum fixup.
2180                                  */
2181                                 if (m == NULL) { /* fragment got swallowed */
2182                                     retval = IP_FW_DENY;
2183                                 } else { /* good, packet complete */
2184                                     int hlen;
2185
2186                                     ip = mtod(m, struct ip *);
2187                                     hlen = ip->ip_hl << 2;
2188                                     SET_NET_IPLEN(ip);
2189                                     ip->ip_sum = 0;
2190                                     if (hlen == sizeof(struct ip))
2191                                         ip->ip_sum = in_cksum_hdr(ip);
2192                                     else
2193                                         ip->ip_sum = in_cksum(m, hlen);
2194                                     retval = IP_FW_REASS;
2195                                     set_match(args, f_pos, chain);
2196                                 }
2197                                 done = 1;       /* exit outer loop */
2198                                 break;
2199                         }
2200
2201                         default:
2202                                 panic("-- unknown opcode %d\n", cmd->opcode);
2203                         } /* end of switch() on opcodes */
2204                         /*
2205                          * if we get here with l=0, then match is irrelevant.
2206                          */
2207
2208                         if (cmd->len & F_NOT)
2209                                 match = !match;
2210
2211                         if (match) {
2212                                 if (cmd->len & F_OR)
2213                                         skip_or = 1;
2214                         } else {
2215                                 if (!(cmd->len & F_OR)) /* not an OR block, */
2216                                         break;          /* try next rule    */
2217                         }
2218
2219                 }       /* end of inner loop, scan opcodes */
2220 #undef PULLUP_LEN
2221
2222                 if (done)
2223                         break;
2224
2225 /* next_rule:; */       /* try next rule                */
2226
2227         }               /* end of outer for, scan rules */
2228
2229         if (done) {
2230                 struct ip_fw *rule = chain->map[f_pos];
2231                 /* Update statistics */
2232                 rule->pcnt++;
2233                 rule->bcnt += pktlen;
2234                 rule->timestamp = time_uptime;
2235         } else {
2236                 retval = IP_FW_DENY;
2237                 printf("ipfw: ouch!, skip past end of rules, denying packet\n");
2238         }
2239         IPFW_RUNLOCK(chain);
2240 #ifdef __FreeBSD__
2241         if (ucred_cache != NULL)
2242                 crfree(ucred_cache);
2243 #endif
2244         return (retval);
2245
2246 pullup_failed:
2247         if (V_fw_verbose)
2248                 printf("ipfw: pullup failed\n");
2249         return (IP_FW_DENY);
2250 }
2251
2252 /*
2253  * Module and VNET glue
2254  */
2255
2256 /*
2257  * Stuff that must be initialised only on boot or module load
2258  */
2259 static int
2260 ipfw_init(void)
2261 {
2262         int error = 0;
2263
2264         ipfw_dyn_attach();
2265         /*
2266          * Only print out this stuff the first time around,
2267          * when called from the sysinit code.
2268          */
2269         printf("ipfw2 "
2270 #ifdef INET6
2271                 "(+ipv6) "
2272 #endif
2273                 "initialized, divert %s, nat %s, "
2274                 "rule-based forwarding "
2275 #ifdef IPFIREWALL_FORWARD
2276                 "enabled, "
2277 #else
2278                 "disabled, "
2279 #endif
2280                 "default to %s, logging ",
2281 #ifdef IPDIVERT
2282                 "enabled",
2283 #else
2284                 "loadable",
2285 #endif
2286 #ifdef IPFIREWALL_NAT
2287                 "enabled",
2288 #else
2289                 "loadable",
2290 #endif
2291                 default_to_accept ? "accept" : "deny");
2292
2293         /*
2294          * Note: V_xxx variables can be accessed here but the vnet specific
2295          * initializer may not have been called yet for the VIMAGE case.
2296          * Tuneables will have been processed. We will print out values for
2297          * the default vnet. 
2298          * XXX This should all be rationalized AFTER 8.0
2299          */
2300         if (V_fw_verbose == 0)
2301                 printf("disabled\n");
2302         else if (V_verbose_limit == 0)
2303                 printf("unlimited\n");
2304         else
2305                 printf("limited to %d packets/entry by default\n",
2306                     V_verbose_limit);
2307
2308         ipfw_log_bpf(1); /* init */
2309         return (error);
2310 }
2311
2312 /*
2313  * Called for the removal of the last instance only on module unload.
2314  */
2315 static void
2316 ipfw_destroy(void)
2317 {
2318
2319         ipfw_log_bpf(0); /* uninit */
2320         ipfw_dyn_detach();
2321         printf("IP firewall unloaded\n");
2322 }
2323
2324 /*
2325  * Stuff that must be initialized for every instance
2326  * (including the first of course).
2327  */
2328 static int
2329 vnet_ipfw_init(const void *unused)
2330 {
2331         int error;
2332         struct ip_fw *rule = NULL;
2333         struct ip_fw_chain *chain;
2334
2335         chain = &V_layer3_chain;
2336
2337         /* First set up some values that are compile time options */
2338         V_autoinc_step = 100;   /* bounded to 1..1000 in add_rule() */
2339         V_fw_deny_unknown_exthdrs = 1;
2340 #ifdef IPFIREWALL_VERBOSE
2341         V_fw_verbose = 1;
2342 #endif
2343 #ifdef IPFIREWALL_VERBOSE_LIMIT
2344         V_verbose_limit = IPFIREWALL_VERBOSE_LIMIT;
2345 #endif
2346 #ifdef IPFIREWALL_NAT
2347         LIST_INIT(&chain->nat);
2348 #endif
2349
2350         /* insert the default rule and create the initial map */
2351         chain->n_rules = 1;
2352         chain->static_len = sizeof(struct ip_fw);
2353         chain->map = malloc(sizeof(struct ip_fw *), M_IPFW, M_NOWAIT | M_ZERO);
2354         if (chain->map)
2355                 rule = malloc(chain->static_len, M_IPFW, M_NOWAIT | M_ZERO);
2356         if (rule == NULL) {
2357                 if (chain->map)
2358                         free(chain->map, M_IPFW);
2359                 printf("ipfw2: ENOSPC initializing default rule "
2360                         "(support disabled)\n");
2361                 return (ENOSPC);
2362         }
2363         error = ipfw_init_tables(chain);
2364         if (error) {
2365                 panic("init_tables"); /* XXX Marko fix this ! */
2366         }
2367
2368         /* fill and insert the default rule */
2369         rule->act_ofs = 0;
2370         rule->rulenum = IPFW_DEFAULT_RULE;
2371         rule->cmd_len = 1;
2372         rule->set = RESVD_SET;
2373         rule->cmd[0].len = 1;
2374         rule->cmd[0].opcode = default_to_accept ? O_ACCEPT : O_DENY;
2375         chain->rules = chain->default_rule = chain->map[0] = rule;
2376         chain->id = rule->id = 1;
2377
2378         IPFW_LOCK_INIT(chain);
2379         ipfw_dyn_init();
2380
2381         /* First set up some values that are compile time options */
2382         V_ipfw_vnet_ready = 1;          /* Open for business */
2383
2384         /*
2385          * Hook the sockopt handler, and the layer2 (V_ip_fw_chk_ptr)
2386          * and pfil hooks for ipv4 and ipv6. Even if the latter two fail
2387          * we still keep the module alive because the sockopt and
2388          * layer2 paths are still useful.
2389          * ipfw[6]_hook return 0 on success, ENOENT on failure,
2390          * so we can ignore the exact return value and just set a flag.
2391          *
2392          * Note that V_fw[6]_enable are manipulated by a SYSCTL_PROC so
2393          * changes in the underlying (per-vnet) variables trigger
2394          * immediate hook()/unhook() calls.
2395          * In layer2 we have the same behaviour, except that V_ether_ipfw
2396          * is checked on each packet because there are no pfil hooks.
2397          */
2398         V_ip_fw_ctl_ptr = ipfw_ctl;
2399         V_ip_fw_chk_ptr = ipfw_chk;
2400         error = ipfw_attach_hooks(1);
2401         return (error);
2402 }
2403
2404 /*
2405  * Called for the removal of each instance.
2406  */
2407 static int
2408 vnet_ipfw_uninit(const void *unused)
2409 {
2410         struct ip_fw *reap, *rule;
2411         struct ip_fw_chain *chain = &V_layer3_chain;
2412         int i;
2413
2414         V_ipfw_vnet_ready = 0; /* tell new callers to go away */
2415         /*
2416          * disconnect from ipv4, ipv6, layer2 and sockopt.
2417          * Then grab, release and grab again the WLOCK so we make
2418          * sure the update is propagated and nobody will be in.
2419          */
2420         (void)ipfw_attach_hooks(0 /* detach */);
2421         V_ip_fw_chk_ptr = NULL;
2422         V_ip_fw_ctl_ptr = NULL;
2423         IPFW_UH_WLOCK(chain);
2424         IPFW_UH_WUNLOCK(chain);
2425         IPFW_UH_WLOCK(chain);
2426
2427         IPFW_WLOCK(chain);
2428         IPFW_WUNLOCK(chain);
2429         IPFW_WLOCK(chain);
2430
2431         ipfw_dyn_uninit(0);     /* run the callout_drain */
2432         ipfw_destroy_tables(chain);
2433         reap = NULL;
2434         for (i = 0; i < chain->n_rules; i++) {
2435                 rule = chain->map[i];
2436                 rule->x_next = reap;
2437                 reap = rule;
2438         }
2439         if (chain->map)
2440                 free(chain->map, M_IPFW);
2441         IPFW_WUNLOCK(chain);
2442         IPFW_UH_WUNLOCK(chain);
2443         if (reap != NULL)
2444                 ipfw_reap_rules(reap);
2445         IPFW_LOCK_DESTROY(chain);
2446         ipfw_dyn_uninit(1);     /* free the remaining parts */
2447         return 0;
2448 }
2449
2450 /*
2451  * Module event handler.
2452  * In general we have the choice of handling most of these events by the
2453  * event handler or by the (VNET_)SYS(UN)INIT handlers. I have chosen to
2454  * use the SYSINIT handlers as they are more capable of expressing the
2455  * flow of control during module and vnet operations, so this is just
2456  * a skeleton. Note there is no SYSINIT equivalent of the module
2457  * SHUTDOWN handler, but we don't have anything to do in that case anyhow.
2458  */
2459 static int
2460 ipfw_modevent(module_t mod, int type, void *unused)
2461 {
2462         int err = 0;
2463
2464         switch (type) {
2465         case MOD_LOAD:
2466                 /* Called once at module load or
2467                  * system boot if compiled in. */
2468                 break;
2469         case MOD_QUIESCE:
2470                 /* Called before unload. May veto unloading. */
2471                 break;
2472         case MOD_UNLOAD:
2473                 /* Called during unload. */
2474                 break;
2475         case MOD_SHUTDOWN:
2476                 /* Called during system shutdown. */
2477                 break;
2478         default:
2479                 err = EOPNOTSUPP;
2480                 break;
2481         }
2482         return err;
2483 }
2484
2485 static moduledata_t ipfwmod = {
2486         "ipfw",
2487         ipfw_modevent,
2488         0
2489 };
2490
2491 /* Define startup order. */
2492 #define IPFW_SI_SUB_FIREWALL    SI_SUB_PROTO_IFATTACHDOMAIN
2493 #define IPFW_MODEVENT_ORDER     (SI_ORDER_ANY - 255) /* On boot slot in here. */
2494 #define IPFW_MODULE_ORDER       (IPFW_MODEVENT_ORDER + 1) /* A little later. */
2495 #define IPFW_VNET_ORDER         (IPFW_MODEVENT_ORDER + 2) /* Later still. */
2496
2497 DECLARE_MODULE(ipfw, ipfwmod, IPFW_SI_SUB_FIREWALL, IPFW_MODEVENT_ORDER);
2498 MODULE_VERSION(ipfw, 2);
2499 /* should declare some dependencies here */
2500
2501 /*
2502  * Starting up. Done in order after ipfwmod() has been called.
2503  * VNET_SYSINIT is also called for each existing vnet and each new vnet.
2504  */
2505 SYSINIT(ipfw_init, IPFW_SI_SUB_FIREWALL, IPFW_MODULE_ORDER,
2506             ipfw_init, NULL);
2507 VNET_SYSINIT(vnet_ipfw_init, IPFW_SI_SUB_FIREWALL, IPFW_VNET_ORDER,
2508             vnet_ipfw_init, NULL);
2509  
2510 /*
2511  * Closing up shop. These are done in REVERSE ORDER, but still
2512  * after ipfwmod() has been called. Not called on reboot.
2513  * VNET_SYSUNINIT is also called for each exiting vnet as it exits.
2514  * or when the module is unloaded.
2515  */
2516 SYSUNINIT(ipfw_destroy, IPFW_SI_SUB_FIREWALL, IPFW_MODULE_ORDER,
2517             ipfw_destroy, NULL);
2518 VNET_SYSUNINIT(vnet_ipfw_uninit, IPFW_SI_SUB_FIREWALL, IPFW_VNET_ORDER,
2519             vnet_ipfw_uninit, NULL);
2520 /* end of file */