udp6_usrreq.c revision 78064
167115Smarkm/*	$FreeBSD: head/sys/netinet6/udp6_usrreq.c 78064 2001-06-11 12:39:29Z ume $	*/
267115Smarkm/*	$KAME: udp6_usrreq.c,v 1.27 2001/05/21 05:45:10 jinmei Exp $	*/
367115Smarkm
467115Smarkm/*
567115Smarkm * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
667115Smarkm * All rights reserved.
767115Smarkm *
867115Smarkm * Redistribution and use in source and binary forms, with or without
967115Smarkm * modification, are permitted provided that the following conditions
1067115Smarkm * are met:
1167115Smarkm * 1. Redistributions of source code must retain the above copyright
1267115Smarkm *    notice, this list of conditions and the following disclaimer.
1367115Smarkm * 2. Redistributions in binary form must reproduce the above copyright
1467115Smarkm *    notice, this list of conditions and the following disclaimer in the
1567115Smarkm *    documentation and/or other materials provided with the distribution.
1667115Smarkm * 3. Neither the name of the project nor the names of its contributors
1767115Smarkm *    may be used to endorse or promote products derived from this software
1867115Smarkm *    without specific prior written permission.
1967115Smarkm *
2067115Smarkm * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
2167115Smarkm * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2267115Smarkm * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2367115Smarkm * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
2467115Smarkm * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2567115Smarkm * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2667115Smarkm * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2767115Smarkm * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2867115Smarkm * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2967115Smarkm * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30206622Suqs * SUCH DAMAGE.
3167115Smarkm */
3267115Smarkm
33107383Sru/*
3468678Ssheldonh * Copyright (c) 1982, 1986, 1989, 1993
3568678Ssheldonh *	The Regents of the University of California.  All rights reserved.
3668678Ssheldonh *
3768678Ssheldonh * Redistribution and use in source and binary forms, with or without
3875670Sru * modification, are permitted provided that the following conditions
3967115Smarkm * are met:
4084306Sru * 1. Redistributions of source code must retain the above copyright
4167115Smarkm *    notice, this list of conditions and the following disclaimer.
4267115Smarkm * 2. Redistributions in binary form must reproduce the above copyright
4367115Smarkm *    notice, this list of conditions and the following disclaimer in the
4467115Smarkm *    documentation and/or other materials provided with the distribution.
45104900Sphk * 3. All advertising materials mentioning features or use of this software
46104900Sphk *    must display the following acknowledgement:
47231564Sed *	This product includes software developed by the University of
4867115Smarkm *	California, Berkeley and its contributors.
4967115Smarkm * 4. Neither the name of the University nor the names of its contributors
5084306Sru *    may be used to endorse or promote products derived from this software
5194482Sdavidc *    without specific prior written permission.
5294482Sdavidc *
5367115Smarkm * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
5467115Smarkm * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
5567115Smarkm * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
5667115Smarkm * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
5767115Smarkm * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
5867115Smarkm * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
5968678Ssheldonh * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
6067115Smarkm * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
6167115Smarkm * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
62107383Sru * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
6367115Smarkm * SUCH DAMAGE.
6467115Smarkm *
6567115Smarkm *	@(#)udp_var.h	8.1 (Berkeley) 6/10/93
66107383Sru */
6768678Ssheldonh
6867115Smarkm#include "opt_inet.h"
6967115Smarkm#include "opt_inet6.h"
7067115Smarkm#include "opt_ipsec.h"
7167115Smarkm
7267115Smarkm#include <sys/param.h>
7367115Smarkm#include <sys/kernel.h>
74104900Sphk#include <sys/mbuf.h>
7567115Smarkm#include <sys/protosw.h>
7667115Smarkm#include <sys/socket.h>
7767115Smarkm#include <sys/socketvar.h>
78104900Sphk#include <sys/sysctl.h>
7967115Smarkm#include <sys/errno.h>
80104900Sphk#include <sys/stat.h>
81104900Sphk#include <sys/systm.h>
82104900Sphk#include <sys/syslog.h>
83107383Sru#include <sys/proc.h>
84104900Sphk
8567115Smarkm#include <net/if.h>
8667115Smarkm#include <net/route.h>
8767115Smarkm#include <net/if_types.h>
8867115Smarkm
89131530Sru#include <netinet/in.h>
90131530Sru#include <netinet/in_systm.h>
9167115Smarkm#include <netinet/ip.h>
92107383Sru#include <netinet/in_pcb.h>
9367115Smarkm#include <netinet/in_var.h>
9467115Smarkm#include <netinet/ip_var.h>
9567115Smarkm#include <netinet/udp.h>
96107383Sru#include <netinet/udp_var.h>
9767115Smarkm#include <netinet/ip6.h>
98107383Sru#include <netinet6/ip6_var.h>
99131530Sru#include <netinet6/in6_pcb.h>
100131530Sru#include <netinet/icmp6.h>
10167115Smarkm#include <netinet6/udp6_var.h>
10267115Smarkm#include <netinet6/ip6protosw.h>
103107383Sru
10467115Smarkm#ifdef IPSEC
10567115Smarkm#include <netinet6/ipsec.h>
10667115Smarkm#include <netinet6/ipsec6.h>
107104900Sphk#endif /*IPSEC*/
10867115Smarkm
10967115Smarkm#include "faith.h"
110121385Shmp#if defined(NFAITH) && NFAITH > 0
111121385Shmp#include <net/if_faith.h>
11267115Smarkm#endif
11367115Smarkm
114104900Sphk/*
115104900Sphk * UDP protocol inplementation.
116104900Sphk * Per RFC 768, August, 1980.
117104900Sphk */
118104900Sphk
119104900Sphkextern	struct protosw inetsw[];
12067115Smarkmstatic	int in6_mcmatch __P((struct inpcb *, struct in6_addr *, struct ifnet *));
12167115Smarkmstatic	int udp6_detach __P((struct socket *so));
12267115Smarkm
12367115Smarkmstatic int
12467115Smarkmin6_mcmatch(in6p, ia6, ifp)
12567115Smarkm	struct inpcb *in6p;
12667115Smarkm	register struct in6_addr *ia6;
12767115Smarkm	struct ifnet *ifp;
12867115Smarkm{
12967115Smarkm	struct ip6_moptions *im6o = in6p->in6p_moptions;
13067115Smarkm	struct in6_multi_mship *imm;
13167115Smarkm
13267115Smarkm	if (im6o == NULL)
13367115Smarkm		return 0;
134104900Sphk
135104900Sphk	for (imm = im6o->im6o_memberships.lh_first; imm != NULL;
136104900Sphk	     imm = imm->i6mm_chain.le_next) {
137104900Sphk		if ((ifp == NULL ||
13867115Smarkm		     imm->i6mm_maddr->in6m_ifp == ifp) &&
13967115Smarkm		    IN6_ARE_ADDR_EQUAL(&imm->i6mm_maddr->in6m_addr,
140107383Sru				       ia6))
141104900Sphk			return 1;
142104900Sphk	}
14367115Smarkm	return 0;
14467115Smarkm}
14567115Smarkm
14667115Smarkmint
14767115Smarkmudp6_input(mp, offp, proto)
14867115Smarkm	struct mbuf **mp;
149107383Sru	int *offp, proto;
15067115Smarkm{
15167115Smarkm	struct mbuf *m = *mp;
15267115Smarkm	register struct ip6_hdr *ip6;
15367115Smarkm	register struct udphdr *uh;
15467115Smarkm	register struct inpcb *in6p;
15567115Smarkm	struct  mbuf *opts = NULL;
15667115Smarkm	int off = *offp;
157	int plen, ulen;
158	struct sockaddr_in6 udp_in6;
159
160	IP6_EXTHDR_CHECK(m, off, sizeof(struct udphdr), IPPROTO_DONE);
161
162	ip6 = mtod(m, struct ip6_hdr *);
163
164#if defined(NFAITH) && 0 < NFAITH
165	if (faithprefix(&ip6->ip6_dst)) {
166		/* XXX send icmp6 host/port unreach? */
167		m_freem(m);
168		return IPPROTO_DONE;
169	}
170#endif
171
172	udpstat.udps_ipackets++;
173
174	plen = ntohs(ip6->ip6_plen) - off + sizeof(*ip6);
175	uh = (struct udphdr *)((caddr_t)ip6 + off);
176	ulen = ntohs((u_short)uh->uh_ulen);
177
178	if (plen != ulen) {
179		udpstat.udps_badlen++;
180		goto bad;
181	}
182
183	/*
184	 * Checksum extended UDP header and data.
185	 */
186	if (uh->uh_sum == 0)
187		udpstat.udps_nosum++;
188	else if (in6_cksum(m, IPPROTO_UDP, off, ulen) != 0) {
189		udpstat.udps_badsum++;
190		goto bad;
191	}
192
193	if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
194		struct	inpcb *last;
195
196		/*
197		 * Deliver a multicast datagram to all sockets
198		 * for which the local and remote addresses and ports match
199		 * those of the incoming datagram.  This allows more than
200		 * one process to receive multicasts on the same port.
201		 * (This really ought to be done for unicast datagrams as
202		 * well, but that would cause problems with existing
203		 * applications that open both address-specific sockets and
204		 * a wildcard socket listening to the same port -- they would
205		 * end up receiving duplicates of every unicast datagram.
206		 * Those applications open the multiple sockets to overcome an
207		 * inadequacy of the UDP socket interface, but for backwards
208		 * compatibility we avoid the problem here rather than
209		 * fixing the interface.  Maybe 4.5BSD will remedy this?)
210		 */
211
212		/*
213		 * In a case that laddr should be set to the link-local
214		 * address (this happens in RIPng), the multicast address
215		 * specified in the received packet does not match with
216		 * laddr. To cure this situation, the matching is relaxed
217		 * if the receiving interface is the same as one specified
218		 * in the socket and if the destination multicast address
219		 * matches one of the multicast groups specified in the socket.
220		 */
221
222		/*
223		 * Construct sockaddr format source address.
224		 */
225		init_sin6(&udp_in6, m); /* general init */
226		udp_in6.sin6_port = uh->uh_sport;
227		/*
228		 * KAME note: usually we drop udphdr from mbuf here.
229		 * We need udphdr for IPsec processing so we do that later.
230		 */
231
232		/*
233		 * Locate pcb(s) for datagram.
234		 * (Algorithm copied from raw_intr().)
235		 */
236		last = NULL;
237		LIST_FOREACH(in6p, &udb, inp_list) {
238			if ((in6p->inp_vflag & INP_IPV6) == 0)
239				continue;
240			if (in6p->in6p_lport != uh->uh_dport)
241				continue;
242			if (!IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr)) {
243				if (!IN6_ARE_ADDR_EQUAL(&in6p->in6p_laddr,
244							&ip6->ip6_dst) &&
245				    !in6_mcmatch(in6p, &ip6->ip6_dst,
246						 m->m_pkthdr.rcvif))
247					continue;
248			}
249			if (!IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_faddr)) {
250				if (!IN6_ARE_ADDR_EQUAL(&in6p->in6p_faddr,
251							&ip6->ip6_src) ||
252				   in6p->in6p_fport != uh->uh_sport)
253					continue;
254			}
255
256			if (last != NULL) {
257				struct	mbuf *n;
258
259#ifdef IPSEC
260				/*
261				 * Check AH/ESP integrity.
262				 */
263				if (ipsec6_in_reject_so(m, last->inp_socket))
264					ipsec6stat.in_polvio++;
265					/* do not inject data into pcb */
266				else
267#endif /*IPSEC*/
268				if ((n = m_copy(m, 0, M_COPYALL)) != NULL) {
269					/*
270					 * KAME NOTE: do not
271					 * m_copy(m, offset, ...) above.
272					 * sbappendaddr() expects M_PKTHDR,
273					 * and m_copy() will copy M_PKTHDR
274					 * only if offset is 0.
275					 */
276					if (last->in6p_flags & IN6P_CONTROLOPTS
277					    || last->in6p_socket->so_options & SO_TIMESTAMP)
278						ip6_savecontrol(last, &opts,
279								ip6, n);
280
281					m_adj(n, off + sizeof(struct udphdr));
282					if (sbappendaddr(&last->in6p_socket->so_rcv,
283							(struct sockaddr *)&udp_in6,
284							n, opts) == 0) {
285						m_freem(n);
286						if (opts)
287							m_freem(opts);
288						udpstat.udps_fullsock++;
289					} else
290						sorwakeup(last->in6p_socket);
291					opts = NULL;
292				}
293			}
294			last = in6p;
295			/*
296			 * Don't look for additional matches if this one does
297			 * not have either the SO_REUSEPORT or SO_REUSEADDR
298			 * socket options set.  This heuristic avoids searching
299			 * through all pcbs in the common case of a non-shared
300			 * port.  It assumes that an application will never
301			 * clear these options after setting them.
302			 */
303			if ((last->in6p_socket->so_options &
304			     (SO_REUSEPORT|SO_REUSEADDR)) == 0)
305				break;
306		}
307
308		if (last == NULL) {
309			/*
310			 * No matching pcb found; discard datagram.
311			 * (No need to send an ICMP Port Unreachable
312			 * for a broadcast or multicast datgram.)
313			 */
314			udpstat.udps_noport++;
315			udpstat.udps_noportmcast++;
316			goto bad;
317		}
318#ifdef IPSEC
319		/*
320		 * Check AH/ESP integrity.
321		 */
322		if (ipsec6_in_reject_so(m, last->inp_socket)) {
323			ipsec6stat.in_polvio++;
324			goto bad;
325		}
326#endif /*IPSEC*/
327		if (last->in6p_flags & IN6P_CONTROLOPTS
328		    || last->in6p_socket->so_options & SO_TIMESTAMP)
329			ip6_savecontrol(last, &opts, ip6, m);
330
331		m_adj(m, off + sizeof(struct udphdr));
332		if (sbappendaddr(&last->in6p_socket->so_rcv,
333				(struct sockaddr *)&udp_in6,
334				m, opts) == 0) {
335			udpstat.udps_fullsock++;
336			goto bad;
337		}
338		sorwakeup(last->in6p_socket);
339		return IPPROTO_DONE;
340	}
341	/*
342	 * Locate pcb for datagram.
343	 */
344	in6p = in6_pcblookup_hash(&udbinfo, &ip6->ip6_src, uh->uh_sport,
345				  &ip6->ip6_dst, uh->uh_dport, 1,
346				  m->m_pkthdr.rcvif);
347	if (in6p == 0) {
348		if (log_in_vain) {
349			char buf[INET6_ADDRSTRLEN];
350
351			strcpy(buf, ip6_sprintf(&ip6->ip6_dst));
352			log(LOG_INFO,
353			    "Connection attempt to UDP %s:%d from %s:%d\n",
354			    buf, ntohs(uh->uh_dport),
355			    ip6_sprintf(&ip6->ip6_src), ntohs(uh->uh_sport));
356		}
357		udpstat.udps_noport++;
358		if (m->m_flags & M_MCAST) {
359			printf("UDP6: M_MCAST is set in a unicast packet.\n");
360			udpstat.udps_noportmcast++;
361			goto bad;
362		}
363		icmp6_error(m, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOPORT, 0);
364		return IPPROTO_DONE;
365	}
366#ifdef IPSEC
367	/*
368	 * Check AH/ESP integrity.
369	 */
370	if (ipsec6_in_reject_so(m, in6p->in6p_socket)) {
371		ipsec6stat.in_polvio++;
372		goto bad;
373	}
374#endif /*IPSEC*/
375
376	/*
377	 * Construct sockaddr format source address.
378	 * Stuff source address and datagram in user buffer.
379	 */
380	init_sin6(&udp_in6, m); /* general init */
381	udp_in6.sin6_port = uh->uh_sport;
382	if (in6p->in6p_flags & IN6P_CONTROLOPTS
383	    || in6p->in6p_socket->so_options & SO_TIMESTAMP)
384		ip6_savecontrol(in6p, &opts, ip6, m);
385	m_adj(m, off + sizeof(struct udphdr));
386	if (sbappendaddr(&in6p->in6p_socket->so_rcv,
387			(struct sockaddr *)&udp_in6,
388			m, opts) == 0) {
389		udpstat.udps_fullsock++;
390		goto bad;
391	}
392	sorwakeup(in6p->in6p_socket);
393	return IPPROTO_DONE;
394bad:
395	if (m)
396		m_freem(m);
397	if (opts)
398		m_freem(opts);
399	return IPPROTO_DONE;
400}
401
402void
403udp6_ctlinput(cmd, sa, d)
404	int cmd;
405	struct sockaddr *sa;
406	void *d;
407{
408	struct udphdr uh;
409	struct ip6_hdr *ip6;
410	struct mbuf *m;
411	int off = 0;
412	struct ip6ctlparam *ip6cp = NULL;
413	const struct sockaddr_in6 *sa6_src = NULL;
414	void (*notify) __P((struct inpcb *, int)) = udp_notify;
415	struct udp_portonly {
416		u_int16_t uh_sport;
417		u_int16_t uh_dport;
418	} *uhp;
419
420	if (sa->sa_family != AF_INET6 ||
421	    sa->sa_len != sizeof(struct sockaddr_in6))
422		return;
423
424	if ((unsigned)cmd >= PRC_NCMDS)
425		return;
426	if (PRC_IS_REDIRECT(cmd))
427		notify = in6_rtchange, d = NULL;
428	else if (cmd == PRC_HOSTDEAD)
429		d = NULL;
430	else if (inet6ctlerrmap[cmd] == 0)
431		return;
432
433	/* if the parameter is from icmp6, decode it. */
434	if (d != NULL) {
435		ip6cp = (struct ip6ctlparam *)d;
436		m = ip6cp->ip6c_m;
437		ip6 = ip6cp->ip6c_ip6;
438		off = ip6cp->ip6c_off;
439		sa6_src = ip6cp->ip6c_src;
440	} else {
441		m = NULL;
442		ip6 = NULL;
443		sa6_src = &sa6_any;
444	}
445
446	if (ip6) {
447		/*
448		 * XXX: We assume that when IPV6 is non NULL,
449		 * M and OFF are valid.
450		 */
451
452		/* check if we can safely examine src and dst ports */
453		if (m->m_pkthdr.len < off + sizeof(*uhp))
454			return;
455
456		bzero(&uh, sizeof(uh));
457		m_copydata(m, off, sizeof(*uhp), (caddr_t)&uh);
458
459		(void) in6_pcbnotify(&udb, sa, uh.uh_dport, ip6cp->ip6c_src,
460				     uh.uh_sport, cmd, notify);
461	} else
462		(void) in6_pcbnotify(&udb, sa, 0, (struct sockaddr *)&sa6_src,
463				     0, cmd, notify);
464}
465
466static int
467udp6_getcred(SYSCTL_HANDLER_ARGS)
468{
469	struct xucred xuc;
470	struct sockaddr_in6 addrs[2];
471	struct inpcb *inp;
472	int error, s;
473
474	error = suser(req->p);
475	if (error)
476		return (error);
477
478	if (req->newlen != sizeof(addrs))
479		return (EINVAL);
480	if (req->oldlen != sizeof(struct xucred))
481		return (EINVAL);
482	error = SYSCTL_IN(req, addrs, sizeof(addrs));
483	if (error)
484		return (error);
485	s = splnet();
486	inp = in6_pcblookup_hash(&udbinfo, &addrs[1].sin6_addr,
487				 addrs[1].sin6_port,
488				 &addrs[0].sin6_addr, addrs[0].sin6_port,
489				 1, NULL);
490	if (!inp || !inp->inp_socket) {
491		error = ENOENT;
492		goto out;
493	}
494	bzero(&xuc, sizeof(xuc));
495	xuc.cr_uid = inp->inp_socket->so_cred->cr_uid;
496	xuc.cr_ngroups = inp->inp_socket->so_cred->cr_ngroups;
497	bcopy(inp->inp_socket->so_cred->cr_groups, xuc.cr_groups,
498	    sizeof(xuc.cr_groups));
499	error = SYSCTL_OUT(req, &xuc, sizeof(struct xucred));
500out:
501	splx(s);
502	return (error);
503}
504
505SYSCTL_PROC(_net_inet6_udp6, OID_AUTO, getcred, CTLTYPE_OPAQUE|CTLFLAG_RW,
506	    0, 0,
507	    udp6_getcred, "S,xucred", "Get the xucred of a UDP6 connection");
508
509static int
510udp6_abort(struct socket *so)
511{
512	struct inpcb *inp;
513	int s;
514
515	inp = sotoinpcb(so);
516	if (inp == 0)
517		return EINVAL;	/* ??? possible? panic instead? */
518	soisdisconnected(so);
519	s = splnet();
520	in6_pcbdetach(inp);
521	splx(s);
522	return 0;
523}
524
525static int
526udp6_attach(struct socket *so, int proto, struct proc *p)
527{
528	struct inpcb *inp;
529	int s, error;
530
531	inp = sotoinpcb(so);
532	if (inp != 0)
533		return EINVAL;
534
535	if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
536		error = soreserve(so, udp_sendspace, udp_recvspace);
537		if (error)
538			return error;
539	}
540	s = splnet();
541	error = in_pcballoc(so, &udbinfo, p);
542	splx(s);
543	if (error)
544		return error;
545	inp = (struct inpcb *)so->so_pcb;
546	inp->inp_vflag |= INP_IPV6;
547	inp->in6p_hops = -1;	/* use kernel default */
548	inp->in6p_cksum = -1;	/* just to be sure */
549	/*
550	 * XXX: ugly!!
551	 * IPv4 TTL initialization is necessary for an IPv6 socket as well,
552	 * because the socket may be bound to an IPv6 wildcard address,
553	 * which may match an IPv4-mapped IPv6 address.
554	 */
555	inp->inp_ip_ttl = ip_defttl;
556#ifdef IPSEC
557	error = ipsec_init_policy(so, &inp->in6p_sp);
558	if (error != 0) {
559		in6_pcbdetach(inp);
560		return (error);
561	}
562#endif /*IPSEC*/
563	return 0;
564}
565
566static int
567udp6_bind(struct socket *so, struct sockaddr *nam, struct proc *p)
568{
569	struct inpcb *inp;
570	int s, error;
571
572	inp = sotoinpcb(so);
573	if (inp == 0)
574		return EINVAL;
575
576	inp->inp_vflag &= ~INP_IPV4;
577	inp->inp_vflag |= INP_IPV6;
578	if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0) {
579		struct sockaddr_in6 *sin6_p;
580
581		sin6_p = (struct sockaddr_in6 *)nam;
582
583		if (IN6_IS_ADDR_UNSPECIFIED(&sin6_p->sin6_addr))
584			inp->inp_vflag |= INP_IPV4;
585		else if (IN6_IS_ADDR_V4MAPPED(&sin6_p->sin6_addr)) {
586			struct sockaddr_in sin;
587
588			in6_sin6_2_sin(&sin, sin6_p);
589			inp->inp_vflag |= INP_IPV4;
590			inp->inp_vflag &= ~INP_IPV6;
591			s = splnet();
592			error = in_pcbbind(inp, (struct sockaddr *)&sin, p);
593			splx(s);
594			return error;
595		}
596	}
597
598	s = splnet();
599	error = in6_pcbbind(inp, nam, p);
600	splx(s);
601	return error;
602}
603
604static int
605udp6_connect(struct socket *so, struct sockaddr *nam, struct proc *p)
606{
607	struct inpcb *inp;
608	int s, error;
609
610	inp = sotoinpcb(so);
611	if (inp == 0)
612		return EINVAL;
613
614	if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0) {
615		struct sockaddr_in6 *sin6_p;
616
617		sin6_p = (struct sockaddr_in6 *)nam;
618		if (IN6_IS_ADDR_V4MAPPED(&sin6_p->sin6_addr)) {
619			struct sockaddr_in sin;
620
621			if (inp->inp_faddr.s_addr != INADDR_ANY)
622				return EISCONN;
623			in6_sin6_2_sin(&sin, sin6_p);
624			s = splnet();
625			error = in_pcbconnect(inp, (struct sockaddr *)&sin, p);
626			splx(s);
627			if (error == 0) {
628				inp->inp_vflag |= INP_IPV4;
629				inp->inp_vflag &= ~INP_IPV6;
630				soisconnected(so);
631			}
632			return error;
633		}
634	}
635
636	if (!IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr))
637		return EISCONN;
638	s = splnet();
639	error = in6_pcbconnect(inp, nam, p);
640	splx(s);
641	if (error == 0) {
642		if (ip6_mapped_addr_on) { /* should be non mapped addr */
643			inp->inp_vflag &= ~INP_IPV4;
644			inp->inp_vflag |= INP_IPV6;
645		}
646		soisconnected(so);
647	}
648	return error;
649}
650
651static int
652udp6_detach(struct socket *so)
653{
654	struct inpcb *inp;
655	int s;
656
657	inp = sotoinpcb(so);
658	if (inp == 0)
659		return EINVAL;
660	s = splnet();
661	in6_pcbdetach(inp);
662	splx(s);
663	return 0;
664}
665
666static int
667udp6_disconnect(struct socket *so)
668{
669	struct inpcb *inp;
670	int s;
671
672	inp = sotoinpcb(so);
673	if (inp == 0)
674		return EINVAL;
675
676	if (inp->inp_vflag & INP_IPV4) {
677		struct pr_usrreqs *pru;
678
679		pru = inetsw[ip_protox[IPPROTO_UDP]].pr_usrreqs;
680		return ((*pru->pru_disconnect)(so));
681	}
682
683	if (IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_faddr))
684		return ENOTCONN;
685
686	s = splnet();
687	in6_pcbdisconnect(inp);
688	inp->in6p_laddr = in6addr_any;
689	splx(s);
690	so->so_state &= ~SS_ISCONNECTED;		/* XXX */
691	return 0;
692}
693
694static int
695udp6_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *addr,
696	  struct mbuf *control, struct proc *p)
697{
698	struct inpcb *inp;
699	int error = 0;
700
701	inp = sotoinpcb(so);
702	if (inp == 0) {
703		error = EINVAL;
704		goto bad;
705	}
706
707	if (addr) {
708		if (addr->sa_len != sizeof(struct sockaddr_in6)) {
709			error = EINVAL;
710			goto bad;
711		}
712		if (addr->sa_family != AF_INET6) {
713			error = EAFNOSUPPORT;
714			goto bad;
715		}
716	}
717
718	if (ip6_mapped_addr_on) {
719		int hasv4addr;
720		struct sockaddr_in6 *sin6 = 0;
721
722		if (addr == 0)
723			hasv4addr = (inp->inp_vflag & INP_IPV4);
724		else {
725			sin6 = (struct sockaddr_in6 *)addr;
726			hasv4addr = IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)
727				? 1 : 0;
728		}
729		if (hasv4addr) {
730			struct pr_usrreqs *pru;
731
732			if (sin6)
733				in6_sin6_2_sin_in_sock(addr);
734			pru = inetsw[ip_protox[IPPROTO_UDP]].pr_usrreqs;
735			error = ((*pru->pru_send)(so, flags, m, addr, control,
736						  p));
737			/* addr will just be freed in sendit(). */
738			return error;
739		}
740	}
741
742	return udp6_output(inp, m, addr, control, p);
743
744  bad:
745	m_freem(m);
746	return(error);
747}
748
749struct pr_usrreqs udp6_usrreqs = {
750	udp6_abort, pru_accept_notsupp, udp6_attach, udp6_bind, udp6_connect,
751	pru_connect2_notsupp, in6_control, udp6_detach, udp6_disconnect,
752	pru_listen_notsupp, in6_mapped_peeraddr, pru_rcvd_notsupp,
753	pru_rcvoob_notsupp, udp6_send, pru_sense_null, udp_shutdown,
754	in6_mapped_sockaddr, sosend, soreceive, sopoll
755};
756