1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 /* 26 * Copyright (c) 1990 Mentat Inc. 27 */ 28 29 #pragma ident "%Z%%M% %I% %E% SMI" 30 31 /* 32 * This file contains the interface control functions for IPv6. 33 */ 34 35 #include <sys/types.h> 36 #include <sys/sysmacros.h> 37 #include <sys/stream.h> 38 #include <sys/dlpi.h> 39 #include <sys/stropts.h> 40 #include <sys/ddi.h> 41 #include <sys/cmn_err.h> 42 #include <sys/kstat.h> 43 #include <sys/debug.h> 44 #include <sys/zone.h> 45 46 #include <sys/systm.h> 47 #include <sys/param.h> 48 #include <sys/socket.h> 49 #include <sys/isa_defs.h> 50 #include <net/if.h> 51 #include <net/if_dl.h> 52 #include <net/route.h> 53 #include <netinet/in.h> 54 #include <netinet/igmp_var.h> 55 #include <netinet/ip6.h> 56 #include <netinet/icmp6.h> 57 #include <netinet/in.h> 58 59 #include <inet/common.h> 60 #include <inet/nd.h> 61 #include <inet/mib2.h> 62 #include <inet/ip.h> 63 #include <inet/ip6.h> 64 #include <inet/ip_multi.h> 65 #include <inet/ip_ire.h> 66 #include <inet/ip_rts.h> 67 #include <inet/ip_ndp.h> 68 #include <inet/ip_if.h> 69 #include <inet/ip6_asp.h> 70 #include <inet/tun.h> 71 #include <inet/ipclassifier.h> 72 #include <inet/sctp_ip.h> 73 74 #include <sys/tsol/tndb.h> 75 #include <sys/tsol/tnet.h> 76 77 static in6_addr_t ipv6_ll_template = 78 {(uint32_t)V6_LINKLOCAL, 0x0, 0x0, 0x0}; 79 80 static ipif_t * 81 ipif_lookup_interface_v6(const in6_addr_t *if_addr, const in6_addr_t *dst, 82 queue_t *q, mblk_t *mp, ipsq_func_t func, int *error); 83 84 /* 85 * ipif_lookup_group_v6 86 */ 87 ipif_t * 88 ipif_lookup_group_v6(const in6_addr_t *group, zoneid_t zoneid) 89 { 90 ire_t *ire; 91 ipif_t *ipif; 92 93 ire = ire_lookup_multi_v6(group, zoneid); 94 if (ire == NULL) 95 return (NULL); 96 ipif = ire->ire_ipif; 97 ipif_refhold(ipif); 98 ire_refrele(ire); 99 return (ipif); 100 } 101 102 /* 103 * ill_lookup_group_v6 104 */ 105 ill_t * 106 ill_lookup_group_v6(const in6_addr_t *group, zoneid_t zoneid) 107 { 108 ire_t *ire; 109 ill_t *ill; 110 111 ire = ire_lookup_multi_v6(group, zoneid); 112 if (ire == NULL) 113 return (NULL); 114 ill = ire->ire_ipif->ipif_ill; 115 ill_refhold(ill); 116 ire_refrele(ire); 117 return (ill); 118 } 119 120 /* 121 * Look for an ipif with the specified interface address and destination. 122 * The destination address is used only for matching point-to-point interfaces. 123 */ 124 static ipif_t * 125 ipif_lookup_interface_v6(const in6_addr_t *if_addr, const in6_addr_t *dst, 126 queue_t *q, mblk_t *mp, ipsq_func_t func, int *error) 127 { 128 ipif_t *ipif; 129 ill_t *ill; 130 ipsq_t *ipsq; 131 ill_walk_context_t ctx; 132 133 if (error != NULL) 134 *error = 0; 135 136 /* 137 * First match all the point-to-point interfaces 138 * before looking at non-point-to-point interfaces. 139 * This is done to avoid returning non-point-to-point 140 * ipif instead of unnumbered point-to-point ipif. 141 */ 142 rw_enter(&ill_g_lock, RW_READER); 143 ill = ILL_START_WALK_V6(&ctx); 144 for (; ill != NULL; ill = ill_next(&ctx, ill)) { 145 GRAB_CONN_LOCK(q); 146 mutex_enter(&ill->ill_lock); 147 for (ipif = ill->ill_ipif; ipif; ipif = ipif->ipif_next) { 148 /* Allow the ipif to be down */ 149 if ((ipif->ipif_flags & IPIF_POINTOPOINT) && 150 (IN6_ARE_ADDR_EQUAL(&ipif->ipif_v6lcl_addr, 151 if_addr)) && 152 (IN6_ARE_ADDR_EQUAL(&ipif->ipif_v6pp_dst_addr, 153 dst))) { 154 if (IPIF_CAN_LOOKUP(ipif)) { 155 ipif_refhold_locked(ipif); 156 mutex_exit(&ill->ill_lock); 157 RELEASE_CONN_LOCK(q); 158 rw_exit(&ill_g_lock); 159 return (ipif); 160 } else if (IPIF_CAN_WAIT(ipif, q)) { 161 ipsq = ill->ill_phyint->phyint_ipsq; 162 mutex_enter(&ipsq->ipsq_lock); 163 mutex_exit(&ill->ill_lock); 164 rw_exit(&ill_g_lock); 165 ipsq_enq(ipsq, q, mp, func, NEW_OP, 166 ill); 167 mutex_exit(&ipsq->ipsq_lock); 168 RELEASE_CONN_LOCK(q); 169 *error = EINPROGRESS; 170 return (NULL); 171 } 172 } 173 } 174 mutex_exit(&ill->ill_lock); 175 RELEASE_CONN_LOCK(q); 176 } 177 rw_exit(&ill_g_lock); 178 /* lookup the ipif based on interface address */ 179 ipif = ipif_lookup_addr_v6(if_addr, NULL, ALL_ZONES, q, mp, func, 180 error); 181 ASSERT(ipif == NULL || ipif->ipif_isv6); 182 return (ipif); 183 } 184 185 /* 186 * Look for an ipif with the specified address. For point-point links 187 * we look for matches on either the destination address and the local 188 * address, but we ignore the check on the local address if IPIF_UNNUMBERED 189 * is set. 190 * Matches on a specific ill if match_ill is set. 191 */ 192 /* ARGSUSED */ 193 ipif_t * 194 ipif_lookup_addr_v6(const in6_addr_t *addr, ill_t *match_ill, zoneid_t zoneid, 195 queue_t *q, mblk_t *mp, ipsq_func_t func, int *error) 196 { 197 ipif_t *ipif; 198 ill_t *ill; 199 boolean_t ptp = B_FALSE; 200 ipsq_t *ipsq; 201 ill_walk_context_t ctx; 202 203 if (error != NULL) 204 *error = 0; 205 206 rw_enter(&ill_g_lock, RW_READER); 207 /* 208 * Repeat twice, first based on local addresses and 209 * next time for pointopoint. 210 */ 211 repeat: 212 ill = ILL_START_WALK_V6(&ctx); 213 for (; ill != NULL; ill = ill_next(&ctx, ill)) { 214 if (match_ill != NULL && ill != match_ill) { 215 continue; 216 } 217 GRAB_CONN_LOCK(q); 218 mutex_enter(&ill->ill_lock); 219 for (ipif = ill->ill_ipif; ipif; ipif = ipif->ipif_next) { 220 if (zoneid != ALL_ZONES && 221 ipif->ipif_zoneid != zoneid && 222 ipif->ipif_zoneid != ALL_ZONES) 223 continue; 224 /* Allow the ipif to be down */ 225 if ((!ptp && (IN6_ARE_ADDR_EQUAL( 226 &ipif->ipif_v6lcl_addr, addr) && 227 (ipif->ipif_flags & IPIF_UNNUMBERED) == 0)) || 228 (ptp && (ipif->ipif_flags & IPIF_POINTOPOINT) && 229 IN6_ARE_ADDR_EQUAL(&ipif->ipif_v6pp_dst_addr, 230 addr))) { 231 if (IPIF_CAN_LOOKUP(ipif)) { 232 ipif_refhold_locked(ipif); 233 mutex_exit(&ill->ill_lock); 234 RELEASE_CONN_LOCK(q); 235 rw_exit(&ill_g_lock); 236 return (ipif); 237 } else if (IPIF_CAN_WAIT(ipif, q)) { 238 ipsq = ill->ill_phyint->phyint_ipsq; 239 mutex_enter(&ipsq->ipsq_lock); 240 mutex_exit(&ill->ill_lock); 241 rw_exit(&ill_g_lock); 242 ipsq_enq(ipsq, q, mp, func, NEW_OP, 243 ill); 244 mutex_exit(&ipsq->ipsq_lock); 245 RELEASE_CONN_LOCK(q); 246 *error = EINPROGRESS; 247 return (NULL); 248 } 249 } 250 } 251 mutex_exit(&ill->ill_lock); 252 RELEASE_CONN_LOCK(q); 253 } 254 255 /* Repeat once more if needed */ 256 if (ptp) { 257 rw_exit(&ill_g_lock); 258 if (error != NULL) 259 *error = ENXIO; 260 return (NULL); 261 } 262 ptp = B_TRUE; 263 goto repeat; 264 } 265 266 /* 267 * Perform various checks to verify that an address would make sense as a local 268 * interface address. This is currently only called when an attempt is made 269 * to set a local address. 270 * 271 * Does not allow a v4-mapped address, an address that equals the subnet 272 * anycast address, ... a multicast address, ... 273 */ 274 boolean_t 275 ip_local_addr_ok_v6(const in6_addr_t *addr, const in6_addr_t *subnet_mask) 276 { 277 in6_addr_t subnet; 278 279 if (IN6_IS_ADDR_UNSPECIFIED(addr)) 280 return (B_TRUE); /* Allow all zeros */ 281 282 /* 283 * Don't allow all zeroes or host part, but allow 284 * all ones netmask. 285 */ 286 V6_MASK_COPY(*addr, *subnet_mask, subnet); 287 if (IN6_IS_ADDR_V4MAPPED(addr) || 288 (IN6_ARE_ADDR_EQUAL(addr, &subnet) && 289 !IN6_ARE_ADDR_EQUAL(subnet_mask, &ipv6_all_ones)) || 290 (IN6_IS_ADDR_V4COMPAT(addr) && CLASSD(V4_PART_OF_V6((*addr)))) || 291 IN6_IS_ADDR_MULTICAST(addr)) 292 return (B_FALSE); 293 294 return (B_TRUE); 295 } 296 297 /* 298 * Perform various checks to verify that an address would make sense as a 299 * remote/subnet interface address. 300 */ 301 boolean_t 302 ip_remote_addr_ok_v6(const in6_addr_t *addr, const in6_addr_t *subnet_mask) 303 { 304 in6_addr_t subnet; 305 306 if (IN6_IS_ADDR_UNSPECIFIED(addr)) 307 return (B_TRUE); /* Allow all zeros */ 308 309 V6_MASK_COPY(*addr, *subnet_mask, subnet); 310 if (IN6_IS_ADDR_V4MAPPED(addr) || 311 (IN6_ARE_ADDR_EQUAL(addr, &subnet) && 312 !IN6_ARE_ADDR_EQUAL(subnet_mask, &ipv6_all_ones)) || 313 IN6_IS_ADDR_MULTICAST(addr) || 314 (IN6_IS_ADDR_V4COMPAT(addr) && CLASSD(V4_PART_OF_V6((*addr))))) 315 return (B_FALSE); 316 317 return (B_TRUE); 318 } 319 320 /* 321 * ip_rt_add_v6 is called to add an IPv6 route to the forwarding table. 322 * ipif_arg is passed in to associate it with the correct interface 323 * (for link-local destinations and gateways). 324 */ 325 /* ARGSUSED1 */ 326 int 327 ip_rt_add_v6(const in6_addr_t *dst_addr, const in6_addr_t *mask, 328 const in6_addr_t *gw_addr, const in6_addr_t *src_addr, int flags, 329 ipif_t *ipif_arg, ire_t **ire_arg, queue_t *q, mblk_t *mp, ipsq_func_t func, 330 struct rtsa_s *sp) 331 { 332 ire_t *ire; 333 ire_t *gw_ire = NULL; 334 ipif_t *ipif; 335 boolean_t ipif_refheld = B_FALSE; 336 uint_t type; 337 int match_flags = MATCH_IRE_TYPE; 338 int error; 339 tsol_gc_t *gc = NULL; 340 tsol_gcgrp_t *gcgrp = NULL; 341 boolean_t gcgrp_xtraref = B_FALSE; 342 343 if (ire_arg != NULL) 344 *ire_arg = NULL; 345 346 /* 347 * Prevent routes with a zero gateway from being created (since 348 * interfaces can currently be plumbed and brought up with no assigned 349 * address). 350 */ 351 if (IN6_IS_ADDR_UNSPECIFIED(gw_addr)) 352 return (ENETUNREACH); 353 354 /* 355 * If this is the case of RTF_HOST being set, then we set the netmask 356 * to all ones (regardless if one was supplied). 357 */ 358 if (flags & RTF_HOST) 359 mask = &ipv6_all_ones; 360 361 /* 362 * Get the ipif, if any, corresponding to the gw_addr 363 */ 364 ipif = ipif_lookup_interface_v6(gw_addr, dst_addr, q, mp, func, 365 &error); 366 if (ipif != NULL) 367 ipif_refheld = B_TRUE; 368 else if (error == EINPROGRESS) { 369 ip1dbg(("ip_rt_add_v6: null and EINPROGRESS")); 370 return (error); 371 } 372 373 /* 374 * GateD will attempt to create routes with a loopback interface 375 * address as the gateway and with RTF_GATEWAY set. We allow 376 * these routes to be added, but create them as interface routes 377 * since the gateway is an interface address. 378 */ 379 if ((ipif != NULL) && (ipif->ipif_ire_type == IRE_LOOPBACK)) { 380 flags &= ~RTF_GATEWAY; 381 if (IN6_ARE_ADDR_EQUAL(gw_addr, &ipv6_loopback) && 382 IN6_ARE_ADDR_EQUAL(dst_addr, &ipv6_loopback) && 383 IN6_ARE_ADDR_EQUAL(mask, &ipv6_all_ones)) { 384 ire = ire_ctable_lookup_v6(dst_addr, 0, IRE_LOOPBACK, 385 ipif, ALL_ZONES, NULL, match_flags); 386 if (ire != NULL) { 387 ire_refrele(ire); 388 if (ipif_refheld) 389 ipif_refrele(ipif); 390 return (EEXIST); 391 } 392 ip1dbg(("ipif_up_done: 0x%p creating IRE 0x%x" 393 "for 0x%x\n", (void *)ipif, 394 ipif->ipif_ire_type, 395 ntohl(ipif->ipif_lcl_addr))); 396 ire = ire_create_v6( 397 dst_addr, 398 mask, 399 &ipif->ipif_v6src_addr, 400 NULL, 401 &ipif->ipif_mtu, 402 NULL, 403 NULL, 404 NULL, 405 ipif->ipif_net_type, 406 ipif->ipif_resolver_mp, 407 ipif, 408 NULL, 409 0, 410 0, 411 flags, 412 &ire_uinfo_null, 413 NULL, 414 NULL); 415 if (ire == NULL) { 416 if (ipif_refheld) 417 ipif_refrele(ipif); 418 return (ENOMEM); 419 } 420 error = ire_add(&ire, q, mp, func); 421 if (error == 0) 422 goto save_ire; 423 /* 424 * In the result of failure, ire_add() will have already 425 * deleted the ire in question, so there is no need to 426 * do that here. 427 */ 428 if (ipif_refheld) 429 ipif_refrele(ipif); 430 return (error); 431 } 432 } 433 434 /* 435 * Traditionally, interface routes are ones where RTF_GATEWAY isn't set 436 * and the gateway address provided is one of the system's interface 437 * addresses. By using the routing socket interface and supplying an 438 * RTA_IFP sockaddr with an interface index, an alternate method of 439 * specifying an interface route to be created is available which uses 440 * the interface index that specifies the outgoing interface rather than 441 * the address of an outgoing interface (which may not be able to 442 * uniquely identify an interface). When coupled with the RTF_GATEWAY 443 * flag, routes can be specified which not only specify the next-hop to 444 * be used when routing to a certain prefix, but also which outgoing 445 * interface should be used. 446 * 447 * Previously, interfaces would have unique addresses assigned to them 448 * and so the address assigned to a particular interface could be used 449 * to identify a particular interface. One exception to this was the 450 * case of an unnumbered interface (where IPIF_UNNUMBERED was set). 451 * 452 * With the advent of IPv6 and its link-local addresses, this 453 * restriction was relaxed and interfaces could share addresses between 454 * themselves. In fact, typically all of the link-local interfaces on 455 * an IPv6 node or router will have the same link-local address. In 456 * order to differentiate between these interfaces, the use of an 457 * interface index is necessary and this index can be carried inside a 458 * RTA_IFP sockaddr (which is actually a sockaddr_dl). One restriction 459 * of using the interface index, however, is that all of the ipif's that 460 * are part of an ill have the same index and so the RTA_IFP sockaddr 461 * cannot be used to differentiate between ipif's (or logical 462 * interfaces) that belong to the same ill (physical interface). 463 * 464 * For example, in the following case involving IPv4 interfaces and 465 * logical interfaces 466 * 467 * 192.0.2.32 255.255.255.224 192.0.2.33 U if0 468 * 192.0.2.32 255.255.255.224 192.0.2.34 U if0:1 469 * 192.0.2.32 255.255.255.224 192.0.2.35 U if0:2 470 * 471 * the ipif's corresponding to each of these interface routes can be 472 * uniquely identified by the "gateway" (actually interface address). 473 * 474 * In this case involving multiple IPv6 default routes to a particular 475 * link-local gateway, the use of RTA_IFP is necessary to specify which 476 * default route is of interest: 477 * 478 * default fe80::123:4567:89ab:cdef U if0 479 * default fe80::123:4567:89ab:cdef U if1 480 */ 481 482 /* RTF_GATEWAY not set */ 483 if (!(flags & RTF_GATEWAY)) { 484 queue_t *stq; 485 486 if (sp != NULL) { 487 ip2dbg(("ip_rt_add_v6: gateway security attributes " 488 "cannot be set with interface route\n")); 489 if (ipif_refheld) 490 ipif_refrele(ipif); 491 return (EINVAL); 492 } 493 494 /* 495 * As the interface index specified with the RTA_IFP sockaddr is 496 * the same for all ipif's off of an ill, the matching logic 497 * below uses MATCH_IRE_ILL if such an index was specified. 498 * This means that routes sharing the same prefix when added 499 * using a RTA_IFP sockaddr must have distinct interface 500 * indices (namely, they must be on distinct ill's). 501 * 502 * On the other hand, since the gateway address will usually be 503 * different for each ipif on the system, the matching logic 504 * uses MATCH_IRE_IPIF in the case of a traditional interface 505 * route. This means that interface routes for the same prefix 506 * can be created if they belong to distinct ipif's and if a 507 * RTA_IFP sockaddr is not present. 508 */ 509 if (ipif_arg != NULL) { 510 if (ipif_refheld) { 511 ipif_refrele(ipif); 512 ipif_refheld = B_FALSE; 513 } 514 ipif = ipif_arg; 515 match_flags |= MATCH_IRE_ILL; 516 } else { 517 /* 518 * Check the ipif corresponding to the gw_addr 519 */ 520 if (ipif == NULL) 521 return (ENETUNREACH); 522 match_flags |= MATCH_IRE_IPIF; 523 } 524 525 ASSERT(ipif != NULL); 526 /* 527 * We check for an existing entry at this point. 528 */ 529 match_flags |= MATCH_IRE_MASK; 530 ire = ire_ftable_lookup_v6(dst_addr, mask, 0, IRE_INTERFACE, 531 ipif, NULL, ALL_ZONES, 0, NULL, match_flags); 532 if (ire != NULL) { 533 ire_refrele(ire); 534 if (ipif_refheld) 535 ipif_refrele(ipif); 536 return (EEXIST); 537 } 538 539 stq = (ipif->ipif_net_type == IRE_IF_RESOLVER) 540 ? ipif->ipif_rq : ipif->ipif_wq; 541 542 /* 543 * Create a copy of the IRE_LOOPBACK, IRE_IF_NORESOLVER or 544 * IRE_IF_RESOLVER with the modified address and netmask. 545 */ 546 ire = ire_create_v6( 547 dst_addr, 548 mask, 549 &ipif->ipif_v6src_addr, 550 NULL, 551 &ipif->ipif_mtu, 552 NULL, 553 NULL, 554 stq, 555 ipif->ipif_net_type, 556 ipif->ipif_resolver_mp, 557 ipif, 558 NULL, 559 0, 560 0, 561 flags, 562 &ire_uinfo_null, 563 NULL, 564 NULL); 565 if (ire == NULL) { 566 if (ipif_refheld) 567 ipif_refrele(ipif); 568 return (ENOMEM); 569 } 570 571 /* 572 * Some software (for example, GateD and Sun Cluster) attempts 573 * to create (what amount to) IRE_PREFIX routes with the 574 * loopback address as the gateway. This is primarily done to 575 * set up prefixes with the RTF_REJECT flag set (for example, 576 * when generating aggregate routes.) 577 * 578 * If the IRE type (as defined by ipif->ipif_net_type) is 579 * IRE_LOOPBACK, then we map the request into a 580 * IRE_IF_NORESOLVER. 581 * 582 * Needless to say, the real IRE_LOOPBACK is NOT created by this 583 * routine, but rather using ire_create_v6() directly. 584 */ 585 if (ipif->ipif_net_type == IRE_LOOPBACK) 586 ire->ire_type = IRE_IF_NORESOLVER; 587 error = ire_add(&ire, q, mp, func); 588 if (error == 0) 589 goto save_ire; 590 /* 591 * In the result of failure, ire_add() will have already 592 * deleted the ire in question, so there is no need to 593 * do that here. 594 */ 595 if (ipif_refheld) 596 ipif_refrele(ipif); 597 return (error); 598 } 599 if (ipif_refheld) { 600 ipif_refrele(ipif); 601 ipif_refheld = B_FALSE; 602 } 603 604 /* 605 * Get an interface IRE for the specified gateway. 606 * If we don't have an IRE_IF_NORESOLVER or IRE_IF_RESOLVER for the 607 * gateway, it is currently unreachable and we fail the request 608 * accordingly. 609 */ 610 ipif = ipif_arg; 611 if (ipif_arg != NULL) 612 match_flags |= MATCH_IRE_ILL; 613 gw_ire = ire_ftable_lookup_v6(gw_addr, 0, 0, IRE_INTERFACE, ipif_arg, 614 NULL, ALL_ZONES, 0, NULL, match_flags); 615 if (gw_ire == NULL) 616 return (ENETUNREACH); 617 618 /* 619 * We create one of three types of IREs as a result of this request 620 * based on the netmask. A netmask of all ones (which is automatically 621 * assumed when RTF_HOST is set) results in an IRE_HOST being created. 622 * An all zeroes netmask implies a default route so an IRE_DEFAULT is 623 * created. Otherwise, an IRE_PREFIX route is created for the 624 * destination prefix. 625 */ 626 if (IN6_ARE_ADDR_EQUAL(mask, &ipv6_all_ones)) 627 type = IRE_HOST; 628 else if (IN6_IS_ADDR_UNSPECIFIED(mask)) 629 type = IRE_DEFAULT; 630 else 631 type = IRE_PREFIX; 632 633 /* check for a duplicate entry */ 634 ire = ire_ftable_lookup_v6(dst_addr, mask, gw_addr, type, ipif_arg, 635 NULL, ALL_ZONES, 0, NULL, 636 match_flags | MATCH_IRE_MASK | MATCH_IRE_GW); 637 if (ire != NULL) { 638 ire_refrele(gw_ire); 639 ire_refrele(ire); 640 return (EEXIST); 641 } 642 643 /* Security attribute exists */ 644 if (sp != NULL) { 645 tsol_gcgrp_addr_t ga; 646 647 /* find or create the gateway credentials group */ 648 ga.ga_af = AF_INET6; 649 ga.ga_addr = *gw_addr; 650 651 /* we hold reference to it upon success */ 652 gcgrp = gcgrp_lookup(&ga, B_TRUE); 653 if (gcgrp == NULL) { 654 ire_refrele(gw_ire); 655 return (ENOMEM); 656 } 657 658 /* 659 * Create and add the security attribute to the group; a 660 * reference to the group is made upon allocating a new 661 * entry successfully. If it finds an already-existing 662 * entry for the security attribute in the group, it simply 663 * returns it and no new reference is made to the group. 664 */ 665 gc = gc_create(sp, gcgrp, &gcgrp_xtraref); 666 if (gc == NULL) { 667 /* release reference held by gcgrp_lookup */ 668 GCGRP_REFRELE(gcgrp); 669 ire_refrele(gw_ire); 670 return (ENOMEM); 671 } 672 } 673 674 /* Create the IRE. */ 675 ire = ire_create_v6( 676 dst_addr, /* dest address */ 677 mask, /* mask */ 678 /* src address assigned by the caller? */ 679 (((flags & RTF_SETSRC) && !IN6_IS_ADDR_UNSPECIFIED(src_addr)) ? 680 src_addr : NULL), 681 gw_addr, /* gateway address */ 682 &gw_ire->ire_max_frag, 683 NULL, /* no Fast Path header */ 684 NULL, /* no recv-from queue */ 685 NULL, /* no send-to queue */ 686 (ushort_t)type, /* IRE type */ 687 NULL, 688 ipif_arg, 689 NULL, 690 0, 691 0, 692 flags, 693 &gw_ire->ire_uinfo, /* Inherit ULP info from gw */ 694 gc, /* security attribute */ 695 NULL); 696 /* 697 * The ire holds a reference to the 'gc' and the 'gc' holds a 698 * reference to the 'gcgrp'. We can now release the extra reference 699 * the 'gcgrp' acquired in the gcgrp_lookup, if it was not used. 700 */ 701 if (gcgrp_xtraref) 702 GCGRP_REFRELE(gcgrp); 703 if (ire == NULL) { 704 if (gc != NULL) 705 GC_REFRELE(gc); 706 ire_refrele(gw_ire); 707 return (ENOMEM); 708 } 709 710 /* 711 * POLICY: should we allow an RTF_HOST with address INADDR_ANY? 712 * SUN/OS socket stuff does but do we really want to allow ::0 ? 713 */ 714 715 /* Add the new IRE. */ 716 error = ire_add(&ire, q, mp, func); 717 /* 718 * In the result of failure, ire_add() will have already 719 * deleted the ire in question, so there is no need to 720 * do that here. 721 */ 722 if (error != 0) { 723 ire_refrele(gw_ire); 724 return (error); 725 } 726 727 if (flags & RTF_MULTIRT) { 728 /* 729 * Invoke the CGTP (multirouting) filtering module 730 * to add the dst address in the filtering database. 731 * Replicated inbound packets coming from that address 732 * will be filtered to discard the duplicates. 733 * It is not necessary to call the CGTP filter hook 734 * when the dst address is a multicast, because an 735 * IP source address cannot be a multicast. 736 */ 737 if ((ip_cgtp_filter_ops != NULL) && 738 !IN6_IS_ADDR_MULTICAST(&(ire->ire_addr_v6))) { 739 int res = ip_cgtp_filter_ops->cfo_add_dest_v6( 740 &ire->ire_addr_v6, 741 &ire->ire_gateway_addr_v6, 742 &ire->ire_src_addr_v6, 743 &gw_ire->ire_src_addr_v6); 744 if (res != 0) { 745 ire_refrele(gw_ire); 746 ire_delete(ire); 747 return (res); 748 } 749 } 750 } 751 752 /* 753 * Now that the prefix IRE entry has been created, delete any 754 * existing gateway IRE cache entries as well as any IRE caches 755 * using the gateway, and force them to be created through 756 * ip_newroute_v6. 757 */ 758 if (gc != NULL) { 759 ASSERT(gcgrp != NULL); 760 ire_clookup_delete_cache_gw_v6(gw_addr, ALL_ZONES); 761 } 762 763 save_ire: 764 if (gw_ire != NULL) { 765 ire_refrele(gw_ire); 766 } 767 if (ipif != NULL) { 768 mblk_t *save_mp; 769 770 /* 771 * Save enough information so that we can recreate the IRE if 772 * the interface goes down and then up. The metrics associated 773 * with the route will be saved as well when rts_setmetrics() is 774 * called after the IRE has been created. In the case where 775 * memory cannot be allocated, none of this information will be 776 * saved. 777 */ 778 save_mp = allocb(sizeof (ifrt_t), BPRI_MED); 779 if (save_mp != NULL) { 780 ifrt_t *ifrt; 781 782 save_mp->b_wptr += sizeof (ifrt_t); 783 ifrt = (ifrt_t *)save_mp->b_rptr; 784 bzero(ifrt, sizeof (ifrt_t)); 785 ifrt->ifrt_type = ire->ire_type; 786 ifrt->ifrt_v6addr = ire->ire_addr_v6; 787 mutex_enter(&ire->ire_lock); 788 ifrt->ifrt_v6gateway_addr = ire->ire_gateway_addr_v6; 789 ifrt->ifrt_v6src_addr = ire->ire_src_addr_v6; 790 mutex_exit(&ire->ire_lock); 791 ifrt->ifrt_v6mask = ire->ire_mask_v6; 792 ifrt->ifrt_flags = ire->ire_flags; 793 ifrt->ifrt_max_frag = ire->ire_max_frag; 794 mutex_enter(&ipif->ipif_saved_ire_lock); 795 save_mp->b_cont = ipif->ipif_saved_ire_mp; 796 ipif->ipif_saved_ire_mp = save_mp; 797 ipif->ipif_saved_ire_cnt++; 798 mutex_exit(&ipif->ipif_saved_ire_lock); 799 } 800 } 801 if (ire_arg != NULL) { 802 /* 803 * Store the ire that was successfully added into where ire_arg 804 * points to so that callers don't have to look it up 805 * themselves (but they are responsible for ire_refrele()ing 806 * the ire when they are finished with it). 807 */ 808 *ire_arg = ire; 809 } else { 810 ire_refrele(ire); /* Held in ire_add */ 811 } 812 if (ipif_refheld) 813 ipif_refrele(ipif); 814 return (0); 815 } 816 817 /* 818 * ip_rt_delete_v6 is called to delete an IPv6 route. 819 * ipif_arg is passed in to associate it with the correct interface 820 * (for link-local destinations and gateways). 821 */ 822 /* ARGSUSED4 */ 823 int 824 ip_rt_delete_v6(const in6_addr_t *dst_addr, const in6_addr_t *mask, 825 const in6_addr_t *gw_addr, uint_t rtm_addrs, int flags, ipif_t *ipif_arg, 826 queue_t *q, mblk_t *mp, ipsq_func_t func) 827 { 828 ire_t *ire = NULL; 829 ipif_t *ipif; 830 uint_t type; 831 uint_t match_flags = MATCH_IRE_TYPE; 832 int err = 0; 833 boolean_t ipif_refheld = B_FALSE; 834 835 /* 836 * If this is the case of RTF_HOST being set, then we set the netmask 837 * to all ones. Otherwise, we use the netmask if one was supplied. 838 */ 839 if (flags & RTF_HOST) { 840 mask = &ipv6_all_ones; 841 match_flags |= MATCH_IRE_MASK; 842 } else if (rtm_addrs & RTA_NETMASK) { 843 match_flags |= MATCH_IRE_MASK; 844 } 845 846 /* 847 * Note that RTF_GATEWAY is never set on a delete, therefore 848 * we check if the gateway address is one of our interfaces first, 849 * and fall back on RTF_GATEWAY routes. 850 * 851 * This makes it possible to delete an original 852 * IRE_IF_NORESOLVER/IRE_IF_RESOLVER - consistent with SunOS 4.1. 853 * 854 * As the interface index specified with the RTA_IFP sockaddr is the 855 * same for all ipif's off of an ill, the matching logic below uses 856 * MATCH_IRE_ILL if such an index was specified. This means a route 857 * sharing the same prefix and interface index as the the route 858 * intended to be deleted might be deleted instead if a RTA_IFP sockaddr 859 * is specified in the request. 860 * 861 * On the other hand, since the gateway address will usually be 862 * different for each ipif on the system, the matching logic 863 * uses MATCH_IRE_IPIF in the case of a traditional interface 864 * route. This means that interface routes for the same prefix can be 865 * uniquely identified if they belong to distinct ipif's and if a 866 * RTA_IFP sockaddr is not present. 867 * 868 * For more detail on specifying routes by gateway address and by 869 * interface index, see the comments in ip_rt_add_v6(). 870 */ 871 ipif = ipif_lookup_interface_v6(gw_addr, dst_addr, q, mp, func, &err); 872 if (ipif != NULL) { 873 ipif_refheld = B_TRUE; 874 if (ipif_arg != NULL) { 875 ipif_refrele(ipif); 876 ipif_refheld = B_FALSE; 877 ipif = ipif_arg; 878 match_flags |= MATCH_IRE_ILL; 879 } else { 880 match_flags |= MATCH_IRE_IPIF; 881 } 882 883 if (ipif->ipif_ire_type == IRE_LOOPBACK) 884 ire = ire_ctable_lookup_v6(dst_addr, 0, IRE_LOOPBACK, 885 ipif, ALL_ZONES, NULL, match_flags); 886 if (ire == NULL) 887 ire = ire_ftable_lookup_v6(dst_addr, mask, 0, 888 IRE_INTERFACE, ipif, NULL, ALL_ZONES, 0, NULL, 889 match_flags); 890 } else if (err == EINPROGRESS) { 891 return (err); 892 } else { 893 err = 0; 894 } 895 if (ire == NULL) { 896 /* 897 * At this point, the gateway address is not one of our own 898 * addresses or a matching interface route was not found. We 899 * set the IRE type to lookup based on whether 900 * this is a host route, a default route or just a prefix. 901 * 902 * If an ipif_arg was passed in, then the lookup is based on an 903 * interface index so MATCH_IRE_ILL is added to match_flags. 904 * In any case, MATCH_IRE_IPIF is cleared and MATCH_IRE_GW is 905 * set as the route being looked up is not a traditional 906 * interface route. 907 */ 908 match_flags &= ~MATCH_IRE_IPIF; 909 match_flags |= MATCH_IRE_GW; 910 if (ipif_arg != NULL) 911 match_flags |= MATCH_IRE_ILL; 912 if (IN6_ARE_ADDR_EQUAL(mask, &ipv6_all_ones)) 913 type = IRE_HOST; 914 else if (IN6_IS_ADDR_UNSPECIFIED(mask)) 915 type = IRE_DEFAULT; 916 else 917 type = IRE_PREFIX; 918 ire = ire_ftable_lookup_v6(dst_addr, mask, gw_addr, type, 919 ipif_arg, NULL, ALL_ZONES, 0, NULL, match_flags); 920 if (ire == NULL && type == IRE_HOST) { 921 ire = ire_ftable_lookup_v6(dst_addr, mask, gw_addr, 922 IRE_HOST_REDIRECT, ipif_arg, NULL, ALL_ZONES, 0, 923 NULL, match_flags); 924 } 925 } 926 927 if (ipif_refheld) { 928 ipif_refrele(ipif); 929 ipif_refheld = B_FALSE; 930 } 931 if (ire == NULL) 932 return (ESRCH); 933 934 if (ire->ire_flags & RTF_MULTIRT) { 935 /* 936 * Invoke the CGTP (multirouting) filtering module 937 * to remove the dst address from the filtering database. 938 * Packets coming from that address will no longer be 939 * filtered to remove duplicates. 940 */ 941 if (ip_cgtp_filter_ops != NULL) { 942 err = ip_cgtp_filter_ops->cfo_del_dest_v6( 943 &ire->ire_addr_v6, &ire->ire_gateway_addr_v6); 944 } 945 } 946 947 ipif = ire->ire_ipif; 948 if (ipif != NULL) { 949 mblk_t **mpp; 950 mblk_t *mp; 951 ifrt_t *ifrt; 952 in6_addr_t gw_addr_v6; 953 954 /* Remove from ipif_saved_ire_mp list if it is there */ 955 mutex_enter(&ire->ire_lock); 956 gw_addr_v6 = ire->ire_gateway_addr_v6; 957 mutex_exit(&ire->ire_lock); 958 mutex_enter(&ipif->ipif_saved_ire_lock); 959 for (mpp = &ipif->ipif_saved_ire_mp; *mpp != NULL; 960 mpp = &(*mpp)->b_cont) { 961 /* 962 * On a given ipif, the triple of address, gateway and 963 * mask is unique for each saved IRE (in the case of 964 * ordinary interface routes, the gateway address is 965 * all-zeroes). 966 */ 967 mp = *mpp; 968 ifrt = (ifrt_t *)mp->b_rptr; 969 if (IN6_ARE_ADDR_EQUAL(&ifrt->ifrt_v6addr, 970 &ire->ire_addr_v6) && 971 IN6_ARE_ADDR_EQUAL(&ifrt->ifrt_v6gateway_addr, 972 &gw_addr_v6) && 973 IN6_ARE_ADDR_EQUAL(&ifrt->ifrt_v6mask, 974 &ire->ire_mask_v6)) { 975 *mpp = mp->b_cont; 976 ipif->ipif_saved_ire_cnt--; 977 freeb(mp); 978 break; 979 } 980 } 981 mutex_exit(&ipif->ipif_saved_ire_lock); 982 } 983 ire_delete(ire); 984 ire_refrele(ire); 985 return (err); 986 } 987 988 /* 989 * Derive a token from the link layer address. 990 */ 991 boolean_t 992 ill_setdefaulttoken(ill_t *ill) 993 { 994 int i; 995 in6_addr_t v6addr, v6mask; 996 997 /* 998 * Though we execute on the ipsq, we need to hold the ill_lock 999 * to prevent readers from seeing partially updated values 1000 * while we do the update. 1001 */ 1002 mutex_enter(&ill->ill_lock); 1003 if (!MEDIA_V6INTFID(ill->ill_media, ill->ill_phys_addr_length, 1004 ill->ill_phys_addr, &v6addr)) { 1005 mutex_exit(&ill->ill_lock); 1006 return (B_FALSE); 1007 } 1008 1009 (void) ip_plen_to_mask_v6(IPV6_TOKEN_LEN, &v6mask); 1010 1011 for (i = 0; i < 4; i++) 1012 v6mask.s6_addr32[i] = v6mask.s6_addr32[i] ^ 1013 (uint32_t)0xffffffff; 1014 1015 V6_MASK_COPY(v6addr, v6mask, ill->ill_token); 1016 ill->ill_token_length = IPV6_TOKEN_LEN; 1017 mutex_exit(&ill->ill_lock); 1018 return (B_TRUE); 1019 } 1020 1021 /* 1022 * Create a link-local address from a token. 1023 */ 1024 static void 1025 ipif_get_linklocal(in6_addr_t *dest, const in6_addr_t *token) 1026 { 1027 int i; 1028 1029 for (i = 0; i < 4; i++) { 1030 dest->s6_addr32[i] = 1031 token->s6_addr32[i] | ipv6_ll_template.s6_addr32[i]; 1032 } 1033 } 1034 1035 /* 1036 * Set a nice default address for either automatic tunnels tsrc/96 or 1037 * 6to4 tunnels 2002:<tsrc>::1/64 1038 */ 1039 static void 1040 ipif_set_tun_auto_addr(ipif_t *ipif, struct iftun_req *ta) 1041 { 1042 sin6_t sin6; 1043 sin_t *sin; 1044 ill_t *ill = ipif->ipif_ill; 1045 tun_t *tp = (tun_t *)ill->ill_wq->q_next->q_ptr; 1046 1047 if (ta->ifta_saddr.ss_family != AF_INET || 1048 (ipif->ipif_flags & IPIF_UP) || !ipif->ipif_isv6 || 1049 (ta->ifta_flags & IFTUN_SRC) == 0) 1050 return; 1051 1052 /* 1053 * Check the tunnel type by examining q_next->q_ptr 1054 */ 1055 if (tp->tun_flags & TUN_AUTOMATIC) { 1056 /* this is an automatic tunnel */ 1057 (void) ip_plen_to_mask_v6(IPV6_ABITS - IP_ABITS, 1058 &ipif->ipif_v6net_mask); 1059 bzero(&sin6, sizeof (sin6_t)); 1060 sin = (sin_t *)&ta->ifta_saddr; 1061 V4_PART_OF_V6(sin6.sin6_addr) = sin->sin_addr.s_addr; 1062 sin6.sin6_family = AF_INET6; 1063 (void) ip_sioctl_addr(ipif, (sin_t *)&sin6, 1064 NULL, NULL, NULL, NULL); 1065 } else if (tp->tun_flags & TUN_6TO4) { 1066 /* this is a 6to4 tunnel */ 1067 (void) ip_plen_to_mask_v6(IPV6_PREFIX_LEN, 1068 &ipif->ipif_v6net_mask); 1069 sin = (sin_t *)&ta->ifta_saddr; 1070 /* create a 6to4 address from the IPv4 tsrc */ 1071 IN6_V4ADDR_TO_6TO4(&sin->sin_addr, &sin6.sin6_addr); 1072 sin6.sin6_family = AF_INET6; 1073 (void) ip_sioctl_addr(ipif, (sin_t *)&sin6, 1074 NULL, NULL, NULL, NULL); 1075 } else { 1076 ip1dbg(("ipif_set_tun_auto_addr: Unknown tunnel type")); 1077 return; 1078 } 1079 } 1080 1081 /* 1082 * Set link local for ipif_id 0 of a configured tunnel based on the 1083 * tsrc or tdst parameter 1084 * For tunnels over IPv4 use the IPv4 address prepended with 32 zeros as 1085 * the token. 1086 * For tunnels over IPv6 use the low-order 64 bits of the "inner" IPv6 address 1087 * as the token for the "outer" link. 1088 */ 1089 void 1090 ipif_set_tun_llink(ill_t *ill, struct iftun_req *ta) 1091 { 1092 ipif_t *ipif; 1093 sin_t *sin; 1094 in6_addr_t *s6addr; 1095 1096 ASSERT(IAM_WRITER_ILL(ill)); 1097 1098 /* The first ipif must be id zero. */ 1099 ipif = ill->ill_ipif; 1100 ASSERT(ipif->ipif_id == 0); 1101 1102 /* no link local for automatic tunnels */ 1103 if (!(ipif->ipif_flags & IPIF_POINTOPOINT)) { 1104 ipif_set_tun_auto_addr(ipif, ta); 1105 return; 1106 } 1107 1108 if ((ta->ifta_flags & IFTUN_DST) && 1109 IN6_IS_ADDR_UNSPECIFIED(&ipif->ipif_v6pp_dst_addr)) { 1110 sin6_t sin6; 1111 1112 ASSERT(!(ipif->ipif_flags & IPIF_UP)); 1113 bzero(&sin6, sizeof (sin6_t)); 1114 if ((ta->ifta_saddr.ss_family == AF_INET)) { 1115 sin = (sin_t *)&ta->ifta_daddr; 1116 V4_PART_OF_V6(sin6.sin6_addr) = 1117 sin->sin_addr.s_addr; 1118 } else { 1119 s6addr = 1120 &((sin6_t *)&ta->ifta_daddr)->sin6_addr; 1121 sin6.sin6_addr.s6_addr32[3] = s6addr->s6_addr32[3]; 1122 sin6.sin6_addr.s6_addr32[2] = s6addr->s6_addr32[2]; 1123 } 1124 ipif_get_linklocal(&ipif->ipif_v6pp_dst_addr, 1125 &sin6.sin6_addr); 1126 ipif->ipif_v6subnet = ipif->ipif_v6pp_dst_addr; 1127 } 1128 if ((ta->ifta_flags & IFTUN_SRC)) { 1129 ASSERT(!(ipif->ipif_flags & IPIF_UP)); 1130 1131 /* Set the token if it isn't already set */ 1132 if (IN6_IS_ADDR_UNSPECIFIED(&ill->ill_token)) { 1133 if ((ta->ifta_saddr.ss_family == AF_INET)) { 1134 sin = (sin_t *)&ta->ifta_saddr; 1135 V4_PART_OF_V6(ill->ill_token) = 1136 sin->sin_addr.s_addr; 1137 } else { 1138 s6addr = 1139 &((sin6_t *)&ta->ifta_saddr)->sin6_addr; 1140 ill->ill_token.s6_addr32[3] = 1141 s6addr->s6_addr32[3]; 1142 ill->ill_token.s6_addr32[2] = 1143 s6addr->s6_addr32[2]; 1144 } 1145 ill->ill_token_length = IPV6_TOKEN_LEN; 1146 } 1147 /* 1148 * Attempt to set the link local address if it isn't set. 1149 */ 1150 if (IN6_IS_ADDR_UNSPECIFIED(&ipif->ipif_v6lcl_addr)) 1151 (void) ipif_setlinklocal(ipif); 1152 } 1153 } 1154 1155 /* 1156 * Is it not possible to set the link local address? 1157 * The address can be set if the token is set, and the token 1158 * isn't too long. 1159 * Return B_TRUE if the address can't be set, or B_FALSE if it can. 1160 */ 1161 boolean_t 1162 ipif_cant_setlinklocal(ipif_t *ipif) 1163 { 1164 ill_t *ill = ipif->ipif_ill; 1165 1166 if (IN6_IS_ADDR_UNSPECIFIED(&ill->ill_token) || 1167 ill->ill_token_length > IPV6_ABITS - IPV6_LL_PREFIXLEN) 1168 return (B_TRUE); 1169 1170 return (B_FALSE); 1171 } 1172 1173 /* 1174 * Generate a link-local address from the token. 1175 * Return zero if the address was set, or non-zero if it couldn't be set. 1176 */ 1177 int 1178 ipif_setlinklocal(ipif_t *ipif) 1179 { 1180 ill_t *ill = ipif->ipif_ill; 1181 1182 ASSERT(IAM_WRITER_ILL(ill)); 1183 1184 if (ipif_cant_setlinklocal(ipif)) 1185 return (-1); 1186 1187 ipif_get_linklocal(&ipif->ipif_v6lcl_addr, &ill->ill_token); 1188 (void) ip_plen_to_mask_v6(IPV6_LL_PREFIXLEN, &ipif->ipif_v6net_mask); 1189 V6_MASK_COPY(ipif->ipif_v6lcl_addr, ipif->ipif_v6net_mask, 1190 ipif->ipif_v6subnet); 1191 1192 if (ipif->ipif_flags & IPIF_NOLOCAL) { 1193 ipif->ipif_v6src_addr = ipv6_all_zeros; 1194 } else { 1195 ipif->ipif_v6src_addr = ipif->ipif_v6lcl_addr; 1196 } 1197 return (0); 1198 } 1199 1200 /* 1201 * This function sets up the multicast mappings in NDP. 1202 * Unlike ARP, there are no mapping_mps here. We delete the 1203 * mapping nces and add a new one. 1204 * 1205 * Returns non-zero on error and 0 on success. 1206 */ 1207 int 1208 ipif_ndp_setup_multicast(ipif_t *ipif, nce_t **ret_nce) 1209 { 1210 ill_t *ill = ipif->ipif_ill; 1211 in6_addr_t v6_mcast_addr = {(uint32_t)V6_MCAST, 0, 0, 0}; 1212 in6_addr_t v6_mcast_mask = {(uint32_t)V6_MCAST, 0, 0, 0}; 1213 in6_addr_t v6_extract_mask; 1214 uchar_t *phys_addr, *bphys_addr, *alloc_phys; 1215 nce_t *mnce = NULL; 1216 int err = 0; 1217 phyint_t *phyi = ill->ill_phyint; 1218 uint32_t hw_extract_start; 1219 dl_unitdata_req_t *dlur; 1220 1221 if (ret_nce != NULL) 1222 *ret_nce = NULL; 1223 /* 1224 * Delete the mapping nce. Normally these should not exist 1225 * as a previous ipif_down -> ipif_ndp_down should have deleted 1226 * all the nces. But they can exist if ip_rput_dlpi_writer 1227 * calls this when PHYI_MULTI_BCAST is set. 1228 */ 1229 mnce = ndp_lookup(ill, &v6_mcast_addr, B_FALSE); 1230 if (mnce != NULL) { 1231 ndp_delete(mnce); 1232 NCE_REFRELE(mnce); 1233 mnce = NULL; 1234 } 1235 1236 /* 1237 * Get media specific v6 mapping information. Note that 1238 * nd_lla_len can be 0 for tunnels. 1239 */ 1240 alloc_phys = kmem_alloc(ill->ill_nd_lla_len, KM_NOSLEEP); 1241 if ((alloc_phys == NULL) && (ill->ill_nd_lla_len != 0)) 1242 return (ENOMEM); 1243 /* 1244 * Determine the broadcast address. 1245 */ 1246 dlur = (dl_unitdata_req_t *)ill->ill_bcast_mp->b_rptr; 1247 if (ill->ill_sap_length < 0) 1248 bphys_addr = (uchar_t *)dlur + dlur->dl_dest_addr_offset; 1249 else 1250 bphys_addr = (uchar_t *)dlur + 1251 dlur->dl_dest_addr_offset + ill->ill_sap_length; 1252 1253 /* 1254 * Check PHYI_MULTI_BCAST and possible length of physical 1255 * address to determine if we use the mapping or the 1256 * broadcast address. 1257 */ 1258 if ((phyi->phyint_flags & PHYI_MULTI_BCAST) || 1259 (!MEDIA_V6MINFO(ill->ill_media, ill->ill_nd_lla_len, 1260 bphys_addr, alloc_phys, &hw_extract_start, 1261 &v6_extract_mask))) { 1262 if (ill->ill_phys_addr_length > IP_MAX_HW_LEN) { 1263 kmem_free(alloc_phys, ill->ill_nd_lla_len); 1264 return (E2BIG); 1265 } 1266 /* Use the link-layer broadcast address for MULTI_BCAST */ 1267 phys_addr = bphys_addr; 1268 bzero(&v6_extract_mask, sizeof (v6_extract_mask)); 1269 hw_extract_start = ill->ill_nd_lla_len; 1270 } else { 1271 phys_addr = alloc_phys; 1272 } 1273 if ((ipif->ipif_flags & IPIF_BROADCAST) || 1274 (ill->ill_flags & ILLF_MULTICAST) || 1275 (phyi->phyint_flags & PHYI_MULTI_BCAST)) { 1276 mutex_enter(&ndp_g_lock); 1277 err = ndp_add(ill, 1278 phys_addr, 1279 &v6_mcast_addr, /* v6 address */ 1280 &v6_mcast_mask, /* v6 mask */ 1281 &v6_extract_mask, 1282 hw_extract_start, 1283 NCE_F_MAPPING | NCE_F_PERMANENT | NCE_F_NONUD, 1284 ND_REACHABLE, 1285 &mnce); 1286 mutex_exit(&ndp_g_lock); 1287 if (err == 0) { 1288 if (ret_nce != NULL) { 1289 *ret_nce = mnce; 1290 } else { 1291 NCE_REFRELE(mnce); 1292 } 1293 } 1294 } 1295 kmem_free(alloc_phys, ill->ill_nd_lla_len); 1296 return (err); 1297 } 1298 1299 /* 1300 * Get the resolver set up for a new interface address. (Always called 1301 * as writer.) 1302 */ 1303 int 1304 ipif_ndp_up(ipif_t *ipif, const in6_addr_t *addr, boolean_t macaddr_change) 1305 { 1306 ill_t *ill = ipif->ipif_ill; 1307 int err = 0; 1308 nce_t *nce = NULL; 1309 nce_t *mnce = NULL; 1310 1311 ip1dbg(("ipif_ndp_up(%s:%u)\n", 1312 ipif->ipif_ill->ill_name, ipif->ipif_id)); 1313 1314 /* 1315 * ND not supported on XRESOLV interfaces. If ND support (multicast) 1316 * added later, take out this check. 1317 */ 1318 if (ill->ill_flags & ILLF_XRESOLV) 1319 return (0); 1320 1321 if (IN6_IS_ADDR_UNSPECIFIED(addr) || 1322 (!(ill->ill_net_type & IRE_INTERFACE))) 1323 return (0); 1324 1325 /* 1326 * Need to setup multicast mapping only when the first 1327 * interface is coming UP. 1328 */ 1329 if (ill->ill_ipif_up_count == 0 && 1330 (ill->ill_flags & ILLF_MULTICAST)) { 1331 /* 1332 * We set the multicast before setting up the mapping for 1333 * local address because ipif_ndp_setup_multicast does 1334 * ndp_walk to delete nces which will delete the mapping 1335 * for local address also if we added the mapping for 1336 * local address first. 1337 */ 1338 err = ipif_ndp_setup_multicast(ipif, &mnce); 1339 if (err != 0) 1340 return (err); 1341 } 1342 1343 if ((ipif->ipif_flags & (IPIF_UNNUMBERED|IPIF_NOLOCAL)) == 0) { 1344 uint16_t flags; 1345 uchar_t *hw_addr = NULL; 1346 1347 /* Permanent entries don't need NUD */ 1348 flags = NCE_F_PERMANENT; 1349 flags |= NCE_F_NONUD; 1350 if (ill->ill_flags & ILLF_ROUTER) 1351 flags |= NCE_F_ISROUTER; 1352 1353 if (ipif->ipif_flags & IPIF_ANYCAST) 1354 flags |= NCE_F_ANYCAST; 1355 1356 if (ill->ill_net_type == IRE_IF_RESOLVER) { 1357 hw_addr = ill->ill_nd_lla; 1358 1359 if (ill->ill_move_in_progress || macaddr_change) { 1360 /* 1361 * Addresses are failing over to this ill. 1362 * Don't wait for NUD to see this change. 1363 * Publish our new link-layer address. 1364 */ 1365 flags |= NCE_F_UNSOL_ADV; 1366 } 1367 } 1368 err = ndp_lookup_then_add(ill, 1369 hw_addr, 1370 addr, 1371 &ipv6_all_ones, 1372 &ipv6_all_zeros, 1373 0, 1374 flags, 1375 ND_REACHABLE, 1376 &nce); 1377 switch (err) { 1378 case 0: 1379 ip1dbg(("ipif_ndp_up: NCE created for %s\n", 1380 ill->ill_name)); 1381 break; 1382 case EEXIST: 1383 NCE_REFRELE(nce); 1384 ip1dbg(("ipif_ndp_up: NCE already exists for %s\n", 1385 ill->ill_name)); 1386 if (mnce != NULL) { 1387 ndp_delete(mnce); 1388 NCE_REFRELE(mnce); 1389 } 1390 return (err); 1391 default: 1392 ip1dbg(("ipif_ndp_up: NCE creation failed %s\n", 1393 ill->ill_name)); 1394 if (mnce != NULL) { 1395 ndp_delete(mnce); 1396 NCE_REFRELE(mnce); 1397 } 1398 return (err); 1399 } 1400 } 1401 if (nce != NULL) 1402 NCE_REFRELE(nce); 1403 if (mnce != NULL) 1404 NCE_REFRELE(mnce); 1405 return (0); 1406 } 1407 1408 /* Remove all cache entries for this logical interface */ 1409 void 1410 ipif_ndp_down(ipif_t *ipif) 1411 { 1412 nce_t *nce; 1413 1414 nce = ndp_lookup(ipif->ipif_ill, &ipif->ipif_v6lcl_addr, B_FALSE); 1415 if (nce != NULL) { 1416 ndp_delete(nce); 1417 NCE_REFRELE(nce); 1418 } 1419 /* 1420 * Remove mapping and all other nces dependent on this ill 1421 * when the last ipif is going away. 1422 */ 1423 if (ipif->ipif_ill->ill_ipif_up_count == 0) { 1424 ndp_walk(ipif->ipif_ill, (pfi_t)ndp_delete_per_ill, 1425 (uchar_t *)ipif->ipif_ill); 1426 } 1427 } 1428 1429 /* 1430 * Used when an interface comes up to recreate any extra routes on this 1431 * interface. 1432 */ 1433 static ire_t ** 1434 ipif_recover_ire_v6(ipif_t *ipif) 1435 { 1436 mblk_t *mp; 1437 ire_t **ipif_saved_irep; 1438 ire_t **irep; 1439 1440 ip1dbg(("ipif_recover_ire_v6(%s:%u)", ipif->ipif_ill->ill_name, 1441 ipif->ipif_id)); 1442 1443 ASSERT(ipif->ipif_isv6); 1444 1445 mutex_enter(&ipif->ipif_saved_ire_lock); 1446 ipif_saved_irep = (ire_t **)kmem_zalloc(sizeof (ire_t *) * 1447 ipif->ipif_saved_ire_cnt, KM_NOSLEEP); 1448 if (ipif_saved_irep == NULL) { 1449 mutex_exit(&ipif->ipif_saved_ire_lock); 1450 return (NULL); 1451 } 1452 1453 irep = ipif_saved_irep; 1454 1455 for (mp = ipif->ipif_saved_ire_mp; mp != NULL; mp = mp->b_cont) { 1456 ire_t *ire; 1457 queue_t *rfq; 1458 queue_t *stq; 1459 ifrt_t *ifrt; 1460 in6_addr_t *src_addr; 1461 in6_addr_t *gateway_addr; 1462 mblk_t *resolver_mp; 1463 char buf[INET6_ADDRSTRLEN]; 1464 ushort_t type; 1465 1466 /* 1467 * When the ire was initially created and then added in 1468 * ip_rt_add_v6(), it was created either using 1469 * ipif->ipif_net_type in the case of a traditional interface 1470 * route, or as one of the IRE_OFFSUBNET types (with the 1471 * exception of IRE_HOST_REDIRECT which is created by 1472 * icmp_redirect_v6() and which we don't need to save or 1473 * recover). In the case where ipif->ipif_net_type was 1474 * IRE_LOOPBACK, ip_rt_add_v6() will update the ire_type to 1475 * IRE_IF_NORESOLVER before calling ire_add_v6() to satisfy 1476 * software like GateD and Sun Cluster which creates routes 1477 * using the the loopback interface's address as a gateway. 1478 * 1479 * As ifrt->ifrt_type reflects the already updated ire_type and 1480 * since ire_create_v6() expects that IRE_IF_NORESOLVER will 1481 * have a valid ire_dlureq_mp field (which doesn't make sense 1482 * for a IRE_LOOPBACK), ire_create_v6() will be called in the 1483 * same way here as in ip_rt_add_v6(), namely using 1484 * ipif->ipif_net_type when the route looks like a traditional 1485 * interface route (where ifrt->ifrt_type & IRE_INTERFACE is 1486 * true) and otherwise using the saved ifrt->ifrt_type. This 1487 * means that in the case where ipif->ipif_net_type is 1488 * IRE_LOOPBACK, the ire created by ire_create_v6() will be an 1489 * IRE_LOOPBACK, it will then be turned into an 1490 * IRE_IF_NORESOLVER and then added by ire_add_v6(). 1491 */ 1492 ifrt = (ifrt_t *)mp->b_rptr; 1493 if (ifrt->ifrt_type & IRE_INTERFACE) { 1494 rfq = NULL; 1495 stq = (ipif->ipif_net_type == IRE_IF_RESOLVER) 1496 ? ipif->ipif_rq : ipif->ipif_wq; 1497 src_addr = (ifrt->ifrt_flags & RTF_SETSRC) 1498 ? &ifrt->ifrt_v6src_addr 1499 : &ipif->ipif_v6src_addr; 1500 gateway_addr = NULL; 1501 resolver_mp = ipif->ipif_resolver_mp; 1502 type = ipif->ipif_net_type; 1503 } else { 1504 rfq = NULL; 1505 stq = NULL; 1506 src_addr = (ifrt->ifrt_flags & RTF_SETSRC) 1507 ? &ifrt->ifrt_v6src_addr : NULL; 1508 gateway_addr = &ifrt->ifrt_v6gateway_addr; 1509 resolver_mp = NULL; 1510 type = ifrt->ifrt_type; 1511 } 1512 1513 /* 1514 * Create a copy of the IRE with the saved address and netmask. 1515 */ 1516 ip1dbg(("ipif_recover_ire_v6: creating IRE %s (%d) for %s/%d\n", 1517 ip_nv_lookup(ire_nv_tbl, ifrt->ifrt_type), ifrt->ifrt_type, 1518 inet_ntop(AF_INET6, &ifrt->ifrt_v6addr, buf, sizeof (buf)), 1519 ip_mask_to_plen_v6(&ifrt->ifrt_v6mask))); 1520 ire = ire_create_v6( 1521 &ifrt->ifrt_v6addr, 1522 &ifrt->ifrt_v6mask, 1523 src_addr, 1524 gateway_addr, 1525 &ifrt->ifrt_max_frag, 1526 NULL, 1527 rfq, 1528 stq, 1529 type, 1530 resolver_mp, 1531 ipif, 1532 NULL, 1533 0, 1534 0, 1535 ifrt->ifrt_flags, 1536 &ifrt->ifrt_iulp_info, 1537 NULL, 1538 NULL); 1539 if (ire == NULL) { 1540 mutex_exit(&ipif->ipif_saved_ire_lock); 1541 kmem_free(ipif_saved_irep, 1542 ipif->ipif_saved_ire_cnt * sizeof (ire_t *)); 1543 return (NULL); 1544 } 1545 1546 /* 1547 * Some software (for example, GateD and Sun Cluster) attempts 1548 * to create (what amount to) IRE_PREFIX routes with the 1549 * loopback address as the gateway. This is primarily done to 1550 * set up prefixes with the RTF_REJECT flag set (for example, 1551 * when generating aggregate routes.) 1552 * 1553 * If the IRE type (as defined by ipif->ipif_net_type) is 1554 * IRE_LOOPBACK, then we map the request into a 1555 * IRE_IF_NORESOLVER. 1556 */ 1557 if (ipif->ipif_net_type == IRE_LOOPBACK) 1558 ire->ire_type = IRE_IF_NORESOLVER; 1559 /* 1560 * ire held by ire_add, will be refreled' in ipif_up_done 1561 * towards the end 1562 */ 1563 (void) ire_add(&ire, NULL, NULL, NULL); 1564 *irep = ire; 1565 irep++; 1566 ip1dbg(("ipif_recover_ire_v6: added ire %p\n", (void *)ire)); 1567 } 1568 mutex_exit(&ipif->ipif_saved_ire_lock); 1569 return (ipif_saved_irep); 1570 } 1571 1572 /* 1573 * Return the scope of the given IPv6 address. If the address is an 1574 * IPv4 mapped IPv6 address, return the scope of the corresponding 1575 * IPv4 address. 1576 */ 1577 in6addr_scope_t 1578 ip_addr_scope_v6(const in6_addr_t *addr) 1579 { 1580 static in6_addr_t ipv6loopback = IN6ADDR_LOOPBACK_INIT; 1581 1582 if (IN6_IS_ADDR_V4MAPPED(addr)) { 1583 in_addr_t v4addr_h = ntohl(V4_PART_OF_V6((*addr))); 1584 if ((v4addr_h >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET || 1585 (v4addr_h & IN_AUTOCONF_MASK) == IN_AUTOCONF_NET) 1586 return (IP6_SCOPE_LINKLOCAL); 1587 if ((v4addr_h & IN_PRIVATE8_MASK) == IN_PRIVATE8_NET || 1588 (v4addr_h & IN_PRIVATE12_MASK) == IN_PRIVATE12_NET || 1589 (v4addr_h & IN_PRIVATE16_MASK) == IN_PRIVATE16_NET) 1590 return (IP6_SCOPE_SITELOCAL); 1591 return (IP6_SCOPE_GLOBAL); 1592 } 1593 1594 if (IN6_IS_ADDR_MULTICAST(addr)) 1595 return (IN6_ADDR_MC_SCOPE(addr)); 1596 1597 /* link-local and loopback addresses are of link-local scope */ 1598 if (IN6_IS_ADDR_LINKLOCAL(addr) || 1599 IN6_ARE_ADDR_EQUAL(addr, &ipv6loopback)) 1600 return (IP6_SCOPE_LINKLOCAL); 1601 if (IN6_IS_ADDR_SITELOCAL(addr)) 1602 return (IP6_SCOPE_SITELOCAL); 1603 return (IP6_SCOPE_GLOBAL); 1604 } 1605 1606 1607 /* 1608 * Calculates the xor of a1 and a2, and stores the result in res. 1609 */ 1610 static void 1611 ip_addr_xor_v6(const in6_addr_t *a1, const in6_addr_t *a2, in6_addr_t *res) 1612 { 1613 int i; 1614 1615 for (i = 0; i < 4; i++) 1616 res->s6_addr32[i] = a1->s6_addr32[i] ^ a2->s6_addr32[i]; 1617 } 1618 1619 #define IPIF_VALID_IPV6_SOURCE(ipif) \ 1620 (((ipif)->ipif_flags & IPIF_UP) && \ 1621 !((ipif)->ipif_flags & (IPIF_NOLOCAL|IPIF_ANYCAST))) 1622 1623 /* source address candidate */ 1624 typedef struct candidate { 1625 ipif_t *cand_ipif; 1626 /* The properties of this candidate */ 1627 boolean_t cand_isdst; 1628 boolean_t cand_isdst_set; 1629 in6addr_scope_t cand_scope; 1630 boolean_t cand_scope_set; 1631 boolean_t cand_isdeprecated; 1632 boolean_t cand_isdeprecated_set; 1633 boolean_t cand_ispreferred; 1634 boolean_t cand_ispreferred_set; 1635 boolean_t cand_matchedinterface; 1636 boolean_t cand_matchedinterface_set; 1637 boolean_t cand_matchedlabel; 1638 boolean_t cand_matchedlabel_set; 1639 boolean_t cand_istmp; 1640 boolean_t cand_istmp_set; 1641 in6_addr_t cand_xor; 1642 boolean_t cand_xor_set; 1643 } cand_t; 1644 #define cand_srcaddr cand_ipif->ipif_v6lcl_addr 1645 #define cand_flags cand_ipif->ipif_flags 1646 #define cand_ill cand_ipif->ipif_ill 1647 #define cand_zoneid cand_ipif->ipif_zoneid 1648 1649 /* information about the destination for source address selection */ 1650 typedef struct dstinfo { 1651 const in6_addr_t *dst_addr; 1652 ill_t *dst_ill; 1653 boolean_t dst_restrict_ill; 1654 boolean_t dst_prefer_src_tmp; 1655 in6addr_scope_t dst_scope; 1656 char *dst_label; 1657 } dstinfo_t; 1658 1659 /* 1660 * The following functions are rules used to select a source address in 1661 * ipif_select_source_v6(). Each rule compares a current candidate (cc) 1662 * against the best candidate (bc). Each rule has three possible outcomes; 1663 * the candidate is preferred over the best candidate (CAND_PREFER), the 1664 * candidate is not preferred over the best candidate (CAND_AVOID), or the 1665 * candidate is of equal value as the best candidate (CAND_TIE). 1666 * 1667 * These rules are part of a greater "Default Address Selection for IPv6" 1668 * sheme, which is standards based work coming out of the IETF ipv6 working 1669 * group. The IETF document defines both IPv6 source address selection and 1670 * destination address ordering. The rules defined here implement the IPv6 1671 * source address selection. Destination address ordering is done by 1672 * libnsl, and uses a similar set of rules to implement the sorting. 1673 */ 1674 typedef enum {CAND_AVOID, CAND_TIE, CAND_PREFER} rule_res_t; 1675 typedef rule_res_t (*rulef_t)(cand_t *, cand_t *, const dstinfo_t *); 1676 1677 /* Prefer an address if it is equal to the destination address. */ 1678 static rule_res_t 1679 rule_isdst(cand_t *bc, cand_t *cc, const dstinfo_t *dstinfo) 1680 { 1681 if (!bc->cand_isdst_set) { 1682 bc->cand_isdst = 1683 IN6_ARE_ADDR_EQUAL(&bc->cand_srcaddr, dstinfo->dst_addr); 1684 bc->cand_isdst_set = B_TRUE; 1685 } 1686 1687 cc->cand_isdst = 1688 IN6_ARE_ADDR_EQUAL(&cc->cand_srcaddr, dstinfo->dst_addr); 1689 cc->cand_isdst_set = B_TRUE; 1690 1691 if (cc->cand_isdst == bc->cand_isdst) 1692 return (CAND_TIE); 1693 else if (cc->cand_isdst) 1694 return (CAND_PREFER); 1695 else 1696 return (CAND_AVOID); 1697 } 1698 1699 /* 1700 * Prefer addresses that are of closest scope to the destination. Always 1701 * prefer addresses that are of greater scope than the destination over 1702 * those that are of lesser scope than the destination. 1703 */ 1704 static rule_res_t 1705 rule_scope(cand_t *bc, cand_t *cc, const dstinfo_t *dstinfo) 1706 { 1707 if (!bc->cand_scope_set) { 1708 bc->cand_scope = ip_addr_scope_v6(&bc->cand_srcaddr); 1709 bc->cand_scope_set = B_TRUE; 1710 } 1711 1712 cc->cand_scope = ip_addr_scope_v6(&cc->cand_srcaddr); 1713 cc->cand_scope_set = B_TRUE; 1714 1715 if (cc->cand_scope < bc->cand_scope) { 1716 if (cc->cand_scope < dstinfo->dst_scope) 1717 return (CAND_AVOID); 1718 else 1719 return (CAND_PREFER); 1720 } else if (bc->cand_scope < cc->cand_scope) { 1721 if (bc->cand_scope < dstinfo->dst_scope) 1722 return (CAND_PREFER); 1723 else 1724 return (CAND_AVOID); 1725 } else { 1726 return (CAND_TIE); 1727 } 1728 } 1729 1730 /* 1731 * Prefer non-deprecated source addresses. 1732 */ 1733 /* ARGSUSED2 */ 1734 static rule_res_t 1735 rule_deprecated(cand_t *bc, cand_t *cc, const dstinfo_t *dstinfo) 1736 { 1737 if (!bc->cand_isdeprecated_set) { 1738 bc->cand_isdeprecated = 1739 ((bc->cand_flags & IPIF_DEPRECATED) != 0); 1740 bc->cand_isdeprecated_set = B_TRUE; 1741 } 1742 1743 cc->cand_isdeprecated = ((cc->cand_flags & IPIF_DEPRECATED) != 0); 1744 cc->cand_isdeprecated_set = B_TRUE; 1745 1746 if (bc->cand_isdeprecated == cc->cand_isdeprecated) 1747 return (CAND_TIE); 1748 else if (cc->cand_isdeprecated) 1749 return (CAND_AVOID); 1750 else 1751 return (CAND_PREFER); 1752 } 1753 1754 /* 1755 * Prefer source addresses that have the IPIF_PREFERRED flag set. This 1756 * rule must be before rule_interface because the flag could be set on any 1757 * interface, not just the interface being used for outgoing packets (for 1758 * example, the IFF_PREFERRED could be set on an address assigned to the 1759 * loopback interface). 1760 */ 1761 /* ARGSUSED2 */ 1762 static rule_res_t 1763 rule_preferred(cand_t *bc, cand_t *cc, const dstinfo_t *dstinfo) 1764 { 1765 if (!bc->cand_ispreferred_set) { 1766 bc->cand_ispreferred = ((bc->cand_flags & IPIF_PREFERRED) != 0); 1767 bc->cand_ispreferred_set = B_TRUE; 1768 } 1769 1770 cc->cand_ispreferred = ((cc->cand_flags & IPIF_PREFERRED) != 0); 1771 cc->cand_ispreferred_set = B_TRUE; 1772 1773 if (bc->cand_ispreferred == cc->cand_ispreferred) 1774 return (CAND_TIE); 1775 else if (cc->cand_ispreferred) 1776 return (CAND_PREFER); 1777 else 1778 return (CAND_AVOID); 1779 } 1780 1781 /* 1782 * Prefer source addresses that are assigned to the outgoing interface, or 1783 * to an interface that is in the same IPMP group as the outgoing 1784 * interface. 1785 */ 1786 static rule_res_t 1787 rule_interface(cand_t *bc, cand_t *cc, const dstinfo_t *dstinfo) 1788 { 1789 ill_t *dstill = dstinfo->dst_ill; 1790 1791 /* 1792 * If dstinfo->dst_restrict_ill is set, this rule is unnecessary 1793 * since we know all candidates will be on the same link. 1794 */ 1795 if (dstinfo->dst_restrict_ill) 1796 return (CAND_TIE); 1797 1798 if (!bc->cand_matchedinterface_set) { 1799 bc->cand_matchedinterface = (bc->cand_ill == dstill || 1800 (dstill->ill_group != NULL && 1801 dstill->ill_group == bc->cand_ill->ill_group)); 1802 bc->cand_matchedinterface_set = B_TRUE; 1803 } 1804 1805 cc->cand_matchedinterface = (cc->cand_ill == dstill || 1806 (dstill->ill_group != NULL && 1807 dstill->ill_group == cc->cand_ill->ill_group)); 1808 cc->cand_matchedinterface_set = B_TRUE; 1809 1810 if (bc->cand_matchedinterface == cc->cand_matchedinterface) 1811 return (CAND_TIE); 1812 else if (cc->cand_matchedinterface) 1813 return (CAND_PREFER); 1814 else 1815 return (CAND_AVOID); 1816 } 1817 1818 /* 1819 * Prefer source addresses whose label matches the destination's label. 1820 */ 1821 static rule_res_t 1822 rule_label(cand_t *bc, cand_t *cc, const dstinfo_t *dstinfo) 1823 { 1824 char *label; 1825 1826 if (!bc->cand_matchedlabel_set) { 1827 label = ip6_asp_lookup(&bc->cand_srcaddr, NULL); 1828 bc->cand_matchedlabel = 1829 ip6_asp_labelcmp(label, dstinfo->dst_label); 1830 bc->cand_matchedlabel_set = B_TRUE; 1831 } 1832 1833 label = ip6_asp_lookup(&cc->cand_srcaddr, NULL); 1834 cc->cand_matchedlabel = ip6_asp_labelcmp(label, dstinfo->dst_label); 1835 cc->cand_matchedlabel_set = B_TRUE; 1836 1837 if (bc->cand_matchedlabel == cc->cand_matchedlabel) 1838 return (CAND_TIE); 1839 else if (cc->cand_matchedlabel) 1840 return (CAND_PREFER); 1841 else 1842 return (CAND_AVOID); 1843 } 1844 1845 /* 1846 * Prefer public addresses over temporary ones. An application can reverse 1847 * the logic of this rule and prefer temporary addresses by using the 1848 * IPV6_SRC_PREFERENCES socket option. 1849 */ 1850 static rule_res_t 1851 rule_temporary(cand_t *bc, cand_t *cc, const dstinfo_t *dstinfo) 1852 { 1853 if (!bc->cand_istmp_set) { 1854 bc->cand_istmp = ((bc->cand_flags & IPIF_TEMPORARY) != 0); 1855 bc->cand_istmp_set = B_TRUE; 1856 } 1857 1858 cc->cand_istmp = ((cc->cand_flags & IPIF_TEMPORARY) != 0); 1859 cc->cand_istmp_set = B_TRUE; 1860 1861 if (bc->cand_istmp == cc->cand_istmp) 1862 return (CAND_TIE); 1863 1864 if (dstinfo->dst_prefer_src_tmp && cc->cand_istmp) 1865 return (CAND_PREFER); 1866 else if (!dstinfo->dst_prefer_src_tmp && !cc->cand_istmp) 1867 return (CAND_PREFER); 1868 else 1869 return (CAND_AVOID); 1870 } 1871 1872 /* 1873 * Prefer source addresses with longer matching prefix with the 1874 * destination. Since this is the last rule, it must not produce a tie. 1875 * We do the longest matching prefix calculation and the tie break in one 1876 * calculation by doing an xor of both addresses with the destination, and 1877 * pick the address with the smallest xor value. That way, we're both 1878 * picking the address with the longest matching prefix, and breaking the 1879 * tie if they happen to have both have equal mathing prefixes. 1880 */ 1881 static rule_res_t 1882 rule_prefix(cand_t *bc, cand_t *cc, const dstinfo_t *dstinfo) 1883 { 1884 int i; 1885 1886 if (!bc->cand_xor_set) { 1887 ip_addr_xor_v6(&bc->cand_srcaddr, 1888 dstinfo->dst_addr, &bc->cand_xor); 1889 bc->cand_xor_set = B_TRUE; 1890 } 1891 1892 ip_addr_xor_v6(&cc->cand_srcaddr, dstinfo->dst_addr, &cc->cand_xor); 1893 cc->cand_xor_set = B_TRUE; 1894 1895 for (i = 0; i < 4; i++) { 1896 if (bc->cand_xor.s6_addr32[i] != cc->cand_xor.s6_addr32[i]) 1897 break; 1898 } 1899 1900 if (cc->cand_xor.s6_addr32[i] < bc->cand_xor.s6_addr32[i]) 1901 return (CAND_PREFER); 1902 else 1903 return (CAND_AVOID); 1904 } 1905 1906 /* 1907 * Prefer to use zone-specific addresses when possible instead of all-zones 1908 * addresses. 1909 */ 1910 /* ARGSUSED2 */ 1911 static rule_res_t 1912 rule_zone_specific(cand_t *bc, cand_t *cc, const dstinfo_t *dstinfo) 1913 { 1914 if ((bc->cand_zoneid == ALL_ZONES) == 1915 (cc->cand_zoneid == ALL_ZONES)) 1916 return (CAND_TIE); 1917 else if (cc->cand_zoneid == ALL_ZONES) 1918 return (CAND_AVOID); 1919 else 1920 return (CAND_PREFER); 1921 } 1922 1923 /* 1924 * Determine the best source address given a destination address and a 1925 * destination ill. If no suitable source address is found, it returns 1926 * NULL. If there is a usable address pointed to by the usesrc 1927 * (i.e ill_usesrc_ifindex != 0) then return that first since it is more 1928 * fine grained (i.e per interface) 1929 * 1930 * This implementation is based on the "Default Address Selection for IPv6" 1931 * specification produced by the IETF IPv6 working group. It has been 1932 * implemented so that the list of addresses is only traversed once (the 1933 * specification's algorithm could traverse the list of addresses once for 1934 * every rule). 1935 * 1936 * The restrict_ill argument restricts the algorithm to chose a source 1937 * address that is assigned to the destination ill or an ill in the same 1938 * IPMP group as the destination ill. This is used when the destination 1939 * address is a link-local or multicast address, and when 1940 * ipv6_strict_dst_multihoming is turned on. 1941 * 1942 * src_prefs is the caller's set of source address preferences. If source 1943 * address selection is being called to determine the source address of a 1944 * connected socket (from ip_bind_connected_v6()), then the preferences are 1945 * taken from conn_src_preferences. These preferences can be set on a 1946 * per-socket basis using the IPV6_SRC_PREFERENCES socket option. The only 1947 * preference currently implemented is for rfc3041 temporary addresses. 1948 */ 1949 ipif_t * 1950 ipif_select_source_v6(ill_t *dstill, const in6_addr_t *dst, 1951 boolean_t restrict_ill, uint32_t src_prefs, zoneid_t zoneid) 1952 { 1953 dstinfo_t dstinfo; 1954 char dstr[INET6_ADDRSTRLEN]; 1955 char sstr[INET6_ADDRSTRLEN]; 1956 ipif_t *ipif; 1957 ill_t *ill, *usesrc_ill = NULL; 1958 ill_walk_context_t ctx; 1959 cand_t best_c; /* The best candidate */ 1960 cand_t curr_c; /* The current candidate */ 1961 uint_t index; 1962 boolean_t first_candidate = B_TRUE; 1963 rule_res_t rule_result; 1964 phyint_t *phyi; 1965 tsol_tpc_t *src_rhtp, *dst_rhtp; 1966 1967 /* 1968 * The list of ordering rules. They are applied in the order they 1969 * appear in the list. 1970 * 1971 * XXX rule_mipv6 will need to be implemented (the specification's 1972 * rules 4) if a mobile IPv6 node is ever implemented. 1973 */ 1974 rulef_t rules[] = { 1975 rule_isdst, 1976 rule_scope, 1977 rule_deprecated, 1978 rule_preferred, 1979 rule_interface, 1980 rule_label, 1981 rule_temporary, 1982 rule_prefix, 1983 rule_zone_specific, 1984 NULL 1985 }; 1986 1987 ASSERT(dstill->ill_isv6); 1988 ASSERT(!IN6_IS_ADDR_V4MAPPED(dst)); 1989 1990 /* 1991 * Check if there is a usable src address pointed to by the 1992 * usesrc ifindex. This has higher precedence since it is 1993 * finer grained (i.e per interface) v/s being system wide. 1994 */ 1995 if (dstill->ill_usesrc_ifindex != 0) { 1996 if ((usesrc_ill = 1997 ill_lookup_on_ifindex(dstill->ill_usesrc_ifindex, B_TRUE, 1998 NULL, NULL, NULL, NULL)) != NULL) { 1999 dstinfo.dst_ill = usesrc_ill; 2000 } else { 2001 return (NULL); 2002 } 2003 } else { 2004 dstinfo.dst_ill = dstill; 2005 } 2006 2007 /* 2008 * If we're dealing with an unlabeled destination on a labeled system, 2009 * make sure that we ignore source addresses that are incompatible with 2010 * the destination's default label. That destination's default label 2011 * must dominate the minimum label on the source address. 2012 * 2013 * (Note that this has to do with Trusted Solaris. It's not related to 2014 * the labels described by ip6_asp_lookup.) 2015 */ 2016 dst_rhtp = NULL; 2017 if (is_system_labeled()) { 2018 dst_rhtp = find_tpc(dst, IPV6_VERSION, B_FALSE); 2019 if (dst_rhtp == NULL) 2020 return (NULL); 2021 if (dst_rhtp->tpc_tp.host_type != UNLABELED) { 2022 TPC_RELE(dst_rhtp); 2023 dst_rhtp = NULL; 2024 } 2025 } 2026 2027 dstinfo.dst_addr = dst; 2028 dstinfo.dst_scope = ip_addr_scope_v6(dst); 2029 dstinfo.dst_label = ip6_asp_lookup(dst, NULL); 2030 dstinfo.dst_prefer_src_tmp = ((src_prefs & IPV6_PREFER_SRC_TMP) != 0); 2031 2032 rw_enter(&ill_g_lock, RW_READER); 2033 /* 2034 * Section three of the I-D states that for multicast and 2035 * link-local destinations, the candidate set must be restricted to 2036 * an interface that is on the same link as the outgoing interface. 2037 * Also, when ipv6_strict_dst_multihoming is turned on, always 2038 * restrict the source address to the destination link as doing 2039 * otherwise will almost certainly cause problems. 2040 */ 2041 if (IN6_IS_ADDR_LINKLOCAL(dst) || IN6_IS_ADDR_MULTICAST(dst) || 2042 ipv6_strict_dst_multihoming || usesrc_ill != NULL) 2043 dstinfo.dst_restrict_ill = B_TRUE; 2044 else 2045 dstinfo.dst_restrict_ill = restrict_ill; 2046 2047 bzero(&best_c, sizeof (cand_t)); 2048 2049 /* 2050 * Take a pass through the list of IPv6 interfaces to chose the 2051 * best possible source address. If restrict_ill is true, we only 2052 * iterate through the ill's that are in the same IPMP group as the 2053 * destination's outgoing ill. If restrict_ill is false, we walk 2054 * the entire list of IPv6 ill's. 2055 */ 2056 if (dstinfo.dst_restrict_ill) { 2057 if (dstinfo.dst_ill->ill_group != NULL) { 2058 /* 2059 * Try to avoid FAILED/OFFLINE ills. Global and 2060 * site local addresses will failover and are not 2061 * an issue even if we select them. (i.e. this is 2062 * a race where we hit this path before in.mpathd 2063 * moves them. But link local addresses don't move. 2064 * This creates a problem for NUD. If NUD ends up 2065 * (nce_xmit) using the src addr from a failed 2066 * interface NUD will fail and end up deleting the nce 2067 * This will cause performance issues where ires 2068 * are frequently created and deleted every few secs. 2069 */ 2070 for (ill = dstinfo.dst_ill->ill_group->illgrp_ill; 2071 ill != NULL; ill = ill->ill_group_next) { 2072 phyi = ill->ill_phyint; 2073 if (!(phyi->phyint_flags & 2074 (PHYI_OFFLINE | PHYI_FAILED))) 2075 break; 2076 } 2077 if (ill == NULL) 2078 ill = dstinfo.dst_ill->ill_group->illgrp_ill; 2079 } else { 2080 ill = dstinfo.dst_ill; 2081 } 2082 } else { 2083 ill = ILL_START_WALK_V6(&ctx); 2084 } 2085 2086 while (ill != NULL) { 2087 ASSERT(ill->ill_isv6); 2088 2089 for (ipif = ill->ill_ipif; ipif != NULL; 2090 ipif = ipif->ipif_next) { 2091 2092 if (!IPIF_VALID_IPV6_SOURCE(ipif)) 2093 continue; 2094 2095 if (zoneid != ALL_ZONES && 2096 ipif->ipif_zoneid != zoneid && 2097 ipif->ipif_zoneid != ALL_ZONES) 2098 continue; 2099 2100 /* 2101 * Check compatibility of local address for 2102 * destination's default label if we're on a labeled 2103 * system. Incompatible addresses can't be used at 2104 * all and must be skipped over. 2105 */ 2106 if (dst_rhtp != NULL) { 2107 boolean_t incompat; 2108 2109 src_rhtp = find_tpc(&ipif->ipif_v6lcl_addr, 2110 IPV6_VERSION, B_FALSE); 2111 if (src_rhtp == NULL) 2112 continue; 2113 incompat = 2114 src_rhtp->tpc_tp.host_type != SUN_CIPSO || 2115 src_rhtp->tpc_tp.tp_doi != 2116 dst_rhtp->tpc_tp.tp_doi || 2117 (!_blinrange(&dst_rhtp->tpc_tp.tp_def_label, 2118 &src_rhtp->tpc_tp.tp_sl_range_cipso) && 2119 !blinlset(&dst_rhtp->tpc_tp.tp_def_label, 2120 src_rhtp->tpc_tp.tp_sl_set_cipso)); 2121 TPC_RELE(src_rhtp); 2122 if (incompat) 2123 continue; 2124 } 2125 2126 if (first_candidate) { 2127 /* 2128 * This is first valid address in the list. 2129 * It is automatically the best candidate 2130 * so far. 2131 */ 2132 best_c.cand_ipif = ipif; 2133 first_candidate = B_FALSE; 2134 continue; 2135 } 2136 2137 bzero(&curr_c, sizeof (cand_t)); 2138 curr_c.cand_ipif = ipif; 2139 2140 /* 2141 * Compare this current candidate (curr_c) with the 2142 * best candidate (best_c) by applying the 2143 * comparison rules in order until one breaks the 2144 * tie. 2145 */ 2146 for (index = 0; rules[index] != NULL; index++) { 2147 /* Apply a comparison rule. */ 2148 rule_result = 2149 (rules[index])(&best_c, &curr_c, &dstinfo); 2150 if (rule_result == CAND_AVOID) { 2151 /* 2152 * The best candidate is still the 2153 * best candidate. Forget about 2154 * this current candidate and go on 2155 * to the next one. 2156 */ 2157 break; 2158 } else if (rule_result == CAND_PREFER) { 2159 /* 2160 * This candidate is prefered. It 2161 * becomes the best candidate so 2162 * far. Go on to the next address. 2163 */ 2164 best_c = curr_c; 2165 break; 2166 } 2167 /* We have a tie, apply the next rule. */ 2168 } 2169 2170 /* 2171 * The last rule must be a tie breaker rule and 2172 * must never produce a tie. At this point, the 2173 * candidate should have either been rejected, or 2174 * have been prefered as the best candidate so far. 2175 */ 2176 ASSERT(rule_result != CAND_TIE); 2177 } 2178 2179 /* 2180 * We may be walking the linked-list of ill's in an 2181 * IPMP group or traversing the IPv6 ill avl tree. If it is a 2182 * usesrc ILL then it can't be part of IPMP group and we 2183 * will exit the while loop. 2184 */ 2185 if (dstinfo.dst_restrict_ill) 2186 ill = ill->ill_group_next; 2187 else 2188 ill = ill_next(&ctx, ill); 2189 } 2190 2191 ipif = best_c.cand_ipif; 2192 ip1dbg(("ipif_select_source_v6(%s, %s) -> %s\n", 2193 dstinfo.dst_ill->ill_name, 2194 inet_ntop(AF_INET6, dstinfo.dst_addr, dstr, sizeof (dstr)), 2195 (ipif == NULL ? "NULL" : 2196 inet_ntop(AF_INET6, &ipif->ipif_v6lcl_addr, sstr, sizeof (sstr))))); 2197 2198 if (usesrc_ill != NULL) 2199 ill_refrele(usesrc_ill); 2200 2201 if (dst_rhtp != NULL) 2202 TPC_RELE(dst_rhtp); 2203 2204 if (ipif == NULL) { 2205 rw_exit(&ill_g_lock); 2206 return (NULL); 2207 } 2208 2209 mutex_enter(&ipif->ipif_ill->ill_lock); 2210 if (IPIF_CAN_LOOKUP(ipif)) { 2211 ipif_refhold_locked(ipif); 2212 mutex_exit(&ipif->ipif_ill->ill_lock); 2213 rw_exit(&ill_g_lock); 2214 return (ipif); 2215 } 2216 mutex_exit(&ipif->ipif_ill->ill_lock); 2217 rw_exit(&ill_g_lock); 2218 ip1dbg(("ipif_select_source_v6 cannot lookup ipif %p" 2219 " returning null \n", (void *)ipif)); 2220 2221 return (NULL); 2222 } 2223 2224 /* 2225 * If old_ipif is not NULL, see if ipif was derived from old 2226 * ipif and if so, recreate the interface route by re-doing 2227 * source address selection. This happens when ipif_down -> 2228 * ipif_update_other_ipifs calls us. 2229 * 2230 * If old_ipif is NULL, just redo the source address selection 2231 * if needed. This happens when illgrp_insert or ipif_up_done_v6 2232 * calls us. 2233 */ 2234 void 2235 ipif_recreate_interface_routes_v6(ipif_t *old_ipif, ipif_t *ipif) 2236 { 2237 ire_t *ire; 2238 ire_t *ipif_ire; 2239 queue_t *stq; 2240 ill_t *ill; 2241 ipif_t *nipif = NULL; 2242 boolean_t nipif_refheld = B_FALSE; 2243 boolean_t ip6_asp_table_held = B_FALSE; 2244 2245 ill = ipif->ipif_ill; 2246 2247 if (!(ipif->ipif_flags & 2248 (IPIF_NOLOCAL|IPIF_ANYCAST|IPIF_DEPRECATED))) { 2249 /* 2250 * Can't possibly have borrowed the source 2251 * from old_ipif. 2252 */ 2253 return; 2254 } 2255 2256 /* 2257 * Is there any work to be done? No work if the address 2258 * is INADDR_ANY, loopback or NOLOCAL or ANYCAST ( 2259 * ipif_select_source_v6() does not borrow addresses from 2260 * NOLOCAL and ANYCAST interfaces). 2261 */ 2262 if ((old_ipif != NULL) && 2263 ((IN6_IS_ADDR_UNSPECIFIED(&old_ipif->ipif_v6lcl_addr)) || 2264 (old_ipif->ipif_ill->ill_wq == NULL) || 2265 (old_ipif->ipif_flags & 2266 (IPIF_NOLOCAL|IPIF_ANYCAST)))) { 2267 return; 2268 } 2269 2270 /* 2271 * Perform the same checks as when creating the 2272 * IRE_INTERFACE in ipif_up_done_v6. 2273 */ 2274 if (!(ipif->ipif_flags & IPIF_UP)) 2275 return; 2276 2277 if ((ipif->ipif_flags & IPIF_NOXMIT)) 2278 return; 2279 2280 if (IN6_IS_ADDR_UNSPECIFIED(&ipif->ipif_v6subnet) && 2281 IN6_IS_ADDR_UNSPECIFIED(&ipif->ipif_v6net_mask)) 2282 return; 2283 2284 /* 2285 * We know that ipif uses some other source for its 2286 * IRE_INTERFACE. Is it using the source of this 2287 * old_ipif? 2288 */ 2289 ipif_ire = ipif_to_ire_v6(ipif); 2290 if (ipif_ire == NULL) 2291 return; 2292 2293 if (old_ipif != NULL && 2294 !IN6_ARE_ADDR_EQUAL(&old_ipif->ipif_v6lcl_addr, 2295 &ipif_ire->ire_src_addr_v6)) { 2296 ire_refrele(ipif_ire); 2297 return; 2298 } 2299 2300 if (ip_debug > 2) { 2301 /* ip1dbg */ 2302 pr_addr_dbg("ipif_recreate_interface_routes_v6: deleting IRE" 2303 " for src %s\n", AF_INET6, &ipif_ire->ire_src_addr_v6); 2304 } 2305 2306 stq = ipif_ire->ire_stq; 2307 2308 /* 2309 * Can't use our source address. Select a different source address 2310 * for the IRE_INTERFACE. We restrict interface route source 2311 * address selection to ipif's assigned to the same link as the 2312 * interface. 2313 */ 2314 if (ip6_asp_can_lookup()) { 2315 ip6_asp_table_held = B_TRUE; 2316 nipif = ipif_select_source_v6(ill, &ipif->ipif_v6subnet, 2317 B_TRUE, IPV6_PREFER_SRC_DEFAULT, ipif->ipif_zoneid); 2318 } 2319 if (nipif == NULL) { 2320 /* Last resort - all ipif's have IPIF_NOLOCAL */ 2321 nipif = ipif; 2322 } else { 2323 nipif_refheld = B_TRUE; 2324 } 2325 2326 ire = ire_create_v6( 2327 &ipif->ipif_v6subnet, /* dest pref */ 2328 &ipif->ipif_v6net_mask, /* mask */ 2329 &nipif->ipif_v6src_addr, /* src addr */ 2330 NULL, /* no gateway */ 2331 &ipif->ipif_mtu, /* max frag */ 2332 NULL, /* no Fast path header */ 2333 NULL, /* no recv from queue */ 2334 stq, /* send-to queue */ 2335 ill->ill_net_type, /* IF_[NO]RESOLVER */ 2336 ill->ill_resolver_mp, /* xmit header */ 2337 ipif, 2338 NULL, 2339 0, 2340 0, 2341 0, 2342 &ire_uinfo_null, 2343 NULL, 2344 NULL); 2345 2346 if (ire != NULL) { 2347 ire_t *ret_ire; 2348 int error; 2349 2350 /* 2351 * We don't need ipif_ire anymore. We need to delete 2352 * before we add so that ire_add does not detect 2353 * duplicates. 2354 */ 2355 ire_delete(ipif_ire); 2356 ret_ire = ire; 2357 error = ire_add(&ret_ire, NULL, NULL, NULL); 2358 ASSERT(error == 0); 2359 ASSERT(ret_ire == ire); 2360 if (ret_ire != NULL) { 2361 /* Held in ire_add */ 2362 ire_refrele(ret_ire); 2363 } 2364 } 2365 /* 2366 * Either we are falling through from above or could not 2367 * allocate a replacement. 2368 */ 2369 ire_refrele(ipif_ire); 2370 if (ip6_asp_table_held) 2371 ip6_asp_table_refrele(); 2372 if (nipif_refheld) 2373 ipif_refrele(nipif); 2374 } 2375 2376 /* 2377 * This old_ipif is going away. 2378 * 2379 * Determine if any other ipif's are using our address as 2380 * ipif_v6lcl_addr (due to those being IPIF_NOLOCAL, IPIF_ANYCAST, or 2381 * IPIF_DEPRECATED). 2382 * Find the IRE_INTERFACE for such ipif's and recreate them 2383 * to use an different source address following the rules in 2384 * ipif_up_done_v6. 2385 * 2386 * This function takes an illgrp as an argument so that illgrp_delete 2387 * can call this to update source address even after deleting the 2388 * old_ipif->ipif_ill from the ill group. 2389 */ 2390 void 2391 ipif_update_other_ipifs_v6(ipif_t *old_ipif, ill_group_t *illgrp) 2392 { 2393 ipif_t *ipif; 2394 ill_t *ill; 2395 char buf[INET6_ADDRSTRLEN]; 2396 2397 ASSERT(IAM_WRITER_IPIF(old_ipif)); 2398 2399 ill = old_ipif->ipif_ill; 2400 2401 ip1dbg(("ipif_update_other_ipifs_v6(%s, %s)\n", 2402 ill->ill_name, 2403 inet_ntop(AF_INET6, &old_ipif->ipif_v6lcl_addr, 2404 buf, sizeof (buf)))); 2405 2406 /* 2407 * If this part of a group, look at all ills as ipif_select_source 2408 * borrows a source address across all the ills in the group. 2409 */ 2410 if (illgrp != NULL) 2411 ill = illgrp->illgrp_ill; 2412 2413 /* Don't need a lock since this is a writer */ 2414 for (; ill != NULL; ill = ill->ill_group_next) { 2415 for (ipif = ill->ill_ipif; ipif != NULL; 2416 ipif = ipif->ipif_next) { 2417 2418 if (ipif == old_ipif) 2419 continue; 2420 2421 ipif_recreate_interface_routes_v6(old_ipif, ipif); 2422 } 2423 } 2424 } 2425 2426 /* 2427 * Perform an attach and bind to get phys addr plus info_req for 2428 * the physical device. 2429 * q and mp represents an ioctl which will be queued waiting for 2430 * completion of the DLPI message exchange. 2431 * MUST be called on an ill queue. Can not set conn_pending_ill for that 2432 * reason thus the DL_PHYS_ADDR_ACK code does not assume ill_pending_q. 2433 * 2434 * Returns EINPROGRESS when mp has been consumed by queueing it on 2435 * ill_pending_mp and the ioctl will complete in ip_rput. 2436 */ 2437 int 2438 ill_dl_phys(ill_t *ill, ipif_t *ipif, mblk_t *mp, queue_t *q) 2439 { 2440 mblk_t *v6token_mp = NULL; 2441 mblk_t *v6lla_mp = NULL; 2442 mblk_t *phys_mp = NULL; 2443 mblk_t *info_mp = NULL; 2444 mblk_t *attach_mp = NULL; 2445 mblk_t *detach_mp = NULL; 2446 mblk_t *bind_mp = NULL; 2447 mblk_t *unbind_mp = NULL; 2448 mblk_t *notify_mp = NULL; 2449 2450 ip1dbg(("ill_dl_phys(%s:%u)\n", ill->ill_name, ipif->ipif_id)); 2451 ASSERT(ill->ill_dlpi_style_set); 2452 ASSERT(WR(q)->q_next != NULL); 2453 2454 if (ill->ill_isv6) { 2455 v6token_mp = ip_dlpi_alloc(sizeof (dl_phys_addr_req_t) + 2456 sizeof (t_scalar_t), DL_PHYS_ADDR_REQ); 2457 if (v6token_mp == NULL) 2458 goto bad; 2459 ((dl_phys_addr_req_t *)v6token_mp->b_rptr)->dl_addr_type = 2460 DL_IPV6_TOKEN; 2461 2462 v6lla_mp = ip_dlpi_alloc(sizeof (dl_phys_addr_req_t) + 2463 sizeof (t_scalar_t), DL_PHYS_ADDR_REQ); 2464 if (v6lla_mp == NULL) 2465 goto bad; 2466 ((dl_phys_addr_req_t *)v6lla_mp->b_rptr)->dl_addr_type = 2467 DL_IPV6_LINK_LAYER_ADDR; 2468 } 2469 2470 /* 2471 * Allocate a DL_NOTIFY_REQ and set the notifications we want. 2472 */ 2473 notify_mp = ip_dlpi_alloc(sizeof (dl_notify_req_t) + sizeof (long), 2474 DL_NOTIFY_REQ); 2475 if (notify_mp == NULL) 2476 goto bad; 2477 ((dl_notify_req_t *)notify_mp->b_rptr)->dl_notifications = 2478 (DL_NOTE_PHYS_ADDR | DL_NOTE_SDU_SIZE | DL_NOTE_FASTPATH_FLUSH | 2479 DL_NOTE_LINK_UP | DL_NOTE_LINK_DOWN | DL_NOTE_CAPAB_RENEG); 2480 2481 phys_mp = ip_dlpi_alloc(sizeof (dl_phys_addr_req_t) + 2482 sizeof (t_scalar_t), DL_PHYS_ADDR_REQ); 2483 if (phys_mp == NULL) 2484 goto bad; 2485 ((dl_phys_addr_req_t *)phys_mp->b_rptr)->dl_addr_type = 2486 DL_CURR_PHYS_ADDR; 2487 2488 info_mp = ip_dlpi_alloc( 2489 sizeof (dl_info_req_t) + sizeof (dl_info_ack_t), 2490 DL_INFO_REQ); 2491 if (info_mp == NULL) 2492 goto bad; 2493 2494 bind_mp = ip_dlpi_alloc(sizeof (dl_bind_req_t) + sizeof (long), 2495 DL_BIND_REQ); 2496 if (bind_mp == NULL) 2497 goto bad; 2498 ((dl_bind_req_t *)bind_mp->b_rptr)->dl_sap = ill->ill_sap; 2499 ((dl_bind_req_t *)bind_mp->b_rptr)->dl_service_mode = DL_CLDLS; 2500 2501 unbind_mp = ip_dlpi_alloc(sizeof (dl_unbind_req_t), DL_UNBIND_REQ); 2502 if (unbind_mp == NULL) 2503 goto bad; 2504 2505 /* If we need to attach/detach, pre-alloc and initialize the mblks */ 2506 if (ill->ill_needs_attach) { 2507 attach_mp = ip_dlpi_alloc(sizeof (dl_attach_req_t), 2508 DL_ATTACH_REQ); 2509 if (attach_mp == NULL) 2510 goto bad; 2511 ((dl_attach_req_t *)attach_mp->b_rptr)->dl_ppa = ill->ill_ppa; 2512 2513 detach_mp = ip_dlpi_alloc(sizeof (dl_detach_req_t), 2514 DL_DETACH_REQ); 2515 if (detach_mp == NULL) 2516 goto bad; 2517 } 2518 2519 /* 2520 * Here we are going to delay the ioctl ack until after 2521 * ACKs from DL_PHYS_ADDR_REQ. So need to save the 2522 * original ioctl message before sending the requests 2523 */ 2524 mutex_enter(&ill->ill_lock); 2525 /* ipsq_pending_mp_add won't fail since we pass in a NULL connp */ 2526 (void) ipsq_pending_mp_add(NULL, ipif, ill->ill_wq, mp, 0); 2527 /* 2528 * Set ill_phys_addr_pend to zero. It will be set to the addr_type of 2529 * the DL_PHYS_ADDR_REQ in ill_dlpi_send() and ill_dlpi_done(). It will 2530 * be used to track which DL_PHYS_ADDR_REQ is being ACK'd/NAK'd. 2531 */ 2532 ill->ill_phys_addr_pend = 0; 2533 mutex_exit(&ill->ill_lock); 2534 2535 if (attach_mp != NULL) { 2536 ip1dbg(("ill_dl_phys: attach\n")); 2537 ill_dlpi_send(ill, attach_mp); 2538 } 2539 ill_dlpi_send(ill, bind_mp); 2540 ill_dlpi_send(ill, info_mp); 2541 if (ill->ill_isv6) { 2542 ill_dlpi_send(ill, v6token_mp); 2543 ill_dlpi_send(ill, v6lla_mp); 2544 } 2545 ill_dlpi_send(ill, phys_mp); 2546 ill_dlpi_send(ill, notify_mp); 2547 ill_dlpi_send(ill, unbind_mp); 2548 2549 /* 2550 * Save the DL_DETACH_REQ (if there is one) for use in ill_delete(). 2551 */ 2552 ASSERT(ill->ill_detach_mp == NULL); 2553 ill->ill_detach_mp = detach_mp; 2554 2555 /* 2556 * This operation will complete in ip_rput_dlpi_writer with either 2557 * a DL_PHYS_ADDR_ACK or DL_ERROR_ACK. 2558 */ 2559 return (EINPROGRESS); 2560 bad: 2561 if (v6token_mp != NULL) 2562 freemsg(v6token_mp); 2563 if (v6lla_mp != NULL) 2564 freemsg(v6lla_mp); 2565 if (phys_mp != NULL) 2566 freemsg(phys_mp); 2567 if (info_mp != NULL) 2568 freemsg(info_mp); 2569 if (attach_mp != NULL) 2570 freemsg(attach_mp); 2571 if (detach_mp != NULL) 2572 freemsg(detach_mp); 2573 if (bind_mp != NULL) 2574 freemsg(bind_mp); 2575 if (unbind_mp != NULL) 2576 freemsg(unbind_mp); 2577 if (notify_mp != NULL) 2578 freemsg(notify_mp); 2579 return (ENOMEM); 2580 } 2581 2582 uint_t ip_loopback_mtu_v6plus = IP_LOOPBACK_MTU + IPV6_HDR_LEN + 20; 2583 2584 /* 2585 * DLPI is up. 2586 * Create all the IREs associated with an interface bring up multicast. 2587 * Set the interface flag and finish other initialization 2588 * that potentially had to be differed to after DL_BIND_ACK. 2589 */ 2590 int 2591 ipif_up_done_v6(ipif_t *ipif) 2592 { 2593 ire_t *ire_array[20]; 2594 ire_t **irep = ire_array; 2595 ire_t **irep1; 2596 ill_t *ill = ipif->ipif_ill; 2597 queue_t *stq; 2598 in6_addr_t v6addr; 2599 in6_addr_t route_mask; 2600 ipif_t *src_ipif = NULL; 2601 ipif_t *tmp_ipif; 2602 boolean_t flush_ire_cache = B_TRUE; 2603 int err; 2604 char buf[INET6_ADDRSTRLEN]; 2605 phyint_t *phyi; 2606 ire_t **ipif_saved_irep = NULL; 2607 int ipif_saved_ire_cnt; 2608 int cnt; 2609 boolean_t src_ipif_held = B_FALSE; 2610 boolean_t ire_added = B_FALSE; 2611 boolean_t loopback = B_FALSE; 2612 boolean_t ip6_asp_table_held = B_FALSE; 2613 2614 ip1dbg(("ipif_up_done_v6(%s:%u)\n", 2615 ipif->ipif_ill->ill_name, ipif->ipif_id)); 2616 2617 /* Check if this is a loopback interface */ 2618 if (ipif->ipif_ill->ill_wq == NULL) 2619 loopback = B_TRUE; 2620 2621 ASSERT(ipif->ipif_isv6); 2622 ASSERT(!MUTEX_HELD(&ipif->ipif_ill->ill_lock)); 2623 2624 /* 2625 * If all other interfaces for this ill are down or DEPRECATED, 2626 * or otherwise unsuitable for source address selection, remove 2627 * any IRE_CACHE entries for this ill to make sure source 2628 * address selection gets to take this new ipif into account. 2629 * No need to hold ill_lock while traversing the ipif list since 2630 * we are writer 2631 */ 2632 for (tmp_ipif = ill->ill_ipif; tmp_ipif; 2633 tmp_ipif = tmp_ipif->ipif_next) { 2634 if (((tmp_ipif->ipif_flags & 2635 (IPIF_NOXMIT|IPIF_ANYCAST|IPIF_NOLOCAL|IPIF_DEPRECATED)) || 2636 !(tmp_ipif->ipif_flags & IPIF_UP)) || 2637 (tmp_ipif == ipif)) 2638 continue; 2639 /* first useable pre-existing interface */ 2640 flush_ire_cache = B_FALSE; 2641 break; 2642 } 2643 if (flush_ire_cache) 2644 ire_walk_ill_v6(MATCH_IRE_ILL_GROUP | MATCH_IRE_TYPE, 2645 IRE_CACHE, ill_ipif_cache_delete, (char *)ill, ill); 2646 2647 /* 2648 * Figure out which way the send-to queue should go. Only 2649 * IRE_IF_RESOLVER or IRE_IF_NORESOLVER should show up here. 2650 */ 2651 switch (ill->ill_net_type) { 2652 case IRE_IF_RESOLVER: 2653 stq = ill->ill_rq; 2654 break; 2655 case IRE_IF_NORESOLVER: 2656 case IRE_LOOPBACK: 2657 stq = ill->ill_wq; 2658 break; 2659 default: 2660 return (EINVAL); 2661 } 2662 2663 if (ill->ill_phyint->phyint_flags & PHYI_LOOPBACK) { 2664 /* 2665 * lo0:1 and subsequent ipifs were marked IRE_LOCAL in 2666 * ipif_lookup_on_name(), but in the case of zones we can have 2667 * several loopback addresses on lo0. So all the interfaces with 2668 * loopback addresses need to be marked IRE_LOOPBACK. 2669 */ 2670 if (IN6_ARE_ADDR_EQUAL(&ipif->ipif_v6lcl_addr, &ipv6_loopback)) 2671 ipif->ipif_ire_type = IRE_LOOPBACK; 2672 else 2673 ipif->ipif_ire_type = IRE_LOCAL; 2674 } 2675 2676 if (ipif->ipif_flags & (IPIF_NOLOCAL|IPIF_ANYCAST|IPIF_DEPRECATED)) { 2677 /* 2678 * Can't use our source address. Select a different 2679 * source address for the IRE_INTERFACE and IRE_LOCAL 2680 */ 2681 if (ip6_asp_can_lookup()) { 2682 ip6_asp_table_held = B_TRUE; 2683 src_ipif = ipif_select_source_v6(ipif->ipif_ill, 2684 &ipif->ipif_v6subnet, B_FALSE, 2685 IPV6_PREFER_SRC_DEFAULT, ipif->ipif_zoneid); 2686 } 2687 if (src_ipif == NULL) 2688 src_ipif = ipif; /* Last resort */ 2689 else 2690 src_ipif_held = B_TRUE; 2691 } else { 2692 src_ipif = ipif; 2693 } 2694 2695 if (!IN6_IS_ADDR_UNSPECIFIED(&ipif->ipif_v6lcl_addr) && 2696 !(ipif->ipif_flags & IPIF_NOLOCAL)) { 2697 2698 /* 2699 * If we're on a labeled system then make sure that zone- 2700 * private addresses have proper remote host database entries. 2701 */ 2702 if (is_system_labeled() && 2703 ipif->ipif_ire_type != IRE_LOOPBACK) { 2704 if (ip6opt_ls == 0) { 2705 cmn_err(CE_WARN, "IPv6 not enabled " 2706 "via /etc/system"); 2707 return (EINVAL); 2708 } 2709 if (!tsol_check_interface_address(ipif)) 2710 return (EINVAL); 2711 } 2712 2713 /* Register the source address for __sin6_src_id */ 2714 err = ip_srcid_insert(&ipif->ipif_v6lcl_addr, 2715 ipif->ipif_zoneid); 2716 if (err != 0) { 2717 ip0dbg(("ipif_up_done_v6: srcid_insert %d\n", err)); 2718 if (src_ipif_held) 2719 ipif_refrele(src_ipif); 2720 if (ip6_asp_table_held) 2721 ip6_asp_table_refrele(); 2722 return (err); 2723 } 2724 /* 2725 * If the interface address is set, create the LOCAL 2726 * or LOOPBACK IRE. 2727 */ 2728 ip1dbg(("ipif_up_done_v6: creating IRE %d for %s\n", 2729 ipif->ipif_ire_type, 2730 inet_ntop(AF_INET6, &ipif->ipif_v6lcl_addr, 2731 buf, sizeof (buf)))); 2732 2733 *irep++ = ire_create_v6( 2734 &ipif->ipif_v6lcl_addr, /* dest address */ 2735 &ipv6_all_ones, /* mask */ 2736 &src_ipif->ipif_v6src_addr, /* source address */ 2737 NULL, /* no gateway */ 2738 &ip_loopback_mtu_v6plus, /* max frag size */ 2739 NULL, 2740 ipif->ipif_rq, /* recv-from queue */ 2741 NULL, /* no send-to queue */ 2742 ipif->ipif_ire_type, /* LOCAL or LOOPBACK */ 2743 NULL, 2744 ipif, /* interface */ 2745 NULL, 2746 0, 2747 0, 2748 (ipif->ipif_flags & IPIF_PRIVATE) ? RTF_PRIVATE : 0, 2749 &ire_uinfo_null, 2750 NULL, 2751 NULL); 2752 } 2753 2754 /* 2755 * Set up the IRE_IF_RESOLVER or IRE_IF_NORESOLVER, as appropriate. 2756 * Note that atun interfaces have an all-zero ipif_v6subnet. 2757 * Thus we allow a zero subnet as long as the mask is non-zero. 2758 */ 2759 if (stq != NULL && !(ipif->ipif_flags & IPIF_NOXMIT) && 2760 !(IN6_IS_ADDR_UNSPECIFIED(&ipif->ipif_v6subnet) && 2761 IN6_IS_ADDR_UNSPECIFIED(&ipif->ipif_v6net_mask))) { 2762 /* ipif_v6subnet is ipif_v6pp_dst_addr for pt-pt */ 2763 v6addr = ipif->ipif_v6subnet; 2764 2765 if (ipif->ipif_flags & IPIF_POINTOPOINT) { 2766 route_mask = ipv6_all_ones; 2767 } else { 2768 route_mask = ipif->ipif_v6net_mask; 2769 } 2770 2771 ip1dbg(("ipif_up_done_v6: creating if IRE %d for %s\n", 2772 ill->ill_net_type, 2773 inet_ntop(AF_INET6, &v6addr, buf, sizeof (buf)))); 2774 2775 *irep++ = ire_create_v6( 2776 &v6addr, /* dest pref */ 2777 &route_mask, /* mask */ 2778 &src_ipif->ipif_v6src_addr, /* src addr */ 2779 NULL, /* no gateway */ 2780 &ipif->ipif_mtu, /* max frag */ 2781 NULL, /* no Fast path header */ 2782 NULL, /* no recv from queue */ 2783 stq, /* send-to queue */ 2784 ill->ill_net_type, /* IF_[NO]RESOLVER */ 2785 ill->ill_resolver_mp, /* xmit header */ 2786 ipif, 2787 NULL, 2788 0, 2789 0, 2790 (ipif->ipif_flags & IPIF_PRIVATE) ? RTF_PRIVATE : 0, 2791 &ire_uinfo_null, 2792 NULL, 2793 NULL); 2794 } 2795 2796 /* 2797 * Setup 2002::/16 route, if this interface is a 6to4 tunnel 2798 */ 2799 if (IN6_IS_ADDR_6TO4(&ipif->ipif_v6lcl_addr) && 2800 (ill->ill_is_6to4tun)) { 2801 /* 2802 * Destination address is 2002::/16 2803 */ 2804 #ifdef _BIG_ENDIAN 2805 const in6_addr_t prefix_addr = { 0x20020000U, 0, 0, 0 }; 2806 const in6_addr_t prefix_mask = { 0xffff0000U, 0, 0, 0 }; 2807 #else 2808 const in6_addr_t prefix_addr = { 0x00000220U, 0, 0, 0 }; 2809 const in6_addr_t prefix_mask = { 0x0000ffffU, 0, 0, 0 }; 2810 #endif /* _BIG_ENDIAN */ 2811 char buf2[INET6_ADDRSTRLEN]; 2812 ire_t *isdup; 2813 in6_addr_t *first_addr = &ill->ill_ipif->ipif_v6lcl_addr; 2814 2815 /* 2816 * check to see if this route has already been added for 2817 * this tunnel interface. 2818 */ 2819 isdup = ire_ftable_lookup_v6(first_addr, &prefix_mask, 0, 2820 IRE_IF_NORESOLVER, ill->ill_ipif, NULL, ALL_ZONES, 0, NULL, 2821 (MATCH_IRE_SRC | MATCH_IRE_MASK)); 2822 2823 if (isdup == NULL) { 2824 ip1dbg(("ipif_up_done_v6: creating if IRE %d for %s", 2825 IRE_IF_NORESOLVER, inet_ntop(AF_INET6, &v6addr, 2826 buf2, sizeof (buf2)))); 2827 2828 *irep++ = ire_create_v6( 2829 &prefix_addr, /* 2002:: */ 2830 &prefix_mask, /* ffff:: */ 2831 &ipif->ipif_v6lcl_addr, /* src addr */ 2832 NULL, /* gateway */ 2833 &ipif->ipif_mtu, /* max_frag */ 2834 NULL, /* no Fast Path hdr */ 2835 NULL, /* no rfq */ 2836 ill->ill_wq, /* stq */ 2837 IRE_IF_NORESOLVER, /* type */ 2838 ill->ill_resolver_mp, /* dlureq_mp */ 2839 ipif, /* interface */ 2840 NULL, /* v6cmask */ 2841 0, 2842 0, 2843 RTF_UP, 2844 &ire_uinfo_null, 2845 NULL, 2846 NULL); 2847 } else { 2848 ire_refrele(isdup); 2849 } 2850 } 2851 2852 /* If an earlier ire_create failed, get out now */ 2853 for (irep1 = irep; irep1 > ire_array; ) { 2854 irep1--; 2855 if (*irep1 == NULL) { 2856 ip1dbg(("ipif_up_done_v6: NULL ire found in" 2857 " ire_array\n")); 2858 err = ENOMEM; 2859 goto bad; 2860 } 2861 } 2862 2863 ASSERT(!MUTEX_HELD(&ipif->ipif_ill->ill_lock)); 2864 2865 /* 2866 * Need to atomically check for ip_addr_availablity_check 2867 * now under ill_g_lock, and if it fails got bad, and remove 2868 * from group also 2869 */ 2870 rw_enter(&ill_g_lock, RW_READER); 2871 mutex_enter(&ip_addr_avail_lock); 2872 ill->ill_ipif_up_count++; 2873 ipif->ipif_flags |= IPIF_UP; 2874 err = ip_addr_availability_check(ipif); 2875 mutex_exit(&ip_addr_avail_lock); 2876 rw_exit(&ill_g_lock); 2877 2878 if (err != 0) { 2879 /* 2880 * Our address may already be up on the same ill. In this case, 2881 * the external resolver entry for our ipif replaced the one for 2882 * the other ipif. So we don't want to delete it (otherwise the 2883 * other ipif would be unable to send packets). 2884 * ip_addr_availability_check() identifies this case for us and 2885 * returns EADDRINUSE; we need to turn it into EADDRNOTAVAIL 2886 * which is the expected error code. 2887 */ 2888 if (err == EADDRINUSE) { 2889 if (ipif->ipif_ill->ill_flags & ILLF_XRESOLV) { 2890 freemsg(ipif->ipif_arp_del_mp); 2891 ipif->ipif_arp_del_mp = NULL; 2892 } 2893 err = EADDRNOTAVAIL; 2894 } 2895 ill->ill_ipif_up_count--; 2896 ipif->ipif_flags &= ~IPIF_UP; 2897 goto bad; 2898 } 2899 2900 /* 2901 * Add in all newly created IREs. We want to add before 2902 * we call ifgrp_insert which wants to know whether 2903 * IRE_IF_RESOLVER exists or not. 2904 * 2905 * NOTE : We refrele the ire though we may branch to "bad" 2906 * later on where we do ire_delete. This is okay 2907 * because nobody can delete it as we are running 2908 * exclusively. 2909 */ 2910 for (irep1 = irep; irep1 > ire_array; ) { 2911 irep1--; 2912 /* Shouldn't be adding any bcast ire's */ 2913 ASSERT((*irep1)->ire_type != IRE_BROADCAST); 2914 ASSERT(!MUTEX_HELD(&ipif->ipif_ill->ill_lock)); 2915 /* 2916 * refheld by ire_add. refele towards the end of the func 2917 */ 2918 (void) ire_add(irep1, NULL, NULL, NULL); 2919 } 2920 if (ip6_asp_table_held) { 2921 ip6_asp_table_refrele(); 2922 ip6_asp_table_held = B_FALSE; 2923 } 2924 ire_added = B_TRUE; 2925 2926 /* 2927 * Form groups if possible. 2928 * 2929 * If we are supposed to be in a ill_group with a name, insert it 2930 * now as we know that at least one ipif is UP. Otherwise form 2931 * nameless groups. 2932 * 2933 * If ip_enable_group_ifs is set and ipif address is not ::0, insert 2934 * this ipif into the appropriate interface group, or create a 2935 * new one. If this is already in a nameless group, we try to form 2936 * a bigger group looking at other ills potentially sharing this 2937 * ipif's prefix. 2938 */ 2939 phyi = ill->ill_phyint; 2940 if (phyi->phyint_groupname_len != 0) { 2941 ASSERT(phyi->phyint_groupname != NULL); 2942 if (ill->ill_ipif_up_count == 1) { 2943 ASSERT(ill->ill_group == NULL); 2944 err = illgrp_insert(&illgrp_head_v6, ill, 2945 phyi->phyint_groupname, NULL, B_TRUE); 2946 if (err != 0) { 2947 ip1dbg(("ipif_up_done_v6: illgrp allocation " 2948 "failed, error %d\n", err)); 2949 goto bad; 2950 } 2951 } 2952 ASSERT(ill->ill_group != NULL); 2953 } 2954 2955 /* Recover any additional IRE_IF_[NO]RESOLVER entries for this ipif */ 2956 ipif_saved_ire_cnt = ipif->ipif_saved_ire_cnt; 2957 ipif_saved_irep = ipif_recover_ire_v6(ipif); 2958 2959 if (ipif->ipif_ipif_up_count == 1 && !loopback) { 2960 /* 2961 * Need to recover all multicast memberships in the driver. 2962 * This had to be deferred until we had attached. 2963 */ 2964 ill_recover_multicast(ill); 2965 } 2966 /* Join the allhosts multicast address and the solicited node MC */ 2967 ipif_multicast_up(ipif); 2968 2969 if (!loopback) { 2970 /* 2971 * See whether anybody else would benefit from the 2972 * new ipif that we added. We call this always rather 2973 * than while adding a non-IPIF_NOLOCAL/DEPRECATED/ANYCAST 2974 * ipif for the benefit of illgrp_insert (done above) 2975 * which does not do source address selection as it does 2976 * not want to re-create interface routes that we are 2977 * having reference to it here. 2978 */ 2979 ill_update_source_selection(ill); 2980 } 2981 2982 for (irep1 = irep; irep1 > ire_array; ) { 2983 irep1--; 2984 if (*irep1 != NULL) { 2985 /* was held in ire_add */ 2986 ire_refrele(*irep1); 2987 } 2988 } 2989 2990 cnt = ipif_saved_ire_cnt; 2991 for (irep1 = ipif_saved_irep; cnt > 0; irep1++, cnt--) { 2992 if (*irep1 != NULL) { 2993 /* was held in ire_add */ 2994 ire_refrele(*irep1); 2995 } 2996 } 2997 2998 2999 ip_rts_ifmsg(ipif); 3000 ip_rts_newaddrmsg(RTM_ADD, 0, ipif); 3001 if (ipif_saved_irep != NULL) { 3002 kmem_free(ipif_saved_irep, 3003 ipif_saved_ire_cnt * sizeof (ire_t *)); 3004 } 3005 3006 if (src_ipif_held) 3007 ipif_refrele(src_ipif); 3008 sctp_update_ipif(ipif, SCTP_IPIF_UP); 3009 return (0); 3010 3011 bad: 3012 if (ip6_asp_table_held) 3013 ip6_asp_table_refrele(); 3014 /* 3015 * We don't have to bother removing from ill groups because 3016 * 3017 * 1) For groups with names, we insert only when the first ipif 3018 * comes up. In that case if it fails, it will not be in any 3019 * group. So, we need not try to remove for that case. 3020 * 3021 * 2) For groups without names, either we tried to insert ipif_ill 3022 * in a group as singleton or found some other group to become 3023 * a bigger group. For the former, if it fails we don't have 3024 * anything to do as ipif_ill is not in the group and for the 3025 * latter, there are no failures in illgrp_insert/illgrp_delete 3026 * (ENOMEM can't occur for this. Check ifgrp_insert). 3027 */ 3028 3029 while (irep > ire_array) { 3030 irep--; 3031 if (*irep != NULL) { 3032 ire_delete(*irep); 3033 if (ire_added) 3034 ire_refrele(*irep); 3035 } 3036 3037 } 3038 (void) ip_srcid_remove(&ipif->ipif_v6lcl_addr, ipif->ipif_zoneid); 3039 3040 if (ipif_saved_irep != NULL) { 3041 kmem_free(ipif_saved_irep, 3042 ipif_saved_ire_cnt * sizeof (ire_t *)); 3043 } 3044 if (src_ipif_held) 3045 ipif_refrele(src_ipif); 3046 3047 ipif_ndp_down(ipif); 3048 if (ipif->ipif_ill->ill_flags & ILLF_XRESOLV) 3049 ipif_arp_down(ipif); 3050 3051 return (err); 3052 } 3053 3054 /* 3055 * Delete an ND entry and the corresponding IRE_CACHE entry if it exists. 3056 */ 3057 /* ARGSUSED */ 3058 int 3059 ip_siocdelndp_v6(ipif_t *ipif, sin_t *dummy_sin, queue_t *q, mblk_t *mp, 3060 ip_ioctl_cmd_t *ipip, void *dummy_ifreq) 3061 { 3062 in6_addr_t addr; 3063 sin6_t *sin6; 3064 nce_t *nce; 3065 struct lifreq *lifr; 3066 lif_nd_req_t *lnr; 3067 mblk_t *mp1; 3068 3069 mp1 = mp->b_cont->b_cont; 3070 lifr = (struct lifreq *)mp1->b_rptr; 3071 lnr = &lifr->lifr_nd; 3072 /* Only allow for logical unit zero i.e. not on "le0:17" */ 3073 if (ipif->ipif_id != 0) 3074 return (EINVAL); 3075 3076 if (!ipif->ipif_isv6) 3077 return (EINVAL); 3078 3079 if (lnr->lnr_addr.ss_family != AF_INET6) 3080 return (EAFNOSUPPORT); 3081 3082 sin6 = (sin6_t *)&lnr->lnr_addr; 3083 addr = sin6->sin6_addr; 3084 nce = ndp_lookup(ipif->ipif_ill, &addr, B_FALSE); 3085 if (nce == NULL) 3086 return (ESRCH); 3087 ndp_delete(nce); 3088 NCE_REFRELE(nce); 3089 return (0); 3090 } 3091 3092 /* 3093 * Return nbr cache info. 3094 */ 3095 /* ARGSUSED */ 3096 int 3097 ip_siocqueryndp_v6(ipif_t *ipif, sin_t *dummy_sin, queue_t *q, mblk_t *mp, 3098 ip_ioctl_cmd_t *ipip, void *dummy_ifreq) 3099 { 3100 ill_t *ill = ipif->ipif_ill; 3101 struct lifreq *lifr; 3102 lif_nd_req_t *lnr; 3103 3104 lifr = (struct lifreq *)mp->b_cont->b_cont->b_rptr; 3105 lnr = &lifr->lifr_nd; 3106 /* Only allow for logical unit zero i.e. not on "le0:17" */ 3107 if (ipif->ipif_id != 0) 3108 return (EINVAL); 3109 3110 if (!ipif->ipif_isv6) 3111 return (EINVAL); 3112 3113 if (lnr->lnr_addr.ss_family != AF_INET6) 3114 return (EAFNOSUPPORT); 3115 3116 if (ill->ill_phys_addr_length > sizeof (lnr->lnr_hdw_addr)) 3117 return (EINVAL); 3118 3119 return (ndp_query(ill, lnr)); 3120 } 3121 3122 /* 3123 * Perform an update of the nd entry for the specified address. 3124 */ 3125 /* ARGSUSED */ 3126 int 3127 ip_siocsetndp_v6(ipif_t *ipif, sin_t *dummy_sin, queue_t *q, mblk_t *mp, 3128 ip_ioctl_cmd_t *ipip, void *dummy_ifreq) 3129 { 3130 ill_t *ill = ipif->ipif_ill; 3131 struct lifreq *lifr; 3132 lif_nd_req_t *lnr; 3133 3134 lifr = (struct lifreq *)mp->b_cont->b_cont->b_rptr; 3135 lnr = &lifr->lifr_nd; 3136 /* Only allow for logical unit zero i.e. not on "le0:17" */ 3137 if (ipif->ipif_id != 0) 3138 return (EINVAL); 3139 3140 if (!ipif->ipif_isv6) 3141 return (EINVAL); 3142 3143 if (lnr->lnr_addr.ss_family != AF_INET6) 3144 return (EAFNOSUPPORT); 3145 3146 return (ndp_sioc_update(ill, lnr)); 3147 } 3148