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