xref: /freebsd/sys/netinet6/raw_ip6.c (revision d37ea99837e6ad50837fd9fe1771ddf1c3ba6002)
1 /*
2  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the project nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD$
30  */
31 
32 /*
33  * Copyright (c) 1982, 1986, 1988, 1993
34  *	The Regents of the University of California.  All rights reserved.
35  *
36  * Redistribution and use in source and binary forms, with or without
37  * modification, are permitted provided that the following conditions
38  * are met:
39  * 1. Redistributions of source code must retain the above copyright
40  *    notice, this list of conditions and the following disclaimer.
41  * 2. Redistributions in binary form must reproduce the above copyright
42  *    notice, this list of conditions and the following disclaimer in the
43  *    documentation and/or other materials provided with the distribution.
44  * 4. Neither the name of the University nor the names of its contributors
45  *    may be used to endorse or promote products derived from this software
46  *    without specific prior written permission.
47  *
48  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58  * SUCH DAMAGE.
59  *
60  *	@(#)raw_ip.c	8.2 (Berkeley) 1/4/94
61  */
62 
63 #include "opt_ipsec.h"
64 #include "opt_inet6.h"
65 
66 #include <sys/param.h>
67 #include <sys/errno.h>
68 #include <sys/lock.h>
69 #include <sys/malloc.h>
70 #include <sys/mbuf.h>
71 #include <sys/proc.h>
72 #include <sys/protosw.h>
73 #include <sys/signalvar.h>
74 #include <sys/socket.h>
75 #include <sys/socketvar.h>
76 #include <sys/sx.h>
77 #include <sys/systm.h>
78 
79 #include <net/if.h>
80 #include <net/if_types.h>
81 #include <net/route.h>
82 
83 #include <netinet/in.h>
84 #include <netinet/in_var.h>
85 #include <netinet/in_systm.h>
86 #include <netinet/icmp6.h>
87 #include <netinet/in_pcb.h>
88 #include <netinet/ip6.h>
89 #include <netinet6/ip6protosw.h>
90 #include <netinet6/ip6_mroute.h>
91 #include <netinet6/in6_pcb.h>
92 #include <netinet6/ip6_var.h>
93 #include <netinet6/nd6.h>
94 #include <netinet6/raw_ip6.h>
95 #ifdef ENABLE_DEFAULT_SCOPE
96 #include <netinet6/scope6_var.h>
97 #endif
98 
99 #ifdef IPSEC
100 #include <netinet6/ipsec.h>
101 #include <netinet6/ipsec6.h>
102 #endif /*IPSEC*/
103 
104 #ifdef FAST_IPSEC
105 #include <netipsec/ipsec.h>
106 #include <netipsec/ipsec6.h>
107 #endif /* FAST_IPSEC */
108 
109 #include <machine/stdarg.h>
110 
111 #define	satosin6(sa)	((struct sockaddr_in6 *)(sa))
112 #define	ifatoia6(ifa)	((struct in6_ifaddr *)(ifa))
113 
114 /*
115  * Raw interface to IP6 protocol.
116  */
117 
118 extern struct	inpcbhead ripcb;
119 extern struct	inpcbinfo ripcbinfo;
120 extern u_long	rip_sendspace;
121 extern u_long	rip_recvspace;
122 
123 struct rip6stat rip6stat;
124 
125 /*
126  * Setup generic address and protocol structures
127  * for raw_input routine, then pass them along with
128  * mbuf chain.
129  */
130 int
131 rip6_input(mp, offp, proto)
132 	struct	mbuf **mp;
133 	int	*offp, proto;
134 {
135 	struct mbuf *m = *mp;
136 	register struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
137 	register struct inpcb *in6p;
138 	struct inpcb *last = 0;
139 	struct mbuf *opts = NULL;
140 	struct sockaddr_in6 fromsa;
141 
142 	rip6stat.rip6s_ipackets++;
143 
144 	if (faithprefix_p != NULL && (*faithprefix_p)(&ip6->ip6_dst)) {
145 		/* XXX send icmp6 host/port unreach? */
146 		m_freem(m);
147 		return IPPROTO_DONE;
148 	}
149 
150 	init_sin6(&fromsa, m); /* general init */
151 
152 	LIST_FOREACH(in6p, &ripcb, inp_list) {
153 		if ((in6p->in6p_vflag & INP_IPV6) == 0)
154 			continue;
155 		if (in6p->in6p_ip6_nxt &&
156 		    in6p->in6p_ip6_nxt != proto)
157 			continue;
158 		if (!IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_laddr) &&
159 		    !IN6_ARE_ADDR_EQUAL(&in6p->in6p_laddr, &ip6->ip6_dst))
160 			continue;
161 		if (!IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_faddr) &&
162 		    !IN6_ARE_ADDR_EQUAL(&in6p->in6p_faddr, &ip6->ip6_src))
163 			continue;
164 		if (in6p->in6p_cksum != -1) {
165 			rip6stat.rip6s_isum++;
166 			if (in6_cksum(m, ip6->ip6_nxt, *offp,
167 			    m->m_pkthdr.len - *offp)) {
168 				rip6stat.rip6s_badsum++;
169 				continue;
170 			}
171 		}
172 		if (last) {
173 			struct mbuf *n = m_copy(m, 0, (int)M_COPYALL);
174 
175 #if defined(IPSEC) || defined(FAST_IPSEC)
176 			/*
177 			 * Check AH/ESP integrity.
178 			 */
179 			if (n && ipsec6_in_reject(n, last)) {
180 				m_freem(n);
181 #ifdef IPSEC
182 				ipsec6stat.in_polvio++;
183 #endif /*IPSEC*/
184 				/* do not inject data into pcb */
185 			} else
186 #endif /*IPSEC || FAST_IPSEC*/
187 			if (n) {
188 				if (last->in6p_flags & IN6P_CONTROLOPTS ||
189 				    last->in6p_socket->so_options & SO_TIMESTAMP)
190 					ip6_savecontrol(last, n, &opts);
191 				/* strip intermediate headers */
192 				m_adj(n, *offp);
193 				if (sbappendaddr(&last->in6p_socket->so_rcv,
194 						(struct sockaddr *)&fromsa,
195 						 n, opts) == 0) {
196 					m_freem(n);
197 					if (opts)
198 						m_freem(opts);
199 					rip6stat.rip6s_fullsock++;
200 				} else
201 					sorwakeup(last->in6p_socket);
202 				opts = NULL;
203 			}
204 		}
205 		last = in6p;
206 	}
207 #if defined(IPSEC) || defined(FAST_IPSEC)
208 	/*
209 	 * Check AH/ESP integrity.
210 	 */
211 	if (last && ipsec6_in_reject(m, last)) {
212 		m_freem(m);
213 #ifdef IPSEC
214 		ipsec6stat.in_polvio++;
215 #endif /*IPSEC*/
216 		ip6stat.ip6s_delivered--;
217 		/* do not inject data into pcb */
218 	} else
219 #endif /*IPSEC || FAST_IPSEC*/
220 	if (last) {
221 		if (last->in6p_flags & IN6P_CONTROLOPTS ||
222 		    last->in6p_socket->so_options & SO_TIMESTAMP)
223 			ip6_savecontrol(last, m, &opts);
224 		/* strip intermediate headers */
225 		m_adj(m, *offp);
226 		if (sbappendaddr(&last->in6p_socket->so_rcv,
227 				(struct sockaddr *)&fromsa, m, opts) == 0) {
228 			m_freem(m);
229 			if (opts)
230 				m_freem(opts);
231 			rip6stat.rip6s_fullsock++;
232 		} else
233 			sorwakeup(last->in6p_socket);
234 	} else {
235 		rip6stat.rip6s_nosock++;
236 		if (m->m_flags & M_MCAST)
237 			rip6stat.rip6s_nosockmcast++;
238 		if (proto == IPPROTO_NONE)
239 			m_freem(m);
240 		else {
241 			char *prvnxtp = ip6_get_prevhdr(m, *offp); /* XXX */
242 			icmp6_error(m, ICMP6_PARAM_PROB,
243 				    ICMP6_PARAMPROB_NEXTHEADER,
244 				    prvnxtp - mtod(m, char *));
245 		}
246 		ip6stat.ip6s_delivered--;
247 	}
248 	return IPPROTO_DONE;
249 }
250 
251 void
252 rip6_ctlinput(cmd, sa, d)
253 	int cmd;
254 	struct sockaddr *sa;
255 	void *d;
256 {
257 	struct ip6_hdr *ip6;
258 	struct mbuf *m;
259 	int off = 0;
260 	struct ip6ctlparam *ip6cp = NULL;
261 	const struct sockaddr_in6 *sa6_src = NULL;
262 	void *cmdarg;
263 	struct inpcb *(*notify) __P((struct inpcb *, int)) = in6_rtchange;
264 
265 	if (sa->sa_family != AF_INET6 ||
266 	    sa->sa_len != sizeof(struct sockaddr_in6))
267 		return;
268 
269 	if ((unsigned)cmd >= PRC_NCMDS)
270 		return;
271 	if (PRC_IS_REDIRECT(cmd))
272 		notify = in6_rtchange, d = NULL;
273 	else if (cmd == PRC_HOSTDEAD)
274 		d = NULL;
275 	else if (inet6ctlerrmap[cmd] == 0)
276 		return;
277 
278 	/* if the parameter is from icmp6, decode it. */
279 	if (d != NULL) {
280 		ip6cp = (struct ip6ctlparam *)d;
281 		m = ip6cp->ip6c_m;
282 		ip6 = ip6cp->ip6c_ip6;
283 		off = ip6cp->ip6c_off;
284 		cmdarg = ip6cp->ip6c_cmdarg;
285 		sa6_src = ip6cp->ip6c_src;
286 	} else {
287 		m = NULL;
288 		ip6 = NULL;
289 		cmdarg = NULL;
290 		sa6_src = &sa6_any;
291 	}
292 
293 	(void) in6_pcbnotify(&ripcb, sa, 0, (const struct sockaddr *)sa6_src,
294 			     0, cmd, cmdarg, notify);
295 }
296 
297 /*
298  * Generate IPv6 header and pass packet to ip6_output.
299  * Tack on options user may have setup with control call.
300  */
301 int
302 #if __STDC__
303 rip6_output(struct mbuf *m, ...)
304 #else
305 rip6_output(m, va_alist)
306 	struct mbuf *m;
307 	va_dcl
308 #endif
309 {
310 	struct mbuf *control;
311 	struct socket *so;
312 	struct sockaddr_in6 *dstsock;
313 	struct in6_addr *dst;
314 	struct ip6_hdr *ip6;
315 	struct inpcb *in6p;
316 	u_int	plen = m->m_pkthdr.len;
317 	int error = 0;
318 	struct ip6_pktopts opt, *stickyopt = NULL;
319 	struct ifnet *oifp = NULL;
320 	int type = 0, code = 0;		/* for ICMPv6 output statistics only */
321 	int priv = 0;
322 	struct in6_addr *in6a;
323 	va_list ap;
324 
325 	va_start(ap, m);
326 	so = va_arg(ap, struct socket *);
327 	dstsock = va_arg(ap, struct sockaddr_in6 *);
328 	control = va_arg(ap, struct mbuf *);
329 	va_end(ap);
330 
331 	in6p = sotoin6pcb(so);
332 	stickyopt = in6p->in6p_outputopts;
333 
334 	priv = 0;
335 	if (so->so_cred->cr_uid == 0)
336 		priv = 1;
337 	dst = &dstsock->sin6_addr;
338 	if (control) {
339 		if ((error = ip6_setpktoptions(control, &opt,
340 					       stickyopt, priv, 0,
341 					       so->so_proto->pr_protocol))
342 		    != 0) {
343 			goto bad;
344 		}
345 		in6p->in6p_outputopts = &opt;
346 	}
347 
348 	/*
349 	 * For an ICMPv6 packet, we should know its type and code
350 	 * to update statistics.
351 	 */
352 	if (so->so_proto->pr_protocol == IPPROTO_ICMPV6) {
353 		struct icmp6_hdr *icmp6;
354 		if (m->m_len < sizeof(struct icmp6_hdr) &&
355 		    (m = m_pullup(m, sizeof(struct icmp6_hdr))) == NULL) {
356 			error = ENOBUFS;
357 			goto bad;
358 		}
359 		icmp6 = mtod(m, struct icmp6_hdr *);
360 		type = icmp6->icmp6_type;
361 		code = icmp6->icmp6_code;
362 	}
363 
364 	M_PREPEND(m, sizeof(*ip6), M_TRYWAIT);
365 	ip6 = mtod(m, struct ip6_hdr *);
366 
367 	/*
368 	 * Next header might not be ICMP6 but use its pseudo header anyway.
369 	 */
370 	ip6->ip6_dst = *dst;
371 
372 	/*
373 	 * If the scope of the destination is link-local, embed the interface
374 	 * index in the address.
375 	 *
376 	 * XXX advanced-api value overrides sin6_scope_id
377 	 */
378 	if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_dst)) {
379 		struct in6_pktinfo *pi;
380 
381 		/*
382 		 * XXX Boundary check is assumed to be already done in
383 		 * ip6_setpktoptions().
384 		 */
385 		if (in6p->in6p_outputopts &&
386 		    (pi = in6p->in6p_outputopts->ip6po_pktinfo) &&
387 		    pi->ipi6_ifindex) {
388 			ip6->ip6_dst.s6_addr16[1] = htons(pi->ipi6_ifindex);
389 			oifp = ifnet_byindex(pi->ipi6_ifindex);
390 		} else if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) &&
391 			 in6p->in6p_moptions &&
392 			 in6p->in6p_moptions->im6o_multicast_ifp) {
393 			oifp = in6p->in6p_moptions->im6o_multicast_ifp;
394 			ip6->ip6_dst.s6_addr16[1] = htons(oifp->if_index);
395 		} else if (dstsock->sin6_scope_id) {
396 			/* boundary check */
397 			if (dstsock->sin6_scope_id < 0 ||
398 			    if_index < dstsock->sin6_scope_id) {
399 				error = ENXIO;  /* XXX EINVAL? */
400 				goto bad;
401 			}
402 			ip6->ip6_dst.s6_addr16[1] =
403 			    htons(dstsock->sin6_scope_id & 0xffff); /* XXX */
404 		}
405 	}
406 
407 	/*
408 	 * Source address selection.
409 	 */
410 	if ((in6a = in6_selectsrc(dstsock, in6p->in6p_outputopts,
411 	    in6p->in6p_moptions, NULL, &in6p->in6p_laddr, &error)) == 0) {
412 		if (error == 0)
413 			error = EADDRNOTAVAIL;
414 		goto bad;
415 	}
416 	ip6->ip6_src = *in6a;
417 	ip6->ip6_flow = (ip6->ip6_flow & ~IPV6_FLOWINFO_MASK) |
418 		(in6p->in6p_flowinfo & IPV6_FLOWINFO_MASK);
419 	ip6->ip6_vfc = (ip6->ip6_vfc & ~IPV6_VERSION_MASK) |
420 		(IPV6_VERSION & IPV6_VERSION_MASK);
421 	/* ip6_plen will be filled in ip6_output, so not fill it here. */
422 	ip6->ip6_nxt = in6p->in6p_ip6_nxt;
423 	ip6->ip6_hlim = in6_selecthlim(in6p, oifp);
424 
425 	if (so->so_proto->pr_protocol == IPPROTO_ICMPV6 ||
426 	    in6p->in6p_cksum != -1) {
427 		struct mbuf *n;
428 		int off;
429 		u_int16_t *p;
430 
431 		/* compute checksum */
432 		if (so->so_proto->pr_protocol == IPPROTO_ICMPV6)
433 			off = offsetof(struct icmp6_hdr, icmp6_cksum);
434 		else
435 			off = in6p->in6p_cksum;
436 		if (plen < off + 1) {
437 			error = EINVAL;
438 			goto bad;
439 		}
440 		off += sizeof(struct ip6_hdr);
441 
442 		n = m;
443 		while (n && n->m_len <= off) {
444 			off -= n->m_len;
445 			n = n->m_next;
446 		}
447 		if (!n)
448 			goto bad;
449 		p = (u_int16_t *)(mtod(n, caddr_t) + off);
450 		*p = 0;
451 		*p = in6_cksum(m, ip6->ip6_nxt, sizeof(*ip6), plen);
452 	}
453 
454 	error = ip6_output(m, in6p->in6p_outputopts, NULL, 0,
455 			   in6p->in6p_moptions, &oifp, in6p);
456 	if (so->so_proto->pr_protocol == IPPROTO_ICMPV6) {
457 		if (oifp)
458 			icmp6_ifoutstat_inc(oifp, type, code);
459 		icmp6stat.icp6s_outhist[type]++;
460 	} else
461 		rip6stat.rip6s_opackets++;
462 
463 	goto freectl;
464 
465  bad:
466 	if (m)
467 		m_freem(m);
468 
469  freectl:
470 	if (control) {
471 		ip6_clearpktopts(in6p->in6p_outputopts, -1);
472 		in6p->in6p_outputopts = stickyopt;
473 		m_freem(control);
474 	}
475 	return (error);
476 }
477 
478 /*
479  * Raw IPv6 socket option processing.
480  */
481 int
482 rip6_ctloutput(so, sopt)
483 	struct socket *so;
484 	struct sockopt *sopt;
485 {
486 	int error;
487 
488 	if (sopt->sopt_level == IPPROTO_ICMPV6)
489 		/*
490 		 * XXX: is it better to call icmp6_ctloutput() directly
491 		 * from protosw?
492 		 */
493 		return (icmp6_ctloutput(so, sopt));
494 	else if (sopt->sopt_level != IPPROTO_IPV6)
495 		return (EINVAL);
496 
497 	error = 0;
498 
499 	switch (sopt->sopt_dir) {
500 	case SOPT_GET:
501 		switch (sopt->sopt_name) {
502 		case MRT6_INIT:
503 		case MRT6_DONE:
504 		case MRT6_ADD_MIF:
505 		case MRT6_DEL_MIF:
506 		case MRT6_ADD_MFC:
507 		case MRT6_DEL_MFC:
508 		case MRT6_PIM:
509 			error = ip6_mrouter_get(so, sopt);
510 			break;
511 		case IPV6_CHECKSUM:
512 			error = ip6_raw_ctloutput(so, sopt);
513 			break;
514 		default:
515 			error = ip6_ctloutput(so, sopt);
516 			break;
517 		}
518 		break;
519 
520 	case SOPT_SET:
521 		switch (sopt->sopt_name) {
522 		case MRT6_INIT:
523 		case MRT6_DONE:
524 		case MRT6_ADD_MIF:
525 		case MRT6_DEL_MIF:
526 		case MRT6_ADD_MFC:
527 		case MRT6_DEL_MFC:
528 		case MRT6_PIM:
529 			error = ip6_mrouter_set(so, sopt);
530 			break;
531 		case IPV6_CHECKSUM:
532 			error = ip6_raw_ctloutput(so, sopt);
533 			break;
534 		default:
535 			error = ip6_ctloutput(so, sopt);
536 			break;
537 		}
538 		break;
539 	}
540 
541 	return (error);
542 }
543 
544 static int
545 rip6_attach(struct socket *so, int proto, struct thread *td)
546 {
547 	struct inpcb *inp;
548 	int error, s;
549 
550 	inp = sotoinpcb(so);
551 	if (inp)
552 		panic("rip6_attach");
553 	if (td && (error = suser(td)) != 0)
554 		return error;
555 
556 	error = soreserve(so, rip_sendspace, rip_recvspace);
557 	if (error)
558 		return error;
559 	s = splnet();
560 	error = in_pcballoc(so, &ripcbinfo, "raw6inp");
561 	splx(s);
562 	if (error)
563 		return error;
564 	inp = (struct inpcb *)so->so_pcb;
565 	inp->inp_vflag |= INP_IPV6;
566 	inp->in6p_ip6_nxt = (long)proto;
567 	inp->in6p_hops = -1;	/* use kernel default */
568 	inp->in6p_cksum = -1;
569 	MALLOC(inp->in6p_icmp6filt, struct icmp6_filter *,
570 	       sizeof(struct icmp6_filter), M_PCB, M_NOWAIT);
571 	ICMP6_FILTER_SETPASSALL(inp->in6p_icmp6filt);
572 	return 0;
573 }
574 
575 static int
576 rip6_detach(struct socket *so)
577 {
578 	struct inpcb *inp;
579 
580 	inp = sotoinpcb(so);
581 	if (inp == 0)
582 		panic("rip6_detach");
583 	/* xxx: RSVP */
584 	if (so == ip6_mrouter)
585 		ip6_mrouter_done();
586 	if (inp->in6p_icmp6filt) {
587 		FREE(inp->in6p_icmp6filt, M_PCB);
588 		inp->in6p_icmp6filt = NULL;
589 	}
590 	in6_pcbdetach(inp);
591 	return 0;
592 }
593 
594 static int
595 rip6_abort(struct socket *so)
596 {
597 	soisdisconnected(so);
598 	return rip6_detach(so);
599 }
600 
601 static int
602 rip6_disconnect(struct socket *so)
603 {
604 	struct inpcb *inp = sotoinpcb(so);
605 
606 	if ((so->so_state & SS_ISCONNECTED) == 0)
607 		return ENOTCONN;
608 	inp->in6p_faddr = in6addr_any;
609 	return rip6_abort(so);
610 }
611 
612 static int
613 rip6_bind(struct socket *so, struct sockaddr *nam, struct thread *td)
614 {
615 	struct inpcb *inp = sotoinpcb(so);
616 	struct sockaddr_in6 *addr = (struct sockaddr_in6 *)nam;
617 	struct ifaddr *ia = NULL;
618 
619 	if (nam->sa_len != sizeof(*addr))
620 		return EINVAL;
621 	if (TAILQ_EMPTY(&ifnet) || addr->sin6_family != AF_INET6)
622 		return EADDRNOTAVAIL;
623 #ifdef ENABLE_DEFAULT_SCOPE
624 	if (addr->sin6_scope_id == 0) {	/* not change if specified  */
625 		addr->sin6_scope_id = scope6_addr2default(&addr->sin6_addr);
626 	}
627 #endif
628 	if (!IN6_IS_ADDR_UNSPECIFIED(&addr->sin6_addr) &&
629 	    (ia = ifa_ifwithaddr((struct sockaddr *)addr)) == 0)
630 		return EADDRNOTAVAIL;
631 	if (ia &&
632 	    ((struct in6_ifaddr *)ia)->ia6_flags &
633 	    (IN6_IFF_ANYCAST|IN6_IFF_NOTREADY|
634 	     IN6_IFF_DETACHED|IN6_IFF_DEPRECATED)) {
635 		return (EADDRNOTAVAIL);
636 	}
637 	inp->in6p_laddr = addr->sin6_addr;
638 	return 0;
639 }
640 
641 static int
642 rip6_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
643 {
644 	struct inpcb *inp = sotoinpcb(so);
645 	struct sockaddr_in6 *addr = (struct sockaddr_in6 *)nam;
646 	struct in6_addr *in6a = NULL;
647 	int error = 0;
648 #ifdef ENABLE_DEFAULT_SCOPE
649 	struct sockaddr_in6 tmp;
650 #endif
651 
652 	if (nam->sa_len != sizeof(*addr))
653 		return EINVAL;
654 	if (TAILQ_EMPTY(&ifnet))
655 		return EADDRNOTAVAIL;
656 	if (addr->sin6_family != AF_INET6)
657 		return EAFNOSUPPORT;
658 #ifdef ENABLE_DEFAULT_SCOPE
659 	if (addr->sin6_scope_id == 0) {	/* not change if specified  */
660 		/* avoid overwrites */
661 		tmp = *addr;
662 		addr = &tmp;
663 		addr->sin6_scope_id = scope6_addr2default(&addr->sin6_addr);
664 	}
665 #endif
666 	/* Source address selection. XXX: need pcblookup? */
667 	in6a = in6_selectsrc(addr, inp->in6p_outputopts,
668 			     inp->in6p_moptions, NULL,
669 			     &inp->in6p_laddr, &error);
670 	if (in6a == NULL)
671 		return (error ? error : EADDRNOTAVAIL);
672 	inp->in6p_laddr = *in6a;
673 	inp->in6p_faddr = addr->sin6_addr;
674 	soisconnected(so);
675 	return 0;
676 }
677 
678 static int
679 rip6_shutdown(struct socket *so)
680 {
681 	socantsendmore(so);
682 	return 0;
683 }
684 
685 static int
686 rip6_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *nam,
687 	 struct mbuf *control, struct thread *td)
688 {
689 	struct inpcb *inp = sotoinpcb(so);
690 	struct sockaddr_in6 tmp;
691 	struct sockaddr_in6 *dst;
692 
693 	/* always copy sockaddr to avoid overwrites */
694 	if (so->so_state & SS_ISCONNECTED) {
695 		if (nam) {
696 			m_freem(m);
697 			return EISCONN;
698 		}
699 		/* XXX */
700 		bzero(&tmp, sizeof(tmp));
701 		tmp.sin6_family = AF_INET6;
702 		tmp.sin6_len = sizeof(struct sockaddr_in6);
703 		bcopy(&inp->in6p_faddr, &tmp.sin6_addr,
704 		      sizeof(struct in6_addr));
705 		dst = &tmp;
706 	} else {
707 		if (nam == NULL) {
708 			m_freem(m);
709 			return ENOTCONN;
710 		}
711 		tmp = *(struct sockaddr_in6 *)nam;
712 		dst = &tmp;
713 	}
714 #ifdef ENABLE_DEFAULT_SCOPE
715 	if (dst->sin6_scope_id == 0) {	/* not change if specified  */
716 		dst->sin6_scope_id = scope6_addr2default(&dst->sin6_addr);
717 	}
718 #endif
719 	return rip6_output(m, so, dst, control);
720 }
721 
722 struct pr_usrreqs rip6_usrreqs = {
723 	rip6_abort, pru_accept_notsupp, rip6_attach, rip6_bind, rip6_connect,
724 	pru_connect2_notsupp, in6_control, rip6_detach, rip6_disconnect,
725 	pru_listen_notsupp, in6_setpeeraddr, pru_rcvd_notsupp,
726 	pru_rcvoob_notsupp, rip6_send, pru_sense_null, rip6_shutdown,
727 	in6_setsockaddr, sosend, soreceive, sopoll, pru_sosetlabel_null
728 };
729