1 /* $FreeBSD$ */ 2 /* $KAME: nd6_rtr.c,v 1.111 2001/04/27 01:37:15 jinmei Exp $ */ 3 4 /*- 5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. Neither the name of the project nor the names of its contributors 17 * may be used to endorse or promote products derived from this software 18 * without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE 24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 * SUCH DAMAGE. 31 */ 32 33 #include "opt_inet.h" 34 #include "opt_inet6.h" 35 36 #include <sys/param.h> 37 #include <sys/systm.h> 38 #include <sys/malloc.h> 39 #include <sys/mbuf.h> 40 #include <sys/socket.h> 41 #include <sys/sockio.h> 42 #include <sys/time.h> 43 #include <sys/kernel.h> 44 #include <sys/errno.h> 45 #include <sys/syslog.h> 46 #include <sys/queue.h> 47 48 #include <net/if.h> 49 #include <net/if_types.h> 50 #include <net/if_dl.h> 51 #include <net/route.h> 52 #include <net/radix.h> 53 54 #include <netinet/in.h> 55 #include <netinet6/in6_var.h> 56 #include <netinet6/in6_ifattach.h> 57 #include <netinet/ip6.h> 58 #include <netinet6/ip6_var.h> 59 #include <netinet6/nd6.h> 60 #include <netinet/icmp6.h> 61 #include <netinet6/scope6_var.h> 62 63 #include <net/net_osdep.h> 64 65 #define SDL(s) ((struct sockaddr_dl *)s) 66 67 static int rtpref __P((struct nd_defrouter *)); 68 static struct nd_defrouter *defrtrlist_update __P((struct nd_defrouter *)); 69 static int prelist_update __P((struct nd_prefixctl *, struct nd_defrouter *, 70 struct mbuf *, int)); 71 static struct in6_ifaddr *in6_ifadd __P((struct nd_prefixctl *, int)); 72 static struct nd_pfxrouter *pfxrtr_lookup __P((struct nd_prefix *, 73 struct nd_defrouter *)); 74 static void pfxrtr_add __P((struct nd_prefix *, struct nd_defrouter *)); 75 static void pfxrtr_del __P((struct nd_pfxrouter *)); 76 static struct nd_pfxrouter *find_pfxlist_reachable_router 77 __P((struct nd_prefix *)); 78 static void defrouter_delreq __P((struct nd_defrouter *)); 79 static void nd6_rtmsg __P((int, struct rtentry *)); 80 81 static int in6_init_prefix_ltimes __P((struct nd_prefix *)); 82 static void in6_init_address_ltimes __P((struct nd_prefix *, 83 struct in6_addrlifetime *)); 84 85 static int rt6_deleteroute __P((struct radix_node *, void *)); 86 87 extern int nd6_recalc_reachtm_interval; 88 89 static struct ifnet *nd6_defifp; 90 int nd6_defifindex; 91 92 int ip6_use_tempaddr = 0; 93 94 int ip6_desync_factor; 95 u_int32_t ip6_temp_preferred_lifetime = DEF_TEMP_PREFERRED_LIFETIME; 96 u_int32_t ip6_temp_valid_lifetime = DEF_TEMP_VALID_LIFETIME; 97 /* 98 * shorter lifetimes for debugging purposes. 99 int ip6_temp_preferred_lifetime = 800; 100 static int ip6_temp_valid_lifetime = 1800; 101 */ 102 int ip6_temp_regen_advance = TEMPADDR_REGEN_ADVANCE; 103 104 /* RTPREF_MEDIUM has to be 0! */ 105 #define RTPREF_HIGH 1 106 #define RTPREF_MEDIUM 0 107 #define RTPREF_LOW (-1) 108 #define RTPREF_RESERVED (-2) 109 #define RTPREF_INVALID (-3) /* internal */ 110 111 /* 112 * Receive Router Solicitation Message - just for routers. 113 * Router solicitation/advertisement is mostly managed by userland program 114 * (rtadvd) so here we have no function like nd6_ra_output(). 115 * 116 * Based on RFC 2461 117 */ 118 void 119 nd6_rs_input(m, off, icmp6len) 120 struct mbuf *m; 121 int off, icmp6len; 122 { 123 struct ifnet *ifp = m->m_pkthdr.rcvif; 124 struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *); 125 struct nd_router_solicit *nd_rs; 126 struct in6_addr saddr6 = ip6->ip6_src; 127 char *lladdr = NULL; 128 int lladdrlen = 0; 129 union nd_opts ndopts; 130 131 /* If I'm not a router, ignore it. */ 132 if (ip6_accept_rtadv != 0 || ip6_forwarding != 1) 133 goto freeit; 134 135 /* Sanity checks */ 136 if (ip6->ip6_hlim != 255) { 137 nd6log((LOG_ERR, 138 "nd6_rs_input: invalid hlim (%d) from %s to %s on %s\n", 139 ip6->ip6_hlim, ip6_sprintf(&ip6->ip6_src), 140 ip6_sprintf(&ip6->ip6_dst), if_name(ifp))); 141 goto bad; 142 } 143 144 /* 145 * Don't update the neighbor cache, if src = ::. 146 * This indicates that the src has no IP address assigned yet. 147 */ 148 if (IN6_IS_ADDR_UNSPECIFIED(&saddr6)) 149 goto freeit; 150 151 #ifndef PULLDOWN_TEST 152 IP6_EXTHDR_CHECK(m, off, icmp6len,); 153 nd_rs = (struct nd_router_solicit *)((caddr_t)ip6 + off); 154 #else 155 IP6_EXTHDR_GET(nd_rs, struct nd_router_solicit *, m, off, icmp6len); 156 if (nd_rs == NULL) { 157 icmp6stat.icp6s_tooshort++; 158 return; 159 } 160 #endif 161 162 icmp6len -= sizeof(*nd_rs); 163 nd6_option_init(nd_rs + 1, icmp6len, &ndopts); 164 if (nd6_options(&ndopts) < 0) { 165 nd6log((LOG_INFO, 166 "nd6_rs_input: invalid ND option, ignored\n")); 167 /* nd6_options have incremented stats */ 168 goto freeit; 169 } 170 171 if (ndopts.nd_opts_src_lladdr) { 172 lladdr = (char *)(ndopts.nd_opts_src_lladdr + 1); 173 lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3; 174 } 175 176 if (lladdr && ((ifp->if_addrlen + 2 + 7) & ~7) != lladdrlen) { 177 nd6log((LOG_INFO, 178 "nd6_rs_input: lladdrlen mismatch for %s " 179 "(if %d, RS packet %d)\n", 180 ip6_sprintf(&saddr6), 181 ifp->if_addrlen, lladdrlen - 2)); 182 goto bad; 183 } 184 185 nd6_cache_lladdr(ifp, &saddr6, lladdr, lladdrlen, ND_ROUTER_SOLICIT, 0); 186 187 freeit: 188 m_freem(m); 189 return; 190 191 bad: 192 icmp6stat.icp6s_badrs++; 193 m_freem(m); 194 } 195 196 /* 197 * Receive Router Advertisement Message. 198 * 199 * Based on RFC 2461 200 * TODO: on-link bit on prefix information 201 * TODO: ND_RA_FLAG_{OTHER,MANAGED} processing 202 */ 203 void 204 nd6_ra_input(m, off, icmp6len) 205 struct mbuf *m; 206 int off, icmp6len; 207 { 208 struct ifnet *ifp = m->m_pkthdr.rcvif; 209 struct nd_ifinfo *ndi = ND_IFINFO(ifp); 210 struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *); 211 struct nd_router_advert *nd_ra; 212 struct in6_addr saddr6 = ip6->ip6_src; 213 int mcast = 0; 214 union nd_opts ndopts; 215 struct nd_defrouter *dr; 216 217 /* 218 * We only accept RAs only when 219 * the system-wide variable allows the acceptance, and 220 * per-interface variable allows RAs on the receiving interface. 221 */ 222 if (ip6_accept_rtadv == 0) 223 goto freeit; 224 if (!(ndi->flags & ND6_IFF_ACCEPT_RTADV)) 225 goto freeit; 226 227 if (ip6->ip6_hlim != 255) { 228 nd6log((LOG_ERR, 229 "nd6_ra_input: invalid hlim (%d) from %s to %s on %s\n", 230 ip6->ip6_hlim, ip6_sprintf(&ip6->ip6_src), 231 ip6_sprintf(&ip6->ip6_dst), if_name(ifp))); 232 goto bad; 233 } 234 235 if (!IN6_IS_ADDR_LINKLOCAL(&saddr6)) { 236 nd6log((LOG_ERR, 237 "nd6_ra_input: src %s is not link-local\n", 238 ip6_sprintf(&saddr6))); 239 goto bad; 240 } 241 242 #ifndef PULLDOWN_TEST 243 IP6_EXTHDR_CHECK(m, off, icmp6len,); 244 nd_ra = (struct nd_router_advert *)((caddr_t)ip6 + off); 245 #else 246 IP6_EXTHDR_GET(nd_ra, struct nd_router_advert *, m, off, icmp6len); 247 if (nd_ra == NULL) { 248 icmp6stat.icp6s_tooshort++; 249 return; 250 } 251 #endif 252 253 icmp6len -= sizeof(*nd_ra); 254 nd6_option_init(nd_ra + 1, icmp6len, &ndopts); 255 if (nd6_options(&ndopts) < 0) { 256 nd6log((LOG_INFO, 257 "nd6_ra_input: invalid ND option, ignored\n")); 258 /* nd6_options have incremented stats */ 259 goto freeit; 260 } 261 262 { 263 struct nd_defrouter dr0; 264 u_int32_t advreachable = nd_ra->nd_ra_reachable; 265 266 /* remember if this is a multicasted advertisement */ 267 if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) 268 mcast = 1; 269 270 bzero(&dr0, sizeof(dr0)); 271 dr0.rtaddr = saddr6; 272 dr0.flags = nd_ra->nd_ra_flags_reserved; 273 if (rtpref(&dr0) == RTPREF_RESERVED) { 274 /* 275 * "reserved" router preference should be treated as 276 * 0-lifetime. Note that rtpref() covers the case that the 277 * kernel is not configured to support the preference 278 * extension. 279 */ 280 dr0.rtlifetime = 0; 281 } else 282 dr0.rtlifetime = ntohs(nd_ra->nd_ra_router_lifetime); 283 dr0.expire = time_second + dr0.rtlifetime; 284 dr0.ifp = ifp; 285 /* unspecified or not? (RFC 2461 6.3.4) */ 286 if (advreachable) { 287 advreachable = ntohl(advreachable); 288 if (advreachable <= MAX_REACHABLE_TIME && 289 ndi->basereachable != advreachable) { 290 ndi->basereachable = advreachable; 291 ndi->reachable = ND_COMPUTE_RTIME(ndi->basereachable); 292 ndi->recalctm = nd6_recalc_reachtm_interval; /* reset */ 293 } 294 } 295 if (nd_ra->nd_ra_retransmit) 296 ndi->retrans = ntohl(nd_ra->nd_ra_retransmit); 297 if (nd_ra->nd_ra_curhoplimit) 298 ndi->chlim = nd_ra->nd_ra_curhoplimit; 299 dr = defrtrlist_update(&dr0); 300 } 301 302 /* 303 * prefix 304 */ 305 if (ndopts.nd_opts_pi) { 306 struct nd_opt_hdr *pt; 307 struct nd_opt_prefix_info *pi = NULL; 308 struct nd_prefixctl pr; 309 310 for (pt = (struct nd_opt_hdr *)ndopts.nd_opts_pi; 311 pt <= (struct nd_opt_hdr *)ndopts.nd_opts_pi_end; 312 pt = (struct nd_opt_hdr *)((caddr_t)pt + 313 (pt->nd_opt_len << 3))) { 314 if (pt->nd_opt_type != ND_OPT_PREFIX_INFORMATION) 315 continue; 316 pi = (struct nd_opt_prefix_info *)pt; 317 318 if (pi->nd_opt_pi_len != 4) { 319 nd6log((LOG_INFO, 320 "nd6_ra_input: invalid option " 321 "len %d for prefix information option, " 322 "ignored\n", pi->nd_opt_pi_len)); 323 continue; 324 } 325 326 if (128 < pi->nd_opt_pi_prefix_len) { 327 nd6log((LOG_INFO, 328 "nd6_ra_input: invalid prefix " 329 "len %d for prefix information option, " 330 "ignored\n", pi->nd_opt_pi_prefix_len)); 331 continue; 332 } 333 334 if (IN6_IS_ADDR_MULTICAST(&pi->nd_opt_pi_prefix) 335 || IN6_IS_ADDR_LINKLOCAL(&pi->nd_opt_pi_prefix)) { 336 nd6log((LOG_INFO, 337 "nd6_ra_input: invalid prefix " 338 "%s, ignored\n", 339 ip6_sprintf(&pi->nd_opt_pi_prefix))); 340 continue; 341 } 342 343 bzero(&pr, sizeof(pr)); 344 pr.ndpr_prefix.sin6_family = AF_INET6; 345 pr.ndpr_prefix.sin6_len = sizeof(pr.ndpr_prefix); 346 pr.ndpr_prefix.sin6_addr = pi->nd_opt_pi_prefix; 347 pr.ndpr_ifp = (struct ifnet *)m->m_pkthdr.rcvif; 348 349 pr.ndpr_raf_onlink = (pi->nd_opt_pi_flags_reserved & 350 ND_OPT_PI_FLAG_ONLINK) ? 1 : 0; 351 pr.ndpr_raf_auto = (pi->nd_opt_pi_flags_reserved & 352 ND_OPT_PI_FLAG_AUTO) ? 1 : 0; 353 pr.ndpr_plen = pi->nd_opt_pi_prefix_len; 354 pr.ndpr_vltime = ntohl(pi->nd_opt_pi_valid_time); 355 pr.ndpr_pltime = ntohl(pi->nd_opt_pi_preferred_time); 356 (void)prelist_update(&pr, dr, m, mcast); 357 } 358 } 359 360 /* 361 * MTU 362 */ 363 if (ndopts.nd_opts_mtu && ndopts.nd_opts_mtu->nd_opt_mtu_len == 1) { 364 u_long mtu; 365 u_long maxmtu; 366 367 mtu = (u_long)ntohl(ndopts.nd_opts_mtu->nd_opt_mtu_mtu); 368 369 /* lower bound */ 370 if (mtu < IPV6_MMTU) { 371 nd6log((LOG_INFO, "nd6_ra_input: bogus mtu option " 372 "mtu=%lu sent from %s, ignoring\n", 373 mtu, ip6_sprintf(&ip6->ip6_src))); 374 goto skip; 375 } 376 377 /* upper bound */ 378 maxmtu = (ndi->maxmtu && ndi->maxmtu < ifp->if_mtu) 379 ? ndi->maxmtu : ifp->if_mtu; 380 if (mtu <= maxmtu) { 381 int change = (ndi->linkmtu != mtu); 382 383 ndi->linkmtu = mtu; 384 if (change) /* in6_maxmtu may change */ 385 in6_setmaxmtu(); 386 } else { 387 nd6log((LOG_INFO, "nd6_ra_input: bogus mtu " 388 "mtu=%lu sent from %s; " 389 "exceeds maxmtu %lu, ignoring\n", 390 mtu, ip6_sprintf(&ip6->ip6_src), maxmtu)); 391 } 392 } 393 394 skip: 395 396 /* 397 * Source link layer address 398 */ 399 { 400 char *lladdr = NULL; 401 int lladdrlen = 0; 402 403 if (ndopts.nd_opts_src_lladdr) { 404 lladdr = (char *)(ndopts.nd_opts_src_lladdr + 1); 405 lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3; 406 } 407 408 if (lladdr && ((ifp->if_addrlen + 2 + 7) & ~7) != lladdrlen) { 409 nd6log((LOG_INFO, 410 "nd6_ra_input: lladdrlen mismatch for %s " 411 "(if %d, RA packet %d)\n", ip6_sprintf(&saddr6), 412 ifp->if_addrlen, lladdrlen - 2)); 413 goto bad; 414 } 415 416 nd6_cache_lladdr(ifp, &saddr6, lladdr, 417 lladdrlen, ND_ROUTER_ADVERT, 0); 418 419 /* 420 * Installing a link-layer address might change the state of the 421 * router's neighbor cache, which might also affect our on-link 422 * detection of adveritsed prefixes. 423 */ 424 pfxlist_onlink_check(); 425 } 426 427 freeit: 428 m_freem(m); 429 return; 430 431 bad: 432 icmp6stat.icp6s_badra++; 433 m_freem(m); 434 } 435 436 /* 437 * default router list proccessing sub routines 438 */ 439 440 /* tell the change to user processes watching the routing socket. */ 441 static void 442 nd6_rtmsg(cmd, rt) 443 int cmd; 444 struct rtentry *rt; 445 { 446 struct rt_addrinfo info; 447 448 bzero((caddr_t)&info, sizeof(info)); 449 info.rti_info[RTAX_DST] = rt_key(rt); 450 info.rti_info[RTAX_GATEWAY] = rt->rt_gateway; 451 info.rti_info[RTAX_NETMASK] = rt_mask(rt); 452 if (rt->rt_ifp) { 453 info.rti_info[RTAX_IFP] = 454 TAILQ_FIRST(&rt->rt_ifp->if_addrlist)->ifa_addr; 455 info.rti_info[RTAX_IFA] = rt->rt_ifa->ifa_addr; 456 } 457 458 rt_missmsg(cmd, &info, rt->rt_flags, 0); 459 } 460 461 void 462 defrouter_addreq(new) 463 struct nd_defrouter *new; 464 { 465 struct sockaddr_in6 def, mask, gate; 466 struct rtentry *newrt = NULL; 467 int s; 468 int error; 469 470 bzero(&def, sizeof(def)); 471 bzero(&mask, sizeof(mask)); 472 bzero(&gate, sizeof(gate)); 473 474 def.sin6_len = mask.sin6_len = gate.sin6_len = 475 sizeof(struct sockaddr_in6); 476 def.sin6_family = gate.sin6_family = AF_INET6; 477 gate.sin6_addr = new->rtaddr; 478 479 s = splnet(); 480 error = rtrequest(RTM_ADD, (struct sockaddr *)&def, 481 (struct sockaddr *)&gate, (struct sockaddr *)&mask, 482 RTF_GATEWAY, &newrt); 483 if (newrt) { 484 RT_LOCK(newrt); 485 nd6_rtmsg(RTM_ADD, newrt); /* tell user process */ 486 RT_REMREF(newrt); 487 RT_UNLOCK(newrt); 488 } 489 if (error == 0) 490 new->installed = 1; 491 splx(s); 492 return; 493 } 494 495 struct nd_defrouter * 496 defrouter_lookup(addr, ifp) 497 struct in6_addr *addr; 498 struct ifnet *ifp; 499 { 500 struct nd_defrouter *dr; 501 502 for (dr = TAILQ_FIRST(&nd_defrouter); dr; 503 dr = TAILQ_NEXT(dr, dr_entry)) { 504 if (dr->ifp == ifp && IN6_ARE_ADDR_EQUAL(addr, &dr->rtaddr)) 505 return (dr); 506 } 507 508 return (NULL); /* search failed */ 509 } 510 511 /* 512 * Remove the default route for a given router. 513 * This is just a subroutine function for defrouter_select(), and should 514 * not be called from anywhere else. 515 */ 516 static void 517 defrouter_delreq(dr) 518 struct nd_defrouter *dr; 519 { 520 struct sockaddr_in6 def, mask, gate; 521 struct rtentry *oldrt = NULL; 522 523 bzero(&def, sizeof(def)); 524 bzero(&mask, sizeof(mask)); 525 bzero(&gate, sizeof(gate)); 526 527 def.sin6_len = mask.sin6_len = gate.sin6_len = 528 sizeof(struct sockaddr_in6); 529 def.sin6_family = gate.sin6_family = AF_INET6; 530 gate.sin6_addr = dr->rtaddr; 531 532 rtrequest(RTM_DELETE, (struct sockaddr *)&def, 533 (struct sockaddr *)&gate, 534 (struct sockaddr *)&mask, RTF_GATEWAY, &oldrt); 535 if (oldrt) { 536 nd6_rtmsg(RTM_DELETE, oldrt); 537 RTFREE(oldrt); 538 } 539 540 dr->installed = 0; 541 } 542 543 /* 544 * remove all default routes from default router list 545 */ 546 void 547 defrouter_reset() 548 { 549 struct nd_defrouter *dr; 550 551 for (dr = TAILQ_FIRST(&nd_defrouter); dr; 552 dr = TAILQ_NEXT(dr, dr_entry)) 553 defrouter_delreq(dr); 554 555 /* 556 * XXX should we also nuke any default routers in the kernel, by 557 * going through them by rtalloc1()? 558 */ 559 } 560 561 void 562 defrtrlist_del(dr) 563 struct nd_defrouter *dr; 564 { 565 struct nd_defrouter *deldr = NULL; 566 struct nd_prefix *pr; 567 568 /* 569 * Flush all the routing table entries that use the router 570 * as a next hop. 571 */ 572 if (!ip6_forwarding && ip6_accept_rtadv) /* XXX: better condition? */ 573 rt6_flush(&dr->rtaddr, dr->ifp); 574 575 if (dr->installed) { 576 deldr = dr; 577 defrouter_delreq(dr); 578 } 579 TAILQ_REMOVE(&nd_defrouter, dr, dr_entry); 580 581 /* 582 * Also delete all the pointers to the router in each prefix lists. 583 */ 584 for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) { 585 struct nd_pfxrouter *pfxrtr; 586 if ((pfxrtr = pfxrtr_lookup(pr, dr)) != NULL) 587 pfxrtr_del(pfxrtr); 588 } 589 pfxlist_onlink_check(); 590 591 /* 592 * If the router is the primary one, choose a new one. 593 * Note that defrouter_select() will remove the current gateway 594 * from the routing table. 595 */ 596 if (deldr) 597 defrouter_select(); 598 599 free(dr, M_IP6NDP); 600 } 601 602 /* 603 * Default Router Selection according to Section 6.3.6 of RFC 2461 and 604 * draft-ietf-ipngwg-router-selection: 605 * 1) Routers that are reachable or probably reachable should be preferred. 606 * If we have more than one (probably) reachable router, prefer ones 607 * with the highest router preference. 608 * 2) When no routers on the list are known to be reachable or 609 * probably reachable, routers SHOULD be selected in a round-robin 610 * fashion, regardless of router preference values. 611 * 3) If the Default Router List is empty, assume that all 612 * destinations are on-link. 613 * 614 * We assume nd_defrouter is sorted by router preference value. 615 * Since the code below covers both with and without router preference cases, 616 * we do not need to classify the cases by ifdef. 617 * 618 * At this moment, we do not try to install more than one default router, 619 * even when the multipath routing is available, because we're not sure about 620 * the benefits for stub hosts comparing to the risk of making the code 621 * complicated and the possibility of introducing bugs. 622 */ 623 void 624 defrouter_select() 625 { 626 int s = splnet(); 627 struct nd_defrouter *dr, *selected_dr = NULL, *installed_dr = NULL; 628 struct rtentry *rt = NULL; 629 struct llinfo_nd6 *ln = NULL; 630 631 /* 632 * This function should be called only when acting as an autoconfigured 633 * host. Although the remaining part of this function is not effective 634 * if the node is not an autoconfigured host, we explicitly exclude 635 * such cases here for safety. 636 */ 637 if (ip6_forwarding || !ip6_accept_rtadv) { 638 nd6log((LOG_WARNING, 639 "defrouter_select: called unexpectedly (forwarding=%d, " 640 "accept_rtadv=%d)\n", ip6_forwarding, ip6_accept_rtadv)); 641 splx(s); 642 return; 643 } 644 645 /* 646 * Let's handle easy case (3) first: 647 * If default router list is empty, there's nothing to be done. 648 */ 649 if (!TAILQ_FIRST(&nd_defrouter)) { 650 splx(s); 651 return; 652 } 653 654 /* 655 * Search for a (probably) reachable router from the list. 656 * We just pick up the first reachable one (if any), assuming that 657 * the ordering rule of the list described in defrtrlist_update(). 658 */ 659 for (dr = TAILQ_FIRST(&nd_defrouter); dr; 660 dr = TAILQ_NEXT(dr, dr_entry)) { 661 if (selected_dr == NULL && 662 (rt = nd6_lookup(&dr->rtaddr, 0, dr->ifp)) && 663 (ln = (struct llinfo_nd6 *)rt->rt_llinfo) && 664 ND6_IS_LLINFO_PROBREACH(ln)) { 665 selected_dr = dr; 666 } 667 668 if (dr->installed && installed_dr == NULL) 669 installed_dr = dr; 670 else if (dr->installed && installed_dr) { 671 /* this should not happen. warn for diagnosis. */ 672 log(LOG_ERR, "defrouter_select: more than one router" 673 " is installed\n"); 674 } 675 } 676 /* 677 * If none of the default routers was found to be reachable, 678 * round-robin the list regardless of preference. 679 * Otherwise, if we have an installed router, check if the selected 680 * (reachable) router should really be preferred to the installed one. 681 * We only prefer the new router when the old one is not reachable 682 * or when the new one has a really higher preference value. 683 */ 684 if (selected_dr == NULL) { 685 if (installed_dr == NULL || !TAILQ_NEXT(installed_dr, dr_entry)) 686 selected_dr = TAILQ_FIRST(&nd_defrouter); 687 else 688 selected_dr = TAILQ_NEXT(installed_dr, dr_entry); 689 } else if (installed_dr && 690 (rt = nd6_lookup(&installed_dr->rtaddr, 0, installed_dr->ifp)) && 691 (ln = (struct llinfo_nd6 *)rt->rt_llinfo) && 692 ND6_IS_LLINFO_PROBREACH(ln) && 693 rtpref(selected_dr) <= rtpref(installed_dr)) { 694 selected_dr = installed_dr; 695 } 696 697 /* 698 * If the selected router is different than the installed one, 699 * remove the installed router and install the selected one. 700 * Note that the selected router is never NULL here. 701 */ 702 if (installed_dr != selected_dr) { 703 if (installed_dr) 704 defrouter_delreq(installed_dr); 705 defrouter_addreq(selected_dr); 706 } 707 708 splx(s); 709 return; 710 } 711 712 /* 713 * for default router selection 714 * regards router-preference field as a 2-bit signed integer 715 */ 716 static int 717 rtpref(struct nd_defrouter *dr) 718 { 719 switch (dr->flags & ND_RA_FLAG_RTPREF_MASK) { 720 case ND_RA_FLAG_RTPREF_HIGH: 721 return (RTPREF_HIGH); 722 case ND_RA_FLAG_RTPREF_MEDIUM: 723 return (RTPREF_MEDIUM); 724 case ND_RA_FLAG_RTPREF_RSV: 725 return (RTPREF_RESERVED); 726 case ND_RA_FLAG_RTPREF_LOW: 727 return (RTPREF_LOW); 728 default: 729 /* 730 * This case should never happen. If it did, it would mean a 731 * serious bug of kernel internal. We thus always bark here. 732 * Or, can we even panic? 733 */ 734 log(LOG_ERR, "rtpref: impossible RA flag %x\n", dr->flags); 735 return (RTPREF_INVALID); 736 } 737 /* NOTREACHED */ 738 } 739 740 static struct nd_defrouter * 741 defrtrlist_update(new) 742 struct nd_defrouter *new; 743 { 744 struct nd_defrouter *dr, *n; 745 int s = splnet(); 746 747 if ((dr = defrouter_lookup(&new->rtaddr, new->ifp)) != NULL) { 748 /* entry exists */ 749 if (new->rtlifetime == 0) { 750 defrtrlist_del(dr); 751 dr = NULL; 752 } else { 753 int oldpref = rtpref(dr); 754 755 /* override */ 756 dr->flags = new->flags; /* xxx flag check */ 757 dr->rtlifetime = new->rtlifetime; 758 dr->expire = new->expire; 759 760 /* 761 * If the preference does not change, there's no need 762 * to sort the entries. 763 */ 764 if (rtpref(new) == oldpref) { 765 splx(s); 766 return (dr); 767 } 768 769 /* 770 * preferred router may be changed, so relocate 771 * this router. 772 * XXX: calling TAILQ_REMOVE directly is a bad manner. 773 * However, since defrtrlist_del() has many side 774 * effects, we intentionally do so here. 775 * defrouter_select() below will handle routing 776 * changes later. 777 */ 778 TAILQ_REMOVE(&nd_defrouter, dr, dr_entry); 779 n = dr; 780 goto insert; 781 } 782 splx(s); 783 return (dr); 784 } 785 786 /* entry does not exist */ 787 if (new->rtlifetime == 0) { 788 splx(s); 789 return (NULL); 790 } 791 792 n = (struct nd_defrouter *)malloc(sizeof(*n), M_IP6NDP, M_NOWAIT); 793 if (n == NULL) { 794 splx(s); 795 return (NULL); 796 } 797 bzero(n, sizeof(*n)); 798 *n = *new; 799 800 insert: 801 /* 802 * Insert the new router in the Default Router List; 803 * The Default Router List should be in the descending order 804 * of router-preferece. Routers with the same preference are 805 * sorted in the arriving time order. 806 */ 807 808 /* insert at the end of the group */ 809 for (dr = TAILQ_FIRST(&nd_defrouter); dr; 810 dr = TAILQ_NEXT(dr, dr_entry)) { 811 if (rtpref(n) > rtpref(dr)) 812 break; 813 } 814 if (dr) 815 TAILQ_INSERT_BEFORE(dr, n, dr_entry); 816 else 817 TAILQ_INSERT_TAIL(&nd_defrouter, n, dr_entry); 818 819 defrouter_select(); 820 821 splx(s); 822 823 return (n); 824 } 825 826 static struct nd_pfxrouter * 827 pfxrtr_lookup(pr, dr) 828 struct nd_prefix *pr; 829 struct nd_defrouter *dr; 830 { 831 struct nd_pfxrouter *search; 832 833 for (search = pr->ndpr_advrtrs.lh_first; search; search = search->pfr_next) { 834 if (search->router == dr) 835 break; 836 } 837 838 return (search); 839 } 840 841 static void 842 pfxrtr_add(pr, dr) 843 struct nd_prefix *pr; 844 struct nd_defrouter *dr; 845 { 846 struct nd_pfxrouter *new; 847 848 new = (struct nd_pfxrouter *)malloc(sizeof(*new), M_IP6NDP, M_NOWAIT); 849 if (new == NULL) 850 return; 851 bzero(new, sizeof(*new)); 852 new->router = dr; 853 854 LIST_INSERT_HEAD(&pr->ndpr_advrtrs, new, pfr_entry); 855 856 pfxlist_onlink_check(); 857 } 858 859 static void 860 pfxrtr_del(pfr) 861 struct nd_pfxrouter *pfr; 862 { 863 LIST_REMOVE(pfr, pfr_entry); 864 free(pfr, M_IP6NDP); 865 } 866 867 struct nd_prefix * 868 nd6_prefix_lookup(key) 869 struct nd_prefixctl *key; 870 { 871 struct nd_prefix *search; 872 873 for (search = nd_prefix.lh_first; search; search = search->ndpr_next) { 874 if (key->ndpr_ifp == search->ndpr_ifp && 875 key->ndpr_plen == search->ndpr_plen && 876 in6_are_prefix_equal(&key->ndpr_prefix.sin6_addr, 877 &search->ndpr_prefix.sin6_addr, key->ndpr_plen)) { 878 break; 879 } 880 } 881 882 return (search); 883 } 884 885 int 886 nd6_prelist_add(pr, dr, newp) 887 struct nd_prefixctl *pr; 888 struct nd_prefix **newp; 889 struct nd_defrouter *dr; 890 { 891 struct nd_prefix *new = NULL; 892 int error = 0; 893 int i, s; 894 895 new = (struct nd_prefix *)malloc(sizeof(*new), M_IP6NDP, M_NOWAIT); 896 if (new == NULL) 897 return(ENOMEM); 898 bzero(new, sizeof(*new)); 899 new->ndpr_ifp = pr->ndpr_ifp; 900 new->ndpr_prefix = pr->ndpr_prefix; 901 new->ndpr_plen = pr->ndpr_plen; 902 new->ndpr_vltime = pr->ndpr_vltime; 903 new->ndpr_pltime = pr->ndpr_pltime; 904 new->ndpr_flags = pr->ndpr_flags; 905 if ((error = in6_init_prefix_ltimes(new)) != 0) { 906 free(new, M_IP6NDP); 907 return(error); 908 } 909 new->ndpr_lastupdate = time_second; 910 if (newp != NULL) 911 *newp = new; 912 913 /* initialization */ 914 LIST_INIT(&new->ndpr_advrtrs); 915 in6_prefixlen2mask(&new->ndpr_mask, new->ndpr_plen); 916 /* make prefix in the canonical form */ 917 for (i = 0; i < 4; i++) 918 new->ndpr_prefix.sin6_addr.s6_addr32[i] &= 919 new->ndpr_mask.s6_addr32[i]; 920 921 s = splnet(); 922 /* link ndpr_entry to nd_prefix list */ 923 LIST_INSERT_HEAD(&nd_prefix, new, ndpr_entry); 924 splx(s); 925 926 /* ND_OPT_PI_FLAG_ONLINK processing */ 927 if (new->ndpr_raf_onlink) { 928 int e; 929 930 if ((e = nd6_prefix_onlink(new)) != 0) { 931 nd6log((LOG_ERR, "nd6_prelist_add: failed to make " 932 "the prefix %s/%d on-link on %s (errno=%d)\n", 933 ip6_sprintf(&pr->ndpr_prefix.sin6_addr), 934 pr->ndpr_plen, if_name(pr->ndpr_ifp), e)); 935 /* proceed anyway. XXX: is it correct? */ 936 } 937 } 938 939 if (dr) 940 pfxrtr_add(new, dr); 941 942 return 0; 943 } 944 945 void 946 prelist_remove(pr) 947 struct nd_prefix *pr; 948 { 949 struct nd_pfxrouter *pfr, *next; 950 int e, s; 951 952 /* make sure to invalidate the prefix until it is really freed. */ 953 pr->ndpr_vltime = 0; 954 pr->ndpr_pltime = 0; 955 956 /* 957 * Though these flags are now meaningless, we'd rather keep the value 958 * of pr->ndpr_raf_onlink and pr->ndpr_raf_auto not to confuse users 959 * when executing "ndp -p". 960 */ 961 962 if ((pr->ndpr_stateflags & NDPRF_ONLINK) != 0 && 963 (e = nd6_prefix_offlink(pr)) != 0) { 964 nd6log((LOG_ERR, "prelist_remove: failed to make %s/%d offlink " 965 "on %s, errno=%d\n", 966 ip6_sprintf(&pr->ndpr_prefix.sin6_addr), 967 pr->ndpr_plen, if_name(pr->ndpr_ifp), e)); 968 /* what should we do? */ 969 } 970 971 if (pr->ndpr_refcnt > 0) 972 return; /* notice here? */ 973 974 s = splnet(); 975 976 /* unlink ndpr_entry from nd_prefix list */ 977 LIST_REMOVE(pr, ndpr_entry); 978 979 /* free list of routers that adversed the prefix */ 980 for (pfr = pr->ndpr_advrtrs.lh_first; pfr; pfr = next) { 981 next = pfr->pfr_next; 982 983 free(pfr, M_IP6NDP); 984 } 985 splx(s); 986 987 free(pr, M_IP6NDP); 988 989 pfxlist_onlink_check(); 990 } 991 992 static int 993 prelist_update(new, dr, m, mcast) 994 struct nd_prefixctl *new; 995 struct nd_defrouter *dr; /* may be NULL */ 996 struct mbuf *m; 997 int mcast; 998 { 999 struct in6_ifaddr *ia6 = NULL, *ia6_match = NULL; 1000 struct ifaddr *ifa; 1001 struct ifnet *ifp = new->ndpr_ifp; 1002 struct nd_prefix *pr; 1003 int s = splnet(); 1004 int error = 0; 1005 int newprefix = 0; 1006 int auth; 1007 struct in6_addrlifetime lt6_tmp; 1008 1009 auth = 0; 1010 if (m) { 1011 /* 1012 * Authenticity for NA consists authentication for 1013 * both IP header and IP datagrams, doesn't it ? 1014 */ 1015 #if defined(M_AUTHIPHDR) && defined(M_AUTHIPDGM) 1016 auth = ((m->m_flags & M_AUTHIPHDR) && 1017 (m->m_flags & M_AUTHIPDGM)); 1018 #endif 1019 } 1020 1021 if ((pr = nd6_prefix_lookup(new)) != NULL) { 1022 /* 1023 * nd6_prefix_lookup() ensures that pr and new have the same 1024 * prefix on a same interface. 1025 */ 1026 1027 /* 1028 * Update prefix information. Note that the on-link (L) bit 1029 * and the autonomous (A) bit should NOT be changed from 1 1030 * to 0. 1031 */ 1032 if (new->ndpr_raf_onlink == 1) 1033 pr->ndpr_raf_onlink = 1; 1034 if (new->ndpr_raf_auto == 1) 1035 pr->ndpr_raf_auto = 1; 1036 if (new->ndpr_raf_onlink) { 1037 pr->ndpr_vltime = new->ndpr_vltime; 1038 pr->ndpr_pltime = new->ndpr_pltime; 1039 (void)in6_init_prefix_ltimes(pr); /* XXX error case? */ 1040 pr->ndpr_lastupdate = time_second; 1041 } 1042 1043 if (new->ndpr_raf_onlink && 1044 (pr->ndpr_stateflags & NDPRF_ONLINK) == 0) { 1045 int e; 1046 1047 if ((e = nd6_prefix_onlink(pr)) != 0) { 1048 nd6log((LOG_ERR, 1049 "prelist_update: failed to make " 1050 "the prefix %s/%d on-link on %s " 1051 "(errno=%d)\n", 1052 ip6_sprintf(&pr->ndpr_prefix.sin6_addr), 1053 pr->ndpr_plen, if_name(pr->ndpr_ifp), e)); 1054 /* proceed anyway. XXX: is it correct? */ 1055 } 1056 } 1057 1058 if (dr && pfxrtr_lookup(pr, dr) == NULL) 1059 pfxrtr_add(pr, dr); 1060 } else { 1061 struct nd_prefix *newpr = NULL; 1062 1063 newprefix = 1; 1064 1065 if (new->ndpr_vltime == 0) 1066 goto end; 1067 if (new->ndpr_raf_onlink == 0 && new->ndpr_raf_auto == 0) 1068 goto end; 1069 1070 error = nd6_prelist_add(new, dr, &newpr); 1071 if (error != 0 || newpr == NULL) { 1072 nd6log((LOG_NOTICE, "prelist_update: " 1073 "nd6_prelist_add failed for %s/%d on %s " 1074 "errno=%d, returnpr=%p\n", 1075 ip6_sprintf(&new->ndpr_prefix.sin6_addr), 1076 new->ndpr_plen, if_name(new->ndpr_ifp), 1077 error, newpr)); 1078 goto end; /* we should just give up in this case. */ 1079 } 1080 1081 /* 1082 * XXX: from the ND point of view, we can ignore a prefix 1083 * with the on-link bit being zero. However, we need a 1084 * prefix structure for references from autoconfigured 1085 * addresses. Thus, we explicitly make sure that the prefix 1086 * itself expires now. 1087 */ 1088 if (newpr->ndpr_raf_onlink == 0) { 1089 newpr->ndpr_vltime = 0; 1090 newpr->ndpr_pltime = 0; 1091 in6_init_prefix_ltimes(newpr); 1092 } 1093 1094 pr = newpr; 1095 } 1096 1097 /* 1098 * Address autoconfiguration based on Section 5.5.3 of RFC 2462. 1099 * Note that pr must be non NULL at this point. 1100 */ 1101 1102 /* 5.5.3 (a). Ignore the prefix without the A bit set. */ 1103 if (!new->ndpr_raf_auto) 1104 goto end; 1105 1106 /* 1107 * 5.5.3 (b). the link-local prefix should have been ignored in 1108 * nd6_ra_input. 1109 */ 1110 1111 /* 5.5.3 (c). Consistency check on lifetimes: pltime <= vltime. */ 1112 if (new->ndpr_pltime > new->ndpr_vltime) { 1113 error = EINVAL; /* XXX: won't be used */ 1114 goto end; 1115 } 1116 1117 /* 1118 * 5.5.3 (d). If the prefix advertised is not equal to the prefix of 1119 * an address configured by stateless autoconfiguration already in the 1120 * list of addresses associated with the interface, and the Valid 1121 * Lifetime is not 0, form an address. We first check if we have 1122 * a matching prefix. 1123 * Note: we apply a clarification in rfc2462bis-02 here. We only 1124 * consider autoconfigured addresses while RFC2462 simply said 1125 * "address". 1126 */ 1127 TAILQ_FOREACH(ifa, &ifp->if_addrlist, ifa_list) { 1128 struct in6_ifaddr *ifa6; 1129 u_int32_t remaininglifetime; 1130 1131 if (ifa->ifa_addr->sa_family != AF_INET6) 1132 continue; 1133 1134 ifa6 = (struct in6_ifaddr *)ifa; 1135 1136 /* 1137 * We only consider autoconfigured addresses as per rfc2462bis. 1138 */ 1139 if (!(ifa6->ia6_flags & IN6_IFF_AUTOCONF)) 1140 continue; 1141 1142 /* 1143 * Spec is not clear here, but I believe we should concentrate 1144 * on unicast (i.e. not anycast) addresses. 1145 * XXX: other ia6_flags? detached or duplicated? 1146 */ 1147 if ((ifa6->ia6_flags & IN6_IFF_ANYCAST) != 0) 1148 continue; 1149 1150 /* 1151 * Ignore the address if it is not associated with a prefix 1152 * or is associated with a prefix that is different from this 1153 * one. (pr is never NULL here) 1154 */ 1155 if (ifa6->ia6_ndpr != pr) 1156 continue; 1157 1158 if (ia6_match == NULL) /* remember the first one */ 1159 ia6_match = ifa6; 1160 1161 /* 1162 * An already autoconfigured address matched. Now that we 1163 * are sure there is at least one matched address, we can 1164 * proceed to 5.5.3. (e): update the lifetimes according to the 1165 * "two hours" rule and the privacy extension. 1166 * We apply some clarifications in rfc2462bis: 1167 * - use remaininglifetime instead of storedlifetime as a 1168 * variable name 1169 * - remove the dead code in the "two-hour" rule 1170 */ 1171 #define TWOHOUR (120*60) 1172 lt6_tmp = ifa6->ia6_lifetime; 1173 1174 if (lt6_tmp.ia6t_vltime == ND6_INFINITE_LIFETIME) 1175 remaininglifetime = ND6_INFINITE_LIFETIME; 1176 else if (time_second - ifa6->ia6_updatetime > 1177 lt6_tmp.ia6t_vltime) { 1178 /* 1179 * The case of "invalid" address. We should usually 1180 * not see this case. 1181 */ 1182 remaininglifetime = 0; 1183 } else 1184 remaininglifetime = lt6_tmp.ia6t_vltime - 1185 (time_second - ifa6->ia6_updatetime); 1186 1187 /* when not updating, keep the current stored lifetime. */ 1188 lt6_tmp.ia6t_vltime = remaininglifetime; 1189 1190 if (TWOHOUR < new->ndpr_vltime || 1191 remaininglifetime < new->ndpr_vltime) { 1192 lt6_tmp.ia6t_vltime = new->ndpr_vltime; 1193 } else if (remaininglifetime <= TWOHOUR) { 1194 if (auth) { 1195 lt6_tmp.ia6t_vltime = new->ndpr_vltime; 1196 } 1197 } else { 1198 /* 1199 * new->ndpr_vltime <= TWOHOUR && 1200 * TWOHOUR < remaininglifetime 1201 */ 1202 lt6_tmp.ia6t_vltime = TWOHOUR; 1203 } 1204 1205 /* The 2 hour rule is not imposed for preferred lifetime. */ 1206 lt6_tmp.ia6t_pltime = new->ndpr_pltime; 1207 1208 in6_init_address_ltimes(pr, <6_tmp); 1209 1210 /* 1211 * We need to treat lifetimes for temporary addresses 1212 * differently, according to 1213 * draft-ietf-ipv6-privacy-addrs-v2-01.txt 3.3 (1); 1214 * we only update the lifetimes when they are in the maximum 1215 * intervals. 1216 */ 1217 if ((ifa6->ia6_flags & IN6_IFF_TEMPORARY) != 0) { 1218 u_int32_t maxvltime, maxpltime; 1219 1220 if (ip6_temp_valid_lifetime > 1221 (u_int32_t)((time_second - ifa6->ia6_createtime) + 1222 ip6_desync_factor)) { 1223 maxvltime = ip6_temp_valid_lifetime - 1224 (time_second - ifa6->ia6_createtime) - 1225 ip6_desync_factor; 1226 } else 1227 maxvltime = 0; 1228 if (ip6_temp_preferred_lifetime > 1229 (u_int32_t)((time_second - ifa6->ia6_createtime) + 1230 ip6_desync_factor)) { 1231 maxpltime = ip6_temp_preferred_lifetime - 1232 (time_second - ifa6->ia6_createtime) - 1233 ip6_desync_factor; 1234 } else 1235 maxpltime = 0; 1236 1237 if (lt6_tmp.ia6t_vltime == ND6_INFINITE_LIFETIME || 1238 lt6_tmp.ia6t_vltime > maxvltime) { 1239 lt6_tmp.ia6t_vltime = maxvltime; 1240 } 1241 if (lt6_tmp.ia6t_pltime == ND6_INFINITE_LIFETIME || 1242 lt6_tmp.ia6t_pltime > maxpltime) { 1243 lt6_tmp.ia6t_pltime = maxpltime; 1244 } 1245 } 1246 ifa6->ia6_lifetime = lt6_tmp; 1247 ifa6->ia6_updatetime = time_second; 1248 } 1249 if (ia6_match == NULL && new->ndpr_vltime) { 1250 int ifidlen; 1251 1252 /* 1253 * 5.5.3 (d) (continued) 1254 * No address matched and the valid lifetime is non-zero. 1255 * Create a new address. 1256 */ 1257 1258 /* 1259 * Prefix Length check: 1260 * If the sum of the prefix length and interface identifier 1261 * length does not equal 128 bits, the Prefix Information 1262 * option MUST be ignored. The length of the interface 1263 * identifier is defined in a separate link-type specific 1264 * document. 1265 */ 1266 ifidlen = in6_if2idlen(ifp); 1267 if (ifidlen < 0) { 1268 /* this should not happen, so we always log it. */ 1269 log(LOG_ERR, "prelist_update: IFID undefined (%s)\n", 1270 if_name(ifp)); 1271 goto end; 1272 } 1273 if (ifidlen + pr->ndpr_plen != 128) { 1274 nd6log((LOG_INFO, 1275 "prelist_update: invalid prefixlen " 1276 "%d for %s, ignored\n", 1277 pr->ndpr_plen, if_name(ifp))); 1278 goto end; 1279 } 1280 1281 if ((ia6 = in6_ifadd(new, mcast)) != NULL) { 1282 /* 1283 * note that we should use pr (not new) for reference. 1284 */ 1285 pr->ndpr_refcnt++; 1286 ia6->ia6_ndpr = pr; 1287 1288 /* 1289 * RFC 3041 3.3 (2). 1290 * When a new public address is created as described 1291 * in RFC2462, also create a new temporary address. 1292 * 1293 * RFC 3041 3.5. 1294 * When an interface connects to a new link, a new 1295 * randomized interface identifier should be generated 1296 * immediately together with a new set of temporary 1297 * addresses. Thus, we specifiy 1 as the 2nd arg of 1298 * in6_tmpifadd(). 1299 */ 1300 if (ip6_use_tempaddr) { 1301 int e; 1302 if ((e = in6_tmpifadd(ia6, 1, 1)) != 0) { 1303 nd6log((LOG_NOTICE, "prelist_update: " 1304 "failed to create a temporary " 1305 "address, errno=%d\n", 1306 e)); 1307 } 1308 } 1309 1310 /* 1311 * A newly added address might affect the status 1312 * of other addresses, so we check and update it. 1313 * XXX: what if address duplication happens? 1314 */ 1315 pfxlist_onlink_check(); 1316 } else { 1317 /* just set an error. do not bark here. */ 1318 error = EADDRNOTAVAIL; /* XXX: might be unused. */ 1319 } 1320 } 1321 1322 end: 1323 splx(s); 1324 return error; 1325 } 1326 1327 /* 1328 * A supplement function used in the on-link detection below; 1329 * detect if a given prefix has a (probably) reachable advertising router. 1330 * XXX: lengthy function name... 1331 */ 1332 static struct nd_pfxrouter * 1333 find_pfxlist_reachable_router(pr) 1334 struct nd_prefix *pr; 1335 { 1336 struct nd_pfxrouter *pfxrtr; 1337 struct rtentry *rt; 1338 struct llinfo_nd6 *ln; 1339 1340 for (pfxrtr = LIST_FIRST(&pr->ndpr_advrtrs); pfxrtr; 1341 pfxrtr = LIST_NEXT(pfxrtr, pfr_entry)) { 1342 if ((rt = nd6_lookup(&pfxrtr->router->rtaddr, 0, 1343 pfxrtr->router->ifp)) && 1344 (ln = (struct llinfo_nd6 *)rt->rt_llinfo) && 1345 ND6_IS_LLINFO_PROBREACH(ln)) 1346 break; /* found */ 1347 } 1348 1349 return (pfxrtr); 1350 } 1351 1352 /* 1353 * Check if each prefix in the prefix list has at least one available router 1354 * that advertised the prefix (a router is "available" if its neighbor cache 1355 * entry is reachable or probably reachable). 1356 * If the check fails, the prefix may be off-link, because, for example, 1357 * we have moved from the network but the lifetime of the prefix has not 1358 * expired yet. So we should not use the prefix if there is another prefix 1359 * that has an available router. 1360 * But, if there is no prefix that has an available router, we still regards 1361 * all the prefixes as on-link. This is because we can't tell if all the 1362 * routers are simply dead or if we really moved from the network and there 1363 * is no router around us. 1364 */ 1365 void 1366 pfxlist_onlink_check() 1367 { 1368 struct nd_prefix *pr; 1369 struct in6_ifaddr *ifa; 1370 struct nd_defrouter *dr; 1371 struct nd_pfxrouter *pfxrtr = NULL; 1372 1373 /* 1374 * Check if there is a prefix that has a reachable advertising 1375 * router. 1376 */ 1377 for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) { 1378 if (pr->ndpr_raf_onlink && find_pfxlist_reachable_router(pr)) 1379 break; 1380 } 1381 1382 /* 1383 * If we have no such prefix, check whether we still have a router 1384 * that does not advertise any prefixes. 1385 */ 1386 if (pr == NULL) { 1387 for (dr = TAILQ_FIRST(&nd_defrouter); dr; 1388 dr = TAILQ_NEXT(dr, dr_entry)) { 1389 struct nd_prefix *pr0; 1390 1391 for (pr0 = nd_prefix.lh_first; pr0; 1392 pr0 = pr0->ndpr_next) { 1393 if ((pfxrtr = pfxrtr_lookup(pr0, dr)) != NULL) 1394 break; 1395 } 1396 if (pfxrtr != NULL) 1397 break; 1398 } 1399 } 1400 if (pr != NULL || (TAILQ_FIRST(&nd_defrouter) && pfxrtr == NULL)) { 1401 /* 1402 * There is at least one prefix that has a reachable router, 1403 * or at least a router which probably does not advertise 1404 * any prefixes. The latter would be the case when we move 1405 * to a new link where we have a router that does not provide 1406 * prefixes and we configure an address by hand. 1407 * Detach prefixes which have no reachable advertising 1408 * router, and attach other prefixes. 1409 */ 1410 for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) { 1411 /* XXX: a link-local prefix should never be detached */ 1412 if (IN6_IS_ADDR_LINKLOCAL(&pr->ndpr_prefix.sin6_addr)) 1413 continue; 1414 1415 /* 1416 * we aren't interested in prefixes without the L bit 1417 * set. 1418 */ 1419 if (pr->ndpr_raf_onlink == 0) 1420 continue; 1421 1422 if ((pr->ndpr_stateflags & NDPRF_DETACHED) == 0 && 1423 find_pfxlist_reachable_router(pr) == NULL) 1424 pr->ndpr_stateflags |= NDPRF_DETACHED; 1425 if ((pr->ndpr_stateflags & NDPRF_DETACHED) != 0 && 1426 find_pfxlist_reachable_router(pr) != 0) 1427 pr->ndpr_stateflags &= ~NDPRF_DETACHED; 1428 } 1429 } else { 1430 /* there is no prefix that has a reachable router */ 1431 for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) { 1432 if (IN6_IS_ADDR_LINKLOCAL(&pr->ndpr_prefix.sin6_addr)) 1433 continue; 1434 1435 if (pr->ndpr_raf_onlink == 0) 1436 continue; 1437 1438 if ((pr->ndpr_stateflags & NDPRF_DETACHED) != 0) 1439 pr->ndpr_stateflags &= ~NDPRF_DETACHED; 1440 } 1441 } 1442 1443 /* 1444 * Remove each interface route associated with a (just) detached 1445 * prefix, and reinstall the interface route for a (just) attached 1446 * prefix. Note that all attempt of reinstallation does not 1447 * necessarily success, when a same prefix is shared among multiple 1448 * interfaces. Such cases will be handled in nd6_prefix_onlink, 1449 * so we don't have to care about them. 1450 */ 1451 for (pr = nd_prefix.lh_first; pr; pr = pr->ndpr_next) { 1452 int e; 1453 1454 if (IN6_IS_ADDR_LINKLOCAL(&pr->ndpr_prefix.sin6_addr)) 1455 continue; 1456 1457 if (pr->ndpr_raf_onlink == 0) 1458 continue; 1459 1460 if ((pr->ndpr_stateflags & NDPRF_DETACHED) != 0 && 1461 (pr->ndpr_stateflags & NDPRF_ONLINK) != 0) { 1462 if ((e = nd6_prefix_offlink(pr)) != 0) { 1463 nd6log((LOG_ERR, 1464 "pfxlist_onlink_check: failed to " 1465 "make %s/%d offlink, errno=%d\n", 1466 ip6_sprintf(&pr->ndpr_prefix.sin6_addr), 1467 pr->ndpr_plen, e)); 1468 } 1469 } 1470 if ((pr->ndpr_stateflags & NDPRF_DETACHED) == 0 && 1471 (pr->ndpr_stateflags & NDPRF_ONLINK) == 0 && 1472 pr->ndpr_raf_onlink) { 1473 if ((e = nd6_prefix_onlink(pr)) != 0) { 1474 nd6log((LOG_ERR, 1475 "pfxlist_onlink_check: failed to " 1476 "make %s/%d onlink, errno=%d\n", 1477 ip6_sprintf(&pr->ndpr_prefix.sin6_addr), 1478 pr->ndpr_plen, e)); 1479 } 1480 } 1481 } 1482 1483 /* 1484 * Changes on the prefix status might affect address status as well. 1485 * Make sure that all addresses derived from an attached prefix are 1486 * attached, and that all addresses derived from a detached prefix are 1487 * detached. Note, however, that a manually configured address should 1488 * always be attached. 1489 * The precise detection logic is same as the one for prefixes. 1490 */ 1491 for (ifa = in6_ifaddr; ifa; ifa = ifa->ia_next) { 1492 if (!(ifa->ia6_flags & IN6_IFF_AUTOCONF)) 1493 continue; 1494 1495 if (ifa->ia6_ndpr == NULL) { 1496 /* 1497 * This can happen when we first configure the address 1498 * (i.e. the address exists, but the prefix does not). 1499 * XXX: complicated relationships... 1500 */ 1501 continue; 1502 } 1503 1504 if (find_pfxlist_reachable_router(ifa->ia6_ndpr)) 1505 break; 1506 } 1507 if (ifa) { 1508 for (ifa = in6_ifaddr; ifa; ifa = ifa->ia_next) { 1509 if ((ifa->ia6_flags & IN6_IFF_AUTOCONF) == 0) 1510 continue; 1511 1512 if (ifa->ia6_ndpr == NULL) /* XXX: see above. */ 1513 continue; 1514 1515 if (find_pfxlist_reachable_router(ifa->ia6_ndpr)) { 1516 if (ifa->ia6_flags & IN6_IFF_DETACHED) { 1517 ifa->ia6_flags &= ~IN6_IFF_DETACHED; 1518 ifa->ia6_flags |= IN6_IFF_TENTATIVE; 1519 nd6_dad_start((struct ifaddr *)ifa, 0); 1520 } 1521 } else { 1522 ifa->ia6_flags |= IN6_IFF_DETACHED; 1523 } 1524 } 1525 } 1526 else { 1527 for (ifa = in6_ifaddr; ifa; ifa = ifa->ia_next) { 1528 if ((ifa->ia6_flags & IN6_IFF_AUTOCONF) == 0) 1529 continue; 1530 1531 if (ifa->ia6_flags & IN6_IFF_DETACHED) { 1532 ifa->ia6_flags &= ~IN6_IFF_DETACHED; 1533 ifa->ia6_flags |= IN6_IFF_TENTATIVE; 1534 /* Do we need a delay in this case? */ 1535 nd6_dad_start((struct ifaddr *)ifa, 0); 1536 } 1537 } 1538 } 1539 } 1540 1541 int 1542 nd6_prefix_onlink(pr) 1543 struct nd_prefix *pr; 1544 { 1545 struct ifaddr *ifa; 1546 struct ifnet *ifp = pr->ndpr_ifp; 1547 struct sockaddr_in6 mask6; 1548 struct nd_prefix *opr; 1549 u_long rtflags; 1550 int error = 0; 1551 struct rtentry *rt = NULL; 1552 1553 /* sanity check */ 1554 if ((pr->ndpr_stateflags & NDPRF_ONLINK) != 0) { 1555 nd6log((LOG_ERR, 1556 "nd6_prefix_onlink: %s/%d is already on-link\n", 1557 ip6_sprintf(&pr->ndpr_prefix.sin6_addr), pr->ndpr_plen)); 1558 return (EEXIST); 1559 } 1560 1561 /* 1562 * Add the interface route associated with the prefix. Before 1563 * installing the route, check if there's the same prefix on another 1564 * interface, and the prefix has already installed the interface route. 1565 * Although such a configuration is expected to be rare, we explicitly 1566 * allow it. 1567 */ 1568 for (opr = nd_prefix.lh_first; opr; opr = opr->ndpr_next) { 1569 if (opr == pr) 1570 continue; 1571 1572 if ((opr->ndpr_stateflags & NDPRF_ONLINK) == 0) 1573 continue; 1574 1575 if (opr->ndpr_plen == pr->ndpr_plen && 1576 in6_are_prefix_equal(&pr->ndpr_prefix.sin6_addr, 1577 &opr->ndpr_prefix.sin6_addr, pr->ndpr_plen)) 1578 return (0); 1579 } 1580 1581 /* 1582 * We prefer link-local addresses as the associated interface address. 1583 */ 1584 /* search for a link-local addr */ 1585 ifa = (struct ifaddr *)in6ifa_ifpforlinklocal(ifp, 1586 IN6_IFF_NOTREADY | IN6_IFF_ANYCAST); 1587 if (ifa == NULL) { 1588 /* XXX: freebsd does not have ifa_ifwithaf */ 1589 TAILQ_FOREACH(ifa, &ifp->if_addrlist, ifa_list) { 1590 if (ifa->ifa_addr->sa_family == AF_INET6) 1591 break; 1592 } 1593 /* should we care about ia6_flags? */ 1594 } 1595 if (ifa == NULL) { 1596 /* 1597 * This can still happen, when, for example, we receive an RA 1598 * containing a prefix with the L bit set and the A bit clear, 1599 * after removing all IPv6 addresses on the receiving 1600 * interface. This should, of course, be rare though. 1601 */ 1602 nd6log((LOG_NOTICE, 1603 "nd6_prefix_onlink: failed to find any ifaddr" 1604 " to add route for a prefix(%s/%d) on %s\n", 1605 ip6_sprintf(&pr->ndpr_prefix.sin6_addr), 1606 pr->ndpr_plen, if_name(ifp))); 1607 return (0); 1608 } 1609 1610 /* 1611 * in6_ifinit() sets nd6_rtrequest to ifa_rtrequest for all ifaddrs. 1612 * ifa->ifa_rtrequest = nd6_rtrequest; 1613 */ 1614 bzero(&mask6, sizeof(mask6)); 1615 mask6.sin6_len = sizeof(mask6); 1616 mask6.sin6_addr = pr->ndpr_mask; 1617 rtflags = ifa->ifa_flags | RTF_CLONING | RTF_UP; 1618 if (nd6_need_cache(ifp)) { 1619 /* explicitly set in case ifa_flags does not set the flag. */ 1620 rtflags |= RTF_CLONING; 1621 } else { 1622 /* 1623 * explicitly clear the cloning bit in case ifa_flags sets it. 1624 */ 1625 rtflags &= ~RTF_CLONING; 1626 } 1627 error = rtrequest(RTM_ADD, (struct sockaddr *)&pr->ndpr_prefix, 1628 ifa->ifa_addr, (struct sockaddr *)&mask6, rtflags, &rt); 1629 if (error == 0) { 1630 if (rt != NULL) /* this should be non NULL, though */ 1631 nd6_rtmsg(RTM_ADD, rt); 1632 pr->ndpr_stateflags |= NDPRF_ONLINK; 1633 } else { 1634 nd6log((LOG_ERR, "nd6_prefix_onlink: failed to add route for a" 1635 " prefix (%s/%d) on %s, gw=%s, mask=%s, flags=%lx " 1636 "errno = %d\n", 1637 ip6_sprintf(&pr->ndpr_prefix.sin6_addr), 1638 pr->ndpr_plen, if_name(ifp), 1639 ip6_sprintf(&((struct sockaddr_in6 *)ifa->ifa_addr)->sin6_addr), 1640 ip6_sprintf(&mask6.sin6_addr), rtflags, error)); 1641 } 1642 1643 if (rt != NULL) { 1644 RT_LOCK(rt); 1645 RT_REMREF(rt); 1646 RT_UNLOCK(rt); 1647 } 1648 1649 return (error); 1650 } 1651 1652 int 1653 nd6_prefix_offlink(pr) 1654 struct nd_prefix *pr; 1655 { 1656 int error = 0; 1657 struct ifnet *ifp = pr->ndpr_ifp; 1658 struct nd_prefix *opr; 1659 struct sockaddr_in6 sa6, mask6; 1660 struct rtentry *rt = NULL; 1661 1662 /* sanity check */ 1663 if ((pr->ndpr_stateflags & NDPRF_ONLINK) == 0) { 1664 nd6log((LOG_ERR, 1665 "nd6_prefix_offlink: %s/%d is already off-link\n", 1666 ip6_sprintf(&pr->ndpr_prefix.sin6_addr), pr->ndpr_plen)); 1667 return (EEXIST); 1668 } 1669 1670 bzero(&sa6, sizeof(sa6)); 1671 sa6.sin6_family = AF_INET6; 1672 sa6.sin6_len = sizeof(sa6); 1673 bcopy(&pr->ndpr_prefix.sin6_addr, &sa6.sin6_addr, 1674 sizeof(struct in6_addr)); 1675 bzero(&mask6, sizeof(mask6)); 1676 mask6.sin6_family = AF_INET6; 1677 mask6.sin6_len = sizeof(sa6); 1678 bcopy(&pr->ndpr_mask, &mask6.sin6_addr, sizeof(struct in6_addr)); 1679 error = rtrequest(RTM_DELETE, (struct sockaddr *)&sa6, NULL, 1680 (struct sockaddr *)&mask6, 0, &rt); 1681 if (error == 0) { 1682 pr->ndpr_stateflags &= ~NDPRF_ONLINK; 1683 1684 /* report the route deletion to the routing socket. */ 1685 if (rt != NULL) 1686 nd6_rtmsg(RTM_DELETE, rt); 1687 1688 /* 1689 * There might be the same prefix on another interface, 1690 * the prefix which could not be on-link just because we have 1691 * the interface route (see comments in nd6_prefix_onlink). 1692 * If there's one, try to make the prefix on-link on the 1693 * interface. 1694 */ 1695 for (opr = nd_prefix.lh_first; opr; opr = opr->ndpr_next) { 1696 if (opr == pr) 1697 continue; 1698 1699 if ((opr->ndpr_stateflags & NDPRF_ONLINK) != 0) 1700 continue; 1701 1702 /* 1703 * KAME specific: detached prefixes should not be 1704 * on-link. 1705 */ 1706 if ((opr->ndpr_stateflags & NDPRF_DETACHED) != 0) 1707 continue; 1708 1709 if (opr->ndpr_plen == pr->ndpr_plen && 1710 in6_are_prefix_equal(&pr->ndpr_prefix.sin6_addr, 1711 &opr->ndpr_prefix.sin6_addr, pr->ndpr_plen)) { 1712 int e; 1713 1714 if ((e = nd6_prefix_onlink(opr)) != 0) { 1715 nd6log((LOG_ERR, 1716 "nd6_prefix_offlink: failed to " 1717 "recover a prefix %s/%d from %s " 1718 "to %s (errno = %d)\n", 1719 ip6_sprintf(&opr->ndpr_prefix.sin6_addr), 1720 opr->ndpr_plen, if_name(ifp), 1721 if_name(opr->ndpr_ifp), e)); 1722 } 1723 } 1724 } 1725 } else { 1726 /* XXX: can we still set the NDPRF_ONLINK flag? */ 1727 nd6log((LOG_ERR, 1728 "nd6_prefix_offlink: failed to delete route: " 1729 "%s/%d on %s (errno = %d)\n", 1730 ip6_sprintf(&sa6.sin6_addr), pr->ndpr_plen, if_name(ifp), 1731 error)); 1732 } 1733 1734 if (rt != NULL) { 1735 RTFREE(rt); 1736 } 1737 1738 return (error); 1739 } 1740 1741 static struct in6_ifaddr * 1742 in6_ifadd(pr, mcast) 1743 struct nd_prefixctl *pr; 1744 int mcast; 1745 { 1746 struct ifnet *ifp = pr->ndpr_ifp; 1747 struct ifaddr *ifa; 1748 struct in6_aliasreq ifra; 1749 struct in6_ifaddr *ia, *ib; 1750 int error, plen0; 1751 struct in6_addr mask; 1752 int prefixlen = pr->ndpr_plen; 1753 int updateflags; 1754 1755 in6_prefixlen2mask(&mask, prefixlen); 1756 1757 /* 1758 * find a link-local address (will be interface ID). 1759 * Is it really mandatory? Theoretically, a global or a site-local 1760 * address can be configured without a link-local address, if we 1761 * have a unique interface identifier... 1762 * 1763 * it is not mandatory to have a link-local address, we can generate 1764 * interface identifier on the fly. we do this because: 1765 * (1) it should be the easiest way to find interface identifier. 1766 * (2) RFC2462 5.4 suggesting the use of the same interface identifier 1767 * for multiple addresses on a single interface, and possible shortcut 1768 * of DAD. we omitted DAD for this reason in the past. 1769 * (3) a user can prevent autoconfiguration of global address 1770 * by removing link-local address by hand (this is partly because we 1771 * don't have other way to control the use of IPv6 on an interface. 1772 * this has been our design choice - cf. NRL's "ifconfig auto"). 1773 * (4) it is easier to manage when an interface has addresses 1774 * with the same interface identifier, than to have multiple addresses 1775 * with different interface identifiers. 1776 */ 1777 ifa = (struct ifaddr *)in6ifa_ifpforlinklocal(ifp, 0); /* 0 is OK? */ 1778 if (ifa) 1779 ib = (struct in6_ifaddr *)ifa; 1780 else 1781 return NULL; 1782 1783 /* prefixlen + ifidlen must be equal to 128 */ 1784 plen0 = in6_mask2len(&ib->ia_prefixmask.sin6_addr, NULL); 1785 if (prefixlen != plen0) { 1786 nd6log((LOG_INFO, "in6_ifadd: wrong prefixlen for %s " 1787 "(prefix=%d ifid=%d)\n", 1788 if_name(ifp), prefixlen, 128 - plen0)); 1789 return NULL; 1790 } 1791 1792 /* make ifaddr */ 1793 1794 bzero(&ifra, sizeof(ifra)); 1795 /* 1796 * in6_update_ifa() does not use ifra_name, but we accurately set it 1797 * for safety. 1798 */ 1799 strncpy(ifra.ifra_name, if_name(ifp), sizeof(ifra.ifra_name)); 1800 ifra.ifra_addr.sin6_family = AF_INET6; 1801 ifra.ifra_addr.sin6_len = sizeof(struct sockaddr_in6); 1802 /* prefix */ 1803 ifra.ifra_addr.sin6_addr = pr->ndpr_prefix.sin6_addr; 1804 ifra.ifra_addr.sin6_addr.s6_addr32[0] &= mask.s6_addr32[0]; 1805 ifra.ifra_addr.sin6_addr.s6_addr32[1] &= mask.s6_addr32[1]; 1806 ifra.ifra_addr.sin6_addr.s6_addr32[2] &= mask.s6_addr32[2]; 1807 ifra.ifra_addr.sin6_addr.s6_addr32[3] &= mask.s6_addr32[3]; 1808 1809 /* interface ID */ 1810 ifra.ifra_addr.sin6_addr.s6_addr32[0] |= 1811 (ib->ia_addr.sin6_addr.s6_addr32[0] & ~mask.s6_addr32[0]); 1812 ifra.ifra_addr.sin6_addr.s6_addr32[1] |= 1813 (ib->ia_addr.sin6_addr.s6_addr32[1] & ~mask.s6_addr32[1]); 1814 ifra.ifra_addr.sin6_addr.s6_addr32[2] |= 1815 (ib->ia_addr.sin6_addr.s6_addr32[2] & ~mask.s6_addr32[2]); 1816 ifra.ifra_addr.sin6_addr.s6_addr32[3] |= 1817 (ib->ia_addr.sin6_addr.s6_addr32[3] & ~mask.s6_addr32[3]); 1818 1819 /* new prefix mask. */ 1820 ifra.ifra_prefixmask.sin6_len = sizeof(struct sockaddr_in6); 1821 ifra.ifra_prefixmask.sin6_family = AF_INET6; 1822 bcopy(&mask, &ifra.ifra_prefixmask.sin6_addr, 1823 sizeof(ifra.ifra_prefixmask.sin6_addr)); 1824 1825 /* lifetimes. */ 1826 ifra.ifra_lifetime.ia6t_vltime = pr->ndpr_vltime; 1827 ifra.ifra_lifetime.ia6t_pltime = pr->ndpr_pltime; 1828 1829 /* XXX: scope zone ID? */ 1830 1831 ifra.ifra_flags |= IN6_IFF_AUTOCONF; /* obey autoconf */ 1832 1833 /* 1834 * Make sure that we do not have this address already. This should 1835 * usually not happen, but we can still see this case, e.g., if we 1836 * have manually configured the exact address to be configured. 1837 */ 1838 if (in6ifa_ifpwithaddr(ifp, &ifra.ifra_addr.sin6_addr) != NULL) { 1839 /* this should be rare enough to make an explicit log */ 1840 log(LOG_INFO, "in6_ifadd: %s is already configured\n", 1841 ip6_sprintf(&ifra.ifra_addr.sin6_addr)); 1842 return (NULL); 1843 } 1844 1845 /* 1846 * Allocate ifaddr structure, link into chain, etc. 1847 * If we are going to create a new address upon receiving a multicasted 1848 * RA, we need to impose a random delay before starting DAD. 1849 * [draft-ietf-ipv6-rfc2462bis-02.txt, Section 5.4.2] 1850 */ 1851 updateflags = 0; 1852 if (mcast) 1853 updateflags |= IN6_IFAUPDATE_DADDELAY; 1854 if ((error = in6_update_ifa(ifp, &ifra, NULL, updateflags)) != 0) { 1855 nd6log((LOG_ERR, 1856 "in6_ifadd: failed to make ifaddr %s on %s (errno=%d)\n", 1857 ip6_sprintf(&ifra.ifra_addr.sin6_addr), if_name(ifp), 1858 error)); 1859 return (NULL); /* ifaddr must not have been allocated. */ 1860 } 1861 1862 ia = in6ifa_ifpwithaddr(ifp, &ifra.ifra_addr.sin6_addr); 1863 1864 return (ia); /* this is always non-NULL */ 1865 } 1866 1867 int 1868 in6_tmpifadd(ia0, forcegen, delay) 1869 const struct in6_ifaddr *ia0; /* corresponding public address */ 1870 int forcegen, delay; 1871 { 1872 struct ifnet *ifp = ia0->ia_ifa.ifa_ifp; 1873 struct in6_ifaddr *newia, *ia; 1874 struct in6_aliasreq ifra; 1875 int i, error; 1876 int trylimit = 3; /* XXX: adhoc value */ 1877 int updateflags; 1878 u_int32_t randid[2]; 1879 time_t vltime0, pltime0; 1880 1881 bzero(&ifra, sizeof(ifra)); 1882 strncpy(ifra.ifra_name, if_name(ifp), sizeof(ifra.ifra_name)); 1883 ifra.ifra_addr = ia0->ia_addr; 1884 /* copy prefix mask */ 1885 ifra.ifra_prefixmask = ia0->ia_prefixmask; 1886 /* clear the old IFID */ 1887 for (i = 0; i < 4; i++) { 1888 ifra.ifra_addr.sin6_addr.s6_addr32[i] &= 1889 ifra.ifra_prefixmask.sin6_addr.s6_addr32[i]; 1890 } 1891 1892 again: 1893 if (in6_get_tmpifid(ifp, (u_int8_t *)randid, 1894 (const u_int8_t *)&ia0->ia_addr.sin6_addr.s6_addr[8], forcegen)) { 1895 nd6log((LOG_NOTICE, "in6_tmpifadd: failed to find a good " 1896 "random IFID\n")); 1897 return (EINVAL); 1898 } 1899 ifra.ifra_addr.sin6_addr.s6_addr32[2] |= 1900 (randid[0] & ~(ifra.ifra_prefixmask.sin6_addr.s6_addr32[2])); 1901 ifra.ifra_addr.sin6_addr.s6_addr32[3] |= 1902 (randid[1] & ~(ifra.ifra_prefixmask.sin6_addr.s6_addr32[3])); 1903 1904 /* 1905 * in6_get_tmpifid() quite likely provided a unique interface ID. 1906 * However, we may still have a chance to see collision, because 1907 * there may be a time lag between generation of the ID and generation 1908 * of the address. So, we'll do one more sanity check. 1909 */ 1910 for (ia = in6_ifaddr; ia; ia = ia->ia_next) { 1911 if (IN6_ARE_ADDR_EQUAL(&ia->ia_addr.sin6_addr, 1912 &ifra.ifra_addr.sin6_addr)) { 1913 if (trylimit-- == 0) { 1914 /* 1915 * Give up. Something strange should have 1916 * happened. 1917 */ 1918 nd6log((LOG_NOTICE, "in6_tmpifadd: failed to " 1919 "find a unique random IFID\n")); 1920 return (EEXIST); 1921 } 1922 forcegen = 1; 1923 goto again; 1924 } 1925 } 1926 1927 /* 1928 * The Valid Lifetime is the lower of the Valid Lifetime of the 1929 * public address or TEMP_VALID_LIFETIME. 1930 * The Preferred Lifetime is the lower of the Preferred Lifetime 1931 * of the public address or TEMP_PREFERRED_LIFETIME - 1932 * DESYNC_FACTOR. 1933 */ 1934 if (ia0->ia6_lifetime.ia6t_vltime != ND6_INFINITE_LIFETIME) { 1935 vltime0 = IFA6_IS_INVALID(ia0) ? 0 : 1936 (ia0->ia6_lifetime.ia6t_vltime - 1937 (time_second - ia0->ia6_updatetime)); 1938 if (vltime0 > ip6_temp_valid_lifetime) 1939 vltime0 = ip6_temp_valid_lifetime; 1940 } else 1941 vltime0 = ip6_temp_valid_lifetime; 1942 if (ia0->ia6_lifetime.ia6t_pltime != ND6_INFINITE_LIFETIME) { 1943 pltime0 = IFA6_IS_DEPRECATED(ia0) ? 0 : 1944 (ia0->ia6_lifetime.ia6t_pltime - 1945 (time_second - ia0->ia6_updatetime)); 1946 if (pltime0 > ip6_temp_preferred_lifetime - ip6_desync_factor){ 1947 pltime0 = ip6_temp_preferred_lifetime - 1948 ip6_desync_factor; 1949 } 1950 } else 1951 pltime0 = ip6_temp_preferred_lifetime - ip6_desync_factor; 1952 ifra.ifra_lifetime.ia6t_vltime = vltime0; 1953 ifra.ifra_lifetime.ia6t_pltime = pltime0; 1954 1955 /* 1956 * A temporary address is created only if this calculated Preferred 1957 * Lifetime is greater than REGEN_ADVANCE time units. 1958 */ 1959 if (ifra.ifra_lifetime.ia6t_pltime <= ip6_temp_regen_advance) 1960 return (0); 1961 1962 /* XXX: scope zone ID? */ 1963 1964 ifra.ifra_flags |= (IN6_IFF_AUTOCONF|IN6_IFF_TEMPORARY); 1965 1966 /* allocate ifaddr structure, link into chain, etc. */ 1967 updateflags = 0; 1968 if (delay) 1969 updateflags |= IN6_IFAUPDATE_DADDELAY; 1970 if ((error = in6_update_ifa(ifp, &ifra, NULL, updateflags)) != 0) 1971 return (error); 1972 1973 newia = in6ifa_ifpwithaddr(ifp, &ifra.ifra_addr.sin6_addr); 1974 if (newia == NULL) { /* XXX: can it happen? */ 1975 nd6log((LOG_ERR, 1976 "in6_tmpifadd: ifa update succeeded, but we got " 1977 "no ifaddr\n")); 1978 return (EINVAL); /* XXX */ 1979 } 1980 newia->ia6_ndpr = ia0->ia6_ndpr; 1981 newia->ia6_ndpr->ndpr_refcnt++; 1982 1983 /* 1984 * A newly added address might affect the status of other addresses. 1985 * XXX: when the temporary address is generated with a new public 1986 * address, the onlink check is redundant. However, it would be safe 1987 * to do the check explicitly everywhere a new address is generated, 1988 * and, in fact, we surely need the check when we create a new 1989 * temporary address due to deprecation of an old temporary address. 1990 */ 1991 pfxlist_onlink_check(); 1992 1993 return (0); 1994 } 1995 1996 static int 1997 in6_init_prefix_ltimes(struct nd_prefix *ndpr) 1998 { 1999 if (ndpr->ndpr_pltime == ND6_INFINITE_LIFETIME) 2000 ndpr->ndpr_preferred = 0; 2001 else 2002 ndpr->ndpr_preferred = time_second + ndpr->ndpr_pltime; 2003 if (ndpr->ndpr_vltime == ND6_INFINITE_LIFETIME) 2004 ndpr->ndpr_expire = 0; 2005 else 2006 ndpr->ndpr_expire = time_second + ndpr->ndpr_vltime; 2007 2008 return 0; 2009 } 2010 2011 static void 2012 in6_init_address_ltimes(struct nd_prefix *new, struct in6_addrlifetime *lt6) 2013 { 2014 /* init ia6t_expire */ 2015 if (lt6->ia6t_vltime == ND6_INFINITE_LIFETIME) 2016 lt6->ia6t_expire = 0; 2017 else { 2018 lt6->ia6t_expire = time_second; 2019 lt6->ia6t_expire += lt6->ia6t_vltime; 2020 } 2021 2022 /* init ia6t_preferred */ 2023 if (lt6->ia6t_pltime == ND6_INFINITE_LIFETIME) 2024 lt6->ia6t_preferred = 0; 2025 else { 2026 lt6->ia6t_preferred = time_second; 2027 lt6->ia6t_preferred += lt6->ia6t_pltime; 2028 } 2029 } 2030 2031 /* 2032 * Delete all the routing table entries that use the specified gateway. 2033 * XXX: this function causes search through all entries of routing table, so 2034 * it shouldn't be called when acting as a router. 2035 */ 2036 void 2037 rt6_flush(gateway, ifp) 2038 struct in6_addr *gateway; 2039 struct ifnet *ifp; 2040 { 2041 struct radix_node_head *rnh = rt_tables[AF_INET6]; 2042 int s = splnet(); 2043 2044 /* We'll care only link-local addresses */ 2045 if (!IN6_IS_ADDR_LINKLOCAL(gateway)) { 2046 splx(s); 2047 return; 2048 } 2049 2050 RADIX_NODE_HEAD_LOCK(rnh); 2051 rnh->rnh_walktree(rnh, rt6_deleteroute, (void *)gateway); 2052 RADIX_NODE_HEAD_UNLOCK(rnh); 2053 splx(s); 2054 } 2055 2056 static int 2057 rt6_deleteroute(rn, arg) 2058 struct radix_node *rn; 2059 void *arg; 2060 { 2061 #define SIN6(s) ((struct sockaddr_in6 *)s) 2062 struct rtentry *rt = (struct rtentry *)rn; 2063 struct in6_addr *gate = (struct in6_addr *)arg; 2064 2065 if (rt->rt_gateway == NULL || rt->rt_gateway->sa_family != AF_INET6) 2066 return (0); 2067 2068 if (!IN6_ARE_ADDR_EQUAL(gate, &SIN6(rt->rt_gateway)->sin6_addr)) { 2069 return (0); 2070 } 2071 2072 /* 2073 * Do not delete a static route. 2074 * XXX: this seems to be a bit ad-hoc. Should we consider the 2075 * 'cloned' bit instead? 2076 */ 2077 if ((rt->rt_flags & RTF_STATIC) != 0) 2078 return (0); 2079 2080 /* 2081 * We delete only host route. This means, in particular, we don't 2082 * delete default route. 2083 */ 2084 if ((rt->rt_flags & RTF_HOST) == 0) 2085 return (0); 2086 2087 return (rtrequest(RTM_DELETE, rt_key(rt), rt->rt_gateway, 2088 rt_mask(rt), rt->rt_flags, 0)); 2089 #undef SIN6 2090 } 2091 2092 int 2093 nd6_setdefaultiface(ifindex) 2094 int ifindex; 2095 { 2096 int error = 0; 2097 2098 if (ifindex < 0 || if_index < ifindex) 2099 return (EINVAL); 2100 if (ifindex != 0 && !ifnet_byindex(ifindex)) 2101 return (EINVAL); 2102 2103 if (nd6_defifindex != ifindex) { 2104 nd6_defifindex = ifindex; 2105 if (nd6_defifindex > 0) 2106 nd6_defifp = ifnet_byindex(nd6_defifindex); 2107 else 2108 nd6_defifp = NULL; 2109 2110 /* 2111 * Our current implementation assumes one-to-one maping between 2112 * interfaces and links, so it would be natural to use the 2113 * default interface as the default link. 2114 */ 2115 scope6_setdefault(nd6_defifp); 2116 } 2117 2118 return (error); 2119 } 2120