Home | History | Annotate | Line # | Download | only in netinet
udp_usrreq.c revision 1.190.2.1
      1 /*	$NetBSD: udp_usrreq.c,v 1.190.2.1 2013/07/17 03:16:31 rmind Exp $	*/
      2 
      3 /*
      4  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      5  * 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 project 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 PROJECT 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 PROJECT 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 /*
     33  * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
     34  *	The Regents of the University of California.  All rights reserved.
     35  *
     36  * Redistribution and use in source and binary forms, with or without
     37  * modification, are permitted provided that the following conditions
     38  * are met:
     39  * 1. Redistributions of source code must retain the above copyright
     40  *    notice, this list of conditions and the following disclaimer.
     41  * 2. Redistributions in binary form must reproduce the above copyright
     42  *    notice, this list of conditions and the following disclaimer in the
     43  *    documentation and/or other materials provided with the distribution.
     44  * 3. Neither the name of the University nor the names of its contributors
     45  *    may be used to endorse or promote products derived from this software
     46  *    without specific prior written permission.
     47  *
     48  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     49  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     50  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     51  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     52  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     53  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     54  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     55  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     56  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     57  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     58  * SUCH DAMAGE.
     59  *
     60  *	@(#)udp_usrreq.c	8.6 (Berkeley) 5/23/95
     61  */
     62 
     63 /*
     64  * UDP protocol implementation.
     65  * Per RFC 768, August, 1980.
     66  */
     67 
     68 #include <sys/cdefs.h>
     69 __KERNEL_RCSID(0, "$NetBSD: udp_usrreq.c,v 1.190.2.1 2013/07/17 03:16:31 rmind Exp $");
     70 
     71 #include "opt_inet.h"
     72 #include "opt_compat_netbsd.h"
     73 #include "opt_ipsec.h"
     74 #include "opt_inet_csum.h"
     75 #include "opt_ipkdb.h"
     76 #include "opt_mbuftrace.h"
     77 
     78 #include <sys/param.h>
     79 #include <sys/mbuf.h>
     80 #include <sys/protosw.h>
     81 #include <sys/socket.h>
     82 #include <sys/socketvar.h>
     83 #include <sys/systm.h>
     84 #include <sys/kmem.h>
     85 #include <sys/domain.h>
     86 #include <sys/sysctl.h>
     87 
     88 #include <net/if.h>
     89 #include <net/route.h>
     90 
     91 #include <netinet/in.h>
     92 #include <netinet/in_systm.h>
     93 #include <netinet/in_var.h>
     94 #include <netinet/ip.h>
     95 #include <netinet/in_pcb.h>
     96 #include <netinet/ip_var.h>
     97 #include <netinet/ip_icmp.h>
     98 #include <netinet/udp.h>
     99 #include <netinet/udp_var.h>
    100 #include <netinet/udp_private.h>
    101 
    102 #ifdef INET6
    103 #include <netinet/ip6.h>
    104 #include <netinet/icmp6.h>
    105 #include <netinet6/ip6_var.h>
    106 #include <netinet6/ip6_private.h>
    107 #include <netinet6/in6_pcb.h>
    108 #include <netinet6/udp6_var.h>
    109 #include <netinet6/udp6_private.h>
    110 #endif
    111 
    112 #ifndef INET6
    113 /* always need ip6.h for IP6_EXTHDR_GET */
    114 #include <netinet/ip6.h>
    115 #endif
    116 
    117 #ifdef IPSEC
    118 #include <netipsec/ipsec.h>
    119 #include <netipsec/ipsec_var.h>
    120 #include <netipsec/ipsec_private.h>
    121 #include <netipsec/esp.h>
    122 #ifdef INET6
    123 #include <netipsec/ipsec6.h>
    124 #endif
    125 #endif	/* IPSEC */
    126 
    127 #ifdef COMPAT_50
    128 #include <compat/sys/socket.h>
    129 #endif
    130 
    131 #ifdef IPKDB
    132 #include <ipkdb/ipkdb.h>
    133 #endif
    134 
    135 int	udpcksum = 1;
    136 int	udp_do_loopback_cksum = 0;
    137 
    138 inpcbtable_t *		udbtable __read_mostly;
    139 percpu_t *		udpstat_percpu;
    140 
    141 #ifdef INET
    142 #ifdef IPSEC
    143 static int udp4_espinudp (struct mbuf **, int, struct sockaddr *,
    144 	struct socket *);
    145 #endif
    146 static void udp4_sendup (struct mbuf *, int, struct sockaddr *,
    147 	struct socket *);
    148 static int udp4_realinput (struct sockaddr_in *, struct sockaddr_in *,
    149 	struct mbuf **, int);
    150 static int udp4_input_checksum(struct mbuf *, const struct udphdr *, int, int);
    151 #endif
    152 
    153 #ifndef UDBHASHSIZE
    154 #define	UDBHASHSIZE	128
    155 #endif
    156 int	udbhashsize = UDBHASHSIZE;
    157 
    158 static int	udp_sendspace = 9216;
    159 static int	udp_recvspace = 40 * (1024 + sizeof(struct sockaddr_in));
    160 
    161 #ifdef MBUFTRACE
    162 struct mowner udp_mowner = MOWNER_INIT("udp", "");
    163 struct mowner udp_rx_mowner = MOWNER_INIT("udp", "rx");
    164 struct mowner udp_tx_mowner = MOWNER_INIT("udp", "tx");
    165 #endif
    166 
    167 #ifdef UDP_CSUM_COUNTERS
    168 #include <sys/device.h>
    169 
    170 #if defined(INET)
    171 struct evcnt udp_hwcsum_bad = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
    172     NULL, "udp", "hwcsum bad");
    173 struct evcnt udp_hwcsum_ok = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
    174     NULL, "udp", "hwcsum ok");
    175 struct evcnt udp_hwcsum_data = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
    176     NULL, "udp", "hwcsum data");
    177 struct evcnt udp_swcsum = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
    178     NULL, "udp", "swcsum");
    179 
    180 EVCNT_ATTACH_STATIC(udp_hwcsum_bad);
    181 EVCNT_ATTACH_STATIC(udp_hwcsum_ok);
    182 EVCNT_ATTACH_STATIC(udp_hwcsum_data);
    183 EVCNT_ATTACH_STATIC(udp_swcsum);
    184 #endif /* defined(INET) */
    185 
    186 #define	UDP_CSUM_COUNTER_INCR(ev)	(ev)->ev_count++
    187 #else
    188 #define	UDP_CSUM_COUNTER_INCR(ev)	/* nothing */
    189 #endif /* UDP_CSUM_COUNTERS */
    190 
    191 static void sysctl_net_inet_udp_setup(struct sysctllog **);
    192 
    193 void
    194 udp_init(void)
    195 {
    196 	udbtable = inpcb_init(udbhashsize, udbhashsize, 0);
    197 	sysctl_net_inet_udp_setup(NULL);
    198 
    199 	MOWNER_ATTACH(&udp_tx_mowner);
    200 	MOWNER_ATTACH(&udp_rx_mowner);
    201 	MOWNER_ATTACH(&udp_mowner);
    202 
    203 #ifdef INET
    204 	udpstat_percpu = percpu_alloc(sizeof(uint64_t) * UDP_NSTATS);
    205 #endif
    206 }
    207 
    208 /*
    209  * Checksum extended UDP header and data.
    210  */
    211 
    212 int
    213 udp_input_checksum(int af, struct mbuf *m, const struct udphdr *uh,
    214     int iphlen, int len)
    215 {
    216 	switch (af) {
    217 #ifdef INET
    218 	case AF_INET:
    219 		return udp4_input_checksum(m, uh, iphlen, len);
    220 #endif
    221 #ifdef INET6
    222 	case AF_INET6:
    223 		return udp6_input_checksum(m, uh, iphlen, len);
    224 #endif
    225 	default:
    226 		KASSERT(false);
    227 	}
    228 	return -1;
    229 }
    230 
    231 #ifdef INET
    232 
    233 /*
    234  * Checksum extended UDP header and data.
    235  */
    236 
    237 static int
    238 udp4_input_checksum(struct mbuf *m, const struct udphdr *uh,
    239     int iphlen, int len)
    240 {
    241 
    242 	/*
    243 	 * XXX it's better to record and check if this mbuf is
    244 	 * already checked.
    245 	 */
    246 
    247 	if (uh->uh_sum == 0)
    248 		return 0;
    249 
    250 	switch (m->m_pkthdr.csum_flags &
    251 	    ((m->m_pkthdr.rcvif->if_csum_flags_rx & M_CSUM_UDPv4) |
    252 	    M_CSUM_TCP_UDP_BAD | M_CSUM_DATA)) {
    253 	case M_CSUM_UDPv4|M_CSUM_TCP_UDP_BAD:
    254 		UDP_CSUM_COUNTER_INCR(&udp_hwcsum_bad);
    255 		goto badcsum;
    256 
    257 	case M_CSUM_UDPv4|M_CSUM_DATA: {
    258 		u_int32_t hw_csum = m->m_pkthdr.csum_data;
    259 
    260 		UDP_CSUM_COUNTER_INCR(&udp_hwcsum_data);
    261 		if (m->m_pkthdr.csum_flags & M_CSUM_NO_PSEUDOHDR) {
    262 			const struct ip *ip =
    263 			    mtod(m, const struct ip *);
    264 
    265 			hw_csum = in_cksum_phdr(ip->ip_src.s_addr,
    266 			    ip->ip_dst.s_addr,
    267 			    htons(hw_csum + len + IPPROTO_UDP));
    268 		}
    269 		if ((hw_csum ^ 0xffff) != 0)
    270 			goto badcsum;
    271 		break;
    272 	}
    273 
    274 	case M_CSUM_UDPv4:
    275 		/* Checksum was okay. */
    276 		UDP_CSUM_COUNTER_INCR(&udp_hwcsum_ok);
    277 		break;
    278 
    279 	default:
    280 		/*
    281 		 * Need to compute it ourselves.  Maybe skip checksum
    282 		 * on loopback interfaces.
    283 		 */
    284 		if (__predict_true(!(m->m_pkthdr.rcvif->if_flags &
    285 				     IFF_LOOPBACK) ||
    286 				   udp_do_loopback_cksum)) {
    287 			UDP_CSUM_COUNTER_INCR(&udp_swcsum);
    288 			if (in4_cksum(m, IPPROTO_UDP, iphlen, len) != 0)
    289 				goto badcsum;
    290 		}
    291 		break;
    292 	}
    293 
    294 	return 0;
    295 
    296 badcsum:
    297 	UDP_STATINC(UDP_STAT_BADSUM);
    298 	return -1;
    299 }
    300 
    301 void
    302 udp_input(struct mbuf *m, ...)
    303 {
    304 	va_list ap;
    305 	struct sockaddr_in src, dst;
    306 	struct ip *ip;
    307 	struct udphdr *uh;
    308 	int iphlen;
    309 	int len;
    310 	int n;
    311 	u_int16_t ip_len;
    312 
    313 	va_start(ap, m);
    314 	iphlen = va_arg(ap, int);
    315 	(void)va_arg(ap, int);		/* ignore value, advance ap */
    316 	va_end(ap);
    317 
    318 	MCLAIM(m, &udp_rx_mowner);
    319 	UDP_STATINC(UDP_STAT_IPACKETS);
    320 
    321 	/*
    322 	 * Get IP and UDP header together in first mbuf.
    323 	 */
    324 	ip = mtod(m, struct ip *);
    325 	IP6_EXTHDR_GET(uh, struct udphdr *, m, iphlen, sizeof(struct udphdr));
    326 	if (uh == NULL) {
    327 		UDP_STATINC(UDP_STAT_HDROPS);
    328 		return;
    329 	}
    330 	KASSERT(UDP_HDR_ALIGNED_P(uh));
    331 
    332 	/* destination port of 0 is illegal, based on RFC768. */
    333 	if (uh->uh_dport == 0)
    334 		goto bad;
    335 
    336 	/*
    337 	 * Make mbuf data length reflect UDP length.
    338 	 * If not enough data to reflect UDP length, drop.
    339 	 */
    340 	ip_len = ntohs(ip->ip_len);
    341 	len = ntohs((u_int16_t)uh->uh_ulen);
    342 	if (ip_len != iphlen + len) {
    343 		if (ip_len < iphlen + len || len < sizeof(struct udphdr)) {
    344 			UDP_STATINC(UDP_STAT_BADLEN);
    345 			goto bad;
    346 		}
    347 		m_adj(m, iphlen + len - ip_len);
    348 	}
    349 
    350 	/*
    351 	 * Checksum extended UDP header and data.
    352 	 */
    353 	if (udp4_input_checksum(m, uh, iphlen, len))
    354 		goto badcsum;
    355 
    356 	/* construct source and dst sockaddrs. */
    357 	sockaddr_in_init(&src, &ip->ip_src, uh->uh_sport);
    358 	sockaddr_in_init(&dst, &ip->ip_dst, uh->uh_dport);
    359 
    360 	if ((n = udp4_realinput(&src, &dst, &m, iphlen)) == -1) {
    361 		UDP_STATINC(UDP_STAT_HDROPS);
    362 		return;
    363 	}
    364 	if (m == NULL) {
    365 		/*
    366 		 * packet has been processed by ESP stuff -
    367 		 * e.g. dropped NAT-T-keep-alive-packet ...
    368 		 */
    369 		return;
    370 	}
    371 	ip = mtod(m, struct ip *);
    372 #ifdef INET6
    373 	if (IN_MULTICAST(ip->ip_dst.s_addr) || n == 0) {
    374 		struct sockaddr_in6 src6, dst6;
    375 
    376 		memset(&src6, 0, sizeof(src6));
    377 		src6.sin6_family = AF_INET6;
    378 		src6.sin6_len = sizeof(struct sockaddr_in6);
    379 		src6.sin6_addr.s6_addr[10] = src6.sin6_addr.s6_addr[11] = 0xff;
    380 		memcpy(&src6.sin6_addr.s6_addr[12], &ip->ip_src,
    381 			sizeof(ip->ip_src));
    382 		src6.sin6_port = uh->uh_sport;
    383 		memset(&dst6, 0, sizeof(dst6));
    384 		dst6.sin6_family = AF_INET6;
    385 		dst6.sin6_len = sizeof(struct sockaddr_in6);
    386 		dst6.sin6_addr.s6_addr[10] = dst6.sin6_addr.s6_addr[11] = 0xff;
    387 		memcpy(&dst6.sin6_addr.s6_addr[12], &ip->ip_dst,
    388 			sizeof(ip->ip_dst));
    389 		dst6.sin6_port = uh->uh_dport;
    390 
    391 		n += udp6_realinput(AF_INET, &src6, &dst6, m, iphlen);
    392 	}
    393 #endif
    394 
    395 	if (n == 0) {
    396 		if (m->m_flags & (M_BCAST | M_MCAST)) {
    397 			UDP_STATINC(UDP_STAT_NOPORTBCAST);
    398 			goto bad;
    399 		}
    400 		UDP_STATINC(UDP_STAT_NOPORT);
    401 #ifdef IPKDB
    402 		if (checkipkdb(&ip->ip_src, uh->uh_sport, uh->uh_dport,
    403 				m, iphlen + sizeof(struct udphdr),
    404 				m->m_pkthdr.len - iphlen - sizeof(struct udphdr))) {
    405 			/*
    406 			 * It was a debugger connect packet,
    407 			 * just drop it now
    408 			 */
    409 			goto bad;
    410 		}
    411 #endif
    412 		icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_PORT, 0, 0);
    413 		m = NULL;
    414 	}
    415 
    416 bad:
    417 	if (m)
    418 		m_freem(m);
    419 	return;
    420 
    421 badcsum:
    422 	m_freem(m);
    423 }
    424 
    425 static void
    426 udp4_sendup(struct mbuf *m, int off /* offset of data portion */,
    427 	struct sockaddr *src, struct socket *so)
    428 {
    429 	struct mbuf *opts = NULL;
    430 	struct mbuf *n;
    431 	inpcb_t *inp = NULL;
    432 
    433 	if (!so)
    434 		return;
    435 	switch (so->so_proto->pr_domain->dom_family) {
    436 	case AF_INET:
    437 		inp = sotoinpcb(so);
    438 		break;
    439 #ifdef INET6
    440 	case AF_INET6:
    441 		break;
    442 #endif
    443 	default:
    444 		return;
    445 	}
    446 
    447 #if defined(IPSEC)
    448 	/* check AH/ESP integrity. */
    449 	if (so != NULL && ipsec4_in_reject_so(m, so)) {
    450 		IPSEC_STATINC(IPSEC_STAT_IN_POLVIO);
    451 		if ((n = m_copypacket(m, M_DONTWAIT)) != NULL)
    452 			icmp_error(n, ICMP_UNREACH, ICMP_UNREACH_ADMIN_PROHIBIT,
    453 			    0, 0);
    454 		return;
    455 	}
    456 #endif /*IPSEC*/
    457 
    458 	if ((n = m_copypacket(m, M_DONTWAIT)) != NULL) {
    459 		if (inp && ((inpcb_get_flags(inp) & INP_CONTROLOPTS) != 0
    460 #ifdef SO_OTIMESTAMP
    461 			 || so->so_options & SO_OTIMESTAMP
    462 #endif
    463 			 || so->so_options & SO_TIMESTAMP)) {
    464 			struct ip *ip = mtod(n, struct ip *);
    465 			ip_savecontrol(inp, &opts, ip, n);
    466 		}
    467 
    468 		m_adj(n, off);
    469 		if (sbappendaddr(&so->so_rcv, src, n,
    470 				opts) == 0) {
    471 			m_freem(n);
    472 			if (opts)
    473 				m_freem(opts);
    474 			so->so_rcv.sb_overflowed++;
    475 			UDP_STATINC(UDP_STAT_FULLSOCK);
    476 		} else
    477 			sorwakeup(so);
    478 	}
    479 }
    480 
    481 struct udp_pcb_ctx {
    482 	struct mbuf *		mbuf;
    483 	struct sockaddr_in *	src;
    484 	struct sockaddr_in *	dst;
    485 	int			off;
    486 	int			rcvcnt;
    487 };
    488 
    489 static int
    490 udp4_pcb_process(inpcb_t *inp, void *arg)
    491 {
    492 	struct udp_pcb_ctx *uctx = arg;
    493 	struct in_addr dst4 = uctx->dst->sin_addr;
    494 	in_port_t dport = uctx->dst->sin_port;
    495 	struct in_addr laddr, faddr;
    496 	in_port_t lport, fport;
    497 	struct socket *so;
    498 
    499 	inpcb_get_ports(inp, &lport, &fport);
    500 	if (lport != dport) {
    501 		return 0;
    502 	}
    503 	inpcb_get_addrs(inp, &laddr, &faddr);
    504 	if (!in_nullhost(laddr) && !in_hosteq(laddr, dst4)) {
    505 		return 0;
    506 	}
    507 	if (!in_nullhost(faddr)) {
    508 		struct in_addr src4 = uctx->src->sin_addr;
    509 		in_port_t sport = uctx->src->sin_port;
    510 
    511 		if (!in_hosteq(faddr, src4) || fport != sport) {
    512 			return 0;
    513 		}
    514 	}
    515 
    516 	so = inpcb_get_socket(inp);
    517 	udp4_sendup(uctx->mbuf, uctx->off, (struct sockaddr *)uctx->src, so);
    518 	uctx->rcvcnt++;
    519 
    520 	/*
    521 	 * Do not look for additional matches if this one does not have
    522 	 * either the SO_REUSEPORT or SO_REUSEADDR socket options set.
    523 	 * This heuristic avoids searching through all PCBs in the common
    524 	 * case of a non-shared port.  It assumes that an application will
    525 	 * never clear these options after setting them.
    526 	 */
    527 	if ((so->so_options & (SO_REUSEPORT|SO_REUSEADDR)) == 0) {
    528 		return EJUSTRETURN;
    529 	}
    530 	return 0;
    531 }
    532 
    533 static int
    534 udp4_realinput(struct sockaddr_in *src, struct sockaddr_in *dst,
    535     struct mbuf **mp, int off /* offset of udphdr */)
    536 {
    537 	in_port_t *sport, *dport;
    538 	struct in_addr *src4, *dst4;
    539 	inpcb_t *inp;
    540 	struct mbuf *m = *mp;
    541 	int rcvcnt;
    542 
    543 	rcvcnt = 0;
    544 	off += sizeof(struct udphdr);	/* now, offset of payload */
    545 
    546 	if (src->sin_family != AF_INET || dst->sin_family != AF_INET)
    547 		goto bad;
    548 
    549 	src4 = &src->sin_addr;
    550 	sport = &src->sin_port;
    551 	dst4 = &dst->sin_addr;
    552 	dport = &dst->sin_port;
    553 
    554 	if (IN_MULTICAST(dst4->s_addr) ||
    555 	    in_broadcast(*dst4, m->m_pkthdr.rcvif)) {
    556 		struct udp_pcb_ctx uctx = {
    557 			.mbuf = m, .src = src, .dst = dst,
    558 			.off = off, .rcvcnt = 0
    559 		};
    560 		int error;
    561 
    562 		/*
    563 		 * Deliver a multicast or broadcast datagram to *all* sockets
    564 		 * for which the local and remote addresses and ports match
    565 		 * those of the incoming datagram.  This allows more than
    566 		 * one process to receive multi/broadcasts on the same port.
    567 		 */
    568 		error = inpcb_foreach(udbtable, AF_INET,
    569 		    udp4_pcb_process, &uctx);
    570 		KASSERT(error == 0 || error == EJUSTRETURN);
    571 		rcvcnt = uctx.rcvcnt;
    572 	} else {
    573 		/*
    574 		 * Locate PCB for datagram.
    575 		 */
    576 		struct socket *so;
    577 
    578 		inp = inpcb_lookup_connect(udbtable, *src4, *sport, *dst4,
    579 		    *dport, 0);
    580 		if (inp == NULL) {
    581 			UDP_STATINC(UDP_STAT_PCBHASHMISS);
    582 			inp = inpcb_lookup_bind(udbtable, *dst4, *dport);
    583 			if (inp == NULL)
    584 				return rcvcnt;
    585 		}
    586 		so = inpcb_get_socket(inp);
    587 
    588 #ifdef IPSEC
    589 		/* Handle ESP over UDP */
    590 		if (inpcb_get_flags(inp) & INP_ESPINUDP_ALL) {
    591 			struct sockaddr *sa = (struct sockaddr *)src;
    592 
    593 			switch (udp4_espinudp(mp, off, sa, so)) {
    594 			case -1: 	/* Error, m was freeed */
    595 				rcvcnt = -1;
    596 				goto bad;
    597 				break;
    598 
    599 			case 1:		/* ESP over UDP */
    600 				rcvcnt++;
    601 				goto bad;
    602 				break;
    603 
    604 			case 0: 	/* plain UDP */
    605 			default: 	/* Unexpected */
    606 				/*
    607 				 * Normal UDP processing will take place
    608 				 * m may have changed.
    609 				 */
    610 				m = *mp;
    611 				break;
    612 			}
    613 		}
    614 #endif
    615 
    616 		/*
    617 		 * Check the minimum TTL for socket.
    618 		 */
    619 		if (mtod(m, struct ip *)->ip_ttl < inpcb_get_minttl(inp)) {
    620 			goto bad;
    621 		}
    622 		udp4_sendup(m, off, (struct sockaddr *)src, so);
    623 		rcvcnt++;
    624 	}
    625 
    626 bad:
    627 	return rcvcnt;
    628 }
    629 #endif
    630 
    631 #ifdef INET
    632 /*
    633  * Notify a UDP user of an asynchronous error;
    634  * just wake up so that he can collect error status.
    635  */
    636 static void
    637 udp_notify(inpcb_t *inp, int errno)
    638 {
    639 	struct socket *so = inpcb_get_socket(inp);
    640 
    641 	so->so_error = errno;
    642 	sorwakeup(so);
    643 	sowwakeup(so);
    644 }
    645 
    646 void *
    647 udp_ctlinput(int cmd, const struct sockaddr *sa, void *v)
    648 {
    649 	struct ip *ip = v;
    650 	struct udphdr *uh;
    651 	int errno;
    652 	bool rdr;
    653 
    654 	if (sa->sa_family != AF_INET ||
    655 	    sa->sa_len != sizeof(struct sockaddr_in))
    656 		return NULL;
    657 	if ((unsigned)cmd >= PRC_NCMDS)
    658 		return NULL;
    659 	errno = inetctlerrmap[cmd];
    660 
    661 	rdr = PRC_IS_REDIRECT(cmd);
    662 	if (rdr || cmd == PRC_HOSTDEAD || ip == NULL) {
    663 		inpcb_notifyall(udbtable, satocsin(sa)->sin_addr,
    664 		    errno, rdr ? inpcb_rtchange : udp_notify);
    665 		return NULL;
    666 	} else if (errno == 0) {
    667 		return NULL;
    668 	}
    669 
    670 	/* Note: mapped address case */
    671 	uh = (struct udphdr *)((char *)ip + (ip->ip_hl << 2));
    672 	inpcb_notify(udbtable, satocsin(sa)->sin_addr, uh->uh_dport,
    673 	    ip->ip_src, uh->uh_sport, errno, udp_notify);
    674 	return NULL;
    675 }
    676 
    677 int
    678 udp_ctloutput(int op, struct socket *so, struct sockopt *sopt)
    679 {
    680 	int s, family, optval, inpflags, error = 0;
    681 	inpcb_t *inp;
    682 
    683 	family = so->so_proto->pr_domain->dom_family;
    684 
    685 	s = splsoftnet();
    686 	switch (family) {
    687 #ifdef INET
    688 	case PF_INET:
    689 		if (sopt->sopt_level != IPPROTO_UDP) {
    690 			error = ip_ctloutput(op, so, sopt);
    691 			goto end;
    692 		}
    693 		break;
    694 #endif
    695 #ifdef INET6
    696 	case PF_INET6:
    697 		if (sopt->sopt_level != IPPROTO_UDP) {
    698 			error = ip6_ctloutput(op, so, sopt);
    699 			goto end;
    700 		}
    701 		break;
    702 #endif
    703 	default:
    704 		error = EAFNOSUPPORT;
    705 		goto end;
    706 	}
    707 
    708 	switch (op) {
    709 	case PRCO_SETOPT:
    710 		inp = sotoinpcb(so);
    711 
    712 		switch (sopt->sopt_name) {
    713 		case UDP_ENCAP:
    714 			error = sockopt_getint(sopt, &optval);
    715 			if (error)
    716 				break;
    717 
    718 			inpflags = inpcb_get_flags(inp);
    719 			switch(optval) {
    720 			case 0:
    721 				inpflags &= ~INP_ESPINUDP_ALL;
    722 				break;
    723 
    724 			case UDP_ENCAP_ESPINUDP:
    725 				inpflags &= ~INP_ESPINUDP_ALL;
    726 				inpflags |= INP_ESPINUDP;
    727 				break;
    728 
    729 			case UDP_ENCAP_ESPINUDP_NON_IKE:
    730 				inpflags &= ~INP_ESPINUDP_ALL;
    731 				inpflags |= INP_ESPINUDP_NON_IKE;
    732 				break;
    733 			default:
    734 				error = EINVAL;
    735 				break;
    736 			}
    737 			inpcb_set_flags(inp, inpflags);
    738 			break;
    739 
    740 		default:
    741 			error = ENOPROTOOPT;
    742 			break;
    743 		}
    744 		break;
    745 
    746 	default:
    747 		error = EINVAL;
    748 		break;
    749 	}
    750 
    751 end:
    752 	splx(s);
    753 	return error;
    754 }
    755 
    756 
    757 int
    758 udp_output(struct mbuf *m, ...)
    759 {
    760 	inpcb_t *inp;
    761 	struct socket *so;
    762 	struct udpiphdr *ui;
    763 	struct route *ro;
    764 	int len = m->m_pkthdr.len;
    765 	int error = 0;
    766 	va_list ap;
    767 
    768 	MCLAIM(m, &udp_tx_mowner);
    769 	va_start(ap, m);
    770 	inp = va_arg(ap, inpcb_t *);
    771 	va_end(ap);
    772 
    773 	so = inpcb_get_socket(inp);
    774 	KASSERT(solocked(so));
    775 
    776 	/*
    777 	 * Calculate data length and get a mbuf
    778 	 * for UDP and IP headers.
    779 	 */
    780 	M_PREPEND(m, sizeof(struct udpiphdr), M_DONTWAIT);
    781 	if (m == 0) {
    782 		error = ENOBUFS;
    783 		goto release;
    784 	}
    785 
    786 	/*
    787 	 * Compute the packet length of the IP header, and
    788 	 * punt if the length looks bogus.
    789 	 */
    790 	if (len + sizeof(struct udpiphdr) > IP_MAXPACKET) {
    791 		error = EMSGSIZE;
    792 		goto release;
    793 	}
    794 
    795 	/*
    796 	 * Fill in mbuf with extended UDP header
    797 	 * and addresses and length put into network format.
    798 	 */
    799 	ui = mtod(m, struct udpiphdr *);
    800 	ui->ui_pr = IPPROTO_UDP;
    801 
    802 	inpcb_get_addrs(inp, &ui->ui_src, &ui->ui_dst);
    803 	inpcb_get_ports(inp, &ui->ui_sport, &ui->ui_dport);
    804 	ui->ui_ulen = htons((u_int16_t)len + sizeof(struct udphdr));
    805 
    806 	ro = inpcb_get_route(inp);
    807 
    808 	/*
    809 	 * Set up checksum and output datagram.
    810 	 */
    811 	if (udpcksum) {
    812 		/*
    813 		 * XXX Cache pseudo-header checksum part for
    814 		 * XXX "connected" UDP sockets.
    815 		 */
    816 		ui->ui_sum = in_cksum_phdr(ui->ui_src.s_addr,
    817 		    ui->ui_dst.s_addr, htons((u_int16_t)len +
    818 		    sizeof(struct udphdr) + IPPROTO_UDP));
    819 		m->m_pkthdr.csum_flags = M_CSUM_UDPv4;
    820 		m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum);
    821 	} else
    822 		ui->ui_sum = 0;
    823 
    824 	((struct ip *)ui)->ip_len = htons(sizeof (struct udpiphdr) + len);
    825 
    826 	struct ip *inp_ip = in_getiphdr(inp);
    827 	((struct ip *)ui)->ip_ttl = inp_ip->ip_ttl;	/* XXX */
    828 	((struct ip *)ui)->ip_tos = inp_ip->ip_tos;	/* XXX */
    829 	UDP_STATINC(UDP_STAT_OPACKETS);
    830 
    831 	return (ip_output(m, inpcb_get_options(inp), ro,
    832 	    so->so_options & (SO_DONTROUTE | SO_BROADCAST),
    833 	    inpcb_get_moptions(inp), so));
    834 
    835 release:
    836 	m_freem(m);
    837 	return error;
    838 }
    839 
    840 int
    841 udp_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,
    842     struct mbuf *control, struct lwp *l)
    843 {
    844 	inpcb_t *inp;
    845 	struct ip *inp_ip;
    846 	int s, error = 0;
    847 
    848 	if (req == PRU_CONTROL) {
    849 		return in_control(so, (long)m, nam, (ifnet_t *)control, l);
    850 	}
    851 	s = splsoftnet();
    852 	if (req == PRU_PURGEIF) {
    853 		mutex_enter(softnet_lock);
    854 		inpcb_purgeif0(udbtable, (ifnet_t *)control);
    855 		in_purgeif((ifnet_t *)control);
    856 		inpcb_purgeif(udbtable, (ifnet_t *)control);
    857 		mutex_exit(softnet_lock);
    858 		splx(s);
    859 		return (0);
    860 	}
    861 
    862 	KASSERT(req == PRU_ATTACH || solocked(so));
    863 	inp = sotoinpcb(so);
    864 
    865 	KASSERT(!control || (req == PRU_SEND || req == PRU_SENDOOB));
    866 	if (inp == NULL && req != PRU_ATTACH) {
    867 		error = EINVAL;
    868 		goto release;
    869 	}
    870 
    871 	/*
    872 	 * Note: need to block udp_input while changing
    873 	 * the udp pcb queue and/or pcb addresses.
    874 	 */
    875 	switch (req) {
    876 	case PRU_ATTACH:
    877 		sosetlock(so);
    878 		if (inp) {
    879 			error = EISCONN;
    880 			break;
    881 		}
    882 #ifdef MBUFTRACE
    883 		so->so_mowner = &udp_mowner;
    884 		so->so_rcv.sb_mowner = &udp_rx_mowner;
    885 		so->so_snd.sb_mowner = &udp_tx_mowner;
    886 #endif
    887 		if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
    888 			error = soreserve(so, udp_sendspace, udp_recvspace);
    889 			if (error)
    890 				break;
    891 		}
    892 		error = inpcb_create(so, udbtable);
    893 		if (error)
    894 			break;
    895 		inp = sotoinpcb(so);
    896 		inp_ip = in_getiphdr(inp);
    897 		inp_ip->ip_ttl = ip_defttl;
    898 		break;
    899 
    900 	case PRU_DETACH:
    901 		inpcb_destroy(inp);
    902 		break;
    903 
    904 	case PRU_BIND:
    905 		error = inpcb_bind(inp, nam, l);
    906 		break;
    907 
    908 	case PRU_LISTEN:
    909 		error = EOPNOTSUPP;
    910 		break;
    911 
    912 	case PRU_CONNECT:
    913 		error = inpcb_connect(inp, nam, l);
    914 		if (error)
    915 			break;
    916 		soisconnected(so);
    917 		break;
    918 
    919 	case PRU_CONNECT2:
    920 		error = EOPNOTSUPP;
    921 		break;
    922 
    923 	case PRU_DISCONNECT:
    924 		/*soisdisconnected(so);*/
    925 		so->so_state &= ~SS_ISCONNECTED;		/* XXX */
    926 		inpcb_disconnect(inp);
    927 		inpcb_set_addrs(inp, &zeroin_addr, NULL);	/* XXX */
    928 		inpcb_set_state(inp, INP_BOUND);		/* XXX */
    929 		break;
    930 
    931 	case PRU_SHUTDOWN:
    932 		socantsendmore(so);
    933 		break;
    934 
    935 	case PRU_RCVD:
    936 		error = EOPNOTSUPP;
    937 		break;
    938 
    939 	case PRU_SEND:
    940 		if (control && control->m_len) {
    941 			m_freem(control);
    942 			m_freem(m);
    943 			error = EINVAL;
    944 			break;
    945 		}
    946 	{
    947 		/*
    948 		 * Note: sendto case - temporarily connect the socket
    949 		 * to the destination, send and then disconnect.
    950 		 * XXX: save the local address, restore after.
    951 		 */
    952 		struct in_addr laddr;
    953 
    954 		memset(&laddr, 0, sizeof laddr);
    955 		if (nam) {
    956 			inpcb_get_addrs(inp, &laddr, NULL);
    957 			if ((so->so_state & SS_ISCONNECTED) != 0) {
    958 				error = EISCONN;
    959 				goto die;
    960 			}
    961 			error = inpcb_connect(inp, nam, l);
    962 			if (error)
    963 				goto die;
    964 		} else {
    965 			if ((so->so_state & SS_ISCONNECTED) == 0) {
    966 				error = ENOTCONN;
    967 				goto die;
    968 			}
    969 		}
    970 		error = udp_output(m, inp);
    971 		m = NULL;
    972 		if (nam) {
    973 			inpcb_disconnect(inp);
    974 			inpcb_set_addrs(inp, &laddr, NULL);
    975 			inpcb_set_state(inp, INP_BOUND);
    976 		}
    977 die:
    978 		if (m)
    979 			m_freem(m);
    980 	}
    981 		break;
    982 
    983 	case PRU_SENSE:
    984 		/*
    985 		 * stat: don't bother with a blocksize.
    986 		 */
    987 		splx(s);
    988 		return (0);
    989 
    990 	case PRU_RCVOOB:
    991 		error =  EOPNOTSUPP;
    992 		break;
    993 
    994 	case PRU_SENDOOB:
    995 		m_freem(control);
    996 		m_freem(m);
    997 		error =  EOPNOTSUPP;
    998 		break;
    999 
   1000 	case PRU_SOCKADDR:
   1001 		inpcb_fetch_sockaddr(inp, nam);
   1002 		break;
   1003 
   1004 	case PRU_PEERADDR:
   1005 		inpcb_fetch_peeraddr(inp, nam);
   1006 		break;
   1007 
   1008 	default:
   1009 		panic("udp_usrreq");
   1010 	}
   1011 
   1012 release:
   1013 	splx(s);
   1014 	return (error);
   1015 }
   1016 
   1017 static int
   1018 sysctl_net_inet_udp_stats(SYSCTLFN_ARGS)
   1019 {
   1020 
   1021 	return (NETSTAT_SYSCTL(udpstat_percpu, UDP_NSTATS));
   1022 }
   1023 
   1024 /*
   1025  * Sysctl for udp variables.
   1026  */
   1027 static void
   1028 sysctl_net_inet_udp_setup(struct sysctllog **clog)
   1029 {
   1030 	sysctl_createv(clog, 0, NULL, NULL,
   1031 		       CTLFLAG_PERMANENT,
   1032 		       CTLTYPE_NODE, "net", NULL,
   1033 		       NULL, 0, NULL, 0,
   1034 		       CTL_NET, CTL_EOL);
   1035 	sysctl_createv(clog, 0, NULL, NULL,
   1036 		       CTLFLAG_PERMANENT,
   1037 		       CTLTYPE_NODE, "inet", NULL,
   1038 		       NULL, 0, NULL, 0,
   1039 		       CTL_NET, PF_INET, CTL_EOL);
   1040 	sysctl_createv(clog, 0, NULL, NULL,
   1041 		       CTLFLAG_PERMANENT,
   1042 		       CTLTYPE_NODE, "udp",
   1043 		       SYSCTL_DESCR("UDPv4 related settings"),
   1044 		       NULL, 0, NULL, 0,
   1045 		       CTL_NET, PF_INET, IPPROTO_UDP, CTL_EOL);
   1046 
   1047 	sysctl_createv(clog, 0, NULL, NULL,
   1048 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1049 		       CTLTYPE_INT, "checksum",
   1050 		       SYSCTL_DESCR("Compute UDP checksums"),
   1051 		       NULL, 0, &udpcksum, 0,
   1052 		       CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_CHECKSUM,
   1053 		       CTL_EOL);
   1054 	sysctl_createv(clog, 0, NULL, NULL,
   1055 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1056 		       CTLTYPE_INT, "sendspace",
   1057 		       SYSCTL_DESCR("Default UDP send buffer size"),
   1058 		       NULL, 0, &udp_sendspace, 0,
   1059 		       CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_SENDSPACE,
   1060 		       CTL_EOL);
   1061 	sysctl_createv(clog, 0, NULL, NULL,
   1062 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1063 		       CTLTYPE_INT, "recvspace",
   1064 		       SYSCTL_DESCR("Default UDP receive buffer size"),
   1065 		       NULL, 0, &udp_recvspace, 0,
   1066 		       CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_RECVSPACE,
   1067 		       CTL_EOL);
   1068 	sysctl_createv(clog, 0, NULL, NULL,
   1069 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1070 		       CTLTYPE_INT, "do_loopback_cksum",
   1071 		       SYSCTL_DESCR("Perform UDP checksum on loopback"),
   1072 		       NULL, 0, &udp_do_loopback_cksum, 0,
   1073 		       CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_LOOPBACKCKSUM,
   1074 		       CTL_EOL);
   1075 	sysctl_createv(clog, 0, NULL, NULL,
   1076 		       CTLFLAG_PERMANENT,
   1077 		       CTLTYPE_STRUCT, "pcblist",
   1078 		       SYSCTL_DESCR("UDP protocol control block list"),
   1079 		       sysctl_inpcblist, 0, udbtable, 0,
   1080 		       CTL_NET, PF_INET, IPPROTO_UDP, CTL_CREATE,
   1081 		       CTL_EOL);
   1082 	sysctl_createv(clog, 0, NULL, NULL,
   1083 		       CTLFLAG_PERMANENT,
   1084 		       CTLTYPE_STRUCT, "stats",
   1085 		       SYSCTL_DESCR("UDP statistics"),
   1086 		       sysctl_net_inet_udp_stats, 0, NULL, 0,
   1087 		       CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_STATS,
   1088 		       CTL_EOL);
   1089 }
   1090 #endif
   1091 
   1092 void
   1093 udp_statinc(u_int stat)
   1094 {
   1095 
   1096 	KASSERT(stat < UDP_NSTATS);
   1097 	UDP_STATINC(stat);
   1098 }
   1099 
   1100 #if defined(INET) && defined(IPSEC)
   1101 /*
   1102  * Returns:
   1103  * 1 if the packet was processed
   1104  * 0 if normal UDP processing should take place
   1105  * -1 if an error occurent and m was freed
   1106  */
   1107 static int
   1108 udp4_espinudp(struct mbuf **mp, int off, struct sockaddr *src,
   1109     struct socket *so)
   1110 {
   1111 	size_t len;
   1112 	void *data;
   1113 	inpcb_t *inp;
   1114 	size_t skip = 0;
   1115 	size_t minlen;
   1116 	size_t iphdrlen;
   1117 	struct ip *ip;
   1118 	struct m_tag *tag;
   1119 	struct udphdr *udphdr;
   1120 	in_port_t sport, dport;
   1121 	struct mbuf *m = *mp;
   1122 	int inpflags;
   1123 
   1124 	/*
   1125 	 * Collapse the mbuf chain if the first mbuf is too short
   1126 	 * The longest case is: UDP + non ESP marker + ESP
   1127 	 */
   1128 	minlen = off + sizeof(u_int64_t) + sizeof(struct esp);
   1129 	if (minlen > m->m_pkthdr.len)
   1130 		minlen = m->m_pkthdr.len;
   1131 
   1132 	if (m->m_len < minlen) {
   1133 		if ((*mp = m_pullup(m, minlen)) == NULL) {
   1134 			printf("udp4_espinudp: m_pullup failed\n");
   1135 			return -1;
   1136 		}
   1137 		m = *mp;
   1138 	}
   1139 
   1140 	len = m->m_len - off;
   1141 	data = mtod(m, char *) + off;
   1142 	inp = sotoinpcb(so);
   1143 
   1144 	/* Ignore keepalive packets */
   1145 	if ((len == 1) && (*(unsigned char *)data == 0xff)) {
   1146 		m_free(m);
   1147 		*mp = NULL; /* avoid any further processiong by caller ... */
   1148 		return 1;
   1149 	}
   1150 	inpflags = inpcb_get_flags(inp);
   1151 
   1152 	/*
   1153 	 * Check that the payload is long enough to hold
   1154 	 * an ESP header and compute the length of encapsulation
   1155 	 * header to remove
   1156 	 */
   1157 	if (inpflags & INP_ESPINUDP) {
   1158 		u_int32_t *st = (u_int32_t *)data;
   1159 
   1160 		if ((len <= sizeof(struct esp)) || (*st == 0))
   1161 			return 0; /* Normal UDP processing */
   1162 
   1163 		skip = sizeof(struct udphdr);
   1164 	}
   1165 
   1166 	if (inpflags & INP_ESPINUDP_NON_IKE) {
   1167 		u_int32_t *st = (u_int32_t *)data;
   1168 
   1169 		if ((len <= sizeof(u_int64_t) + sizeof(struct esp))
   1170 		    || ((st[0] | st[1]) != 0))
   1171 			return 0; /* Normal UDP processing */
   1172 
   1173 		skip = sizeof(struct udphdr) + sizeof(u_int64_t);
   1174 	}
   1175 
   1176 	/*
   1177 	 * Get the UDP ports. They are handled in network
   1178 	 * order everywhere in IPSEC_NAT_T code.
   1179 	 */
   1180 	udphdr = (struct udphdr *)((char *)data - skip);
   1181 	sport = udphdr->uh_sport;
   1182 	dport = udphdr->uh_dport;
   1183 
   1184 	/*
   1185 	 * Remove the UDP header (and possibly the non ESP marker)
   1186 	 * IP header lendth is iphdrlen
   1187 	 * Before:
   1188 	 *   <--- off --->
   1189 	 *   +----+------+-----+
   1190 	 *   | IP |  UDP | ESP |
   1191 	 *   +----+------+-----+
   1192 	 *        <-skip->
   1193 	 * After:
   1194 	 *          +----+-----+
   1195 	 *          | IP | ESP |
   1196 	 *          +----+-----+
   1197 	 *   <-skip->
   1198 	 */
   1199 	iphdrlen = off - sizeof(struct udphdr);
   1200 	memmove(mtod(m, char *) + skip, mtod(m, void *), iphdrlen);
   1201 	m_adj(m, skip);
   1202 
   1203 	ip = mtod(m, struct ip *);
   1204 	ip->ip_len = htons(ntohs(ip->ip_len) - skip);
   1205 	ip->ip_p = IPPROTO_ESP;
   1206 
   1207 	/*
   1208 	 * We have modified the packet - it is now ESP, so we should not
   1209 	 * return to UDP processing ...
   1210 	 *
   1211 	 * Add a PACKET_TAG_IPSEC_NAT_T_PORT tag to remember
   1212 	 * the source UDP port. This is required if we want
   1213 	 * to select the right SPD for multiple hosts behind
   1214 	 * same NAT
   1215 	 */
   1216 	if ((tag = m_tag_get(PACKET_TAG_IPSEC_NAT_T_PORTS,
   1217 	    sizeof(sport) + sizeof(dport), M_DONTWAIT)) == NULL) {
   1218 		printf("udp4_espinudp: m_tag_get failed\n");
   1219 		m_freem(m);
   1220 		return -1;
   1221 	}
   1222 	((u_int16_t *)(tag + 1))[0] = sport;
   1223 	((u_int16_t *)(tag + 1))[1] = dport;
   1224 	m_tag_prepend(m, tag);
   1225 
   1226 #ifdef IPSEC
   1227 	ipsec4_common_input(m, iphdrlen, IPPROTO_ESP);
   1228 #else
   1229 	esp4_input(m, iphdrlen);
   1230 #endif
   1231 
   1232 	/* We handled it, it shouldn't be handled by UDP */
   1233 	*mp = NULL; /* avoid free by caller ... */
   1234 	return 1;
   1235 }
   1236 #endif
   1237