2 * Copyright (c) 1982, 1986, 1988, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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.
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
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 $
41 #include "opt_ipdivert.h"
42 #include "opt_ipsec.h"
45 #error "IPDIVERT requires INET."
48 #include <sys/param.h>
49 #include <sys/kernel.h>
50 #include <sys/malloc.h>
52 #include <sys/socket.h>
53 #include <sys/protosw.h>
54 #include <sys/socketvar.h>
55 #include <sys/sysctl.h>
56 #include <sys/systm.h>
59 #include <sys/thread2.h>
60 #include <sys/in_cksum.h>
63 #include <sys/msgport.h>
66 #include <vm/vm_zone.h>
69 #include <net/route.h>
71 #include <net/netmsg2.h>
74 #include <netinet/in.h>
75 #include <netinet/in_systm.h>
76 #include <netinet/ip.h>
77 #include <netinet/in_pcb.h>
78 #include <netinet/in_var.h>
79 #include <netinet/ip_var.h>
80 #include <netinet/ip_divert.h>
87 * Allocate enough space to hold a full IP packet
89 #define DIVSNDQ (65536 + 100)
90 #define DIVRCVQ (65536 + 100)
92 #define DIV_IS_OUTPUT(sin) ((sin) == NULL || (sin)->sin_addr.s_addr == 0)
94 #define DIV_OUTPUT 0x10000
95 #define DIV_INPUT 0x20000
98 * Divert sockets work in conjunction with ipfw, see the divert(4)
99 * manpage for features.
100 * Internally, packets selected by ipfw in ip_input() or ip_output(),
101 * and never diverted before, are passed to the input queue of the
102 * divert socket with a given 'divert_port' number (as specified in
103 * the matching ipfw rule), and they are tagged with a 16 bit cookie
104 * (representing the rule number of the matching ipfw rule), which
105 * is passed to process reading from the socket.
107 * Packets written to the divert socket are again tagged with a cookie
108 * (usually the same as above) and a destination address.
109 * If the destination address is INADDR_ANY then the packet is
110 * treated as outgoing and sent to ip_output(), otherwise it is
111 * treated as incoming and sent to ip_input().
112 * In both cases, the packet is tagged with the cookie.
114 * On reinjection, processing in ip_input() and ip_output()
115 * will be exactly the same as for the original packet, except that
116 * ipfw processing will start at the rule number after the one
117 * written in the cookie (so, tagging a packet with a cookie of 0
118 * will cause it to be effectively considered as a standard packet).
121 /* Internal variables */
122 static struct inpcbinfo divcbinfo
;
124 static u_long div_sendspace
= DIVSNDQ
; /* XXX sysctl ? */
125 static u_long div_recvspace
= DIVRCVQ
; /* XXX sysctl ? */
127 static struct mbuf
*ip_divert(struct mbuf
*, int, int);
130 * Initialize divert connection block queue.
135 in_pcbinfo_init(&divcbinfo
);
137 * XXX We don't use the hash list for divert IP, but it's easier
138 * to allocate a one entry hash list than it is to check all
139 * over the place for hashbase == NULL.
141 divcbinfo
.hashbase
= hashinit(1, M_PCB
, &divcbinfo
.hashmask
);
142 divcbinfo
.porthashbase
= hashinit(1, M_PCB
, &divcbinfo
.porthashmask
);
143 divcbinfo
.wildcardhashbase
= hashinit(1, M_PCB
,
144 &divcbinfo
.wildcardhashmask
);
145 divcbinfo
.ipi_zone
= zinit("divcb", sizeof(struct inpcb
),
146 maxsockets
, ZONE_INTERRUPT
, 0);
147 ip_divert_p
= ip_divert
;
151 * IPPROTO_DIVERT is not a real IP protocol; don't allow any packets
152 * with that protocol number to enter the system from the outside.
155 div_input(struct mbuf
*m
, ...)
157 ipstat
.ips_noproto
++;
162 div_soport(struct socket
*so
, struct sockaddr
*nam
,
163 struct mbuf
**mptr
, int req
)
165 struct sockaddr_in
*sin
;
169 /* Except for send(), everything happens on CPU0 */
171 return cpu0_soport(so
, nam
, mptr
, req
);
173 sin
= (struct sockaddr_in
*)nam
;
177 m
->m_pkthdr
.rcvif
= NULL
;
178 dir
= DIV_IS_OUTPUT(sin
) ? IP_MPORT_OUT
: IP_MPORT_IN
;
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.
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.
193 for (i
= 0; sin
->sin_zero
[i
] && i
< sizeof(sin
->sin_zero
); i
++)
195 if (i
> 0 && i
< sizeof(sin
->sin_zero
))
196 m
->m_pkthdr
.rcvif
= ifunit(sin
->sin_zero
);
199 if (dir
== IP_MPORT_IN
&& m
->m_pkthdr
.rcvif
== NULL
) {
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.
205 * Be careful not to trash sin->sin_port; it will
206 * be used later in div_output().
211 bzero(sin
->sin_zero
, sizeof(sin
->sin_zero
));
212 sin_port
= sin
->sin_port
; /* save */
214 ifa
= ifa_ifwithaddr((struct sockaddr
*)sin
);
220 sin
->sin_port
= sin_port
; /* restore */
221 m
->m_pkthdr
.rcvif
= ifa
->ifa_ifp
;
224 return ip_mport(mptr
, dir
);
228 * Divert a packet by passing it up to the divert socket at port 'port'.
230 * Setup generic address and protocol structures for div_input routine,
231 * then pass them along with mbuf chain.
234 div_packet(struct mbuf
*m
, int incoming
, int port
)
236 struct sockaddr_in divsrc
= { sizeof divsrc
, AF_INET
};
240 struct divert_info
*divinfo
;
243 /* Locate the divert info */
244 mtag
= m_tag_find(m
, PACKET_TAG_IPFW_DIVERT
, NULL
);
245 divinfo
= m_tag_data(mtag
);
246 divsrc
.sin_port
= divinfo
->skipto
;
249 * Record receive interface address, if any.
250 * But only for incoming packets.
252 divsrc
.sin_addr
.s_addr
= 0;
254 struct ifaddr_container
*ifac
;
256 /* Find IP address for receive interface */
257 TAILQ_FOREACH(ifac
, &m
->m_pkthdr
.rcvif
->if_addrheads
[mycpuid
],
259 struct ifaddr
*ifa
= ifac
->ifa
;
261 if (ifa
->ifa_addr
== NULL
)
263 if (ifa
->ifa_addr
->sa_family
!= AF_INET
)
266 ((struct sockaddr_in
*) ifa
->ifa_addr
)->sin_addr
;
271 * Record the incoming interface name whenever we have one.
273 if (m
->m_pkthdr
.rcvif
) {
275 * Hide the actual interface name in there in the
276 * sin_zero array. XXX This needs to be moved to a
277 * different sockaddr type for divert, e.g.
278 * sockaddr_div with multiple fields like
279 * sockaddr_dl. Presently we have only 7 bytes
280 * but that will do for now as most interfaces
281 * are 4 or less + 2 or less bytes for unit.
282 * There is probably a faster way of doing this,
283 * possibly taking it from the sockaddr_dl on the iface.
284 * This solves the problem of a P2P link and a LAN interface
285 * having the same address, which can result in the wrong
286 * interface being assigned to the packet when fed back
287 * into the divert socket. Theoretically if the daemon saves
288 * and re-uses the sockaddr_in as suggested in the man pages,
289 * this iface name will come along for the ride.
290 * (see div_output for the other half of this.)
292 ksnprintf(divsrc
.sin_zero
, sizeof divsrc
.sin_zero
,
293 m
->m_pkthdr
.rcvif
->if_xname
);
296 /* Put packet on socket queue, if any */
298 nport
= htons((u_int16_t
)port
);
302 * Following loop to locate the inpcb is MPSAFE since the inpcb
303 * insertion/removal happens on the same CPU (CPU0), however,
304 * saving/testing the socket pointer is not MPSAFE. So we still
305 * need to hold BGL here.
308 LIST_FOREACH(inp
, &divcbinfo
.pcblisthead
, inp_list
) {
309 if (inp
->inp_flags
& INP_PLACEMARKER
)
311 if (inp
->inp_lport
== nport
)
312 sa
= inp
->inp_socket
;
315 if (ssb_appendaddr(&sa
->so_rcv
, (struct sockaddr
*)&divsrc
, m
,
324 ipstat
.ips_noproto
++;
325 ipstat
.ips_delivered
--;
331 div_packet_handler(struct netmsg
*nmsg
)
333 struct netmsg_packet
*nmp
;
334 struct lwkt_msg
*msg
;
336 int port
, incoming
= 0;
338 nmp
= (struct netmsg_packet
*)nmsg
;
341 msg
= &nmsg
->nm_lmsg
;
342 port
= msg
->u
.ms_result32
& 0xffff;
343 if (msg
->u
.ms_result32
& DIV_INPUT
)
346 div_packet(m
, incoming
, port
);
351 divert_packet(struct mbuf
*m
, int incoming
)
354 struct divert_info
*divinfo
;
360 if (m
->m_len
< sizeof(struct ip
) &&
361 (m
= m_pullup(m
, sizeof(struct ip
))) == NULL
)
364 mtag
= m_tag_find(m
, PACKET_TAG_IPFW_DIVERT
, NULL
);
365 KASSERT(mtag
!= NULL
, ("%s no divert tag!", __func__
));
366 divinfo
= m_tag_data(mtag
);
368 port
= divinfo
->port
;
369 KASSERT(port
!= 0, ("%s: port=0", __func__
));
373 struct netmsg_packet
*nmp
;
374 struct lwkt_msg
*msg
;
376 nmp
= &m
->m_hdr
.mh_netmsg
;
377 netmsg_init(&nmp
->nm_netmsg
, &netisr_apanic_rport
, MSGF_MPSAFE
,
381 msg
= &nmp
->nm_netmsg
.nm_lmsg
;
382 msg
->u
.ms_result32
= port
; /* port is 16bits */
384 msg
->u
.ms_result32
|= DIV_INPUT
;
386 msg
->u
.ms_result32
|= DIV_OUTPUT
;
388 lwkt_sendmsg(cpu_portfn(0), &nmp
->nm_netmsg
.nm_lmsg
);
391 div_packet(m
, incoming
, port
);
395 * Deliver packet back into the IP processing machinery.
397 * If no address specified, or address is 0.0.0.0, send to ip_output();
398 * otherwise, send to ip_input() and mark as having been received on
399 * the interface with that address.
402 div_output(struct socket
*so
, struct mbuf
*m
,
403 struct sockaddr_in
*sin
, struct mbuf
*control
)
407 struct divert_info
*divinfo
;
410 m_freem(control
); /* XXX */
413 * Prepare the tag for divert info. Note that a packet
414 * with a 0 tag in mh_data is effectively untagged,
415 * so we could optimize that case.
417 mtag
= m_tag_get(PACKET_TAG_IPFW_DIVERT
, sizeof(*divinfo
), MB_DONTWAIT
);
422 m_tag_prepend(m
, mtag
);
424 /* Loopback avoidance and state recovery */
425 divinfo
= m_tag_data(mtag
);
427 divinfo
->skipto
= sin
->sin_port
;
431 /* Reinject packet into the system as incoming or outgoing */
432 if (DIV_IS_OUTPUT(sin
)) {
433 struct ip
*const ip
= mtod(m
, struct ip
*);
435 /* Don't allow packet length sizes that will crash */
436 if ((u_short
)ntohs(ip
->ip_len
) > m
->m_pkthdr
.len
) {
441 /* Convert fields to host order for ip_output() */
442 ip
->ip_len
= ntohs(ip
->ip_len
);
443 ip
->ip_off
= ntohs(ip
->ip_off
);
445 /* Send packet to output processing */
446 ipstat
.ips_rawout
++; /* XXX */
447 error
= ip_output(m
, NULL
, NULL
,
448 (so
->so_options
& SO_DONTROUTE
) |
449 IP_ALLOWBROADCAST
| IP_RAWOUTPUT
,
462 div_attach(struct socket
*so
, int proto
, struct pru_attach_info
*ai
)
470 if ((error
= priv_check_cred(ai
->p_ucred
, PRIV_ROOT
, NULL_CRED_OKAY
)) != 0)
473 error
= soreserve(so
, div_sendspace
, div_recvspace
, ai
->sb_rlimit
);
476 error
= in_pcballoc(so
, &divcbinfo
);
479 inp
= (struct inpcb
*)so
->so_pcb
;
480 inp
->inp_ip_p
= proto
;
481 inp
->inp_vflag
|= INP_IPV4
;
482 inp
->inp_flags
|= INP_HDRINCL
;
484 * The socket is always "connected" because
485 * we always know "where" to send the packet.
487 so
->so_state
|= SS_ISCONNECTED
;
492 div_detach(struct socket
*so
)
504 div_abort(struct socket
*so
)
506 soisdisconnected(so
);
507 return div_detach(so
);
511 div_disconnect(struct socket
*so
)
513 if (!(so
->so_state
& SS_ISCONNECTED
))
515 return div_abort(so
);
519 div_bind(struct socket
*so
, struct sockaddr
*nam
, struct thread
*td
)
524 * in_pcbbind assumes that nam is a sockaddr_in
525 * and in_pcbbind requires a valid address. Since divert
526 * sockets don't we need to make sure the address is
527 * filled in properly.
528 * XXX -- divert should not be abusing in_pcbind
529 * and should probably have its own family.
531 if (nam
->sa_family
!= AF_INET
) {
532 error
= EAFNOSUPPORT
;
534 ((struct sockaddr_in
*)nam
)->sin_addr
.s_addr
= INADDR_ANY
;
535 error
= in_pcbbind(so
->so_pcb
, nam
, td
);
541 div_shutdown(struct socket
*so
)
548 div_send(struct socket
*so
, int flags
, struct mbuf
*m
, struct sockaddr
*nam
,
549 struct mbuf
*control
, struct thread
*td
)
551 /* Length check already done in ip_mport() */
552 KASSERT(m
->m_len
>= sizeof(struct ip
), ("IP header not in one mbuf"));
555 return div_output(so
, m
, (struct sockaddr_in
*)nam
, control
);
558 SYSCTL_DECL(_net_inet_divert
);
559 SYSCTL_PROC(_net_inet_divert
, OID_AUTO
, pcblist
, CTLFLAG_RD
, &divcbinfo
, 0,
560 in_pcblist_global
, "S,xinpcb", "List of active divert sockets");
562 struct pr_usrreqs div_usrreqs
= {
563 .pru_abort
= div_abort
,
564 .pru_accept
= pru_accept_notsupp
,
565 .pru_attach
= div_attach
,
566 .pru_bind
= div_bind
,
567 .pru_connect
= pru_connect_notsupp
,
568 .pru_connect2
= pru_connect2_notsupp
,
569 .pru_control
= in_control
,
570 .pru_detach
= div_detach
,
571 .pru_disconnect
= div_disconnect
,
572 .pru_listen
= pru_listen_notsupp
,
573 .pru_peeraddr
= in_setpeeraddr
,
574 .pru_rcvd
= pru_rcvd_notsupp
,
575 .pru_rcvoob
= pru_rcvoob_notsupp
,
576 .pru_send
= div_send
,
577 .pru_sense
= pru_sense_null
,
578 .pru_shutdown
= div_shutdown
,
579 .pru_sockaddr
= in_setsockaddr
,
580 .pru_sosend
= sosend
,
581 .pru_soreceive
= soreceive
,
586 ip_divert_out(struct mbuf
*m
, int tee
)
588 struct mbuf
*clone
= NULL
;
589 struct ip
*ip
= mtod(m
, struct ip
*);
591 /* Clone packet if we're doing a 'tee' */
593 clone
= m_dup(m
, MB_DONTWAIT
);
597 * delayed checksums are not currently compatible
598 * with divert sockets.
600 if (m
->m_pkthdr
.csum_flags
& CSUM_DELAY_DATA
) {
602 m
->m_pkthdr
.csum_flags
&= ~CSUM_DELAY_DATA
;
605 /* Restore packet header fields to original values */
606 ip
->ip_len
= htons(ip
->ip_len
);
607 ip
->ip_off
= htons(ip
->ip_off
);
609 /* Deliver packet to divert input routine */
612 /* If 'tee', continue with original packet */
617 ip_divert_in(struct mbuf
*m
, int tee
)
619 struct mbuf
*clone
= NULL
;
620 struct ip
*ip
= mtod(m
, struct ip
*);
623 if (ip
->ip_off
& (IP_MF
| IP_OFFMASK
)) {
624 const struct divert_info
*divinfo
;
629 * Only trust divert info in the fragment
632 frag_off
= ip
->ip_off
<< 3;
634 mtag
= m_tag_find(m
, PACKET_TAG_IPFW_DIVERT
, NULL
);
635 m_tag_delete(m
, mtag
);
639 * Attempt reassembly; if it succeeds, proceed.
640 * ip_reass() will return a different mbuf.
645 ip
= mtod(m
, struct ip
*);
647 /* Caller need to redispatch the packet, if it is for us */
648 m
->m_pkthdr
.fw_flags
|= FW_MBUF_REDISPATCH
;
651 * Get the header length of the reassembled
654 hlen
= IP_VHL_HL(ip
->ip_vhl
) << 2;
657 * Restore original checksum before diverting
661 ip
->ip_len
= htons(ip
->ip_len
);
662 ip
->ip_off
= htons(ip
->ip_off
);
664 if (hlen
== sizeof(struct ip
))
665 ip
->ip_sum
= in_cksum_hdr(ip
);
667 ip
->ip_sum
= in_cksum(m
, hlen
);
668 ip
->ip_off
= ntohs(ip
->ip_off
);
669 ip
->ip_len
= ntohs(ip
->ip_len
);
672 * Only use the saved divert info
674 mtag
= m_tag_find(m
, PACKET_TAG_IPFW_DIVERT
, NULL
);
676 /* Wrongly configured ipfw */
677 kprintf("ip_input no divert info\n");
681 divinfo
= m_tag_data(mtag
);
686 * Divert or tee packet to the divert protocol if
690 /* Clone packet if we're doing a 'tee' */
692 clone
= m_dup(m
, MB_DONTWAIT
);
695 * Restore packet header fields to original
698 ip
->ip_len
= htons(ip
->ip_len
);
699 ip
->ip_off
= htons(ip
->ip_off
);
701 /* Deliver packet to divert input routine */
704 /* Catch invalid reference */
708 ipstat
.ips_delivered
++;
710 /* If 'tee', continue with original packet */
713 * Complete processing of the packet.
714 * XXX Better safe than sorry, remove the DIVERT tag.
716 mtag
= m_tag_find(clone
, PACKET_TAG_IPFW_DIVERT
, NULL
);
717 KKASSERT(mtag
!= NULL
);
718 m_tag_delete(clone
, mtag
);
724 ip_divert(struct mbuf
*m
, int tee
, int incoming
)
729 ret
= ip_divert_in(m
, tee
);
731 ret
= ip_divert_out(m
, tee
);