in6_src.c revision 1.35
1/*	$OpenBSD: in6_src.c,v 1.35 2013/10/23 19:57:50 deraadt Exp $	*/
2/*	$KAME: in6_src.c,v 1.36 2001/02/06 04:08:17 itojun Exp $	*/
3
4/*
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the project nor the names of its contributors
17 *    may be used to endorse or promote products derived from this software
18 *    without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 */
32
33/*
34 * Copyright (c) 1982, 1986, 1991, 1993
35 *	The Regents of the University of California.  All rights reserved.
36 *
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions
39 * are met:
40 * 1. Redistributions of source code must retain the above copyright
41 *    notice, this list of conditions and the following disclaimer.
42 * 2. Redistributions in binary form must reproduce the above copyright
43 *    notice, this list of conditions and the following disclaimer in the
44 *    documentation and/or other materials provided with the distribution.
45 * 3. Neither the name of the University nor the names of its contributors
46 *    may be used to endorse or promote products derived from this software
47 *    without specific prior written permission.
48 *
49 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
50 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
51 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
52 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
53 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
54 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
55 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
58 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59 * SUCH DAMAGE.
60 *
61 *	@(#)in_pcb.c	8.2 (Berkeley) 1/4/94
62 */
63
64#include <sys/param.h>
65#include <sys/systm.h>
66#include <sys/malloc.h>
67#include <sys/mbuf.h>
68#include <sys/protosw.h>
69#include <sys/socket.h>
70#include <sys/socketvar.h>
71#include <sys/ioctl.h>
72#include <sys/errno.h>
73#include <sys/time.h>
74
75#include <net/if.h>
76#include <net/route.h>
77
78#include <netinet/in.h>
79#include <netinet/in_systm.h>
80#include <netinet/ip.h>
81#include <netinet/in_pcb.h>
82#include <netinet6/in6_var.h>
83#include <netinet/ip6.h>
84#include <netinet6/ip6_var.h>
85#include <netinet6/nd6.h>
86
87int in6_selectif(struct sockaddr_in6 *, struct ip6_pktopts *,
88    struct ip6_moptions *, struct route_in6 *, struct ifnet **, u_int);
89int selectroute(struct sockaddr_in6 *, struct ip6_pktopts *,
90    struct ip6_moptions *, struct route_in6 *, struct ifnet **,
91    struct rtentry **, int, u_int);
92
93/*
94 * Return an IPv6 address, which is the most appropriate for a given
95 * destination and user specified options.
96 * If necessary, this function lookups the routing table and returns
97 * an entry to the caller for later use.
98 */
99struct in6_addr *
100in6_selectsrc(struct sockaddr_in6 *dstsock, struct ip6_pktopts *opts,
101    struct ip6_moptions *mopts, struct route_in6 *ro, struct in6_addr *laddr,
102    int *errorp, u_int rtableid)
103{
104	struct ifnet *ifp = NULL;
105	struct in6_addr *dst;
106	struct in6_ifaddr *ia6 = NULL;
107	struct in6_pktinfo *pi = NULL;
108
109	dst = &dstsock->sin6_addr;
110	*errorp = 0;
111
112	/*
113	 * If the source address is explicitly specified by the caller,
114	 * check if the requested source address is indeed a unicast address
115	 * assigned to the node, and can be used as the packet's source
116	 * address.  If everything is okay, use the address as source.
117	 */
118	if (opts && (pi = opts->ip6po_pktinfo) &&
119	    !IN6_IS_ADDR_UNSPECIFIED(&pi->ipi6_addr)) {
120		struct sockaddr_in6 sa6;
121
122		/* get the outgoing interface */
123		if ((*errorp = in6_selectif(dstsock, opts, mopts, ro,
124		    &ifp, rtableid)) != 0)
125			return (NULL);
126
127		bzero(&sa6, sizeof(sa6));
128		sa6.sin6_family = AF_INET6;
129		sa6.sin6_len = sizeof(sa6);
130		sa6.sin6_addr = pi->ipi6_addr;
131
132		if (ifp && IN6_IS_SCOPE_EMBED(&sa6.sin6_addr))
133			sa6.sin6_addr.s6_addr16[1] = htons(ifp->if_index);
134
135		ia6 = ifatoia6(ifa_ifwithaddr(sin6tosa(&sa6), rtableid));
136		if (ia6 == NULL ||
137		    (ia6->ia6_flags & (IN6_IFF_ANYCAST | IN6_IFF_NOTREADY))) {
138			*errorp = EADDRNOTAVAIL;
139			return (NULL);
140		}
141
142		pi->ipi6_addr = sa6.sin6_addr; /* XXX: this overrides pi */
143
144		return (&pi->ipi6_addr);
145	}
146
147	/*
148	 * If the source address is not specified but the socket(if any)
149	 * is already bound, use the bound address.
150	 */
151	if (laddr && !IN6_IS_ADDR_UNSPECIFIED(laddr))
152		return (laddr);
153
154	/*
155	 * If the caller doesn't specify the source address but
156	 * the outgoing interface, use an address associated with
157	 * the interface.
158	 */
159	if (pi && pi->ipi6_ifindex) {
160		ifp = if_get(pi->ipi6_ifindex);
161		if (ifp == NULL) {
162			*errorp = ENXIO; /* XXX: better error? */
163			return (0);
164		}
165		ia6 = in6_ifawithscope(ifp, dst, rtableid);
166		if (ia6 == 0) {
167			*errorp = EADDRNOTAVAIL;
168			return (0);
169		}
170		return (&ia6->ia_addr.sin6_addr);
171	}
172
173	/*
174	 * If the destination address is a link-local unicast address or
175	 * a link/interface-local multicast address, and if the outgoing
176	 * interface is specified by the sin6_scope_id filed, use an address
177	 * associated with the interface.
178	 * XXX: We're now trying to define more specific semantics of
179	 *      sin6_scope_id field, so this part will be rewritten in
180	 *      the near future.
181	 */
182	if ((IN6_IS_ADDR_LINKLOCAL(dst) || IN6_IS_ADDR_MC_LINKLOCAL(dst) ||
183	     IN6_IS_ADDR_MC_INTFACELOCAL(dst)) && dstsock->sin6_scope_id) {
184		ifp = if_get(dstsock->sin6_scope_id);
185		if (ifp == NULL) {
186			*errorp = ENXIO; /* XXX: better error? */
187			return (0);
188		}
189		ia6 = in6_ifawithscope(ifp, dst, rtableid);
190		if (ia6 == 0) {
191			*errorp = EADDRNOTAVAIL;
192			return (0);
193		}
194		return (&ia6->ia_addr.sin6_addr);
195	}
196
197	/*
198	 * If the destination address is a multicast address and
199	 * the outgoing interface for the address is specified
200	 * by the caller, use an address associated with the interface.
201	 * Even if the outgoing interface is not specified, we also
202	 * choose a loopback interface as the outgoing interface.
203	 */
204	if (IN6_IS_ADDR_MULTICAST(dst)) {
205		ifp = mopts ? mopts->im6o_multicast_ifp : NULL;
206
207		if (!ifp && dstsock->sin6_scope_id)
208			ifp = if_get(htons(dstsock->sin6_scope_id));
209
210		if (ifp) {
211			ia6 = in6_ifawithscope(ifp, dst, rtableid);
212			if (ia6 == 0) {
213				*errorp = EADDRNOTAVAIL;
214				return (0);
215			}
216			return (&ia6->ia_addr.sin6_addr);
217		}
218	}
219
220	/*
221	 * If the next hop address for the packet is specified
222	 * by caller, use an address associated with the route
223	 * to the next hop.
224	 */
225	{
226		struct sockaddr_in6 *sin6_next;
227		struct rtentry *rt;
228
229		if (opts && opts->ip6po_nexthop) {
230			sin6_next = satosin6(opts->ip6po_nexthop);
231			rt = nd6_lookup(&sin6_next->sin6_addr, 1, NULL);
232			if (rt) {
233				ia6 = in6_ifawithscope(rt->rt_ifp, dst,
234				    rtableid);
235				if (ia6 == 0)
236					ia6 = ifatoia6(rt->rt_ifa);
237			}
238			if (ia6 == 0) {
239				*errorp = EADDRNOTAVAIL;
240				return (0);
241			}
242			return (&ia6->ia_addr.sin6_addr);
243		}
244	}
245
246	/*
247	 * If route is known or can be allocated now,
248	 * our src addr is taken from the i/f, else punt.
249	 */
250	if (ro) {
251		if (ro->ro_rt && ((ro->ro_rt->rt_flags & RTF_UP) == 0 ||
252		    !IN6_ARE_ADDR_EQUAL(&ro->ro_dst.sin6_addr, dst))) {
253			RTFREE(ro->ro_rt);
254			ro->ro_rt = (struct rtentry *)0;
255		}
256		if (ro->ro_rt == (struct rtentry *)0 ||
257		    ro->ro_rt->rt_ifp == (struct ifnet *)0) {
258			struct sockaddr_in6 *sa6;
259
260			/* No route yet, so try to acquire one */
261			bzero(&ro->ro_dst, sizeof(struct sockaddr_in6));
262			ro->ro_tableid = rtableid;
263			sa6 = &ro->ro_dst;
264			sa6->sin6_family = AF_INET6;
265			sa6->sin6_len = sizeof(struct sockaddr_in6);
266			sa6->sin6_addr = *dst;
267			sa6->sin6_scope_id = dstsock->sin6_scope_id;
268			if (IN6_IS_ADDR_MULTICAST(dst)) {
269				rtalloc((struct route *)ro);
270			} else {
271				rtalloc_mpath((struct route *)ro, NULL);
272			}
273		}
274
275		/*
276		 * in_pcbconnect() checks out IFF_LOOPBACK to skip using
277		 * the address. But we don't know why it does so.
278		 * It is necessary to ensure the scope even for lo0
279		 * so doesn't check out IFF_LOOPBACK.
280		 */
281
282		if (ro->ro_rt) {
283			ia6 = in6_ifawithscope(ro->ro_rt->rt_ifa->ifa_ifp, dst,
284			    rtableid);
285			if (ia6 == 0) /* xxx scope error ?*/
286				ia6 = ifatoia6(ro->ro_rt->rt_ifa);
287		}
288#if 0
289		/*
290		 * xxx The followings are necessary? (kazu)
291		 * I don't think so.
292		 * It's for SO_DONTROUTE option in IPv4.(jinmei)
293		 */
294		if (ia6 == 0) {
295			struct sockaddr_in6 sin6 = {sizeof(sin6), AF_INET6, 0};
296
297			sin6->sin6_addr = *dst;
298
299			ia6 = ifatoia6(ifa_ifwithdstaddr(sin6tosa(&sin6)));
300			if (ia6 == 0)
301				ia6 = ifatoia6(ifa_ifwithnet(sin6tosa(&sin6)));
302			if (ia6 == 0)
303				return (0);
304			return (&ia6->ia_addr.sin6_addr);
305		}
306#endif /* 0 */
307		if (ia6 == 0) {
308			*errorp = EHOSTUNREACH;	/* no route */
309			return (0);
310		}
311		return (&ia6->ia_addr.sin6_addr);
312	}
313
314	*errorp = EADDRNOTAVAIL;
315	return (0);
316}
317
318int
319selectroute(struct sockaddr_in6 *dstsock, struct ip6_pktopts *opts,
320    struct ip6_moptions *mopts, struct route_in6 *ro, struct ifnet **retifp,
321    struct rtentry **retrt, int norouteok, u_int rtableid)
322{
323	int error = 0;
324	struct ifnet *ifp = NULL;
325	struct rtentry *rt = NULL;
326	struct sockaddr_in6 *sin6_next;
327	struct in6_pktinfo *pi = NULL;
328	struct in6_addr *dst;
329
330	dst = &dstsock->sin6_addr;
331
332#if 0
333	if (dstsock->sin6_addr.s6_addr32[0] == 0 &&
334	    dstsock->sin6_addr.s6_addr32[1] == 0 &&
335	    !IN6_IS_ADDR_LOOPBACK(&dstsock->sin6_addr)) {
336		printf("in6_selectroute: strange destination %s\n",
337		       ip6_sprintf(&dstsock->sin6_addr));
338	} else {
339		printf("in6_selectroute: destination = %s%%%d\n",
340		       ip6_sprintf(&dstsock->sin6_addr),
341		       dstsock->sin6_scope_id); /* for debug */
342	}
343#endif
344
345	/* If the caller specify the outgoing interface explicitly, use it. */
346	if (opts && (pi = opts->ip6po_pktinfo) != NULL && pi->ipi6_ifindex) {
347		ifp = if_get(pi->ipi6_ifindex);
348		if (ifp != NULL &&
349		    (norouteok || retrt == NULL ||
350		     IN6_IS_ADDR_MULTICAST(dst))) {
351			/*
352			 * we do not have to check or get the route for
353			 * multicast.
354			 */
355			goto done;
356		} else
357			goto getroute;
358	}
359
360	/*
361	 * If the destination address is a multicast address and the outgoing
362	 * interface for the address is specified by the caller, use it.
363	 */
364	if (IN6_IS_ADDR_MULTICAST(dst) &&
365	    mopts != NULL && (ifp = mopts->im6o_multicast_ifp) != NULL) {
366		goto done; /* we do not need a route for multicast. */
367	}
368
369  getroute:
370	/*
371	 * If the next hop address for the packet is specified by the caller,
372	 * use it as the gateway.
373	 */
374	if (opts && opts->ip6po_nexthop) {
375		struct route_in6 *ron;
376
377		sin6_next = satosin6(opts->ip6po_nexthop);
378
379		/* at this moment, we only support AF_INET6 next hops */
380		if (sin6_next->sin6_family != AF_INET6) {
381			error = EAFNOSUPPORT; /* or should we proceed? */
382			goto done;
383		}
384
385		/*
386		 * If the next hop is an IPv6 address, then the node identified
387		 * by that address must be a neighbor of the sending host.
388		 */
389		ron = &opts->ip6po_nextroute;
390		if ((ron->ro_rt &&
391		    (ron->ro_rt->rt_flags & (RTF_UP | RTF_GATEWAY)) !=
392		    RTF_UP) ||
393		    !IN6_ARE_ADDR_EQUAL(&ron->ro_dst.sin6_addr,
394		    &sin6_next->sin6_addr)) {
395			if (ron->ro_rt) {
396				RTFREE(ron->ro_rt);
397				ron->ro_rt = NULL;
398			}
399			ron->ro_dst = *sin6_next;
400			ron->ro_tableid = rtableid;
401		}
402		if (ron->ro_rt == NULL) {
403			rtalloc((struct route *)ron); /* multi path case? */
404			if (ron->ro_rt == NULL ||
405			    (ron->ro_rt->rt_flags & RTF_GATEWAY)) {
406				if (ron->ro_rt) {
407					RTFREE(ron->ro_rt);
408					ron->ro_rt = NULL;
409				}
410				error = EHOSTUNREACH;
411				goto done;
412			}
413		}
414		if (!nd6_is_addr_neighbor(sin6_next, ron->ro_rt->rt_ifp)) {
415			RTFREE(ron->ro_rt);
416			ron->ro_rt = NULL;
417			error = EHOSTUNREACH;
418			goto done;
419		}
420		rt = ron->ro_rt;
421		ifp = rt->rt_ifp;
422
423		/*
424		 * When cloning is required, try to allocate a route to the
425		 * destination so that the caller can store path MTU
426		 * information.
427		 */
428		goto done;
429	}
430
431	/*
432	 * Use a cached route if it exists and is valid, else try to allocate
433	 * a new one.  Note that we should check the address family of the
434	 * cached destination, in case of sharing the cache with IPv4.
435	 */
436	if (ro) {
437		if (ro->ro_rt &&
438		    (!(ro->ro_rt->rt_flags & RTF_UP) ||
439		     sin6tosa(&ro->ro_dst)->sa_family != AF_INET6 ||
440		     !IN6_ARE_ADDR_EQUAL(&ro->ro_dst.sin6_addr, dst))) {
441			RTFREE(ro->ro_rt);
442			ro->ro_rt = (struct rtentry *)NULL;
443		}
444		if (ro->ro_rt == (struct rtentry *)NULL) {
445			struct sockaddr_in6 *sa6;
446
447			/* No route yet, so try to acquire one */
448			bzero(&ro->ro_dst, sizeof(struct sockaddr_in6));
449			ro->ro_tableid = rtableid;
450			sa6 = &ro->ro_dst;
451			*sa6 = *dstsock;
452			sa6->sin6_scope_id = 0;
453			ro->ro_tableid = rtableid;
454			rtalloc_mpath((struct route *)ro, NULL);
455		}
456
457		/*
458		 * do not care about the result if we have the nexthop
459		 * explicitly specified.
460		 */
461		if (opts && opts->ip6po_nexthop)
462			goto done;
463
464		if (ro->ro_rt) {
465			ifp = ro->ro_rt->rt_ifp;
466
467			if (ifp == NULL) { /* can this really happen? */
468				RTFREE(ro->ro_rt);
469				ro->ro_rt = NULL;
470			}
471		}
472		if (ro->ro_rt == NULL)
473			error = EHOSTUNREACH;
474		rt = ro->ro_rt;
475
476		/*
477		 * Check if the outgoing interface conflicts with
478		 * the interface specified by ipi6_ifindex (if specified).
479		 * Note that loopback interface is always okay.
480		 * (this may happen when we are sending a packet to one of
481		 *  our own addresses.)
482		 */
483		if (opts && opts->ip6po_pktinfo &&
484		    opts->ip6po_pktinfo->ipi6_ifindex) {
485			if (!(ifp->if_flags & IFF_LOOPBACK) &&
486			    ifp->if_index !=
487			    opts->ip6po_pktinfo->ipi6_ifindex) {
488				error = EHOSTUNREACH;
489				goto done;
490			}
491		}
492	}
493
494  done:
495	if (ifp == NULL && rt == NULL) {
496		/*
497		 * This can happen if the caller did not pass a cached route
498		 * nor any other hints.  We treat this case an error.
499		 */
500		error = EHOSTUNREACH;
501	}
502	if (error == EHOSTUNREACH)
503		ip6stat.ip6s_noroute++;
504
505	if (retifp != NULL)
506		*retifp = ifp;
507	if (retrt != NULL)
508		*retrt = rt;	/* rt may be NULL */
509
510	return (error);
511}
512
513int
514in6_selectif(struct sockaddr_in6 *dstsock, struct ip6_pktopts *opts,
515    struct ip6_moptions *mopts, struct route_in6 *ro, struct ifnet **retifp,
516    u_int rtableid)
517{
518	struct rtentry *rt = NULL;
519	int error;
520
521	if ((error = selectroute(dstsock, opts, mopts, ro, retifp,
522	    &rt, 1, rtableid)) != 0)
523		return (error);
524
525	/*
526	 * do not use a rejected or black hole route.
527	 * XXX: this check should be done in the L2 output routine.
528	 * However, if we skipped this check here, we'd see the following
529	 * scenario:
530	 * - install a rejected route for a scoped address prefix
531	 *   (like fe80::/10)
532	 * - send a packet to a destination that matches the scoped prefix,
533	 *   with ambiguity about the scope zone.
534	 * - pick the outgoing interface from the route, and disambiguate the
535	 *   scope zone with the interface.
536	 * - ip6_output() would try to get another route with the "new"
537	 *   destination, which may be valid.
538	 * - we'd see no error on output.
539	 * Although this may not be very harmful, it should still be confusing.
540	 * We thus reject the case here.
541	 */
542	if (rt && (rt->rt_flags & (RTF_REJECT | RTF_BLACKHOLE)))
543		return (rt->rt_flags & RTF_HOST ? EHOSTUNREACH : ENETUNREACH);
544
545	/*
546	 * Adjust the "outgoing" interface.  If we're going to loop the packet
547	 * back to ourselves, the ifp would be the loopback interface.
548	 * However, we'd rather know the interface associated to the
549	 * destination address (which should probably be one of our own
550	 * addresses.)
551	 */
552	if (rt && rt->rt_ifa && rt->rt_ifa->ifa_ifp)
553		*retifp = rt->rt_ifa->ifa_ifp;
554
555	return (0);
556}
557
558int
559in6_selectroute(struct sockaddr_in6 *dstsock, struct ip6_pktopts *opts,
560    struct ip6_moptions *mopts, struct route_in6 *ro, struct ifnet **retifp,
561    struct rtentry **retrt, u_int rtableid)
562{
563
564	return (selectroute(dstsock, opts, mopts, ro, retifp, retrt, 0,
565	    rtableid));
566}
567
568/*
569 * Default hop limit selection. The precedence is as follows:
570 * 1. Hoplimit value specified via ioctl.
571 * 2. (If the outgoing interface is detected) the current
572 *     hop limit of the interface specified by router advertisement.
573 * 3. The system default hoplimit.
574*/
575int
576in6_selecthlim(struct inpcb *in6p, struct ifnet *ifp)
577{
578	if (in6p && in6p->inp_hops >= 0)
579		return (in6p->inp_hops);
580	else if (ifp)
581		return (ND_IFINFO(ifp)->chlim);
582	else
583		return (ip6_defhlim);
584}
585
586/*
587 * generate kernel-internal form (scopeid embedded into s6_addr16[1]).
588 * If the address scope of is link-local, embed the interface index in the
589 * address.  The routine determines our precedence
590 * between advanced API scope/interface specification and basic API
591 * specification.
592 *
593 * this function should be nuked in the future, when we get rid of
594 * embedded scopeid thing.
595 *
596 * XXX actually, it is over-specification to return ifp against sin6_scope_id.
597 * there can be multiple interfaces that belong to a particular scope zone
598 * (in specification, we have 1:N mapping between a scope zone and interfaces).
599 * we may want to change the function to return something other than ifp.
600 */
601int
602in6_embedscope(in6, sin6, in6p, ifpp)
603	struct in6_addr *in6;
604	const struct sockaddr_in6 *sin6;
605	struct inpcb *in6p;
606	struct ifnet **ifpp;
607{
608	struct ifnet *ifp = NULL;
609	u_int32_t scopeid;
610
611	*in6 = sin6->sin6_addr;
612	scopeid = sin6->sin6_scope_id;
613	if (ifpp)
614		*ifpp = NULL;
615
616	/*
617	 * don't try to read sin6->sin6_addr beyond here, since the caller may
618	 * ask us to overwrite existing sockaddr_in6
619	 */
620
621	if (IN6_IS_SCOPE_EMBED(in6)) {
622		struct in6_pktinfo *pi;
623
624		/*
625		 * KAME assumption: link id == interface id
626		 */
627
628		if (in6p && in6p->inp_outputopts6 &&
629		    (pi = in6p->inp_outputopts6->ip6po_pktinfo) &&
630		    pi->ipi6_ifindex) {
631			ifp = if_get(pi->ipi6_ifindex);
632			if (ifp == NULL)
633				return ENXIO;  /* XXX EINVAL? */
634			in6->s6_addr16[1] = htons(pi->ipi6_ifindex);
635		} else if (in6p && IN6_IS_ADDR_MULTICAST(in6) &&
636			   in6p->inp_moptions6 &&
637			   in6p->inp_moptions6->im6o_multicast_ifp) {
638			ifp = in6p->inp_moptions6->im6o_multicast_ifp;
639			in6->s6_addr16[1] = htons(ifp->if_index);
640		} else if (scopeid) {
641			ifp = if_get(scopeid);
642			if (ifp == NULL)
643				return ENXIO;  /* XXX EINVAL? */
644			/*XXX assignment to 16bit from 32bit variable */
645			in6->s6_addr16[1] = htons(scopeid & 0xffff);
646		}
647
648		if (ifpp)
649			*ifpp = ifp;
650	}
651
652	return 0;
653}
654
655/*
656 * generate standard sockaddr_in6 from embedded form.
657 * touches sin6_addr and sin6_scope_id only.
658 *
659 * this function should be nuked in the future, when we get rid of
660 * embedded scopeid thing.
661 */
662int
663in6_recoverscope(struct sockaddr_in6 *sin6, const struct in6_addr *in6,
664    struct ifnet *ifp)
665{
666	u_int32_t scopeid;
667
668	sin6->sin6_addr = *in6;
669
670	/*
671	 * don't try to read *in6 beyond here, since the caller may
672	 * ask us to overwrite existing sockaddr_in6
673	 */
674
675	sin6->sin6_scope_id = 0;
676	if (IN6_IS_SCOPE_EMBED(in6)) {
677		/*
678		 * KAME assumption: link id == interface id
679		 */
680		scopeid = ntohs(sin6->sin6_addr.s6_addr16[1]);
681		if (scopeid) {
682			/* sanity check */
683			if (if_get(scopeid) == NULL)
684				return ENXIO;
685			if (ifp && ifp->if_index != scopeid)
686				return ENXIO;
687			sin6->sin6_addr.s6_addr16[1] = 0;
688			sin6->sin6_scope_id = scopeid;
689		}
690	}
691
692	return 0;
693}
694
695/*
696 * just clear the embedded scope identifer.
697 */
698void
699in6_clearscope(struct in6_addr *addr)
700{
701	if (IN6_IS_SCOPE_EMBED(addr))
702		addr->s6_addr16[1] = 0;
703}
704