]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/netinet/ip_divert.c
inpcb: gather v4/v6 handling code into in_pcballoc() from protocols
[FreeBSD/FreeBSD.git] / sys / netinet / ip_divert.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1982, 1986, 1988, 1993
5  *      The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34
35 #include "opt_inet.h"
36 #include "opt_inet6.h"
37 #include "opt_sctp.h"
38 #ifndef INET
39 #error "IPDIVERT requires INET"
40 #endif
41
42 #include <sys/param.h>
43 #include <sys/eventhandler.h>
44 #include <sys/kernel.h>
45 #include <sys/lock.h>
46 #include <sys/malloc.h>
47 #include <sys/mbuf.h>
48 #include <sys/module.h>
49 #include <sys/kernel.h>
50 #include <sys/priv.h>
51 #include <sys/proc.h>
52 #include <sys/protosw.h>
53 #include <sys/socket.h>
54 #include <sys/socketvar.h>
55 #include <sys/sysctl.h>
56 #include <net/vnet.h>
57
58 #include <net/if.h>
59 #include <net/if_var.h>
60 #include <net/netisr.h>
61
62 #include <netinet/in.h>
63 #include <netinet/in_pcb.h>
64 #include <netinet/in_systm.h>
65 #include <netinet/in_var.h>
66 #include <netinet/ip.h>
67 #include <netinet/ip_var.h>
68 #ifdef INET6
69 #include <netinet/ip6.h>
70 #include <netinet6/ip6_var.h>
71 #endif
72 #if defined(SCTP) || defined(SCTP_SUPPORT)
73 #include <netinet/sctp_crc32.h>
74 #endif
75
76 #include <security/mac/mac_framework.h>
77 /*
78  * Divert sockets
79  */
80
81 /*
82  * Allocate enough space to hold a full IP packet
83  */
84 #define DIVSNDQ         (65536 + 100)
85 #define DIVRCVQ         (65536 + 100)
86
87 /*
88  * Divert sockets work in conjunction with ipfw or other packet filters,
89  * see the divert(4) manpage for features.
90  * Packets are selected by the packet filter and tagged with an
91  * MTAG_IPFW_RULE tag carrying the 'divert port' number (as set by
92  * the packet filter) and information on the matching filter rule for
93  * subsequent reinjection. The divert_port is used to put the packet
94  * on the corresponding divert socket, while the rule number is passed
95  * up (at least partially) as the sin_port in the struct sockaddr.
96  *
97  * Packets written to the divert socket carry in sin_addr a
98  * destination address, and in sin_port the number of the filter rule
99  * after which to continue processing.
100  * If the destination address is INADDR_ANY, the packet is treated as
101  * as outgoing and sent to ip_output(); otherwise it is treated as
102  * incoming and sent to ip_input().
103  * Further, sin_zero carries some information on the interface,
104  * which can be used in the reinject -- see comments in the code.
105  *
106  * On reinjection, processing in ip_input() and ip_output()
107  * will be exactly the same as for the original packet, except that
108  * packet filter processing will start at the rule number after the one
109  * written in the sin_port (ipfw does not allow a rule #0, so sin_port=0
110  * will apply the entire ruleset to the packet).
111  */
112
113 /* Internal variables. */
114 VNET_DEFINE_STATIC(struct inpcbinfo, divcbinfo);
115 #define V_divcbinfo                     VNET(divcbinfo)
116
117 static u_long   div_sendspace = DIVSNDQ;        /* XXX sysctl ? */
118 static u_long   div_recvspace = DIVRCVQ;        /* XXX sysctl ? */
119
120 static int div_output_inbound(int fmaily, struct socket *so, struct mbuf *m,
121     struct sockaddr_in *sin);
122 static int div_output_outbound(int family, struct socket *so, struct mbuf *m);
123
124 /*
125  * Initialize divert connection block queue.
126  */
127 INPCBSTORAGE_DEFINE(divcbstor, "divinp", "divcb", "div", "divhash");
128
129 static void
130 div_init(void *arg __unused)
131 {
132
133         /*
134          * XXX We don't use the hash list for divert IP, but it's easier to
135          * allocate one-entry hash lists than it is to check all over the
136          * place for hashbase == NULL.
137          */
138         in_pcbinfo_init(&V_divcbinfo, &divcbstor, 1, 1);
139 }
140 VNET_SYSINIT(div_init, SI_SUB_PROTO_DOMAIN, SI_ORDER_THIRD, div_init, NULL);
141
142 static void
143 div_destroy(void *unused __unused)
144 {
145
146         in_pcbinfo_destroy(&V_divcbinfo);
147 }
148 VNET_SYSUNINIT(divert, SI_SUB_PROTO_DOMAIN, SI_ORDER_THIRD, div_destroy, NULL);
149
150 /*
151  * IPPROTO_DIVERT is not in the real IP protocol number space; this
152  * function should never be called.  Just in case, drop any packets.
153  */
154 static int
155 div_input(struct mbuf **mp, int *offp, int proto)
156 {
157         struct mbuf *m = *mp;
158
159         KMOD_IPSTAT_INC(ips_noproto);
160         m_freem(m);
161         return (IPPROTO_DONE);
162 }
163
164 static bool
165 div_port_match(const struct inpcb *inp, void *v)
166 {
167         uint16_t nport = *(uint16_t *)v;
168
169         return (inp->inp_lport == nport);
170 }
171
172 /*
173  * Divert a packet by passing it up to the divert socket at port 'port'.
174  *
175  * Setup generic address and protocol structures for div_input routine,
176  * then pass them along with mbuf chain.
177  */
178 static void
179 divert_packet(struct mbuf *m, bool incoming)
180 {
181 #if defined(SCTP) || defined(SCTP_SUPPORT)
182         struct ip *ip;
183 #endif
184         struct inpcb *inp;
185         struct socket *sa;
186         u_int16_t nport;
187         struct sockaddr_in divsrc;
188         struct inpcb_iterator inpi = INP_ITERATOR(&V_divcbinfo,
189             INPLOOKUP_RLOCKPCB, div_port_match, &nport);
190         struct m_tag *mtag;
191
192         NET_EPOCH_ASSERT();
193
194         mtag = m_tag_locate(m, MTAG_IPFW_RULE, 0, NULL);
195         if (mtag == NULL) {
196                 m_freem(m);
197                 return;
198         }
199         /* Assure header */
200         if (m->m_len < sizeof(struct ip) &&
201             (m = m_pullup(m, sizeof(struct ip))) == NULL)
202                 return;
203
204         /* Delayed checksums are currently not compatible with divert. */
205         if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
206                 in_delayed_cksum(m);
207                 m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
208         }
209 #if defined(SCTP) || defined(SCTP_SUPPORT)
210         if (m->m_pkthdr.csum_flags & CSUM_SCTP) {
211                 ip = mtod(m, struct ip *);
212                 sctp_delayed_cksum(m, (uint32_t)(ip->ip_hl << 2));
213                 m->m_pkthdr.csum_flags &= ~CSUM_SCTP;
214         }
215 #endif
216 #ifdef INET6
217         if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA_IPV6) {
218                 in6_delayed_cksum(m, m->m_pkthdr.len -
219                     sizeof(struct ip6_hdr), sizeof(struct ip6_hdr));
220                 m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA_IPV6;
221         }
222 #if defined(SCTP) || defined(SCTP_SUPPORT)
223         if (m->m_pkthdr.csum_flags & CSUM_SCTP_IPV6) {
224                 sctp_delayed_cksum(m, sizeof(struct ip6_hdr));
225                 m->m_pkthdr.csum_flags &= ~CSUM_SCTP_IPV6;
226         }
227 #endif
228 #endif /* INET6 */
229         bzero(&divsrc, sizeof(divsrc));
230         divsrc.sin_len = sizeof(divsrc);
231         divsrc.sin_family = AF_INET;
232         /* record matching rule, in host format */
233         divsrc.sin_port = ((struct ipfw_rule_ref *)(mtag+1))->rulenum;
234         /*
235          * Record receive interface address, if any.
236          * But only for incoming packets.
237          */
238         if (incoming) {
239                 struct ifaddr *ifa;
240                 struct ifnet *ifp;
241
242                 /* Sanity check */
243                 M_ASSERTPKTHDR(m);
244
245                 /* Find IP address for receive interface */
246                 ifp = m->m_pkthdr.rcvif;
247                 CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
248                         if (ifa->ifa_addr->sa_family != AF_INET)
249                                 continue;
250                         divsrc.sin_addr =
251                             ((struct sockaddr_in *) ifa->ifa_addr)->sin_addr;
252                         break;
253                 }
254         }
255         /*
256          * Record the incoming interface name whenever we have one.
257          */
258         if (m->m_pkthdr.rcvif) {
259                 /*
260                  * Hide the actual interface name in there in the
261                  * sin_zero array. XXX This needs to be moved to a
262                  * different sockaddr type for divert, e.g.
263                  * sockaddr_div with multiple fields like
264                  * sockaddr_dl. Presently we have only 7 bytes
265                  * but that will do for now as most interfaces
266                  * are 4 or less + 2 or less bytes for unit.
267                  * There is probably a faster way of doing this,
268                  * possibly taking it from the sockaddr_dl on the iface.
269                  * This solves the problem of a P2P link and a LAN interface
270                  * having the same address, which can result in the wrong
271                  * interface being assigned to the packet when fed back
272                  * into the divert socket. Theoretically if the daemon saves
273                  * and re-uses the sockaddr_in as suggested in the man pages,
274                  * this iface name will come along for the ride.
275                  * (see div_output for the other half of this.)
276                  */
277                 strlcpy(divsrc.sin_zero, m->m_pkthdr.rcvif->if_xname,
278                     sizeof(divsrc.sin_zero));
279         }
280
281         /* Put packet on socket queue, if any */
282         sa = NULL;
283         /* nport is inp_next's context. */
284         nport = htons((u_int16_t)(((struct ipfw_rule_ref *)(mtag+1))->info));
285         while ((inp = inp_next(&inpi)) != NULL) {
286                 sa = inp->inp_socket;
287                 SOCKBUF_LOCK(&sa->so_rcv);
288                 if (sbappendaddr_locked(&sa->so_rcv,
289                     (struct sockaddr *)&divsrc, m, NULL) == 0) {
290                         soroverflow_locked(sa);
291                         sa = NULL;      /* force mbuf reclaim below */
292                 } else
293                         sorwakeup_locked(sa);
294                 /* XXX why does only one socket match? */
295                 INP_RUNLOCK(inp);
296                 break;
297         }
298         if (sa == NULL) {
299                 m_freem(m);
300                 KMOD_IPSTAT_INC(ips_noproto);
301                 KMOD_IPSTAT_DEC(ips_delivered);
302         }
303 }
304
305 /*
306  * Deliver packet back into the IP processing machinery.
307  *
308  * If no address specified, or address is 0.0.0.0, send to ip_output();
309  * otherwise, send to ip_input() and mark as having been received on
310  * the interface with that address.
311  */
312 static int
313 div_output(struct socket *so, struct mbuf *m, struct sockaddr_in *sin,
314     struct mbuf *control)
315 {
316         struct epoch_tracker et;
317         const struct ip *ip;
318         struct m_tag *mtag;
319         struct ipfw_rule_ref *dt;
320         int error, family;
321
322         if (control) {
323                 m_freem(control);               /* XXX */
324                 control = NULL;
325         }
326
327         if (sin != NULL) {
328                 if (sin->sin_family != AF_INET) {
329                         m_freem(m);
330                         return (EAFNOSUPPORT);
331                 }
332                 if (sin->sin_len != sizeof(*sin)) {
333                         m_freem(m);
334                         return (EINVAL);
335                 }
336         }
337
338         /*
339          * An mbuf may hasn't come from userland, but we pretend
340          * that it has.
341          */
342         m->m_pkthdr.rcvif = NULL;
343         m->m_nextpkt = NULL;
344         M_SETFIB(m, so->so_fibnum);
345
346         mtag = m_tag_locate(m, MTAG_IPFW_RULE, 0, NULL);
347         if (mtag == NULL) {
348                 /* this should be normal */
349                 mtag = m_tag_alloc(MTAG_IPFW_RULE, 0,
350                     sizeof(struct ipfw_rule_ref), M_NOWAIT | M_ZERO);
351                 if (mtag == NULL) {
352                         m_freem(m);
353                         return (ENOBUFS);
354                 }
355                 m_tag_prepend(m, mtag);
356         }
357         dt = (struct ipfw_rule_ref *)(mtag+1);
358
359         /* Loopback avoidance and state recovery */
360         if (sin) {
361                 int i;
362
363                 /* set the starting point. We provide a non-zero slot,
364                  * but a non_matching chain_id to skip that info and use
365                  * the rulenum/rule_id.
366                  */
367                 dt->slot = 1; /* dummy, chain_id is invalid */
368                 dt->chain_id = 0;
369                 dt->rulenum = sin->sin_port+1; /* host format ? */
370                 dt->rule_id = 0;
371                 /* XXX: broken for IPv6 */
372                 /*
373                  * Find receive interface with the given name, stuffed
374                  * (if it exists) in the sin_zero[] field.
375                  * The name is user supplied data so don't trust its size
376                  * or that it is zero terminated.
377                  */
378                 for (i = 0; i < sizeof(sin->sin_zero) && sin->sin_zero[i]; i++)
379                         ;
380                 if ( i > 0 && i < sizeof(sin->sin_zero))
381                         m->m_pkthdr.rcvif = ifunit(sin->sin_zero);
382         }
383
384         ip = mtod(m, struct ip *);
385         switch (ip->ip_v) {
386         case IPVERSION:
387                 family = AF_INET;
388                 break;
389 #ifdef INET6
390         case IPV6_VERSION >> 4:
391                 family = AF_INET6;
392                 break;
393 #endif
394         default:
395                 m_freem(m);
396                 return (EAFNOSUPPORT);
397         }
398
399         /* Reinject packet into the system as incoming or outgoing */
400         NET_EPOCH_ENTER(et);
401         if (!sin || sin->sin_addr.s_addr == 0) {
402                 dt->info |= IPFW_IS_DIVERT | IPFW_INFO_OUT;
403                 error = div_output_outbound(family, so, m);
404         } else {
405                 dt->info |= IPFW_IS_DIVERT | IPFW_INFO_IN;
406                 error = div_output_inbound(family, so, m, sin);
407         }
408         NET_EPOCH_EXIT(et);
409
410         return (error);
411 }
412
413 /*
414  * Sends mbuf @m to the wire via ip[6]_output().
415  *
416  * Returns 0 on success or an errno value on failure.  @m is always consumed.
417  */
418 static int
419 div_output_outbound(int family, struct socket *so, struct mbuf *m)
420 {
421         struct ip *const ip = mtod(m, struct ip *);
422         struct mbuf *options;
423         struct inpcb *inp;
424         int error;
425
426         inp = sotoinpcb(so);
427         INP_RLOCK(inp);
428         switch (family) {
429         case AF_INET:
430                 /*
431                  * Don't allow both user specified and setsockopt
432                  * options, and don't allow packet length sizes that
433                  * will crash.
434                  */
435                 if ((((ip->ip_hl << 2) != sizeof(struct ip)) &&
436                     inp->inp_options != NULL) ||
437                     ((u_short)ntohs(ip->ip_len) > m->m_pkthdr.len)) {
438                         INP_RUNLOCK(inp);
439                         m_freem(m);
440                         return (EINVAL);
441                 }
442                 break;
443 #ifdef INET6
444         case AF_INET6:
445             {
446                 struct ip6_hdr *const ip6 = mtod(m, struct ip6_hdr *);
447
448                 /* Don't allow packet length sizes that will crash */
449                 if (((u_short)ntohs(ip6->ip6_plen) > m->m_pkthdr.len)) {
450                         INP_RUNLOCK(inp);
451                         m_freem(m);
452                         return (EINVAL);
453                 }
454                 break;
455             }
456 #endif
457         }
458
459         /* Send packet to output processing */
460         KMOD_IPSTAT_INC(ips_rawout);            /* XXX */
461
462 #ifdef MAC
463         mac_inpcb_create_mbuf(inp, m);
464 #endif
465         /*
466          * Get ready to inject the packet into ip_output().
467          * Just in case socket options were specified on the
468          * divert socket, we duplicate them.  This is done
469          * to avoid having to hold the PCB locks over the call
470          * to ip_output(), as doing this results in a number of
471          * lock ordering complexities.
472          *
473          * Note that we set the multicast options argument for
474          * ip_output() to NULL since it should be invariant that
475          * they are not present.
476          */
477         KASSERT(inp->inp_moptions == NULL,
478             ("multicast options set on a divert socket"));
479         /*
480          * XXXCSJP: It is unclear to me whether or not it makes
481          * sense for divert sockets to have options.  However,
482          * for now we will duplicate them with the INP locks
483          * held so we can use them in ip_output() without
484          * requring a reference to the pcb.
485          */
486         options = NULL;
487         if (inp->inp_options != NULL) {
488                 options = m_dup(inp->inp_options, M_NOWAIT);
489                 if (options == NULL) {
490                         INP_RUNLOCK(inp);
491                         m_freem(m);
492                         return (ENOBUFS);
493                 }
494         }
495         INP_RUNLOCK(inp);
496
497         error = 0;
498         switch (family) {
499         case AF_INET:
500                 error = ip_output(m, options, NULL,
501                     ((so->so_options & SO_DONTROUTE) ? IP_ROUTETOIF : 0)
502                     | IP_ALLOWBROADCAST | IP_RAWOUTPUT, NULL, NULL);
503                 break;
504 #ifdef INET6
505         case AF_INET6:
506                 error = ip6_output(m, NULL, NULL, 0, NULL, NULL, NULL);
507                 break;
508 #endif
509         }
510         if (options != NULL)
511                 m_freem(options);
512
513         return (error);
514 }
515
516 /*
517  * Schedules mbuf @m for local processing via IPv4/IPv6 netisr queue.
518  *
519  * Returns 0 on success or an errno value on failure.  @m is always consumed.
520  */
521 static int
522 div_output_inbound(int family, struct socket *so, struct mbuf *m,
523     struct sockaddr_in *sin)
524 {
525         const struct ip *ip;
526         struct ifaddr *ifa;
527
528         if (m->m_pkthdr.rcvif == NULL) {
529                 /*
530                  * No luck with the name, check by IP address.
531                  * Clear the port and the ifname to make sure
532                  * there are no distractions for ifa_ifwithaddr.
533                  */
534
535                 /* XXX: broken for IPv6 */
536                 bzero(sin->sin_zero, sizeof(sin->sin_zero));
537                 sin->sin_port = 0;
538                 ifa = ifa_ifwithaddr((struct sockaddr *) sin);
539                 if (ifa == NULL) {
540                         m_freem(m);
541                         return (EADDRNOTAVAIL);
542                 }
543                 m->m_pkthdr.rcvif = ifa->ifa_ifp;
544         }
545 #ifdef MAC
546         mac_socket_create_mbuf(so, m);
547 #endif
548         /* Send packet to input processing via netisr */
549         switch (family) {
550         case AF_INET:
551                 ip = mtod(m, struct ip *);
552                 /*
553                  * Restore M_BCAST flag when destination address is
554                  * broadcast. It is expected by ip_tryforward().
555                  */
556                 if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)))
557                         m->m_flags |= M_MCAST;
558                 else if (in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif))
559                         m->m_flags |= M_BCAST;
560                 netisr_queue_src(NETISR_IP, (uintptr_t)so, m);
561                 break;
562 #ifdef INET6
563         case AF_INET6:
564                 netisr_queue_src(NETISR_IPV6, (uintptr_t)so, m);
565                 break;
566 #endif
567         default:
568                 m_freem(m);
569                 return (EINVAL);
570         }
571
572         return (0);
573 }
574
575 static int
576 div_attach(struct socket *so, int proto, struct thread *td)
577 {
578         struct inpcb *inp;
579         int error;
580
581         inp  = sotoinpcb(so);
582         KASSERT(inp == NULL, ("div_attach: inp != NULL"));
583         if (td != NULL) {
584                 error = priv_check(td, PRIV_NETINET_DIVERT);
585                 if (error)
586                         return (error);
587         }
588         error = soreserve(so, div_sendspace, div_recvspace);
589         if (error)
590                 return error;
591         error = in_pcballoc(so, &V_divcbinfo);
592         if (error)
593                 return error;
594         inp = (struct inpcb *)so->so_pcb;
595         inp->inp_ip_p = proto;
596         inp->inp_flags |= INP_HDRINCL;
597         INP_WUNLOCK(inp);
598         return 0;
599 }
600
601 static void
602 div_detach(struct socket *so)
603 {
604         struct inpcb *inp;
605
606         inp = sotoinpcb(so);
607         KASSERT(inp != NULL, ("div_detach: inp == NULL"));
608         INP_WLOCK(inp);
609         in_pcbdetach(inp);
610         in_pcbfree(inp);
611 }
612
613 static int
614 div_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
615 {
616         struct inpcb *inp;
617         int error;
618
619         inp = sotoinpcb(so);
620         KASSERT(inp != NULL, ("div_bind: inp == NULL"));
621         /* in_pcbbind assumes that nam is a sockaddr_in
622          * and in_pcbbind requires a valid address. Since divert
623          * sockets don't we need to make sure the address is
624          * filled in properly.
625          * XXX -- divert should not be abusing in_pcbind
626          * and should probably have its own family.
627          */
628         if (nam->sa_family != AF_INET)
629                 return EAFNOSUPPORT;
630         if (nam->sa_len != sizeof(struct sockaddr_in))
631                 return EINVAL;
632         ((struct sockaddr_in *)nam)->sin_addr.s_addr = INADDR_ANY;
633         INP_WLOCK(inp);
634         INP_HASH_WLOCK(&V_divcbinfo);
635         error = in_pcbbind(inp, nam, td->td_ucred);
636         INP_HASH_WUNLOCK(&V_divcbinfo);
637         INP_WUNLOCK(inp);
638         return error;
639 }
640
641 static int
642 div_shutdown(struct socket *so)
643 {
644         struct inpcb *inp;
645
646         inp = sotoinpcb(so);
647         KASSERT(inp != NULL, ("div_shutdown: inp == NULL"));
648         INP_WLOCK(inp);
649         socantsendmore(so);
650         INP_WUNLOCK(inp);
651         return 0;
652 }
653
654 static int
655 div_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *nam,
656     struct mbuf *control, struct thread *td)
657 {
658
659         /* Packet must have a header (but that's about it) */
660         if (m->m_len < sizeof (struct ip) &&
661             (m = m_pullup(m, sizeof (struct ip))) == NULL) {
662                 KMOD_IPSTAT_INC(ips_toosmall);
663                 if (control != NULL)
664                         m_freem(control);
665                 m_freem(m);
666                 return EINVAL;
667         }
668
669         /* Send packet */
670         return div_output(so, m, (struct sockaddr_in *)nam, control);
671 }
672
673 static int
674 div_pcblist(SYSCTL_HANDLER_ARGS)
675 {
676         struct inpcb_iterator inpi = INP_ALL_ITERATOR(&V_divcbinfo,
677             INPLOOKUP_RLOCKPCB);
678         struct xinpgen xig;
679         struct inpcb *inp;
680         int error;
681
682         if (req->newptr != 0)
683                 return EPERM;
684
685         if (req->oldptr == 0) {
686                 int n;
687
688                 n = V_divcbinfo.ipi_count;
689                 n += imax(n / 8, 10);
690                 req->oldidx = 2 * (sizeof xig) + n * sizeof(struct xinpcb);
691                 return 0;
692         }
693
694         if ((error = sysctl_wire_old_buffer(req, 0)) != 0)
695                 return (error);
696
697         bzero(&xig, sizeof(xig));
698         xig.xig_len = sizeof xig;
699         xig.xig_count = V_divcbinfo.ipi_count;
700         xig.xig_gen = V_divcbinfo.ipi_gencnt;
701         xig.xig_sogen = so_gencnt;
702         error = SYSCTL_OUT(req, &xig, sizeof xig);
703         if (error)
704                 return error;
705
706         while ((inp = inp_next(&inpi)) != NULL) {
707                 if (inp->inp_gencnt <= xig.xig_gen) {
708                         struct xinpcb xi;
709
710                         in_pcbtoxinpcb(inp, &xi);
711                         error = SYSCTL_OUT(req, &xi, sizeof xi);
712                         if (error) {
713                                 INP_RUNLOCK(inp);
714                                 break;
715                         }
716                 }
717         }
718
719         if (!error) {
720                 /*
721                  * Give the user an updated idea of our state.
722                  * If the generation differs from what we told
723                  * her before, she knows that something happened
724                  * while we were processing this request, and it
725                  * might be necessary to retry.
726                  */
727                 xig.xig_gen = V_divcbinfo.ipi_gencnt;
728                 xig.xig_sogen = so_gencnt;
729                 xig.xig_count = V_divcbinfo.ipi_count;
730                 error = SYSCTL_OUT(req, &xig, sizeof xig);
731         }
732
733         return (error);
734 }
735
736 #ifdef SYSCTL_NODE
737 static SYSCTL_NODE(_net_inet, IPPROTO_DIVERT, divert,
738     CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
739     "IPDIVERT");
740 SYSCTL_PROC(_net_inet_divert, OID_AUTO, pcblist,
741    CTLTYPE_OPAQUE | CTLFLAG_RD | CTLFLAG_MPSAFE,
742     NULL, 0, div_pcblist, "S,xinpcb",
743     "List of active divert sockets");
744 #endif
745
746 struct pr_usrreqs div_usrreqs = {
747         .pru_attach =           div_attach,
748         .pru_bind =             div_bind,
749         .pru_control =          in_control,
750         .pru_detach =           div_detach,
751         .pru_peeraddr =         in_getpeeraddr,
752         .pru_send =             div_send,
753         .pru_shutdown =         div_shutdown,
754         .pru_sockaddr =         in_getsockaddr,
755         .pru_sosetlabel =       in_pcbsosetlabel
756 };
757
758 struct protosw div_protosw = {
759         .pr_type =              SOCK_RAW,
760         .pr_protocol =          IPPROTO_DIVERT,
761         .pr_flags =             PR_ATOMIC|PR_ADDR,
762         .pr_input =             div_input,
763         .pr_usrreqs =           &div_usrreqs
764 };
765
766 static int
767 div_modevent(module_t mod, int type, void *unused)
768 {
769         int err = 0;
770
771         switch (type) {
772         case MOD_LOAD:
773                 /*
774                  * Protocol will be initialized by pf_proto_register().
775                  * We don't have to register ip_protox because we are not
776                  * a true IP protocol that goes over the wire.
777                  */
778                 err = pf_proto_register(PF_INET, &div_protosw);
779                 if (err != 0)
780                         return (err);
781                 ip_divert_ptr = divert_packet;
782                 break;
783         case MOD_QUIESCE:
784                 /*
785                  * IPDIVERT may normally not be unloaded because of the
786                  * potential race conditions.  Tell kldunload we can't be
787                  * unloaded unless the unload is forced.
788                  */
789                 err = EPERM;
790                 break;
791         case MOD_UNLOAD:
792                 /*
793                  * Forced unload.
794                  *
795                  * Module ipdivert can only be unloaded if no sockets are
796                  * connected.  Maybe this can be changed later to forcefully
797                  * disconnect any open sockets.
798                  *
799                  * XXXRW: Note that there is a slight race here, as a new
800                  * socket open request could be spinning on the lock and then
801                  * we destroy the lock.
802                  */
803                 INP_INFO_WLOCK(&V_divcbinfo);
804                 if (V_divcbinfo.ipi_count != 0) {
805                         err = EBUSY;
806                         INP_INFO_WUNLOCK(&V_divcbinfo);
807                         break;
808                 }
809                 ip_divert_ptr = NULL;
810                 err = pf_proto_unregister(PF_INET, IPPROTO_DIVERT, SOCK_RAW);
811                 INP_INFO_WUNLOCK(&V_divcbinfo);
812 #ifndef VIMAGE
813                 div_destroy(NULL);
814 #endif
815                 break;
816         default:
817                 err = EOPNOTSUPP;
818                 break;
819         }
820         return err;
821 }
822
823 static moduledata_t ipdivertmod = {
824         "ipdivert",
825         div_modevent,
826         0
827 };
828
829 DECLARE_MODULE(ipdivert, ipdivertmod, SI_SUB_PROTO_FIREWALL, SI_ORDER_ANY);
830 MODULE_DEPEND(ipdivert, ipfw, 3, 3, 3);
831 MODULE_VERSION(ipdivert, 1);