Home | History | Annotate | Line # | Download | only in netinet6
in6_src.c revision 1.55.2.5
      1 /*	$NetBSD: in6_src.c,v 1.55.2.5 2016/05/29 08:44:39 skrll Exp $	*/
      2 /*	$KAME: in6_src.c,v 1.159 2005/10/19 01:40:32 t-momose 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. All advertising materials mentioning features or use of this software
     46  *    must display the following acknowledgement:
     47  *	This product includes software developed by the University of
     48  *	California, Berkeley and its contributors.
     49  * 4. Neither the name of the University nor the names of its contributors
     50  *    may be used to endorse or promote products derived from this software
     51  *    without specific prior written permission.
     52  *
     53  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     54  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     55  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     56  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     57  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     58  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     59  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     60  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     61  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     62  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     63  * SUCH DAMAGE.
     64  *
     65  *	@(#)in_pcb.c	8.2 (Berkeley) 1/4/94
     66  */
     67 
     68 #include <sys/cdefs.h>
     69 __KERNEL_RCSID(0, "$NetBSD: in6_src.c,v 1.55.2.5 2016/05/29 08:44:39 skrll Exp $");
     70 
     71 #ifdef _KERNEL_OPT
     72 #include "opt_inet.h"
     73 #endif
     74 
     75 #include <sys/param.h>
     76 #include <sys/systm.h>
     77 #include <sys/malloc.h>
     78 #include <sys/mbuf.h>
     79 #include <sys/protosw.h>
     80 #include <sys/socket.h>
     81 #include <sys/socketvar.h>
     82 #include <sys/ioctl.h>
     83 #include <sys/errno.h>
     84 #include <sys/time.h>
     85 #include <sys/kernel.h>
     86 #include <sys/proc.h>
     87 #include <sys/kauth.h>
     88 
     89 #include <net/if.h>
     90 #include <net/if_types.h>
     91 #include <net/route.h>
     92 
     93 #include <netinet/in.h>
     94 #include <netinet/in_var.h>
     95 #include <netinet/in_systm.h>
     96 #include <netinet/ip.h>
     97 #include <netinet/in_pcb.h>
     98 #include <netinet/portalgo.h>
     99 #include <netinet6/in6_var.h>
    100 #include <netinet/ip6.h>
    101 #include <netinet6/in6_pcb.h>
    102 #include <netinet6/ip6_var.h>
    103 #include <netinet6/ip6_private.h>
    104 #include <netinet6/nd6.h>
    105 #include <netinet6/scope6_var.h>
    106 
    107 #include <net/net_osdep.h>
    108 
    109 #ifdef MIP6
    110 #include <netinet6/mip6.h>
    111 #include <netinet6/mip6_var.h>
    112 #include "mip.h"
    113 #if NMIP > 0
    114 #include <net/if_mip.h>
    115 #endif /* NMIP > 0 */
    116 #endif /* MIP6 */
    117 
    118 #include <netinet/tcp_vtw.h>
    119 
    120 #define ADDR_LABEL_NOTAPP (-1)
    121 struct in6_addrpolicy defaultaddrpolicy;
    122 
    123 int ip6_prefer_tempaddr = 0;
    124 
    125 static int selectroute(struct sockaddr_in6 *, struct ip6_pktopts *,
    126 	struct ip6_moptions *, struct route *, struct ifnet **,
    127 	struct rtentry **, int, int);
    128 static int in6_selectif(struct sockaddr_in6 *, struct ip6_pktopts *,
    129 	struct ip6_moptions *, struct route *, struct ifnet **);
    130 
    131 static struct in6_addrpolicy *lookup_addrsel_policy(struct sockaddr_in6 *);
    132 
    133 static void init_policy_queue(void);
    134 static int add_addrsel_policyent(struct in6_addrpolicy *);
    135 static int delete_addrsel_policyent(struct in6_addrpolicy *);
    136 static int walk_addrsel_policy(int (*)(struct in6_addrpolicy *, void *),
    137 				    void *);
    138 static int dump_addrsel_policyent(struct in6_addrpolicy *, void *);
    139 static struct in6_addrpolicy *match_addrsel_policy(struct sockaddr_in6 *);
    140 
    141 /*
    142  * Return an IPv6 address, which is the most appropriate for a given
    143  * destination and user specified options.
    144  * If necessary, this function lookups the routing table and returns
    145  * an entry to the caller for later use.
    146  */
    147 #if 0				/* diabled ad-hoc */
    148 #define REPLACE(r) do {\
    149 	if ((r) < sizeof(ip6stat.ip6s_sources_rule) / \
    150 		sizeof(ip6stat.ip6s_sources_rule[0])) /* check for safety */ \
    151 		ip6stat.ip6s_sources_rule[(r)]++; \
    152 	/* printf("in6_selectsrc: replace %s with %s by %d\n", ia_best ? ip6_sprintf(&ia_best->ia_addr.sin6_addr) : "none", ip6_sprintf(&ia->ia_addr.sin6_addr), (r)); */ \
    153 	goto replace; \
    154 } while(0)
    155 #define NEXT(r) do {\
    156 	if ((r) < sizeof(ip6stat.ip6s_sources_rule) / \
    157 		sizeof(ip6stat.ip6s_sources_rule[0])) /* check for safety */ \
    158 		ip6stat.ip6s_sources_rule[(r)]++; \
    159 	/* printf("in6_selectsrc: keep %s against %s by %d\n", ia_best ? ip6_sprintf(&ia_best->ia_addr.sin6_addr) : "none", ip6_sprintf(&ia->ia_addr.sin6_addr), (r)); */ \
    160 	goto next; 		/* XXX: we can't use 'continue' here */ \
    161 } while(0)
    162 #define BREAK(r) do { \
    163 	if ((r) < sizeof(ip6stat.ip6s_sources_rule) / \
    164 		sizeof(ip6stat.ip6s_sources_rule[0])) /* check for safety */ \
    165 		ip6stat.ip6s_sources_rule[(r)]++; \
    166 	goto out; 		/* XXX: we can't use 'break' here */ \
    167 } while(0)
    168 #else
    169 #define REPLACE(r) goto replace
    170 #define NEXT(r) goto next
    171 #define BREAK(r) goto out
    172 #endif
    173 
    174 struct in6_addr *
    175 in6_selectsrc(struct sockaddr_in6 *dstsock, struct ip6_pktopts *opts,
    176 	struct ip6_moptions *mopts, struct route *ro, struct in6_addr *laddr,
    177 	struct ifnet **ifpp, int *errorp)
    178 {
    179 	struct in6_addr dst;
    180 	struct ifnet *ifp = NULL;
    181 	struct in6_ifaddr *ia = NULL, *ia_best = NULL;
    182 	struct in6_pktinfo *pi = NULL;
    183 	int dst_scope = -1, best_scope = -1, best_matchlen = -1;
    184 	struct in6_addrpolicy *dst_policy = NULL, *best_policy = NULL;
    185 	u_int32_t odstzone;
    186 	int error;
    187 	int prefer_tempaddr;
    188 #if defined(MIP6) && NMIP > 0
    189 	u_int8_t ip6po_usecoa = 0;
    190 #endif /* MIP6 && NMIP > 0 */
    191 
    192 	dst = dstsock->sin6_addr; /* make a copy for local operation */
    193 	*errorp = 0;
    194 	if (ifpp)
    195 		*ifpp = NULL;
    196 
    197 	/*
    198 	 * Try to determine the outgoing interface for the given destination.
    199 	 * We do this regardless of whether the socket is bound, since the
    200 	 * caller may need this information as a side effect of the call
    201 	 * to this function (e.g., for identifying the appropriate scope zone
    202 	 * ID).
    203 	 */
    204 	error = in6_selectif(dstsock, opts, mopts, ro, &ifp);
    205 	if (ifpp)
    206 		*ifpp = ifp;
    207 
    208 	/*
    209 	 * If the source address is explicitly specified by the caller,
    210 	 * check if the requested source address is indeed a unicast address
    211 	 * assigned to the node, and can be used as the packet's source
    212 	 * address.  If everything is okay, use the address as source.
    213 	 */
    214 	if (opts && (pi = opts->ip6po_pktinfo) &&
    215 	    !IN6_IS_ADDR_UNSPECIFIED(&pi->ipi6_addr)) {
    216 		struct sockaddr_in6 srcsock;
    217 		struct in6_ifaddr *ia6;
    218 
    219 		/*
    220 		 * Determine the appropriate zone id of the source based on
    221 		 * the zone of the destination and the outgoing interface.
    222 		 * If the specified address is ambiguous wrt the scope zone,
    223 		 * the interface must be specified; otherwise, ifa_ifwithaddr()
    224 		 * will fail matching the address.
    225 		 */
    226 		memset(&srcsock, 0, sizeof(srcsock));
    227 		srcsock.sin6_family = AF_INET6;
    228 		srcsock.sin6_len = sizeof(srcsock);
    229 		srcsock.sin6_addr = pi->ipi6_addr;
    230 		if (ifp) {
    231 			*errorp = in6_setscope(&srcsock.sin6_addr, ifp, NULL);
    232 			if (*errorp != 0)
    233 				return (NULL);
    234 		}
    235 
    236 		ia6 = (struct in6_ifaddr *)ifa_ifwithaddr((struct sockaddr *)(&srcsock));
    237 		if (ia6 == NULL ||
    238 		    (ia6->ia6_flags & (IN6_IFF_ANYCAST | IN6_IFF_NOTREADY))) {
    239 			*errorp = EADDRNOTAVAIL;
    240 			return (NULL);
    241 		}
    242 		pi->ipi6_addr = srcsock.sin6_addr; /* XXX: this overrides pi */
    243 		if (ifpp)
    244 			*ifpp = ifp;
    245 		return (&ia6->ia_addr.sin6_addr);
    246 	}
    247 
    248 	/*
    249 	 * If the socket has already bound the source, just use it.  We don't
    250 	 * care at the moment whether in6_selectif() succeeded above, even
    251 	 * though it would eventually cause an error.
    252 	 */
    253 	if (laddr && !IN6_IS_ADDR_UNSPECIFIED(laddr))
    254 		return (laddr);
    255 
    256 	/*
    257 	 * The outgoing interface is crucial in the general selection procedure
    258 	 * below.  If it is not known at this point, we fail.
    259 	 */
    260 	if (ifp == NULL) {
    261 		*errorp = error;
    262 		return (NULL);
    263 	}
    264 
    265 	/*
    266 	 * If the address is not yet determined, choose the best one based on
    267 	 * the outgoing interface and the destination address.
    268 	 */
    269 
    270 #if defined(MIP6) && NMIP > 0
    271 	/*
    272 	 * a caller can specify IP6PO_USECOA to not to use a home
    273 	 * address.  for example, the case that the neighbour
    274 	 * unreachability detection to the global address.
    275 	 */
    276 	if (opts != NULL &&
    277 	    (opts->ip6po_flags & IP6PO_USECOA) != 0) {
    278 		ip6po_usecoa = 1;
    279 	}
    280 #endif /* MIP6 && NMIP > 0 */
    281 
    282 	*errorp = in6_setscope(&dst, ifp, &odstzone);
    283 	if (*errorp != 0)
    284 		return (NULL);
    285 
    286 	for (ia = in6_ifaddr; ia; ia = ia->ia_next) {
    287 		int new_scope = -1, new_matchlen = -1;
    288 		struct in6_addrpolicy *new_policy = NULL;
    289 		u_int32_t srczone, osrczone, dstzone;
    290 		struct in6_addr src;
    291 		struct ifnet *ifp1 = ia->ia_ifp;
    292 
    293 		/*
    294 		 * We'll never take an address that breaks the scope zone
    295 		 * of the destination.  We also skip an address if its zone
    296 		 * does not contain the outgoing interface.
    297 		 * XXX: we should probably use sin6_scope_id here.
    298 		 */
    299 		if (in6_setscope(&dst, ifp1, &dstzone) ||
    300 		    odstzone != dstzone) {
    301 			continue;
    302 		}
    303 		src = ia->ia_addr.sin6_addr;
    304 		if (in6_setscope(&src, ifp, &osrczone) ||
    305 		    in6_setscope(&src, ifp1, &srczone) ||
    306 		    osrczone != srczone) {
    307 			continue;
    308 		}
    309 
    310 		/* avoid unusable addresses */
    311 		if ((ia->ia6_flags &
    312 		     (IN6_IFF_NOTREADY | IN6_IFF_ANYCAST | IN6_IFF_DETACHED))) {
    313 				continue;
    314 		}
    315 		if (!ip6_use_deprecated && IFA6_IS_DEPRECATED(ia))
    316 			continue;
    317 
    318 #if defined(MIP6) && NMIP > 0
    319 		/* avoid unusable home addresses. */
    320 		if ((ia->ia6_flags & IN6_IFF_HOME) &&
    321 		    !mip6_ifa6_is_addr_valid_hoa(ia))
    322 			continue;
    323 #endif /* MIP6 && NMIP > 0 */
    324 
    325 		/* Rule 1: Prefer same address */
    326 		if (IN6_ARE_ADDR_EQUAL(&dst, &ia->ia_addr.sin6_addr)) {
    327 			ia_best = ia;
    328 			BREAK(1); /* there should be no better candidate */
    329 		}
    330 
    331 		if (ia_best == NULL)
    332 			REPLACE(0);
    333 
    334 		/* Rule 2: Prefer appropriate scope */
    335 		if (dst_scope < 0)
    336 			dst_scope = in6_addrscope(&dst);
    337 		new_scope = in6_addrscope(&ia->ia_addr.sin6_addr);
    338 		if (IN6_ARE_SCOPE_CMP(best_scope, new_scope) < 0) {
    339 			if (IN6_ARE_SCOPE_CMP(best_scope, dst_scope) < 0)
    340 				REPLACE(2);
    341 			NEXT(2);
    342 		} else if (IN6_ARE_SCOPE_CMP(new_scope, best_scope) < 0) {
    343 			if (IN6_ARE_SCOPE_CMP(new_scope, dst_scope) < 0)
    344 				NEXT(2);
    345 			REPLACE(2);
    346 		}
    347 
    348 		/*
    349 		 * Rule 3: Avoid deprecated addresses.  Note that the case of
    350 		 * !ip6_use_deprecated is already rejected above.
    351 		 */
    352 		if (!IFA6_IS_DEPRECATED(ia_best) && IFA6_IS_DEPRECATED(ia))
    353 			NEXT(3);
    354 		if (IFA6_IS_DEPRECATED(ia_best) && !IFA6_IS_DEPRECATED(ia))
    355 			REPLACE(3);
    356 
    357 		/* Rule 4: Prefer home addresses */
    358 #if defined(MIP6) && NMIP > 0
    359 		if (!MIP6_IS_MN)
    360 			goto skip_rule4;
    361 
    362 		if ((ia_best->ia6_flags & IN6_IFF_HOME) == 0 &&
    363 		    (ia->ia6_flags & IN6_IFF_HOME) == 0) {
    364 			/* both address are not home addresses. */
    365 			goto skip_rule4;
    366 		}
    367 
    368 		/*
    369 		 * If SA is simultaneously a home address and care-of
    370 		 * address and SB is not, then prefer SA. Similarly,
    371 		 * if SB is simultaneously a home address and care-of
    372 		 * address and SA is not, then prefer SB.
    373 		 */
    374 		if (((ia_best->ia6_flags & IN6_IFF_HOME) != 0 &&
    375 			ia_best->ia_ifp->if_type != IFT_MIP)
    376 		    &&
    377 		    ((ia->ia6_flags & IN6_IFF_HOME) != 0 &&
    378 			ia->ia_ifp->if_type == IFT_MIP))
    379 			NEXT(4);
    380 		if (((ia_best->ia6_flags & IN6_IFF_HOME) != 0 &&
    381 			ia_best->ia_ifp->if_type == IFT_MIP)
    382 		    &&
    383 		    ((ia->ia6_flags & IN6_IFF_HOME) != 0 &&
    384 			ia->ia_ifp->if_type != IFT_MIP))
    385 			REPLACE(4);
    386 		if (ip6po_usecoa == 0) {
    387 			/*
    388 			 * If SA is just a home address and SB is just
    389 			 * a care-of address, then prefer
    390 			 * SA. Similarly, if SB is just a home address
    391 			 * and SA is just a care-of address, then
    392 			 * prefer SB.
    393 			 */
    394 			if ((ia_best->ia6_flags & IN6_IFF_HOME) != 0 &&
    395 			    (ia->ia6_flags & IN6_IFF_HOME) == 0) {
    396 				NEXT(4);
    397 			}
    398 			if ((ia_best->ia6_flags & IN6_IFF_HOME) == 0 &&
    399 			    (ia->ia6_flags & IN6_IFF_HOME) != 0) {
    400 				REPLACE(4);
    401 			}
    402 		} else {
    403 			/*
    404 			 * a sender don't want to use a home address
    405 			 * because:
    406 			 *
    407 			 * 1) we cannot use.  (ex. NS or NA to global
    408 			 * addresses.)
    409 			 *
    410 			 * 2) a user specified not to use.
    411 			 * (ex. mip6control -u)
    412 			 */
    413 			if ((ia_best->ia6_flags & IN6_IFF_HOME) == 0 &&
    414 			    (ia->ia6_flags & IN6_IFF_HOME) != 0) {
    415 				/* XXX breaks stat */
    416 				NEXT(0);
    417 			}
    418 			if ((ia_best->ia6_flags & IN6_IFF_HOME) != 0 &&
    419 			    (ia->ia6_flags & IN6_IFF_HOME) == 0) {
    420 				/* XXX breaks stat */
    421 				REPLACE(0);
    422 			}
    423 		}
    424 	skip_rule4:
    425 #endif /* MIP6 && NMIP > 0 */
    426 
    427 		/* Rule 5: Prefer outgoing interface */
    428 		if (ia_best->ia_ifp == ifp && ia->ia_ifp != ifp)
    429 			NEXT(5);
    430 		if (ia_best->ia_ifp != ifp && ia->ia_ifp == ifp)
    431 			REPLACE(5);
    432 
    433 		/*
    434 		 * Rule 6: Prefer matching label
    435 		 * Note that best_policy should be non-NULL here.
    436 		 */
    437 		if (dst_policy == NULL)
    438 			dst_policy = lookup_addrsel_policy(dstsock);
    439 		if (dst_policy->label != ADDR_LABEL_NOTAPP) {
    440 			new_policy = lookup_addrsel_policy(&ia->ia_addr);
    441 			if (dst_policy->label == best_policy->label &&
    442 			    dst_policy->label != new_policy->label)
    443 				NEXT(6);
    444 			if (dst_policy->label != best_policy->label &&
    445 			    dst_policy->label == new_policy->label)
    446 				REPLACE(6);
    447 		}
    448 
    449 		/*
    450 		 * Rule 7: Prefer public addresses.
    451 		 * We allow users to reverse the logic by configuring
    452 		 * a sysctl variable, so that privacy conscious users can
    453 		 * always prefer temporary addresses.
    454 		 */
    455 		if (opts == NULL ||
    456 		    opts->ip6po_prefer_tempaddr == IP6PO_TEMPADDR_SYSTEM) {
    457 			prefer_tempaddr = ip6_prefer_tempaddr;
    458 		} else if (opts->ip6po_prefer_tempaddr ==
    459 		    IP6PO_TEMPADDR_NOTPREFER) {
    460 			prefer_tempaddr = 0;
    461 		} else
    462 			prefer_tempaddr = 1;
    463 		if (!(ia_best->ia6_flags & IN6_IFF_TEMPORARY) &&
    464 		    (ia->ia6_flags & IN6_IFF_TEMPORARY)) {
    465 			if (prefer_tempaddr)
    466 				REPLACE(7);
    467 			else
    468 				NEXT(7);
    469 		}
    470 		if ((ia_best->ia6_flags & IN6_IFF_TEMPORARY) &&
    471 		    !(ia->ia6_flags & IN6_IFF_TEMPORARY)) {
    472 			if (prefer_tempaddr)
    473 				NEXT(7);
    474 			else
    475 				REPLACE(7);
    476 		}
    477 
    478 		/*
    479 		 * Rule 8: prefer addresses on alive interfaces.
    480 		 * This is a KAME specific rule.
    481 		 */
    482 		if ((ia_best->ia_ifp->if_flags & IFF_UP) &&
    483 		    !(ia->ia_ifp->if_flags & IFF_UP))
    484 			NEXT(8);
    485 		if (!(ia_best->ia_ifp->if_flags & IFF_UP) &&
    486 		    (ia->ia_ifp->if_flags & IFF_UP))
    487 			REPLACE(8);
    488 
    489 		/*
    490 		 * Rule 9: prefer addresses on "preferred" interfaces.
    491 		 * This is a KAME specific rule.
    492 		 */
    493 #ifdef notyet			/* until introducing address selection */
    494 #define NDI_BEST ND_IFINFO(ia_best->ia_ifp)
    495 #define NDI_NEW  ND_IFINFO(ia->ia_ifp)
    496 		if ((NDI_BEST->flags & ND6_IFF_PREFER_SOURCE) &&
    497 		    !(NDI_NEW->flags & ND6_IFF_PREFER_SOURCE))
    498 			NEXT(9);
    499 		if (!(NDI_BEST->flags & ND6_IFF_PREFER_SOURCE) &&
    500 		    (NDI_NEW->flags & ND6_IFF_PREFER_SOURCE))
    501 			REPLACE(9);
    502 #undef NDI_BEST
    503 #undef NDI_NEW
    504 #endif
    505 
    506 		/*
    507 		 * Rule 14: Use longest matching prefix.
    508 		 * Note: in the address selection draft, this rule is
    509 		 * documented as "Rule 8".  However, since it is also
    510 		 * documented that this rule can be overridden, we assign
    511 		 * a large number so that it is easy to assign smaller numbers
    512 		 * to more preferred rules.
    513 		 */
    514 		new_matchlen = in6_matchlen(&ia->ia_addr.sin6_addr, &dst);
    515 		if (best_matchlen < new_matchlen)
    516 			REPLACE(14);
    517 		if (new_matchlen < best_matchlen)
    518 			NEXT(14);
    519 
    520 		/* Rule 15 is reserved. */
    521 
    522 		/*
    523 		 * Last resort: just keep the current candidate.
    524 		 * Or, do we need more rules?
    525 		 */
    526 		continue;
    527 
    528 	  replace:
    529 		ia_best = ia;
    530 		best_scope = (new_scope >= 0 ? new_scope :
    531 			      in6_addrscope(&ia_best->ia_addr.sin6_addr));
    532 		best_policy = (new_policy ? new_policy :
    533 			       lookup_addrsel_policy(&ia_best->ia_addr));
    534 		best_matchlen = (new_matchlen >= 0 ? new_matchlen :
    535 				 in6_matchlen(&ia_best->ia_addr.sin6_addr,
    536 					      &dst));
    537 
    538 	  next:
    539 		continue;
    540 
    541 	  out:
    542 		break;
    543 	}
    544 
    545 	if ((ia = ia_best) == NULL) {
    546 		*errorp = EADDRNOTAVAIL;
    547 		return (NULL);
    548 	}
    549 
    550 	return (&ia->ia_addr.sin6_addr);
    551 }
    552 #undef REPLACE
    553 #undef BREAK
    554 #undef NEXT
    555 
    556 static int
    557 selectroute(struct sockaddr_in6 *dstsock, struct ip6_pktopts *opts,
    558 	struct ip6_moptions *mopts, struct route *ro, struct ifnet **retifp,
    559 	struct rtentry **retrt, int clone, int norouteok)
    560 {
    561 	int error = 0;
    562 	struct ifnet *ifp = NULL;
    563 	struct rtentry *rt = NULL;
    564 	struct sockaddr_in6 *sin6_next;
    565 	struct in6_pktinfo *pi = NULL;
    566 	struct in6_addr *dst;
    567 
    568 	dst = &dstsock->sin6_addr;
    569 
    570 #if 0
    571 	if (dstsock->sin6_addr.s6_addr32[0] == 0 &&
    572 	    dstsock->sin6_addr.s6_addr32[1] == 0 &&
    573 	    !IN6_IS_ADDR_LOOPBACK(&dstsock->sin6_addr)) {
    574 		printf("in6_selectroute: strange destination %s\n",
    575 		       ip6_sprintf(&dstsock->sin6_addr));
    576 	} else {
    577 		printf("in6_selectroute: destination = %s%%%d\n",
    578 		       ip6_sprintf(&dstsock->sin6_addr),
    579 		       dstsock->sin6_scope_id); /* for debug */
    580 	}
    581 #endif
    582 
    583 	/* If the caller specify the outgoing interface explicitly, use it. */
    584 	if (opts && (pi = opts->ip6po_pktinfo) != NULL && pi->ipi6_ifindex) {
    585 		/* XXX boundary check is assumed to be already done. */
    586 		ifp = if_byindex(pi->ipi6_ifindex);
    587 		if (ifp != NULL &&
    588 		    (norouteok || retrt == NULL ||
    589 		    IN6_IS_ADDR_MULTICAST(dst))) {
    590 			/*
    591 			 * we do not have to check or get the route for
    592 			 * multicast.
    593 			 */
    594 			goto done;
    595 		} else
    596 			goto getroute;
    597 	}
    598 
    599 	/*
    600 	 * If the destination address is a multicast address and the outgoing
    601 	 * interface for the address is specified by the caller, use it.
    602 	 */
    603 	if (IN6_IS_ADDR_MULTICAST(dst) &&
    604 	    mopts != NULL && (ifp = mopts->im6o_multicast_ifp) != NULL) {
    605 		goto done; /* we do not need a route for multicast. */
    606 	}
    607 
    608   getroute:
    609 	/*
    610 	 * If the next hop address for the packet is specified by the caller,
    611 	 * use it as the gateway.
    612 	 */
    613 	if (opts && opts->ip6po_nexthop) {
    614 		struct route *ron;
    615 
    616 		sin6_next = satosin6(opts->ip6po_nexthop);
    617 
    618 		/* at this moment, we only support AF_INET6 next hops */
    619 		if (sin6_next->sin6_family != AF_INET6) {
    620 			error = EAFNOSUPPORT; /* or should we proceed? */
    621 			goto done;
    622 		}
    623 
    624 		/*
    625 		 * If the next hop is an IPv6 address, then the node identified
    626 		 * by that address must be a neighbor of the sending host.
    627 		 */
    628 		ron = &opts->ip6po_nextroute;
    629 		if ((rt = rtcache_lookup(ron, sin6tosa(sin6_next))) == NULL ||
    630 		    (rt->rt_flags & RTF_GATEWAY) != 0 ||
    631 		    !nd6_is_addr_neighbor(sin6_next, rt->rt_ifp)) {
    632 			rtcache_free(ron);
    633 			error = EHOSTUNREACH;
    634 			goto done;
    635 		}
    636 		ifp = rt->rt_ifp;
    637 
    638 		/*
    639 		 * When cloning is required, try to allocate a route to the
    640 		 * destination so that the caller can store path MTU
    641 		 * information.
    642 		 */
    643 		if (!clone)
    644 			goto done;
    645 	}
    646 
    647 	/*
    648 	 * Use a cached route if it exists and is valid, else try to allocate
    649 	 * a new one.  Note that we should check the address family of the
    650 	 * cached destination, in case of sharing the cache with IPv4.
    651 	 */
    652 	if (ro != NULL) {
    653 		union {
    654 			struct sockaddr		dst;
    655 			struct sockaddr_in6	dst6;
    656 		} u;
    657 
    658 		/* No route yet, so try to acquire one */
    659 		u.dst6 = *dstsock;
    660 		u.dst6.sin6_scope_id = 0;
    661 		rt = rtcache_lookup1(ro, &u.dst, clone);
    662 
    663 		/*
    664 		 * do not care about the result if we have the nexthop
    665 		 * explicitly specified.
    666 		 */
    667 		if (opts && opts->ip6po_nexthop)
    668 			goto done;
    669 
    670 		if (rt == NULL)
    671 			error = EHOSTUNREACH;
    672 		else
    673 			ifp = rt->rt_ifp;
    674 
    675 		/*
    676 		 * Check if the outgoing interface conflicts with
    677 		 * the interface specified by ipi6_ifindex (if specified).
    678 		 * Note that loopback interface is always okay.
    679 		 * (this may happen when we are sending a packet to one of
    680 		 *  our own addresses.)
    681 		 */
    682 		if (opts && opts->ip6po_pktinfo &&
    683 		    opts->ip6po_pktinfo->ipi6_ifindex) {
    684 			if (!(ifp->if_flags & IFF_LOOPBACK) &&
    685 			    ifp->if_index !=
    686 			    opts->ip6po_pktinfo->ipi6_ifindex) {
    687 				error = EHOSTUNREACH;
    688 				goto done;
    689 			}
    690 		}
    691 	}
    692 
    693   done:
    694 	if (ifp == NULL && rt == NULL) {
    695 		/*
    696 		 * This can happen if the caller did not pass a cached route
    697 		 * nor any other hints.  We treat this case an error.
    698 		 */
    699 		error = EHOSTUNREACH;
    700 	}
    701 	if (error == EHOSTUNREACH)
    702 		IP6_STATINC(IP6_STAT_NOROUTE);
    703 
    704 	if (retifp != NULL)
    705 		*retifp = ifp;
    706 	if (retrt != NULL)
    707 		*retrt = rt;	/* rt may be NULL */
    708 
    709 	return (error);
    710 }
    711 
    712 static int
    713 in6_selectif(struct sockaddr_in6 *dstsock, struct ip6_pktopts *opts,
    714 	struct ip6_moptions *mopts, struct route *ro, struct ifnet **retifp)
    715 {
    716 	int error, clone;
    717 	struct rtentry *rt = NULL;
    718 
    719 	clone = IN6_IS_ADDR_MULTICAST(&dstsock->sin6_addr) ? 0 : 1;
    720 	if ((error = selectroute(dstsock, opts, mopts, ro, retifp,
    721 	    &rt, clone, 1)) != 0) {
    722 		return (error);
    723 	}
    724 
    725 	/*
    726 	 * do not use a rejected or black hole route.
    727 	 * XXX: this check should be done in the L2 output routine.
    728 	 * However, if we skipped this check here, we'd see the following
    729 	 * scenario:
    730 	 * - install a rejected route for a scoped address prefix
    731 	 *   (like fe80::/10)
    732 	 * - send a packet to a destination that matches the scoped prefix,
    733 	 *   with ambiguity about the scope zone.
    734 	 * - pick the outgoing interface from the route, and disambiguate the
    735 	 *   scope zone with the interface.
    736 	 * - ip6_output() would try to get another route with the "new"
    737 	 *   destination, which may be valid.
    738 	 * - we'd see no error on output.
    739 	 * Although this may not be very harmful, it should still be confusing.
    740 	 * We thus reject the case here.
    741 	 */
    742 	if (rt && (rt->rt_flags & (RTF_REJECT | RTF_BLACKHOLE)))
    743 		return (rt->rt_flags & RTF_HOST ? EHOSTUNREACH : ENETUNREACH);
    744 
    745 	/*
    746 	 * Adjust the "outgoing" interface.  If we're going to loop the packet
    747 	 * back to ourselves, the ifp would be the loopback interface.
    748 	 * However, we'd rather know the interface associated to the
    749 	 * destination address (which should probably be one of our own
    750 	 * addresses.)
    751 	 */
    752 	if (rt && rt->rt_ifa && rt->rt_ifa->ifa_ifp)
    753 		*retifp = rt->rt_ifa->ifa_ifp;
    754 
    755 	return (0);
    756 }
    757 
    758 /*
    759  * close - meaningful only for bsdi and freebsd.
    760  */
    761 
    762 int
    763 in6_selectroute(struct sockaddr_in6 *dstsock, struct ip6_pktopts *opts,
    764 	struct ip6_moptions *mopts, struct route *ro, struct ifnet **retifp,
    765 	struct rtentry **retrt, int clone)
    766 {
    767 	return selectroute(dstsock, opts, mopts, ro, retifp,
    768 	    retrt, clone, 0);
    769 }
    770 
    771 /*
    772  * Default hop limit selection. The precedence is as follows:
    773  * 1. Hoplimit value specified via ioctl.
    774  * 2. (If the outgoing interface is detected) the current
    775  *     hop limit of the interface specified by router advertisement.
    776  * 3. The system default hoplimit.
    777 */
    778 int
    779 in6_selecthlim(struct in6pcb *in6p, struct ifnet *ifp)
    780 {
    781 	if (in6p && in6p->in6p_hops >= 0)
    782 		return (in6p->in6p_hops);
    783 	else if (ifp)
    784 		return (ND_IFINFO(ifp)->chlim);
    785 	else
    786 		return (ip6_defhlim);
    787 }
    788 
    789 int
    790 in6_selecthlim_rt(struct in6pcb *in6p)
    791 {
    792 	struct rtentry *rt;
    793 
    794 	if (in6p == NULL)
    795 		return in6_selecthlim(in6p, NULL);
    796 
    797 	rt = rtcache_validate(&in6p->in6p_route);
    798 	if (rt != NULL)
    799 		return in6_selecthlim(in6p, rt->rt_ifp);
    800 	else
    801 		return in6_selecthlim(in6p, NULL);
    802 }
    803 
    804 /*
    805  * Find an empty port and set it to the specified PCB.
    806  */
    807 int
    808 in6_pcbsetport(struct sockaddr_in6 *sin6, struct in6pcb *in6p, struct lwp *l)
    809 {
    810 	struct socket *so = in6p->in6p_socket;
    811 	struct inpcbtable *table = in6p->in6p_table;
    812 	u_int16_t lport, *lastport;
    813 	enum kauth_network_req req;
    814 	int error = 0;
    815 
    816 	if (in6p->in6p_flags & IN6P_LOWPORT) {
    817 #ifndef IPNOPRIVPORTS
    818 		req = KAUTH_REQ_NETWORK_BIND_PRIVPORT;
    819 #else
    820 		req = KAUTH_REQ_NETWORK_BIND_PORT;
    821 #endif
    822 		lastport = &table->inpt_lastlow;
    823 	} else {
    824 		req = KAUTH_REQ_NETWORK_BIND_PORT;
    825 
    826 		lastport = &table->inpt_lastport;
    827 	}
    828 
    829 	/* XXX-kauth: KAUTH_REQ_NETWORK_BIND_AUTOASSIGN_{,PRIV}PORT */
    830 	error = kauth_authorize_network(l->l_cred, KAUTH_NETWORK_BIND, req, so,
    831 	    sin6, NULL);
    832 	if (error)
    833 		return (EACCES);
    834 
    835        /*
    836         * Use RFC6056 randomized port selection
    837         */
    838 	error = portalgo_randport(&lport, &in6p->in6p_head, l->l_cred);
    839 	if (error)
    840 		return error;
    841 
    842 	in6p->in6p_flags |= IN6P_ANONPORT;
    843 	*lastport = lport;
    844 	in6p->in6p_lport = htons(lport);
    845 	in6_pcbstate(in6p, IN6P_BOUND);
    846 	return (0);		/* success */
    847 }
    848 
    849 void
    850 addrsel_policy_init(void)
    851 {
    852 	init_policy_queue();
    853 
    854 	/* initialize the "last resort" policy */
    855 	memset(&defaultaddrpolicy, 0, sizeof(defaultaddrpolicy));
    856 	defaultaddrpolicy.label = ADDR_LABEL_NOTAPP;
    857 }
    858 
    859 static struct in6_addrpolicy *
    860 lookup_addrsel_policy(struct sockaddr_in6 *key)
    861 {
    862 	struct in6_addrpolicy *match = NULL;
    863 
    864 	match = match_addrsel_policy(key);
    865 
    866 	if (match == NULL)
    867 		match = &defaultaddrpolicy;
    868 	else
    869 		match->use++;
    870 
    871 	return (match);
    872 }
    873 
    874 /*
    875  * Subroutines to manage the address selection policy table via sysctl.
    876  */
    877 struct sel_walkarg {
    878 	size_t	w_total;
    879 	size_t	w_given;
    880 	void *	w_where;
    881 	void *w_limit;
    882 };
    883 
    884 int sysctl_net_inet6_addrctlpolicy(SYSCTLFN_ARGS);
    885 int
    886 sysctl_net_inet6_addrctlpolicy(SYSCTLFN_ARGS)
    887 {
    888 	int error = 0;
    889 	int s;
    890 
    891 	s = splsoftnet();
    892 
    893 	if (newp) {
    894 		error = EPERM;
    895 		goto end;
    896 	}
    897 	if (oldp && oldlenp == NULL) {
    898 		error = EINVAL;
    899 		goto end;
    900 	}
    901 	if (oldp || oldlenp) {
    902 		struct sel_walkarg w;
    903 		size_t oldlen = *oldlenp;
    904 
    905 		memset(&w, 0, sizeof(w));
    906 		w.w_given = oldlen;
    907 		w.w_where = oldp;
    908 		if (oldp)
    909 			w.w_limit = (char *)oldp + oldlen;
    910 
    911 		error = walk_addrsel_policy(dump_addrsel_policyent, &w);
    912 
    913 		*oldlenp = w.w_total;
    914 		if (oldp && w.w_total > oldlen && error == 0)
    915 			error = ENOMEM;
    916 	}
    917 
    918   end:
    919 	splx(s);
    920 
    921 	return (error);
    922 }
    923 
    924 int
    925 in6_src_ioctl(u_long cmd, void *data)
    926 {
    927 	int i;
    928 	struct in6_addrpolicy ent0;
    929 
    930 	if (cmd != SIOCAADDRCTL_POLICY && cmd != SIOCDADDRCTL_POLICY)
    931 		return (EOPNOTSUPP); /* check for safety */
    932 
    933 	ent0 = *(struct in6_addrpolicy *)data;
    934 
    935 	if (ent0.label == ADDR_LABEL_NOTAPP)
    936 		return (EINVAL);
    937 	/* check if the prefix mask is consecutive. */
    938 	if (in6_mask2len(&ent0.addrmask.sin6_addr, NULL) < 0)
    939 		return (EINVAL);
    940 	/* clear trailing garbages (if any) of the prefix address. */
    941 	for (i = 0; i < 4; i++) {
    942 		ent0.addr.sin6_addr.s6_addr32[i] &=
    943 			ent0.addrmask.sin6_addr.s6_addr32[i];
    944 	}
    945 	ent0.use = 0;
    946 
    947 	switch (cmd) {
    948 	case SIOCAADDRCTL_POLICY:
    949 		return (add_addrsel_policyent(&ent0));
    950 	case SIOCDADDRCTL_POLICY:
    951 		return (delete_addrsel_policyent(&ent0));
    952 	}
    953 
    954 	return (0);		/* XXX: compromise compilers */
    955 }
    956 
    957 /*
    958  * The followings are implementation of the policy table using a
    959  * simple tail queue.
    960  * XXX such details should be hidden.
    961  * XXX implementation using binary tree should be more efficient.
    962  */
    963 struct addrsel_policyent {
    964 	TAILQ_ENTRY(addrsel_policyent) ape_entry;
    965 	struct in6_addrpolicy ape_policy;
    966 };
    967 
    968 TAILQ_HEAD(addrsel_policyhead, addrsel_policyent);
    969 
    970 struct addrsel_policyhead addrsel_policytab;
    971 
    972 static void
    973 init_policy_queue(void)
    974 {
    975 	TAILQ_INIT(&addrsel_policytab);
    976 }
    977 
    978 static int
    979 add_addrsel_policyent(struct in6_addrpolicy *newpolicy)
    980 {
    981 	struct addrsel_policyent *newpol, *pol;
    982 
    983 	/* duplication check */
    984 	TAILQ_FOREACH(pol, &addrsel_policytab, ape_entry) {
    985 		if (IN6_ARE_ADDR_EQUAL(&newpolicy->addr.sin6_addr,
    986 		    &pol->ape_policy.addr.sin6_addr) &&
    987 		    IN6_ARE_ADDR_EQUAL(&newpolicy->addrmask.sin6_addr,
    988 		    &pol->ape_policy.addrmask.sin6_addr)) {
    989 			return (EEXIST);	/* or override it? */
    990 		}
    991 	}
    992 
    993 	newpol = malloc(sizeof(*newpol), M_IFADDR, M_WAITOK|M_ZERO);
    994 
    995 	/* XXX: should validate entry */
    996 	newpol->ape_policy = *newpolicy;
    997 
    998 	TAILQ_INSERT_TAIL(&addrsel_policytab, newpol, ape_entry);
    999 
   1000 	return (0);
   1001 }
   1002 
   1003 static int
   1004 delete_addrsel_policyent(struct in6_addrpolicy *key)
   1005 {
   1006 	struct addrsel_policyent *pol;
   1007 
   1008 	/* search for the entry in the table */
   1009 	for (pol = TAILQ_FIRST(&addrsel_policytab); pol;
   1010 	     pol = TAILQ_NEXT(pol, ape_entry)) {
   1011 		if (IN6_ARE_ADDR_EQUAL(&key->addr.sin6_addr,
   1012 		    &pol->ape_policy.addr.sin6_addr) &&
   1013 		    IN6_ARE_ADDR_EQUAL(&key->addrmask.sin6_addr,
   1014 		    &pol->ape_policy.addrmask.sin6_addr)) {
   1015 			break;
   1016 		}
   1017 	}
   1018 	if (pol == NULL) {
   1019 		return (ESRCH);
   1020 	}
   1021 
   1022 	TAILQ_REMOVE(&addrsel_policytab, pol, ape_entry);
   1023 
   1024 	return (0);
   1025 }
   1026 
   1027 static int
   1028 walk_addrsel_policy(int (*callback)(struct in6_addrpolicy *, void *), void *w)
   1029 {
   1030 	struct addrsel_policyent *pol;
   1031 	int error = 0;
   1032 
   1033 	TAILQ_FOREACH(pol, &addrsel_policytab, ape_entry) {
   1034 		if ((error = (*callback)(&pol->ape_policy, w)) != 0)
   1035 			return error;
   1036 	}
   1037 
   1038 	return error;
   1039 }
   1040 
   1041 static int
   1042 dump_addrsel_policyent(struct in6_addrpolicy *pol, void *arg)
   1043 {
   1044 	int error = 0;
   1045 	struct sel_walkarg *w = arg;
   1046 
   1047 	if (w->w_where && (char *)w->w_where + sizeof(*pol) <= (char *)w->w_limit) {
   1048 		if ((error = copyout(pol, w->w_where, sizeof(*pol))) != 0)
   1049 			return error;
   1050 		w->w_where = (char *)w->w_where + sizeof(*pol);
   1051 	}
   1052 	w->w_total += sizeof(*pol);
   1053 
   1054 	return error;
   1055 }
   1056 
   1057 static struct in6_addrpolicy *
   1058 match_addrsel_policy(struct sockaddr_in6 *key)
   1059 {
   1060 	struct addrsel_policyent *pent;
   1061 	struct in6_addrpolicy *bestpol = NULL, *pol;
   1062 	int matchlen, bestmatchlen = -1;
   1063 	u_char *mp, *ep, *k, *p, m;
   1064 
   1065 	for (pent = TAILQ_FIRST(&addrsel_policytab); pent;
   1066 	     pent = TAILQ_NEXT(pent, ape_entry)) {
   1067 		matchlen = 0;
   1068 
   1069 		pol = &pent->ape_policy;
   1070 		mp = (u_char *)&pol->addrmask.sin6_addr;
   1071 		ep = mp + 16;	/* XXX: scope field? */
   1072 		k = (u_char *)&key->sin6_addr;
   1073 		p = (u_char *)&pol->addr.sin6_addr;
   1074 		for (; mp < ep && *mp; mp++, k++, p++) {
   1075 			m = *mp;
   1076 			if ((*k & m) != *p)
   1077 				goto next; /* not match */
   1078 			if (m == 0xff) /* short cut for a typical case */
   1079 				matchlen += 8;
   1080 			else {
   1081 				while (m >= 0x80) {
   1082 					matchlen++;
   1083 					m <<= 1;
   1084 				}
   1085 			}
   1086 		}
   1087 
   1088 		/* matched.  check if this is better than the current best. */
   1089 		if (bestpol == NULL ||
   1090 		    matchlen > bestmatchlen) {
   1091 			bestpol = pol;
   1092 			bestmatchlen = matchlen;
   1093 		}
   1094 
   1095 	  next:
   1096 		continue;
   1097 	}
   1098 
   1099 	return (bestpol);
   1100 }
   1101