1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 3. Neither the name of the project nor the names of its contributors 16 * may be used to endorse or promote products derived from this software 17 * without specific prior written permission. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 * SUCH DAMAGE. 30 * 31 * $KAME: in6_src.c,v 1.132 2003/08/26 04:42:27 keiichi Exp $ 32 */ 33 34 /*- 35 * Copyright (c) 1982, 1986, 1991, 1993 36 * The Regents of the University of California. All rights reserved. 37 * 38 * Redistribution and use in source and binary forms, with or without 39 * modification, are permitted provided that the following conditions 40 * are met: 41 * 1. Redistributions of source code must retain the above copyright 42 * notice, this list of conditions and the following disclaimer. 43 * 2. Redistributions in binary form must reproduce the above copyright 44 * notice, this list of conditions and the following disclaimer in the 45 * documentation and/or other materials provided with the distribution. 46 * 3. Neither the name of the University nor the names of its contributors 47 * may be used to endorse or promote products derived from this software 48 * without specific prior written permission. 49 * 50 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 51 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 52 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 53 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 54 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 55 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 56 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 57 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 58 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 59 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 60 * SUCH DAMAGE. 61 * 62 * @(#)in_pcb.c 8.2 (Berkeley) 1/4/94 63 */ 64 65 #include <sys/cdefs.h> 66 __FBSDID("$FreeBSD$"); 67 68 #include "opt_inet.h" 69 #include "opt_inet6.h" 70 #include "opt_mpath.h" 71 72 #include <sys/param.h> 73 #include <sys/systm.h> 74 #include <sys/lock.h> 75 #include <sys/malloc.h> 76 #include <sys/mbuf.h> 77 #include <sys/priv.h> 78 #include <sys/protosw.h> 79 #include <sys/socket.h> 80 #include <sys/socketvar.h> 81 #include <sys/sockio.h> 82 #include <sys/sysctl.h> 83 #include <sys/errno.h> 84 #include <sys/time.h> 85 #include <sys/jail.h> 86 #include <sys/kernel.h> 87 #include <sys/rmlock.h> 88 #include <sys/sx.h> 89 90 #include <net/if.h> 91 #include <net/if_var.h> 92 #include <net/if_dl.h> 93 #include <net/route.h> 94 #include <net/if_llatbl.h> 95 #ifdef RADIX_MPATH 96 #include <net/radix_mpath.h> 97 #endif 98 99 #include <netinet/in.h> 100 #include <netinet/in_var.h> 101 #include <netinet/in_systm.h> 102 #include <netinet/ip.h> 103 #include <netinet/in_pcb.h> 104 #include <netinet/ip_var.h> 105 #include <netinet/udp.h> 106 #include <netinet/udp_var.h> 107 108 #include <netinet6/in6_var.h> 109 #include <netinet/ip6.h> 110 #include <netinet6/in6_fib.h> 111 #include <netinet6/in6_pcb.h> 112 #include <netinet6/ip6_var.h> 113 #include <netinet6/scope6_var.h> 114 #include <netinet6/nd6.h> 115 116 static struct mtx addrsel_lock; 117 #define ADDRSEL_LOCK_INIT() mtx_init(&addrsel_lock, "addrsel_lock", NULL, MTX_DEF) 118 #define ADDRSEL_LOCK() mtx_lock(&addrsel_lock) 119 #define ADDRSEL_UNLOCK() mtx_unlock(&addrsel_lock) 120 #define ADDRSEL_LOCK_ASSERT() mtx_assert(&addrsel_lock, MA_OWNED) 121 122 static struct sx addrsel_sxlock; 123 #define ADDRSEL_SXLOCK_INIT() sx_init(&addrsel_sxlock, "addrsel_sxlock") 124 #define ADDRSEL_SLOCK() sx_slock(&addrsel_sxlock) 125 #define ADDRSEL_SUNLOCK() sx_sunlock(&addrsel_sxlock) 126 #define ADDRSEL_XLOCK() sx_xlock(&addrsel_sxlock) 127 #define ADDRSEL_XUNLOCK() sx_xunlock(&addrsel_sxlock) 128 129 #define ADDR_LABEL_NOTAPP (-1) 130 VNET_DEFINE_STATIC(struct in6_addrpolicy, defaultaddrpolicy); 131 #define V_defaultaddrpolicy VNET(defaultaddrpolicy) 132 133 VNET_DEFINE(int, ip6_prefer_tempaddr) = 0; 134 135 static int selectroute(struct sockaddr_in6 *, struct ip6_pktopts *, 136 struct ip6_moptions *, struct route_in6 *, struct ifnet **, 137 struct rtentry **, int, u_int); 138 static int in6_selectif(struct sockaddr_in6 *, struct ip6_pktopts *, 139 struct ip6_moptions *, struct ifnet **, 140 struct ifnet *, u_int); 141 static int in6_selectsrc(uint32_t, struct sockaddr_in6 *, 142 struct ip6_pktopts *, struct inpcb *, struct ucred *, 143 struct ifnet **, struct in6_addr *); 144 145 static struct in6_addrpolicy *lookup_addrsel_policy(struct sockaddr_in6 *); 146 147 static void init_policy_queue(void); 148 static int add_addrsel_policyent(struct in6_addrpolicy *); 149 static int delete_addrsel_policyent(struct in6_addrpolicy *); 150 static int walk_addrsel_policy(int (*)(struct in6_addrpolicy *, void *), 151 void *); 152 static int dump_addrsel_policyent(struct in6_addrpolicy *, void *); 153 static struct in6_addrpolicy *match_addrsel_policy(struct sockaddr_in6 *); 154 155 /* 156 * Return an IPv6 address, which is the most appropriate for a given 157 * destination and user specified options. 158 * If necessary, this function lookups the routing table and returns 159 * an entry to the caller for later use. 160 */ 161 #define REPLACE(r) do {\ 162 IP6STAT_INC(ip6s_sources_rule[(r)]); \ 163 /* { \ 164 char ip6buf[INET6_ADDRSTRLEN], ip6b[INET6_ADDRSTRLEN]; \ 165 printf("in6_selectsrc: replace %s with %s by %d\n", ia_best ? ip6_sprintf(ip6buf, &ia_best->ia_addr.sin6_addr) : "none", ip6_sprintf(ip6b, &ia->ia_addr.sin6_addr), (r)); \ 166 } */ \ 167 goto replace; \ 168 } while(0) 169 #define NEXT(r) do {\ 170 /* { \ 171 char ip6buf[INET6_ADDRSTRLEN], ip6b[INET6_ADDRSTRLEN]; \ 172 printf("in6_selectsrc: keep %s against %s by %d\n", ia_best ? ip6_sprintf(ip6buf, &ia_best->ia_addr.sin6_addr) : "none", ip6_sprintf(ip6b, &ia->ia_addr.sin6_addr), (r)); \ 173 } */ \ 174 goto next; /* XXX: we can't use 'continue' here */ \ 175 } while(0) 176 #define BREAK(r) do { \ 177 IP6STAT_INC(ip6s_sources_rule[(r)]); \ 178 goto out; /* XXX: we can't use 'break' here */ \ 179 } while(0) 180 181 static int 182 in6_selectsrc(uint32_t fibnum, struct sockaddr_in6 *dstsock, 183 struct ip6_pktopts *opts, struct inpcb *inp, struct ucred *cred, 184 struct ifnet **ifpp, struct in6_addr *srcp) 185 { 186 struct rm_priotracker in6_ifa_tracker; 187 struct in6_addr dst, tmp; 188 struct ifnet *ifp = NULL, *oifp = NULL; 189 struct in6_ifaddr *ia = NULL, *ia_best = NULL; 190 struct in6_pktinfo *pi = NULL; 191 int dst_scope = -1, best_scope = -1, best_matchlen = -1; 192 struct in6_addrpolicy *dst_policy = NULL, *best_policy = NULL; 193 u_int32_t odstzone; 194 int prefer_tempaddr; 195 int error; 196 struct ip6_moptions *mopts; 197 198 KASSERT(srcp != NULL, ("%s: srcp is NULL", __func__)); 199 200 dst = dstsock->sin6_addr; /* make a copy for local operation */ 201 if (ifpp) { 202 /* 203 * Save a possibly passed in ifp for in6_selectsrc. Only 204 * neighbor discovery code should use this feature, where 205 * we may know the interface but not the FIB number holding 206 * the connected subnet in case someone deleted it from the 207 * default FIB and we need to check the interface. 208 */ 209 if (*ifpp != NULL) 210 oifp = *ifpp; 211 *ifpp = NULL; 212 } 213 214 if (inp != NULL) { 215 INP_LOCK_ASSERT(inp); 216 mopts = inp->in6p_moptions; 217 } else { 218 mopts = NULL; 219 } 220 221 /* 222 * If the source address is explicitly specified by the caller, 223 * check if the requested source address is indeed a unicast address 224 * assigned to the node, and can be used as the packet's source 225 * address. If everything is okay, use the address as source. 226 */ 227 if (opts && (pi = opts->ip6po_pktinfo) && 228 !IN6_IS_ADDR_UNSPECIFIED(&pi->ipi6_addr)) { 229 /* get the outgoing interface */ 230 if ((error = in6_selectif(dstsock, opts, mopts, &ifp, oifp, 231 fibnum)) 232 != 0) 233 return (error); 234 235 /* 236 * determine the appropriate zone id of the source based on 237 * the zone of the destination and the outgoing interface. 238 * If the specified address is ambiguous wrt the scope zone, 239 * the interface must be specified; otherwise, ifa_ifwithaddr() 240 * will fail matching the address. 241 */ 242 tmp = pi->ipi6_addr; 243 if (ifp) { 244 error = in6_setscope(&tmp, ifp, &odstzone); 245 if (error) 246 return (error); 247 } 248 if (cred != NULL && (error = prison_local_ip6(cred, 249 &tmp, (inp->inp_flags & IN6P_IPV6_V6ONLY) != 0)) != 0) 250 return (error); 251 252 /* 253 * If IPV6_BINDANY socket option is set, we allow to specify 254 * non local addresses as source address in IPV6_PKTINFO 255 * ancillary data. 256 */ 257 if ((inp->inp_flags & INP_BINDANY) == 0) { 258 ia = in6ifa_ifwithaddr(&tmp, 0 /* XXX */); 259 if (ia == NULL || (ia->ia6_flags & (IN6_IFF_ANYCAST | 260 IN6_IFF_NOTREADY))) { 261 if (ia != NULL) 262 ifa_free(&ia->ia_ifa); 263 return (EADDRNOTAVAIL); 264 } 265 bcopy(&ia->ia_addr.sin6_addr, srcp, sizeof(*srcp)); 266 ifa_free(&ia->ia_ifa); 267 } else 268 bcopy(&tmp, srcp, sizeof(*srcp)); 269 pi->ipi6_addr = tmp; /* XXX: this overrides pi */ 270 if (ifpp) 271 *ifpp = ifp; 272 return (0); 273 } 274 275 /* 276 * Otherwise, if the socket has already bound the source, just use it. 277 */ 278 if (inp != NULL && !IN6_IS_ADDR_UNSPECIFIED(&inp->in6p_laddr)) { 279 if (cred != NULL && 280 (error = prison_local_ip6(cred, &inp->in6p_laddr, 281 ((inp->inp_flags & IN6P_IPV6_V6ONLY) != 0))) != 0) 282 return (error); 283 bcopy(&inp->in6p_laddr, srcp, sizeof(*srcp)); 284 return (0); 285 } 286 287 /* 288 * Bypass source address selection and use the primary jail IP 289 * if requested. 290 */ 291 if (cred != NULL && !prison_saddrsel_ip6(cred, srcp)) 292 return (0); 293 294 /* 295 * If the address is not specified, choose the best one based on 296 * the outgoing interface and the destination address. 297 */ 298 /* get the outgoing interface */ 299 if ((error = in6_selectif(dstsock, opts, mopts, &ifp, oifp, 300 (inp != NULL) ? inp->inp_inc.inc_fibnum : fibnum)) != 0) 301 return (error); 302 303 #ifdef DIAGNOSTIC 304 if (ifp == NULL) /* this should not happen */ 305 panic("in6_selectsrc: NULL ifp"); 306 #endif 307 error = in6_setscope(&dst, ifp, &odstzone); 308 if (error) 309 return (error); 310 311 IN6_IFADDR_RLOCK(&in6_ifa_tracker); 312 CK_STAILQ_FOREACH(ia, &V_in6_ifaddrhead, ia_link) { 313 int new_scope = -1, new_matchlen = -1; 314 struct in6_addrpolicy *new_policy = NULL; 315 u_int32_t srczone, osrczone, dstzone; 316 struct in6_addr src; 317 struct ifnet *ifp1 = ia->ia_ifp; 318 319 /* 320 * We'll never take an address that breaks the scope zone 321 * of the destination. We also skip an address if its zone 322 * does not contain the outgoing interface. 323 * XXX: we should probably use sin6_scope_id here. 324 */ 325 if (in6_setscope(&dst, ifp1, &dstzone) || 326 odstzone != dstzone) { 327 continue; 328 } 329 src = ia->ia_addr.sin6_addr; 330 if (in6_setscope(&src, ifp, &osrczone) || 331 in6_setscope(&src, ifp1, &srczone) || 332 osrczone != srczone) { 333 continue; 334 } 335 336 /* avoid unusable addresses */ 337 if ((ia->ia6_flags & 338 (IN6_IFF_NOTREADY | IN6_IFF_ANYCAST | IN6_IFF_DETACHED))) { 339 continue; 340 } 341 if (!V_ip6_use_deprecated && IFA6_IS_DEPRECATED(ia)) 342 continue; 343 344 /* If jailed only take addresses of the jail into account. */ 345 if (cred != NULL && 346 prison_check_ip6(cred, &ia->ia_addr.sin6_addr) != 0) 347 continue; 348 349 /* Rule 1: Prefer same address */ 350 if (IN6_ARE_ADDR_EQUAL(&dst, &ia->ia_addr.sin6_addr)) { 351 ia_best = ia; 352 BREAK(1); /* there should be no better candidate */ 353 } 354 355 if (ia_best == NULL) 356 REPLACE(0); 357 358 /* Rule 2: Prefer appropriate scope */ 359 if (dst_scope < 0) 360 dst_scope = in6_addrscope(&dst); 361 new_scope = in6_addrscope(&ia->ia_addr.sin6_addr); 362 if (IN6_ARE_SCOPE_CMP(best_scope, new_scope) < 0) { 363 if (IN6_ARE_SCOPE_CMP(best_scope, dst_scope) < 0) 364 REPLACE(2); 365 NEXT(2); 366 } else if (IN6_ARE_SCOPE_CMP(new_scope, best_scope) < 0) { 367 if (IN6_ARE_SCOPE_CMP(new_scope, dst_scope) < 0) 368 NEXT(2); 369 REPLACE(2); 370 } 371 372 /* 373 * Rule 3: Avoid deprecated addresses. Note that the case of 374 * !ip6_use_deprecated is already rejected above. 375 */ 376 if (!IFA6_IS_DEPRECATED(ia_best) && IFA6_IS_DEPRECATED(ia)) 377 NEXT(3); 378 if (IFA6_IS_DEPRECATED(ia_best) && !IFA6_IS_DEPRECATED(ia)) 379 REPLACE(3); 380 381 /* Rule 4: Prefer home addresses */ 382 /* 383 * XXX: This is a TODO. We should probably merge the MIP6 384 * case above. 385 */ 386 387 /* Rule 5: Prefer outgoing interface */ 388 if (!(ND_IFINFO(ifp)->flags & ND6_IFF_NO_PREFER_IFACE)) { 389 if (ia_best->ia_ifp == ifp && ia->ia_ifp != ifp) 390 NEXT(5); 391 if (ia_best->ia_ifp != ifp && ia->ia_ifp == ifp) 392 REPLACE(5); 393 } 394 395 /* 396 * Rule 6: Prefer matching label 397 * Note that best_policy should be non-NULL here. 398 */ 399 if (dst_policy == NULL) 400 dst_policy = lookup_addrsel_policy(dstsock); 401 if (dst_policy->label != ADDR_LABEL_NOTAPP) { 402 new_policy = lookup_addrsel_policy(&ia->ia_addr); 403 if (dst_policy->label == best_policy->label && 404 dst_policy->label != new_policy->label) 405 NEXT(6); 406 if (dst_policy->label != best_policy->label && 407 dst_policy->label == new_policy->label) 408 REPLACE(6); 409 } 410 411 /* 412 * Rule 7: Prefer public addresses. 413 * We allow users to reverse the logic by configuring 414 * a sysctl variable, so that privacy conscious users can 415 * always prefer temporary addresses. 416 */ 417 if (opts == NULL || 418 opts->ip6po_prefer_tempaddr == IP6PO_TEMPADDR_SYSTEM) { 419 prefer_tempaddr = V_ip6_prefer_tempaddr; 420 } else if (opts->ip6po_prefer_tempaddr == 421 IP6PO_TEMPADDR_NOTPREFER) { 422 prefer_tempaddr = 0; 423 } else 424 prefer_tempaddr = 1; 425 if (!(ia_best->ia6_flags & IN6_IFF_TEMPORARY) && 426 (ia->ia6_flags & IN6_IFF_TEMPORARY)) { 427 if (prefer_tempaddr) 428 REPLACE(7); 429 else 430 NEXT(7); 431 } 432 if ((ia_best->ia6_flags & IN6_IFF_TEMPORARY) && 433 !(ia->ia6_flags & IN6_IFF_TEMPORARY)) { 434 if (prefer_tempaddr) 435 NEXT(7); 436 else 437 REPLACE(7); 438 } 439 440 /* 441 * Rule 8: prefer addresses on alive interfaces. 442 * This is a KAME specific rule. 443 */ 444 if ((ia_best->ia_ifp->if_flags & IFF_UP) && 445 !(ia->ia_ifp->if_flags & IFF_UP)) 446 NEXT(8); 447 if (!(ia_best->ia_ifp->if_flags & IFF_UP) && 448 (ia->ia_ifp->if_flags & IFF_UP)) 449 REPLACE(8); 450 451 /* 452 * Rule 9: prefer address with better virtual status. 453 */ 454 if (ifa_preferred(&ia_best->ia_ifa, &ia->ia_ifa)) 455 REPLACE(9); 456 if (ifa_preferred(&ia->ia_ifa, &ia_best->ia_ifa)) 457 NEXT(9); 458 459 /* 460 * Rule 10: prefer address with `prefer_source' flag. 461 */ 462 if ((ia_best->ia6_flags & IN6_IFF_PREFER_SOURCE) == 0 && 463 (ia->ia6_flags & IN6_IFF_PREFER_SOURCE) != 0) 464 REPLACE(10); 465 if ((ia_best->ia6_flags & IN6_IFF_PREFER_SOURCE) != 0 && 466 (ia->ia6_flags & IN6_IFF_PREFER_SOURCE) == 0) 467 NEXT(10); 468 469 /* 470 * Rule 14: Use longest matching prefix. 471 * Note: in the address selection draft, this rule is 472 * documented as "Rule 8". However, since it is also 473 * documented that this rule can be overridden, we assign 474 * a large number so that it is easy to assign smaller numbers 475 * to more preferred rules. 476 */ 477 new_matchlen = in6_matchlen(&ia->ia_addr.sin6_addr, &dst); 478 if (best_matchlen < new_matchlen) 479 REPLACE(14); 480 if (new_matchlen < best_matchlen) 481 NEXT(14); 482 483 /* Rule 15 is reserved. */ 484 485 /* 486 * Last resort: just keep the current candidate. 487 * Or, do we need more rules? 488 */ 489 continue; 490 491 replace: 492 ia_best = ia; 493 best_scope = (new_scope >= 0 ? new_scope : 494 in6_addrscope(&ia_best->ia_addr.sin6_addr)); 495 best_policy = (new_policy ? new_policy : 496 lookup_addrsel_policy(&ia_best->ia_addr)); 497 best_matchlen = (new_matchlen >= 0 ? new_matchlen : 498 in6_matchlen(&ia_best->ia_addr.sin6_addr, 499 &dst)); 500 501 next: 502 continue; 503 504 out: 505 break; 506 } 507 508 if ((ia = ia_best) == NULL) { 509 IN6_IFADDR_RUNLOCK(&in6_ifa_tracker); 510 IP6STAT_INC(ip6s_sources_none); 511 return (EADDRNOTAVAIL); 512 } 513 514 /* 515 * At this point at least one of the addresses belonged to the jail 516 * but it could still be, that we want to further restrict it, e.g. 517 * theoratically IN6_IS_ADDR_LOOPBACK. 518 * It must not be IN6_IS_ADDR_UNSPECIFIED anymore. 519 * prison_local_ip6() will fix an IN6_IS_ADDR_LOOPBACK but should 520 * let all others previously selected pass. 521 * Use tmp to not change ::1 on lo0 to the primary jail address. 522 */ 523 tmp = ia->ia_addr.sin6_addr; 524 if (cred != NULL && prison_local_ip6(cred, &tmp, (inp != NULL && 525 (inp->inp_flags & IN6P_IPV6_V6ONLY) != 0)) != 0) { 526 IN6_IFADDR_RUNLOCK(&in6_ifa_tracker); 527 IP6STAT_INC(ip6s_sources_none); 528 return (EADDRNOTAVAIL); 529 } 530 531 if (ifpp) 532 *ifpp = ifp; 533 534 bcopy(&tmp, srcp, sizeof(*srcp)); 535 if (ia->ia_ifp == ifp) 536 IP6STAT_INC(ip6s_sources_sameif[best_scope]); 537 else 538 IP6STAT_INC(ip6s_sources_otherif[best_scope]); 539 if (dst_scope == best_scope) 540 IP6STAT_INC(ip6s_sources_samescope[best_scope]); 541 else 542 IP6STAT_INC(ip6s_sources_otherscope[best_scope]); 543 if (IFA6_IS_DEPRECATED(ia)) 544 IP6STAT_INC(ip6s_sources_deprecated[best_scope]); 545 IN6_IFADDR_RUNLOCK(&in6_ifa_tracker); 546 return (0); 547 } 548 549 /* 550 * Select source address based on @inp, @dstsock and @opts. 551 * Stores selected address to @srcp. If @scope_ambiguous is set, 552 * embed scope from selected outgoing interface. If @hlim pointer 553 * is provided, stores calculated hop limit there. 554 * Returns 0 on success. 555 */ 556 int 557 in6_selectsrc_socket(struct sockaddr_in6 *dstsock, struct ip6_pktopts *opts, 558 struct inpcb *inp, struct ucred *cred, int scope_ambiguous, 559 struct in6_addr *srcp, int *hlim) 560 { 561 struct ifnet *retifp; 562 uint32_t fibnum; 563 int error; 564 565 fibnum = inp->inp_inc.inc_fibnum; 566 retifp = NULL; 567 568 error = in6_selectsrc(fibnum, dstsock, opts, inp, cred, &retifp, srcp); 569 if (error != 0) 570 return (error); 571 572 if (hlim != NULL) 573 *hlim = in6_selecthlim(inp, retifp); 574 575 if (retifp == NULL || scope_ambiguous == 0) 576 return (0); 577 578 /* 579 * Application should provide a proper zone ID or the use of 580 * default zone IDs should be enabled. Unfortunately, some 581 * applications do not behave as it should, so we need a 582 * workaround. Even if an appropriate ID is not determined 583 * (when it's required), if we can determine the outgoing 584 * interface. determine the zone ID based on the interface. 585 */ 586 error = in6_setscope(&dstsock->sin6_addr, retifp, NULL); 587 588 return (error); 589 } 590 591 /* 592 * Select source address based on @fibnum, @dst and @scopeid. 593 * Stores selected address to @srcp. 594 * Returns 0 on success. 595 * 596 * Used by non-socket based consumers (ND code mostly) 597 */ 598 int 599 in6_selectsrc_addr(uint32_t fibnum, const struct in6_addr *dst, 600 uint32_t scopeid, struct ifnet *ifp, struct in6_addr *srcp, 601 int *hlim) 602 { 603 struct ifnet *retifp; 604 struct sockaddr_in6 dst_sa; 605 int error; 606 607 retifp = ifp; 608 bzero(&dst_sa, sizeof(dst_sa)); 609 dst_sa.sin6_family = AF_INET6; 610 dst_sa.sin6_len = sizeof(dst_sa); 611 dst_sa.sin6_addr = *dst; 612 dst_sa.sin6_scope_id = scopeid; 613 sa6_embedscope(&dst_sa, 0); 614 615 error = in6_selectsrc(fibnum, &dst_sa, NULL, NULL, NULL, &retifp, srcp); 616 if (hlim != NULL) 617 *hlim = in6_selecthlim(NULL, retifp); 618 619 return (error); 620 } 621 622 /* 623 * clone - meaningful only for bsdi and freebsd 624 */ 625 static int 626 selectroute(struct sockaddr_in6 *dstsock, struct ip6_pktopts *opts, 627 struct ip6_moptions *mopts, struct route_in6 *ro, 628 struct ifnet **retifp, struct rtentry **retrt, int norouteok, u_int fibnum) 629 { 630 int error = 0; 631 struct ifnet *ifp = NULL; 632 struct rtentry *rt = NULL; 633 struct sockaddr_in6 *sin6_next; 634 struct in6_pktinfo *pi = NULL; 635 struct in6_addr *dst = &dstsock->sin6_addr; 636 uint32_t zoneid; 637 #if 0 638 char ip6buf[INET6_ADDRSTRLEN]; 639 640 if (dstsock->sin6_addr.s6_addr32[0] == 0 && 641 dstsock->sin6_addr.s6_addr32[1] == 0 && 642 !IN6_IS_ADDR_LOOPBACK(&dstsock->sin6_addr)) { 643 printf("in6_selectroute: strange destination %s\n", 644 ip6_sprintf(ip6buf, &dstsock->sin6_addr)); 645 } else { 646 printf("in6_selectroute: destination = %s%%%d\n", 647 ip6_sprintf(ip6buf, &dstsock->sin6_addr), 648 dstsock->sin6_scope_id); /* for debug */ 649 } 650 #endif 651 652 /* If the caller specify the outgoing interface explicitly, use it. */ 653 if (opts && (pi = opts->ip6po_pktinfo) != NULL && pi->ipi6_ifindex) { 654 /* XXX boundary check is assumed to be already done. */ 655 ifp = ifnet_byindex(pi->ipi6_ifindex); 656 if (ifp != NULL && 657 (norouteok || retrt == NULL || 658 IN6_IS_ADDR_MULTICAST(dst))) { 659 /* 660 * we do not have to check or get the route for 661 * multicast. 662 */ 663 goto done; 664 } else 665 goto getroute; 666 } 667 /* 668 * If the destination address is a multicast address and the outgoing 669 * interface for the address is specified by the caller, use it. 670 */ 671 if (IN6_IS_ADDR_MULTICAST(dst) && 672 mopts != NULL && (ifp = mopts->im6o_multicast_ifp) != NULL) { 673 goto done; /* we do not need a route for multicast. */ 674 } 675 /* 676 * If destination address is LLA or link- or node-local multicast, 677 * use it's embedded scope zone id to determine outgoing interface. 678 */ 679 if (IN6_IS_ADDR_MC_LINKLOCAL(dst) || 680 IN6_IS_ADDR_MC_NODELOCAL(dst)) { 681 zoneid = ntohs(in6_getscope(dst)); 682 if (zoneid > 0) { 683 ifp = in6_getlinkifnet(zoneid); 684 goto done; 685 } 686 } 687 688 getroute: 689 /* 690 * If the next hop address for the packet is specified by the caller, 691 * use it as the gateway. 692 */ 693 if (opts && opts->ip6po_nexthop) { 694 struct route_in6 *ron; 695 696 sin6_next = satosin6(opts->ip6po_nexthop); 697 if (IN6_IS_ADDR_LINKLOCAL(&sin6_next->sin6_addr)) { 698 /* 699 * Next hop is LLA, thus it should be neighbor. 700 * Determine outgoing interface by zone index. 701 */ 702 zoneid = ntohs(in6_getscope(&sin6_next->sin6_addr)); 703 if (zoneid > 0) { 704 ifp = in6_getlinkifnet(zoneid); 705 goto done; 706 } 707 } 708 ron = &opts->ip6po_nextroute; 709 /* Use a cached route if it exists and is valid. */ 710 if (ron->ro_rt != NULL && ( 711 (ron->ro_rt->rt_flags & RTF_UP) == 0 || 712 ron->ro_dst.sin6_family != AF_INET6 || 713 !IN6_ARE_ADDR_EQUAL(&ron->ro_dst.sin6_addr, 714 &sin6_next->sin6_addr))) 715 RO_RTFREE(ron); 716 if (ron->ro_rt == NULL) { 717 ron->ro_dst = *sin6_next; 718 in6_rtalloc(ron, fibnum); /* multi path case? */ 719 } 720 /* 721 * The node identified by that address must be a 722 * neighbor of the sending host. 723 */ 724 if (ron->ro_rt == NULL || 725 (ron->ro_rt->rt_flags & RTF_GATEWAY) != 0) 726 error = EHOSTUNREACH; 727 goto done; 728 } 729 730 /* 731 * Use a cached route if it exists and is valid, else try to allocate 732 * a new one. Note that we should check the address family of the 733 * cached destination, in case of sharing the cache with IPv4. 734 */ 735 if (ro) { 736 if (ro->ro_rt && 737 (!(ro->ro_rt->rt_flags & RTF_UP) || 738 ((struct sockaddr *)(&ro->ro_dst))->sa_family != AF_INET6 || 739 !IN6_ARE_ADDR_EQUAL(&satosin6(&ro->ro_dst)->sin6_addr, 740 dst))) { 741 RTFREE(ro->ro_rt); 742 ro->ro_rt = (struct rtentry *)NULL; 743 } 744 if (ro->ro_rt == (struct rtentry *)NULL) { 745 struct sockaddr_in6 *sa6; 746 747 /* No route yet, so try to acquire one */ 748 bzero(&ro->ro_dst, sizeof(struct sockaddr_in6)); 749 sa6 = (struct sockaddr_in6 *)&ro->ro_dst; 750 *sa6 = *dstsock; 751 sa6->sin6_scope_id = 0; 752 753 #ifdef RADIX_MPATH 754 rtalloc_mpath_fib((struct route *)ro, 755 ntohl(sa6->sin6_addr.s6_addr32[3]), fibnum); 756 #else 757 ro->ro_rt = in6_rtalloc1((struct sockaddr *) 758 &ro->ro_dst, 0, 0UL, fibnum); 759 if (ro->ro_rt) 760 RT_UNLOCK(ro->ro_rt); 761 #endif 762 } 763 764 /* 765 * do not care about the result if we have the nexthop 766 * explicitly specified. 767 */ 768 if (opts && opts->ip6po_nexthop) 769 goto done; 770 771 if (ro->ro_rt) { 772 ifp = ro->ro_rt->rt_ifp; 773 774 if (ifp == NULL) { /* can this really happen? */ 775 RTFREE(ro->ro_rt); 776 ro->ro_rt = NULL; 777 } 778 } 779 if (ro->ro_rt == NULL) 780 error = EHOSTUNREACH; 781 rt = ro->ro_rt; 782 783 /* 784 * Check if the outgoing interface conflicts with 785 * the interface specified by ipi6_ifindex (if specified). 786 * Note that loopback interface is always okay. 787 * (this may happen when we are sending a packet to one of 788 * our own addresses.) 789 */ 790 if (ifp && opts && opts->ip6po_pktinfo && 791 opts->ip6po_pktinfo->ipi6_ifindex) { 792 if (!(ifp->if_flags & IFF_LOOPBACK) && 793 ifp->if_index != 794 opts->ip6po_pktinfo->ipi6_ifindex) { 795 error = EHOSTUNREACH; 796 goto done; 797 } 798 } 799 } 800 801 done: 802 if (ifp == NULL && rt == NULL) { 803 /* 804 * This can happen if the caller did not pass a cached route 805 * nor any other hints. We treat this case an error. 806 */ 807 error = EHOSTUNREACH; 808 } 809 if (error == EHOSTUNREACH) 810 IP6STAT_INC(ip6s_noroute); 811 812 if (retifp != NULL) { 813 *retifp = ifp; 814 815 /* 816 * Adjust the "outgoing" interface. If we're going to loop 817 * the packet back to ourselves, the ifp would be the loopback 818 * interface. However, we'd rather know the interface associated 819 * to the destination address (which should probably be one of 820 * our own addresses.) 821 */ 822 if (rt) { 823 if ((rt->rt_ifp->if_flags & IFF_LOOPBACK) && 824 (rt->rt_gateway->sa_family == AF_LINK)) 825 *retifp = 826 ifnet_byindex(((struct sockaddr_dl *) 827 rt->rt_gateway)->sdl_index); 828 } 829 } 830 831 if (retrt != NULL) 832 *retrt = rt; /* rt may be NULL */ 833 834 return (error); 835 } 836 837 static int 838 in6_selectif(struct sockaddr_in6 *dstsock, struct ip6_pktopts *opts, 839 struct ip6_moptions *mopts, struct ifnet **retifp, 840 struct ifnet *oifp, u_int fibnum) 841 { 842 int error; 843 struct route_in6 sro; 844 struct rtentry *rt = NULL; 845 int rt_flags; 846 847 KASSERT(retifp != NULL, ("%s: retifp is NULL", __func__)); 848 849 bzero(&sro, sizeof(sro)); 850 rt_flags = 0; 851 852 error = selectroute(dstsock, opts, mopts, &sro, retifp, &rt, 1, fibnum); 853 854 if (rt) 855 rt_flags = rt->rt_flags; 856 if (rt && rt == sro.ro_rt) 857 RTFREE(rt); 858 859 if (error != 0) { 860 /* Help ND. See oifp comment in in6_selectsrc(). */ 861 if (oifp != NULL && fibnum == RT_DEFAULT_FIB) { 862 *retifp = oifp; 863 error = 0; 864 } 865 return (error); 866 } 867 868 /* 869 * do not use a rejected or black hole route. 870 * XXX: this check should be done in the L2 output routine. 871 * However, if we skipped this check here, we'd see the following 872 * scenario: 873 * - install a rejected route for a scoped address prefix 874 * (like fe80::/10) 875 * - send a packet to a destination that matches the scoped prefix, 876 * with ambiguity about the scope zone. 877 * - pick the outgoing interface from the route, and disambiguate the 878 * scope zone with the interface. 879 * - ip6_output() would try to get another route with the "new" 880 * destination, which may be valid. 881 * - we'd see no error on output. 882 * Although this may not be very harmful, it should still be confusing. 883 * We thus reject the case here. 884 */ 885 886 if (rt_flags & (RTF_REJECT | RTF_BLACKHOLE)) { 887 error = (rt_flags & RTF_HOST ? EHOSTUNREACH : ENETUNREACH); 888 return (error); 889 } 890 891 return (0); 892 } 893 894 /* 895 * Public wrapper function to selectroute(). 896 * 897 * XXX-BZ in6_selectroute() should and will grow the FIB argument. The 898 * in6_selectroute_fib() function is only there for backward compat on stable. 899 */ 900 int 901 in6_selectroute(struct sockaddr_in6 *dstsock, struct ip6_pktopts *opts, 902 struct ip6_moptions *mopts, struct route_in6 *ro, 903 struct ifnet **retifp, struct rtentry **retrt) 904 { 905 906 return (selectroute(dstsock, opts, mopts, ro, retifp, 907 retrt, 0, RT_DEFAULT_FIB)); 908 } 909 910 #ifndef BURN_BRIDGES 911 int 912 in6_selectroute_fib(struct sockaddr_in6 *dstsock, struct ip6_pktopts *opts, 913 struct ip6_moptions *mopts, struct route_in6 *ro, 914 struct ifnet **retifp, struct rtentry **retrt, u_int fibnum) 915 { 916 917 return (selectroute(dstsock, opts, mopts, ro, retifp, 918 retrt, 0, fibnum)); 919 } 920 #endif 921 922 /* 923 * Default hop limit selection. The precedence is as follows: 924 * 1. Hoplimit value specified via ioctl. 925 * 2. (If the outgoing interface is detected) the current 926 * hop limit of the interface specified by router advertisement. 927 * 3. The system default hoplimit. 928 */ 929 int 930 in6_selecthlim(struct inpcb *in6p, struct ifnet *ifp) 931 { 932 933 if (in6p && in6p->in6p_hops >= 0) 934 return (in6p->in6p_hops); 935 else if (ifp) 936 return (ND_IFINFO(ifp)->chlim); 937 else if (in6p && !IN6_IS_ADDR_UNSPECIFIED(&in6p->in6p_faddr)) { 938 struct nhop6_basic nh6; 939 struct in6_addr dst; 940 uint32_t fibnum, scopeid; 941 int hlim; 942 943 fibnum = in6p->inp_inc.inc_fibnum; 944 in6_splitscope(&in6p->in6p_faddr, &dst, &scopeid); 945 if (fib6_lookup_nh_basic(fibnum, &dst, scopeid, 0, 0, &nh6)==0){ 946 hlim = ND_IFINFO(nh6.nh_ifp)->chlim; 947 return (hlim); 948 } 949 } 950 return (V_ip6_defhlim); 951 } 952 953 /* 954 * XXX: this is borrowed from in6_pcbbind(). If possible, we should 955 * share this function by all *bsd*... 956 */ 957 int 958 in6_pcbsetport(struct in6_addr *laddr, struct inpcb *inp, struct ucred *cred) 959 { 960 struct socket *so = inp->inp_socket; 961 u_int16_t lport = 0; 962 int error, lookupflags = 0; 963 #ifdef INVARIANTS 964 struct inpcbinfo *pcbinfo = inp->inp_pcbinfo; 965 #endif 966 967 INP_WLOCK_ASSERT(inp); 968 INP_HASH_WLOCK_ASSERT(pcbinfo); 969 970 error = prison_local_ip6(cred, laddr, 971 ((inp->inp_flags & IN6P_IPV6_V6ONLY) != 0)); 972 if (error) 973 return(error); 974 975 /* XXX: this is redundant when called from in6_pcbbind */ 976 if ((so->so_options & (SO_REUSEADDR|SO_REUSEPORT|SO_REUSEPORT_LB)) == 0) 977 lookupflags = INPLOOKUP_WILDCARD; 978 979 inp->inp_flags |= INP_ANONPORT; 980 981 error = in_pcb_lport(inp, NULL, &lport, cred, lookupflags); 982 if (error != 0) 983 return (error); 984 985 inp->inp_lport = lport; 986 if (in_pcbinshash(inp) != 0) { 987 inp->in6p_laddr = in6addr_any; 988 inp->inp_lport = 0; 989 return (EAGAIN); 990 } 991 992 return (0); 993 } 994 995 void 996 addrsel_policy_init(void) 997 { 998 999 init_policy_queue(); 1000 1001 /* initialize the "last resort" policy */ 1002 bzero(&V_defaultaddrpolicy, sizeof(V_defaultaddrpolicy)); 1003 V_defaultaddrpolicy.label = ADDR_LABEL_NOTAPP; 1004 1005 if (!IS_DEFAULT_VNET(curvnet)) 1006 return; 1007 1008 ADDRSEL_LOCK_INIT(); 1009 ADDRSEL_SXLOCK_INIT(); 1010 } 1011 1012 static struct in6_addrpolicy * 1013 lookup_addrsel_policy(struct sockaddr_in6 *key) 1014 { 1015 struct in6_addrpolicy *match = NULL; 1016 1017 ADDRSEL_LOCK(); 1018 match = match_addrsel_policy(key); 1019 1020 if (match == NULL) 1021 match = &V_defaultaddrpolicy; 1022 else 1023 match->use++; 1024 ADDRSEL_UNLOCK(); 1025 1026 return (match); 1027 } 1028 1029 /* 1030 * Subroutines to manage the address selection policy table via sysctl. 1031 */ 1032 struct walkarg { 1033 struct sysctl_req *w_req; 1034 }; 1035 1036 static int in6_src_sysctl(SYSCTL_HANDLER_ARGS); 1037 SYSCTL_DECL(_net_inet6_ip6); 1038 static SYSCTL_NODE(_net_inet6_ip6, IPV6CTL_ADDRCTLPOLICY, addrctlpolicy, 1039 CTLFLAG_RD, in6_src_sysctl, ""); 1040 1041 static int 1042 in6_src_sysctl(SYSCTL_HANDLER_ARGS) 1043 { 1044 struct walkarg w; 1045 1046 if (req->newptr) 1047 return EPERM; 1048 1049 bzero(&w, sizeof(w)); 1050 w.w_req = req; 1051 1052 return (walk_addrsel_policy(dump_addrsel_policyent, &w)); 1053 } 1054 1055 int 1056 in6_src_ioctl(u_long cmd, caddr_t data) 1057 { 1058 struct in6_addrpolicy ent0; 1059 1060 if (cmd != SIOCAADDRCTL_POLICY && cmd != SIOCDADDRCTL_POLICY) 1061 return (EOPNOTSUPP); /* check for safety */ 1062 1063 ent0 = *(struct in6_addrpolicy *)data; 1064 1065 if (ent0.label == ADDR_LABEL_NOTAPP) 1066 return (EINVAL); 1067 /* check if the prefix mask is consecutive. */ 1068 if (in6_mask2len(&ent0.addrmask.sin6_addr, NULL) < 0) 1069 return (EINVAL); 1070 /* clear trailing garbages (if any) of the prefix address. */ 1071 IN6_MASK_ADDR(&ent0.addr.sin6_addr, &ent0.addrmask.sin6_addr); 1072 ent0.use = 0; 1073 1074 switch (cmd) { 1075 case SIOCAADDRCTL_POLICY: 1076 return (add_addrsel_policyent(&ent0)); 1077 case SIOCDADDRCTL_POLICY: 1078 return (delete_addrsel_policyent(&ent0)); 1079 } 1080 1081 return (0); /* XXX: compromise compilers */ 1082 } 1083 1084 /* 1085 * The followings are implementation of the policy table using a 1086 * simple tail queue. 1087 * XXX such details should be hidden. 1088 * XXX implementation using binary tree should be more efficient. 1089 */ 1090 struct addrsel_policyent { 1091 TAILQ_ENTRY(addrsel_policyent) ape_entry; 1092 struct in6_addrpolicy ape_policy; 1093 }; 1094 1095 TAILQ_HEAD(addrsel_policyhead, addrsel_policyent); 1096 1097 VNET_DEFINE_STATIC(struct addrsel_policyhead, addrsel_policytab); 1098 #define V_addrsel_policytab VNET(addrsel_policytab) 1099 1100 static void 1101 init_policy_queue(void) 1102 { 1103 1104 TAILQ_INIT(&V_addrsel_policytab); 1105 } 1106 1107 static int 1108 add_addrsel_policyent(struct in6_addrpolicy *newpolicy) 1109 { 1110 struct addrsel_policyent *new, *pol; 1111 1112 new = malloc(sizeof(*new), M_IFADDR, 1113 M_WAITOK); 1114 ADDRSEL_XLOCK(); 1115 ADDRSEL_LOCK(); 1116 1117 /* duplication check */ 1118 TAILQ_FOREACH(pol, &V_addrsel_policytab, ape_entry) { 1119 if (IN6_ARE_ADDR_EQUAL(&newpolicy->addr.sin6_addr, 1120 &pol->ape_policy.addr.sin6_addr) && 1121 IN6_ARE_ADDR_EQUAL(&newpolicy->addrmask.sin6_addr, 1122 &pol->ape_policy.addrmask.sin6_addr)) { 1123 ADDRSEL_UNLOCK(); 1124 ADDRSEL_XUNLOCK(); 1125 free(new, M_IFADDR); 1126 return (EEXIST); /* or override it? */ 1127 } 1128 } 1129 1130 bzero(new, sizeof(*new)); 1131 1132 /* XXX: should validate entry */ 1133 new->ape_policy = *newpolicy; 1134 1135 TAILQ_INSERT_TAIL(&V_addrsel_policytab, new, ape_entry); 1136 ADDRSEL_UNLOCK(); 1137 ADDRSEL_XUNLOCK(); 1138 1139 return (0); 1140 } 1141 1142 static int 1143 delete_addrsel_policyent(struct in6_addrpolicy *key) 1144 { 1145 struct addrsel_policyent *pol; 1146 1147 ADDRSEL_XLOCK(); 1148 ADDRSEL_LOCK(); 1149 1150 /* search for the entry in the table */ 1151 TAILQ_FOREACH(pol, &V_addrsel_policytab, ape_entry) { 1152 if (IN6_ARE_ADDR_EQUAL(&key->addr.sin6_addr, 1153 &pol->ape_policy.addr.sin6_addr) && 1154 IN6_ARE_ADDR_EQUAL(&key->addrmask.sin6_addr, 1155 &pol->ape_policy.addrmask.sin6_addr)) { 1156 break; 1157 } 1158 } 1159 if (pol == NULL) { 1160 ADDRSEL_UNLOCK(); 1161 ADDRSEL_XUNLOCK(); 1162 return (ESRCH); 1163 } 1164 1165 TAILQ_REMOVE(&V_addrsel_policytab, pol, ape_entry); 1166 ADDRSEL_UNLOCK(); 1167 ADDRSEL_XUNLOCK(); 1168 free(pol, M_IFADDR); 1169 1170 return (0); 1171 } 1172 1173 static int 1174 walk_addrsel_policy(int (*callback)(struct in6_addrpolicy *, void *), void *w) 1175 { 1176 struct addrsel_policyent *pol; 1177 int error = 0; 1178 1179 ADDRSEL_SLOCK(); 1180 TAILQ_FOREACH(pol, &V_addrsel_policytab, ape_entry) { 1181 if ((error = (*callback)(&pol->ape_policy, w)) != 0) { 1182 ADDRSEL_SUNLOCK(); 1183 return (error); 1184 } 1185 } 1186 ADDRSEL_SUNLOCK(); 1187 return (error); 1188 } 1189 1190 static int 1191 dump_addrsel_policyent(struct in6_addrpolicy *pol, void *arg) 1192 { 1193 int error = 0; 1194 struct walkarg *w = arg; 1195 1196 error = SYSCTL_OUT(w->w_req, pol, sizeof(*pol)); 1197 1198 return (error); 1199 } 1200 1201 static struct in6_addrpolicy * 1202 match_addrsel_policy(struct sockaddr_in6 *key) 1203 { 1204 struct addrsel_policyent *pent; 1205 struct in6_addrpolicy *bestpol = NULL, *pol; 1206 int matchlen, bestmatchlen = -1; 1207 u_char *mp, *ep, *k, *p, m; 1208 1209 TAILQ_FOREACH(pent, &V_addrsel_policytab, ape_entry) { 1210 matchlen = 0; 1211 1212 pol = &pent->ape_policy; 1213 mp = (u_char *)&pol->addrmask.sin6_addr; 1214 ep = mp + 16; /* XXX: scope field? */ 1215 k = (u_char *)&key->sin6_addr; 1216 p = (u_char *)&pol->addr.sin6_addr; 1217 for (; mp < ep && *mp; mp++, k++, p++) { 1218 m = *mp; 1219 if ((*k & m) != *p) 1220 goto next; /* not match */ 1221 if (m == 0xff) /* short cut for a typical case */ 1222 matchlen += 8; 1223 else { 1224 while (m >= 0x80) { 1225 matchlen++; 1226 m <<= 1; 1227 } 1228 } 1229 } 1230 1231 /* matched. check if this is better than the current best. */ 1232 if (bestpol == NULL || 1233 matchlen > bestmatchlen) { 1234 bestpol = pol; 1235 bestmatchlen = matchlen; 1236 } 1237 1238 next: 1239 continue; 1240 } 1241 1242 return (bestpol); 1243 } 1244