1 /*- 2 * Common functions for CAM "type" (peripheral) drivers. 3 * 4 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 5 * 6 * Copyright (c) 1997, 1998 Justin T. Gibbs. 7 * Copyright (c) 1997, 1998, 1999, 2000 Kenneth D. Merry. 8 * All rights reserved. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions, and the following disclaimer, 15 * without modification, immediately at the beginning of the file. 16 * 2. The name of the author may not be used to endorse or promote products 17 * derived from this software without specific prior written permission. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR 23 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 * SUCH DAMAGE. 30 */ 31 32 #include <sys/cdefs.h> 33 __FBSDID("$FreeBSD$"); 34 35 #include <sys/param.h> 36 #include <sys/systm.h> 37 #include <sys/types.h> 38 #include <sys/malloc.h> 39 #include <sys/kernel.h> 40 #include <sys/bio.h> 41 #include <sys/conf.h> 42 #include <sys/lock.h> 43 #include <sys/mutex.h> 44 #include <sys/buf.h> 45 #include <sys/proc.h> 46 #include <sys/devicestat.h> 47 #include <sys/bus.h> 48 #include <sys/sbuf.h> 49 #include <vm/vm.h> 50 #include <vm/vm_extern.h> 51 52 #include <cam/cam.h> 53 #include <cam/cam_ccb.h> 54 #include <cam/cam_queue.h> 55 #include <cam/cam_xpt_periph.h> 56 #include <cam/cam_periph.h> 57 #include <cam/cam_debug.h> 58 #include <cam/cam_sim.h> 59 60 #include <cam/scsi/scsi_all.h> 61 #include <cam/scsi/scsi_message.h> 62 #include <cam/scsi/scsi_pass.h> 63 64 static u_int camperiphnextunit(struct periph_driver *p_drv, 65 u_int newunit, int wired, 66 path_id_t pathid, target_id_t target, 67 lun_id_t lun); 68 static u_int camperiphunit(struct periph_driver *p_drv, 69 path_id_t pathid, target_id_t target, 70 lun_id_t lun); 71 static void camperiphdone(struct cam_periph *periph, 72 union ccb *done_ccb); 73 static void camperiphfree(struct cam_periph *periph); 74 static int camperiphscsistatuserror(union ccb *ccb, 75 union ccb **orig_ccb, 76 cam_flags camflags, 77 u_int32_t sense_flags, 78 int *openings, 79 u_int32_t *relsim_flags, 80 u_int32_t *timeout, 81 u_int32_t *action, 82 const char **action_string); 83 static int camperiphscsisenseerror(union ccb *ccb, 84 union ccb **orig_ccb, 85 cam_flags camflags, 86 u_int32_t sense_flags, 87 int *openings, 88 u_int32_t *relsim_flags, 89 u_int32_t *timeout, 90 u_int32_t *action, 91 const char **action_string); 92 static void cam_periph_devctl_notify(union ccb *ccb); 93 94 static int nperiph_drivers; 95 static int initialized = 0; 96 struct periph_driver **periph_drivers; 97 98 static MALLOC_DEFINE(M_CAMPERIPH, "CAM periph", "CAM peripheral buffers"); 99 100 static int periph_selto_delay = 1000; 101 TUNABLE_INT("kern.cam.periph_selto_delay", &periph_selto_delay); 102 static int periph_noresrc_delay = 500; 103 TUNABLE_INT("kern.cam.periph_noresrc_delay", &periph_noresrc_delay); 104 static int periph_busy_delay = 500; 105 TUNABLE_INT("kern.cam.periph_busy_delay", &periph_busy_delay); 106 107 108 void 109 periphdriver_register(void *data) 110 { 111 struct periph_driver *drv = (struct periph_driver *)data; 112 struct periph_driver **newdrivers, **old; 113 int ndrivers; 114 115 again: 116 ndrivers = nperiph_drivers + 2; 117 newdrivers = malloc(sizeof(*newdrivers) * ndrivers, M_CAMPERIPH, 118 M_WAITOK); 119 xpt_lock_buses(); 120 if (ndrivers != nperiph_drivers + 2) { 121 /* 122 * Lost race against itself; go around. 123 */ 124 xpt_unlock_buses(); 125 free(newdrivers, M_CAMPERIPH); 126 goto again; 127 } 128 if (periph_drivers) 129 bcopy(periph_drivers, newdrivers, 130 sizeof(*newdrivers) * nperiph_drivers); 131 newdrivers[nperiph_drivers] = drv; 132 newdrivers[nperiph_drivers + 1] = NULL; 133 old = periph_drivers; 134 periph_drivers = newdrivers; 135 nperiph_drivers++; 136 xpt_unlock_buses(); 137 if (old) 138 free(old, M_CAMPERIPH); 139 /* If driver marked as early or it is late now, initialize it. */ 140 if (((drv->flags & CAM_PERIPH_DRV_EARLY) != 0 && initialized > 0) || 141 initialized > 1) 142 (*drv->init)(); 143 } 144 145 int 146 periphdriver_unregister(void *data) 147 { 148 struct periph_driver *drv = (struct periph_driver *)data; 149 int error, n; 150 151 /* If driver marked as early or it is late now, deinitialize it. */ 152 if (((drv->flags & CAM_PERIPH_DRV_EARLY) != 0 && initialized > 0) || 153 initialized > 1) { 154 if (drv->deinit == NULL) { 155 printf("CAM periph driver '%s' doesn't have deinit.\n", 156 drv->driver_name); 157 return (EOPNOTSUPP); 158 } 159 error = drv->deinit(); 160 if (error != 0) 161 return (error); 162 } 163 164 xpt_lock_buses(); 165 for (n = 0; n < nperiph_drivers && periph_drivers[n] != drv; n++) 166 ; 167 KASSERT(n < nperiph_drivers, 168 ("Periph driver '%s' was not registered", drv->driver_name)); 169 for (; n + 1 < nperiph_drivers; n++) 170 periph_drivers[n] = periph_drivers[n + 1]; 171 periph_drivers[n + 1] = NULL; 172 nperiph_drivers--; 173 xpt_unlock_buses(); 174 return (0); 175 } 176 177 void 178 periphdriver_init(int level) 179 { 180 int i, early; 181 182 initialized = max(initialized, level); 183 for (i = 0; periph_drivers[i] != NULL; i++) { 184 early = (periph_drivers[i]->flags & CAM_PERIPH_DRV_EARLY) ? 1 : 2; 185 if (early == initialized) 186 (*periph_drivers[i]->init)(); 187 } 188 } 189 190 cam_status 191 cam_periph_alloc(periph_ctor_t *periph_ctor, 192 periph_oninv_t *periph_oninvalidate, 193 periph_dtor_t *periph_dtor, periph_start_t *periph_start, 194 char *name, cam_periph_type type, struct cam_path *path, 195 ac_callback_t *ac_callback, ac_code code, void *arg) 196 { 197 struct periph_driver **p_drv; 198 struct cam_sim *sim; 199 struct cam_periph *periph; 200 struct cam_periph *cur_periph; 201 path_id_t path_id; 202 target_id_t target_id; 203 lun_id_t lun_id; 204 cam_status status; 205 u_int init_level; 206 207 init_level = 0; 208 /* 209 * Handle Hot-Plug scenarios. If there is already a peripheral 210 * of our type assigned to this path, we are likely waiting for 211 * final close on an old, invalidated, peripheral. If this is 212 * the case, queue up a deferred call to the peripheral's async 213 * handler. If it looks like a mistaken re-allocation, complain. 214 */ 215 if ((periph = cam_periph_find(path, name)) != NULL) { 216 217 if ((periph->flags & CAM_PERIPH_INVALID) != 0 218 && (periph->flags & CAM_PERIPH_NEW_DEV_FOUND) == 0) { 219 periph->flags |= CAM_PERIPH_NEW_DEV_FOUND; 220 periph->deferred_callback = ac_callback; 221 periph->deferred_ac = code; 222 return (CAM_REQ_INPROG); 223 } else { 224 printf("cam_periph_alloc: attempt to re-allocate " 225 "valid device %s%d rejected flags %#x " 226 "refcount %d\n", periph->periph_name, 227 periph->unit_number, periph->flags, 228 periph->refcount); 229 } 230 return (CAM_REQ_INVALID); 231 } 232 233 periph = (struct cam_periph *)malloc(sizeof(*periph), M_CAMPERIPH, 234 M_NOWAIT|M_ZERO); 235 236 if (periph == NULL) 237 return (CAM_RESRC_UNAVAIL); 238 239 init_level++; 240 241 242 sim = xpt_path_sim(path); 243 path_id = xpt_path_path_id(path); 244 target_id = xpt_path_target_id(path); 245 lun_id = xpt_path_lun_id(path); 246 periph->periph_start = periph_start; 247 periph->periph_dtor = periph_dtor; 248 periph->periph_oninval = periph_oninvalidate; 249 periph->type = type; 250 periph->periph_name = name; 251 periph->scheduled_priority = CAM_PRIORITY_NONE; 252 periph->immediate_priority = CAM_PRIORITY_NONE; 253 periph->refcount = 1; /* Dropped by invalidation. */ 254 periph->sim = sim; 255 SLIST_INIT(&periph->ccb_list); 256 status = xpt_create_path(&path, periph, path_id, target_id, lun_id); 257 if (status != CAM_REQ_CMP) 258 goto failure; 259 periph->path = path; 260 261 xpt_lock_buses(); 262 for (p_drv = periph_drivers; *p_drv != NULL; p_drv++) { 263 if (strcmp((*p_drv)->driver_name, name) == 0) 264 break; 265 } 266 if (*p_drv == NULL) { 267 printf("cam_periph_alloc: invalid periph name '%s'\n", name); 268 xpt_unlock_buses(); 269 xpt_free_path(periph->path); 270 free(periph, M_CAMPERIPH); 271 return (CAM_REQ_INVALID); 272 } 273 periph->unit_number = camperiphunit(*p_drv, path_id, target_id, lun_id); 274 cur_periph = TAILQ_FIRST(&(*p_drv)->units); 275 while (cur_periph != NULL 276 && cur_periph->unit_number < periph->unit_number) 277 cur_periph = TAILQ_NEXT(cur_periph, unit_links); 278 if (cur_periph != NULL) { 279 KASSERT(cur_periph->unit_number != periph->unit_number, ("duplicate units on periph list")); 280 TAILQ_INSERT_BEFORE(cur_periph, periph, unit_links); 281 } else { 282 TAILQ_INSERT_TAIL(&(*p_drv)->units, periph, unit_links); 283 (*p_drv)->generation++; 284 } 285 xpt_unlock_buses(); 286 287 init_level++; 288 289 status = xpt_add_periph(periph); 290 if (status != CAM_REQ_CMP) 291 goto failure; 292 293 init_level++; 294 CAM_DEBUG(periph->path, CAM_DEBUG_INFO, ("Periph created\n")); 295 296 status = periph_ctor(periph, arg); 297 298 if (status == CAM_REQ_CMP) 299 init_level++; 300 301 failure: 302 switch (init_level) { 303 case 4: 304 /* Initialized successfully */ 305 break; 306 case 3: 307 CAM_DEBUG(periph->path, CAM_DEBUG_INFO, ("Periph destroyed\n")); 308 xpt_remove_periph(periph); 309 /* FALLTHROUGH */ 310 case 2: 311 xpt_lock_buses(); 312 TAILQ_REMOVE(&(*p_drv)->units, periph, unit_links); 313 xpt_unlock_buses(); 314 xpt_free_path(periph->path); 315 /* FALLTHROUGH */ 316 case 1: 317 free(periph, M_CAMPERIPH); 318 /* FALLTHROUGH */ 319 case 0: 320 /* No cleanup to perform. */ 321 break; 322 default: 323 panic("%s: Unknown init level", __func__); 324 } 325 return(status); 326 } 327 328 /* 329 * Find a peripheral structure with the specified path, target, lun, 330 * and (optionally) type. If the name is NULL, this function will return 331 * the first peripheral driver that matches the specified path. 332 */ 333 struct cam_periph * 334 cam_periph_find(struct cam_path *path, char *name) 335 { 336 struct periph_driver **p_drv; 337 struct cam_periph *periph; 338 339 xpt_lock_buses(); 340 for (p_drv = periph_drivers; *p_drv != NULL; p_drv++) { 341 342 if (name != NULL && (strcmp((*p_drv)->driver_name, name) != 0)) 343 continue; 344 345 TAILQ_FOREACH(periph, &(*p_drv)->units, unit_links) { 346 if (xpt_path_comp(periph->path, path) == 0) { 347 xpt_unlock_buses(); 348 cam_periph_assert(periph, MA_OWNED); 349 return(periph); 350 } 351 } 352 if (name != NULL) { 353 xpt_unlock_buses(); 354 return(NULL); 355 } 356 } 357 xpt_unlock_buses(); 358 return(NULL); 359 } 360 361 /* 362 * Find peripheral driver instances attached to the specified path. 363 */ 364 int 365 cam_periph_list(struct cam_path *path, struct sbuf *sb) 366 { 367 struct sbuf local_sb; 368 struct periph_driver **p_drv; 369 struct cam_periph *periph; 370 int count; 371 int sbuf_alloc_len; 372 373 sbuf_alloc_len = 16; 374 retry: 375 sbuf_new(&local_sb, NULL, sbuf_alloc_len, SBUF_FIXEDLEN); 376 count = 0; 377 xpt_lock_buses(); 378 for (p_drv = periph_drivers; *p_drv != NULL; p_drv++) { 379 380 TAILQ_FOREACH(periph, &(*p_drv)->units, unit_links) { 381 if (xpt_path_comp(periph->path, path) != 0) 382 continue; 383 384 if (sbuf_len(&local_sb) != 0) 385 sbuf_cat(&local_sb, ","); 386 387 sbuf_printf(&local_sb, "%s%d", periph->periph_name, 388 periph->unit_number); 389 390 if (sbuf_error(&local_sb) == ENOMEM) { 391 sbuf_alloc_len *= 2; 392 xpt_unlock_buses(); 393 sbuf_delete(&local_sb); 394 goto retry; 395 } 396 count++; 397 } 398 } 399 xpt_unlock_buses(); 400 sbuf_finish(&local_sb); 401 sbuf_cpy(sb, sbuf_data(&local_sb)); 402 sbuf_delete(&local_sb); 403 return (count); 404 } 405 406 int 407 cam_periph_acquire(struct cam_periph *periph) 408 { 409 int status; 410 411 if (periph == NULL) 412 return (EINVAL); 413 414 status = ENOENT; 415 xpt_lock_buses(); 416 if ((periph->flags & CAM_PERIPH_INVALID) == 0) { 417 periph->refcount++; 418 status = 0; 419 } 420 xpt_unlock_buses(); 421 422 return (status); 423 } 424 425 void 426 cam_periph_doacquire(struct cam_periph *periph) 427 { 428 429 xpt_lock_buses(); 430 KASSERT(periph->refcount >= 1, 431 ("cam_periph_doacquire() with refcount == %d", periph->refcount)); 432 periph->refcount++; 433 xpt_unlock_buses(); 434 } 435 436 void 437 cam_periph_release_locked_buses(struct cam_periph *periph) 438 { 439 440 cam_periph_assert(periph, MA_OWNED); 441 KASSERT(periph->refcount >= 1, ("periph->refcount >= 1")); 442 if (--periph->refcount == 0) 443 camperiphfree(periph); 444 } 445 446 void 447 cam_periph_release_locked(struct cam_periph *periph) 448 { 449 450 if (periph == NULL) 451 return; 452 453 xpt_lock_buses(); 454 cam_periph_release_locked_buses(periph); 455 xpt_unlock_buses(); 456 } 457 458 void 459 cam_periph_release(struct cam_periph *periph) 460 { 461 struct mtx *mtx; 462 463 if (periph == NULL) 464 return; 465 466 cam_periph_assert(periph, MA_NOTOWNED); 467 mtx = cam_periph_mtx(periph); 468 mtx_lock(mtx); 469 cam_periph_release_locked(periph); 470 mtx_unlock(mtx); 471 } 472 473 int 474 cam_periph_hold(struct cam_periph *periph, int priority) 475 { 476 int error; 477 478 /* 479 * Increment the reference count on the peripheral 480 * while we wait for our lock attempt to succeed 481 * to ensure the peripheral doesn't disappear out 482 * from user us while we sleep. 483 */ 484 485 if (cam_periph_acquire(periph) != 0) 486 return (ENXIO); 487 488 cam_periph_assert(periph, MA_OWNED); 489 while ((periph->flags & CAM_PERIPH_LOCKED) != 0) { 490 periph->flags |= CAM_PERIPH_LOCK_WANTED; 491 if ((error = cam_periph_sleep(periph, periph, priority, 492 "caplck", 0)) != 0) { 493 cam_periph_release_locked(periph); 494 return (error); 495 } 496 if (periph->flags & CAM_PERIPH_INVALID) { 497 cam_periph_release_locked(periph); 498 return (ENXIO); 499 } 500 } 501 502 periph->flags |= CAM_PERIPH_LOCKED; 503 return (0); 504 } 505 506 void 507 cam_periph_unhold(struct cam_periph *periph) 508 { 509 510 cam_periph_assert(periph, MA_OWNED); 511 512 periph->flags &= ~CAM_PERIPH_LOCKED; 513 if ((periph->flags & CAM_PERIPH_LOCK_WANTED) != 0) { 514 periph->flags &= ~CAM_PERIPH_LOCK_WANTED; 515 wakeup(periph); 516 } 517 518 cam_periph_release_locked(periph); 519 } 520 521 /* 522 * Look for the next unit number that is not currently in use for this 523 * peripheral type starting at "newunit". Also exclude unit numbers that 524 * are reserved by for future "hardwiring" unless we already know that this 525 * is a potential wired device. Only assume that the device is "wired" the 526 * first time through the loop since after that we'll be looking at unit 527 * numbers that did not match a wiring entry. 528 */ 529 static u_int 530 camperiphnextunit(struct periph_driver *p_drv, u_int newunit, int wired, 531 path_id_t pathid, target_id_t target, lun_id_t lun) 532 { 533 struct cam_periph *periph; 534 char *periph_name; 535 int i, val, dunit, r; 536 const char *dname, *strval; 537 538 periph_name = p_drv->driver_name; 539 for (;;newunit++) { 540 541 for (periph = TAILQ_FIRST(&p_drv->units); 542 periph != NULL && periph->unit_number != newunit; 543 periph = TAILQ_NEXT(periph, unit_links)) 544 ; 545 546 if (periph != NULL && periph->unit_number == newunit) { 547 if (wired != 0) { 548 xpt_print(periph->path, "Duplicate Wired " 549 "Device entry!\n"); 550 xpt_print(periph->path, "Second device (%s " 551 "device at scbus%d target %d lun %d) will " 552 "not be wired\n", periph_name, pathid, 553 target, lun); 554 wired = 0; 555 } 556 continue; 557 } 558 if (wired) 559 break; 560 561 /* 562 * Don't match entries like "da 4" as a wired down 563 * device, but do match entries like "da 4 target 5" 564 * or even "da 4 scbus 1". 565 */ 566 i = 0; 567 dname = periph_name; 568 for (;;) { 569 r = resource_find_dev(&i, dname, &dunit, NULL, NULL); 570 if (r != 0) 571 break; 572 /* if no "target" and no specific scbus, skip */ 573 if (resource_int_value(dname, dunit, "target", &val) && 574 (resource_string_value(dname, dunit, "at",&strval)|| 575 strcmp(strval, "scbus") == 0)) 576 continue; 577 if (newunit == dunit) 578 break; 579 } 580 if (r != 0) 581 break; 582 } 583 return (newunit); 584 } 585 586 static u_int 587 camperiphunit(struct periph_driver *p_drv, path_id_t pathid, 588 target_id_t target, lun_id_t lun) 589 { 590 u_int unit; 591 int wired, i, val, dunit; 592 const char *dname, *strval; 593 char pathbuf[32], *periph_name; 594 595 periph_name = p_drv->driver_name; 596 snprintf(pathbuf, sizeof(pathbuf), "scbus%d", pathid); 597 unit = 0; 598 i = 0; 599 dname = periph_name; 600 for (wired = 0; resource_find_dev(&i, dname, &dunit, NULL, NULL) == 0; 601 wired = 0) { 602 if (resource_string_value(dname, dunit, "at", &strval) == 0) { 603 if (strcmp(strval, pathbuf) != 0) 604 continue; 605 wired++; 606 } 607 if (resource_int_value(dname, dunit, "target", &val) == 0) { 608 if (val != target) 609 continue; 610 wired++; 611 } 612 if (resource_int_value(dname, dunit, "lun", &val) == 0) { 613 if (val != lun) 614 continue; 615 wired++; 616 } 617 if (wired != 0) { 618 unit = dunit; 619 break; 620 } 621 } 622 623 /* 624 * Either start from 0 looking for the next unit or from 625 * the unit number given in the resource config. This way, 626 * if we have wildcard matches, we don't return the same 627 * unit number twice. 628 */ 629 unit = camperiphnextunit(p_drv, unit, wired, pathid, target, lun); 630 631 return (unit); 632 } 633 634 void 635 cam_periph_invalidate(struct cam_periph *periph) 636 { 637 638 cam_periph_assert(periph, MA_OWNED); 639 /* 640 * We only call this routine the first time a peripheral is 641 * invalidated. 642 */ 643 if ((periph->flags & CAM_PERIPH_INVALID) != 0) 644 return; 645 646 CAM_DEBUG(periph->path, CAM_DEBUG_INFO, ("Periph invalidated\n")); 647 if ((periph->flags & CAM_PERIPH_ANNOUNCED) && !rebooting) { 648 struct sbuf sb; 649 char buffer[160]; 650 651 sbuf_new(&sb, buffer, 160, SBUF_FIXEDLEN); 652 xpt_denounce_periph_sbuf(periph, &sb); 653 sbuf_finish(&sb); 654 sbuf_putbuf(&sb); 655 } 656 periph->flags |= CAM_PERIPH_INVALID; 657 periph->flags &= ~CAM_PERIPH_NEW_DEV_FOUND; 658 if (periph->periph_oninval != NULL) 659 periph->periph_oninval(periph); 660 cam_periph_release_locked(periph); 661 } 662 663 static void 664 camperiphfree(struct cam_periph *periph) 665 { 666 struct periph_driver **p_drv; 667 struct periph_driver *drv; 668 669 cam_periph_assert(periph, MA_OWNED); 670 KASSERT(periph->periph_allocating == 0, ("%s%d: freed while allocating", 671 periph->periph_name, periph->unit_number)); 672 for (p_drv = periph_drivers; *p_drv != NULL; p_drv++) { 673 if (strcmp((*p_drv)->driver_name, periph->periph_name) == 0) 674 break; 675 } 676 if (*p_drv == NULL) { 677 printf("camperiphfree: attempt to free non-existant periph\n"); 678 return; 679 } 680 /* 681 * Cache a pointer to the periph_driver structure. If a 682 * periph_driver is added or removed from the array (see 683 * periphdriver_register()) while we drop the toplogy lock 684 * below, p_drv may change. This doesn't protect against this 685 * particular periph_driver going away. That will require full 686 * reference counting in the periph_driver infrastructure. 687 */ 688 drv = *p_drv; 689 690 /* 691 * We need to set this flag before dropping the topology lock, to 692 * let anyone who is traversing the list that this peripheral is 693 * about to be freed, and there will be no more reference count 694 * checks. 695 */ 696 periph->flags |= CAM_PERIPH_FREE; 697 698 /* 699 * The peripheral destructor semantics dictate calling with only the 700 * SIM mutex held. Since it might sleep, it should not be called 701 * with the topology lock held. 702 */ 703 xpt_unlock_buses(); 704 705 /* 706 * We need to call the peripheral destructor prior to removing the 707 * peripheral from the list. Otherwise, we risk running into a 708 * scenario where the peripheral unit number may get reused 709 * (because it has been removed from the list), but some resources 710 * used by the peripheral are still hanging around. In particular, 711 * the devfs nodes used by some peripherals like the pass(4) driver 712 * aren't fully cleaned up until the destructor is run. If the 713 * unit number is reused before the devfs instance is fully gone, 714 * devfs will panic. 715 */ 716 if (periph->periph_dtor != NULL) 717 periph->periph_dtor(periph); 718 719 /* 720 * The peripheral list is protected by the topology lock. 721 */ 722 xpt_lock_buses(); 723 724 TAILQ_REMOVE(&drv->units, periph, unit_links); 725 drv->generation++; 726 727 xpt_remove_periph(periph); 728 729 xpt_unlock_buses(); 730 if ((periph->flags & CAM_PERIPH_ANNOUNCED) && !rebooting) 731 xpt_print(periph->path, "Periph destroyed\n"); 732 else 733 CAM_DEBUG(periph->path, CAM_DEBUG_INFO, ("Periph destroyed\n")); 734 735 if (periph->flags & CAM_PERIPH_NEW_DEV_FOUND) { 736 union ccb ccb; 737 void *arg; 738 739 switch (periph->deferred_ac) { 740 case AC_FOUND_DEVICE: 741 ccb.ccb_h.func_code = XPT_GDEV_TYPE; 742 xpt_setup_ccb(&ccb.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 743 xpt_action(&ccb); 744 arg = &ccb; 745 break; 746 case AC_PATH_REGISTERED: 747 xpt_path_inq(&ccb.cpi, periph->path); 748 arg = &ccb; 749 break; 750 default: 751 arg = NULL; 752 break; 753 } 754 periph->deferred_callback(NULL, periph->deferred_ac, 755 periph->path, arg); 756 } 757 xpt_free_path(periph->path); 758 free(periph, M_CAMPERIPH); 759 xpt_lock_buses(); 760 } 761 762 /* 763 * Map user virtual pointers into kernel virtual address space, so we can 764 * access the memory. This is now a generic function that centralizes most 765 * of the sanity checks on the data flags, if any. 766 * This also only works for up to MAXPHYS memory. Since we use 767 * buffers to map stuff in and out, we're limited to the buffer size. 768 */ 769 int 770 cam_periph_mapmem(union ccb *ccb, struct cam_periph_map_info *mapinfo, 771 u_int maxmap) 772 { 773 int numbufs, i, j; 774 int flags[CAM_PERIPH_MAXMAPS]; 775 u_int8_t **data_ptrs[CAM_PERIPH_MAXMAPS]; 776 u_int32_t lengths[CAM_PERIPH_MAXMAPS]; 777 u_int32_t dirs[CAM_PERIPH_MAXMAPS]; 778 779 if (maxmap == 0) 780 maxmap = DFLTPHYS; /* traditional default */ 781 else if (maxmap > MAXPHYS) 782 maxmap = MAXPHYS; /* for safety */ 783 switch(ccb->ccb_h.func_code) { 784 case XPT_DEV_MATCH: 785 if (ccb->cdm.match_buf_len == 0) { 786 printf("cam_periph_mapmem: invalid match buffer " 787 "length 0\n"); 788 return(EINVAL); 789 } 790 if (ccb->cdm.pattern_buf_len > 0) { 791 data_ptrs[0] = (u_int8_t **)&ccb->cdm.patterns; 792 lengths[0] = ccb->cdm.pattern_buf_len; 793 dirs[0] = CAM_DIR_OUT; 794 data_ptrs[1] = (u_int8_t **)&ccb->cdm.matches; 795 lengths[1] = ccb->cdm.match_buf_len; 796 dirs[1] = CAM_DIR_IN; 797 numbufs = 2; 798 } else { 799 data_ptrs[0] = (u_int8_t **)&ccb->cdm.matches; 800 lengths[0] = ccb->cdm.match_buf_len; 801 dirs[0] = CAM_DIR_IN; 802 numbufs = 1; 803 } 804 /* 805 * This request will not go to the hardware, no reason 806 * to be so strict. vmapbuf() is able to map up to MAXPHYS. 807 */ 808 maxmap = MAXPHYS; 809 break; 810 case XPT_SCSI_IO: 811 case XPT_CONT_TARGET_IO: 812 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_NONE) 813 return(0); 814 if ((ccb->ccb_h.flags & CAM_DATA_MASK) != CAM_DATA_VADDR) 815 return (EINVAL); 816 data_ptrs[0] = &ccb->csio.data_ptr; 817 lengths[0] = ccb->csio.dxfer_len; 818 dirs[0] = ccb->ccb_h.flags & CAM_DIR_MASK; 819 numbufs = 1; 820 break; 821 case XPT_ATA_IO: 822 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_NONE) 823 return(0); 824 if ((ccb->ccb_h.flags & CAM_DATA_MASK) != CAM_DATA_VADDR) 825 return (EINVAL); 826 data_ptrs[0] = &ccb->ataio.data_ptr; 827 lengths[0] = ccb->ataio.dxfer_len; 828 dirs[0] = ccb->ccb_h.flags & CAM_DIR_MASK; 829 numbufs = 1; 830 break; 831 case XPT_MMC_IO: 832 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_NONE) 833 return(0); 834 /* Two mappings: one for cmd->data and one for cmd->data->data */ 835 data_ptrs[0] = (unsigned char **)&ccb->mmcio.cmd.data; 836 lengths[0] = sizeof(struct mmc_data *); 837 dirs[0] = ccb->ccb_h.flags & CAM_DIR_MASK; 838 data_ptrs[1] = (unsigned char **)&ccb->mmcio.cmd.data->data; 839 lengths[1] = ccb->mmcio.cmd.data->len; 840 dirs[1] = ccb->ccb_h.flags & CAM_DIR_MASK; 841 numbufs = 2; 842 break; 843 case XPT_SMP_IO: 844 data_ptrs[0] = &ccb->smpio.smp_request; 845 lengths[0] = ccb->smpio.smp_request_len; 846 dirs[0] = CAM_DIR_OUT; 847 data_ptrs[1] = &ccb->smpio.smp_response; 848 lengths[1] = ccb->smpio.smp_response_len; 849 dirs[1] = CAM_DIR_IN; 850 numbufs = 2; 851 break; 852 case XPT_NVME_IO: 853 case XPT_NVME_ADMIN: 854 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_NONE) 855 return (0); 856 if ((ccb->ccb_h.flags & CAM_DATA_MASK) != CAM_DATA_VADDR) 857 return (EINVAL); 858 data_ptrs[0] = &ccb->nvmeio.data_ptr; 859 lengths[0] = ccb->nvmeio.dxfer_len; 860 dirs[0] = ccb->ccb_h.flags & CAM_DIR_MASK; 861 numbufs = 1; 862 break; 863 case XPT_DEV_ADVINFO: 864 if (ccb->cdai.bufsiz == 0) 865 return (0); 866 867 data_ptrs[0] = (uint8_t **)&ccb->cdai.buf; 868 lengths[0] = ccb->cdai.bufsiz; 869 dirs[0] = CAM_DIR_IN; 870 numbufs = 1; 871 872 /* 873 * This request will not go to the hardware, no reason 874 * to be so strict. vmapbuf() is able to map up to MAXPHYS. 875 */ 876 maxmap = MAXPHYS; 877 break; 878 default: 879 return(EINVAL); 880 break; /* NOTREACHED */ 881 } 882 883 /* 884 * Check the transfer length and permissions first, so we don't 885 * have to unmap any previously mapped buffers. 886 */ 887 for (i = 0; i < numbufs; i++) { 888 889 flags[i] = 0; 890 891 /* 892 * The userland data pointer passed in may not be page 893 * aligned. vmapbuf() truncates the address to a page 894 * boundary, so if the address isn't page aligned, we'll 895 * need enough space for the given transfer length, plus 896 * whatever extra space is necessary to make it to the page 897 * boundary. 898 */ 899 if ((lengths[i] + 900 (((vm_offset_t)(*data_ptrs[i])) & PAGE_MASK)) > maxmap){ 901 printf("cam_periph_mapmem: attempt to map %lu bytes, " 902 "which is greater than %lu\n", 903 (long)(lengths[i] + 904 (((vm_offset_t)(*data_ptrs[i])) & PAGE_MASK)), 905 (u_long)maxmap); 906 return(E2BIG); 907 } 908 909 if (dirs[i] & CAM_DIR_OUT) { 910 flags[i] = BIO_WRITE; 911 } 912 913 if (dirs[i] & CAM_DIR_IN) { 914 flags[i] = BIO_READ; 915 } 916 917 } 918 919 /* 920 * This keeps the kernel stack of current thread from getting 921 * swapped. In low-memory situations where the kernel stack might 922 * otherwise get swapped out, this holds it and allows the thread 923 * to make progress and release the kernel mapped pages sooner. 924 * 925 * XXX KDM should I use P_NOSWAP instead? 926 */ 927 PHOLD(curproc); 928 929 for (i = 0; i < numbufs; i++) { 930 /* 931 * Get the buffer. 932 */ 933 mapinfo->bp[i] = getpbuf(NULL); 934 935 /* put our pointer in the data slot */ 936 mapinfo->bp[i]->b_data = *data_ptrs[i]; 937 938 /* save the user's data address */ 939 mapinfo->bp[i]->b_caller1 = *data_ptrs[i]; 940 941 /* set the transfer length, we know it's < MAXPHYS */ 942 mapinfo->bp[i]->b_bufsize = lengths[i]; 943 944 /* set the direction */ 945 mapinfo->bp[i]->b_iocmd = flags[i]; 946 947 /* 948 * Map the buffer into kernel memory. 949 * 950 * Note that useracc() alone is not a sufficient test. 951 * vmapbuf() can still fail due to a smaller file mapped 952 * into a larger area of VM, or if userland races against 953 * vmapbuf() after the useracc() check. 954 */ 955 if (vmapbuf(mapinfo->bp[i], 1) < 0) { 956 for (j = 0; j < i; ++j) { 957 *data_ptrs[j] = mapinfo->bp[j]->b_caller1; 958 vunmapbuf(mapinfo->bp[j]); 959 relpbuf(mapinfo->bp[j], NULL); 960 } 961 relpbuf(mapinfo->bp[i], NULL); 962 PRELE(curproc); 963 return(EACCES); 964 } 965 966 /* set our pointer to the new mapped area */ 967 *data_ptrs[i] = mapinfo->bp[i]->b_data; 968 969 mapinfo->num_bufs_used++; 970 } 971 972 /* 973 * Now that we've gotten this far, change ownership to the kernel 974 * of the buffers so that we don't run afoul of returning to user 975 * space with locks (on the buffer) held. 976 */ 977 for (i = 0; i < numbufs; i++) { 978 BUF_KERNPROC(mapinfo->bp[i]); 979 } 980 981 982 return(0); 983 } 984 985 /* 986 * Unmap memory segments mapped into kernel virtual address space by 987 * cam_periph_mapmem(). 988 */ 989 void 990 cam_periph_unmapmem(union ccb *ccb, struct cam_periph_map_info *mapinfo) 991 { 992 int numbufs, i; 993 u_int8_t **data_ptrs[CAM_PERIPH_MAXMAPS]; 994 995 if (mapinfo->num_bufs_used <= 0) { 996 /* nothing to free and the process wasn't held. */ 997 return; 998 } 999 1000 switch (ccb->ccb_h.func_code) { 1001 case XPT_DEV_MATCH: 1002 numbufs = min(mapinfo->num_bufs_used, 2); 1003 1004 if (numbufs == 1) { 1005 data_ptrs[0] = (u_int8_t **)&ccb->cdm.matches; 1006 } else { 1007 data_ptrs[0] = (u_int8_t **)&ccb->cdm.patterns; 1008 data_ptrs[1] = (u_int8_t **)&ccb->cdm.matches; 1009 } 1010 break; 1011 case XPT_SCSI_IO: 1012 case XPT_CONT_TARGET_IO: 1013 data_ptrs[0] = &ccb->csio.data_ptr; 1014 numbufs = min(mapinfo->num_bufs_used, 1); 1015 break; 1016 case XPT_ATA_IO: 1017 data_ptrs[0] = &ccb->ataio.data_ptr; 1018 numbufs = min(mapinfo->num_bufs_used, 1); 1019 break; 1020 case XPT_SMP_IO: 1021 numbufs = min(mapinfo->num_bufs_used, 2); 1022 data_ptrs[0] = &ccb->smpio.smp_request; 1023 data_ptrs[1] = &ccb->smpio.smp_response; 1024 break; 1025 case XPT_DEV_ADVINFO: 1026 numbufs = min(mapinfo->num_bufs_used, 1); 1027 data_ptrs[0] = (uint8_t **)&ccb->cdai.buf; 1028 break; 1029 case XPT_NVME_IO: 1030 case XPT_NVME_ADMIN: 1031 data_ptrs[0] = &ccb->nvmeio.data_ptr; 1032 numbufs = min(mapinfo->num_bufs_used, 1); 1033 break; 1034 default: 1035 /* allow ourselves to be swapped once again */ 1036 PRELE(curproc); 1037 return; 1038 break; /* NOTREACHED */ 1039 } 1040 1041 for (i = 0; i < numbufs; i++) { 1042 /* Set the user's pointer back to the original value */ 1043 *data_ptrs[i] = mapinfo->bp[i]->b_caller1; 1044 1045 /* unmap the buffer */ 1046 vunmapbuf(mapinfo->bp[i]); 1047 1048 /* release the buffer */ 1049 relpbuf(mapinfo->bp[i], NULL); 1050 } 1051 1052 /* allow ourselves to be swapped once again */ 1053 PRELE(curproc); 1054 } 1055 1056 int 1057 cam_periph_ioctl(struct cam_periph *periph, u_long cmd, caddr_t addr, 1058 int (*error_routine)(union ccb *ccb, 1059 cam_flags camflags, 1060 u_int32_t sense_flags)) 1061 { 1062 union ccb *ccb; 1063 int error; 1064 int found; 1065 1066 error = found = 0; 1067 1068 switch(cmd){ 1069 case CAMGETPASSTHRU: 1070 ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL); 1071 xpt_setup_ccb(&ccb->ccb_h, 1072 ccb->ccb_h.path, 1073 CAM_PRIORITY_NORMAL); 1074 ccb->ccb_h.func_code = XPT_GDEVLIST; 1075 1076 /* 1077 * Basically, the point of this is that we go through 1078 * getting the list of devices, until we find a passthrough 1079 * device. In the current version of the CAM code, the 1080 * only way to determine what type of device we're dealing 1081 * with is by its name. 1082 */ 1083 while (found == 0) { 1084 ccb->cgdl.index = 0; 1085 ccb->cgdl.status = CAM_GDEVLIST_MORE_DEVS; 1086 while (ccb->cgdl.status == CAM_GDEVLIST_MORE_DEVS) { 1087 1088 /* we want the next device in the list */ 1089 xpt_action(ccb); 1090 if (strncmp(ccb->cgdl.periph_name, 1091 "pass", 4) == 0){ 1092 found = 1; 1093 break; 1094 } 1095 } 1096 if ((ccb->cgdl.status == CAM_GDEVLIST_LAST_DEVICE) && 1097 (found == 0)) { 1098 ccb->cgdl.periph_name[0] = '\0'; 1099 ccb->cgdl.unit_number = 0; 1100 break; 1101 } 1102 } 1103 1104 /* copy the result back out */ 1105 bcopy(ccb, addr, sizeof(union ccb)); 1106 1107 /* and release the ccb */ 1108 xpt_release_ccb(ccb); 1109 1110 break; 1111 default: 1112 error = ENOTTY; 1113 break; 1114 } 1115 return(error); 1116 } 1117 1118 static void 1119 cam_periph_done_panic(struct cam_periph *periph, union ccb *done_ccb) 1120 { 1121 1122 panic("%s: already done with ccb %p", __func__, done_ccb); 1123 } 1124 1125 static void 1126 cam_periph_done(struct cam_periph *periph, union ccb *done_ccb) 1127 { 1128 1129 /* Caller will release the CCB */ 1130 xpt_path_assert(done_ccb->ccb_h.path, MA_OWNED); 1131 done_ccb->ccb_h.cbfcnp = cam_periph_done_panic; 1132 wakeup(&done_ccb->ccb_h.cbfcnp); 1133 } 1134 1135 static void 1136 cam_periph_ccbwait(union ccb *ccb) 1137 { 1138 1139 if ((ccb->ccb_h.func_code & XPT_FC_QUEUED) != 0) { 1140 while (ccb->ccb_h.cbfcnp != cam_periph_done_panic) 1141 xpt_path_sleep(ccb->ccb_h.path, &ccb->ccb_h.cbfcnp, 1142 PRIBIO, "cbwait", 0); 1143 } 1144 KASSERT(ccb->ccb_h.pinfo.index == CAM_UNQUEUED_INDEX && 1145 (ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_INPROG, 1146 ("%s: proceeding with incomplete ccb: ccb=%p, func_code=%#x, " 1147 "status=%#x, index=%d", __func__, ccb, ccb->ccb_h.func_code, 1148 ccb->ccb_h.status, ccb->ccb_h.pinfo.index)); 1149 } 1150 1151 /* 1152 * Dispatch a CCB and wait for it to complete. If the CCB has set a 1153 * callback function (ccb->ccb_h.cbfcnp), it will be overwritten and lost. 1154 */ 1155 int 1156 cam_periph_runccb(union ccb *ccb, 1157 int (*error_routine)(union ccb *ccb, 1158 cam_flags camflags, 1159 u_int32_t sense_flags), 1160 cam_flags camflags, u_int32_t sense_flags, 1161 struct devstat *ds) 1162 { 1163 struct bintime *starttime; 1164 struct bintime ltime; 1165 int error; 1166 bool must_poll; 1167 uint32_t timeout = 1; 1168 1169 starttime = NULL; 1170 xpt_path_assert(ccb->ccb_h.path, MA_OWNED); 1171 KASSERT((ccb->ccb_h.flags & CAM_UNLOCKED) == 0, 1172 ("%s: ccb=%p, func_code=%#x, flags=%#x", __func__, ccb, 1173 ccb->ccb_h.func_code, ccb->ccb_h.flags)); 1174 1175 /* 1176 * If the user has supplied a stats structure, and if we understand 1177 * this particular type of ccb, record the transaction start. 1178 */ 1179 if (ds != NULL && 1180 (ccb->ccb_h.func_code == XPT_SCSI_IO || 1181 ccb->ccb_h.func_code == XPT_ATA_IO || 1182 ccb->ccb_h.func_code == XPT_NVME_IO)) { 1183 starttime = <ime; 1184 binuptime(starttime); 1185 devstat_start_transaction(ds, starttime); 1186 } 1187 1188 /* 1189 * We must poll the I/O while we're dumping. The scheduler is normally 1190 * stopped for dumping, except when we call doadump from ddb. While the 1191 * scheduler is running in this case, we still need to poll the I/O to 1192 * avoid sleeping waiting for the ccb to complete. 1193 * 1194 * A panic triggered dump stops the scheduler, any callback from the 1195 * shutdown_post_sync event will run with the scheduler stopped, but 1196 * before we're officially dumping. To avoid hanging in adashutdown 1197 * initiated commands (or other similar situations), we have to test for 1198 * either SCHEDULER_STOPPED() here as well. 1199 * 1200 * To avoid locking problems, dumping/polling callers must call 1201 * without a periph lock held. 1202 */ 1203 must_poll = dumping || SCHEDULER_STOPPED(); 1204 ccb->ccb_h.cbfcnp = cam_periph_done; 1205 1206 /* 1207 * If we're polling, then we need to ensure that we have ample resources 1208 * in the periph. cam_periph_error can reschedule the ccb by calling 1209 * xpt_action and returning ERESTART, so we have to effect the polling 1210 * in the do loop below. 1211 */ 1212 if (must_poll) { 1213 timeout = xpt_poll_setup(ccb); 1214 } 1215 1216 if (timeout == 0) { 1217 ccb->ccb_h.status = CAM_RESRC_UNAVAIL; 1218 error = EBUSY; 1219 } else { 1220 xpt_action(ccb); 1221 do { 1222 if (must_poll) { 1223 xpt_pollwait(ccb, timeout); 1224 timeout = ccb->ccb_h.timeout * 10; 1225 } else { 1226 cam_periph_ccbwait(ccb); 1227 } 1228 if ((ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) 1229 error = 0; 1230 else if (error_routine != NULL) { 1231 ccb->ccb_h.cbfcnp = cam_periph_done; 1232 error = (*error_routine)(ccb, camflags, sense_flags); 1233 } else 1234 error = 0; 1235 } while (error == ERESTART); 1236 } 1237 1238 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 1239 cam_release_devq(ccb->ccb_h.path, 1240 /* relsim_flags */0, 1241 /* openings */0, 1242 /* timeout */0, 1243 /* getcount_only */ FALSE); 1244 ccb->ccb_h.status &= ~CAM_DEV_QFRZN; 1245 } 1246 1247 if (ds != NULL) { 1248 uint32_t bytes; 1249 devstat_tag_type tag; 1250 bool valid = true; 1251 1252 if (ccb->ccb_h.func_code == XPT_SCSI_IO) { 1253 bytes = ccb->csio.dxfer_len - ccb->csio.resid; 1254 tag = (devstat_tag_type)(ccb->csio.tag_action & 0x3); 1255 } else if (ccb->ccb_h.func_code == XPT_ATA_IO) { 1256 bytes = ccb->ataio.dxfer_len - ccb->ataio.resid; 1257 tag = (devstat_tag_type)0; 1258 } else if (ccb->ccb_h.func_code == XPT_NVME_IO) { 1259 bytes = ccb->nvmeio.dxfer_len; /* NB: resid no possible */ 1260 tag = (devstat_tag_type)0; 1261 } else { 1262 valid = false; 1263 } 1264 if (valid) 1265 devstat_end_transaction(ds, bytes, tag, 1266 ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_NONE) ? 1267 DEVSTAT_NO_DATA : (ccb->ccb_h.flags & CAM_DIR_OUT) ? 1268 DEVSTAT_WRITE : DEVSTAT_READ, NULL, starttime); 1269 } 1270 1271 return(error); 1272 } 1273 1274 void 1275 cam_freeze_devq(struct cam_path *path) 1276 { 1277 struct ccb_hdr ccb_h; 1278 1279 CAM_DEBUG(path, CAM_DEBUG_TRACE, ("cam_freeze_devq\n")); 1280 xpt_setup_ccb(&ccb_h, path, /*priority*/1); 1281 ccb_h.func_code = XPT_NOOP; 1282 ccb_h.flags = CAM_DEV_QFREEZE; 1283 xpt_action((union ccb *)&ccb_h); 1284 } 1285 1286 u_int32_t 1287 cam_release_devq(struct cam_path *path, u_int32_t relsim_flags, 1288 u_int32_t openings, u_int32_t arg, 1289 int getcount_only) 1290 { 1291 struct ccb_relsim crs; 1292 1293 CAM_DEBUG(path, CAM_DEBUG_TRACE, ("cam_release_devq(%u, %u, %u, %d)\n", 1294 relsim_flags, openings, arg, getcount_only)); 1295 xpt_setup_ccb(&crs.ccb_h, path, CAM_PRIORITY_NORMAL); 1296 crs.ccb_h.func_code = XPT_REL_SIMQ; 1297 crs.ccb_h.flags = getcount_only ? CAM_DEV_QFREEZE : 0; 1298 crs.release_flags = relsim_flags; 1299 crs.openings = openings; 1300 crs.release_timeout = arg; 1301 xpt_action((union ccb *)&crs); 1302 return (crs.qfrozen_cnt); 1303 } 1304 1305 #define saved_ccb_ptr ppriv_ptr0 1306 static void 1307 camperiphdone(struct cam_periph *periph, union ccb *done_ccb) 1308 { 1309 union ccb *saved_ccb; 1310 cam_status status; 1311 struct scsi_start_stop_unit *scsi_cmd; 1312 int error_code, sense_key, asc, ascq; 1313 1314 scsi_cmd = (struct scsi_start_stop_unit *) 1315 &done_ccb->csio.cdb_io.cdb_bytes; 1316 status = done_ccb->ccb_h.status; 1317 1318 if ((status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1319 if (scsi_extract_sense_ccb(done_ccb, 1320 &error_code, &sense_key, &asc, &ascq)) { 1321 /* 1322 * If the error is "invalid field in CDB", 1323 * and the load/eject flag is set, turn the 1324 * flag off and try again. This is just in 1325 * case the drive in question barfs on the 1326 * load eject flag. The CAM code should set 1327 * the load/eject flag by default for 1328 * removable media. 1329 */ 1330 if ((scsi_cmd->opcode == START_STOP_UNIT) && 1331 ((scsi_cmd->how & SSS_LOEJ) != 0) && 1332 (asc == 0x24) && (ascq == 0x00)) { 1333 scsi_cmd->how &= ~SSS_LOEJ; 1334 if (status & CAM_DEV_QFRZN) { 1335 cam_release_devq(done_ccb->ccb_h.path, 1336 0, 0, 0, 0); 1337 done_ccb->ccb_h.status &= 1338 ~CAM_DEV_QFRZN; 1339 } 1340 xpt_action(done_ccb); 1341 goto out; 1342 } 1343 } 1344 if (cam_periph_error(done_ccb, 1345 0, SF_RETRY_UA | SF_NO_PRINT) == ERESTART) 1346 goto out; 1347 if (done_ccb->ccb_h.status & CAM_DEV_QFRZN) { 1348 cam_release_devq(done_ccb->ccb_h.path, 0, 0, 0, 0); 1349 done_ccb->ccb_h.status &= ~CAM_DEV_QFRZN; 1350 } 1351 } else { 1352 /* 1353 * If we have successfully taken a device from the not 1354 * ready to ready state, re-scan the device and re-get 1355 * the inquiry information. Many devices (mostly disks) 1356 * don't properly report their inquiry information unless 1357 * they are spun up. 1358 */ 1359 if (scsi_cmd->opcode == START_STOP_UNIT) 1360 xpt_async(AC_INQ_CHANGED, done_ccb->ccb_h.path, NULL); 1361 } 1362 1363 /* 1364 * Perform the final retry with the original CCB so that final 1365 * error processing is performed by the owner of the CCB. 1366 */ 1367 saved_ccb = (union ccb *)done_ccb->ccb_h.saved_ccb_ptr; 1368 bcopy(saved_ccb, done_ccb, sizeof(*done_ccb)); 1369 xpt_free_ccb(saved_ccb); 1370 if (done_ccb->ccb_h.cbfcnp != camperiphdone) 1371 periph->flags &= ~CAM_PERIPH_RECOVERY_INPROG; 1372 xpt_action(done_ccb); 1373 1374 out: 1375 /* Drop freeze taken due to CAM_DEV_QFREEZE flag set. */ 1376 cam_release_devq(done_ccb->ccb_h.path, 0, 0, 0, 0); 1377 } 1378 1379 /* 1380 * Generic Async Event handler. Peripheral drivers usually 1381 * filter out the events that require personal attention, 1382 * and leave the rest to this function. 1383 */ 1384 void 1385 cam_periph_async(struct cam_periph *periph, u_int32_t code, 1386 struct cam_path *path, void *arg) 1387 { 1388 switch (code) { 1389 case AC_LOST_DEVICE: 1390 cam_periph_invalidate(periph); 1391 break; 1392 default: 1393 break; 1394 } 1395 } 1396 1397 void 1398 cam_periph_bus_settle(struct cam_periph *periph, u_int bus_settle) 1399 { 1400 struct ccb_getdevstats cgds; 1401 1402 xpt_setup_ccb(&cgds.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 1403 cgds.ccb_h.func_code = XPT_GDEV_STATS; 1404 xpt_action((union ccb *)&cgds); 1405 cam_periph_freeze_after_event(periph, &cgds.last_reset, bus_settle); 1406 } 1407 1408 void 1409 cam_periph_freeze_after_event(struct cam_periph *periph, 1410 struct timeval* event_time, u_int duration_ms) 1411 { 1412 struct timeval delta; 1413 struct timeval duration_tv; 1414 1415 if (!timevalisset(event_time)) 1416 return; 1417 1418 microtime(&delta); 1419 timevalsub(&delta, event_time); 1420 duration_tv.tv_sec = duration_ms / 1000; 1421 duration_tv.tv_usec = (duration_ms % 1000) * 1000; 1422 if (timevalcmp(&delta, &duration_tv, <)) { 1423 timevalsub(&duration_tv, &delta); 1424 1425 duration_ms = duration_tv.tv_sec * 1000; 1426 duration_ms += duration_tv.tv_usec / 1000; 1427 cam_freeze_devq(periph->path); 1428 cam_release_devq(periph->path, 1429 RELSIM_RELEASE_AFTER_TIMEOUT, 1430 /*reduction*/0, 1431 /*timeout*/duration_ms, 1432 /*getcount_only*/0); 1433 } 1434 1435 } 1436 1437 static int 1438 camperiphscsistatuserror(union ccb *ccb, union ccb **orig_ccb, 1439 cam_flags camflags, u_int32_t sense_flags, 1440 int *openings, u_int32_t *relsim_flags, 1441 u_int32_t *timeout, u_int32_t *action, const char **action_string) 1442 { 1443 int error; 1444 1445 switch (ccb->csio.scsi_status) { 1446 case SCSI_STATUS_OK: 1447 case SCSI_STATUS_COND_MET: 1448 case SCSI_STATUS_INTERMED: 1449 case SCSI_STATUS_INTERMED_COND_MET: 1450 error = 0; 1451 break; 1452 case SCSI_STATUS_CMD_TERMINATED: 1453 case SCSI_STATUS_CHECK_COND: 1454 error = camperiphscsisenseerror(ccb, orig_ccb, 1455 camflags, 1456 sense_flags, 1457 openings, 1458 relsim_flags, 1459 timeout, 1460 action, 1461 action_string); 1462 break; 1463 case SCSI_STATUS_QUEUE_FULL: 1464 { 1465 /* no decrement */ 1466 struct ccb_getdevstats cgds; 1467 1468 /* 1469 * First off, find out what the current 1470 * transaction counts are. 1471 */ 1472 xpt_setup_ccb(&cgds.ccb_h, 1473 ccb->ccb_h.path, 1474 CAM_PRIORITY_NORMAL); 1475 cgds.ccb_h.func_code = XPT_GDEV_STATS; 1476 xpt_action((union ccb *)&cgds); 1477 1478 /* 1479 * If we were the only transaction active, treat 1480 * the QUEUE FULL as if it were a BUSY condition. 1481 */ 1482 if (cgds.dev_active != 0) { 1483 int total_openings; 1484 1485 /* 1486 * Reduce the number of openings to 1487 * be 1 less than the amount it took 1488 * to get a queue full bounded by the 1489 * minimum allowed tag count for this 1490 * device. 1491 */ 1492 total_openings = cgds.dev_active + cgds.dev_openings; 1493 *openings = cgds.dev_active; 1494 if (*openings < cgds.mintags) 1495 *openings = cgds.mintags; 1496 if (*openings < total_openings) 1497 *relsim_flags = RELSIM_ADJUST_OPENINGS; 1498 else { 1499 /* 1500 * Some devices report queue full for 1501 * temporary resource shortages. For 1502 * this reason, we allow a minimum 1503 * tag count to be entered via a 1504 * quirk entry to prevent the queue 1505 * count on these devices from falling 1506 * to a pessimisticly low value. We 1507 * still wait for the next successful 1508 * completion, however, before queueing 1509 * more transactions to the device. 1510 */ 1511 *relsim_flags = RELSIM_RELEASE_AFTER_CMDCMPLT; 1512 } 1513 *timeout = 0; 1514 error = ERESTART; 1515 *action &= ~SSQ_PRINT_SENSE; 1516 break; 1517 } 1518 /* FALLTHROUGH */ 1519 } 1520 case SCSI_STATUS_BUSY: 1521 /* 1522 * Restart the queue after either another 1523 * command completes or a 1 second timeout. 1524 */ 1525 if ((sense_flags & SF_RETRY_BUSY) != 0 || 1526 (ccb->ccb_h.retry_count--) > 0) { 1527 error = ERESTART; 1528 *relsim_flags = RELSIM_RELEASE_AFTER_TIMEOUT 1529 | RELSIM_RELEASE_AFTER_CMDCMPLT; 1530 *timeout = 1000; 1531 } else { 1532 error = EIO; 1533 } 1534 break; 1535 case SCSI_STATUS_RESERV_CONFLICT: 1536 default: 1537 error = EIO; 1538 break; 1539 } 1540 return (error); 1541 } 1542 1543 static int 1544 camperiphscsisenseerror(union ccb *ccb, union ccb **orig, 1545 cam_flags camflags, u_int32_t sense_flags, 1546 int *openings, u_int32_t *relsim_flags, 1547 u_int32_t *timeout, u_int32_t *action, const char **action_string) 1548 { 1549 struct cam_periph *periph; 1550 union ccb *orig_ccb = ccb; 1551 int error, recoveryccb; 1552 1553 #if defined(BUF_TRACKING) || defined(FULL_BUF_TRACKING) 1554 if (ccb->ccb_h.func_code == XPT_SCSI_IO && ccb->csio.bio != NULL) 1555 biotrack(ccb->csio.bio, __func__); 1556 #endif 1557 1558 periph = xpt_path_periph(ccb->ccb_h.path); 1559 recoveryccb = (ccb->ccb_h.cbfcnp == camperiphdone); 1560 if ((periph->flags & CAM_PERIPH_RECOVERY_INPROG) && !recoveryccb) { 1561 /* 1562 * If error recovery is already in progress, don't attempt 1563 * to process this error, but requeue it unconditionally 1564 * and attempt to process it once error recovery has 1565 * completed. This failed command is probably related to 1566 * the error that caused the currently active error recovery 1567 * action so our current recovery efforts should also 1568 * address this command. Be aware that the error recovery 1569 * code assumes that only one recovery action is in progress 1570 * on a particular peripheral instance at any given time 1571 * (e.g. only one saved CCB for error recovery) so it is 1572 * imperitive that we don't violate this assumption. 1573 */ 1574 error = ERESTART; 1575 *action &= ~SSQ_PRINT_SENSE; 1576 } else { 1577 scsi_sense_action err_action; 1578 struct ccb_getdev cgd; 1579 1580 /* 1581 * Grab the inquiry data for this device. 1582 */ 1583 xpt_setup_ccb(&cgd.ccb_h, ccb->ccb_h.path, CAM_PRIORITY_NORMAL); 1584 cgd.ccb_h.func_code = XPT_GDEV_TYPE; 1585 xpt_action((union ccb *)&cgd); 1586 1587 err_action = scsi_error_action(&ccb->csio, &cgd.inq_data, 1588 sense_flags); 1589 error = err_action & SS_ERRMASK; 1590 1591 /* 1592 * Do not autostart sequential access devices 1593 * to avoid unexpected tape loading. 1594 */ 1595 if ((err_action & SS_MASK) == SS_START && 1596 SID_TYPE(&cgd.inq_data) == T_SEQUENTIAL) { 1597 *action_string = "Will not autostart a " 1598 "sequential access device"; 1599 goto sense_error_done; 1600 } 1601 1602 /* 1603 * Avoid recovery recursion if recovery action is the same. 1604 */ 1605 if ((err_action & SS_MASK) >= SS_START && recoveryccb) { 1606 if (((err_action & SS_MASK) == SS_START && 1607 ccb->csio.cdb_io.cdb_bytes[0] == START_STOP_UNIT) || 1608 ((err_action & SS_MASK) == SS_TUR && 1609 (ccb->csio.cdb_io.cdb_bytes[0] == TEST_UNIT_READY))) { 1610 err_action = SS_RETRY|SSQ_DECREMENT_COUNT|EIO; 1611 *relsim_flags = RELSIM_RELEASE_AFTER_TIMEOUT; 1612 *timeout = 500; 1613 } 1614 } 1615 1616 /* 1617 * If the recovery action will consume a retry, 1618 * make sure we actually have retries available. 1619 */ 1620 if ((err_action & SSQ_DECREMENT_COUNT) != 0) { 1621 if (ccb->ccb_h.retry_count > 0 && 1622 (periph->flags & CAM_PERIPH_INVALID) == 0) 1623 ccb->ccb_h.retry_count--; 1624 else { 1625 *action_string = "Retries exhausted"; 1626 goto sense_error_done; 1627 } 1628 } 1629 1630 if ((err_action & SS_MASK) >= SS_START) { 1631 /* 1632 * Do common portions of commands that 1633 * use recovery CCBs. 1634 */ 1635 orig_ccb = xpt_alloc_ccb_nowait(); 1636 if (orig_ccb == NULL) { 1637 *action_string = "Can't allocate recovery CCB"; 1638 goto sense_error_done; 1639 } 1640 /* 1641 * Clear freeze flag for original request here, as 1642 * this freeze will be dropped as part of ERESTART. 1643 */ 1644 ccb->ccb_h.status &= ~CAM_DEV_QFRZN; 1645 bcopy(ccb, orig_ccb, sizeof(*orig_ccb)); 1646 } 1647 1648 switch (err_action & SS_MASK) { 1649 case SS_NOP: 1650 *action_string = "No recovery action needed"; 1651 error = 0; 1652 break; 1653 case SS_RETRY: 1654 *action_string = "Retrying command (per sense data)"; 1655 error = ERESTART; 1656 break; 1657 case SS_FAIL: 1658 *action_string = "Unretryable error"; 1659 break; 1660 case SS_START: 1661 { 1662 int le; 1663 1664 /* 1665 * Send a start unit command to the device, and 1666 * then retry the command. 1667 */ 1668 *action_string = "Attempting to start unit"; 1669 periph->flags |= CAM_PERIPH_RECOVERY_INPROG; 1670 1671 /* 1672 * Check for removable media and set 1673 * load/eject flag appropriately. 1674 */ 1675 if (SID_IS_REMOVABLE(&cgd.inq_data)) 1676 le = TRUE; 1677 else 1678 le = FALSE; 1679 1680 scsi_start_stop(&ccb->csio, 1681 /*retries*/1, 1682 camperiphdone, 1683 MSG_SIMPLE_Q_TAG, 1684 /*start*/TRUE, 1685 /*load/eject*/le, 1686 /*immediate*/FALSE, 1687 SSD_FULL_SIZE, 1688 /*timeout*/50000); 1689 break; 1690 } 1691 case SS_TUR: 1692 { 1693 /* 1694 * Send a Test Unit Ready to the device. 1695 * If the 'many' flag is set, we send 120 1696 * test unit ready commands, one every half 1697 * second. Otherwise, we just send one TUR. 1698 * We only want to do this if the retry 1699 * count has not been exhausted. 1700 */ 1701 int retries; 1702 1703 if ((err_action & SSQ_MANY) != 0) { 1704 *action_string = "Polling device for readiness"; 1705 retries = 120; 1706 } else { 1707 *action_string = "Testing device for readiness"; 1708 retries = 1; 1709 } 1710 periph->flags |= CAM_PERIPH_RECOVERY_INPROG; 1711 scsi_test_unit_ready(&ccb->csio, 1712 retries, 1713 camperiphdone, 1714 MSG_SIMPLE_Q_TAG, 1715 SSD_FULL_SIZE, 1716 /*timeout*/5000); 1717 1718 /* 1719 * Accomplish our 500ms delay by deferring 1720 * the release of our device queue appropriately. 1721 */ 1722 *relsim_flags = RELSIM_RELEASE_AFTER_TIMEOUT; 1723 *timeout = 500; 1724 break; 1725 } 1726 default: 1727 panic("Unhandled error action %x", err_action); 1728 } 1729 1730 if ((err_action & SS_MASK) >= SS_START) { 1731 /* 1732 * Drop the priority, so that the recovery 1733 * CCB is the first to execute. Freeze the queue 1734 * after this command is sent so that we can 1735 * restore the old csio and have it queued in 1736 * the proper order before we release normal 1737 * transactions to the device. 1738 */ 1739 ccb->ccb_h.pinfo.priority--; 1740 ccb->ccb_h.flags |= CAM_DEV_QFREEZE; 1741 ccb->ccb_h.saved_ccb_ptr = orig_ccb; 1742 error = ERESTART; 1743 *orig = orig_ccb; 1744 } 1745 1746 sense_error_done: 1747 *action = err_action; 1748 } 1749 return (error); 1750 } 1751 1752 /* 1753 * Generic error handler. Peripheral drivers usually filter 1754 * out the errors that they handle in a unique manner, then 1755 * call this function. 1756 */ 1757 int 1758 cam_periph_error(union ccb *ccb, cam_flags camflags, 1759 u_int32_t sense_flags) 1760 { 1761 struct cam_path *newpath; 1762 union ccb *orig_ccb, *scan_ccb; 1763 struct cam_periph *periph; 1764 const char *action_string; 1765 cam_status status; 1766 int frozen, error, openings, devctl_err; 1767 u_int32_t action, relsim_flags, timeout; 1768 1769 action = SSQ_PRINT_SENSE; 1770 periph = xpt_path_periph(ccb->ccb_h.path); 1771 action_string = NULL; 1772 status = ccb->ccb_h.status; 1773 frozen = (status & CAM_DEV_QFRZN) != 0; 1774 status &= CAM_STATUS_MASK; 1775 devctl_err = openings = relsim_flags = timeout = 0; 1776 orig_ccb = ccb; 1777 1778 /* Filter the errors that should be reported via devctl */ 1779 switch (ccb->ccb_h.status & CAM_STATUS_MASK) { 1780 case CAM_CMD_TIMEOUT: 1781 case CAM_REQ_ABORTED: 1782 case CAM_REQ_CMP_ERR: 1783 case CAM_REQ_TERMIO: 1784 case CAM_UNREC_HBA_ERROR: 1785 case CAM_DATA_RUN_ERR: 1786 case CAM_SCSI_STATUS_ERROR: 1787 case CAM_ATA_STATUS_ERROR: 1788 case CAM_SMP_STATUS_ERROR: 1789 devctl_err++; 1790 break; 1791 default: 1792 break; 1793 } 1794 1795 switch (status) { 1796 case CAM_REQ_CMP: 1797 error = 0; 1798 action &= ~SSQ_PRINT_SENSE; 1799 break; 1800 case CAM_SCSI_STATUS_ERROR: 1801 error = camperiphscsistatuserror(ccb, &orig_ccb, 1802 camflags, sense_flags, &openings, &relsim_flags, 1803 &timeout, &action, &action_string); 1804 break; 1805 case CAM_AUTOSENSE_FAIL: 1806 error = EIO; /* we have to kill the command */ 1807 break; 1808 case CAM_UA_ABORT: 1809 case CAM_UA_TERMIO: 1810 case CAM_MSG_REJECT_REC: 1811 /* XXX Don't know that these are correct */ 1812 error = EIO; 1813 break; 1814 case CAM_SEL_TIMEOUT: 1815 if ((camflags & CAM_RETRY_SELTO) != 0) { 1816 if (ccb->ccb_h.retry_count > 0 && 1817 (periph->flags & CAM_PERIPH_INVALID) == 0) { 1818 ccb->ccb_h.retry_count--; 1819 error = ERESTART; 1820 1821 /* 1822 * Wait a bit to give the device 1823 * time to recover before we try again. 1824 */ 1825 relsim_flags = RELSIM_RELEASE_AFTER_TIMEOUT; 1826 timeout = periph_selto_delay; 1827 break; 1828 } 1829 action_string = "Retries exhausted"; 1830 } 1831 /* FALLTHROUGH */ 1832 case CAM_DEV_NOT_THERE: 1833 error = ENXIO; 1834 action = SSQ_LOST; 1835 break; 1836 case CAM_REQ_INVALID: 1837 case CAM_PATH_INVALID: 1838 case CAM_NO_HBA: 1839 case CAM_PROVIDE_FAIL: 1840 case CAM_REQ_TOO_BIG: 1841 case CAM_LUN_INVALID: 1842 case CAM_TID_INVALID: 1843 case CAM_FUNC_NOTAVAIL: 1844 error = EINVAL; 1845 break; 1846 case CAM_SCSI_BUS_RESET: 1847 case CAM_BDR_SENT: 1848 /* 1849 * Commands that repeatedly timeout and cause these 1850 * kinds of error recovery actions, should return 1851 * CAM_CMD_TIMEOUT, which allows us to safely assume 1852 * that this command was an innocent bystander to 1853 * these events and should be unconditionally 1854 * retried. 1855 */ 1856 case CAM_REQUEUE_REQ: 1857 /* Unconditional requeue if device is still there */ 1858 if (periph->flags & CAM_PERIPH_INVALID) { 1859 action_string = "Periph was invalidated"; 1860 error = EIO; 1861 } else if (sense_flags & SF_NO_RETRY) { 1862 error = EIO; 1863 action_string = "Retry was blocked"; 1864 } else { 1865 error = ERESTART; 1866 action &= ~SSQ_PRINT_SENSE; 1867 } 1868 break; 1869 case CAM_RESRC_UNAVAIL: 1870 /* Wait a bit for the resource shortage to abate. */ 1871 timeout = periph_noresrc_delay; 1872 /* FALLTHROUGH */ 1873 case CAM_BUSY: 1874 if (timeout == 0) { 1875 /* Wait a bit for the busy condition to abate. */ 1876 timeout = periph_busy_delay; 1877 } 1878 relsim_flags = RELSIM_RELEASE_AFTER_TIMEOUT; 1879 /* FALLTHROUGH */ 1880 case CAM_ATA_STATUS_ERROR: 1881 case CAM_REQ_CMP_ERR: 1882 case CAM_CMD_TIMEOUT: 1883 case CAM_UNEXP_BUSFREE: 1884 case CAM_UNCOR_PARITY: 1885 case CAM_DATA_RUN_ERR: 1886 default: 1887 if (periph->flags & CAM_PERIPH_INVALID) { 1888 error = EIO; 1889 action_string = "Periph was invalidated"; 1890 } else if (ccb->ccb_h.retry_count == 0) { 1891 error = EIO; 1892 action_string = "Retries exhausted"; 1893 } else if (sense_flags & SF_NO_RETRY) { 1894 error = EIO; 1895 action_string = "Retry was blocked"; 1896 } else { 1897 ccb->ccb_h.retry_count--; 1898 error = ERESTART; 1899 } 1900 break; 1901 } 1902 1903 if ((sense_flags & SF_PRINT_ALWAYS) || 1904 CAM_DEBUGGED(ccb->ccb_h.path, CAM_DEBUG_INFO)) 1905 action |= SSQ_PRINT_SENSE; 1906 else if (sense_flags & SF_NO_PRINT) 1907 action &= ~SSQ_PRINT_SENSE; 1908 if ((action & SSQ_PRINT_SENSE) != 0) 1909 cam_error_print(orig_ccb, CAM_ESF_ALL, CAM_EPF_ALL); 1910 if (error != 0 && (action & SSQ_PRINT_SENSE) != 0) { 1911 if (error != ERESTART) { 1912 if (action_string == NULL) 1913 action_string = "Unretryable error"; 1914 xpt_print(ccb->ccb_h.path, "Error %d, %s\n", 1915 error, action_string); 1916 } else if (action_string != NULL) 1917 xpt_print(ccb->ccb_h.path, "%s\n", action_string); 1918 else { 1919 xpt_print(ccb->ccb_h.path, 1920 "Retrying command, %d more tries remain\n", 1921 ccb->ccb_h.retry_count); 1922 } 1923 } 1924 1925 if (devctl_err && (error != 0 || (action & SSQ_PRINT_SENSE) != 0)) 1926 cam_periph_devctl_notify(orig_ccb); 1927 1928 if ((action & SSQ_LOST) != 0) { 1929 lun_id_t lun_id; 1930 1931 /* 1932 * For a selection timeout, we consider all of the LUNs on 1933 * the target to be gone. If the status is CAM_DEV_NOT_THERE, 1934 * then we only get rid of the device(s) specified by the 1935 * path in the original CCB. 1936 */ 1937 if (status == CAM_SEL_TIMEOUT) 1938 lun_id = CAM_LUN_WILDCARD; 1939 else 1940 lun_id = xpt_path_lun_id(ccb->ccb_h.path); 1941 1942 /* Should we do more if we can't create the path?? */ 1943 if (xpt_create_path(&newpath, periph, 1944 xpt_path_path_id(ccb->ccb_h.path), 1945 xpt_path_target_id(ccb->ccb_h.path), 1946 lun_id) == CAM_REQ_CMP) { 1947 1948 /* 1949 * Let peripheral drivers know that this 1950 * device has gone away. 1951 */ 1952 xpt_async(AC_LOST_DEVICE, newpath, NULL); 1953 xpt_free_path(newpath); 1954 } 1955 } 1956 1957 /* Broadcast UNIT ATTENTIONs to all periphs. */ 1958 if ((action & SSQ_UA) != 0) 1959 xpt_async(AC_UNIT_ATTENTION, orig_ccb->ccb_h.path, orig_ccb); 1960 1961 /* Rescan target on "Reported LUNs data has changed" */ 1962 if ((action & SSQ_RESCAN) != 0) { 1963 if (xpt_create_path(&newpath, NULL, 1964 xpt_path_path_id(ccb->ccb_h.path), 1965 xpt_path_target_id(ccb->ccb_h.path), 1966 CAM_LUN_WILDCARD) == CAM_REQ_CMP) { 1967 1968 scan_ccb = xpt_alloc_ccb_nowait(); 1969 if (scan_ccb != NULL) { 1970 scan_ccb->ccb_h.path = newpath; 1971 scan_ccb->ccb_h.func_code = XPT_SCAN_TGT; 1972 scan_ccb->crcn.flags = 0; 1973 xpt_rescan(scan_ccb); 1974 } else { 1975 xpt_print(newpath, 1976 "Can't allocate CCB to rescan target\n"); 1977 xpt_free_path(newpath); 1978 } 1979 } 1980 } 1981 1982 /* Attempt a retry */ 1983 if (error == ERESTART || error == 0) { 1984 if (frozen != 0) 1985 ccb->ccb_h.status &= ~CAM_DEV_QFRZN; 1986 if (error == ERESTART) 1987 xpt_action(ccb); 1988 if (frozen != 0) 1989 cam_release_devq(ccb->ccb_h.path, 1990 relsim_flags, 1991 openings, 1992 timeout, 1993 /*getcount_only*/0); 1994 } 1995 1996 return (error); 1997 } 1998 1999 #define CAM_PERIPH_DEVD_MSG_SIZE 256 2000 2001 static void 2002 cam_periph_devctl_notify(union ccb *ccb) 2003 { 2004 struct cam_periph *periph; 2005 struct ccb_getdev *cgd; 2006 struct sbuf sb; 2007 int serr, sk, asc, ascq; 2008 char *sbmsg, *type; 2009 2010 sbmsg = malloc(CAM_PERIPH_DEVD_MSG_SIZE, M_CAMPERIPH, M_NOWAIT); 2011 if (sbmsg == NULL) 2012 return; 2013 2014 sbuf_new(&sb, sbmsg, CAM_PERIPH_DEVD_MSG_SIZE, SBUF_FIXEDLEN); 2015 2016 periph = xpt_path_periph(ccb->ccb_h.path); 2017 sbuf_printf(&sb, "device=%s%d ", periph->periph_name, 2018 periph->unit_number); 2019 2020 sbuf_printf(&sb, "serial=\""); 2021 if ((cgd = (struct ccb_getdev *)xpt_alloc_ccb_nowait()) != NULL) { 2022 xpt_setup_ccb(&cgd->ccb_h, ccb->ccb_h.path, 2023 CAM_PRIORITY_NORMAL); 2024 cgd->ccb_h.func_code = XPT_GDEV_TYPE; 2025 xpt_action((union ccb *)cgd); 2026 2027 if (cgd->ccb_h.status == CAM_REQ_CMP) 2028 sbuf_bcat(&sb, cgd->serial_num, cgd->serial_num_len); 2029 xpt_free_ccb((union ccb *)cgd); 2030 } 2031 sbuf_printf(&sb, "\" "); 2032 sbuf_printf(&sb, "cam_status=\"0x%x\" ", ccb->ccb_h.status); 2033 2034 switch (ccb->ccb_h.status & CAM_STATUS_MASK) { 2035 case CAM_CMD_TIMEOUT: 2036 sbuf_printf(&sb, "timeout=%d ", ccb->ccb_h.timeout); 2037 type = "timeout"; 2038 break; 2039 case CAM_SCSI_STATUS_ERROR: 2040 sbuf_printf(&sb, "scsi_status=%d ", ccb->csio.scsi_status); 2041 if (scsi_extract_sense_ccb(ccb, &serr, &sk, &asc, &ascq)) 2042 sbuf_printf(&sb, "scsi_sense=\"%02x %02x %02x %02x\" ", 2043 serr, sk, asc, ascq); 2044 type = "error"; 2045 break; 2046 case CAM_ATA_STATUS_ERROR: 2047 sbuf_printf(&sb, "RES=\""); 2048 ata_res_sbuf(&ccb->ataio.res, &sb); 2049 sbuf_printf(&sb, "\" "); 2050 type = "error"; 2051 break; 2052 default: 2053 type = "error"; 2054 break; 2055 } 2056 2057 if (ccb->ccb_h.func_code == XPT_SCSI_IO) { 2058 sbuf_printf(&sb, "CDB=\""); 2059 scsi_cdb_sbuf(scsiio_cdb_ptr(&ccb->csio), &sb); 2060 sbuf_printf(&sb, "\" "); 2061 } else if (ccb->ccb_h.func_code == XPT_ATA_IO) { 2062 sbuf_printf(&sb, "ACB=\""); 2063 ata_cmd_sbuf(&ccb->ataio.cmd, &sb); 2064 sbuf_printf(&sb, "\" "); 2065 } 2066 2067 if (sbuf_finish(&sb) == 0) 2068 devctl_notify("CAM", "periph", type, sbuf_data(&sb)); 2069 sbuf_delete(&sb); 2070 free(sbmsg, M_CAMPERIPH); 2071 } 2072 2073 /* 2074 * Sysctl to force an invalidation of the drive right now. Can be 2075 * called with CTLFLAG_MPSAFE since we take periph lock. 2076 */ 2077 int 2078 cam_periph_invalidate_sysctl(SYSCTL_HANDLER_ARGS) 2079 { 2080 struct cam_periph *periph; 2081 int error, value; 2082 2083 periph = arg1; 2084 value = 0; 2085 error = sysctl_handle_int(oidp, &value, 0, req); 2086 if (error != 0 || req->newptr == NULL || value != 1) 2087 return (error); 2088 2089 cam_periph_lock(periph); 2090 cam_periph_invalidate(periph); 2091 cam_periph_unlock(periph); 2092 2093 return (0); 2094 } 2095