xref: /freebsd/sys/netinet/udp_usrreq.c (revision aed557087269cd052aa76cc15af4a1fd70cbbf24)
1c398230bSWarner Losh /*-
26dfab5b1SGarrett Wollman  * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
3df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
4df8bae1dSRodney W. Grimes  *
5df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
6df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
7df8bae1dSRodney W. Grimes  * are met:
8df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
9df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
10df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
11df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
12df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
13df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
14df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
15df8bae1dSRodney W. Grimes  *    without specific prior written permission.
16df8bae1dSRodney W. Grimes  *
17df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
28df8bae1dSRodney W. Grimes  *
296dfab5b1SGarrett Wollman  *	@(#)udp_usrreq.c	8.6 (Berkeley) 5/23/95
30c3aac50fSPeter Wemm  * $FreeBSD$
31df8bae1dSRodney W. Grimes  */
32df8bae1dSRodney W. Grimes 
330b4ae859SGleb Smirnoff #include "opt_ipfw.h"
346a800098SYoshinobu Inoue #include "opt_ipsec.h"
35cfa1ca9dSYoshinobu Inoue #include "opt_inet6.h"
36bdb3fa18SRobert Watson #include "opt_mac.h"
37cfa1ca9dSYoshinobu Inoue 
38df8bae1dSRodney W. Grimes #include <sys/param.h>
3926f9a767SRodney W. Grimes #include <sys/systm.h>
40960ed29cSSeigo Tanimura #include <sys/domain.h>
414f590175SPaul Saab #include <sys/eventhandler.h>
42960ed29cSSeigo Tanimura #include <sys/jail.h>
43b110a8a2SGarrett Wollman #include <sys/kernel.h>
44960ed29cSSeigo Tanimura #include <sys/lock.h>
45df8bae1dSRodney W. Grimes #include <sys/malloc.h>
46df8bae1dSRodney W. Grimes #include <sys/mbuf.h>
47490d50b6SBrian Feldman #include <sys/proc.h>
48df8bae1dSRodney W. Grimes #include <sys/protosw.h>
49960ed29cSSeigo Tanimura #include <sys/signalvar.h>
50df8bae1dSRodney W. Grimes #include <sys/socket.h>
51df8bae1dSRodney W. Grimes #include <sys/socketvar.h>
52960ed29cSSeigo Tanimura #include <sys/sx.h>
53b5e8ce9fSBruce Evans #include <sys/sysctl.h>
54816a3d83SPoul-Henning Kamp #include <sys/syslog.h>
558781d8e9SBruce Evans 
5669c2d429SJeff Roberson #include <vm/uma.h>
57df8bae1dSRodney W. Grimes 
58df8bae1dSRodney W. Grimes #include <net/if.h>
59df8bae1dSRodney W. Grimes #include <net/route.h>
60df8bae1dSRodney W. Grimes 
61df8bae1dSRodney W. Grimes #include <netinet/in.h>
62df8bae1dSRodney W. Grimes #include <netinet/in_systm.h>
63960ed29cSSeigo Tanimura #include <netinet/in_pcb.h>
64960ed29cSSeigo Tanimura #include <netinet/in_var.h>
65df8bae1dSRodney W. Grimes #include <netinet/ip.h>
66cfa1ca9dSYoshinobu Inoue #ifdef INET6
67cfa1ca9dSYoshinobu Inoue #include <netinet/ip6.h>
68cfa1ca9dSYoshinobu Inoue #endif
69960ed29cSSeigo Tanimura #include <netinet/ip_icmp.h>
70960ed29cSSeigo Tanimura #include <netinet/icmp_var.h>
71df8bae1dSRodney W. Grimes #include <netinet/ip_var.h>
72ef39adf0SAndre Oppermann #include <netinet/ip_options.h>
73cfa1ca9dSYoshinobu Inoue #ifdef INET6
74cfa1ca9dSYoshinobu Inoue #include <netinet6/ip6_var.h>
75cfa1ca9dSYoshinobu Inoue #endif
76df8bae1dSRodney W. Grimes #include <netinet/udp.h>
77df8bae1dSRodney W. Grimes #include <netinet/udp_var.h>
78df8bae1dSRodney W. Grimes 
79b9234fafSSam Leffler #ifdef FAST_IPSEC
80b9234fafSSam Leffler #include <netipsec/ipsec.h>
81b9234fafSSam Leffler #endif /*FAST_IPSEC*/
82b9234fafSSam Leffler 
83cfa1ca9dSYoshinobu Inoue #ifdef IPSEC
84cfa1ca9dSYoshinobu Inoue #include <netinet6/ipsec.h>
85cfa1ca9dSYoshinobu Inoue #endif /*IPSEC*/
86cfa1ca9dSYoshinobu Inoue 
87db4f9cc7SJonathan Lemon #include <machine/in_cksum.h>
88db4f9cc7SJonathan Lemon 
89aed55708SRobert Watson #include <security/mac/mac_framework.h>
90aed55708SRobert Watson 
91df8bae1dSRodney W. Grimes /*
92df8bae1dSRodney W. Grimes  * UDP protocol implementation.
93df8bae1dSRodney W. Grimes  * Per RFC 768, August, 1980.
94df8bae1dSRodney W. Grimes  */
95df8bae1dSRodney W. Grimes #ifndef	COMPAT_42
960312fbe9SPoul-Henning Kamp static int	udpcksum = 1;
97df8bae1dSRodney W. Grimes #else
980312fbe9SPoul-Henning Kamp static int	udpcksum = 0;		/* XXX */
99df8bae1dSRodney W. Grimes #endif
1000312fbe9SPoul-Henning Kamp SYSCTL_INT(_net_inet_udp, UDPCTL_CHECKSUM, checksum, CTLFLAG_RW,
1010312fbe9SPoul-Henning Kamp 		&udpcksum, 0, "");
102df8bae1dSRodney W. Grimes 
103032dcc76SLuigi Rizzo int	log_in_vain = 0;
104816a3d83SPoul-Henning Kamp SYSCTL_INT(_net_inet_udp, OID_AUTO, log_in_vain, CTLFLAG_RW,
1053d177f46SBill Fumerola     &log_in_vain, 0, "Log all incoming UDP packets");
106816a3d83SPoul-Henning Kamp 
107032dcc76SLuigi Rizzo static int	blackhole = 0;
10816f7f31fSGeoff Rehmet SYSCTL_INT(_net_inet_udp, OID_AUTO, blackhole, CTLFLAG_RW,
10916f7f31fSGeoff Rehmet 	&blackhole, 0, "Do not send port unreachables for refused connects");
11016f7f31fSGeoff Rehmet 
11183453a06SBruce M Simpson static int	strict_mcast_mship = 0;
11283453a06SBruce M Simpson SYSCTL_INT(_net_inet_udp, OID_AUTO, strict_mcast_mship, CTLFLAG_RW,
11383453a06SBruce M Simpson 	&strict_mcast_mship, 0, "Only send multicast to member sockets");
11483453a06SBruce M Simpson 
11576429de4SYoshinobu Inoue struct	inpcbhead udb;		/* from udp_var.h */
116cfa1ca9dSYoshinobu Inoue #define	udb6	udb  /* for KAME src sync over BSD*'s */
1177a2aab80SBrian Feldman struct	inpcbinfo udbinfo;
11815bd2b43SDavid Greenman 
11915bd2b43SDavid Greenman #ifndef UDBHASHSIZE
120c3229e05SDavid Greenman #define UDBHASHSIZE 16
12115bd2b43SDavid Greenman #endif
12215bd2b43SDavid Greenman 
12376429de4SYoshinobu Inoue struct	udpstat udpstat;	/* from udp_var.h */
124c73d99b5SRuslan Ermilov SYSCTL_STRUCT(_net_inet_udp, UDPCTL_STATS, stats, CTLFLAG_RW,
1253d177f46SBill Fumerola     &udpstat, udpstat, "UDP statistics (struct udpstat, netinet/udp_var.h)");
126f2ea20e6SGarrett Wollman 
127c1cd65baSBruce Evans static void udp_append(struct inpcb *last, struct ip *ip, struct mbuf *n,
128d4b509bdSRobert Watson 		int off, struct sockaddr_in *udp_in);
129cfa1ca9dSYoshinobu Inoue 
130bc725eafSRobert Watson static void udp_detach(struct socket *so);
1314d77a549SAlfred Perlstein static	int udp_output(struct inpcb *, struct mbuf *, struct sockaddr *,
1324d77a549SAlfred Perlstein 		struct mbuf *, struct thread *);
133df8bae1dSRodney W. Grimes 
1344f590175SPaul Saab static void
1354f590175SPaul Saab udp_zone_change(void *tag)
1364f590175SPaul Saab {
1374f590175SPaul Saab 
1384f590175SPaul Saab 	uma_zone_set_max(udbinfo.ipi_zone, maxsockets);
1394f590175SPaul Saab }
1404f590175SPaul Saab 
141d915b280SStephan Uphoff static int
142d915b280SStephan Uphoff udp_inpcb_init(void *mem, int size, int flags)
143d915b280SStephan Uphoff {
144d915b280SStephan Uphoff 	struct inpcb *inp = (struct inpcb *) mem;
145d915b280SStephan Uphoff 	INP_LOCK_INIT(inp, "inp", "udpinp");
146d915b280SStephan Uphoff 	return (0);
147d915b280SStephan Uphoff }
148d915b280SStephan Uphoff 
149df8bae1dSRodney W. Grimes void
150032dcc76SLuigi Rizzo udp_init()
151df8bae1dSRodney W. Grimes {
152f76fcf6dSJeffrey Hsu 	INP_INFO_LOCK_INIT(&udbinfo, "udp");
15315bd2b43SDavid Greenman 	LIST_INIT(&udb);
15415bd2b43SDavid Greenman 	udbinfo.listhead = &udb;
155ddd79a97SDavid Greenman 	udbinfo.hashbase = hashinit(UDBHASHSIZE, M_PCB, &udbinfo.hashmask);
1568781d8e9SBruce Evans 	udbinfo.porthashbase = hashinit(UDBHASHSIZE, M_PCB,
1578781d8e9SBruce Evans 					&udbinfo.porthashmask);
15869c2d429SJeff Roberson 	udbinfo.ipi_zone = uma_zcreate("udpcb", sizeof(struct inpcb), NULL,
159d915b280SStephan Uphoff 	    NULL, udp_inpcb_init, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
16069c2d429SJeff Roberson 	uma_zone_set_max(udbinfo.ipi_zone, maxsockets);
1614f590175SPaul Saab 	EVENTHANDLER_REGISTER(maxsockets_change, udp_zone_change, NULL,
1624f590175SPaul Saab 		EVENTHANDLER_PRI_ANY);
163df8bae1dSRodney W. Grimes }
164df8bae1dSRodney W. Grimes 
165df8bae1dSRodney W. Grimes void
166032dcc76SLuigi Rizzo udp_input(m, off)
167032dcc76SLuigi Rizzo 	register struct mbuf *m;
168032dcc76SLuigi Rizzo 	int off;
169df8bae1dSRodney W. Grimes {
170cfa1ca9dSYoshinobu Inoue 	int iphlen = off;
171032dcc76SLuigi Rizzo 	register struct ip *ip;
172032dcc76SLuigi Rizzo 	register struct udphdr *uh;
173032dcc76SLuigi Rizzo 	register struct inpcb *inp;
174df8bae1dSRodney W. Grimes 	int len;
175df8bae1dSRodney W. Grimes 	struct ip save_ip;
176d4b509bdSRobert Watson 	struct sockaddr_in udp_in;
1770b4ae859SGleb Smirnoff #ifdef IPFIREWALL_FORWARD
1780b4ae859SGleb Smirnoff 	struct m_tag *fwd_tag;
1790b4ae859SGleb Smirnoff #endif
180df8bae1dSRodney W. Grimes 
181df8bae1dSRodney W. Grimes 	udpstat.udps_ipackets++;
182df8bae1dSRodney W. Grimes 
183df8bae1dSRodney W. Grimes 	/*
184df8bae1dSRodney W. Grimes 	 * Strip IP options, if any; should skip this,
185df8bae1dSRodney W. Grimes 	 * make available to user, and use on returned packets,
186df8bae1dSRodney W. Grimes 	 * but we don't yet have a way to check the checksum
187df8bae1dSRodney W. Grimes 	 * with options still present.
188df8bae1dSRodney W. Grimes 	 */
189df8bae1dSRodney W. Grimes 	if (iphlen > sizeof (struct ip)) {
190df8bae1dSRodney W. Grimes 		ip_stripoptions(m, (struct mbuf *)0);
191df8bae1dSRodney W. Grimes 		iphlen = sizeof(struct ip);
192df8bae1dSRodney W. Grimes 	}
193df8bae1dSRodney W. Grimes 
194df8bae1dSRodney W. Grimes 	/*
195df8bae1dSRodney W. Grimes 	 * Get IP and UDP header together in first mbuf.
196df8bae1dSRodney W. Grimes 	 */
197df8bae1dSRodney W. Grimes 	ip = mtod(m, struct ip *);
198df8bae1dSRodney W. Grimes 	if (m->m_len < iphlen + sizeof(struct udphdr)) {
199df8bae1dSRodney W. Grimes 		if ((m = m_pullup(m, iphlen + sizeof(struct udphdr))) == 0) {
200df8bae1dSRodney W. Grimes 			udpstat.udps_hdrops++;
201df8bae1dSRodney W. Grimes 			return;
202df8bae1dSRodney W. Grimes 		}
203df8bae1dSRodney W. Grimes 		ip = mtod(m, struct ip *);
204df8bae1dSRodney W. Grimes 	}
205df8bae1dSRodney W. Grimes 	uh = (struct udphdr *)((caddr_t)ip + iphlen);
206df8bae1dSRodney W. Grimes 
207686cdd19SJun-ichiro itojun Hagino 	/* destination port of 0 is illegal, based on RFC768. */
208686cdd19SJun-ichiro itojun Hagino 	if (uh->uh_dport == 0)
209f76fcf6dSJeffrey Hsu 		goto badunlocked;
210686cdd19SJun-ichiro itojun Hagino 
211df8bae1dSRodney W. Grimes 	/*
212b9234fafSSam Leffler 	 * Construct sockaddr format source address.
213b9234fafSSam Leffler 	 * Stuff source address and datagram in user buffer.
214b9234fafSSam Leffler 	 */
215d4b509bdSRobert Watson 	bzero(&udp_in, sizeof(udp_in));
216d4b509bdSRobert Watson 	udp_in.sin_len = sizeof(udp_in);
217d4b509bdSRobert Watson 	udp_in.sin_family = AF_INET;
218b9234fafSSam Leffler 	udp_in.sin_port = uh->uh_sport;
219b9234fafSSam Leffler 	udp_in.sin_addr = ip->ip_src;
220b9234fafSSam Leffler 
221b9234fafSSam Leffler 	/*
222df8bae1dSRodney W. Grimes 	 * Make mbuf data length reflect UDP length.
223df8bae1dSRodney W. Grimes 	 * If not enough data to reflect UDP length, drop.
224df8bae1dSRodney W. Grimes 	 */
225df8bae1dSRodney W. Grimes 	len = ntohs((u_short)uh->uh_ulen);
226df8bae1dSRodney W. Grimes 	if (ip->ip_len != len) {
2277eb7a449SAndras Olah 		if (len > ip->ip_len || len < sizeof(struct udphdr)) {
228df8bae1dSRodney W. Grimes 			udpstat.udps_badlen++;
229f76fcf6dSJeffrey Hsu 			goto badunlocked;
230df8bae1dSRodney W. Grimes 		}
231df8bae1dSRodney W. Grimes 		m_adj(m, len - ip->ip_len);
232df8bae1dSRodney W. Grimes 		/* ip->ip_len = len; */
233df8bae1dSRodney W. Grimes 	}
234df8bae1dSRodney W. Grimes 	/*
235df8bae1dSRodney W. Grimes 	 * Save a copy of the IP header in case we want restore it
236df8bae1dSRodney W. Grimes 	 * for sending an ICMP error message in response.
237df8bae1dSRodney W. Grimes 	 */
23848cb400fSRuslan Ermilov 	if (!blackhole)
239df8bae1dSRodney W. Grimes 		save_ip = *ip;
240df8bae1dSRodney W. Grimes 
241df8bae1dSRodney W. Grimes 	/*
242df8bae1dSRodney W. Grimes 	 * Checksum extended UDP header and data.
243df8bae1dSRodney W. Grimes 	 */
2446dfab5b1SGarrett Wollman 	if (uh->uh_sum) {
245db4f9cc7SJonathan Lemon 		if (m->m_pkthdr.csum_flags & CSUM_DATA_VALID) {
246db4f9cc7SJonathan Lemon 			if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR)
247db4f9cc7SJonathan Lemon 				uh->uh_sum = m->m_pkthdr.csum_data;
248db4f9cc7SJonathan Lemon 			else
249db4f9cc7SJonathan Lemon 				uh->uh_sum = in_pseudo(ip->ip_src.s_addr,
250506f4949SRuslan Ermilov 				    ip->ip_dst.s_addr, htonl((u_short)len +
251db4f9cc7SJonathan Lemon 				    m->m_pkthdr.csum_data + IPPROTO_UDP));
252db4f9cc7SJonathan Lemon 			uh->uh_sum ^= 0xffff;
253db4f9cc7SJonathan Lemon 		} else {
254cb342100SHajimu UMEMOTO 			char b[9];
255cb342100SHajimu UMEMOTO 			bcopy(((struct ipovly *)ip)->ih_x1, b, 9);
2566effc713SDoug Rabson 			bzero(((struct ipovly *)ip)->ih_x1, 9);
257df8bae1dSRodney W. Grimes 			((struct ipovly *)ip)->ih_len = uh->uh_ulen;
258623ae52eSPoul-Henning Kamp 			uh->uh_sum = in_cksum(m, len + sizeof (struct ip));
259cb342100SHajimu UMEMOTO 			bcopy(b, ((struct ipovly *)ip)->ih_x1, 9);
260db4f9cc7SJonathan Lemon 		}
261623ae52eSPoul-Henning Kamp 		if (uh->uh_sum) {
262df8bae1dSRodney W. Grimes 			udpstat.udps_badsum++;
263df8bae1dSRodney W. Grimes 			m_freem(m);
264df8bae1dSRodney W. Grimes 			return;
265df8bae1dSRodney W. Grimes 		}
266fb9aaba0SRuslan Ermilov 	} else
267fb9aaba0SRuslan Ermilov 		udpstat.udps_nosum++;
268df8bae1dSRodney W. Grimes 
2690b4ae859SGleb Smirnoff #ifdef IPFIREWALL_FORWARD
2700b4ae859SGleb Smirnoff 	/* Grab info from PACKET_TAG_IPFORWARD tag prepended to the chain. */
2710b4ae859SGleb Smirnoff 	fwd_tag = m_tag_find(m, PACKET_TAG_IPFORWARD, NULL);
2720b4ae859SGleb Smirnoff 
2730b4ae859SGleb Smirnoff 	if (fwd_tag != NULL) {
2740b4ae859SGleb Smirnoff 		struct sockaddr_in *next_hop;
2750b4ae859SGleb Smirnoff 
2760b4ae859SGleb Smirnoff 		/* Do the hack. */
2770b4ae859SGleb Smirnoff 		next_hop = (struct sockaddr_in *)(fwd_tag + 1);
2780b4ae859SGleb Smirnoff 		ip->ip_dst = next_hop->sin_addr;
2790b4ae859SGleb Smirnoff 		uh->uh_dport = ntohs(next_hop->sin_port);
2800b4ae859SGleb Smirnoff 		/* Remove the tag from the packet.  We don't need it anymore. */
2810b4ae859SGleb Smirnoff 		m_tag_delete(m, fwd_tag);
2820b4ae859SGleb Smirnoff 	}
2830b4ae859SGleb Smirnoff #endif
2840b4ae859SGleb Smirnoff 
285f76fcf6dSJeffrey Hsu 	INP_INFO_RLOCK(&udbinfo);
286f76fcf6dSJeffrey Hsu 
287df8bae1dSRodney W. Grimes 	if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) ||
288df8bae1dSRodney W. Grimes 	    in_broadcast(ip->ip_dst, m->m_pkthdr.rcvif)) {
28982c23ebaSBill Fenner 		struct inpcb *last;
290df8bae1dSRodney W. Grimes 		/*
291df8bae1dSRodney W. Grimes 		 * Deliver a multicast or broadcast datagram to *all* sockets
292df8bae1dSRodney W. Grimes 		 * for which the local and remote addresses and ports match
293df8bae1dSRodney W. Grimes 		 * those of the incoming datagram.  This allows more than
294df8bae1dSRodney W. Grimes 		 * one process to receive multi/broadcasts on the same port.
295df8bae1dSRodney W. Grimes 		 * (This really ought to be done for unicast datagrams as
296df8bae1dSRodney W. Grimes 		 * well, but that would cause problems with existing
297df8bae1dSRodney W. Grimes 		 * applications that open both address-specific sockets and
298df8bae1dSRodney W. Grimes 		 * a wildcard socket listening to the same port -- they would
299df8bae1dSRodney W. Grimes 		 * end up receiving duplicates of every unicast datagram.
300df8bae1dSRodney W. Grimes 		 * Those applications open the multiple sockets to overcome an
301df8bae1dSRodney W. Grimes 		 * inadequacy of the UDP socket interface, but for backwards
302df8bae1dSRodney W. Grimes 		 * compatibility we avoid the problem here rather than
303df8bae1dSRodney W. Grimes 		 * fixing the interface.  Maybe 4.5BSD will remedy this?)
304df8bae1dSRodney W. Grimes 		 */
305df8bae1dSRodney W. Grimes 
306df8bae1dSRodney W. Grimes 		/*
307df8bae1dSRodney W. Grimes 		 * Locate pcb(s) for datagram.
308df8bae1dSRodney W. Grimes 		 * (Algorithm copied from raw_intr().)
309df8bae1dSRodney W. Grimes 		 */
310df8bae1dSRodney W. Grimes 		last = NULL;
311cfa1ca9dSYoshinobu Inoue 		LIST_FOREACH(inp, &udb, inp_list) {
3129c1df695SRobert Watson 			if (inp->inp_lport != uh->uh_dport)
313f76fcf6dSJeffrey Hsu 				continue;
314cfa1ca9dSYoshinobu Inoue #ifdef INET6
315369dc8ceSEivind Eklund 			if ((inp->inp_vflag & INP_IPV4) == 0)
3169c1df695SRobert Watson 				continue;
317cfa1ca9dSYoshinobu Inoue #endif
318df8bae1dSRodney W. Grimes 			if (inp->inp_laddr.s_addr != INADDR_ANY) {
319f76fcf6dSJeffrey Hsu 				if (inp->inp_laddr.s_addr != ip->ip_dst.s_addr)
3209c1df695SRobert Watson 					continue;
321df8bae1dSRodney W. Grimes 			}
322df8bae1dSRodney W. Grimes 			if (inp->inp_faddr.s_addr != INADDR_ANY) {
323df8bae1dSRodney W. Grimes 				if (inp->inp_faddr.s_addr !=
324df8bae1dSRodney W. Grimes 				    ip->ip_src.s_addr ||
325df8bae1dSRodney W. Grimes 				    inp->inp_fport != uh->uh_sport)
3269c1df695SRobert Watson 					continue;
327df8bae1dSRodney W. Grimes 			}
3289c1df695SRobert Watson 			INP_LOCK(inp);
329df8bae1dSRodney W. Grimes 
33083453a06SBruce M Simpson 			/*
33183453a06SBruce M Simpson 			 * Check multicast packets to make sure they are only
33283453a06SBruce M Simpson 			 * sent to sockets with multicast memberships for the
33383453a06SBruce M Simpson 			 * packet's destination address and arrival interface
33483453a06SBruce M Simpson 			 */
33583453a06SBruce M Simpson #define MSHIP(_inp, n) ((_inp)->inp_moptions->imo_membership[(n)])
33683453a06SBruce M Simpson #define NMSHIPS(_inp) ((_inp)->inp_moptions->imo_num_memberships)
33783453a06SBruce M Simpson 			if (strict_mcast_mship && inp->inp_moptions != NULL) {
33883453a06SBruce M Simpson 				int mship, foundmship = 0;
33983453a06SBruce M Simpson 
34083453a06SBruce M Simpson 				for (mship = 0; mship < NMSHIPS(inp); mship++) {
34183453a06SBruce M Simpson 					if (MSHIP(inp, mship)->inm_addr.s_addr
34283453a06SBruce M Simpson 					    == ip->ip_dst.s_addr &&
34383453a06SBruce M Simpson 					    MSHIP(inp, mship)->inm_ifp
34483453a06SBruce M Simpson 					    == m->m_pkthdr.rcvif) {
34583453a06SBruce M Simpson 						foundmship = 1;
34683453a06SBruce M Simpson 						break;
34783453a06SBruce M Simpson 					}
34883453a06SBruce M Simpson 				}
3499c1df695SRobert Watson 				if (foundmship == 0) {
3509c1df695SRobert Watson 					INP_UNLOCK(inp);
3519c1df695SRobert Watson 					continue;
3529c1df695SRobert Watson 				}
35383453a06SBruce M Simpson 			}
35483453a06SBruce M Simpson #undef NMSHIPS
35583453a06SBruce M Simpson #undef MSHIP
356df8bae1dSRodney W. Grimes 			if (last != NULL) {
357df8bae1dSRodney W. Grimes 				struct mbuf *n;
358df8bae1dSRodney W. Grimes 
359032dcc76SLuigi Rizzo 				n = m_copy(m, 0, M_COPYALL);
360365433d9SRobert Watson 				if (n != NULL)
361cfa1ca9dSYoshinobu Inoue 					udp_append(last, ip, n,
362cfa1ca9dSYoshinobu Inoue 						   iphlen +
363d4b509bdSRobert Watson 						   sizeof(struct udphdr),
364d4b509bdSRobert Watson 						   &udp_in);
365f76fcf6dSJeffrey Hsu 				INP_UNLOCK(last);
366df8bae1dSRodney W. Grimes 			}
36782c23ebaSBill Fenner 			last = inp;
368df8bae1dSRodney W. Grimes 			/*
369df8bae1dSRodney W. Grimes 			 * Don't look for additional matches if this one does
370df8bae1dSRodney W. Grimes 			 * not have either the SO_REUSEPORT or SO_REUSEADDR
371df8bae1dSRodney W. Grimes 			 * socket options set.  This heuristic avoids searching
372df8bae1dSRodney W. Grimes 			 * through all pcbs in the common case of a non-shared
373d438d815SThomas Quinot 			 * port.  It assumes that an application will never
374df8bae1dSRodney W. Grimes 			 * clear these options after setting them.
375df8bae1dSRodney W. Grimes 			 */
3764cc20ab1SSeigo Tanimura 			if ((last->inp_socket->so_options&(SO_REUSEPORT|SO_REUSEADDR)) == 0)
377df8bae1dSRodney W. Grimes 				break;
378df8bae1dSRodney W. Grimes 		}
379df8bae1dSRodney W. Grimes 
380df8bae1dSRodney W. Grimes 		if (last == NULL) {
381df8bae1dSRodney W. Grimes 			/*
382df8bae1dSRodney W. Grimes 			 * No matching pcb found; discard datagram.
383df8bae1dSRodney W. Grimes 			 * (No need to send an ICMP Port Unreachable
384df8bae1dSRodney W. Grimes 			 * for a broadcast or multicast datgram.)
385df8bae1dSRodney W. Grimes 			 */
386df8bae1dSRodney W. Grimes 			udpstat.udps_noportbcast++;
38761ffc0b1SJeffrey Hsu 			goto badheadlocked;
388df8bae1dSRodney W. Grimes 		}
389d4b509bdSRobert Watson 		udp_append(last, ip, m, iphlen + sizeof(struct udphdr),
390d4b509bdSRobert Watson 		    &udp_in);
3919b657230SSam Leffler 		INP_UNLOCK(last);
3926b8e5a98SRobert Watson 		INP_INFO_RUNLOCK(&udbinfo);
393df8bae1dSRodney W. Grimes 		return;
394df8bae1dSRodney W. Grimes 	}
395df8bae1dSRodney W. Grimes 	/*
3966d6a026bSDavid Greenman 	 * Locate pcb for datagram.
397df8bae1dSRodney W. Grimes 	 */
398c3229e05SDavid Greenman 	inp = in_pcblookup_hash(&udbinfo, ip->ip_src, uh->uh_sport,
399cfa1ca9dSYoshinobu Inoue 	    ip->ip_dst, uh->uh_dport, 1, m->m_pkthdr.rcvif);
40015bd2b43SDavid Greenman 	if (inp == NULL) {
40175cfc95fSAndrey A. Chernov 		if (log_in_vain) {
402df5c0b8aSBill Fenner 			char buf[4*sizeof "123"];
40375cfc95fSAndrey A. Chernov 
40475cfc95fSAndrey A. Chernov 			strcpy(buf, inet_ntoa(ip->ip_dst));
405592071e8SBruce Evans 			log(LOG_INFO,
406592071e8SBruce Evans 			    "Connection attempt to UDP %s:%d from %s:%d\n",
407592071e8SBruce Evans 			    buf, ntohs(uh->uh_dport), inet_ntoa(ip->ip_src),
408592071e8SBruce Evans 			    ntohs(uh->uh_sport));
40975cfc95fSAndrey A. Chernov 		}
410df8bae1dSRodney W. Grimes 		udpstat.udps_noport++;
411df8bae1dSRodney W. Grimes 		if (m->m_flags & (M_BCAST | M_MCAST)) {
412df8bae1dSRodney W. Grimes 			udpstat.udps_noportbcast++;
41361ffc0b1SJeffrey Hsu 			goto badheadlocked;
414df8bae1dSRodney W. Grimes 		}
415582a7760SBruce Evans 		if (blackhole)
41661ffc0b1SJeffrey Hsu 			goto badheadlocked;
4171cbd978eSLuigi Rizzo 		if (badport_bandlim(BANDLIM_ICMP_UNREACH) < 0)
4181cbd978eSLuigi Rizzo 			goto badheadlocked;
41904287599SRuslan Ermilov 		*ip = save_ip;
42004287599SRuslan Ermilov 		ip->ip_len += iphlen;
421582a7760SBruce Evans 		icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_PORT, 0, 0);
422f76fcf6dSJeffrey Hsu 		INP_INFO_RUNLOCK(&udbinfo);
423df8bae1dSRodney W. Grimes 		return;
424df8bae1dSRodney W. Grimes 	}
42561ffc0b1SJeffrey Hsu 	INP_LOCK(inp);
426936cd18dSAndre Oppermann 	/* Check the minimum TTL for socket. */
427936cd18dSAndre Oppermann 	if (inp->inp_ip_minttl && inp->inp_ip_minttl > ip->ip_ttl)
428936cd18dSAndre Oppermann 		goto badheadlocked;
429d4b509bdSRobert Watson 	udp_append(inp, ip, m, iphlen + sizeof(struct udphdr), &udp_in);
430f76fcf6dSJeffrey Hsu 	INP_UNLOCK(inp);
4316b8e5a98SRobert Watson 	INP_INFO_RUNLOCK(&udbinfo);
432df8bae1dSRodney W. Grimes 	return;
43361ffc0b1SJeffrey Hsu 
43461ffc0b1SJeffrey Hsu badheadlocked:
435f76fcf6dSJeffrey Hsu 	if (inp)
436f76fcf6dSJeffrey Hsu 		INP_UNLOCK(inp);
4376b8e5a98SRobert Watson 	INP_INFO_RUNLOCK(&udbinfo);
438f76fcf6dSJeffrey Hsu badunlocked:
439df8bae1dSRodney W. Grimes 	m_freem(m);
440cfa1ca9dSYoshinobu Inoue 	return;
441cfa1ca9dSYoshinobu Inoue }
442cfa1ca9dSYoshinobu Inoue 
443cfa1ca9dSYoshinobu Inoue /*
444d4b509bdSRobert Watson  * Subroutine of udp_input(), which appends the provided mbuf chain to the
445d4b509bdSRobert Watson  * passed pcb/socket.  The caller must provide a sockaddr_in via udp_in that
446d4b509bdSRobert Watson  * contains the source address.  If the socket ends up being an IPv6 socket,
447d4b509bdSRobert Watson  * udp_append() will convert to a sockaddr_in6 before passing the address
448d4b509bdSRobert Watson  * into the socket code.
449cfa1ca9dSYoshinobu Inoue  */
450cfa1ca9dSYoshinobu Inoue static void
4518e3f3b16SRobert Watson udp_append(inp, ip, n, off, udp_in)
4528e3f3b16SRobert Watson 	struct inpcb *inp;
453032dcc76SLuigi Rizzo 	struct ip *ip;
454032dcc76SLuigi Rizzo 	struct mbuf *n;
455032dcc76SLuigi Rizzo 	int off;
456d4b509bdSRobert Watson 	struct sockaddr_in *udp_in;
457cfa1ca9dSYoshinobu Inoue {
458cfa1ca9dSYoshinobu Inoue 	struct sockaddr *append_sa;
4591e4d7da7SRobert Watson 	struct socket *so;
460cfa1ca9dSYoshinobu Inoue 	struct mbuf *opts = 0;
461c83c1318SPoul-Henning Kamp #ifdef INET6
462d4b509bdSRobert Watson 	struct sockaddr_in6 udp_in6;
463c83c1318SPoul-Henning Kamp #endif
464cfa1ca9dSYoshinobu Inoue 
4658e3f3b16SRobert Watson 	INP_LOCK_ASSERT(inp);
46687f2bb8cSRobert Watson 
467da0f4099SHajimu UMEMOTO #if defined(IPSEC) || defined(FAST_IPSEC)
468da0f4099SHajimu UMEMOTO 	/* check AH/ESP integrity. */
4698e3f3b16SRobert Watson 	if (ipsec4_in_reject(n, inp)) {
470b9234fafSSam Leffler #ifdef IPSEC
471b9234fafSSam Leffler 		ipsecstat.in_polvio++;
472b9234fafSSam Leffler #endif /*IPSEC*/
473b9234fafSSam Leffler 		m_freem(n);
474b9234fafSSam Leffler 		return;
475b9234fafSSam Leffler 	}
476da0f4099SHajimu UMEMOTO #endif /*IPSEC || FAST_IPSEC*/
477b9234fafSSam Leffler #ifdef MAC
4788e3f3b16SRobert Watson 	if (mac_check_inpcb_deliver(inp, n) != 0) {
479b9234fafSSam Leffler 		m_freem(n);
480b9234fafSSam Leffler 		return;
481b9234fafSSam Leffler 	}
482b9234fafSSam Leffler #endif
4838e3f3b16SRobert Watson 	if (inp->inp_flags & INP_CONTROLOPTS ||
4848e3f3b16SRobert Watson 	    inp->inp_socket->so_options & (SO_TIMESTAMP | SO_BINTIME)) {
485cfa1ca9dSYoshinobu Inoue #ifdef INET6
4868e3f3b16SRobert Watson 		if (inp->inp_vflag & INP_IPV6) {
487cfa1ca9dSYoshinobu Inoue 			int savedflags;
488cfa1ca9dSYoshinobu Inoue 
4898e3f3b16SRobert Watson 			savedflags = inp->inp_flags;
4908e3f3b16SRobert Watson 			inp->inp_flags &= ~INP_UNMAPPABLEOPTS;
4918e3f3b16SRobert Watson 			ip6_savecontrol(inp, n, &opts);
4928e3f3b16SRobert Watson 			inp->inp_flags = savedflags;
493cfa1ca9dSYoshinobu Inoue 		} else
494cfa1ca9dSYoshinobu Inoue #endif
4958e3f3b16SRobert Watson 		ip_savecontrol(inp, &opts, ip, n);
4964cc20ab1SSeigo Tanimura 	}
497cfa1ca9dSYoshinobu Inoue #ifdef INET6
4988e3f3b16SRobert Watson 	if (inp->inp_vflag & INP_IPV6) {
499d4b509bdSRobert Watson 		bzero(&udp_in6, sizeof(udp_in6));
500d4b509bdSRobert Watson 		udp_in6.sin6_len = sizeof(udp_in6);
501d4b509bdSRobert Watson 		udp_in6.sin6_family = AF_INET6;
502d4b509bdSRobert Watson 		in6_sin_2_v4mapsin6(udp_in, &udp_in6);
503d4b509bdSRobert Watson 		append_sa = (struct sockaddr *)&udp_in6;
504cfa1ca9dSYoshinobu Inoue 	} else
505cfa1ca9dSYoshinobu Inoue #endif
506d4b509bdSRobert Watson 	append_sa = (struct sockaddr *)udp_in;
507cfa1ca9dSYoshinobu Inoue 	m_adj(n, off);
5081e4d7da7SRobert Watson 
5098e3f3b16SRobert Watson 	so = inp->inp_socket;
5101e4d7da7SRobert Watson 	SOCKBUF_LOCK(&so->so_rcv);
5111e4d7da7SRobert Watson 	if (sbappendaddr_locked(&so->so_rcv, append_sa, n, opts) == 0) {
512cfa1ca9dSYoshinobu Inoue 		m_freem(n);
513cfa1ca9dSYoshinobu Inoue 		if (opts)
514cfa1ca9dSYoshinobu Inoue 			m_freem(opts);
515cfa1ca9dSYoshinobu Inoue 		udpstat.udps_fullsock++;
5161e4d7da7SRobert Watson 		SOCKBUF_UNLOCK(&so->so_rcv);
5174cc20ab1SSeigo Tanimura 	} else
5181e4d7da7SRobert Watson 		sorwakeup_locked(so);
519df8bae1dSRodney W. Grimes }
520df8bae1dSRodney W. Grimes 
521df8bae1dSRodney W. Grimes /*
522df8bae1dSRodney W. Grimes  * Notify a udp user of an asynchronous error;
523df8bae1dSRodney W. Grimes  * just wake up so that he can collect error status.
524df8bae1dSRodney W. Grimes  */
5253ce144eaSJeffrey Hsu struct inpcb *
526032dcc76SLuigi Rizzo udp_notify(inp, errno)
527032dcc76SLuigi Rizzo 	register struct inpcb *inp;
528032dcc76SLuigi Rizzo 	int errno;
529df8bae1dSRodney W. Grimes {
530df8bae1dSRodney W. Grimes 	inp->inp_socket->so_error = errno;
531df8bae1dSRodney W. Grimes 	sorwakeup(inp->inp_socket);
532df8bae1dSRodney W. Grimes 	sowwakeup(inp->inp_socket);
5333ce144eaSJeffrey Hsu 	return inp;
534df8bae1dSRodney W. Grimes }
535df8bae1dSRodney W. Grimes 
536df8bae1dSRodney W. Grimes void
537032dcc76SLuigi Rizzo udp_ctlinput(cmd, sa, vip)
538032dcc76SLuigi Rizzo 	int cmd;
539032dcc76SLuigi Rizzo 	struct sockaddr *sa;
540032dcc76SLuigi Rizzo 	void *vip;
541df8bae1dSRodney W. Grimes {
542c693a045SJonathan Lemon 	struct ip *ip = vip;
543c693a045SJonathan Lemon 	struct udphdr *uh;
5443ce144eaSJeffrey Hsu 	struct inpcb *(*notify)(struct inpcb *, int) = udp_notify;
545c693a045SJonathan Lemon 	struct in_addr faddr;
546c693a045SJonathan Lemon 	struct inpcb *inp;
547c693a045SJonathan Lemon 
548c693a045SJonathan Lemon 	faddr = ((struct sockaddr_in *)sa)->sin_addr;
549c693a045SJonathan Lemon 	if (sa->sa_family != AF_INET || faddr.s_addr == INADDR_ANY)
550c693a045SJonathan Lemon 		return;
551df8bae1dSRodney W. Grimes 
55297d8d152SAndre Oppermann 	/*
55397d8d152SAndre Oppermann 	 * Redirects don't need to be handled up here.
55497d8d152SAndre Oppermann 	 */
55597d8d152SAndre Oppermann 	if (PRC_IS_REDIRECT(cmd))
55697d8d152SAndre Oppermann 		return;
55797d8d152SAndre Oppermann 	/*
55897d8d152SAndre Oppermann 	 * Hostdead is ugly because it goes linearly through all PCBs.
55997d8d152SAndre Oppermann 	 * XXX: We never get this from ICMP, otherwise it makes an
56097d8d152SAndre Oppermann 	 * excellent DoS attack on machines with many connections.
56197d8d152SAndre Oppermann 	 */
56297d8d152SAndre Oppermann 	if (cmd == PRC_HOSTDEAD)
563d1c54148SJesper Skriver 		ip = 0;
564d1c54148SJesper Skriver 	else if ((unsigned)cmd >= PRC_NCMDS || inetctlerrmap[cmd] == 0)
565df8bae1dSRodney W. Grimes 		return;
566df8bae1dSRodney W. Grimes 	if (ip) {
567df8bae1dSRodney W. Grimes 		uh = (struct udphdr *)((caddr_t)ip + (ip->ip_hl << 2));
568f76fcf6dSJeffrey Hsu 		INP_INFO_RLOCK(&udbinfo);
569c693a045SJonathan Lemon 		inp = in_pcblookup_hash(&udbinfo, faddr, uh->uh_dport,
570c693a045SJonathan Lemon 		    ip->ip_src, uh->uh_sport, 0, NULL);
571f76fcf6dSJeffrey Hsu 		if (inp != NULL) {
572f76fcf6dSJeffrey Hsu 			INP_LOCK(inp);
573f76fcf6dSJeffrey Hsu 			if (inp->inp_socket != NULL) {
574c693a045SJonathan Lemon 				(*notify)(inp, inetctlerrmap[cmd]);
575f76fcf6dSJeffrey Hsu 			}
576f76fcf6dSJeffrey Hsu 			INP_UNLOCK(inp);
577f76fcf6dSJeffrey Hsu 		}
578f76fcf6dSJeffrey Hsu 		INP_INFO_RUNLOCK(&udbinfo);
579df8bae1dSRodney W. Grimes 	} else
580f76fcf6dSJeffrey Hsu 		in_pcbnotifyall(&udbinfo, faddr, inetctlerrmap[cmd], notify);
581df8bae1dSRodney W. Grimes }
582df8bae1dSRodney W. Grimes 
5830312fbe9SPoul-Henning Kamp static int
58482d9ae4eSPoul-Henning Kamp udp_pcblist(SYSCTL_HANDLER_ARGS)
58598271db4SGarrett Wollman {
586277afaffSRobert Watson 	int error, i, n;
58798271db4SGarrett Wollman 	struct inpcb *inp, **inp_list;
58898271db4SGarrett Wollman 	inp_gen_t gencnt;
58998271db4SGarrett Wollman 	struct xinpgen xig;
59098271db4SGarrett Wollman 
59198271db4SGarrett Wollman 	/*
59298271db4SGarrett Wollman 	 * The process of preparing the TCB list is too time-consuming and
59398271db4SGarrett Wollman 	 * resource-intensive to repeat twice on every request.
59498271db4SGarrett Wollman 	 */
59598271db4SGarrett Wollman 	if (req->oldptr == 0) {
59698271db4SGarrett Wollman 		n = udbinfo.ipi_count;
59798271db4SGarrett Wollman 		req->oldidx = 2 * (sizeof xig)
59898271db4SGarrett Wollman 			+ (n + n/8) * sizeof(struct xinpcb);
59998271db4SGarrett Wollman 		return 0;
60098271db4SGarrett Wollman 	}
60198271db4SGarrett Wollman 
60298271db4SGarrett Wollman 	if (req->newptr != 0)
60398271db4SGarrett Wollman 		return EPERM;
60498271db4SGarrett Wollman 
60598271db4SGarrett Wollman 	/*
60698271db4SGarrett Wollman 	 * OK, now we're committed to doing something.
60798271db4SGarrett Wollman 	 */
6084b40c56cSJeffrey Hsu 	INP_INFO_RLOCK(&udbinfo);
60998271db4SGarrett Wollman 	gencnt = udbinfo.ipi_gencnt;
61098271db4SGarrett Wollman 	n = udbinfo.ipi_count;
6114b40c56cSJeffrey Hsu 	INP_INFO_RUNLOCK(&udbinfo);
61298271db4SGarrett Wollman 
61347934cefSDon Lewis 	error = sysctl_wire_old_buffer(req, 2 * (sizeof xig)
6145c38b6dbSDon Lewis 		+ n * sizeof(struct xinpcb));
61547934cefSDon Lewis 	if (error != 0)
61647934cefSDon Lewis 		return (error);
6175c38b6dbSDon Lewis 
61898271db4SGarrett Wollman 	xig.xig_len = sizeof xig;
61998271db4SGarrett Wollman 	xig.xig_count = n;
62098271db4SGarrett Wollman 	xig.xig_gen = gencnt;
62198271db4SGarrett Wollman 	xig.xig_sogen = so_gencnt;
62298271db4SGarrett Wollman 	error = SYSCTL_OUT(req, &xig, sizeof xig);
62398271db4SGarrett Wollman 	if (error)
62498271db4SGarrett Wollman 		return error;
62598271db4SGarrett Wollman 
626a163d034SWarner Losh 	inp_list = malloc(n * sizeof *inp_list, M_TEMP, M_WAITOK);
62798271db4SGarrett Wollman 	if (inp_list == 0)
62898271db4SGarrett Wollman 		return ENOMEM;
62998271db4SGarrett Wollman 
630f76fcf6dSJeffrey Hsu 	INP_INFO_RLOCK(&udbinfo);
631fc2ffbe6SPoul-Henning Kamp 	for (inp = LIST_FIRST(udbinfo.listhead), i = 0; inp && i < n;
632fc2ffbe6SPoul-Henning Kamp 	     inp = LIST_NEXT(inp, inp_list)) {
633f76fcf6dSJeffrey Hsu 		INP_LOCK(inp);
6342ded288cSJeffrey Hsu 		if (inp->inp_gencnt <= gencnt &&
6352ded288cSJeffrey Hsu 		    cr_canseesocket(req->td->td_ucred, inp->inp_socket) == 0)
63698271db4SGarrett Wollman 			inp_list[i++] = inp;
637f76fcf6dSJeffrey Hsu 		INP_UNLOCK(inp);
6384787fd37SPaul Saab 	}
639f76fcf6dSJeffrey Hsu 	INP_INFO_RUNLOCK(&udbinfo);
64098271db4SGarrett Wollman 	n = i;
64198271db4SGarrett Wollman 
64298271db4SGarrett Wollman 	error = 0;
64398271db4SGarrett Wollman 	for (i = 0; i < n; i++) {
64498271db4SGarrett Wollman 		inp = inp_list[i];
645d915b280SStephan Uphoff 		INP_LOCK(inp);
64698271db4SGarrett Wollman 		if (inp->inp_gencnt <= gencnt) {
64798271db4SGarrett Wollman 			struct xinpcb xi;
648fd94099eSColin Percival 			bzero(&xi, sizeof(xi));
64998271db4SGarrett Wollman 			xi.xi_len = sizeof xi;
65098271db4SGarrett Wollman 			/* XXX should avoid extra copy */
65198271db4SGarrett Wollman 			bcopy(inp, &xi.xi_inp, sizeof *inp);
65298271db4SGarrett Wollman 			if (inp->inp_socket)
65398271db4SGarrett Wollman 				sotoxsocket(inp->inp_socket, &xi.xi_socket);
6544b40c56cSJeffrey Hsu 			xi.xi_inp.inp_gencnt = inp->inp_gencnt;
655d915b280SStephan Uphoff 			INP_UNLOCK(inp);
65698271db4SGarrett Wollman 			error = SYSCTL_OUT(req, &xi, sizeof xi);
657d915b280SStephan Uphoff 		} else
658d915b280SStephan Uphoff 			INP_UNLOCK(inp);
65998271db4SGarrett Wollman 	}
66098271db4SGarrett Wollman 	if (!error) {
66198271db4SGarrett Wollman 		/*
66298271db4SGarrett Wollman 		 * Give the user an updated idea of our state.
66398271db4SGarrett Wollman 		 * If the generation differs from what we told
66498271db4SGarrett Wollman 		 * her before, she knows that something happened
66598271db4SGarrett Wollman 		 * while we were processing this request, and it
66698271db4SGarrett Wollman 		 * might be necessary to retry.
66798271db4SGarrett Wollman 		 */
668f76fcf6dSJeffrey Hsu 		INP_INFO_RLOCK(&udbinfo);
66998271db4SGarrett Wollman 		xig.xig_gen = udbinfo.ipi_gencnt;
67098271db4SGarrett Wollman 		xig.xig_sogen = so_gencnt;
67198271db4SGarrett Wollman 		xig.xig_count = udbinfo.ipi_count;
672f76fcf6dSJeffrey Hsu 		INP_INFO_RUNLOCK(&udbinfo);
67398271db4SGarrett Wollman 		error = SYSCTL_OUT(req, &xig, sizeof xig);
67498271db4SGarrett Wollman 	}
67598271db4SGarrett Wollman 	free(inp_list, M_TEMP);
67698271db4SGarrett Wollman 	return error;
67798271db4SGarrett Wollman }
67898271db4SGarrett Wollman 
67998271db4SGarrett Wollman SYSCTL_PROC(_net_inet_udp, UDPCTL_PCBLIST, pcblist, CTLFLAG_RD, 0, 0,
68098271db4SGarrett Wollman 	    udp_pcblist, "S,xinpcb", "List of active UDP sockets");
68198271db4SGarrett Wollman 
68298271db4SGarrett Wollman static int
68382d9ae4eSPoul-Henning Kamp udp_getcred(SYSCTL_HANDLER_ARGS)
684490d50b6SBrian Feldman {
685c0511d3bSBrian Feldman 	struct xucred xuc;
686490d50b6SBrian Feldman 	struct sockaddr_in addrs[2];
687490d50b6SBrian Feldman 	struct inpcb *inp;
688277afaffSRobert Watson 	int error;
689490d50b6SBrian Feldman 
69056f21b9dSColin Percival 	error = suser_cred(req->td->td_ucred, SUSER_ALLOWJAIL);
691490d50b6SBrian Feldman 	if (error)
692490d50b6SBrian Feldman 		return (error);
693490d50b6SBrian Feldman 	error = SYSCTL_IN(req, addrs, sizeof(addrs));
694490d50b6SBrian Feldman 	if (error)
695490d50b6SBrian Feldman 		return (error);
696f76fcf6dSJeffrey Hsu 	INP_INFO_RLOCK(&udbinfo);
697490d50b6SBrian Feldman 	inp = in_pcblookup_hash(&udbinfo, addrs[1].sin_addr, addrs[1].sin_port,
698cfa1ca9dSYoshinobu Inoue 				addrs[0].sin_addr, addrs[0].sin_port, 1, NULL);
6992d20c83fSDon Lewis 	if (inp == NULL || inp->inp_socket == NULL) {
700490d50b6SBrian Feldman 		error = ENOENT;
701490d50b6SBrian Feldman 		goto out;
702490d50b6SBrian Feldman 	}
70329dc1288SRobert Watson 	error = cr_canseesocket(req->td->td_ucred, inp->inp_socket);
7047ce87f12SDavid Malone 	if (error)
7057ce87f12SDavid Malone 		goto out;
70676183f34SDima Dorfman 	cru2x(inp->inp_socket->so_cred, &xuc);
707490d50b6SBrian Feldman out:
708f76fcf6dSJeffrey Hsu 	INP_INFO_RUNLOCK(&udbinfo);
7090e1eebb8SDon Lewis 	if (error == 0)
7100e1eebb8SDon Lewis 		error = SYSCTL_OUT(req, &xuc, sizeof(struct xucred));
711490d50b6SBrian Feldman 	return (error);
712490d50b6SBrian Feldman }
713490d50b6SBrian Feldman 
7147ce87f12SDavid Malone SYSCTL_PROC(_net_inet_udp, OID_AUTO, getcred,
7157ce87f12SDavid Malone     CTLTYPE_OPAQUE|CTLFLAG_RW|CTLFLAG_PRISON, 0, 0,
7167ce87f12SDavid Malone     udp_getcred, "S,xucred", "Get the xucred of a UDP connection");
717490d50b6SBrian Feldman 
718490d50b6SBrian Feldman static int
719032dcc76SLuigi Rizzo udp_output(inp, m, addr, control, td)
720032dcc76SLuigi Rizzo 	register struct inpcb *inp;
721032dcc76SLuigi Rizzo 	struct mbuf *m;
722032dcc76SLuigi Rizzo 	struct sockaddr *addr;
723032dcc76SLuigi Rizzo 	struct mbuf *control;
724032dcc76SLuigi Rizzo 	struct thread *td;
725df8bae1dSRodney W. Grimes {
726032dcc76SLuigi Rizzo 	register struct udpiphdr *ui;
727032dcc76SLuigi Rizzo 	register int len = m->m_pkthdr.len;
72890162a4eSIan Dowse 	struct in_addr faddr, laddr;
729c557ae16SIan Dowse 	struct cmsghdr *cm;
730c557ae16SIan Dowse 	struct sockaddr_in *sin, src;
73190162a4eSIan Dowse 	int error = 0;
7328afa2304SBruce M Simpson 	int ipflags;
73390162a4eSIan Dowse 	u_short fport, lport;
7345c32ea65SRobert Watson 	int unlock_udbinfo;
735df8bae1dSRodney W. Grimes 
7365c32ea65SRobert Watson 	/*
7375c32ea65SRobert Watson 	 * udp_output() may need to temporarily bind or connect the current
7385c32ea65SRobert Watson 	 * inpcb.  As such, we don't know up front what inpcb locks we will
7395c32ea65SRobert Watson 	 * need.  Do any work to decide what is needed up front before
7405c32ea65SRobert Watson 	 * acquiring locks.
7415c32ea65SRobert Watson 	 */
742430d30d8SBill Fenner 	if (len + sizeof(struct udpiphdr) > IP_MAXPACKET) {
743c557ae16SIan Dowse 		if (control)
744c557ae16SIan Dowse 			m_freem(control);
7455c32ea65SRobert Watson 		m_freem(m);
7465c32ea65SRobert Watson 		return EMSGSIZE;
747430d30d8SBill Fenner 	}
748430d30d8SBill Fenner 
749c557ae16SIan Dowse 	src.sin_addr.s_addr = INADDR_ANY;
750c557ae16SIan Dowse 	if (control != NULL) {
751c557ae16SIan Dowse 		/*
752c557ae16SIan Dowse 		 * XXX: Currently, we assume all the optional information
753c557ae16SIan Dowse 		 * is stored in a single mbuf.
754c557ae16SIan Dowse 		 */
755c557ae16SIan Dowse 		if (control->m_next) {
756c557ae16SIan Dowse 			m_freem(control);
7575c32ea65SRobert Watson 			m_freem(m);
7585c32ea65SRobert Watson 			return EINVAL;
759c557ae16SIan Dowse 		}
760c557ae16SIan Dowse 		for (; control->m_len > 0;
761c557ae16SIan Dowse 		    control->m_data += CMSG_ALIGN(cm->cmsg_len),
762c557ae16SIan Dowse 		    control->m_len -= CMSG_ALIGN(cm->cmsg_len)) {
763c557ae16SIan Dowse 			cm = mtod(control, struct cmsghdr *);
764c557ae16SIan Dowse 			if (control->m_len < sizeof(*cm) || cm->cmsg_len == 0 ||
765c557ae16SIan Dowse 			    cm->cmsg_len > control->m_len) {
766c557ae16SIan Dowse 				error = EINVAL;
767c557ae16SIan Dowse 				break;
768c557ae16SIan Dowse 			}
769c557ae16SIan Dowse 			if (cm->cmsg_level != IPPROTO_IP)
770c557ae16SIan Dowse 				continue;
771c557ae16SIan Dowse 
772c557ae16SIan Dowse 			switch (cm->cmsg_type) {
773c557ae16SIan Dowse 			case IP_SENDSRCADDR:
774c557ae16SIan Dowse 				if (cm->cmsg_len !=
775c557ae16SIan Dowse 				    CMSG_LEN(sizeof(struct in_addr))) {
776c557ae16SIan Dowse 					error = EINVAL;
777c557ae16SIan Dowse 					break;
778c557ae16SIan Dowse 				}
779c557ae16SIan Dowse 				bzero(&src, sizeof(src));
780c557ae16SIan Dowse 				src.sin_family = AF_INET;
781c557ae16SIan Dowse 				src.sin_len = sizeof(src);
782c557ae16SIan Dowse 				src.sin_port = inp->inp_lport;
783c557ae16SIan Dowse 				src.sin_addr = *(struct in_addr *)CMSG_DATA(cm);
784c557ae16SIan Dowse 				break;
785c557ae16SIan Dowse 			default:
786c557ae16SIan Dowse 				error = ENOPROTOOPT;
787c557ae16SIan Dowse 				break;
788c557ae16SIan Dowse 			}
789c557ae16SIan Dowse 			if (error)
790c557ae16SIan Dowse 				break;
791c557ae16SIan Dowse 		}
792c557ae16SIan Dowse 		m_freem(control);
793c557ae16SIan Dowse 	}
7945c32ea65SRobert Watson 	if (error) {
7955c32ea65SRobert Watson 		m_freem(m);
7965c32ea65SRobert Watson 		return error;
7975c32ea65SRobert Watson 	}
7985c32ea65SRobert Watson 
7995c32ea65SRobert Watson 	if (src.sin_addr.s_addr != INADDR_ANY ||
8005c32ea65SRobert Watson 	    addr != NULL) {
8015c32ea65SRobert Watson 		INP_INFO_WLOCK(&udbinfo);
8025c32ea65SRobert Watson 		unlock_udbinfo = 1;
8035c32ea65SRobert Watson 	} else
8045c32ea65SRobert Watson 		unlock_udbinfo = 0;
8055c32ea65SRobert Watson 	INP_LOCK(inp);
8065c32ea65SRobert Watson 
8075c32ea65SRobert Watson #ifdef MAC
8085c32ea65SRobert Watson 	mac_create_mbuf_from_inpcb(inp, m);
8095c32ea65SRobert Watson #endif
8105c32ea65SRobert Watson 
81190162a4eSIan Dowse 	laddr = inp->inp_laddr;
81290162a4eSIan Dowse 	lport = inp->inp_lport;
813c557ae16SIan Dowse 	if (src.sin_addr.s_addr != INADDR_ANY) {
814c557ae16SIan Dowse 		if (lport == 0) {
815c557ae16SIan Dowse 			error = EINVAL;
816c557ae16SIan Dowse 			goto release;
817c557ae16SIan Dowse 		}
818c557ae16SIan Dowse 		error = in_pcbbind_setup(inp, (struct sockaddr *)&src,
819b0330ed9SPawel Jakub Dawidek 		    &laddr.s_addr, &lport, td->td_ucred);
820c557ae16SIan Dowse 		if (error)
821c557ae16SIan Dowse 			goto release;
822c557ae16SIan Dowse 	}
823c557ae16SIan Dowse 
824df8bae1dSRodney W. Grimes 	if (addr) {
82575c13541SPoul-Henning Kamp 		sin = (struct sockaddr_in *)addr;
826812d8653SSam Leffler 		if (jailed(td->td_ucred))
827a854ed98SJohn Baldwin 			prison_remote_ip(td->td_ucred, 0, &sin->sin_addr.s_addr);
828df8bae1dSRodney W. Grimes 		if (inp->inp_faddr.s_addr != INADDR_ANY) {
829df8bae1dSRodney W. Grimes 			error = EISCONN;
830df8bae1dSRodney W. Grimes 			goto release;
831df8bae1dSRodney W. Grimes 		}
83290162a4eSIan Dowse 		error = in_pcbconnect_setup(inp, addr, &laddr.s_addr, &lport,
833b0330ed9SPawel Jakub Dawidek 		    &faddr.s_addr, &fport, NULL, td->td_ucred);
83490162a4eSIan Dowse 		if (error)
83590162a4eSIan Dowse 			goto release;
83690162a4eSIan Dowse 
83790162a4eSIan Dowse 		/* Commit the local port if newly assigned. */
83890162a4eSIan Dowse 		if (inp->inp_laddr.s_addr == INADDR_ANY &&
83990162a4eSIan Dowse 		    inp->inp_lport == 0) {
8403a1757b9SGleb Smirnoff 			/*
8413a1757b9SGleb Smirnoff 			 * Remember addr if jailed, to prevent rebinding.
8423a1757b9SGleb Smirnoff 			 */
8433a1757b9SGleb Smirnoff 			if (jailed(td->td_ucred))
8443a1757b9SGleb Smirnoff 				inp->inp_laddr = laddr;
84590162a4eSIan Dowse 			inp->inp_lport = lport;
84690162a4eSIan Dowse 			if (in_pcbinshash(inp) != 0) {
84790162a4eSIan Dowse 				inp->inp_lport = 0;
84890162a4eSIan Dowse 				error = EAGAIN;
849df8bae1dSRodney W. Grimes 				goto release;
850df8bae1dSRodney W. Grimes 			}
85190162a4eSIan Dowse 			inp->inp_flags |= INP_ANONPORT;
85290162a4eSIan Dowse 		}
853df8bae1dSRodney W. Grimes 	} else {
85490162a4eSIan Dowse 		faddr = inp->inp_faddr;
85590162a4eSIan Dowse 		fport = inp->inp_fport;
85690162a4eSIan Dowse 		if (faddr.s_addr == INADDR_ANY) {
857df8bae1dSRodney W. Grimes 			error = ENOTCONN;
858df8bae1dSRodney W. Grimes 			goto release;
859df8bae1dSRodney W. Grimes 		}
860df8bae1dSRodney W. Grimes 	}
861e6ccd709SRobert Watson 
862df8bae1dSRodney W. Grimes 	/*
863e6ccd709SRobert Watson 	 * Calculate data length and get a mbuf for UDP, IP, and possible
864392e8407SRobert Watson 	 * link-layer headers.  Immediate slide the data pointer back forward
865392e8407SRobert Watson 	 * since we won't use that space at this layer.
866df8bae1dSRodney W. Grimes 	 */
867e6ccd709SRobert Watson 	M_PREPEND(m, sizeof(struct udpiphdr) + max_linkhdr, M_DONTWAIT);
868e6ccd709SRobert Watson 	if (m == NULL) {
869df8bae1dSRodney W. Grimes 		error = ENOBUFS;
87049b19bfcSBruce M Simpson 		goto release;
871df8bae1dSRodney W. Grimes 	}
872e6ccd709SRobert Watson 	m->m_data += max_linkhdr;
873e6ccd709SRobert Watson 	m->m_len -= max_linkhdr;
874392e8407SRobert Watson 	m->m_pkthdr.len -= max_linkhdr;
875df8bae1dSRodney W. Grimes 
876df8bae1dSRodney W. Grimes 	/*
877df8bae1dSRodney W. Grimes 	 * Fill in mbuf with extended UDP header
878df8bae1dSRodney W. Grimes 	 * and addresses and length put into network format.
879df8bae1dSRodney W. Grimes 	 */
880df8bae1dSRodney W. Grimes 	ui = mtod(m, struct udpiphdr *);
881db4f9cc7SJonathan Lemon 	bzero(ui->ui_x1, sizeof(ui->ui_x1));	/* XXX still needed? */
882df8bae1dSRodney W. Grimes 	ui->ui_pr = IPPROTO_UDP;
88390162a4eSIan Dowse 	ui->ui_src = laddr;
88490162a4eSIan Dowse 	ui->ui_dst = faddr;
88590162a4eSIan Dowse 	ui->ui_sport = lport;
88690162a4eSIan Dowse 	ui->ui_dport = fport;
887db4f9cc7SJonathan Lemon 	ui->ui_ulen = htons((u_short)len + sizeof(struct udphdr));
888df8bae1dSRodney W. Grimes 
889b2828ad2SAndre Oppermann 	/*
890b2828ad2SAndre Oppermann 	 * Set the Don't Fragment bit in the IP header.
891b2828ad2SAndre Oppermann 	 */
892b2828ad2SAndre Oppermann 	if (inp->inp_flags & INP_DONTFRAG) {
893b2828ad2SAndre Oppermann 		struct ip *ip;
894b2828ad2SAndre Oppermann 		ip = (struct ip *)&ui->ui_i;
895b2828ad2SAndre Oppermann 		ip->ip_off |= IP_DF;
896b2828ad2SAndre Oppermann 	}
897b2828ad2SAndre Oppermann 
898b5d47ff5SJohn-Mark Gurney 	ipflags = 0;
899b5d47ff5SJohn-Mark Gurney 	if (inp->inp_socket->so_options & SO_DONTROUTE)
900b5d47ff5SJohn-Mark Gurney 		ipflags |= IP_ROUTETOIF;
901b5d47ff5SJohn-Mark Gurney 	if (inp->inp_socket->so_options & SO_BROADCAST)
902b5d47ff5SJohn-Mark Gurney 		ipflags |= IP_ALLOWBROADCAST;
9036fbfd582SAndre Oppermann 	if (inp->inp_flags & INP_ONESBCAST)
9048afa2304SBruce M Simpson 		ipflags |= IP_SENDONES;
9058afa2304SBruce M Simpson 
906df8bae1dSRodney W. Grimes 	/*
907db4f9cc7SJonathan Lemon 	 * Set up checksum and output datagram.
908df8bae1dSRodney W. Grimes 	 */
909df8bae1dSRodney W. Grimes 	if (udpcksum) {
9106fbfd582SAndre Oppermann 		if (inp->inp_flags & INP_ONESBCAST)
9118a538743SBruce M Simpson 			faddr.s_addr = INADDR_BROADCAST;
9128a538743SBruce M Simpson 		ui->ui_sum = in_pseudo(ui->ui_src.s_addr, faddr.s_addr,
913db4f9cc7SJonathan Lemon 		    htons((u_short)len + sizeof(struct udphdr) + IPPROTO_UDP));
914db4f9cc7SJonathan Lemon 		m->m_pkthdr.csum_flags = CSUM_UDP;
915db4f9cc7SJonathan Lemon 		m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum);
916db4f9cc7SJonathan Lemon 	} else {
917db4f9cc7SJonathan Lemon 		ui->ui_sum = 0;
918df8bae1dSRodney W. Grimes 	}
919df8bae1dSRodney W. Grimes 	((struct ip *)ui)->ip_len = sizeof (struct udpiphdr) + len;
920ca98b82cSDavid Greenman 	((struct ip *)ui)->ip_ttl = inp->inp_ip_ttl;	/* XXX */
921ca98b82cSDavid Greenman 	((struct ip *)ui)->ip_tos = inp->inp_ip_tos;	/* XXX */
922df8bae1dSRodney W. Grimes 	udpstat.udps_opackets++;
923cfa1ca9dSYoshinobu Inoue 
9245c32ea65SRobert Watson 	if (unlock_udbinfo)
9255c32ea65SRobert Watson 		INP_INFO_WUNLOCK(&udbinfo);
92697d8d152SAndre Oppermann 	error = ip_output(m, inp->inp_options, NULL, ipflags,
9275d846453SSam Leffler 	    inp->inp_moptions, inp);
9285c32ea65SRobert Watson 	INP_UNLOCK(inp);
929df8bae1dSRodney W. Grimes 	return (error);
930df8bae1dSRodney W. Grimes 
931df8bae1dSRodney W. Grimes release:
9325c32ea65SRobert Watson 	INP_UNLOCK(inp);
9335c32ea65SRobert Watson 	if (unlock_udbinfo)
9345c32ea65SRobert Watson 		INP_INFO_WUNLOCK(&udbinfo);
935df8bae1dSRodney W. Grimes 	m_freem(m);
936df8bae1dSRodney W. Grimes 	return (error);
937df8bae1dSRodney W. Grimes }
938df8bae1dSRodney W. Grimes 
93976429de4SYoshinobu Inoue u_long	udp_sendspace = 9216;		/* really max datagram size */
940032dcc76SLuigi Rizzo 					/* 40 1K datagrams */
941e59898ffSMaxime Henrion SYSCTL_ULONG(_net_inet_udp, UDPCTL_MAXDGRAM, maxdgram, CTLFLAG_RW,
9423d177f46SBill Fumerola     &udp_sendspace, 0, "Maximum outgoing UDP datagram size");
9430312fbe9SPoul-Henning Kamp 
944cfa1ca9dSYoshinobu Inoue u_long	udp_recvspace = 40 * (1024 +
945cfa1ca9dSYoshinobu Inoue #ifdef INET6
946cfa1ca9dSYoshinobu Inoue 				      sizeof(struct sockaddr_in6)
947cfa1ca9dSYoshinobu Inoue #else
948cfa1ca9dSYoshinobu Inoue 				      sizeof(struct sockaddr_in)
949cfa1ca9dSYoshinobu Inoue #endif
950cfa1ca9dSYoshinobu Inoue 				      );
951e59898ffSMaxime Henrion SYSCTL_ULONG(_net_inet_udp, UDPCTL_RECVSPACE, recvspace, CTLFLAG_RW,
9520ca2861fSRuslan Ermilov     &udp_recvspace, 0, "Maximum space for incoming UDP datagrams");
953df8bae1dSRodney W. Grimes 
954ac45e92fSRobert Watson static void
955d0390e05SGarrett Wollman udp_abort(struct socket *so)
956df8bae1dSRodney W. Grimes {
957d0390e05SGarrett Wollman 	struct inpcb *inp;
958df8bae1dSRodney W. Grimes 
959d0390e05SGarrett Wollman 	inp = sotoinpcb(so);
96014ba8addSRobert Watson 	KASSERT(inp != NULL, ("udp_abort: inp == NULL"));
96114ba8addSRobert Watson 	INP_INFO_WLOCK(&udbinfo);
962f76fcf6dSJeffrey Hsu 	INP_LOCK(inp);
963a152f8a3SRobert Watson 	if (inp->inp_faddr.s_addr != INADDR_ANY) {
964a152f8a3SRobert Watson 		in_pcbdisconnect(inp);
965a152f8a3SRobert Watson 		inp->inp_laddr.s_addr = INADDR_ANY;
966d0390e05SGarrett Wollman 		soisdisconnected(so);
967a152f8a3SRobert Watson 	}
968a152f8a3SRobert Watson 	INP_UNLOCK(inp);
969f76fcf6dSJeffrey Hsu 	INP_INFO_WUNLOCK(&udbinfo);
970df8bae1dSRodney W. Grimes }
971df8bae1dSRodney W. Grimes 
972d0390e05SGarrett Wollman static int
973b40ce416SJulian Elischer udp_attach(struct socket *so, int proto, struct thread *td)
974d0390e05SGarrett Wollman {
975d0390e05SGarrett Wollman 	struct inpcb *inp;
976277afaffSRobert Watson 	int error;
977d0390e05SGarrett Wollman 
978d0390e05SGarrett Wollman 	inp = sotoinpcb(so);
97914ba8addSRobert Watson 	KASSERT(inp == NULL, ("udp_attach: inp != NULL"));
980cfa1ca9dSYoshinobu Inoue 	error = soreserve(so, udp_sendspace, udp_recvspace);
981f24618aaSRobert Watson 	if (error)
982cfa1ca9dSYoshinobu Inoue 		return error;
983f24618aaSRobert Watson 	INP_INFO_WLOCK(&udbinfo);
984d915b280SStephan Uphoff 	error = in_pcballoc(so, &udbinfo);
98553b57cd1SSam Leffler 	if (error) {
98653b57cd1SSam Leffler 		INP_INFO_WUNLOCK(&udbinfo);
987d0390e05SGarrett Wollman 		return error;
98853b57cd1SSam Leffler 	}
989cfa1ca9dSYoshinobu Inoue 
990cfa1ca9dSYoshinobu Inoue 	inp = (struct inpcb *)so->so_pcb;
991f76fcf6dSJeffrey Hsu 	INP_INFO_WUNLOCK(&udbinfo);
992cfa1ca9dSYoshinobu Inoue 	inp->inp_vflag |= INP_IPV4;
993cfa1ca9dSYoshinobu Inoue 	inp->inp_ip_ttl = ip_defttl;
994f76fcf6dSJeffrey Hsu 	INP_UNLOCK(inp);
995d0390e05SGarrett Wollman 	return 0;
996df8bae1dSRodney W. Grimes }
997d0390e05SGarrett Wollman 
998d0390e05SGarrett Wollman static int
999b40ce416SJulian Elischer udp_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
1000d0390e05SGarrett Wollman {
1001d0390e05SGarrett Wollman 	struct inpcb *inp;
1002277afaffSRobert Watson 	int error;
1003d0390e05SGarrett Wollman 
1004d0390e05SGarrett Wollman 	inp = sotoinpcb(so);
100514ba8addSRobert Watson 	KASSERT(inp != NULL, ("udp_bind: inp == NULL"));
100614ba8addSRobert Watson 	INP_INFO_WLOCK(&udbinfo);
1007f76fcf6dSJeffrey Hsu 	INP_LOCK(inp);
1008b0330ed9SPawel Jakub Dawidek 	error = in_pcbbind(inp, nam, td->td_ucred);
1009f76fcf6dSJeffrey Hsu 	INP_UNLOCK(inp);
1010f76fcf6dSJeffrey Hsu 	INP_INFO_WUNLOCK(&udbinfo);
1011d0390e05SGarrett Wollman 	return error;
1012d0390e05SGarrett Wollman }
1013d0390e05SGarrett Wollman 
1014a152f8a3SRobert Watson static void
1015a152f8a3SRobert Watson udp_close(struct socket *so)
1016a152f8a3SRobert Watson {
1017a152f8a3SRobert Watson 	struct inpcb *inp;
1018a152f8a3SRobert Watson 
1019a152f8a3SRobert Watson 	inp = sotoinpcb(so);
1020a152f8a3SRobert Watson 	KASSERT(inp != NULL, ("udp_close: inp == NULL"));
1021a152f8a3SRobert Watson 	INP_INFO_WLOCK(&udbinfo);
1022a152f8a3SRobert Watson 	INP_LOCK(inp);
1023a152f8a3SRobert Watson 	if (inp->inp_faddr.s_addr != INADDR_ANY) {
1024a152f8a3SRobert Watson 		in_pcbdisconnect(inp);
1025a152f8a3SRobert Watson 		inp->inp_laddr.s_addr = INADDR_ANY;
1026a152f8a3SRobert Watson 		soisdisconnected(so);
1027a152f8a3SRobert Watson 	}
1028a152f8a3SRobert Watson 	INP_UNLOCK(inp);
1029a152f8a3SRobert Watson 	INP_INFO_WUNLOCK(&udbinfo);
1030a152f8a3SRobert Watson }
1031a152f8a3SRobert Watson 
1032d0390e05SGarrett Wollman static int
1033b40ce416SJulian Elischer udp_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
1034d0390e05SGarrett Wollman {
1035d0390e05SGarrett Wollman 	struct inpcb *inp;
1036277afaffSRobert Watson 	int error;
103775c13541SPoul-Henning Kamp 	struct sockaddr_in *sin;
1038d0390e05SGarrett Wollman 
1039d0390e05SGarrett Wollman 	inp = sotoinpcb(so);
104014ba8addSRobert Watson 	KASSERT(inp != NULL, ("udp_connect: inp == NULL"));
104114ba8addSRobert Watson 	INP_INFO_WLOCK(&udbinfo);
1042f76fcf6dSJeffrey Hsu 	INP_LOCK(inp);
1043f76fcf6dSJeffrey Hsu 	if (inp->inp_faddr.s_addr != INADDR_ANY) {
1044f76fcf6dSJeffrey Hsu 		INP_UNLOCK(inp);
1045f76fcf6dSJeffrey Hsu 		INP_INFO_WUNLOCK(&udbinfo);
1046d0390e05SGarrett Wollman 		return EISCONN;
1047f76fcf6dSJeffrey Hsu 	}
104875c13541SPoul-Henning Kamp 	sin = (struct sockaddr_in *)nam;
1049812d8653SSam Leffler 	if (jailed(td->td_ucred))
1050a854ed98SJohn Baldwin 		prison_remote_ip(td->td_ucred, 0, &sin->sin_addr.s_addr);
1051b0330ed9SPawel Jakub Dawidek 	error = in_pcbconnect(inp, nam, td->td_ucred);
10524cc20ab1SSeigo Tanimura 	if (error == 0)
1053df8bae1dSRodney W. Grimes 		soisconnected(so);
1054f76fcf6dSJeffrey Hsu 	INP_UNLOCK(inp);
1055f76fcf6dSJeffrey Hsu 	INP_INFO_WUNLOCK(&udbinfo);
1056d0390e05SGarrett Wollman 	return error;
1057df8bae1dSRodney W. Grimes }
1058d0390e05SGarrett Wollman 
1059bc725eafSRobert Watson static void
1060d0390e05SGarrett Wollman udp_detach(struct socket *so)
1061d0390e05SGarrett Wollman {
1062d0390e05SGarrett Wollman 	struct inpcb *inp;
1063d0390e05SGarrett Wollman 
1064d0390e05SGarrett Wollman 	inp = sotoinpcb(so);
106514ba8addSRobert Watson 	KASSERT(inp != NULL, ("udp_detach: inp == NULL"));
1066a152f8a3SRobert Watson 	KASSERT(inp->inp_faddr.s_addr == INADDR_ANY,
1067a152f8a3SRobert Watson 	    ("udp_detach: not disconnected"));
106814ba8addSRobert Watson 	INP_INFO_WLOCK(&udbinfo);
1069f76fcf6dSJeffrey Hsu 	INP_LOCK(inp);
1070d0390e05SGarrett Wollman 	in_pcbdetach(inp);
107114ba8addSRobert Watson 	in_pcbfree(inp);
1072f76fcf6dSJeffrey Hsu 	INP_INFO_WUNLOCK(&udbinfo);
1073d0390e05SGarrett Wollman }
1074d0390e05SGarrett Wollman 
1075d0390e05SGarrett Wollman static int
1076d0390e05SGarrett Wollman udp_disconnect(struct socket *so)
1077d0390e05SGarrett Wollman {
1078d0390e05SGarrett Wollman 	struct inpcb *inp;
1079d0390e05SGarrett Wollman 
1080d0390e05SGarrett Wollman 	inp = sotoinpcb(so);
108114ba8addSRobert Watson 	KASSERT(inp != NULL, ("udp_disconnect: inp == NULL"));
108214ba8addSRobert Watson 	INP_INFO_WLOCK(&udbinfo);
1083f76fcf6dSJeffrey Hsu 	INP_LOCK(inp);
1084f76fcf6dSJeffrey Hsu 	if (inp->inp_faddr.s_addr == INADDR_ANY) {
1085f76fcf6dSJeffrey Hsu 		INP_INFO_WUNLOCK(&udbinfo);
1086f76fcf6dSJeffrey Hsu 		INP_UNLOCK(inp);
1087d0390e05SGarrett Wollman 		return ENOTCONN;
1088f76fcf6dSJeffrey Hsu 	}
1089d0390e05SGarrett Wollman 
1090df8bae1dSRodney W. Grimes 	in_pcbdisconnect(inp);
1091df8bae1dSRodney W. Grimes 	inp->inp_laddr.s_addr = INADDR_ANY;
1092d45e4f99SMaxim Konovalov 	SOCK_LOCK(so);
1093d45e4f99SMaxim Konovalov 	so->so_state &= ~SS_ISCONNECTED;		/* XXX */
1094d45e4f99SMaxim Konovalov 	SOCK_UNLOCK(so);
1095f76fcf6dSJeffrey Hsu 	INP_UNLOCK(inp);
1096f76fcf6dSJeffrey Hsu 	INP_INFO_WUNLOCK(&udbinfo);
1097d0390e05SGarrett Wollman 	return 0;
1098df8bae1dSRodney W. Grimes }
1099df8bae1dSRodney W. Grimes 
1100d0390e05SGarrett Wollman static int
110157bf258eSGarrett Wollman udp_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *addr,
1102b40ce416SJulian Elischer 	    struct mbuf *control, struct thread *td)
1103d0390e05SGarrett Wollman {
1104d0390e05SGarrett Wollman 	struct inpcb *inp;
1105d0390e05SGarrett Wollman 
1106d0390e05SGarrett Wollman 	inp = sotoinpcb(so);
110714ba8addSRobert Watson 	KASSERT(inp != NULL, ("udp_send: inp == NULL"));
11085c32ea65SRobert Watson 	return udp_output(inp, m, addr, control, td);
1109d0390e05SGarrett Wollman }
1110d0390e05SGarrett Wollman 
111176429de4SYoshinobu Inoue int
1112d0390e05SGarrett Wollman udp_shutdown(struct socket *so)
1113d0390e05SGarrett Wollman {
1114d0390e05SGarrett Wollman 	struct inpcb *inp;
1115d0390e05SGarrett Wollman 
1116d0390e05SGarrett Wollman 	inp = sotoinpcb(so);
111714ba8addSRobert Watson 	KASSERT(inp != NULL, ("udp_shutdown: inp == NULL"));
1118f76fcf6dSJeffrey Hsu 	INP_LOCK(inp);
1119d0390e05SGarrett Wollman 	socantsendmore(so);
1120f76fcf6dSJeffrey Hsu 	INP_UNLOCK(inp);
1121d0390e05SGarrett Wollman 	return 0;
1122d0390e05SGarrett Wollman }
1123d0390e05SGarrett Wollman 
1124f76fcf6dSJeffrey Hsu /*
1125f76fcf6dSJeffrey Hsu  * This is the wrapper function for in_setsockaddr.  We just pass down
1126f76fcf6dSJeffrey Hsu  * the pcbinfo for in_setsockaddr to lock.  We don't want to do the locking
1127f76fcf6dSJeffrey Hsu  * here because in_setsockaddr will call malloc and might block.
1128f76fcf6dSJeffrey Hsu  */
1129f76fcf6dSJeffrey Hsu static int
1130f76fcf6dSJeffrey Hsu udp_sockaddr(struct socket *so, struct sockaddr **nam)
1131f76fcf6dSJeffrey Hsu {
1132f76fcf6dSJeffrey Hsu 	return (in_setsockaddr(so, nam, &udbinfo));
1133f76fcf6dSJeffrey Hsu }
1134f76fcf6dSJeffrey Hsu 
1135f76fcf6dSJeffrey Hsu /*
1136f76fcf6dSJeffrey Hsu  * This is the wrapper function for in_setpeeraddr.  We just pass down
1137f76fcf6dSJeffrey Hsu  * the pcbinfo for in_setpeeraddr to lock.
1138f76fcf6dSJeffrey Hsu  */
1139f76fcf6dSJeffrey Hsu static int
1140f76fcf6dSJeffrey Hsu udp_peeraddr(struct socket *so, struct sockaddr **nam)
1141f76fcf6dSJeffrey Hsu {
1142f76fcf6dSJeffrey Hsu 	return (in_setpeeraddr(so, nam, &udbinfo));
1143f76fcf6dSJeffrey Hsu }
1144f76fcf6dSJeffrey Hsu 
1145d0390e05SGarrett Wollman struct pr_usrreqs udp_usrreqs = {
1146756d52a1SPoul-Henning Kamp 	.pru_abort =		udp_abort,
1147756d52a1SPoul-Henning Kamp 	.pru_attach =		udp_attach,
1148756d52a1SPoul-Henning Kamp 	.pru_bind =		udp_bind,
1149756d52a1SPoul-Henning Kamp 	.pru_connect =		udp_connect,
1150756d52a1SPoul-Henning Kamp 	.pru_control =		in_control,
1151756d52a1SPoul-Henning Kamp 	.pru_detach =		udp_detach,
1152756d52a1SPoul-Henning Kamp 	.pru_disconnect =	udp_disconnect,
1153756d52a1SPoul-Henning Kamp 	.pru_peeraddr =		udp_peeraddr,
1154756d52a1SPoul-Henning Kamp 	.pru_send =		udp_send,
115559b8854eSRobert Watson 	.pru_sosend =		sosend_dgram,
1156756d52a1SPoul-Henning Kamp 	.pru_shutdown =		udp_shutdown,
1157756d52a1SPoul-Henning Kamp 	.pru_sockaddr =		udp_sockaddr,
1158a152f8a3SRobert Watson 	.pru_sosetlabel =	in_pcbsosetlabel,
1159a152f8a3SRobert Watson 	.pru_close =		udp_close,
1160d0390e05SGarrett Wollman };
1161