xref: /freebsd/sys/netinet6/udp6_usrreq.c (revision 9a41df2a0e6408e9b329bbd8b9e37c2b44461a1b)
1 /*-
2  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3  * Copyright (c) 2010-2011 Juniper Networks, Inc.
4  * All rights reserved.
5  *
6  * Portions of this software were developed by Robert N. M. Watson under
7  * contract to Juniper Networks, Inc.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. Neither the name of the project nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *	$KAME: udp6_usrreq.c,v 1.27 2001/05/21 05:45:10 jinmei Exp $
34  *	$KAME: udp6_output.c,v 1.31 2001/05/21 16:39:15 jinmei Exp $
35  */
36 
37 /*-
38  * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
39  *	The Regents of the University of California.
40  * All rights reserved.
41  *
42  * Redistribution and use in source and binary forms, with or without
43  * modification, are permitted provided that the following conditions
44  * are met:
45  * 1. Redistributions of source code must retain the above copyright
46  *    notice, this list of conditions and the following disclaimer.
47  * 2. Redistributions in binary form must reproduce the above copyright
48  *    notice, this list of conditions and the following disclaimer in the
49  *    documentation and/or other materials provided with the distribution.
50  * 4. Neither the name of the University nor the names of its contributors
51  *    may be used to endorse or promote products derived from this software
52  *    without specific prior written permission.
53  *
54  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64  * SUCH DAMAGE.
65  *
66  *	@(#)udp_usrreq.c	8.6 (Berkeley) 5/23/95
67  */
68 
69 #include <sys/cdefs.h>
70 __FBSDID("$FreeBSD$");
71 
72 #include "opt_inet.h"
73 #include "opt_inet6.h"
74 #include "opt_ipfw.h"
75 #include "opt_ipsec.h"
76 
77 #include <sys/param.h>
78 #include <sys/jail.h>
79 #include <sys/kernel.h>
80 #include <sys/lock.h>
81 #include <sys/mbuf.h>
82 #include <sys/priv.h>
83 #include <sys/proc.h>
84 #include <sys/protosw.h>
85 #include <sys/signalvar.h>
86 #include <sys/socket.h>
87 #include <sys/socketvar.h>
88 #include <sys/sx.h>
89 #include <sys/sysctl.h>
90 #include <sys/syslog.h>
91 #include <sys/systm.h>
92 
93 #include <net/if.h>
94 #include <net/if_types.h>
95 #include <net/route.h>
96 
97 #include <netinet/in.h>
98 #include <netinet/in_pcb.h>
99 #include <netinet/in_systm.h>
100 #include <netinet/in_var.h>
101 #include <netinet/ip.h>
102 #include <netinet/ip_icmp.h>
103 #include <netinet/ip6.h>
104 #include <netinet/icmp_var.h>
105 #include <netinet/icmp6.h>
106 #include <netinet/ip_var.h>
107 #include <netinet/udp.h>
108 #include <netinet/udp_var.h>
109 
110 #include <netinet6/ip6protosw.h>
111 #include <netinet6/ip6_var.h>
112 #include <netinet6/in6_pcb.h>
113 #include <netinet6/udp6_var.h>
114 #include <netinet6/scope6_var.h>
115 
116 #ifdef IPSEC
117 #include <netipsec/ipsec.h>
118 #include <netipsec/ipsec6.h>
119 #endif /* IPSEC */
120 
121 #include <security/mac/mac_framework.h>
122 
123 /*
124  * UDP protocol implementation.
125  * Per RFC 768, August, 1980.
126  */
127 
128 extern struct protosw	inetsw[];
129 static void		udp6_detach(struct socket *so);
130 
131 static void
132 udp6_append(struct inpcb *inp, struct mbuf *n, int off,
133     struct sockaddr_in6 *fromsa)
134 {
135 	struct socket *so;
136 	struct mbuf *opts;
137 
138 	INP_LOCK_ASSERT(inp);
139 
140 #ifdef IPSEC
141 	/* Check AH/ESP integrity. */
142 	if (ipsec6_in_reject(n, inp)) {
143 		m_freem(n);
144 		V_ipsec6stat.in_polvio++;
145 		return;
146 	}
147 #endif /* IPSEC */
148 #ifdef MAC
149 	if (mac_inpcb_check_deliver(inp, n) != 0) {
150 		m_freem(n);
151 		return;
152 	}
153 #endif
154 	opts = NULL;
155 	if (inp->inp_flags & INP_CONTROLOPTS ||
156 	    inp->inp_socket->so_options & SO_TIMESTAMP)
157 		ip6_savecontrol(inp, n, &opts);
158 	m_adj(n, off + sizeof(struct udphdr));
159 
160 	so = inp->inp_socket;
161 	SOCKBUF_LOCK(&so->so_rcv);
162 	if (sbappendaddr_locked(&so->so_rcv, (struct sockaddr *)fromsa, n,
163 	    opts) == 0) {
164 		SOCKBUF_UNLOCK(&so->so_rcv);
165 		m_freem(n);
166 		if (opts)
167 			m_freem(opts);
168 		UDPSTAT_INC(udps_fullsock);
169 	} else
170 		sorwakeup_locked(so);
171 }
172 
173 int
174 udp6_input(struct mbuf **mp, int *offp, int proto)
175 {
176 	struct mbuf *m = *mp;
177 	struct ifnet *ifp;
178 	struct ip6_hdr *ip6;
179 	struct udphdr *uh;
180 	struct inpcb *inp;
181 	struct udpcb *up;
182 	int off = *offp;
183 	int plen, ulen;
184 	struct sockaddr_in6 fromsa;
185 #ifdef IPFIREWALL_FORWARD
186 	struct m_tag *fwd_tag;
187 #endif
188 	uint16_t uh_sum;
189 
190 	ifp = m->m_pkthdr.rcvif;
191 	ip6 = mtod(m, struct ip6_hdr *);
192 
193 	if (faithprefix_p != NULL && (*faithprefix_p)(&ip6->ip6_dst)) {
194 		/* XXX send icmp6 host/port unreach? */
195 		m_freem(m);
196 		return (IPPROTO_DONE);
197 	}
198 
199 #ifndef PULLDOWN_TEST
200 	IP6_EXTHDR_CHECK(m, off, sizeof(struct udphdr), IPPROTO_DONE);
201 	ip6 = mtod(m, struct ip6_hdr *);
202 	uh = (struct udphdr *)((caddr_t)ip6 + off);
203 #else
204 	IP6_EXTHDR_GET(uh, struct udphdr *, m, off, sizeof(*uh));
205 	if (!uh)
206 		return (IPPROTO_DONE);
207 #endif
208 
209 	UDPSTAT_INC(udps_ipackets);
210 
211 	/*
212 	 * Destination port of 0 is illegal, based on RFC768.
213 	 */
214 	if (uh->uh_dport == 0)
215 		goto badunlocked;
216 
217 	plen = ntohs(ip6->ip6_plen) - off + sizeof(*ip6);
218 	ulen = ntohs((u_short)uh->uh_ulen);
219 
220 	if (plen != ulen) {
221 		UDPSTAT_INC(udps_badlen);
222 		goto badunlocked;
223 	}
224 
225 	/*
226 	 * Checksum extended UDP header and data.
227 	 */
228 	if (uh->uh_sum == 0) {
229 		UDPSTAT_INC(udps_nosum);
230 		goto badunlocked;
231 	}
232 
233 	if (m->m_pkthdr.csum_flags & CSUM_DATA_VALID_IPV6) {
234 		if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR)
235 			uh_sum = m->m_pkthdr.csum_data;
236 		else
237 			uh_sum = in6_cksum_pseudo(ip6, ulen,
238 			    IPPROTO_UDP, m->m_pkthdr.csum_data);
239 		uh_sum ^= 0xffff;
240 	} else
241 		uh_sum = in6_cksum(m, IPPROTO_UDP, off, ulen);
242 
243 	if (uh_sum != 0) {
244 		UDPSTAT_INC(udps_badsum);
245 		goto badunlocked;
246 	}
247 
248 	/*
249 	 * Construct sockaddr format source address.
250 	 */
251 	init_sin6(&fromsa, m);
252 	fromsa.sin6_port = uh->uh_sport;
253 
254 	if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
255 		struct inpcb *last;
256 		struct ip6_moptions *imo;
257 
258 		INP_INFO_RLOCK(&V_udbinfo);
259 		/*
260 		 * In the event that laddr should be set to the link-local
261 		 * address (this happens in RIPng), the multicast address
262 		 * specified in the received packet will not match laddr.  To
263 		 * handle this situation, matching is relaxed if the
264 		 * receiving interface is the same as one specified in the
265 		 * socket and if the destination multicast address matches
266 		 * one of the multicast groups specified in the socket.
267 		 */
268 
269 		/*
270 		 * KAME note: traditionally we dropped udpiphdr from mbuf
271 		 * here.  We need udphdr for IPsec processing so we do that
272 		 * later.
273 		 */
274 		last = NULL;
275 		LIST_FOREACH(inp, &V_udb, inp_list) {
276 			if ((inp->inp_vflag & INP_IPV6) == 0)
277 				continue;
278 			if (inp->inp_lport != uh->uh_dport)
279 				continue;
280 			if (inp->inp_fport != 0 &&
281 			    inp->inp_fport != uh->uh_sport)
282 				continue;
283 			if (!IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_laddr)) {
284 				if (!IN6_ARE_ADDR_EQUAL(&inp->in6p_laddr,
285 							&ip6->ip6_dst))
286 					continue;
287 			}
288 			if (!IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr)) {
289 				if (!IN6_ARE_ADDR_EQUAL(&inp->in6p_faddr,
290 							&ip6->ip6_src) ||
291 				    inp->inp_fport != uh->uh_sport)
292 					continue;
293 			}
294 
295 			/*
296 			 * XXXRW: Because we weren't holding either the inpcb
297 			 * or the hash lock when we checked for a match
298 			 * before, we should probably recheck now that the
299 			 * inpcb lock is (supposed to be) held.
300 			 */
301 
302 			/*
303 			 * Handle socket delivery policy for any-source
304 			 * and source-specific multicast. [RFC3678]
305 			 */
306 			imo = inp->in6p_moptions;
307 			if (imo && IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
308 				struct sockaddr_in6	 mcaddr;
309 				int			 blocked;
310 
311 				INP_RLOCK(inp);
312 
313 				bzero(&mcaddr, sizeof(struct sockaddr_in6));
314 				mcaddr.sin6_len = sizeof(struct sockaddr_in6);
315 				mcaddr.sin6_family = AF_INET6;
316 				mcaddr.sin6_addr = ip6->ip6_dst;
317 
318 				blocked = im6o_mc_filter(imo, ifp,
319 					(struct sockaddr *)&mcaddr,
320 					(struct sockaddr *)&fromsa);
321 				if (blocked != MCAST_PASS) {
322 					if (blocked == MCAST_NOTGMEMBER)
323 						IP6STAT_INC(ip6s_notmember);
324 					if (blocked == MCAST_NOTSMEMBER ||
325 					    blocked == MCAST_MUTED)
326 						UDPSTAT_INC(udps_filtermcast);
327 					INP_RUNLOCK(inp); /* XXX */
328 					continue;
329 				}
330 
331 				INP_RUNLOCK(inp);
332 			}
333 			if (last != NULL) {
334 				struct mbuf *n;
335 
336 				if ((n = m_copy(m, 0, M_COPYALL)) != NULL) {
337 					INP_RLOCK(last);
338 					up = intoudpcb(last);
339 					if (up->u_tun_func == NULL) {
340 						udp6_append(last, n, off, &fromsa);
341 					} else {
342 						/*
343 						 * Engage the tunneling
344 						 * protocol we will have to
345 						 * leave the info_lock up,
346 						 * since we are hunting
347 						 * through multiple UDP's.
348 						 *
349 						 */
350 						(*up->u_tun_func)(n, off, last);
351 					}
352 					INP_RUNLOCK(last);
353 				}
354 			}
355 			last = inp;
356 			/*
357 			 * Don't look for additional matches if this one does
358 			 * not have either the SO_REUSEPORT or SO_REUSEADDR
359 			 * socket options set.  This heuristic avoids
360 			 * searching through all pcbs in the common case of a
361 			 * non-shared port.  It assumes that an application
362 			 * will never clear these options after setting them.
363 			 */
364 			if ((last->inp_socket->so_options &
365 			     (SO_REUSEPORT|SO_REUSEADDR)) == 0)
366 				break;
367 		}
368 
369 		if (last == NULL) {
370 			/*
371 			 * No matching pcb found; discard datagram.  (No need
372 			 * to send an ICMP Port Unreachable for a broadcast
373 			 * or multicast datgram.)
374 			 */
375 			UDPSTAT_INC(udps_noport);
376 			UDPSTAT_INC(udps_noportmcast);
377 			goto badheadlocked;
378 		}
379 		INP_RLOCK(last);
380 		INP_INFO_RUNLOCK(&V_udbinfo);
381 		up = intoudpcb(last);
382 		if (up->u_tun_func == NULL) {
383 			udp6_append(last, m, off, &fromsa);
384 		} else {
385 			/*
386 			 * Engage the tunneling protocol.
387 			 */
388 			(*up->u_tun_func)(m, off, last);
389 		}
390 		INP_RUNLOCK(last);
391 		return (IPPROTO_DONE);
392 	}
393 	/*
394 	 * Locate pcb for datagram.
395 	 */
396 #ifdef IPFIREWALL_FORWARD
397 	/*
398 	 * Grab info from PACKET_TAG_IPFORWARD tag prepended to the chain.
399 	 */
400 	fwd_tag = m_tag_find(m, PACKET_TAG_IPFORWARD, NULL);
401 	if (fwd_tag != NULL) {
402 		struct sockaddr_in6 *next_hop6;
403 
404 		next_hop6 = (struct sockaddr_in6 *)(fwd_tag + 1);
405 
406 		/*
407 		 * Transparently forwarded. Pretend to be the destination.
408 		 * Already got one like this?
409 		 */
410 		inp = in6_pcblookup_mbuf(&V_udbinfo,
411 		    &ip6->ip6_src, uh->uh_sport, &ip6->ip6_dst, uh->uh_dport,
412 		    INPLOOKUP_RLOCKPCB, m->m_pkthdr.rcvif, m);
413 		if (!inp) {
414 			/*
415 			 * It's new.  Try to find the ambushing socket.
416 			 * Because we've rewritten the destination address,
417 			 * any hardware-generated hash is ignored.
418 			 */
419 			inp = in6_pcblookup(&V_udbinfo, &ip6->ip6_src,
420 			    uh->uh_sport, &next_hop6->sin6_addr,
421 			    next_hop6->sin6_port ? htons(next_hop6->sin6_port) :
422 			    uh->uh_dport, INPLOOKUP_WILDCARD |
423 			    INPLOOKUP_RLOCKPCB, m->m_pkthdr.rcvif);
424 		}
425 		/* Remove the tag from the packet. We don't need it anymore. */
426 		m_tag_delete(m, fwd_tag);
427 	} else
428 #endif /* IPFIREWALL_FORWARD */
429 		inp = in6_pcblookup_mbuf(&V_udbinfo, &ip6->ip6_src,
430 		    uh->uh_sport, &ip6->ip6_dst, uh->uh_dport,
431 		    INPLOOKUP_WILDCARD | INPLOOKUP_RLOCKPCB,
432 		    m->m_pkthdr.rcvif, m);
433 	if (inp == NULL) {
434 		if (udp_log_in_vain) {
435 			char ip6bufs[INET6_ADDRSTRLEN];
436 			char ip6bufd[INET6_ADDRSTRLEN];
437 
438 			log(LOG_INFO,
439 			    "Connection attempt to UDP [%s]:%d from [%s]:%d\n",
440 			    ip6_sprintf(ip6bufd, &ip6->ip6_dst),
441 			    ntohs(uh->uh_dport),
442 			    ip6_sprintf(ip6bufs, &ip6->ip6_src),
443 			    ntohs(uh->uh_sport));
444 		}
445 		UDPSTAT_INC(udps_noport);
446 		if (m->m_flags & M_MCAST) {
447 			printf("UDP6: M_MCAST is set in a unicast packet.\n");
448 			UDPSTAT_INC(udps_noportmcast);
449 			goto badunlocked;
450 		}
451 		if (V_udp_blackhole)
452 			goto badunlocked;
453 		if (badport_bandlim(BANDLIM_ICMP6_UNREACH) < 0)
454 			goto badunlocked;
455 		icmp6_error(m, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOPORT, 0);
456 		return (IPPROTO_DONE);
457 	}
458 	INP_RLOCK_ASSERT(inp);
459 	up = intoudpcb(inp);
460 	if (up->u_tun_func == NULL) {
461 		udp6_append(inp, m, off, &fromsa);
462 	} else {
463 		/*
464 		 * Engage the tunneling protocol.
465 		 */
466 
467 		(*up->u_tun_func)(m, off, inp);
468 	}
469 	INP_RUNLOCK(inp);
470 	return (IPPROTO_DONE);
471 
472 badheadlocked:
473 	INP_INFO_RUNLOCK(&V_udbinfo);
474 badunlocked:
475 	if (m)
476 		m_freem(m);
477 	return (IPPROTO_DONE);
478 }
479 
480 void
481 udp6_ctlinput(int cmd, struct sockaddr *sa, void *d)
482 {
483 	struct udphdr uh;
484 	struct ip6_hdr *ip6;
485 	struct mbuf *m;
486 	int off = 0;
487 	struct ip6ctlparam *ip6cp = NULL;
488 	const struct sockaddr_in6 *sa6_src = NULL;
489 	void *cmdarg;
490 	struct inpcb *(*notify)(struct inpcb *, int) = udp_notify;
491 	struct udp_portonly {
492 		u_int16_t uh_sport;
493 		u_int16_t uh_dport;
494 	} *uhp;
495 
496 	if (sa->sa_family != AF_INET6 ||
497 	    sa->sa_len != sizeof(struct sockaddr_in6))
498 		return;
499 
500 	if ((unsigned)cmd >= PRC_NCMDS)
501 		return;
502 	if (PRC_IS_REDIRECT(cmd))
503 		notify = in6_rtchange, d = NULL;
504 	else if (cmd == PRC_HOSTDEAD)
505 		d = NULL;
506 	else if (inet6ctlerrmap[cmd] == 0)
507 		return;
508 
509 	/* if the parameter is from icmp6, decode it. */
510 	if (d != NULL) {
511 		ip6cp = (struct ip6ctlparam *)d;
512 		m = ip6cp->ip6c_m;
513 		ip6 = ip6cp->ip6c_ip6;
514 		off = ip6cp->ip6c_off;
515 		cmdarg = ip6cp->ip6c_cmdarg;
516 		sa6_src = ip6cp->ip6c_src;
517 	} else {
518 		m = NULL;
519 		ip6 = NULL;
520 		cmdarg = NULL;
521 		sa6_src = &sa6_any;
522 	}
523 
524 	if (ip6) {
525 		/*
526 		 * XXX: We assume that when IPV6 is non NULL,
527 		 * M and OFF are valid.
528 		 */
529 
530 		/* Check if we can safely examine src and dst ports. */
531 		if (m->m_pkthdr.len < off + sizeof(*uhp))
532 			return;
533 
534 		bzero(&uh, sizeof(uh));
535 		m_copydata(m, off, sizeof(*uhp), (caddr_t)&uh);
536 
537 		(void) in6_pcbnotify(&V_udbinfo, sa, uh.uh_dport,
538 		    (struct sockaddr *)ip6cp->ip6c_src, uh.uh_sport, cmd,
539 		    cmdarg, notify);
540 	} else
541 		(void) in6_pcbnotify(&V_udbinfo, sa, 0,
542 		    (const struct sockaddr *)sa6_src, 0, cmd, cmdarg, notify);
543 }
544 
545 static int
546 udp6_getcred(SYSCTL_HANDLER_ARGS)
547 {
548 	struct xucred xuc;
549 	struct sockaddr_in6 addrs[2];
550 	struct inpcb *inp;
551 	int error;
552 
553 	error = priv_check(req->td, PRIV_NETINET_GETCRED);
554 	if (error)
555 		return (error);
556 
557 	if (req->newlen != sizeof(addrs))
558 		return (EINVAL);
559 	if (req->oldlen != sizeof(struct xucred))
560 		return (EINVAL);
561 	error = SYSCTL_IN(req, addrs, sizeof(addrs));
562 	if (error)
563 		return (error);
564 	if ((error = sa6_embedscope(&addrs[0], V_ip6_use_defzone)) != 0 ||
565 	    (error = sa6_embedscope(&addrs[1], V_ip6_use_defzone)) != 0) {
566 		return (error);
567 	}
568 	inp = in6_pcblookup(&V_udbinfo, &addrs[1].sin6_addr,
569 	    addrs[1].sin6_port, &addrs[0].sin6_addr, addrs[0].sin6_port,
570 	    INPLOOKUP_WILDCARD | INPLOOKUP_RLOCKPCB, NULL);
571 	if (inp != NULL) {
572 		INP_RLOCK_ASSERT(inp);
573 		if (inp->inp_socket == NULL)
574 			error = ENOENT;
575 		if (error == 0)
576 			error = cr_canseesocket(req->td->td_ucred,
577 			    inp->inp_socket);
578 		if (error == 0)
579 			cru2x(inp->inp_cred, &xuc);
580 		INP_RUNLOCK(inp);
581 	} else
582 		error = ENOENT;
583 	if (error == 0)
584 		error = SYSCTL_OUT(req, &xuc, sizeof(struct xucred));
585 	return (error);
586 }
587 
588 SYSCTL_PROC(_net_inet6_udp6, OID_AUTO, getcred, CTLTYPE_OPAQUE|CTLFLAG_RW, 0,
589     0, udp6_getcred, "S,xucred", "Get the xucred of a UDP6 connection");
590 
591 static int
592 udp6_output(struct inpcb *inp, struct mbuf *m, struct sockaddr *addr6,
593     struct mbuf *control, struct thread *td)
594 {
595 	u_int32_t ulen = m->m_pkthdr.len;
596 	u_int32_t plen = sizeof(struct udphdr) + ulen;
597 	struct ip6_hdr *ip6;
598 	struct udphdr *udp6;
599 	struct in6_addr *laddr, *faddr, in6a;
600 	struct sockaddr_in6 *sin6 = NULL;
601 	struct ifnet *oifp = NULL;
602 	int scope_ambiguous = 0;
603 	u_short fport;
604 	int error = 0;
605 	struct ip6_pktopts *optp, opt;
606 	int af = AF_INET6, hlen = sizeof(struct ip6_hdr);
607 	int flags;
608 	struct sockaddr_in6 tmp;
609 
610 	INP_WLOCK_ASSERT(inp);
611 	INP_HASH_WLOCK_ASSERT(inp->inp_pcbinfo);
612 
613 	if (addr6) {
614 		/* addr6 has been validated in udp6_send(). */
615 		sin6 = (struct sockaddr_in6 *)addr6;
616 
617 		/* protect *sin6 from overwrites */
618 		tmp = *sin6;
619 		sin6 = &tmp;
620 
621 		/*
622 		 * Application should provide a proper zone ID or the use of
623 		 * default zone IDs should be enabled.  Unfortunately, some
624 		 * applications do not behave as it should, so we need a
625 		 * workaround.  Even if an appropriate ID is not determined,
626 		 * we'll see if we can determine the outgoing interface.  If we
627 		 * can, determine the zone ID based on the interface below.
628 		 */
629 		if (sin6->sin6_scope_id == 0 && !V_ip6_use_defzone)
630 			scope_ambiguous = 1;
631 		if ((error = sa6_embedscope(sin6, V_ip6_use_defzone)) != 0)
632 			return (error);
633 	}
634 
635 	if (control) {
636 		if ((error = ip6_setpktopts(control, &opt,
637 		    inp->in6p_outputopts, td->td_ucred, IPPROTO_UDP)) != 0)
638 			goto release;
639 		optp = &opt;
640 	} else
641 		optp = inp->in6p_outputopts;
642 
643 	if (sin6) {
644 		faddr = &sin6->sin6_addr;
645 
646 		/*
647 		 * Since we saw no essential reason for calling in_pcbconnect,
648 		 * we get rid of such kind of logic, and call in6_selectsrc
649 		 * and in6_pcbsetport in order to fill in the local address
650 		 * and the local port.
651 		 */
652 		if (sin6->sin6_port == 0) {
653 			error = EADDRNOTAVAIL;
654 			goto release;
655 		}
656 
657 		if (!IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr)) {
658 			/* how about ::ffff:0.0.0.0 case? */
659 			error = EISCONN;
660 			goto release;
661 		}
662 
663 		fport = sin6->sin6_port; /* allow 0 port */
664 
665 		if (IN6_IS_ADDR_V4MAPPED(faddr)) {
666 			if ((inp->inp_flags & IN6P_IPV6_V6ONLY)) {
667 				/*
668 				 * I believe we should explicitly discard the
669 				 * packet when mapped addresses are disabled,
670 				 * rather than send the packet as an IPv6 one.
671 				 * If we chose the latter approach, the packet
672 				 * might be sent out on the wire based on the
673 				 * default route, the situation which we'd
674 				 * probably want to avoid.
675 				 * (20010421 jinmei@kame.net)
676 				 */
677 				error = EINVAL;
678 				goto release;
679 			}
680 			if (!IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_laddr) &&
681 			    !IN6_IS_ADDR_V4MAPPED(&inp->in6p_laddr)) {
682 				/*
683 				 * when remote addr is an IPv4-mapped address,
684 				 * local addr should not be an IPv6 address,
685 				 * since you cannot determine how to map IPv6
686 				 * source address to IPv4.
687 				 */
688 				error = EINVAL;
689 				goto release;
690 			}
691 
692 			af = AF_INET;
693 		}
694 
695 		if (!IN6_IS_ADDR_V4MAPPED(faddr)) {
696 			error = in6_selectsrc(sin6, optp, inp, NULL,
697 			    td->td_ucred, &oifp, &in6a);
698 			if (error)
699 				goto release;
700 			if (oifp && scope_ambiguous &&
701 			    (error = in6_setscope(&sin6->sin6_addr,
702 			    oifp, NULL))) {
703 				goto release;
704 			}
705 			laddr = &in6a;
706 		} else
707 			laddr = &inp->in6p_laddr;	/* XXX */
708 		if (laddr == NULL) {
709 			if (error == 0)
710 				error = EADDRNOTAVAIL;
711 			goto release;
712 		}
713 		if (inp->inp_lport == 0 &&
714 		    (error = in6_pcbsetport(laddr, inp, td->td_ucred)) != 0) {
715 			/* Undo an address bind that may have occurred. */
716 			inp->in6p_laddr = in6addr_any;
717 			goto release;
718 		}
719 	} else {
720 		if (IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr)) {
721 			error = ENOTCONN;
722 			goto release;
723 		}
724 		if (IN6_IS_ADDR_V4MAPPED(&inp->in6p_faddr)) {
725 			if ((inp->inp_flags & IN6P_IPV6_V6ONLY)) {
726 				/*
727 				 * XXX: this case would happen when the
728 				 * application sets the V6ONLY flag after
729 				 * connecting the foreign address.
730 				 * Such applications should be fixed,
731 				 * so we bark here.
732 				 */
733 				log(LOG_INFO, "udp6_output: IPV6_V6ONLY "
734 				    "option was set for a connected socket\n");
735 				error = EINVAL;
736 				goto release;
737 			} else
738 				af = AF_INET;
739 		}
740 		laddr = &inp->in6p_laddr;
741 		faddr = &inp->in6p_faddr;
742 		fport = inp->inp_fport;
743 	}
744 
745 	if (af == AF_INET)
746 		hlen = sizeof(struct ip);
747 
748 	/*
749 	 * Calculate data length and get a mbuf
750 	 * for UDP and IP6 headers.
751 	 */
752 	M_PREPEND(m, hlen + sizeof(struct udphdr), M_DONTWAIT);
753 	if (m == 0) {
754 		error = ENOBUFS;
755 		goto release;
756 	}
757 
758 	/*
759 	 * Stuff checksum and output datagram.
760 	 */
761 	udp6 = (struct udphdr *)(mtod(m, caddr_t) + hlen);
762 	udp6->uh_sport = inp->inp_lport; /* lport is always set in the PCB */
763 	udp6->uh_dport = fport;
764 	if (plen <= 0xffff)
765 		udp6->uh_ulen = htons((u_short)plen);
766 	else
767 		udp6->uh_ulen = 0;
768 	udp6->uh_sum = 0;
769 
770 	switch (af) {
771 	case AF_INET6:
772 		ip6 = mtod(m, struct ip6_hdr *);
773 		ip6->ip6_flow	= inp->inp_flow & IPV6_FLOWINFO_MASK;
774 		ip6->ip6_vfc	&= ~IPV6_VERSION_MASK;
775 		ip6->ip6_vfc	|= IPV6_VERSION;
776 #if 0				/* ip6_plen will be filled in ip6_output. */
777 		ip6->ip6_plen	= htons((u_short)plen);
778 #endif
779 		ip6->ip6_nxt	= IPPROTO_UDP;
780 		ip6->ip6_hlim	= in6_selecthlim(inp, NULL);
781 		ip6->ip6_src	= *laddr;
782 		ip6->ip6_dst	= *faddr;
783 
784 		udp6->uh_sum = in6_cksum_pseudo(ip6, plen, IPPROTO_UDP, 0);
785 		m->m_pkthdr.csum_flags = CSUM_UDP_IPV6;
786 		m->m_pkthdr.csum_data = offsetof(struct udphdr, uh_sum);
787 
788 		flags = 0;
789 
790 		UDPSTAT_INC(udps_opackets);
791 		error = ip6_output(m, optp, NULL, flags, inp->in6p_moptions,
792 		    NULL, inp);
793 		break;
794 	case AF_INET:
795 		error = EAFNOSUPPORT;
796 		goto release;
797 	}
798 	goto releaseopt;
799 
800 release:
801 	m_freem(m);
802 
803 releaseopt:
804 	if (control) {
805 		ip6_clearpktopts(&opt, -1);
806 		m_freem(control);
807 	}
808 	return (error);
809 }
810 
811 static void
812 udp6_abort(struct socket *so)
813 {
814 	struct inpcb *inp;
815 
816 	inp = sotoinpcb(so);
817 	KASSERT(inp != NULL, ("udp6_abort: inp == NULL"));
818 
819 #ifdef INET
820 	if (inp->inp_vflag & INP_IPV4) {
821 		struct pr_usrreqs *pru;
822 
823 		pru = inetsw[ip_protox[IPPROTO_UDP]].pr_usrreqs;
824 		(*pru->pru_abort)(so);
825 		return;
826 	}
827 #endif
828 
829 	INP_WLOCK(inp);
830 	if (!IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr)) {
831 		INP_HASH_WLOCK(&V_udbinfo);
832 		in6_pcbdisconnect(inp);
833 		inp->in6p_laddr = in6addr_any;
834 		INP_HASH_WUNLOCK(&V_udbinfo);
835 		soisdisconnected(so);
836 	}
837 	INP_WUNLOCK(inp);
838 }
839 
840 static int
841 udp6_attach(struct socket *so, int proto, struct thread *td)
842 {
843 	struct inpcb *inp;
844 	int error;
845 
846 	inp = sotoinpcb(so);
847 	KASSERT(inp == NULL, ("udp6_attach: inp != NULL"));
848 
849 	if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
850 		error = soreserve(so, udp_sendspace, udp_recvspace);
851 		if (error)
852 			return (error);
853 	}
854 	INP_INFO_WLOCK(&V_udbinfo);
855 	error = in_pcballoc(so, &V_udbinfo);
856 	if (error) {
857 		INP_INFO_WUNLOCK(&V_udbinfo);
858 		return (error);
859 	}
860 	inp = (struct inpcb *)so->so_pcb;
861 	inp->inp_vflag |= INP_IPV6;
862 	if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0)
863 		inp->inp_vflag |= INP_IPV4;
864 	inp->in6p_hops = -1;	/* use kernel default */
865 	inp->in6p_cksum = -1;	/* just to be sure */
866 	/*
867 	 * XXX: ugly!!
868 	 * IPv4 TTL initialization is necessary for an IPv6 socket as well,
869 	 * because the socket may be bound to an IPv6 wildcard address,
870 	 * which may match an IPv4-mapped IPv6 address.
871 	 */
872 	inp->inp_ip_ttl = V_ip_defttl;
873 
874 	error = udp_newudpcb(inp);
875 	if (error) {
876 		in_pcbdetach(inp);
877 		in_pcbfree(inp);
878 		INP_INFO_WUNLOCK(&V_udbinfo);
879 		return (error);
880 	}
881 	INP_WUNLOCK(inp);
882 	INP_INFO_WUNLOCK(&V_udbinfo);
883 	return (0);
884 }
885 
886 static int
887 udp6_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
888 {
889 	struct inpcb *inp;
890 	int error;
891 
892 	inp = sotoinpcb(so);
893 	KASSERT(inp != NULL, ("udp6_bind: inp == NULL"));
894 
895 	INP_WLOCK(inp);
896 	INP_HASH_WLOCK(&V_udbinfo);
897 	inp->inp_vflag &= ~INP_IPV4;
898 	inp->inp_vflag |= INP_IPV6;
899 	if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0) {
900 		struct sockaddr_in6 *sin6_p;
901 
902 		sin6_p = (struct sockaddr_in6 *)nam;
903 
904 		if (IN6_IS_ADDR_UNSPECIFIED(&sin6_p->sin6_addr))
905 			inp->inp_vflag |= INP_IPV4;
906 #ifdef INET
907 		else if (IN6_IS_ADDR_V4MAPPED(&sin6_p->sin6_addr)) {
908 			struct sockaddr_in sin;
909 
910 			in6_sin6_2_sin(&sin, sin6_p);
911 			inp->inp_vflag |= INP_IPV4;
912 			inp->inp_vflag &= ~INP_IPV6;
913 			error = in_pcbbind(inp, (struct sockaddr *)&sin,
914 			    td->td_ucred);
915 			goto out;
916 		}
917 #endif
918 	}
919 
920 	error = in6_pcbbind(inp, nam, td->td_ucred);
921 #ifdef INET
922 out:
923 #endif
924 	INP_HASH_WUNLOCK(&V_udbinfo);
925 	INP_WUNLOCK(inp);
926 	return (error);
927 }
928 
929 static void
930 udp6_close(struct socket *so)
931 {
932 	struct inpcb *inp;
933 
934 	inp = sotoinpcb(so);
935 	KASSERT(inp != NULL, ("udp6_close: inp == NULL"));
936 
937 #ifdef INET
938 	if (inp->inp_vflag & INP_IPV4) {
939 		struct pr_usrreqs *pru;
940 
941 		pru = inetsw[ip_protox[IPPROTO_UDP]].pr_usrreqs;
942 		(*pru->pru_disconnect)(so);
943 		return;
944 	}
945 #endif
946 	INP_WLOCK(inp);
947 	if (!IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr)) {
948 		INP_HASH_WLOCK(&V_udbinfo);
949 		in6_pcbdisconnect(inp);
950 		inp->in6p_laddr = in6addr_any;
951 		INP_HASH_WUNLOCK(&V_udbinfo);
952 		soisdisconnected(so);
953 	}
954 	INP_WUNLOCK(inp);
955 }
956 
957 static int
958 udp6_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
959 {
960 	struct inpcb *inp;
961 	struct sockaddr_in6 *sin6;
962 	int error;
963 
964 	inp = sotoinpcb(so);
965 	sin6 = (struct sockaddr_in6 *)nam;
966 	KASSERT(inp != NULL, ("udp6_connect: inp == NULL"));
967 
968 	/*
969 	 * XXXRW: Need to clarify locking of v4/v6 flags.
970 	 */
971 	INP_WLOCK(inp);
972 #ifdef INET
973 	if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
974 		struct sockaddr_in sin;
975 
976 		if ((inp->inp_flags & IN6P_IPV6_V6ONLY) != 0) {
977 			error = EINVAL;
978 			goto out;
979 		}
980 		if (inp->inp_faddr.s_addr != INADDR_ANY) {
981 			error = EISCONN;
982 			goto out;
983 		}
984 		in6_sin6_2_sin(&sin, sin6);
985 		inp->inp_vflag |= INP_IPV4;
986 		inp->inp_vflag &= ~INP_IPV6;
987 		error = prison_remote_ip4(td->td_ucred, &sin.sin_addr);
988 		if (error != 0)
989 			goto out;
990 		INP_HASH_WLOCK(&V_udbinfo);
991 		error = in_pcbconnect(inp, (struct sockaddr *)&sin,
992 		    td->td_ucred);
993 		INP_HASH_WUNLOCK(&V_udbinfo);
994 		if (error == 0)
995 			soisconnected(so);
996 		goto out;
997 	}
998 #endif
999 	if (!IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr)) {
1000 		error = EISCONN;
1001 		goto out;
1002 	}
1003 	inp->inp_vflag &= ~INP_IPV4;
1004 	inp->inp_vflag |= INP_IPV6;
1005 	error = prison_remote_ip6(td->td_ucred, &sin6->sin6_addr);
1006 	if (error != 0)
1007 		goto out;
1008 	INP_HASH_WLOCK(&V_udbinfo);
1009 	error = in6_pcbconnect(inp, nam, td->td_ucred);
1010 	INP_HASH_WUNLOCK(&V_udbinfo);
1011 	if (error == 0)
1012 		soisconnected(so);
1013 out:
1014 	INP_WUNLOCK(inp);
1015 	return (error);
1016 }
1017 
1018 static void
1019 udp6_detach(struct socket *so)
1020 {
1021 	struct inpcb *inp;
1022 	struct udpcb *up;
1023 
1024 	inp = sotoinpcb(so);
1025 	KASSERT(inp != NULL, ("udp6_detach: inp == NULL"));
1026 
1027 	INP_INFO_WLOCK(&V_udbinfo);
1028 	INP_WLOCK(inp);
1029 	up = intoudpcb(inp);
1030 	KASSERT(up != NULL, ("%s: up == NULL", __func__));
1031 	in_pcbdetach(inp);
1032 	in_pcbfree(inp);
1033 	INP_INFO_WUNLOCK(&V_udbinfo);
1034 	udp_discardcb(up);
1035 }
1036 
1037 static int
1038 udp6_disconnect(struct socket *so)
1039 {
1040 	struct inpcb *inp;
1041 	int error;
1042 
1043 	inp = sotoinpcb(so);
1044 	KASSERT(inp != NULL, ("udp6_disconnect: inp == NULL"));
1045 
1046 #ifdef INET
1047 	if (inp->inp_vflag & INP_IPV4) {
1048 		struct pr_usrreqs *pru;
1049 
1050 		pru = inetsw[ip_protox[IPPROTO_UDP]].pr_usrreqs;
1051 		(void)(*pru->pru_disconnect)(so);
1052 		return (0);
1053 	}
1054 #endif
1055 
1056 	INP_WLOCK(inp);
1057 
1058 	if (IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr)) {
1059 		error = ENOTCONN;
1060 		goto out;
1061 	}
1062 
1063 	INP_HASH_WLOCK(&V_udbinfo);
1064 	in6_pcbdisconnect(inp);
1065 	inp->in6p_laddr = in6addr_any;
1066 	INP_HASH_WUNLOCK(&V_udbinfo);
1067 	SOCK_LOCK(so);
1068 	so->so_state &= ~SS_ISCONNECTED;		/* XXX */
1069 	SOCK_UNLOCK(so);
1070 out:
1071 	INP_WUNLOCK(inp);
1072 	return (0);
1073 }
1074 
1075 static int
1076 udp6_send(struct socket *so, int flags, struct mbuf *m,
1077     struct sockaddr *addr, struct mbuf *control, struct thread *td)
1078 {
1079 	struct inpcb *inp;
1080 	int error = 0;
1081 
1082 	inp = sotoinpcb(so);
1083 	KASSERT(inp != NULL, ("udp6_send: inp == NULL"));
1084 
1085 	INP_WLOCK(inp);
1086 	if (addr) {
1087 		if (addr->sa_len != sizeof(struct sockaddr_in6)) {
1088 			error = EINVAL;
1089 			goto bad;
1090 		}
1091 		if (addr->sa_family != AF_INET6) {
1092 			error = EAFNOSUPPORT;
1093 			goto bad;
1094 		}
1095 	}
1096 
1097 #ifdef INET
1098 	if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0) {
1099 		int hasv4addr;
1100 		struct sockaddr_in6 *sin6 = 0;
1101 
1102 		if (addr == 0)
1103 			hasv4addr = (inp->inp_vflag & INP_IPV4);
1104 		else {
1105 			sin6 = (struct sockaddr_in6 *)addr;
1106 			hasv4addr = IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)
1107 			    ? 1 : 0;
1108 		}
1109 		if (hasv4addr) {
1110 			struct pr_usrreqs *pru;
1111 
1112 			/*
1113 			 * XXXRW: We release UDP-layer locks before calling
1114 			 * udp_send() in order to avoid recursion.  However,
1115 			 * this does mean there is a short window where inp's
1116 			 * fields are unstable.  Could this lead to a
1117 			 * potential race in which the factors causing us to
1118 			 * select the UDPv4 output routine are invalidated?
1119 			 */
1120 			INP_WUNLOCK(inp);
1121 			if (sin6)
1122 				in6_sin6_2_sin_in_sock(addr);
1123 			pru = inetsw[ip_protox[IPPROTO_UDP]].pr_usrreqs;
1124 			/* addr will just be freed in sendit(). */
1125 			return ((*pru->pru_send)(so, flags, m, addr, control,
1126 			    td));
1127 		}
1128 	}
1129 #endif
1130 #ifdef MAC
1131 	mac_inpcb_create_mbuf(inp, m);
1132 #endif
1133 	INP_HASH_WLOCK(&V_udbinfo);
1134 	error = udp6_output(inp, m, addr, control, td);
1135 	INP_HASH_WUNLOCK(&V_udbinfo);
1136 #ifdef INET
1137 #endif
1138 	INP_WUNLOCK(inp);
1139 	return (error);
1140 
1141 bad:
1142 	INP_WUNLOCK(inp);
1143 	m_freem(m);
1144 	return (error);
1145 }
1146 
1147 struct pr_usrreqs udp6_usrreqs = {
1148 	.pru_abort =		udp6_abort,
1149 	.pru_attach =		udp6_attach,
1150 	.pru_bind =		udp6_bind,
1151 	.pru_connect =		udp6_connect,
1152 	.pru_control =		in6_control,
1153 	.pru_detach =		udp6_detach,
1154 	.pru_disconnect =	udp6_disconnect,
1155 	.pru_peeraddr =		in6_mapped_peeraddr,
1156 	.pru_send =		udp6_send,
1157 	.pru_shutdown =		udp_shutdown,
1158 	.pru_sockaddr =		in6_mapped_sockaddr,
1159 	.pru_soreceive =	soreceive_dgram,
1160 	.pru_sosend =		sosend_dgram,
1161 	.pru_sosetlabel =	in_pcbsosetlabel,
1162 	.pru_close =		udp6_close
1163 };
1164