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