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