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