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 2009 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 26 /* 27 * The softmac driver is used to "unify" non-GLDv3 drivers to the GLDv3 28 * framework. It also creates the kernel datalink structure for each 29 * physical network device. 30 * 31 * Specifically, a softmac will be created for each physical network device 32 * (dip) during the device's post-attach process. When this softmac is 33 * created, the following will also be done: 34 * - create the device's <link name, linkid> mapping; 35 * - register the mac if this is a non-GLDv3 device and the media type is 36 * supported by the GLDv3 framework; 37 * - create the kernel data-link structure for this physical device; 38 * 39 * This softmac will be destroyed during the device's pre-detach process, 40 * and all the above will be undone. 41 */ 42 43 #include <sys/types.h> 44 #include <sys/file.h> 45 #include <sys/cred.h> 46 #include <sys/dlpi.h> 47 #include <sys/mac_provider.h> 48 #include <sys/disp.h> 49 #include <sys/sunndi.h> 50 #include <sys/modhash.h> 51 #include <sys/stropts.h> 52 #include <sys/sysmacros.h> 53 #include <sys/vlan.h> 54 #include <sys/softmac_impl.h> 55 #include <sys/softmac.h> 56 #include <sys/dls.h> 57 58 /* Used as a parameter to the mod hash walk of softmac structures */ 59 typedef struct { 60 softmac_t *smw_softmac; 61 boolean_t smw_retry; 62 } softmac_walk_t; 63 64 /* 65 * Softmac hash table including softmacs for both style-2 and style-1 devices. 66 */ 67 static krwlock_t softmac_hash_lock; 68 static mod_hash_t *softmac_hash; 69 static kmutex_t smac_global_lock; 70 static kcondvar_t smac_global_cv; 71 72 #define SOFTMAC_HASHSZ 64 73 74 static void softmac_create_task(void *); 75 static void softmac_mac_register(softmac_t *); 76 static int softmac_create_datalink(softmac_t *); 77 static int softmac_m_start(void *); 78 static void softmac_m_stop(void *); 79 static int softmac_m_open(void *); 80 static void softmac_m_close(void *); 81 static boolean_t softmac_m_getcapab(void *, mac_capab_t, void *); 82 83 #define SOFTMAC_M_CALLBACK_FLAGS \ 84 (MC_IOCTL | MC_GETCAPAB | MC_OPEN | MC_CLOSE) 85 86 static mac_callbacks_t softmac_m_callbacks = { 87 SOFTMAC_M_CALLBACK_FLAGS, 88 softmac_m_stat, 89 softmac_m_start, 90 softmac_m_stop, 91 softmac_m_promisc, 92 softmac_m_multicst, 93 softmac_m_unicst, 94 softmac_m_tx, 95 softmac_m_ioctl, 96 softmac_m_getcapab, 97 softmac_m_open, 98 softmac_m_close 99 }; 100 101 void 102 softmac_init() 103 { 104 softmac_hash = mod_hash_create_extended("softmac_hash", 105 SOFTMAC_HASHSZ, mod_hash_null_keydtor, mod_hash_null_valdtor, 106 mod_hash_bystr, NULL, mod_hash_strkey_cmp, KM_SLEEP); 107 108 rw_init(&softmac_hash_lock, NULL, RW_DEFAULT, NULL); 109 mutex_init(&smac_global_lock, NULL, MUTEX_DRIVER, NULL); 110 cv_init(&smac_global_cv, NULL, CV_DRIVER, NULL); 111 } 112 113 void 114 softmac_fini() 115 { 116 rw_destroy(&softmac_hash_lock); 117 mod_hash_destroy_hash(softmac_hash); 118 mutex_destroy(&smac_global_lock); 119 cv_destroy(&smac_global_cv); 120 } 121 122 /* ARGSUSED */ 123 static uint_t 124 softmac_exist(mod_hash_key_t key, mod_hash_val_t *val, void *arg) 125 { 126 boolean_t *pexist = arg; 127 128 *pexist = B_TRUE; 129 return (MH_WALK_TERMINATE); 130 } 131 132 boolean_t 133 softmac_busy() 134 { 135 boolean_t exist = B_FALSE; 136 137 rw_enter(&softmac_hash_lock, RW_READER); 138 mod_hash_walk(softmac_hash, softmac_exist, &exist); 139 rw_exit(&softmac_hash_lock); 140 return (exist); 141 } 142 143 /* 144 * 145 * softmac_create() is called for each minor node during the post-attach of 146 * each DDI_NT_NET device instance. Note that it is possible that a device 147 * instance has two minor nodes (DLPI style-1 and style-2), so that for that 148 * specific device, softmac_create() could be called twice. 149 * 150 * A softmac_t is used to track each DDI_NT_NET device, and a softmac_dev_t 151 * is created to track each minor node. 152 * 153 * For each minor node of a legacy device, a taskq is started to finish 154 * softmac_mac_register(), which will finish the rest of work (see comments 155 * above softmac_mac_register()). 156 * 157 * softmac state machine 158 * -------------------------------------------------------------------------- 159 * OLD STATE EVENT NEW STATE 160 * -------------------------------------------------------------------------- 161 * UNINIT attach of 1st minor node ATTACH_INPROG 162 * okcnt = 0 net_postattach -> softmac_create okcnt = 1 163 * 164 * ATTACH_INPROG attach of 2nd minor node (GLDv3) ATTACH_DONE 165 * okcnt = 1 net_postattach -> softmac_create okcnt = 2 166 * 167 * ATTACH_INPROG attach of 2nd minor node (legacy) ATTACH_INPROG 168 * okcnt = 1 net_postattach -> softmac_create okcnt = 2 169 * schedule softmac_mac_register 170 * 171 * ATTACH_INPROG legacy device node ATTACH_DONE 172 * okcnt = 2 softmac_mac_register okcnt = 2 173 * 174 * ATTACH_DONE detach of 1st minor node DETACH_INPROG 175 * okcnt = 2 (success) okcnt = 1 176 * 177 * DETACH_INPROG detach of 2nd minor node UNINIT (or free) 178 * okcnt = 1 (success) okcnt = 0 179 * 180 * ATTACH_DONE detach failure state unchanged 181 * DETACH_INPROG left = okcnt 182 * 183 * DETACH_INPROG reattach ATTACH_INPROG 184 * okcnt = 0,1 net_postattach -> softmac_create 185 * 186 * ATTACH_DONE reattach ATTACH_DONE 187 * left != 0 net_postattach -> softmac_create left = 0 188 * 189 * Abbreviation notes: 190 * states have SOFTMAC_ prefix, 191 * okcnt - softmac_attach_okcnt, 192 * left - softmac_attached_left 193 */ 194 195 #ifdef DEBUG 196 void 197 softmac_state_verify(softmac_t *softmac) 198 { 199 ASSERT(MUTEX_HELD(&softmac->smac_mutex)); 200 201 /* 202 * There are at most 2 minor nodes, one per DLPI style 203 */ 204 ASSERT(softmac->smac_cnt <= 2 && softmac->smac_attachok_cnt <= 2); 205 206 /* 207 * The smac_attachok_cnt represents the number of attaches i.e. the 208 * number of times net_postattach -> softmac_create() has been called 209 * for a device instance. 210 */ 211 ASSERT(softmac->smac_attachok_cnt == SMAC_NONZERO_NODECNT(softmac)); 212 213 /* 214 * softmac_create (or softmac_mac_register) -> softmac_create_datalink 215 * happens only after all minor nodes have been attached 216 */ 217 ASSERT(softmac->smac_state != SOFTMAC_ATTACH_DONE || 218 softmac->smac_attachok_cnt == softmac->smac_cnt); 219 220 if (softmac->smac_attachok_cnt == 0) { 221 ASSERT(softmac->smac_state == SOFTMAC_UNINIT); 222 ASSERT(softmac->smac_mh == NULL); 223 } else if (softmac->smac_attachok_cnt < softmac->smac_cnt) { 224 ASSERT(softmac->smac_state == SOFTMAC_ATTACH_INPROG || 225 softmac->smac_state == SOFTMAC_DETACH_INPROG); 226 ASSERT(softmac->smac_mh == NULL); 227 } else { 228 /* 229 * In the stable condition the state whould be 230 * SOFTMAC_ATTACH_DONE. But there is a small transient window 231 * in softmac_destroy where we change the state to 232 * SOFTMAC_DETACH_INPROG and drop the lock before doing 233 * the link destroy 234 */ 235 ASSERT(softmac->smac_attachok_cnt == softmac->smac_cnt); 236 ASSERT(softmac->smac_state != SOFTMAC_UNINIT); 237 } 238 if (softmac->smac_mh != NULL) 239 ASSERT(softmac->smac_attachok_cnt == softmac->smac_cnt); 240 } 241 #endif 242 243 #ifdef DEBUG 244 #define SOFTMAC_STATE_VERIFY(softmac) softmac_state_verify(softmac) 245 #else 246 #define SOFTMAC_STATE_VERIFY(softmac) 247 #endif 248 249 int 250 softmac_create(dev_info_t *dip, dev_t dev) 251 { 252 char devname[MAXNAMELEN]; 253 softmac_t *softmac; 254 softmac_dev_t *softmac_dev = NULL; 255 int index; 256 int ppa, err = 0; 257 258 /* 259 * Force the softmac driver to be attached. 260 */ 261 if (i_ddi_attach_pseudo_node(SOFTMAC_DEV_NAME) == NULL) { 262 cmn_err(CE_WARN, "softmac_create:softmac attach fails"); 263 return (ENXIO); 264 } 265 266 ppa = ddi_get_instance(dip); 267 (void) snprintf(devname, MAXNAMELEN, "%s%d", ddi_driver_name(dip), ppa); 268 269 /* 270 * We expect legacy devices have at most two minor nodes - one style-1 271 * and one style-2. 272 */ 273 if (!GLDV3_DRV(ddi_driver_major(dip)) && 274 i_ddi_minor_node_count(dip, DDI_NT_NET) > 2) { 275 cmn_err(CE_WARN, "%s has more than 2 minor nodes; unsupported", 276 devname); 277 return (ENOTSUP); 278 } 279 280 /* 281 * Check whether the softmac for the specified device already exists 282 */ 283 rw_enter(&softmac_hash_lock, RW_WRITER); 284 if ((err = mod_hash_find(softmac_hash, (mod_hash_key_t)devname, 285 (mod_hash_val_t *)&softmac)) != 0) { 286 287 softmac = kmem_zalloc(sizeof (softmac_t), KM_SLEEP); 288 mutex_init(&softmac->smac_mutex, NULL, MUTEX_DRIVER, NULL); 289 cv_init(&softmac->smac_cv, NULL, CV_DRIVER, NULL); 290 (void) strlcpy(softmac->smac_devname, devname, MAXNAMELEN); 291 /* 292 * Insert the softmac into the hash table. 293 */ 294 err = mod_hash_insert(softmac_hash, 295 (mod_hash_key_t)softmac->smac_devname, 296 (mod_hash_val_t)softmac); 297 ASSERT(err == 0); 298 mutex_enter(&smac_global_lock); 299 cv_broadcast(&smac_global_cv); 300 mutex_exit(&smac_global_lock); 301 } 302 303 mutex_enter(&softmac->smac_mutex); 304 SOFTMAC_STATE_VERIFY(softmac); 305 if (softmac->smac_state != SOFTMAC_ATTACH_DONE) 306 softmac->smac_state = SOFTMAC_ATTACH_INPROG; 307 if (softmac->smac_attachok_cnt == 0) { 308 /* 309 * Initialize the softmac if this is the post-attach of the 310 * first minor node. 311 */ 312 softmac->smac_flags = 0; 313 softmac->smac_umajor = ddi_driver_major(dip); 314 softmac->smac_uppa = ppa; 315 316 /* 317 * Note that for GLDv3 devices, we create devfs minor nodes 318 * for VLANs as well. Assume a GLDv3 driver on which only 319 * a VLAN is created. During the detachment of this device 320 * instance, the following would happen: 321 * a. the pre-detach callback softmac_destroy() succeeds. 322 * Because the physical link itself is not in use, 323 * softmac_destroy() succeeds and destroys softmac_t; 324 * b. the device detach fails in mac_unregister() because 325 * this MAC is still used by a VLAN. 326 * c. the post-attach callback is then called which leads 327 * us here. Note that ddi_minor_node_count() returns 3 328 * (including the minior node of the VLAN). In that case, 329 * we must correct the minor node count to 2 as that is 330 * the count of minor nodes that go through post-attach. 331 */ 332 if (GLDV3_DRV(ddi_driver_major(dip))) { 333 softmac->smac_flags |= SOFTMAC_GLDV3; 334 softmac->smac_cnt = 2; 335 } else { 336 softmac->smac_cnt = 337 i_ddi_minor_node_count(dip, DDI_NT_NET); 338 } 339 } 340 341 index = (getmajor(dev) == ddi_name_to_major("clone")); 342 if (softmac->smac_softmac[index] != NULL) { 343 /* 344 * This is possible if the post_attach() is called after 345 * pre_detach() fails. This seems to be a defect of the DACF 346 * framework. We work around it by using a smac_attached_left 347 * field that tracks this 348 */ 349 ASSERT(softmac->smac_attached_left != 0); 350 softmac->smac_attached_left--; 351 mutex_exit(&softmac->smac_mutex); 352 rw_exit(&softmac_hash_lock); 353 return (0); 354 355 } 356 mutex_exit(&softmac->smac_mutex); 357 rw_exit(&softmac_hash_lock); 358 359 softmac_dev = kmem_zalloc(sizeof (softmac_dev_t), KM_SLEEP); 360 softmac_dev->sd_dev = dev; 361 362 mutex_enter(&softmac->smac_mutex); 363 softmac->smac_softmac[index] = softmac_dev; 364 /* 365 * Continue to register the mac and create the datalink only when all 366 * the minor nodes are attached. 367 */ 368 if (++softmac->smac_attachok_cnt != softmac->smac_cnt) { 369 mutex_exit(&softmac->smac_mutex); 370 return (0); 371 } 372 373 /* 374 * All of the minor nodes have been attached; start a taskq 375 * to do the rest of the work. We use a taskq instead of 376 * doing the work here because: 377 * 378 * We could be called as a result of a open() system call 379 * where spec_open() already SLOCKED the snode. Using a taskq 380 * sidesteps the risk that our ldi_open_by_dev() call would 381 * deadlock trying to set SLOCKED on the snode again. 382 * 383 * The devfs design requires that the downcalls don't use any 384 * interruptible cv_wait which happens when we do door upcalls. 385 * Otherwise the downcalls which may be holding devfs resources 386 * may cause a deadlock if the thread is stopped. Also we need to make 387 * sure these downcalls into softmac_create or softmac_destroy 388 * don't cv_wait on any devfs related condition. Thus softmac_destroy 389 * returns EBUSY if the asynchronous threads started in softmac_create 390 * haven't finished. 391 */ 392 (void) taskq_dispatch(system_taskq, softmac_create_task, 393 softmac, TQ_SLEEP); 394 mutex_exit(&softmac->smac_mutex); 395 return (0); 396 } 397 398 static boolean_t 399 softmac_m_getcapab(void *arg, mac_capab_t cap, void *cap_data) 400 { 401 softmac_t *softmac = arg; 402 403 if (!(softmac->smac_capab_flags & cap)) 404 return (B_FALSE); 405 406 switch (cap) { 407 case MAC_CAPAB_HCKSUM: { 408 uint32_t *txflags = cap_data; 409 410 *txflags = softmac->smac_hcksum_txflags; 411 break; 412 } 413 case MAC_CAPAB_LEGACY: { 414 mac_capab_legacy_t *legacy = cap_data; 415 416 legacy->ml_unsup_note = ~softmac->smac_notifications & 417 (DL_NOTE_LINK_UP | DL_NOTE_LINK_DOWN | DL_NOTE_SPEED); 418 legacy->ml_dev = makedevice(softmac->smac_umajor, 419 softmac->smac_uppa + 1); 420 break; 421 } 422 423 /* 424 * For the capabilities below, there's nothing for us to fill in; 425 * simply return B_TRUE if we support it. 426 */ 427 case MAC_CAPAB_NO_ZCOPY: 428 case MAC_CAPAB_NO_NATIVEVLAN: 429 default: 430 break; 431 } 432 return (B_TRUE); 433 } 434 435 static int 436 softmac_update_info(softmac_t *softmac, datalink_id_t *linkidp) 437 { 438 datalink_id_t linkid = DATALINK_INVALID_LINKID; 439 uint32_t media; 440 int err; 441 442 if ((err = dls_mgmt_update(softmac->smac_devname, softmac->smac_media, 443 softmac->smac_flags & SOFTMAC_NOSUPP, &media, &linkid)) == 0) { 444 *linkidp = linkid; 445 } 446 447 if (err == EEXIST) { 448 /* 449 * There is a link name conflict. Either: 450 * 451 * - An existing link with the same device name with a 452 * different media type from of the given type. 453 * Mark this link back to persistent only; or 454 * 455 * - We cannot assign the "suggested" name because 456 * GLDv3 and therefore vanity naming is not supported 457 * for this link type. Delete this link's <link name, 458 * linkid> mapping. 459 */ 460 if (media != softmac->smac_media) { 461 cmn_err(CE_WARN, "%s device %s conflicts with " 462 "existing %s device %s.", 463 dl_mactypestr(softmac->smac_media), 464 softmac->smac_devname, dl_mactypestr(media), 465 softmac->smac_devname); 466 (void) dls_mgmt_destroy(linkid, B_FALSE); 467 } else { 468 cmn_err(CE_WARN, "link name %s is already in-use.", 469 softmac->smac_devname); 470 (void) dls_mgmt_destroy(linkid, B_TRUE); 471 } 472 473 cmn_err(CE_WARN, "%s device might not be available " 474 "for use.", softmac->smac_devname); 475 cmn_err(CE_WARN, "See dladm(1M) for more information."); 476 } 477 478 return (err); 479 } 480 481 /* 482 * This function: 483 * 1. provides the link's media type to dlmgmtd. 484 * 2. creates the GLDv3 datalink if the media type is supported by GLDv3. 485 */ 486 static int 487 softmac_create_datalink(softmac_t *softmac) 488 { 489 datalink_id_t linkid = DATALINK_INVALID_LINKID; 490 int err; 491 492 /* 493 * Inform dlmgmtd of this link so that softmac_hold_device() is able 494 * to know the existence of this link. If this failed with EBADF, 495 * it might be because dlmgmtd was not started in time (e.g., 496 * diskless boot); ignore the failure and continue to create 497 * the GLDv3 datalink if needed. 498 */ 499 err = dls_mgmt_create(softmac->smac_devname, 500 makedevice(softmac->smac_umajor, softmac->smac_uppa + 1), 501 DATALINK_CLASS_PHYS, DL_OTHER, B_TRUE, &linkid); 502 if (err != 0 && err != EBADF) 503 return (err); 504 505 /* 506 * Provide the media type of the physical link to dlmgmtd. 507 */ 508 if ((err != EBADF) && 509 ((err = softmac_update_info(softmac, &linkid)) != 0)) { 510 return (err); 511 } 512 513 /* 514 * Create the GLDv3 datalink. 515 */ 516 if ((!(softmac->smac_flags & SOFTMAC_NOSUPP)) && 517 ((err = dls_devnet_create(softmac->smac_mh, linkid)) != 0)) { 518 cmn_err(CE_WARN, "dls_devnet_create failed for %s", 519 softmac->smac_devname); 520 return (err); 521 } 522 523 if (linkid == DATALINK_INVALID_LINKID) { 524 mutex_enter(&softmac->smac_mutex); 525 softmac->smac_flags |= SOFTMAC_NEED_RECREATE; 526 mutex_exit(&softmac->smac_mutex); 527 } 528 529 return (0); 530 } 531 532 static void 533 softmac_create_task(void *arg) 534 { 535 softmac_t *softmac = arg; 536 mac_handle_t mh; 537 int err; 538 539 if (!GLDV3_DRV(softmac->smac_umajor)) { 540 softmac_mac_register(softmac); 541 return; 542 } 543 544 if ((err = mac_open(softmac->smac_devname, &mh)) != 0) 545 goto done; 546 547 mutex_enter(&softmac->smac_mutex); 548 softmac->smac_media = (mac_info(mh))->mi_nativemedia; 549 softmac->smac_mh = mh; 550 mutex_exit(&softmac->smac_mutex); 551 552 /* 553 * We can safely release the reference on the mac because 554 * this mac will only be unregistered and destroyed when 555 * the device detaches, and the softmac will be destroyed 556 * before then (in the pre-detach routine of the device). 557 */ 558 mac_close(mh); 559 560 /* 561 * Create the GLDv3 datalink for this mac. 562 */ 563 err = softmac_create_datalink(softmac); 564 565 done: 566 mutex_enter(&softmac->smac_mutex); 567 if (err != 0) 568 softmac->smac_mh = NULL; 569 softmac->smac_attacherr = err; 570 softmac->smac_state = SOFTMAC_ATTACH_DONE; 571 cv_broadcast(&softmac->smac_cv); 572 mutex_exit(&softmac->smac_mutex); 573 } 574 575 /* 576 * This function is only called for legacy devices. It: 577 * 1. registers the MAC for the legacy devices whose media type is supported 578 * by the GLDv3 framework. 579 * 2. creates the GLDv3 datalink if the media type is supported by GLDv3. 580 */ 581 static void 582 softmac_mac_register(softmac_t *softmac) 583 { 584 softmac_dev_t *softmac_dev; 585 dev_t dev; 586 ldi_handle_t lh = NULL; 587 ldi_ident_t li = NULL; 588 int index; 589 boolean_t native_vlan = B_FALSE; 590 int err; 591 592 /* 593 * Note that we do not need any locks to access this softmac pointer, 594 * as softmac_destroy() will wait until this function is called. 595 */ 596 ASSERT(softmac != NULL); 597 ASSERT(softmac->smac_state == SOFTMAC_ATTACH_INPROG && 598 softmac->smac_attachok_cnt == softmac->smac_cnt); 599 600 if ((err = ldi_ident_from_dip(softmac_dip, &li)) != 0) { 601 mutex_enter(&softmac->smac_mutex); 602 goto done; 603 } 604 605 /* 606 * Determine whether this legacy device support VLANs by opening 607 * the style-2 device node (if it exists) and attaching to a VLAN 608 * PPA (1000 + ppa). 609 */ 610 dev = makedevice(ddi_name_to_major("clone"), softmac->smac_umajor); 611 err = ldi_open_by_dev(&dev, OTYP_CHR, FREAD|FWRITE, kcred, &lh, li); 612 if (err == 0) { 613 if (dl_attach(lh, softmac->smac_uppa + 1 * 1000, NULL) == 0) 614 native_vlan = B_TRUE; 615 (void) ldi_close(lh, FREAD|FWRITE, kcred); 616 } 617 618 err = EINVAL; 619 for (index = 0; index < 2; index++) { 620 dl_info_ack_t dlia; 621 dl_error_ack_t dlea; 622 uint32_t notes; 623 struct strioctl iocb; 624 uint32_t margin; 625 int rval; 626 627 if ((softmac_dev = softmac->smac_softmac[index]) == NULL) 628 continue; 629 630 softmac->smac_dev = dev = softmac_dev->sd_dev; 631 if (ldi_open_by_dev(&dev, OTYP_CHR, FREAD|FWRITE, kcred, &lh, 632 li) != 0) { 633 continue; 634 } 635 636 /* 637 * Pop all the intermediate modules in order to negotiate 638 * capabilities correctly. 639 */ 640 while (ldi_ioctl(lh, I_POP, 0, FKIOCTL, kcred, &rval) == 0) 641 ; 642 643 /* DLPI style-1 or DLPI style-2? */ 644 if ((rval = dl_info(lh, &dlia, NULL, NULL, &dlea)) != 0) { 645 if (rval == ENOTSUP) { 646 cmn_err(CE_NOTE, "softmac: received " 647 "DL_ERROR_ACK to DL_INFO_ACK; " 648 "DLPI errno 0x%x, UNIX errno %d", 649 dlea.dl_errno, dlea.dl_unix_errno); 650 } 651 (void) ldi_close(lh, FREAD|FWRITE, kcred); 652 continue; 653 } 654 655 /* 656 * Currently only DL_ETHER has GLDv3 mac plugin support. 657 * For media types that GLDv3 does not support, create a 658 * link id for it. 659 */ 660 if ((softmac->smac_media = dlia.dl_mac_type) != DL_ETHER) { 661 (void) ldi_close(lh, FREAD|FWRITE, kcred); 662 err = 0; 663 break; 664 } 665 666 if ((dlia.dl_provider_style == DL_STYLE2) && 667 (dl_attach(lh, softmac->smac_uppa, NULL) != 0)) { 668 (void) ldi_close(lh, FREAD|FWRITE, kcred); 669 continue; 670 } 671 672 if ((rval = dl_bind(lh, 0, NULL)) != 0) { 673 if (rval == ENOTSUP) { 674 cmn_err(CE_NOTE, "softmac: received " 675 "DL_ERROR_ACK to DL_BIND_ACK; " 676 "DLPI errno 0x%x, UNIX errno %d", 677 dlea.dl_errno, dlea.dl_unix_errno); 678 } 679 (void) ldi_close(lh, FREAD|FWRITE, kcred); 680 continue; 681 } 682 683 /* 684 * Call dl_info() after dl_bind() because some drivers only 685 * provide correct information (e.g. MAC address) once bound. 686 */ 687 softmac->smac_addrlen = sizeof (softmac->smac_unicst_addr); 688 if ((rval = dl_info(lh, &dlia, softmac->smac_unicst_addr, 689 &softmac->smac_addrlen, &dlea)) != 0) { 690 if (rval == ENOTSUP) { 691 cmn_err(CE_NOTE, "softmac: received " 692 "DL_ERROR_ACK to DL_INFO_ACK; " 693 "DLPI errno 0x%x, UNIX errno %d", 694 dlea.dl_errno, dlea.dl_unix_errno); 695 } 696 (void) ldi_close(lh, FREAD|FWRITE, kcred); 697 continue; 698 } 699 700 softmac->smac_style = dlia.dl_provider_style; 701 softmac->smac_saplen = ABS(dlia.dl_sap_length); 702 softmac->smac_min_sdu = dlia.dl_min_sdu; 703 softmac->smac_max_sdu = dlia.dl_max_sdu; 704 705 if ((softmac->smac_saplen != sizeof (uint16_t)) || 706 (softmac->smac_addrlen != ETHERADDRL) || 707 (dlia.dl_brdcst_addr_length != ETHERADDRL) || 708 (dlia.dl_brdcst_addr_offset == 0)) { 709 (void) ldi_close(lh, FREAD|FWRITE, kcred); 710 continue; 711 } 712 713 /* 714 * Check other DLPI capabilities. Note that this must be after 715 * dl_bind() because some drivers return DL_ERROR_ACK if the 716 * stream is not bound. It is also before mac_register(), so 717 * we don't need any lock protection here. 718 */ 719 softmac->smac_capab_flags = 720 (MAC_CAPAB_NO_ZCOPY | MAC_CAPAB_LEGACY); 721 722 softmac->smac_no_capability_req = B_FALSE; 723 if (softmac_fill_capab(lh, softmac) != 0) 724 softmac->smac_no_capability_req = B_TRUE; 725 726 /* 727 * Check the margin of the underlying driver. 728 */ 729 margin = 0; 730 iocb.ic_cmd = DLIOCMARGININFO; 731 iocb.ic_timout = INFTIM; 732 iocb.ic_len = sizeof (margin); 733 iocb.ic_dp = (char *)&margin; 734 softmac->smac_margin = 0; 735 736 if (ldi_ioctl(lh, I_STR, (intptr_t)&iocb, FKIOCTL, kcred, 737 &rval) == 0) { 738 softmac->smac_margin = margin; 739 } 740 741 /* 742 * If the legacy driver doesn't support DLIOCMARGININFO, but 743 * it can support native VLAN, correct its margin value to 4. 744 */ 745 if (native_vlan) { 746 if (softmac->smac_margin == 0) 747 softmac->smac_margin = VLAN_TAGSZ; 748 } else { 749 softmac->smac_capab_flags |= MAC_CAPAB_NO_NATIVEVLAN; 750 } 751 752 /* 753 * Not all drivers support DL_NOTIFY_REQ, so ignore ENOTSUP. 754 */ 755 softmac->smac_notifications = 0; 756 notes = DL_NOTE_PHYS_ADDR | DL_NOTE_LINK_UP | DL_NOTE_LINK_DOWN; 757 switch (dl_notify(lh, ¬es, NULL)) { 758 case 0: 759 softmac->smac_notifications = notes; 760 break; 761 case ENOTSUP: 762 break; 763 default: 764 (void) ldi_close(lh, FREAD|FWRITE, kcred); 765 continue; 766 } 767 768 (void) ldi_close(lh, FREAD|FWRITE, kcred); 769 err = 0; 770 break; 771 } 772 ldi_ident_release(li); 773 774 mutex_enter(&softmac->smac_mutex); 775 776 if (err != 0) 777 goto done; 778 779 if (softmac->smac_media != DL_ETHER) 780 softmac->smac_flags |= SOFTMAC_NOSUPP; 781 782 /* 783 * Finally, we're ready to register ourselves with the MAC layer 784 * interface; if this succeeds, we're all ready to start() 785 */ 786 if (!(softmac->smac_flags & SOFTMAC_NOSUPP)) { 787 mac_register_t *macp; 788 789 if ((macp = mac_alloc(MAC_VERSION)) == NULL) { 790 err = ENOMEM; 791 goto done; 792 } 793 794 macp->m_type_ident = MAC_PLUGIN_IDENT_ETHER; 795 macp->m_driver = softmac; 796 macp->m_dip = softmac_dip; 797 798 macp->m_margin = softmac->smac_margin; 799 macp->m_src_addr = softmac->smac_unicst_addr; 800 macp->m_min_sdu = softmac->smac_min_sdu; 801 macp->m_max_sdu = softmac->smac_max_sdu; 802 macp->m_callbacks = &softmac_m_callbacks; 803 macp->m_instance = (uint_t)-1; 804 805 err = mac_register(macp, &softmac->smac_mh); 806 mac_free(macp); 807 if (err != 0) { 808 cmn_err(CE_WARN, "mac_register failed for %s", 809 softmac->smac_devname); 810 goto done; 811 } 812 } 813 mutex_exit(&softmac->smac_mutex); 814 815 /* 816 * Try to create the datalink for this softmac. 817 */ 818 if ((err = softmac_create_datalink(softmac)) != 0) { 819 if (!(softmac->smac_flags & SOFTMAC_NOSUPP)) { 820 (void) mac_unregister(softmac->smac_mh); 821 softmac->smac_mh = NULL; 822 } 823 } 824 /* 825 * If succeed, create the thread which handles the DL_NOTIFY_IND from 826 * the lower stream. 827 */ 828 if (softmac->smac_mh != NULL) { 829 softmac->smac_notify_thread = thread_create(NULL, 0, 830 softmac_notify_thread, softmac, 0, &p0, 831 TS_RUN, minclsyspri); 832 } 833 834 mutex_enter(&softmac->smac_mutex); 835 done: 836 ASSERT(softmac->smac_state == SOFTMAC_ATTACH_INPROG && 837 softmac->smac_attachok_cnt == softmac->smac_cnt); 838 softmac->smac_state = SOFTMAC_ATTACH_DONE; 839 softmac->smac_attacherr = err; 840 cv_broadcast(&softmac->smac_cv); 841 mutex_exit(&softmac->smac_mutex); 842 } 843 844 int 845 softmac_destroy(dev_info_t *dip, dev_t dev) 846 { 847 char devname[MAXNAMELEN]; 848 softmac_t *softmac; 849 softmac_dev_t *softmac_dev; 850 int index; 851 int ppa, err; 852 datalink_id_t linkid; 853 mac_handle_t smac_mh; 854 uint32_t smac_flags; 855 856 ppa = ddi_get_instance(dip); 857 (void) snprintf(devname, MAXNAMELEN, "%s%d", ddi_driver_name(dip), ppa); 858 859 /* 860 * We are called only from the predetach entry point. The DACF 861 * framework ensures there can't be a concurrent postattach call 862 * for the same softmac. The softmac found out from the modhash 863 * below can't vanish beneath us since this is the only place where 864 * it is deleted. 865 */ 866 err = mod_hash_find(softmac_hash, (mod_hash_key_t)devname, 867 (mod_hash_val_t *)&softmac); 868 ASSERT(err == 0); 869 870 mutex_enter(&softmac->smac_mutex); 871 SOFTMAC_STATE_VERIFY(softmac); 872 873 /* 874 * Fail the predetach routine if this softmac is in-use. 875 * Make sure these downcalls into softmac_create or softmac_destroy 876 * don't cv_wait on any devfs related condition. Thus softmac_destroy 877 * returns EBUSY if the asynchronous thread started in softmac_create 878 * hasn't finished 879 */ 880 if ((softmac->smac_hold_cnt != 0) || 881 (softmac->smac_state == SOFTMAC_ATTACH_INPROG)) { 882 softmac->smac_attached_left = softmac->smac_attachok_cnt; 883 mutex_exit(&softmac->smac_mutex); 884 return (EBUSY); 885 } 886 887 /* 888 * Even if the predetach of one minor node has already failed 889 * (smac_attached_left is not 0), the DACF framework will continue 890 * to call the predetach routines of the other minor nodes, 891 * so we fail these calls here. 892 */ 893 if (softmac->smac_attached_left != 0) { 894 mutex_exit(&softmac->smac_mutex); 895 return (EBUSY); 896 } 897 898 smac_mh = softmac->smac_mh; 899 smac_flags = softmac->smac_flags; 900 softmac->smac_state = SOFTMAC_DETACH_INPROG; 901 mutex_exit(&softmac->smac_mutex); 902 903 if (smac_mh != NULL) { 904 /* 905 * This is the first minor node that is being detached for this 906 * softmac. 907 */ 908 ASSERT(softmac->smac_attachok_cnt == softmac->smac_cnt); 909 if (!(smac_flags & SOFTMAC_NOSUPP)) { 910 if ((err = dls_devnet_destroy(smac_mh, &linkid, 911 B_FALSE)) != 0) { 912 goto error; 913 } 914 } 915 /* 916 * If softmac_mac_register() succeeds in registering the mac 917 * of the legacy device, unregister it. 918 */ 919 if (!(smac_flags & (SOFTMAC_GLDV3 | SOFTMAC_NOSUPP))) { 920 if ((err = mac_disable_nowait(smac_mh)) != 0) { 921 (void) dls_devnet_create(smac_mh, linkid); 922 goto error; 923 } 924 /* 925 * Ask softmac_notify_thread to quit, and wait for 926 * that to be done. 927 */ 928 mutex_enter(&softmac->smac_mutex); 929 softmac->smac_flags |= SOFTMAC_NOTIFY_QUIT; 930 cv_broadcast(&softmac->smac_cv); 931 while (softmac->smac_notify_thread != NULL) { 932 cv_wait(&softmac->smac_cv, 933 &softmac->smac_mutex); 934 } 935 mutex_exit(&softmac->smac_mutex); 936 VERIFY(mac_unregister(smac_mh) == 0); 937 } 938 softmac->smac_mh = NULL; 939 } 940 941 /* 942 * Free softmac_dev 943 */ 944 rw_enter(&softmac_hash_lock, RW_WRITER); 945 mutex_enter(&softmac->smac_mutex); 946 947 ASSERT(softmac->smac_state == SOFTMAC_DETACH_INPROG && 948 softmac->smac_attachok_cnt != 0); 949 softmac->smac_mh = NULL; 950 index = (getmajor(dev) == ddi_name_to_major("clone")); 951 softmac_dev = softmac->smac_softmac[index]; 952 ASSERT(softmac_dev != NULL); 953 softmac->smac_softmac[index] = NULL; 954 kmem_free(softmac_dev, sizeof (softmac_dev_t)); 955 956 if (--softmac->smac_attachok_cnt == 0) { 957 mod_hash_val_t hashval; 958 959 softmac->smac_state = SOFTMAC_UNINIT; 960 if (softmac->smac_hold_cnt != 0) { 961 /* 962 * Someone did a softmac_hold_device while we dropped 963 * the locks. Leave the softmac itself intact which 964 * will be reused by the reattach 965 */ 966 mutex_exit(&softmac->smac_mutex); 967 rw_exit(&softmac_hash_lock); 968 return (0); 969 } 970 971 err = mod_hash_remove(softmac_hash, 972 (mod_hash_key_t)devname, 973 (mod_hash_val_t *)&hashval); 974 ASSERT(err == 0); 975 976 mutex_exit(&softmac->smac_mutex); 977 rw_exit(&softmac_hash_lock); 978 979 mutex_destroy(&softmac->smac_mutex); 980 cv_destroy(&softmac->smac_cv); 981 kmem_free(softmac, sizeof (softmac_t)); 982 return (0); 983 } 984 mutex_exit(&softmac->smac_mutex); 985 rw_exit(&softmac_hash_lock); 986 return (0); 987 988 error: 989 mutex_enter(&softmac->smac_mutex); 990 softmac->smac_attached_left = softmac->smac_attachok_cnt; 991 softmac->smac_state = SOFTMAC_ATTACH_DONE; 992 cv_broadcast(&softmac->smac_cv); 993 mutex_exit(&softmac->smac_mutex); 994 return (err); 995 } 996 997 /* 998 * This function is called as the result of a newly started dlmgmtd daemon. 999 * 1000 * We walk through every softmac that was created but failed to notify 1001 * dlmgmtd about it (whose SOFTMAC_NEED_RECREATE flag is set). This occurs 1002 * when softmacs are created before dlmgmtd is ready. For example, during 1003 * diskless boot, a network device is used (and therefore attached) before 1004 * the datalink-management service starts dlmgmtd. 1005 */ 1006 /* ARGSUSED */ 1007 static uint_t 1008 softmac_mac_recreate(mod_hash_key_t key, mod_hash_val_t *val, void *arg) 1009 { 1010 softmac_t *softmac = (softmac_t *)val; 1011 datalink_id_t linkid; 1012 int err; 1013 softmac_walk_t *smwp = arg; 1014 1015 /* 1016 * The framework itself must not hold any locks across calls to the 1017 * mac perimeter. Thus this function does not call any framework 1018 * function that needs to grab the mac perimeter. 1019 */ 1020 ASSERT(RW_READ_HELD(&softmac_hash_lock)); 1021 1022 smwp->smw_retry = B_FALSE; 1023 mutex_enter(&softmac->smac_mutex); 1024 SOFTMAC_STATE_VERIFY(softmac); 1025 if (softmac->smac_state == SOFTMAC_ATTACH_INPROG) { 1026 /* 1027 * Wait till softmac_create or softmac_mac_register finishes 1028 * Hold the softmac to ensure it stays around. The wait itself 1029 * is done in the caller, since we need to drop all locks 1030 * including the mod hash's internal lock before calling 1031 * cv_wait. 1032 */ 1033 smwp->smw_retry = B_TRUE; 1034 smwp->smw_softmac = softmac; 1035 softmac->smac_hold_cnt++; 1036 return (MH_WALK_TERMINATE); 1037 } 1038 1039 if ((softmac->smac_state != SOFTMAC_ATTACH_DONE) || 1040 !(softmac->smac_flags & SOFTMAC_NEED_RECREATE)) { 1041 mutex_exit(&softmac->smac_mutex); 1042 return (MH_WALK_CONTINUE); 1043 } 1044 1045 if (dls_mgmt_create(softmac->smac_devname, 1046 makedevice(softmac->smac_umajor, softmac->smac_uppa + 1), 1047 DATALINK_CLASS_PHYS, softmac->smac_media, B_TRUE, &linkid) != 0) { 1048 mutex_exit(&softmac->smac_mutex); 1049 return (MH_WALK_CONTINUE); 1050 } 1051 1052 if ((err = softmac_update_info(softmac, &linkid)) != 0) { 1053 cmn_err(CE_WARN, "softmac: softmac_update_info() for %s " 1054 "failed (%d)", softmac->smac_devname, err); 1055 mutex_exit(&softmac->smac_mutex); 1056 return (MH_WALK_CONTINUE); 1057 } 1058 1059 /* 1060 * Create a link for this MAC. The link name will be the same 1061 * as the MAC name. 1062 */ 1063 if (!(softmac->smac_flags & SOFTMAC_NOSUPP)) { 1064 err = dls_devnet_recreate(softmac->smac_mh, linkid); 1065 if (err != 0) { 1066 cmn_err(CE_WARN, "softmac: dls_devnet_recreate() for " 1067 "%s (linkid %d) failed (%d)", 1068 softmac->smac_devname, linkid, err); 1069 } 1070 } 1071 1072 softmac->smac_flags &= ~SOFTMAC_NEED_RECREATE; 1073 mutex_exit(&softmac->smac_mutex); 1074 1075 return (MH_WALK_CONTINUE); 1076 } 1077 1078 /* 1079 * See comments above softmac_mac_recreate(). 1080 */ 1081 void 1082 softmac_recreate() 1083 { 1084 softmac_walk_t smw; 1085 softmac_t *softmac; 1086 1087 /* 1088 * Walk through the softmac_hash table. Request to create the 1089 * [link name, linkid] mapping if we failed to do so. 1090 */ 1091 do { 1092 smw.smw_retry = B_FALSE; 1093 rw_enter(&softmac_hash_lock, RW_READER); 1094 mod_hash_walk(softmac_hash, softmac_mac_recreate, &smw); 1095 rw_exit(&softmac_hash_lock); 1096 if (smw.smw_retry) { 1097 /* 1098 * softmac_create or softmac_mac_register hasn't yet 1099 * finished and the softmac is not yet in the 1100 * SOFTMAC_ATTACH_DONE state. 1101 */ 1102 softmac = smw.smw_softmac; 1103 cv_wait(&softmac->smac_cv, &softmac->smac_mutex); 1104 softmac->smac_hold_cnt--; 1105 mutex_exit(&softmac->smac_mutex); 1106 } 1107 } while (smw.smw_retry); 1108 } 1109 1110 /* ARGSUSED */ 1111 static int 1112 softmac_m_start(void *arg) 1113 { 1114 return (0); 1115 } 1116 1117 /* ARGSUSED */ 1118 static void 1119 softmac_m_stop(void *arg) 1120 { 1121 } 1122 1123 /* 1124 * Set up the lower stream above the legacy device which is shared by 1125 * GLDv3 MAC clients. Put the lower stream into DLIOCRAW mode to send 1126 * and receive the raw data. Further, put the lower stream into 1127 * DL_PROMISC_SAP mode to receive all packets of interest. 1128 */ 1129 static int 1130 softmac_lower_setup(softmac_t *softmac, softmac_lower_t **slpp) 1131 { 1132 ldi_ident_t li; 1133 dev_t dev; 1134 ldi_handle_t lh = NULL; 1135 softmac_lower_t *slp = NULL; 1136 smac_ioc_start_t start_arg; 1137 struct strioctl strioc; 1138 uint32_t notifications; 1139 int err, rval; 1140 1141 if ((err = ldi_ident_from_dip(softmac_dip, &li)) != 0) 1142 return (err); 1143 1144 dev = softmac->smac_dev; 1145 err = ldi_open_by_dev(&dev, OTYP_CHR, FREAD|FWRITE, kcred, &lh, li); 1146 ldi_ident_release(li); 1147 if (err != 0) 1148 goto done; 1149 1150 /* 1151 * Pop all the intermediate modules. The autopushed modules will 1152 * be pushed when the softmac node is opened. 1153 */ 1154 while (ldi_ioctl(lh, I_POP, 0, FKIOCTL, kcred, &rval) == 0) 1155 ; 1156 1157 if ((softmac->smac_style == DL_STYLE2) && 1158 ((err = dl_attach(lh, softmac->smac_uppa, NULL)) != 0)) { 1159 goto done; 1160 } 1161 1162 /* 1163 * Put the lower stream into DLIOCRAW mode to send/receive raw data. 1164 */ 1165 if ((err = ldi_ioctl(lh, DLIOCRAW, 0, FKIOCTL, kcred, &rval)) != 0) 1166 goto done; 1167 1168 /* 1169 * Then push the softmac shim layer atop the lower stream. 1170 */ 1171 if ((err = ldi_ioctl(lh, I_PUSH, (intptr_t)SOFTMAC_DEV_NAME, FKIOCTL, 1172 kcred, &rval)) != 0) { 1173 goto done; 1174 } 1175 1176 /* 1177 * Send the ioctl to get the slp pointer. 1178 */ 1179 strioc.ic_cmd = SMAC_IOC_START; 1180 strioc.ic_timout = INFTIM; 1181 strioc.ic_len = sizeof (start_arg); 1182 strioc.ic_dp = (char *)&start_arg; 1183 1184 if ((err = ldi_ioctl(lh, I_STR, (intptr_t)&strioc, FKIOCTL, 1185 kcred, &rval)) != 0) { 1186 goto done; 1187 } 1188 slp = start_arg.si_slp; 1189 slp->sl_lh = lh; 1190 slp->sl_softmac = softmac; 1191 *slpp = slp; 1192 1193 /* 1194 * Bind to SAP 2 on token ring, 0 on other interface types. 1195 * (SAP 0 has special significance on token ring). 1196 * Note that the receive-side packets could come anytime after bind. 1197 */ 1198 if (softmac->smac_media == DL_TPR) 1199 err = softmac_send_bind_req(slp, 2); 1200 else 1201 err = softmac_send_bind_req(slp, 0); 1202 if (err != 0) 1203 goto done; 1204 1205 /* 1206 * Put the lower stream into DL_PROMISC_SAP mode to receive all 1207 * packets of interest. 1208 * 1209 * Some drivers (e.g. the old legacy eri driver) incorrectly pass up 1210 * packets to DL_PROMISC_SAP stream when the lower stream is not bound, 1211 * so we send DL_PROMISON_REQ after DL_BIND_REQ. 1212 */ 1213 if ((err = softmac_send_promisc_req(slp, DL_PROMISC_SAP, B_TRUE)) != 0) 1214 goto done; 1215 1216 /* 1217 * Enable the capabilities the underlying driver claims to support. 1218 * Some drivers require this to be called after the stream is bound. 1219 */ 1220 if ((err = softmac_capab_enable(slp)) != 0) 1221 goto done; 1222 1223 /* 1224 * Send the DL_NOTIFY_REQ to enable certain DL_NOTIFY_IND. 1225 * We don't have to wait for the ack. 1226 */ 1227 notifications = DL_NOTE_PHYS_ADDR | DL_NOTE_LINK_UP | 1228 DL_NOTE_LINK_DOWN | DL_NOTE_PROMISC_ON_PHYS | 1229 DL_NOTE_PROMISC_OFF_PHYS; 1230 1231 (void) softmac_send_notify_req(slp, 1232 (notifications & softmac->smac_notifications)); 1233 1234 done: 1235 if (err != 0) 1236 (void) ldi_close(lh, FREAD|FWRITE, kcred); 1237 return (err); 1238 } 1239 1240 static int 1241 softmac_m_open(void *arg) 1242 { 1243 softmac_t *softmac = arg; 1244 softmac_lower_t *slp; 1245 int err; 1246 1247 ASSERT(MAC_PERIM_HELD(softmac->smac_mh)); 1248 ASSERT(softmac->smac_lower_state == SOFTMAC_INITIALIZED); 1249 1250 if ((err = softmac_lower_setup(softmac, &slp)) != 0) 1251 return (err); 1252 1253 softmac->smac_lower = slp; 1254 softmac->smac_lower_state = SOFTMAC_READY; 1255 return (0); 1256 } 1257 1258 static void 1259 softmac_m_close(void *arg) 1260 { 1261 softmac_t *softmac = arg; 1262 softmac_lower_t *slp; 1263 1264 ASSERT(MAC_PERIM_HELD(softmac->smac_mh)); 1265 ASSERT(softmac->smac_lower_state == SOFTMAC_READY); 1266 slp = softmac->smac_lower; 1267 ASSERT(slp != NULL); 1268 1269 /* 1270 * Note that slp is destroyed when lh is closed. 1271 */ 1272 (void) ldi_close(slp->sl_lh, FREAD|FWRITE, kcred); 1273 softmac->smac_lower_state = SOFTMAC_INITIALIZED; 1274 softmac->smac_lower = NULL; 1275 } 1276 1277 int 1278 softmac_hold_device(dev_t dev, dls_dev_handle_t *ddhp) 1279 { 1280 dev_info_t *dip; 1281 const char *drvname; 1282 char devname[MAXNAMELEN]; 1283 softmac_t *softmac; 1284 int ppa, err; 1285 1286 if ((ppa = getminor(dev) - 1) > 1000) 1287 return (ENOENT); 1288 1289 /* 1290 * First try to hold this device instance to force the MAC 1291 * to be registered. 1292 */ 1293 if ((dip = ddi_hold_devi_by_instance(getmajor(dev), ppa, 0)) == NULL) 1294 return (ENOENT); 1295 1296 drvname = ddi_driver_name(dip); 1297 1298 /* 1299 * Exclude non-physical network device instances, for example, aggr0. 1300 */ 1301 if ((ddi_driver_major(dip) != getmajor(dev)) || 1302 !NETWORK_DRV(getmajor(dev)) || (strcmp(drvname, "aggr") == 0) || 1303 (strcmp(drvname, "vnic") == 0)) { 1304 ddi_release_devi(dip); 1305 return (ENOENT); 1306 } 1307 1308 /* 1309 * This is a network device; wait for its softmac to be registered. 1310 */ 1311 (void) snprintf(devname, MAXNAMELEN, "%s%d", drvname, ppa); 1312 again: 1313 rw_enter(&softmac_hash_lock, RW_READER); 1314 1315 if (mod_hash_find(softmac_hash, (mod_hash_key_t)devname, 1316 (mod_hash_val_t *)&softmac) != 0) { 1317 /* 1318 * This is rare but possible. It could happen when pre-detach 1319 * routine of the device succeeds. But the softmac will then 1320 * be recreated when device fails to detach (as this device 1321 * is held). 1322 */ 1323 mutex_enter(&smac_global_lock); 1324 rw_exit(&softmac_hash_lock); 1325 cv_wait(&smac_global_cv, &smac_global_lock); 1326 mutex_exit(&smac_global_lock); 1327 goto again; 1328 } 1329 1330 /* 1331 * Bump smac_hold_cnt to prevent device detach. 1332 */ 1333 mutex_enter(&softmac->smac_mutex); 1334 softmac->smac_hold_cnt++; 1335 rw_exit(&softmac_hash_lock); 1336 1337 /* 1338 * Wait till the device is fully attached. 1339 */ 1340 while (softmac->smac_state != SOFTMAC_ATTACH_DONE) 1341 cv_wait(&softmac->smac_cv, &softmac->smac_mutex); 1342 1343 SOFTMAC_STATE_VERIFY(softmac); 1344 1345 if ((err = softmac->smac_attacherr) != 0) 1346 softmac->smac_hold_cnt--; 1347 else 1348 *ddhp = (dls_dev_handle_t)softmac; 1349 mutex_exit(&softmac->smac_mutex); 1350 1351 ddi_release_devi(dip); 1352 return (err); 1353 } 1354 1355 void 1356 softmac_rele_device(dls_dev_handle_t ddh) 1357 { 1358 softmac_t *softmac; 1359 1360 if (ddh == NULL) 1361 return; 1362 1363 softmac = (softmac_t *)ddh; 1364 mutex_enter(&softmac->smac_mutex); 1365 softmac->smac_hold_cnt--; 1366 mutex_exit(&softmac->smac_mutex); 1367 } 1368