Home | History | Annotate | Line # | Download | only in netinet
udp_usrreq.c revision 1.119
      1 /*	$NetBSD: udp_usrreq.c,v 1.119 2004/04/18 23:35:56 matt 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 #include <sys/cdefs.h>
     64 __KERNEL_RCSID(0, "$NetBSD: udp_usrreq.c,v 1.119 2004/04/18 23:35:56 matt Exp $");
     65 
     66 #include "opt_inet.h"
     67 #include "opt_ipsec.h"
     68 #include "opt_inet_csum.h"
     69 #include "opt_ipkdb.h"
     70 #include "opt_mbuftrace.h"
     71 
     72 #include <sys/param.h>
     73 #include <sys/malloc.h>
     74 #include <sys/mbuf.h>
     75 #include <sys/protosw.h>
     76 #include <sys/socket.h>
     77 #include <sys/socketvar.h>
     78 #include <sys/errno.h>
     79 #include <sys/stat.h>
     80 #include <sys/systm.h>
     81 #include <sys/proc.h>
     82 #include <sys/domain.h>
     83 #include <sys/sysctl.h>
     84 
     85 #include <net/if.h>
     86 #include <net/route.h>
     87 
     88 #include <netinet/in.h>
     89 #include <netinet/in_systm.h>
     90 #include <netinet/in_var.h>
     91 #include <netinet/ip.h>
     92 #include <netinet/in_pcb.h>
     93 #include <netinet/ip_var.h>
     94 #include <netinet/ip_icmp.h>
     95 #include <netinet/udp.h>
     96 #include <netinet/udp_var.h>
     97 
     98 #ifdef INET6
     99 #include <netinet/ip6.h>
    100 #include <netinet/icmp6.h>
    101 #include <netinet6/ip6_var.h>
    102 #include <netinet6/in6_pcb.h>
    103 #include <netinet6/udp6_var.h>
    104 #endif
    105 
    106 #ifndef INET6
    107 /* always need ip6.h for IP6_EXTHDR_GET */
    108 #include <netinet/ip6.h>
    109 #endif
    110 
    111 #include "faith.h"
    112 #if defined(NFAITH) && NFAITH > 0
    113 #include <net/if_faith.h>
    114 #endif
    115 
    116 #include <machine/stdarg.h>
    117 
    118 #ifdef FAST_IPSEC
    119 #include <netipsec/ipsec.h>
    120 #ifdef INET6
    121 #include <netipsec/ipsec6.h>
    122 #endif
    123 #endif	/* FAST_IPSEC*/
    124 
    125 #ifdef IPSEC
    126 #include <netinet6/ipsec.h>
    127 #include <netkey/key.h>
    128 #endif /*IPSEC*/
    129 
    130 #ifdef IPKDB
    131 #include <ipkdb/ipkdb.h>
    132 #endif
    133 
    134 /*
    135  * UDP protocol implementation.
    136  * Per RFC 768, August, 1980.
    137  */
    138 #ifndef	COMPAT_42
    139 int	udpcksum = 1;
    140 #else
    141 int	udpcksum = 0;		/* XXX */
    142 #endif
    143 
    144 struct	inpcbtable udbtable;
    145 struct	udpstat udpstat;
    146 
    147 #ifdef INET
    148 static void udp4_sendup (struct mbuf *, int, struct sockaddr *,
    149 	struct socket *);
    150 static int udp4_realinput (struct sockaddr_in *, struct sockaddr_in *,
    151 	struct mbuf *, int);
    152 #endif
    153 #ifdef INET6
    154 static void udp6_sendup (struct mbuf *, int, struct sockaddr *,
    155 	struct socket *);
    156 static int udp6_realinput (int, struct sockaddr_in6 *,
    157 	struct sockaddr_in6 *, struct mbuf *, int);
    158 #endif
    159 #ifdef INET
    160 static	void udp_notify (struct inpcb *, int);
    161 #endif
    162 
    163 #ifndef UDBHASHSIZE
    164 #define	UDBHASHSIZE	128
    165 #endif
    166 int	udbhashsize = UDBHASHSIZE;
    167 
    168 #ifdef MBUFTRACE
    169 struct mowner udp_mowner = { "udp" };
    170 struct mowner udp_rx_mowner = { "udp", "rx" };
    171 struct mowner udp_tx_mowner = { "udp", "tx" };
    172 #endif
    173 
    174 #ifdef UDP_CSUM_COUNTERS
    175 #include <sys/device.h>
    176 
    177 struct evcnt udp_hwcsum_bad = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
    178     NULL, "udp", "hwcsum bad");
    179 struct evcnt udp_hwcsum_ok = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
    180     NULL, "udp", "hwcsum ok");
    181 struct evcnt udp_hwcsum_data = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
    182     NULL, "udp", "hwcsum data");
    183 struct evcnt udp_swcsum = EVCNT_INITIALIZER(EVCNT_TYPE_MISC,
    184     NULL, "udp", "swcsum");
    185 
    186 #define	UDP_CSUM_COUNTER_INCR(ev)	(ev)->ev_count++
    187 
    188 #else
    189 
    190 #define	UDP_CSUM_COUNTER_INCR(ev)	/* nothing */
    191 
    192 #endif /* UDP_CSUM_COUNTERS */
    193 
    194 void
    195 udp_init(void)
    196 {
    197 
    198 	in_pcbinit(&udbtable, udbhashsize, udbhashsize);
    199 
    200 #ifdef UDP_CSUM_COUNTERS
    201 	evcnt_attach_static(&udp_hwcsum_bad);
    202 	evcnt_attach_static(&udp_hwcsum_ok);
    203 	evcnt_attach_static(&udp_hwcsum_data);
    204 	evcnt_attach_static(&udp_swcsum);
    205 #endif /* UDP_CSUM_COUNTERS */
    206 
    207 	MOWNER_ATTACH(&udp_tx_mowner);
    208 	MOWNER_ATTACH(&udp_rx_mowner);
    209 	MOWNER_ATTACH(&udp_mowner);
    210 }
    211 
    212 #ifdef INET
    213 void
    214 udp_input(struct mbuf *m, ...)
    215 {
    216 	va_list ap;
    217 	struct sockaddr_in src, dst;
    218 	struct ip *ip;
    219 	struct udphdr *uh;
    220 	int iphlen;
    221 	int len;
    222 	int n;
    223 	u_int16_t ip_len;
    224 
    225 	va_start(ap, m);
    226 	iphlen = va_arg(ap, int);
    227 	(void)va_arg(ap, int);		/* ignore value, advance ap */
    228 	va_end(ap);
    229 
    230 	MCLAIM(m, &udp_rx_mowner);
    231 	udpstat.udps_ipackets++;
    232 
    233 	/*
    234 	 * Get IP and UDP header together in first mbuf.
    235 	 */
    236 	ip = mtod(m, struct ip *);
    237 	IP6_EXTHDR_GET(uh, struct udphdr *, m, iphlen, sizeof(struct udphdr));
    238 	if (uh == NULL) {
    239 		udpstat.udps_hdrops++;
    240 		return;
    241 	}
    242 	KASSERT(UDP_HDR_ALIGNED_P(uh));
    243 
    244 	/* destination port of 0 is illegal, based on RFC768. */
    245 	if (uh->uh_dport == 0)
    246 		goto bad;
    247 
    248 	/*
    249 	 * Make mbuf data length reflect UDP length.
    250 	 * If not enough data to reflect UDP length, drop.
    251 	 */
    252 	ip_len = ntohs(ip->ip_len);
    253 	len = ntohs((u_int16_t)uh->uh_ulen);
    254 	if (ip_len != iphlen + len) {
    255 		if (ip_len < iphlen + len || len < sizeof(struct udphdr)) {
    256 			udpstat.udps_badlen++;
    257 			goto bad;
    258 		}
    259 		m_adj(m, iphlen + len - ip_len);
    260 	}
    261 
    262 	/*
    263 	 * Checksum extended UDP header and data.
    264 	 */
    265 	if (uh->uh_sum) {
    266 		switch (m->m_pkthdr.csum_flags &
    267 		    ((m->m_pkthdr.rcvif->if_csum_flags_rx & M_CSUM_UDPv4) |
    268 		    M_CSUM_TCP_UDP_BAD | M_CSUM_DATA)) {
    269 		case M_CSUM_UDPv4|M_CSUM_TCP_UDP_BAD:
    270 			UDP_CSUM_COUNTER_INCR(&udp_hwcsum_bad);
    271 			goto badcsum;
    272 
    273 		case M_CSUM_UDPv4|M_CSUM_DATA: {
    274 			u_int32_t hw_csum = m->m_pkthdr.csum_data;
    275 			UDP_CSUM_COUNTER_INCR(&udp_hwcsum_data);
    276 			if (m->m_pkthdr.csum_flags & M_CSUM_NO_PSEUDOHDR)
    277 				hw_csum = in_cksum_phdr(ip->ip_src.s_addr,
    278 				    ip->ip_dst.s_addr,
    279 				    htons(hw_csum + len + IPPROTO_UDP));
    280 			if ((hw_csum ^ 0xffff) != 0)
    281 				goto badcsum;
    282 			break;
    283 		}
    284 
    285 		case M_CSUM_UDPv4:
    286 			/* Checksum was okay. */
    287 			UDP_CSUM_COUNTER_INCR(&udp_hwcsum_ok);
    288 			break;
    289 
    290 		default:
    291 			/* Need to compute it ourselves. */
    292 			UDP_CSUM_COUNTER_INCR(&udp_swcsum);
    293 			if (in4_cksum(m, IPPROTO_UDP, iphlen, len) != 0)
    294 				goto badcsum;
    295 			break;
    296 		}
    297 	}
    298 
    299 	/* construct source and dst sockaddrs. */
    300 	bzero(&src, sizeof(src));
    301 	src.sin_family = AF_INET;
    302 	src.sin_len = sizeof(struct sockaddr_in);
    303 	bcopy(&ip->ip_src, &src.sin_addr, sizeof(src.sin_addr));
    304 	src.sin_port = uh->uh_sport;
    305 	bzero(&dst, sizeof(dst));
    306 	dst.sin_family = AF_INET;
    307 	dst.sin_len = sizeof(struct sockaddr_in);
    308 	bcopy(&ip->ip_dst, &dst.sin_addr, sizeof(dst.sin_addr));
    309 	dst.sin_port = uh->uh_dport;
    310 
    311 	n = udp4_realinput(&src, &dst, m, iphlen);
    312 #ifdef INET6
    313 	if (IN_MULTICAST(ip->ip_dst.s_addr) || n == 0) {
    314 		struct sockaddr_in6 src6, dst6;
    315 
    316 		bzero(&src6, sizeof(src6));
    317 		src6.sin6_family = AF_INET6;
    318 		src6.sin6_len = sizeof(struct sockaddr_in6);
    319 		src6.sin6_addr.s6_addr[10] = src6.sin6_addr.s6_addr[11] = 0xff;
    320 		bcopy(&ip->ip_src, &src6.sin6_addr.s6_addr[12],
    321 			sizeof(ip->ip_src));
    322 		src6.sin6_port = uh->uh_sport;
    323 		bzero(&dst6, sizeof(dst6));
    324 		dst6.sin6_family = AF_INET6;
    325 		dst6.sin6_len = sizeof(struct sockaddr_in6);
    326 		dst6.sin6_addr.s6_addr[10] = dst6.sin6_addr.s6_addr[11] = 0xff;
    327 		bcopy(&ip->ip_dst, &dst6.sin6_addr.s6_addr[12],
    328 			sizeof(ip->ip_dst));
    329 		dst6.sin6_port = uh->uh_dport;
    330 
    331 		n += udp6_realinput(AF_INET, &src6, &dst6, m, iphlen);
    332 	}
    333 #endif
    334 
    335 	if (n == 0) {
    336 		if (m->m_flags & (M_BCAST | M_MCAST)) {
    337 			udpstat.udps_noportbcast++;
    338 			goto bad;
    339 		}
    340 		udpstat.udps_noport++;
    341 #ifdef IPKDB
    342 		if (checkipkdb(&ip->ip_src, uh->uh_sport, uh->uh_dport,
    343 				m, iphlen + sizeof(struct udphdr),
    344 				m->m_pkthdr.len - iphlen - sizeof(struct udphdr))) {
    345 			/*
    346 			 * It was a debugger connect packet,
    347 			 * just drop it now
    348 			 */
    349 			goto bad;
    350 		}
    351 #endif
    352 		icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_PORT, 0, 0);
    353 		m = NULL;
    354 	}
    355 
    356 bad:
    357 	if (m)
    358 		m_freem(m);
    359 	return;
    360 
    361 badcsum:
    362 	m_freem(m);
    363 	udpstat.udps_badsum++;
    364 }
    365 #endif
    366 
    367 #ifdef INET6
    368 int
    369 udp6_input(struct mbuf **mp, int *offp, int proto)
    370 {
    371 	struct mbuf *m = *mp;
    372 	int off = *offp;
    373 	struct sockaddr_in6 src, dst;
    374 	struct ip6_hdr *ip6;
    375 	struct udphdr *uh;
    376 	u_int32_t plen, ulen;
    377 
    378 	ip6 = mtod(m, struct ip6_hdr *);
    379 
    380 #if defined(NFAITH) && 0 < NFAITH
    381 	if (faithprefix(&ip6->ip6_dst)) {
    382 		/* send icmp6 host unreach? */
    383 		m_freem(m);
    384 		return IPPROTO_DONE;
    385 	}
    386 #endif
    387 
    388 	udp6stat.udp6s_ipackets++;
    389 
    390 	/* check for jumbogram is done in ip6_input.  we can trust pkthdr.len */
    391 	plen = m->m_pkthdr.len - off;
    392 	IP6_EXTHDR_GET(uh, struct udphdr *, m, off, sizeof(struct udphdr));
    393 	if (uh == NULL) {
    394 		ip6stat.ip6s_tooshort++;
    395 		return IPPROTO_DONE;
    396 	}
    397 	KASSERT(UDP_HDR_ALIGNED_P(uh));
    398 	ulen = ntohs((u_short)uh->uh_ulen);
    399 	/*
    400 	 * RFC2675 section 4: jumbograms will have 0 in the UDP header field,
    401 	 * iff payload length > 0xffff.
    402 	 */
    403 	if (ulen == 0 && plen > 0xffff)
    404 		ulen = plen;
    405 
    406 	if (plen != ulen) {
    407 		udp6stat.udp6s_badlen++;
    408 		goto bad;
    409 	}
    410 
    411 	/* destination port of 0 is illegal, based on RFC768. */
    412 	if (uh->uh_dport == 0)
    413 		goto bad;
    414 
    415 	/* Be proactive about malicious use of IPv4 mapped address */
    416 	if (IN6_IS_ADDR_V4MAPPED(&ip6->ip6_src) ||
    417 	    IN6_IS_ADDR_V4MAPPED(&ip6->ip6_dst)) {
    418 		/* XXX stat */
    419 		goto bad;
    420 	}
    421 
    422 	/*
    423 	 * Checksum extended UDP header and data.
    424 	 */
    425 	if (uh->uh_sum == 0) {
    426 		udp6stat.udp6s_nosum++;
    427 		goto bad;
    428 	}
    429 	if (in6_cksum(m, IPPROTO_UDP, off, ulen) != 0) {
    430 		udp6stat.udp6s_badsum++;
    431 		goto bad;
    432 	}
    433 
    434 	/*
    435 	 * Construct source and dst sockaddrs.
    436 	 * Note that ifindex (s6_addr16[1]) is already filled.
    437 	 */
    438 	bzero(&src, sizeof(src));
    439 	src.sin6_family = AF_INET6;
    440 	src.sin6_len = sizeof(struct sockaddr_in6);
    441 	/* KAME hack: recover scopeid */
    442 	(void)in6_recoverscope(&src, &ip6->ip6_src, m->m_pkthdr.rcvif);
    443 	src.sin6_port = uh->uh_sport;
    444 	bzero(&dst, sizeof(dst));
    445 	dst.sin6_family = AF_INET6;
    446 	dst.sin6_len = sizeof(struct sockaddr_in6);
    447 	/* KAME hack: recover scopeid */
    448 	(void)in6_recoverscope(&dst, &ip6->ip6_dst, m->m_pkthdr.rcvif);
    449 	dst.sin6_port = uh->uh_dport;
    450 
    451 	if (udp6_realinput(AF_INET6, &src, &dst, m, off) == 0) {
    452 		if (m->m_flags & M_MCAST) {
    453 			udp6stat.udp6s_noportmcast++;
    454 			goto bad;
    455 		}
    456 		udp6stat.udp6s_noport++;
    457 		icmp6_error(m, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOPORT, 0);
    458 		m = NULL;
    459 	}
    460 
    461 bad:
    462 	if (m)
    463 		m_freem(m);
    464 	return IPPROTO_DONE;
    465 }
    466 #endif
    467 
    468 #ifdef INET
    469 static void
    470 udp4_sendup(struct mbuf *m, int off /* offset of data portion */,
    471 	struct sockaddr *src, struct socket *so)
    472 {
    473 	struct mbuf *opts = NULL;
    474 	struct mbuf *n;
    475 	struct inpcb *inp = NULL;
    476 
    477 	if (!so)
    478 		return;
    479 	switch (so->so_proto->pr_domain->dom_family) {
    480 	case AF_INET:
    481 		inp = sotoinpcb(so);
    482 		break;
    483 #ifdef INET6
    484 	case AF_INET6:
    485 		break;
    486 #endif
    487 	default:
    488 		return;
    489 	}
    490 
    491 #if defined(IPSEC) || defined(FAST_IPSEC)
    492 	/* check AH/ESP integrity. */
    493 	if (so != NULL && ipsec4_in_reject_so(m, so)) {
    494 		ipsecstat.in_polvio++;
    495 		if ((n = m_copy(m, 0, M_COPYALL)) != NULL)
    496 			icmp_error(n, ICMP_UNREACH, ICMP_UNREACH_ADMIN_PROHIBIT,
    497 			    0, 0);
    498 		return;
    499 	}
    500 #endif /*IPSEC*/
    501 
    502 	if ((n = m_copy(m, 0, M_COPYALL)) != NULL) {
    503 		if (inp && (inp->inp_flags & INP_CONTROLOPTS
    504 			 || so->so_options & SO_TIMESTAMP)) {
    505 			struct ip *ip = mtod(n, struct ip *);
    506 			ip_savecontrol(inp, &opts, ip, n);
    507 		}
    508 
    509 		m_adj(n, off);
    510 		if (sbappendaddr(&so->so_rcv, src, n,
    511 				opts) == 0) {
    512 			m_freem(n);
    513 			if (opts)
    514 				m_freem(opts);
    515 			udpstat.udps_fullsock++;
    516 		} else
    517 			sorwakeup(so);
    518 	}
    519 }
    520 #endif
    521 
    522 #ifdef INET6
    523 static void
    524 udp6_sendup(struct mbuf *m, int off /* offset of data portion */,
    525 	struct sockaddr *src, struct socket *so)
    526 {
    527 	struct mbuf *opts = NULL;
    528 	struct mbuf *n;
    529 	struct in6pcb *in6p = NULL;
    530 
    531 	if (!so)
    532 		return;
    533 	if (so->so_proto->pr_domain->dom_family != AF_INET6)
    534 		return;
    535 	in6p = sotoin6pcb(so);
    536 
    537 #if defined(IPSEC) || defined(FAST_IPSEC)
    538 	/* check AH/ESP integrity. */
    539 	if (so != NULL && ipsec6_in_reject_so(m, so)) {
    540 		ipsec6stat.in_polvio++;
    541 		if ((n = m_copy(m, 0, M_COPYALL)) != NULL)
    542 			icmp6_error(n, ICMP6_DST_UNREACH,
    543 			    ICMP6_DST_UNREACH_ADMIN, 0);
    544 		return;
    545 	}
    546 #endif /*IPSEC*/
    547 
    548 	if ((n = m_copy(m, 0, M_COPYALL)) != NULL) {
    549 		if (in6p && (in6p->in6p_flags & IN6P_CONTROLOPTS
    550 			  || in6p->in6p_socket->so_options & SO_TIMESTAMP)) {
    551 			struct ip6_hdr *ip6 = mtod(n, struct ip6_hdr *);
    552 			ip6_savecontrol(in6p, &opts, ip6, n);
    553 		}
    554 
    555 		m_adj(n, off);
    556 		if (sbappendaddr(&so->so_rcv, src, n, opts) == 0) {
    557 			m_freem(n);
    558 			if (opts)
    559 				m_freem(opts);
    560 			udp6stat.udp6s_fullsock++;
    561 		} else
    562 			sorwakeup(so);
    563 	}
    564 }
    565 #endif
    566 
    567 #ifdef INET
    568 static int
    569 udp4_realinput(struct sockaddr_in *src, struct sockaddr_in *dst,
    570 	struct mbuf *m, int off /* offset of udphdr */)
    571 {
    572 	u_int16_t *sport, *dport;
    573 	int rcvcnt;
    574 	struct in_addr *src4, *dst4;
    575 	struct inpcb_hdr *inph;
    576 	struct inpcb *inp;
    577 
    578 	rcvcnt = 0;
    579 	off += sizeof(struct udphdr);	/* now, offset of payload */
    580 
    581 	if (src->sin_family != AF_INET || dst->sin_family != AF_INET)
    582 		goto bad;
    583 
    584 	src4 = &src->sin_addr;
    585 	sport = &src->sin_port;
    586 	dst4 = &dst->sin_addr;
    587 	dport = &dst->sin_port;
    588 
    589 	if (IN_MULTICAST(dst4->s_addr) ||
    590 	    in_broadcast(*dst4, m->m_pkthdr.rcvif)) {
    591 		/*
    592 		 * Deliver a multicast or broadcast datagram to *all* sockets
    593 		 * for which the local and remote addresses and ports match
    594 		 * those of the incoming datagram.  This allows more than
    595 		 * one process to receive multi/broadcasts on the same port.
    596 		 * (This really ought to be done for unicast datagrams as
    597 		 * well, but that would cause problems with existing
    598 		 * applications that open both address-specific sockets and
    599 		 * a wildcard socket listening to the same port -- they would
    600 		 * end up receiving duplicates of every unicast datagram.
    601 		 * Those applications open the multiple sockets to overcome an
    602 		 * inadequacy of the UDP socket interface, but for backwards
    603 		 * compatibility we avoid the problem here rather than
    604 		 * fixing the interface.  Maybe 4.5BSD will remedy this?)
    605 		 */
    606 
    607 		/*
    608 		 * KAME note: traditionally we dropped udpiphdr from mbuf here.
    609 		 * we need udpiphdr for IPsec processing so we do that later.
    610 		 */
    611 		/*
    612 		 * Locate pcb(s) for datagram.
    613 		 */
    614 		CIRCLEQ_FOREACH(inph, &udbtable.inpt_queue, inph_queue) {
    615 			inp = (struct inpcb *)inph;
    616 			if (inp->inp_af != AF_INET)
    617 				continue;
    618 
    619 			if (inp->inp_lport != *dport)
    620 				continue;
    621 			if (!in_nullhost(inp->inp_laddr)) {
    622 				if (!in_hosteq(inp->inp_laddr, *dst4))
    623 					continue;
    624 			}
    625 			if (!in_nullhost(inp->inp_faddr)) {
    626 				if (!in_hosteq(inp->inp_faddr, *src4) ||
    627 				    inp->inp_fport != *sport)
    628 					continue;
    629 			}
    630 
    631 			udp4_sendup(m, off, (struct sockaddr *)src,
    632 				inp->inp_socket);
    633 			rcvcnt++;
    634 
    635 			/*
    636 			 * Don't look for additional matches if this one does
    637 			 * not have either the SO_REUSEPORT or SO_REUSEADDR
    638 			 * socket options set.  This heuristic avoids searching
    639 			 * through all pcbs in the common case of a non-shared
    640 			 * port.  It assumes that an application will never
    641 			 * clear these options after setting them.
    642 			 */
    643 			if ((inp->inp_socket->so_options &
    644 			    (SO_REUSEPORT|SO_REUSEADDR)) == 0)
    645 				break;
    646 		}
    647 	} else {
    648 		/*
    649 		 * Locate pcb for datagram.
    650 		 */
    651 		inp = in_pcblookup_connect(&udbtable, *src4, *sport, *dst4, *dport);
    652 		if (inp == 0) {
    653 			++udpstat.udps_pcbhashmiss;
    654 			inp = in_pcblookup_bind(&udbtable, *dst4, *dport);
    655 			if (inp == 0)
    656 				return rcvcnt;
    657 		}
    658 
    659 		udp4_sendup(m, off, (struct sockaddr *)src, inp->inp_socket);
    660 		rcvcnt++;
    661 	}
    662 
    663 bad:
    664 	return rcvcnt;
    665 }
    666 #endif
    667 
    668 #ifdef INET6
    669 static int
    670 udp6_realinput(int af, struct sockaddr_in6 *src, struct sockaddr_in6 *dst,
    671 	struct mbuf *m, int off)
    672 {
    673 	u_int16_t sport, dport;
    674 	int rcvcnt;
    675 	struct in6_addr src6, dst6;
    676 	const struct in_addr *dst4;
    677 	struct inpcb_hdr *inph;
    678 	struct in6pcb *in6p;
    679 
    680 	rcvcnt = 0;
    681 	off += sizeof(struct udphdr);	/* now, offset of payload */
    682 
    683 	if (af != AF_INET && af != AF_INET6)
    684 		goto bad;
    685 	if (src->sin6_family != AF_INET6 || dst->sin6_family != AF_INET6)
    686 		goto bad;
    687 
    688 	in6_embedscope(&src6, src, NULL, NULL);
    689 	sport = src->sin6_port;
    690 	in6_embedscope(&dst6, dst, NULL, NULL);
    691 	dport = dst->sin6_port;
    692 	dst4 = (struct in_addr *)&dst->sin6_addr.s6_addr[12];
    693 
    694 	if (IN6_IS_ADDR_MULTICAST(&dst6) ||
    695 	    (af == AF_INET && IN_MULTICAST(dst4->s_addr))) {
    696 		/*
    697 		 * Deliver a multicast or broadcast datagram to *all* sockets
    698 		 * for which the local and remote addresses and ports match
    699 		 * those of the incoming datagram.  This allows more than
    700 		 * one process to receive multi/broadcasts on the same port.
    701 		 * (This really ought to be done for unicast datagrams as
    702 		 * well, but that would cause problems with existing
    703 		 * applications that open both address-specific sockets and
    704 		 * a wildcard socket listening to the same port -- they would
    705 		 * end up receiving duplicates of every unicast datagram.
    706 		 * Those applications open the multiple sockets to overcome an
    707 		 * inadequacy of the UDP socket interface, but for backwards
    708 		 * compatibility we avoid the problem here rather than
    709 		 * fixing the interface.  Maybe 4.5BSD will remedy this?)
    710 		 */
    711 
    712 		/*
    713 		 * KAME note: traditionally we dropped udpiphdr from mbuf here.
    714 		 * we need udpiphdr for IPsec processing so we do that later.
    715 		 */
    716 		/*
    717 		 * Locate pcb(s) for datagram.
    718 		 */
    719 		CIRCLEQ_FOREACH(inph, &udbtable.inpt_queue, inph_queue) {
    720 			in6p = (struct in6pcb *)inph;
    721 			if (in6p->in6p_af != AF_INET6)
    722 				continue;
    723 
    724 			if (in6p->in6p_lport != dport)
    725 				continue;
    726 			if (!IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr)) {
    727 				if (!IN6_ARE_ADDR_EQUAL(&in6p->in6p_laddr, &dst6))
    728 					continue;
    729 			} else {
    730 				if (IN6_IS_ADDR_V4MAPPED(&dst6) &&
    731 				    (in6p->in6p_flags & IN6P_IPV6_V6ONLY))
    732 					continue;
    733 			}
    734 			if (!IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_faddr)) {
    735 				if (!IN6_ARE_ADDR_EQUAL(&in6p->in6p_faddr,
    736 				    &src6) || in6p->in6p_fport != sport)
    737 					continue;
    738 			} else {
    739 				if (IN6_IS_ADDR_V4MAPPED(&src6) &&
    740 				    (in6p->in6p_flags & IN6P_IPV6_V6ONLY))
    741 					continue;
    742 			}
    743 
    744 			udp6_sendup(m, off, (struct sockaddr *)src,
    745 				in6p->in6p_socket);
    746 			rcvcnt++;
    747 
    748 			/*
    749 			 * Don't look for additional matches if this one does
    750 			 * not have either the SO_REUSEPORT or SO_REUSEADDR
    751 			 * socket options set.  This heuristic avoids searching
    752 			 * through all pcbs in the common case of a non-shared
    753 			 * port.  It assumes that an application will never
    754 			 * clear these options after setting them.
    755 			 */
    756 			if ((in6p->in6p_socket->so_options &
    757 			    (SO_REUSEPORT|SO_REUSEADDR)) == 0)
    758 				break;
    759 		}
    760 	} else {
    761 		/*
    762 		 * Locate pcb for datagram.
    763 		 */
    764 		in6p = in6_pcblookup_connect(&udbtable, &src6, sport,
    765 		    &dst6, dport, 0);
    766 		if (in6p == 0) {
    767 			++udpstat.udps_pcbhashmiss;
    768 			in6p = in6_pcblookup_bind(&udbtable, &dst6, dport, 0);
    769 			if (in6p == 0)
    770 				return rcvcnt;
    771 		}
    772 
    773 		udp6_sendup(m, off, (struct sockaddr *)src, in6p->in6p_socket);
    774 		rcvcnt++;
    775 	}
    776 
    777 bad:
    778 	return rcvcnt;
    779 }
    780 #endif
    781 
    782 #ifdef INET
    783 /*
    784  * Notify a udp user of an asynchronous error;
    785  * just wake up so that he can collect error status.
    786  */
    787 static void
    788 udp_notify(struct inpcb *inp, int errno)
    789 {
    790 	inp->inp_socket->so_error = errno;
    791 	sorwakeup(inp->inp_socket);
    792 	sowwakeup(inp->inp_socket);
    793 }
    794 
    795 void *
    796 udp_ctlinput(int cmd, struct sockaddr *sa, void *v)
    797 {
    798 	struct ip *ip = v;
    799 	struct udphdr *uh;
    800 	void (*notify)(struct inpcb *, int) = udp_notify;
    801 	int errno;
    802 
    803 	if (sa->sa_family != AF_INET
    804 	 || sa->sa_len != sizeof(struct sockaddr_in))
    805 		return NULL;
    806 	if ((unsigned)cmd >= PRC_NCMDS)
    807 		return NULL;
    808 	errno = inetctlerrmap[cmd];
    809 	if (PRC_IS_REDIRECT(cmd))
    810 		notify = in_rtchange, ip = 0;
    811 	else if (cmd == PRC_HOSTDEAD)
    812 		ip = 0;
    813 	else if (errno == 0)
    814 		return NULL;
    815 	if (ip) {
    816 		uh = (struct udphdr *)((caddr_t)ip + (ip->ip_hl << 2));
    817 		in_pcbnotify(&udbtable, satosin(sa)->sin_addr, uh->uh_dport,
    818 		    ip->ip_src, uh->uh_sport, errno, notify);
    819 
    820 		/* XXX mapped address case */
    821 	} else
    822 		in_pcbnotifyall(&udbtable, satosin(sa)->sin_addr, errno,
    823 		    notify);
    824 	return NULL;
    825 }
    826 
    827 int
    828 udp_output(struct mbuf *m, ...)
    829 {
    830 	struct inpcb *inp;
    831 	struct udpiphdr *ui;
    832 	int len = m->m_pkthdr.len;
    833 	int error = 0;
    834 	va_list ap;
    835 
    836 	MCLAIM(m, &udp_tx_mowner);
    837 	va_start(ap, m);
    838 	inp = va_arg(ap, struct inpcb *);
    839 	va_end(ap);
    840 
    841 	/*
    842 	 * Calculate data length and get a mbuf
    843 	 * for UDP and IP headers.
    844 	 */
    845 	M_PREPEND(m, sizeof(struct udpiphdr), M_DONTWAIT);
    846 	if (m == 0) {
    847 		error = ENOBUFS;
    848 		goto release;
    849 	}
    850 
    851 	/*
    852 	 * Compute the packet length of the IP header, and
    853 	 * punt if the length looks bogus.
    854 	 */
    855 	if (len + sizeof(struct udpiphdr) > IP_MAXPACKET) {
    856 		error = EMSGSIZE;
    857 		goto release;
    858 	}
    859 
    860 	/*
    861 	 * Fill in mbuf with extended UDP header
    862 	 * and addresses and length put into network format.
    863 	 */
    864 	ui = mtod(m, struct udpiphdr *);
    865 	ui->ui_pr = IPPROTO_UDP;
    866 	ui->ui_src = inp->inp_laddr;
    867 	ui->ui_dst = inp->inp_faddr;
    868 	ui->ui_sport = inp->inp_lport;
    869 	ui->ui_dport = inp->inp_fport;
    870 	ui->ui_ulen = htons((u_int16_t)len + sizeof(struct udphdr));
    871 
    872 	/*
    873 	 * Set up checksum and output datagram.
    874 	 */
    875 	if (udpcksum) {
    876 		/*
    877 		 * XXX Cache pseudo-header checksum part for
    878 		 * XXX "connected" UDP sockets.
    879 		 */
    880 		ui->ui_sum = in_cksum_phdr(ui->ui_src.s_addr,
    881 		    ui->ui_dst.s_addr, htons((u_int16_t)len +
    882 		    sizeof(struct udphdr) + IPPROTO_UDP));
    883 		m->m_pkthdr.csum_flags = M_CSUM_UDPv4;
    884 		m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum);
    885 	} else
    886 		ui->ui_sum = 0;
    887 	((struct ip *)ui)->ip_len = htons(sizeof (struct udpiphdr) + len);
    888 	((struct ip *)ui)->ip_ttl = inp->inp_ip.ip_ttl;	/* XXX */
    889 	((struct ip *)ui)->ip_tos = inp->inp_ip.ip_tos;	/* XXX */
    890 	udpstat.udps_opackets++;
    891 
    892 	return (ip_output(m, inp->inp_options, &inp->inp_route,
    893 	    inp->inp_socket->so_options & (SO_DONTROUTE | SO_BROADCAST),
    894 	    inp->inp_moptions, inp->inp_socket));
    895 
    896 release:
    897 	m_freem(m);
    898 	return (error);
    899 }
    900 
    901 int	udp_sendspace = 9216;		/* really max datagram size */
    902 int	udp_recvspace = 40 * (1024 + sizeof(struct sockaddr_in));
    903 					/* 40 1K datagrams */
    904 
    905 /*ARGSUSED*/
    906 int
    907 udp_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam,
    908 	struct mbuf *control, struct proc *p)
    909 {
    910 	struct inpcb *inp;
    911 	int s;
    912 	int error = 0;
    913 
    914 	if (req == PRU_CONTROL)
    915 		return (in_control(so, (long)m, (caddr_t)nam,
    916 		    (struct ifnet *)control, p));
    917 
    918 	if (req == PRU_PURGEIF) {
    919 		in_pcbpurgeif0(&udbtable, (struct ifnet *)control);
    920 		in_purgeif((struct ifnet *)control);
    921 		in_pcbpurgeif(&udbtable, (struct ifnet *)control);
    922 		return (0);
    923 	}
    924 
    925 	s = splsoftnet();
    926 	inp = sotoinpcb(so);
    927 #ifdef DIAGNOSTIC
    928 	if (req != PRU_SEND && req != PRU_SENDOOB && control)
    929 		panic("udp_usrreq: unexpected control mbuf");
    930 #endif
    931 	if (inp == 0 && req != PRU_ATTACH) {
    932 		error = EINVAL;
    933 		goto release;
    934 	}
    935 
    936 	/*
    937 	 * Note: need to block udp_input while changing
    938 	 * the udp pcb queue and/or pcb addresses.
    939 	 */
    940 	switch (req) {
    941 
    942 	case PRU_ATTACH:
    943 		if (inp != 0) {
    944 			error = EISCONN;
    945 			break;
    946 		}
    947 #ifdef MBUFTRACE
    948 		so->so_mowner = &udp_mowner;
    949 		so->so_rcv.sb_mowner = &udp_rx_mowner;
    950 		so->so_snd.sb_mowner = &udp_tx_mowner;
    951 #endif
    952 		if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
    953 			error = soreserve(so, udp_sendspace, udp_recvspace);
    954 			if (error)
    955 				break;
    956 		}
    957 		error = in_pcballoc(so, &udbtable);
    958 		if (error)
    959 			break;
    960 		inp = sotoinpcb(so);
    961 		inp->inp_ip.ip_ttl = ip_defttl;
    962 		break;
    963 
    964 	case PRU_DETACH:
    965 		in_pcbdetach(inp);
    966 		break;
    967 
    968 	case PRU_BIND:
    969 		error = in_pcbbind(inp, nam, p);
    970 		break;
    971 
    972 	case PRU_LISTEN:
    973 		error = EOPNOTSUPP;
    974 		break;
    975 
    976 	case PRU_CONNECT:
    977 		error = in_pcbconnect(inp, nam);
    978 		if (error)
    979 			break;
    980 		soisconnected(so);
    981 		break;
    982 
    983 	case PRU_CONNECT2:
    984 		error = EOPNOTSUPP;
    985 		break;
    986 
    987 	case PRU_DISCONNECT:
    988 		/*soisdisconnected(so);*/
    989 		so->so_state &= ~SS_ISCONNECTED;	/* XXX */
    990 		in_pcbdisconnect(inp);
    991 		inp->inp_laddr = zeroin_addr;		/* XXX */
    992 		in_pcbstate(inp, INP_BOUND);		/* XXX */
    993 		break;
    994 
    995 	case PRU_SHUTDOWN:
    996 		socantsendmore(so);
    997 		break;
    998 
    999 	case PRU_RCVD:
   1000 		error = EOPNOTSUPP;
   1001 		break;
   1002 
   1003 	case PRU_SEND:
   1004 		if (control && control->m_len) {
   1005 			m_freem(control);
   1006 			m_freem(m);
   1007 			error = EINVAL;
   1008 			break;
   1009 		}
   1010 	{
   1011 		struct in_addr laddr;			/* XXX */
   1012 
   1013 		if (nam) {
   1014 			laddr = inp->inp_laddr;		/* XXX */
   1015 			if ((so->so_state & SS_ISCONNECTED) != 0) {
   1016 				error = EISCONN;
   1017 				goto die;
   1018 			}
   1019 			error = in_pcbconnect(inp, nam);
   1020 			if (error)
   1021 				goto die;
   1022 		} else {
   1023 			if ((so->so_state & SS_ISCONNECTED) == 0) {
   1024 				error = ENOTCONN;
   1025 				goto die;
   1026 			}
   1027 		}
   1028 		error = udp_output(m, inp);
   1029 		m = NULL;
   1030 		if (nam) {
   1031 			in_pcbdisconnect(inp);
   1032 			inp->inp_laddr = laddr;		/* XXX */
   1033 			in_pcbstate(inp, INP_BOUND);	/* XXX */
   1034 		}
   1035 	  die:
   1036 		if (m)
   1037 			m_freem(m);
   1038 	}
   1039 		break;
   1040 
   1041 	case PRU_SENSE:
   1042 		/*
   1043 		 * stat: don't bother with a blocksize.
   1044 		 */
   1045 		splx(s);
   1046 		return (0);
   1047 
   1048 	case PRU_RCVOOB:
   1049 		error =  EOPNOTSUPP;
   1050 		break;
   1051 
   1052 	case PRU_SENDOOB:
   1053 		m_freem(control);
   1054 		m_freem(m);
   1055 		error =  EOPNOTSUPP;
   1056 		break;
   1057 
   1058 	case PRU_SOCKADDR:
   1059 		in_setsockaddr(inp, nam);
   1060 		break;
   1061 
   1062 	case PRU_PEERADDR:
   1063 		in_setpeeraddr(inp, nam);
   1064 		break;
   1065 
   1066 	default:
   1067 		panic("udp_usrreq");
   1068 	}
   1069 
   1070 release:
   1071 	splx(s);
   1072 	return (error);
   1073 }
   1074 
   1075 /*
   1076  * Sysctl for udp variables.
   1077  */
   1078 SYSCTL_SETUP(sysctl_net_inet_udp_setup, "sysctl net.inet.udp subtree setup")
   1079 {
   1080 
   1081 	sysctl_createv(clog, 0, NULL, NULL,
   1082 		       CTLFLAG_PERMANENT,
   1083 		       CTLTYPE_NODE, "net", NULL,
   1084 		       NULL, 0, NULL, 0,
   1085 		       CTL_NET, CTL_EOL);
   1086 	sysctl_createv(clog, 0, NULL, NULL,
   1087 		       CTLFLAG_PERMANENT,
   1088 		       CTLTYPE_NODE, "inet", NULL,
   1089 		       NULL, 0, NULL, 0,
   1090 		       CTL_NET, PF_INET, CTL_EOL);
   1091 	sysctl_createv(clog, 0, NULL, NULL,
   1092 		       CTLFLAG_PERMANENT,
   1093 		       CTLTYPE_NODE, "udp", NULL,
   1094 		       NULL, 0, NULL, 0,
   1095 		       CTL_NET, PF_INET, IPPROTO_UDP, CTL_EOL);
   1096 
   1097 	sysctl_createv(clog, 0, NULL, NULL,
   1098 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1099 		       CTLTYPE_INT, "checksum", NULL,
   1100 		       NULL, 0, &udpcksum, 0,
   1101 		       CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_CHECKSUM,
   1102 		       CTL_EOL);
   1103 	sysctl_createv(clog, 0, NULL, NULL,
   1104 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1105 		       CTLTYPE_INT, "sendspace", NULL,
   1106 		       NULL, 0, &udp_sendspace, 0,
   1107 		       CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_SENDSPACE,
   1108 		       CTL_EOL);
   1109 	sysctl_createv(clog, 0, NULL, NULL,
   1110 		       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
   1111 		       CTLTYPE_INT, "recvspace", NULL,
   1112 		       NULL, 0, &udp_recvspace, 0,
   1113 		       CTL_NET, PF_INET, IPPROTO_UDP, UDPCTL_RECVSPACE,
   1114 		       CTL_EOL);
   1115 }
   1116 #endif
   1117