Fix LINT kernel build.
[dragonfly.git] / sys / netinet / ip_divert.c
1 /*
2  * Copyright (c) 1982, 1986, 1988, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * $FreeBSD: src/sys/netinet/ip_divert.c,v 1.42.2.6 2003/01/23 21:06:45 sam Exp $
34  * $DragonFly: src/sys/netinet/ip_divert.c,v 1.40 2008/10/21 13:51:01 sephe Exp $
35  */
36
37 #define _IP_VHL
38
39 #include "opt_inet.h"
40 #include "opt_ipfw.h"
41 #include "opt_ipdivert.h"
42 #include "opt_ipsec.h"
43
44 #ifndef INET
45 #error "IPDIVERT requires INET."
46 #endif
47
48 #include <sys/param.h>
49 #include <sys/kernel.h>
50 #include <sys/malloc.h>
51 #include <sys/mbuf.h>
52 #include <sys/socket.h>
53 #include <sys/protosw.h>
54 #include <sys/socketvar.h>
55 #include <sys/sysctl.h>
56 #include <sys/systm.h>
57 #include <sys/proc.h>
58 #include <sys/priv.h>
59 #include <sys/thread2.h>
60 #include <sys/in_cksum.h>
61 #include <sys/lock.h>
62 #ifdef SMP
63 #include <sys/msgport.h>
64 #endif
65
66 #include <vm/vm_zone.h>
67
68 #include <net/if.h>
69 #include <net/route.h>
70 #ifdef SMP
71 #include <net/netmsg2.h>
72 #endif
73
74 #include <netinet/in.h>
75 #include <netinet/in_systm.h>
76 #include <netinet/ip.h>
77 #include <netinet/in_pcb.h>
78 #include <netinet/in_var.h>
79 #include <netinet/ip_var.h>
80 #include <netinet/ip_divert.h>
81
82 /*
83  * Divert sockets
84  */
85
86 /*
87  * Allocate enough space to hold a full IP packet
88  */
89 #define DIVSNDQ         (65536 + 100)
90 #define DIVRCVQ         (65536 + 100)
91
92 #define DIV_IS_OUTPUT(sin)      ((sin) == NULL || (sin)->sin_addr.s_addr == 0)
93
94 #define DIV_OUTPUT      0x10000
95 #define DIV_INPUT       0x20000
96
97 /*
98  * Divert sockets work in conjunction with ipfw, see the divert(4)
99  * manpage for features.
100  * Internally, packets selected by ipfw in ip_input() or ip_output(),
101  * and never diverted before, are passed to the input queue of the
102  * divert socket with a given 'divert_port' number (as specified in
103  * the matching ipfw rule), and they are tagged with a 16 bit cookie
104  * (representing the rule number of the matching ipfw rule), which
105  * is passed to process reading from the socket.
106  *
107  * Packets written to the divert socket are again tagged with a cookie
108  * (usually the same as above) and a destination address.
109  * If the destination address is INADDR_ANY then the packet is
110  * treated as outgoing and sent to ip_output(), otherwise it is
111  * treated as incoming and sent to ip_input().
112  * In both cases, the packet is tagged with the cookie.
113  *
114  * On reinjection, processing in ip_input() and ip_output()
115  * will be exactly the same as for the original packet, except that
116  * ipfw processing will start at the rule number after the one
117  * written in the cookie (so, tagging a packet with a cookie of 0
118  * will cause it to be effectively considered as a standard packet).
119  */
120
121 /* Internal variables */
122 static struct inpcbinfo divcbinfo;
123
124 static u_long   div_sendspace = DIVSNDQ;        /* XXX sysctl ? */
125 static u_long   div_recvspace = DIVRCVQ;        /* XXX sysctl ? */
126
127 static struct mbuf *ip_divert(struct mbuf *, int, int);
128
129 /*
130  * Initialize divert connection block queue.
131  */
132 void
133 div_init(void)
134 {
135         in_pcbinfo_init(&divcbinfo);
136         /*
137          * XXX We don't use the hash list for divert IP, but it's easier
138          * to allocate a one entry hash list than it is to check all
139          * over the place for hashbase == NULL.
140          */
141         divcbinfo.hashbase = hashinit(1, M_PCB, &divcbinfo.hashmask);
142         divcbinfo.porthashbase = hashinit(1, M_PCB, &divcbinfo.porthashmask);
143         divcbinfo.wildcardhashbase = hashinit(1, M_PCB,
144                                               &divcbinfo.wildcardhashmask);
145         divcbinfo.ipi_zone = zinit("divcb", sizeof(struct inpcb),
146                                    maxsockets, ZONE_INTERRUPT, 0);
147         ip_divert_p = ip_divert;
148 }
149
150 /*
151  * IPPROTO_DIVERT is not a real IP protocol; don't allow any packets
152  * with that protocol number to enter the system from the outside.
153  */
154 void
155 div_input(struct mbuf *m, ...)
156 {
157         ipstat.ips_noproto++;
158         m_freem(m);
159 }
160
161 struct lwkt_port *
162 div_soport(struct socket *so, struct sockaddr *nam, struct mbuf **mptr)
163 {
164         struct sockaddr_in *sin;
165         struct mbuf *m;
166         int dir;
167
168         sin = (struct sockaddr_in *)nam;
169         m = *mptr;
170         M_ASSERTPKTHDR(m);
171
172         m->m_pkthdr.rcvif = NULL;
173         dir = DIV_IS_OUTPUT(sin) ? IP_MPORT_OUT : IP_MPORT_IN;
174
175         if (sin != NULL) {
176                 int i;
177
178                 /*
179                  * Try locating the interface, if we originally had one.
180                  * This is done even for outgoing packets, since for a
181                  * forwarded packet, there must be an interface attached.
182                  *
183                  * Find receive interface with the given name, stuffed
184                  * (if it exists) in the sin_zero[] field.
185                  * The name is user supplied data so don't trust its size
186                  * or that it is zero terminated.
187                  */
188                 for (i = 0; sin->sin_zero[i] && i < sizeof(sin->sin_zero); i++)
189                         ;
190                 if (i > 0 && i < sizeof(sin->sin_zero))
191                         m->m_pkthdr.rcvif = ifunit(sin->sin_zero);
192         }
193
194         if (dir == IP_MPORT_IN && m->m_pkthdr.rcvif == NULL) {
195                 /*
196                  * No luck with the name, check by IP address.
197                  * Clear the port and the ifname to make sure
198                  * there are no distractions for ifa_ifwithaddr.
199                  *
200                  * Be careful not to trash sin->sin_port; it will
201                  * be used later in div_output().
202                  */
203                 struct ifaddr *ifa;
204                 u_short sin_port;
205
206                 bzero(sin->sin_zero, sizeof(sin->sin_zero));
207                 sin_port = sin->sin_port; /* save */
208                 sin->sin_port = 0;
209                 ifa = ifa_ifwithaddr((struct sockaddr *)sin);
210                 if (ifa == NULL) {
211                         m_freem(m);
212                         *mptr = NULL;
213                         return NULL;
214                 }
215                 sin->sin_port = sin_port; /* restore */
216                 m->m_pkthdr.rcvif = ifa->ifa_ifp;
217         }
218
219         return ip_mport(mptr, dir);
220 }
221
222 /*
223  * Divert a packet by passing it up to the divert socket at port 'port'.
224  *
225  * Setup generic address and protocol structures for div_input routine,
226  * then pass them along with mbuf chain.
227  */
228 static void
229 div_packet(struct mbuf *m, int incoming, int port)
230 {
231         struct sockaddr_in divsrc = { sizeof divsrc, AF_INET };
232         struct inpcb *inp;
233         struct socket *sa;
234         struct m_tag *mtag;
235         struct divert_info *divinfo;
236         u_int16_t nport;
237
238         /* Locate the divert info */
239         mtag = m_tag_find(m, PACKET_TAG_IPFW_DIVERT, NULL);
240         divinfo = m_tag_data(mtag);
241         divsrc.sin_port = divinfo->skipto;
242
243         /*
244          * Record receive interface address, if any.
245          * But only for incoming packets.
246          */
247         divsrc.sin_addr.s_addr = 0;
248         if (incoming) {
249                 struct ifaddr_container *ifac;
250
251                 /* Find IP address for receive interface */
252                 TAILQ_FOREACH(ifac, &m->m_pkthdr.rcvif->if_addrheads[mycpuid],
253                               ifa_link) {
254                         struct ifaddr *ifa = ifac->ifa;
255
256                         if (ifa->ifa_addr == NULL)
257                                 continue;
258                         if (ifa->ifa_addr->sa_family != AF_INET)
259                                 continue;
260                         divsrc.sin_addr =
261                             ((struct sockaddr_in *) ifa->ifa_addr)->sin_addr;
262                         break;
263                 }
264         }
265         /*
266          * Record the incoming interface name whenever we have one.
267          */
268         if (m->m_pkthdr.rcvif) {
269                 /*
270                  * Hide the actual interface name in there in the
271                  * sin_zero array. XXX This needs to be moved to a
272                  * different sockaddr type for divert, e.g.
273                  * sockaddr_div with multiple fields like
274                  * sockaddr_dl. Presently we have only 7 bytes
275                  * but that will do for now as most interfaces
276                  * are 4 or less + 2 or less bytes for unit.
277                  * There is probably a faster way of doing this,
278                  * possibly taking it from the sockaddr_dl on the iface.
279                  * This solves the problem of a P2P link and a LAN interface
280                  * having the same address, which can result in the wrong
281                  * interface being assigned to the packet when fed back
282                  * into the divert socket. Theoretically if the daemon saves
283                  * and re-uses the sockaddr_in as suggested in the man pages,
284                  * this iface name will come along for the ride.
285                  * (see div_output for the other half of this.)
286                  */
287                 ksnprintf(divsrc.sin_zero, sizeof divsrc.sin_zero,
288                           m->m_pkthdr.rcvif->if_xname);
289         }
290
291         /* Put packet on socket queue, if any */
292         sa = NULL;
293         nport = htons((u_int16_t)port);
294
295         /*
296          * XXX
297          * Following loop to locate the inpcb is MPSAFE since the inpcb
298          * insertion/removal happens on the same CPU (CPU0), however,
299          * saving/testing the socket pointer is not MPSAFE.  So we still
300          * need to hold BGL here.
301          */
302         get_mplock();
303         LIST_FOREACH(inp, &divcbinfo.pcblisthead, inp_list) {
304                 if (inp->inp_flags & INP_PLACEMARKER)
305                         continue;
306                 if (inp->inp_lport == nport)
307                         sa = inp->inp_socket;
308         }
309         if (sa) {
310                 if (ssb_appendaddr(&sa->so_rcv, (struct sockaddr *)&divsrc, m,
311                                  NULL) == 0)
312                         m_freem(m);
313                 else
314                         sorwakeup(sa);
315                 rel_mplock();
316         } else {
317                 rel_mplock();
318                 m_freem(m);
319                 ipstat.ips_noproto++;
320                 ipstat.ips_delivered--;
321         }
322 }
323
324 #ifdef SMP
325 static void
326 div_packet_handler(struct netmsg *nmsg)
327 {
328         struct netmsg_packet *nmp;
329         struct lwkt_msg *msg;
330         struct mbuf *m;
331         int port, incoming = 0;
332
333         nmp = (struct netmsg_packet *)nmsg;
334         m = nmp->nm_packet;
335
336         msg = &nmsg->nm_lmsg;
337         port = msg->u.ms_result32 & 0xffff;
338         if (msg->u.ms_result32 & DIV_INPUT)
339                 incoming = 1;
340
341         div_packet(m, incoming, port);
342 }
343 #endif  /* SMP */
344
345 static void
346 divert_packet(struct mbuf *m, int incoming)
347 {
348         struct m_tag *mtag;
349         struct divert_info *divinfo;
350         int port;
351
352         M_ASSERTPKTHDR(m);
353
354         /* Assure header */
355         if (m->m_len < sizeof(struct ip) &&
356             (m = m_pullup(m, sizeof(struct ip))) == NULL)
357                 return;
358
359         mtag = m_tag_find(m, PACKET_TAG_IPFW_DIVERT, NULL);
360         KASSERT(mtag != NULL, ("%s no divert tag!", __func__));
361         divinfo = m_tag_data(mtag);
362
363         port = divinfo->port;
364         KASSERT(port != 0, ("%s: port=0", __func__));
365
366 #ifdef SMP
367         if (mycpuid != 0) {
368                 struct netmsg_packet *nmp;
369                 struct lwkt_msg *msg;
370
371                 nmp = &m->m_hdr.mh_netmsg;
372                 netmsg_init(&nmp->nm_netmsg, NULL, &netisr_apanic_rport,
373                     MSGF_MPSAFE, div_packet_handler);
374                 nmp->nm_packet = m;
375
376                 msg = &nmp->nm_netmsg.nm_lmsg;
377                 msg->u.ms_result32 = port; /* port is 16bits */
378                 if (incoming)
379                         msg->u.ms_result32 |= DIV_INPUT;
380                 else
381                         msg->u.ms_result32 |= DIV_OUTPUT;
382
383                 lwkt_sendmsg(cpu_portfn(0), &nmp->nm_netmsg.nm_lmsg);
384         } else
385 #endif
386         div_packet(m, incoming, port);
387 }
388
389 /*
390  * Deliver packet back into the IP processing machinery.
391  *
392  * If no address specified, or address is 0.0.0.0, send to ip_output();
393  * otherwise, send to ip_input() and mark as having been received on
394  * the interface with that address.
395  */
396 static int
397 div_output(struct socket *so, struct mbuf *m,
398         struct sockaddr_in *sin, struct mbuf *control)
399 {
400         int error = 0;
401         struct m_tag *mtag;
402         struct divert_info *divinfo;
403
404         if (control)
405                 m_freem(control);               /* XXX */
406
407         /*
408          * Prepare the tag for divert info. Note that a packet
409          * with a 0 tag in mh_data is effectively untagged,
410          * so we could optimize that case.
411          */
412         mtag = m_tag_get(PACKET_TAG_IPFW_DIVERT, sizeof(*divinfo), MB_DONTWAIT);
413         if (mtag == NULL) {
414                 error = ENOBUFS;
415                 goto cantsend;
416         }
417         m_tag_prepend(m, mtag);
418
419         /* Loopback avoidance and state recovery */
420         divinfo = m_tag_data(mtag);
421         if (sin)
422                 divinfo->skipto = sin->sin_port;
423         else
424                 divinfo->skipto = 0;
425
426         /* Reinject packet into the system as incoming or outgoing */
427         if (DIV_IS_OUTPUT(sin)) {
428                 struct ip *const ip = mtod(m, struct ip *);
429
430                 /* Don't allow packet length sizes that will crash */
431                 if ((u_short)ntohs(ip->ip_len) > m->m_pkthdr.len) {
432                         error = EINVAL;
433                         goto cantsend;
434                 }
435
436                 /* Convert fields to host order for ip_output() */
437                 ip->ip_len = ntohs(ip->ip_len);
438                 ip->ip_off = ntohs(ip->ip_off);
439
440                 /* Send packet to output processing */
441                 ipstat.ips_rawout++;                    /* XXX */
442                 error = ip_output(m, NULL, NULL,
443                             (so->so_options & SO_DONTROUTE) |
444                             IP_ALLOWBROADCAST | IP_RAWOUTPUT,
445                             NULL, NULL);
446         } else {
447                 ip_input(m);
448         }
449         return error;
450
451 cantsend:
452         m_freem(m);
453         return error;
454 }
455
456 static int
457 div_attach(struct socket *so, int proto, struct pru_attach_info *ai)
458 {
459         struct inpcb *inp;
460         int error;
461
462         inp  = so->so_pcb;
463         if (inp)
464                 panic("div_attach");
465         if ((error = priv_check_cred(ai->p_ucred, PRIV_ROOT, NULL_CRED_OKAY)) != 0)
466                 return error;
467
468         error = soreserve(so, div_sendspace, div_recvspace, ai->sb_rlimit);
469         if (error)
470                 return error;
471         error = in_pcballoc(so, &divcbinfo);
472         if (error)
473                 return error;
474         inp = (struct inpcb *)so->so_pcb;
475         inp->inp_ip_p = proto;
476         inp->inp_vflag |= INP_IPV4;
477         inp->inp_flags |= INP_HDRINCL;
478         /*
479          * The socket is always "connected" because
480          * we always know "where" to send the packet.
481          */
482         so->so_port = cpu0_soport(so, NULL, NULL);
483         so->so_state |= SS_ISCONNECTED;
484         return 0;
485 }
486
487 static int
488 div_detach(struct socket *so)
489 {
490         struct inpcb *inp;
491
492         inp = so->so_pcb;
493         if (inp == NULL)
494                 panic("div_detach");
495         in_pcbdetach(inp);
496         return 0;
497 }
498
499 static int
500 div_abort(struct socket *so)
501 {
502         soisdisconnected(so);
503         return div_detach(so);
504 }
505
506 static int
507 div_disconnect(struct socket *so)
508 {
509         if (!(so->so_state & SS_ISCONNECTED))
510                 return ENOTCONN;
511         return div_abort(so);
512 }
513
514 static int
515 div_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
516 {
517         int error;
518
519         /*
520          * in_pcbbind assumes that nam is a sockaddr_in
521          * and in_pcbbind requires a valid address. Since divert
522          * sockets don't we need to make sure the address is
523          * filled in properly.
524          * XXX -- divert should not be abusing in_pcbind
525          * and should probably have its own family.
526          */
527         if (nam->sa_family != AF_INET) {
528                 error = EAFNOSUPPORT;
529         } else {
530                 ((struct sockaddr_in *)nam)->sin_addr.s_addr = INADDR_ANY;
531                 error = in_pcbbind(so->so_pcb, nam, td);
532         }
533         return error;
534 }
535
536 static int
537 div_shutdown(struct socket *so)
538 {
539         socantsendmore(so);
540         return 0;
541 }
542
543 static int
544 div_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *nam,
545          struct mbuf *control, struct thread *td)
546 {
547         /* Length check already done in ip_mport() */
548         KASSERT(m->m_len >= sizeof(struct ip), ("IP header not in one mbuf"));
549
550         /* Send packet */
551         return div_output(so, m, (struct sockaddr_in *)nam, control);
552 }
553
554 SYSCTL_DECL(_net_inet_divert);
555 SYSCTL_PROC(_net_inet_divert, OID_AUTO, pcblist, CTLFLAG_RD, &divcbinfo, 0,
556             in_pcblist_global, "S,xinpcb", "List of active divert sockets");
557
558 struct pr_usrreqs div_usrreqs = {
559         .pru_abort = div_abort,
560         .pru_accept = pru_accept_notsupp,
561         .pru_attach = div_attach,
562         .pru_bind = div_bind,
563         .pru_connect = pru_connect_notsupp,
564         .pru_connect2 = pru_connect2_notsupp,
565         .pru_control = in_control,
566         .pru_detach = div_detach,
567         .pru_disconnect = div_disconnect,
568         .pru_listen = pru_listen_notsupp,
569         .pru_peeraddr = in_setpeeraddr,
570         .pru_rcvd = pru_rcvd_notsupp,
571         .pru_rcvoob = pru_rcvoob_notsupp,
572         .pru_send = div_send,
573         .pru_sense = pru_sense_null,
574         .pru_shutdown = div_shutdown,
575         .pru_sockaddr = in_setsockaddr,
576         .pru_sosend = sosend,
577         .pru_soreceive = soreceive,
578         .pru_sopoll = sopoll
579 };
580
581 static struct mbuf *
582 ip_divert_out(struct mbuf *m, int tee)
583 {
584         struct mbuf *clone = NULL;
585         struct ip *ip = mtod(m, struct ip *);
586
587         /* Clone packet if we're doing a 'tee' */
588         if (tee)
589                 clone = m_dup(m, MB_DONTWAIT);
590
591         /*
592          * XXX
593          * delayed checksums are not currently compatible
594          * with divert sockets.
595          */
596         if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
597                 in_delayed_cksum(m);
598                 m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
599         }
600
601         /* Restore packet header fields to original values */
602         ip->ip_len = htons(ip->ip_len);
603         ip->ip_off = htons(ip->ip_off);
604
605         /* Deliver packet to divert input routine */
606         divert_packet(m, 0);
607
608         /* If 'tee', continue with original packet */
609         return clone;
610 }
611
612 static struct mbuf *
613 ip_divert_in(struct mbuf *m, int tee)
614 {
615         struct mbuf *clone = NULL;
616         struct ip *ip = mtod(m, struct ip *);
617         struct m_tag *mtag;
618
619         if (ip->ip_off & (IP_MF | IP_OFFMASK)) {
620                 const struct divert_info *divinfo;
621                 u_short frag_off;
622                 int hlen;
623
624                 /*
625                  * Only trust divert info in the fragment
626                  * at offset 0.
627                  */
628                 frag_off = ip->ip_off << 3;
629                 if (frag_off != 0) {
630                         mtag = m_tag_find(m, PACKET_TAG_IPFW_DIVERT, NULL);
631                         m_tag_delete(m, mtag);
632                 }
633
634                 /*
635                  * Attempt reassembly; if it succeeds, proceed.
636                  * ip_reass() will return a different mbuf.
637                  */
638                 m = ip_reass(m);
639                 if (m == NULL)
640                         return NULL;
641                 ip = mtod(m, struct ip *);
642
643                 /* Caller need to redispatch the packet, if it is for us */
644                 m->m_pkthdr.fw_flags |= FW_MBUF_REDISPATCH;
645
646                 /*
647                  * Get the header length of the reassembled
648                  * packet
649                  */
650                 hlen = IP_VHL_HL(ip->ip_vhl) << 2;
651
652                 /*
653                  * Restore original checksum before diverting
654                  * packet
655                  */
656                 ip->ip_len += hlen;
657                 ip->ip_len = htons(ip->ip_len);
658                 ip->ip_off = htons(ip->ip_off);
659                 ip->ip_sum = 0;
660                 if (hlen == sizeof(struct ip))
661                         ip->ip_sum = in_cksum_hdr(ip);
662                 else
663                         ip->ip_sum = in_cksum(m, hlen);
664                 ip->ip_off = ntohs(ip->ip_off);
665                 ip->ip_len = ntohs(ip->ip_len);
666
667                 /*
668                  * Only use the saved divert info
669                  */
670                 mtag = m_tag_find(m, PACKET_TAG_IPFW_DIVERT, NULL);
671                 if (mtag == NULL) {
672                         /* Wrongly configured ipfw */
673                         kprintf("ip_input no divert info\n");
674                         m_freem(m);
675                         return NULL;
676                 }
677                 divinfo = m_tag_data(mtag);
678                 tee = divinfo->tee;
679         }
680
681         /*
682          * Divert or tee packet to the divert protocol if
683          * required.
684          */
685
686         /* Clone packet if we're doing a 'tee' */
687         if (tee)
688                 clone = m_dup(m, MB_DONTWAIT);
689
690         /*
691          * Restore packet header fields to original
692          * values
693          */
694         ip->ip_len = htons(ip->ip_len);
695         ip->ip_off = htons(ip->ip_off);
696
697         /* Deliver packet to divert input routine */
698         divert_packet(m, 1);
699
700         /* Catch invalid reference */
701         m = NULL;
702         ip = NULL;
703
704         ipstat.ips_delivered++;
705
706         /* If 'tee', continue with original packet */
707         if (clone != NULL) {
708                 /*
709                  * Complete processing of the packet.
710                  * XXX Better safe than sorry, remove the DIVERT tag.
711                  */
712                 mtag = m_tag_find(clone, PACKET_TAG_IPFW_DIVERT, NULL);
713                 KKASSERT(mtag != NULL);
714                 m_tag_delete(clone, mtag);
715         }
716         return clone;
717 }
718
719 static struct mbuf *
720 ip_divert(struct mbuf *m, int tee, int incoming)
721 {
722         struct mbuf *ret;
723
724         if (incoming)
725                 ret = ip_divert_in(m, tee);
726         else
727                 ret = ip_divert_out(m, tee);
728         return ret;
729 }