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