1 /*- 2 * Copyright (c) 2008, 2009 Silicon Graphics International Corp. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions, and the following disclaimer, 10 * without modification. 11 * 2. Redistributions in binary form must reproduce at minimum a disclaimer 12 * substantially similar to the "NO WARRANTY" disclaimer below 13 * ("Disclaimer") and any redistribution must be conditioned upon 14 * including a substantially similar Disclaimer requirement for further 15 * binary redistribution. 16 * 17 * NO WARRANTY 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 26 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 27 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * POSSIBILITY OF SUCH DAMAGES. 29 * 30 * $Id: //depot/users/kenm/FreeBSD-test2/sys/cam/ctl/scsi_ctl.c#4 $ 31 */ 32 /* 33 * Peripheral driver interface between CAM and CTL (CAM Target Layer). 34 * 35 * Author: Ken Merry <ken@FreeBSD.org> 36 */ 37 38 #include <sys/cdefs.h> 39 __FBSDID("$FreeBSD$"); 40 41 #include <sys/param.h> 42 #include <sys/queue.h> 43 #include <sys/systm.h> 44 #include <sys/kernel.h> 45 #include <sys/lock.h> 46 #include <sys/mutex.h> 47 #include <sys/condvar.h> 48 #include <sys/malloc.h> 49 #include <sys/bus.h> 50 #include <sys/endian.h> 51 #include <sys/sbuf.h> 52 #include <sys/sysctl.h> 53 #include <sys/types.h> 54 #include <sys/systm.h> 55 #include <machine/bus.h> 56 57 #include <cam/cam.h> 58 #include <cam/cam_ccb.h> 59 #include <cam/cam_periph.h> 60 #include <cam/cam_queue.h> 61 #include <cam/cam_xpt_periph.h> 62 #include <cam/cam_debug.h> 63 #include <cam/cam_sim.h> 64 #include <cam/cam_xpt.h> 65 66 #include <cam/scsi/scsi_all.h> 67 #include <cam/scsi/scsi_message.h> 68 69 #include <cam/ctl/ctl_io.h> 70 #include <cam/ctl/ctl.h> 71 #include <cam/ctl/ctl_frontend.h> 72 #include <cam/ctl/ctl_util.h> 73 #include <cam/ctl/ctl_error.h> 74 75 struct ctlfe_softc { 76 struct ctl_port port; 77 path_id_t path_id; 78 target_id_t target_id; 79 u_int maxio; 80 struct cam_sim *sim; 81 char port_name[DEV_IDLEN]; 82 struct mtx lun_softc_mtx; 83 STAILQ_HEAD(, ctlfe_lun_softc) lun_softc_list; 84 STAILQ_ENTRY(ctlfe_softc) links; 85 }; 86 87 STAILQ_HEAD(, ctlfe_softc) ctlfe_softc_list; 88 struct mtx ctlfe_list_mtx; 89 static char ctlfe_mtx_desc[] = "ctlfelist"; 90 #ifdef CTLFE_INIT_ENABLE 91 static int ctlfe_max_targets = 1; 92 static int ctlfe_num_targets = 0; 93 #endif 94 95 typedef enum { 96 CTLFE_LUN_NONE = 0x00, 97 CTLFE_LUN_WILDCARD = 0x01 98 } ctlfe_lun_flags; 99 100 struct ctlfe_lun_softc { 101 struct ctlfe_softc *parent_softc; 102 struct cam_periph *periph; 103 ctlfe_lun_flags flags; 104 uint64_t ccbs_alloced; 105 uint64_t ccbs_freed; 106 uint64_t ctios_sent; 107 uint64_t ctios_returned; 108 uint64_t atios_alloced; 109 uint64_t atios_freed; 110 uint64_t inots_alloced; 111 uint64_t inots_freed; 112 /* bus_dma_tag_t dma_tag; */ 113 TAILQ_HEAD(, ccb_hdr) work_queue; 114 STAILQ_ENTRY(ctlfe_lun_softc) links; 115 }; 116 117 typedef enum { 118 CTLFE_CMD_NONE = 0x00, 119 CTLFE_CMD_PIECEWISE = 0x01 120 } ctlfe_cmd_flags; 121 122 struct ctlfe_cmd_info { 123 int cur_transfer_index; 124 size_t cur_transfer_off; 125 ctlfe_cmd_flags flags; 126 /* 127 * XXX KDM struct bus_dma_segment is 8 bytes on i386, and 16 128 * bytes on amd64. So with 32 elements, this is 256 bytes on 129 * i386 and 512 bytes on amd64. 130 */ 131 #define CTLFE_MAX_SEGS 32 132 bus_dma_segment_t cam_sglist[CTLFE_MAX_SEGS]; 133 }; 134 135 /* 136 * When we register the adapter/bus, request that this many ctl_ios be 137 * allocated. This should be the maximum supported by the adapter, but we 138 * currently don't have a way to get that back from the path inquiry. 139 * XXX KDM add that to the path inquiry. 140 */ 141 #define CTLFE_REQ_CTL_IO 4096 142 /* 143 * Number of Accept Target I/O CCBs to allocate and queue down to the 144 * adapter per LUN. 145 * XXX KDM should this be controlled by CTL? 146 */ 147 #define CTLFE_ATIO_PER_LUN 1024 148 /* 149 * Number of Immediate Notify CCBs (used for aborts, resets, etc.) to 150 * allocate and queue down to the adapter per LUN. 151 * XXX KDM should this be controlled by CTL? 152 */ 153 #define CTLFE_IN_PER_LUN 1024 154 155 /* 156 * Timeout (in seconds) on CTIO CCB allocation for doing a DMA or sending 157 * status to the initiator. The SIM is expected to have its own timeouts, 158 * so we're not putting this timeout around the CCB execution time. The 159 * SIM should timeout and let us know if it has an issue. 160 */ 161 #define CTLFE_DMA_TIMEOUT 60 162 163 /* 164 * Turn this on to enable extra debugging prints. 165 */ 166 #if 0 167 #define CTLFE_DEBUG 168 #endif 169 170 /* 171 * Use randomly assigned WWNN/WWPN values. This is to work around an issue 172 * in the FreeBSD initiator that makes it unable to rescan the target if 173 * the target gets rebooted and the WWNN/WWPN stay the same. 174 */ 175 #if 0 176 #define RANDOM_WWNN 177 #endif 178 179 MALLOC_DEFINE(M_CTLFE, "CAM CTL FE", "CAM CTL FE interface"); 180 181 #define io_ptr ppriv_ptr0 182 183 /* This is only used in the CTIO */ 184 #define ccb_atio ppriv_ptr1 185 186 int ctlfeinitialize(void); 187 void ctlfeshutdown(void); 188 static periph_init_t ctlfeperiphinit; 189 static void ctlfeasync(void *callback_arg, uint32_t code, 190 struct cam_path *path, void *arg); 191 static periph_ctor_t ctlferegister; 192 static periph_oninv_t ctlfeoninvalidate; 193 static periph_dtor_t ctlfecleanup; 194 static periph_start_t ctlfestart; 195 static void ctlfedone(struct cam_periph *periph, 196 union ccb *done_ccb); 197 198 static void ctlfe_onoffline(void *arg, int online); 199 static void ctlfe_online(void *arg); 200 static void ctlfe_offline(void *arg); 201 static int ctlfe_lun_enable(void *arg, int lun_id); 202 static int ctlfe_lun_disable(void *arg, int lun_id); 203 static void ctlfe_dump_sim(struct cam_sim *sim); 204 static void ctlfe_dump_queue(struct ctlfe_lun_softc *softc); 205 static void ctlfe_datamove(union ctl_io *io); 206 static void ctlfe_done(union ctl_io *io); 207 static void ctlfe_dump(void); 208 209 static struct periph_driver ctlfe_driver = 210 { 211 ctlfeperiphinit, "ctl", 212 TAILQ_HEAD_INITIALIZER(ctlfe_driver.units), /*generation*/ 0, 213 CAM_PERIPH_DRV_EARLY 214 }; 215 216 static struct ctl_frontend ctlfe_frontend = 217 { 218 .name = "camtgt", 219 .init = ctlfeinitialize, 220 .fe_dump = ctlfe_dump, 221 .shutdown = ctlfeshutdown, 222 }; 223 CTL_FRONTEND_DECLARE(ctlfe, ctlfe_frontend); 224 225 void 226 ctlfeshutdown(void) 227 { 228 return; 229 } 230 231 int 232 ctlfeinitialize(void) 233 { 234 235 STAILQ_INIT(&ctlfe_softc_list); 236 mtx_init(&ctlfe_list_mtx, ctlfe_mtx_desc, NULL, MTX_DEF); 237 periphdriver_register(&ctlfe_driver); 238 return (0); 239 } 240 241 void 242 ctlfeperiphinit(void) 243 { 244 cam_status status; 245 246 status = xpt_register_async(AC_PATH_REGISTERED | AC_PATH_DEREGISTERED | 247 AC_CONTRACT, ctlfeasync, NULL, NULL); 248 if (status != CAM_REQ_CMP) { 249 printf("ctl: Failed to attach async callback due to CAM " 250 "status 0x%x!\n", status); 251 } 252 } 253 254 static void 255 ctlfeasync(void *callback_arg, uint32_t code, struct cam_path *path, void *arg) 256 { 257 struct ctlfe_softc *softc; 258 259 #ifdef CTLFEDEBUG 260 printf("%s: entered\n", __func__); 261 #endif 262 263 mtx_lock(&ctlfe_list_mtx); 264 STAILQ_FOREACH(softc, &ctlfe_softc_list, links) { 265 if (softc->path_id == xpt_path_path_id(path)) 266 break; 267 } 268 mtx_unlock(&ctlfe_list_mtx); 269 270 /* 271 * When a new path gets registered, and it is capable of target 272 * mode, go ahead and attach. Later on, we may need to be more 273 * selective, but for now this will be sufficient. 274 */ 275 switch (code) { 276 case AC_PATH_REGISTERED: { 277 struct ctl_port *port; 278 struct ccb_pathinq *cpi; 279 int retval; 280 281 cpi = (struct ccb_pathinq *)arg; 282 283 /* Don't attach if it doesn't support target mode */ 284 if ((cpi->target_sprt & PIT_PROCESSOR) == 0) { 285 #ifdef CTLFEDEBUG 286 printf("%s: SIM %s%d doesn't support target mode\n", 287 __func__, cpi->dev_name, cpi->unit_number); 288 #endif 289 break; 290 } 291 292 if (softc != NULL) { 293 #ifdef CTLFEDEBUG 294 printf("%s: CTL port for CAM path %u already exists\n", 295 __func__, xpt_path_path_id(path)); 296 #endif 297 break; 298 } 299 300 #ifdef CTLFE_INIT_ENABLE 301 if (ctlfe_num_targets >= ctlfe_max_targets) { 302 union ccb *ccb; 303 304 ccb = (union ccb *)malloc(sizeof(*ccb), M_TEMP, 305 M_NOWAIT | M_ZERO); 306 if (ccb == NULL) { 307 printf("%s: unable to malloc CCB!\n", __func__); 308 return; 309 } 310 xpt_setup_ccb(&ccb->ccb_h, path, CAM_PRIORITY_NONE); 311 312 ccb->ccb_h.func_code = XPT_SET_SIM_KNOB; 313 ccb->knob.xport_specific.valid = KNOB_VALID_ROLE; 314 ccb->knob.xport_specific.fc.role = KNOB_ROLE_INITIATOR; 315 316 xpt_action(ccb); 317 318 if ((ccb->ccb_h.status & CAM_STATUS_MASK) != 319 CAM_REQ_CMP) { 320 printf("%s: SIM %s%d (path id %d) initiator " 321 "enable failed with status %#x\n", 322 __func__, cpi->dev_name, 323 cpi->unit_number, cpi->ccb_h.path_id, 324 ccb->ccb_h.status); 325 } else { 326 printf("%s: SIM %s%d (path id %d) initiator " 327 "enable succeeded\n", 328 __func__, cpi->dev_name, 329 cpi->unit_number, cpi->ccb_h.path_id); 330 } 331 332 free(ccb, M_TEMP); 333 334 break; 335 } else { 336 ctlfe_num_targets++; 337 } 338 339 printf("%s: ctlfe_num_targets = %d\n", __func__, 340 ctlfe_num_targets); 341 #endif /* CTLFE_INIT_ENABLE */ 342 343 /* 344 * We're in an interrupt context here, so we have to 345 * use M_NOWAIT. Of course this means trouble if we 346 * can't allocate memory. 347 */ 348 softc = malloc(sizeof(*softc), M_CTLFE, M_NOWAIT | M_ZERO); 349 if (softc == NULL) { 350 printf("%s: unable to malloc %zd bytes for softc\n", 351 __func__, sizeof(*softc)); 352 return; 353 } 354 355 softc->path_id = cpi->ccb_h.path_id; 356 softc->target_id = cpi->initiator_id; 357 softc->sim = xpt_path_sim(path); 358 if (cpi->maxio != 0) 359 softc->maxio = cpi->maxio; 360 else 361 softc->maxio = DFLTPHYS; 362 mtx_init(&softc->lun_softc_mtx, "LUN softc mtx", NULL, MTX_DEF); 363 STAILQ_INIT(&softc->lun_softc_list); 364 365 port = &softc->port; 366 port->frontend = &ctlfe_frontend; 367 368 /* 369 * XXX KDM should we be more accurate here ? 370 */ 371 if (cpi->transport == XPORT_FC) 372 port->port_type = CTL_PORT_FC; 373 else if (cpi->transport == XPORT_SAS) 374 port->port_type = CTL_PORT_SAS; 375 else 376 port->port_type = CTL_PORT_SCSI; 377 378 /* XXX KDM what should the real number be here? */ 379 port->num_requested_ctl_io = 4096; 380 snprintf(softc->port_name, sizeof(softc->port_name), 381 "%s%d", cpi->dev_name, cpi->unit_number); 382 /* 383 * XXX KDM it would be nice to allocate storage in the 384 * frontend structure itself. 385 */ 386 port->port_name = softc->port_name; 387 port->physical_port = cpi->bus_id; 388 port->virtual_port = 0; 389 port->port_online = ctlfe_online; 390 port->port_offline = ctlfe_offline; 391 port->onoff_arg = softc; 392 port->lun_enable = ctlfe_lun_enable; 393 port->lun_disable = ctlfe_lun_disable; 394 port->targ_lun_arg = softc; 395 port->fe_datamove = ctlfe_datamove; 396 port->fe_done = ctlfe_done; 397 /* 398 * XXX KDM the path inquiry doesn't give us the maximum 399 * number of targets supported. 400 */ 401 port->max_targets = cpi->max_target; 402 port->max_target_id = cpi->max_target; 403 404 /* 405 * XXX KDM need to figure out whether we're the master or 406 * slave. 407 */ 408 #ifdef CTLFEDEBUG 409 printf("%s: calling ctl_port_register() for %s%d\n", 410 __func__, cpi->dev_name, cpi->unit_number); 411 #endif 412 retval = ctl_port_register(port); 413 if (retval != 0) { 414 printf("%s: ctl_port_register() failed with " 415 "error %d!\n", __func__, retval); 416 mtx_destroy(&softc->lun_softc_mtx); 417 free(softc, M_CTLFE); 418 break; 419 } else { 420 mtx_lock(&ctlfe_list_mtx); 421 STAILQ_INSERT_TAIL(&ctlfe_softc_list, softc, links); 422 mtx_unlock(&ctlfe_list_mtx); 423 } 424 425 break; 426 } 427 case AC_PATH_DEREGISTERED: { 428 429 if (softc != NULL) { 430 /* 431 * XXX KDM are we certain at this point that there 432 * are no outstanding commands for this frontend? 433 */ 434 mtx_lock(&ctlfe_list_mtx); 435 STAILQ_REMOVE(&ctlfe_softc_list, softc, ctlfe_softc, 436 links); 437 mtx_unlock(&ctlfe_list_mtx); 438 ctl_port_deregister(&softc->port); 439 mtx_destroy(&softc->lun_softc_mtx); 440 free(softc, M_CTLFE); 441 } 442 break; 443 } 444 case AC_CONTRACT: { 445 struct ac_contract *ac; 446 447 ac = (struct ac_contract *)arg; 448 449 switch (ac->contract_number) { 450 case AC_CONTRACT_DEV_CHG: { 451 struct ac_device_changed *dev_chg; 452 int retval; 453 454 dev_chg = (struct ac_device_changed *)ac->contract_data; 455 456 printf("%s: WWPN %#jx port 0x%06x path %u target %u %s\n", 457 __func__, dev_chg->wwpn, dev_chg->port, 458 xpt_path_path_id(path), dev_chg->target, 459 (dev_chg->arrived == 0) ? "left" : "arrived"); 460 461 if (softc == NULL) { 462 printf("%s: CTL port for CAM path %u not " 463 "found!\n", __func__, 464 xpt_path_path_id(path)); 465 break; 466 } 467 if (dev_chg->arrived != 0) { 468 retval = ctl_add_initiator(&softc->port, 469 dev_chg->target, dev_chg->wwpn, NULL); 470 } else { 471 retval = ctl_remove_initiator(&softc->port, 472 dev_chg->target); 473 } 474 475 if (retval < 0) { 476 printf("%s: could not %s port %d iid %u " 477 "WWPN %#jx!\n", __func__, 478 (dev_chg->arrived != 0) ? "add" : 479 "remove", softc->port.targ_port, 480 dev_chg->target, 481 (uintmax_t)dev_chg->wwpn); 482 } 483 break; 484 } 485 default: 486 printf("%s: unsupported contract number %ju\n", 487 __func__, (uintmax_t)ac->contract_number); 488 break; 489 } 490 break; 491 } 492 default: 493 break; 494 } 495 } 496 497 static cam_status 498 ctlferegister(struct cam_periph *periph, void *arg) 499 { 500 struct ctlfe_softc *bus_softc; 501 struct ctlfe_lun_softc *softc; 502 union ccb en_lun_ccb; 503 cam_status status; 504 int i; 505 506 softc = (struct ctlfe_lun_softc *)arg; 507 bus_softc = softc->parent_softc; 508 509 TAILQ_INIT(&softc->work_queue); 510 softc->periph = periph; 511 periph->softc = softc; 512 513 xpt_setup_ccb(&en_lun_ccb.ccb_h, periph->path, CAM_PRIORITY_NONE); 514 en_lun_ccb.ccb_h.func_code = XPT_EN_LUN; 515 en_lun_ccb.cel.grp6_len = 0; 516 en_lun_ccb.cel.grp7_len = 0; 517 en_lun_ccb.cel.enable = 1; 518 xpt_action(&en_lun_ccb); 519 status = (en_lun_ccb.ccb_h.status & CAM_STATUS_MASK); 520 if (status != CAM_REQ_CMP) { 521 xpt_print(periph->path, "%s: Enable LUN failed, status 0x%x\n", 522 __func__, en_lun_ccb.ccb_h.status); 523 return (status); 524 } 525 526 status = CAM_REQ_CMP; 527 528 for (i = 0; i < CTLFE_ATIO_PER_LUN; i++) { 529 union ccb *new_ccb; 530 union ctl_io *new_io; 531 struct ctlfe_cmd_info *cmd_info; 532 533 new_ccb = (union ccb *)malloc(sizeof(*new_ccb), M_CTLFE, 534 M_ZERO|M_NOWAIT); 535 if (new_ccb == NULL) { 536 status = CAM_RESRC_UNAVAIL; 537 break; 538 } 539 new_io = ctl_alloc_io_nowait(bus_softc->port.ctl_pool_ref); 540 if (new_io == NULL) { 541 free(new_ccb, M_CTLFE); 542 status = CAM_RESRC_UNAVAIL; 543 break; 544 } 545 cmd_info = malloc(sizeof(*cmd_info), M_CTLFE, 546 M_ZERO | M_NOWAIT); 547 if (cmd_info == NULL) { 548 ctl_free_io(new_io); 549 free(new_ccb, M_CTLFE); 550 status = CAM_RESRC_UNAVAIL; 551 break; 552 } 553 new_io->io_hdr.ctl_private[CTL_PRIV_FRONTEND2].ptr = cmd_info; 554 softc->atios_alloced++; 555 new_ccb->ccb_h.io_ptr = new_io; 556 557 xpt_setup_ccb(&new_ccb->ccb_h, periph->path, /*priority*/ 1); 558 new_ccb->ccb_h.func_code = XPT_ACCEPT_TARGET_IO; 559 new_ccb->ccb_h.cbfcnp = ctlfedone; 560 new_ccb->ccb_h.flags |= CAM_UNLOCKED; 561 xpt_action(new_ccb); 562 status = new_ccb->ccb_h.status; 563 if ((status & CAM_STATUS_MASK) != CAM_REQ_INPROG) { 564 free(cmd_info, M_CTLFE); 565 ctl_free_io(new_io); 566 free(new_ccb, M_CTLFE); 567 break; 568 } 569 } 570 571 status = cam_periph_acquire(periph); 572 if ((status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 573 xpt_print(periph->path, "%s: could not acquire reference " 574 "count, status = %#x\n", __func__, status); 575 return (status); 576 } 577 578 if (i == 0) { 579 xpt_print(periph->path, "%s: could not allocate ATIO CCBs, " 580 "status 0x%x\n", __func__, status); 581 return (CAM_REQ_CMP_ERR); 582 } 583 584 for (i = 0; i < CTLFE_IN_PER_LUN; i++) { 585 union ccb *new_ccb; 586 union ctl_io *new_io; 587 588 new_ccb = (union ccb *)malloc(sizeof(*new_ccb), M_CTLFE, 589 M_ZERO|M_NOWAIT); 590 if (new_ccb == NULL) { 591 status = CAM_RESRC_UNAVAIL; 592 break; 593 } 594 new_io = ctl_alloc_io_nowait(bus_softc->port.ctl_pool_ref); 595 if (new_io == NULL) { 596 free(new_ccb, M_CTLFE); 597 status = CAM_RESRC_UNAVAIL; 598 break; 599 } 600 softc->inots_alloced++; 601 new_ccb->ccb_h.io_ptr = new_io; 602 603 xpt_setup_ccb(&new_ccb->ccb_h, periph->path, /*priority*/ 1); 604 new_ccb->ccb_h.func_code = XPT_IMMEDIATE_NOTIFY; 605 new_ccb->ccb_h.cbfcnp = ctlfedone; 606 new_ccb->ccb_h.flags |= CAM_UNLOCKED; 607 xpt_action(new_ccb); 608 status = new_ccb->ccb_h.status; 609 if ((status & CAM_STATUS_MASK) != CAM_REQ_INPROG) { 610 /* 611 * Note that we don't free the CCB here. If the 612 * status is not CAM_REQ_INPROG, then we're 613 * probably talking to a SIM that says it is 614 * target-capable but doesn't support the 615 * XPT_IMMEDIATE_NOTIFY CCB. i.e. it supports the 616 * older API. In that case, it'll call xpt_done() 617 * on the CCB, and we need to free it in our done 618 * routine as a result. 619 */ 620 break; 621 } 622 } 623 if ((i == 0) 624 || (status != CAM_REQ_INPROG)) { 625 xpt_print(periph->path, "%s: could not allocate immediate " 626 "notify CCBs, status 0x%x\n", __func__, status); 627 return (CAM_REQ_CMP_ERR); 628 } 629 mtx_lock(&bus_softc->lun_softc_mtx); 630 STAILQ_INSERT_TAIL(&bus_softc->lun_softc_list, softc, links); 631 mtx_unlock(&bus_softc->lun_softc_mtx); 632 return (CAM_REQ_CMP); 633 } 634 635 static void 636 ctlfeoninvalidate(struct cam_periph *periph) 637 { 638 union ccb en_lun_ccb; 639 cam_status status; 640 struct ctlfe_softc *bus_softc; 641 struct ctlfe_lun_softc *softc; 642 643 softc = (struct ctlfe_lun_softc *)periph->softc; 644 645 xpt_setup_ccb(&en_lun_ccb.ccb_h, periph->path, CAM_PRIORITY_NONE); 646 en_lun_ccb.ccb_h.func_code = XPT_EN_LUN; 647 en_lun_ccb.cel.grp6_len = 0; 648 en_lun_ccb.cel.grp7_len = 0; 649 en_lun_ccb.cel.enable = 0; 650 xpt_action(&en_lun_ccb); 651 status = (en_lun_ccb.ccb_h.status & CAM_STATUS_MASK); 652 if (status != CAM_REQ_CMP) { 653 xpt_print(periph->path, "%s: Disable LUN failed, status 0x%x\n", 654 __func__, en_lun_ccb.ccb_h.status); 655 /* 656 * XXX KDM what do we do now? 657 */ 658 } 659 660 bus_softc = softc->parent_softc; 661 mtx_lock(&bus_softc->lun_softc_mtx); 662 STAILQ_REMOVE(&bus_softc->lun_softc_list, softc, ctlfe_lun_softc, links); 663 mtx_unlock(&bus_softc->lun_softc_mtx); 664 } 665 666 static void 667 ctlfecleanup(struct cam_periph *periph) 668 { 669 struct ctlfe_lun_softc *softc; 670 671 softc = (struct ctlfe_lun_softc *)periph->softc; 672 673 KASSERT(softc->ccbs_freed == softc->ccbs_alloced, ("%s: " 674 "ccbs_freed %ju != ccbs_alloced %ju", __func__, 675 softc->ccbs_freed, softc->ccbs_alloced)); 676 KASSERT(softc->ctios_returned == softc->ctios_sent, ("%s: " 677 "ctios_returned %ju != ctios_sent %ju", __func__, 678 softc->ctios_returned, softc->ctios_sent)); 679 KASSERT(softc->atios_freed == softc->atios_alloced, ("%s: " 680 "atios_freed %ju != atios_alloced %ju", __func__, 681 softc->atios_freed, softc->atios_alloced)); 682 KASSERT(softc->inots_freed == softc->inots_alloced, ("%s: " 683 "inots_freed %ju != inots_alloced %ju", __func__, 684 softc->inots_freed, softc->inots_alloced)); 685 686 free(softc, M_CTLFE); 687 } 688 689 static void 690 ctlfedata(struct ctlfe_lun_softc *softc, union ctl_io *io, 691 ccb_flags *flags, uint8_t **data_ptr, uint32_t *dxfer_len, 692 u_int16_t *sglist_cnt) 693 { 694 struct ctlfe_softc *bus_softc; 695 struct ctlfe_cmd_info *cmd_info; 696 struct ctl_sg_entry *ctl_sglist; 697 bus_dma_segment_t *cam_sglist; 698 size_t off; 699 int i, idx; 700 701 cmd_info = io->io_hdr.ctl_private[CTL_PRIV_FRONTEND2].ptr; 702 bus_softc = softc->parent_softc; 703 704 /* 705 * Set the direction, relative to the initiator. 706 */ 707 *flags &= ~CAM_DIR_MASK; 708 if ((io->io_hdr.flags & CTL_FLAG_DATA_MASK) == CTL_FLAG_DATA_IN) 709 *flags |= CAM_DIR_IN; 710 else 711 *flags |= CAM_DIR_OUT; 712 713 *flags &= ~CAM_DATA_MASK; 714 idx = cmd_info->cur_transfer_index; 715 off = cmd_info->cur_transfer_off; 716 cmd_info->flags &= ~CTLFE_CMD_PIECEWISE; 717 if (io->scsiio.kern_sg_entries == 0) { 718 /* No S/G list. */ 719 *data_ptr = io->scsiio.kern_data_ptr + off; 720 if (io->scsiio.kern_data_len - off <= bus_softc->maxio) { 721 *dxfer_len = io->scsiio.kern_data_len - off; 722 } else { 723 *dxfer_len = bus_softc->maxio; 724 cmd_info->cur_transfer_index = -1; 725 cmd_info->cur_transfer_off = bus_softc->maxio; 726 cmd_info->flags |= CTLFE_CMD_PIECEWISE; 727 } 728 *sglist_cnt = 0; 729 730 if (io->io_hdr.flags & CTL_FLAG_BUS_ADDR) 731 *flags |= CAM_DATA_PADDR; 732 else 733 *flags |= CAM_DATA_VADDR; 734 } else { 735 /* S/G list with physical or virtual pointers. */ 736 ctl_sglist = (struct ctl_sg_entry *)io->scsiio.kern_data_ptr; 737 cam_sglist = cmd_info->cam_sglist; 738 *dxfer_len = 0; 739 for (i = 0; i < io->scsiio.kern_sg_entries - idx; i++) { 740 cam_sglist[i].ds_addr = (bus_addr_t)ctl_sglist[i + idx].addr + off; 741 if (ctl_sglist[i + idx].len - off <= bus_softc->maxio - *dxfer_len) { 742 cam_sglist[i].ds_len = ctl_sglist[idx + i].len - off; 743 *dxfer_len += cam_sglist[i].ds_len; 744 } else { 745 cam_sglist[i].ds_len = bus_softc->maxio - *dxfer_len; 746 cmd_info->cur_transfer_index = idx + i; 747 cmd_info->cur_transfer_off = cam_sglist[i].ds_len + off; 748 cmd_info->flags |= CTLFE_CMD_PIECEWISE; 749 *dxfer_len += cam_sglist[i].ds_len; 750 if (ctl_sglist[i].len != 0) 751 i++; 752 break; 753 } 754 if (i == (CTLFE_MAX_SEGS - 1) && 755 idx + i < (io->scsiio.kern_sg_entries - 1)) { 756 cmd_info->cur_transfer_index = idx + i + 1; 757 cmd_info->cur_transfer_off = 0; 758 cmd_info->flags |= CTLFE_CMD_PIECEWISE; 759 i++; 760 break; 761 } 762 off = 0; 763 } 764 *sglist_cnt = i; 765 if (io->io_hdr.flags & CTL_FLAG_BUS_ADDR) 766 *flags |= CAM_DATA_SG_PADDR; 767 else 768 *flags |= CAM_DATA_SG; 769 *data_ptr = (uint8_t *)cam_sglist; 770 } 771 } 772 773 static void 774 ctlfestart(struct cam_periph *periph, union ccb *start_ccb) 775 { 776 struct ctlfe_lun_softc *softc; 777 struct ctlfe_cmd_info *cmd_info; 778 struct ccb_hdr *ccb_h; 779 struct ccb_accept_tio *atio; 780 struct ccb_scsiio *csio; 781 uint8_t *data_ptr; 782 uint32_t dxfer_len; 783 ccb_flags flags; 784 union ctl_io *io; 785 uint8_t scsi_status; 786 787 softc = (struct ctlfe_lun_softc *)periph->softc; 788 softc->ccbs_alloced++; 789 790 ccb_h = TAILQ_FIRST(&softc->work_queue); 791 if (ccb_h == NULL) { 792 softc->ccbs_freed++; 793 xpt_release_ccb(start_ccb); 794 return; 795 } 796 797 /* Take the ATIO off the work queue */ 798 TAILQ_REMOVE(&softc->work_queue, ccb_h, periph_links.tqe); 799 atio = (struct ccb_accept_tio *)ccb_h; 800 io = (union ctl_io *)ccb_h->io_ptr; 801 csio = &start_ccb->csio; 802 803 flags = atio->ccb_h.flags & 804 (CAM_DIS_DISCONNECT|CAM_TAG_ACTION_VALID|CAM_DIR_MASK); 805 cmd_info = io->io_hdr.ctl_private[CTL_PRIV_FRONTEND2].ptr; 806 cmd_info->cur_transfer_index = 0; 807 cmd_info->cur_transfer_off = 0; 808 cmd_info->flags = 0; 809 810 if (io->io_hdr.flags & CTL_FLAG_DMA_QUEUED) { 811 /* 812 * Datamove call, we need to setup the S/G list. 813 */ 814 scsi_status = 0; 815 csio->cdb_len = atio->cdb_len; 816 ctlfedata(softc, io, &flags, &data_ptr, &dxfer_len, 817 &csio->sglist_cnt); 818 io->scsiio.ext_data_filled += dxfer_len; 819 if (io->scsiio.ext_data_filled > io->scsiio.kern_total_len) { 820 xpt_print(periph->path, "%s: tag 0x%04x " 821 "fill len %u > total %u\n", 822 __func__, io->scsiio.tag_num, 823 io->scsiio.ext_data_filled, 824 io->scsiio.kern_total_len); 825 } 826 } else { 827 /* 828 * We're done, send status back. 829 */ 830 if ((io->io_hdr.flags & CTL_FLAG_ABORT) && 831 (io->io_hdr.flags & CTL_FLAG_ABORT_STATUS) == 0) { 832 io->io_hdr.flags &= ~CTL_FLAG_STATUS_QUEUED; 833 834 /* 835 * If this command was aborted, we don't 836 * need to send status back to the SIM. 837 * Just free the CTIO and ctl_io, and 838 * recycle the ATIO back to the SIM. 839 */ 840 xpt_print(periph->path, "%s: aborted " 841 "command 0x%04x discarded\n", 842 __func__, io->scsiio.tag_num); 843 /* 844 * For a wildcard attachment, commands can 845 * come in with a specific target/lun. Reset 846 * the target and LUN fields back to the 847 * wildcard values before we send them back 848 * down to the SIM. The SIM has a wildcard 849 * LUN enabled, not whatever target/lun 850 * these happened to be. 851 */ 852 if (softc->flags & CTLFE_LUN_WILDCARD) { 853 atio->ccb_h.target_id = CAM_TARGET_WILDCARD; 854 atio->ccb_h.target_lun = CAM_LUN_WILDCARD; 855 } 856 857 if (atio->ccb_h.func_code != XPT_ACCEPT_TARGET_IO) { 858 xpt_print(periph->path, "%s: func_code " 859 "is %#x\n", __func__, 860 atio->ccb_h.func_code); 861 } 862 start_ccb->ccb_h.func_code = XPT_ABORT; 863 start_ccb->cab.abort_ccb = (union ccb *)atio; 864 865 /* Tell the SIM that we've aborted this ATIO */ 866 xpt_action(start_ccb); 867 softc->ccbs_freed++; 868 xpt_release_ccb(start_ccb); 869 870 /* 871 * Send the ATIO back down to the SIM. 872 */ 873 xpt_action((union ccb *)atio); 874 875 /* 876 * If we still have work to do, ask for 877 * another CCB. Otherwise, deactivate our 878 * callout. 879 */ 880 if (!TAILQ_EMPTY(&softc->work_queue)) 881 xpt_schedule(periph, /*priority*/ 1); 882 return; 883 } 884 data_ptr = NULL; 885 dxfer_len = 0; 886 csio->sglist_cnt = 0; 887 scsi_status = 0; 888 } 889 if ((io->io_hdr.flags & CTL_FLAG_STATUS_QUEUED) && 890 (cmd_info->flags & CTLFE_CMD_PIECEWISE) == 0 && 891 ((io->io_hdr.flags & CTL_FLAG_DMA_QUEUED) == 0 || 892 io->io_hdr.status == CTL_SUCCESS)) { 893 flags |= CAM_SEND_STATUS; 894 scsi_status = io->scsiio.scsi_status; 895 csio->sense_len = io->scsiio.sense_len; 896 #ifdef CTLFEDEBUG 897 printf("%s: tag %04x status %x\n", __func__, 898 atio->tag_id, io->io_hdr.status); 899 #endif 900 if (csio->sense_len != 0) { 901 csio->sense_data = io->scsiio.sense_data; 902 flags |= CAM_SEND_SENSE; 903 } else if (scsi_status == SCSI_STATUS_CHECK_COND) { 904 xpt_print(periph->path, "%s: check condition " 905 "with no sense\n", __func__); 906 } 907 } 908 909 #ifdef CTLFEDEBUG 910 printf("%s: %s: tag %04x flags %x ptr %p len %u\n", __func__, 911 (flags & CAM_SEND_STATUS) ? "done" : "datamove", 912 atio->tag_id, flags, data_ptr, dxfer_len); 913 #endif 914 915 /* 916 * Valid combinations: 917 * - CAM_SEND_STATUS, CAM_DATA_SG = 0, dxfer_len = 0, 918 * sglist_cnt = 0 919 * - CAM_SEND_STATUS = 0, CAM_DATA_SG = 0, dxfer_len != 0, 920 * sglist_cnt = 0 921 * - CAM_SEND_STATUS = 0, CAM_DATA_SG, dxfer_len != 0, 922 * sglist_cnt != 0 923 */ 924 #ifdef CTLFEDEBUG 925 if (((flags & CAM_SEND_STATUS) 926 && (((flags & CAM_DATA_SG) != 0) 927 || (dxfer_len != 0) 928 || (csio->sglist_cnt != 0))) 929 || (((flags & CAM_SEND_STATUS) == 0) 930 && (dxfer_len == 0)) 931 || ((flags & CAM_DATA_SG) 932 && (csio->sglist_cnt == 0)) 933 || (((flags & CAM_DATA_SG) == 0) 934 && (csio->sglist_cnt != 0))) { 935 printf("%s: tag %04x cdb %02x flags %#x dxfer_len " 936 "%d sg %u\n", __func__, atio->tag_id, 937 atio->cdb_io.cdb_bytes[0], flags, dxfer_len, 938 csio->sglist_cnt); 939 printf("%s: tag %04x io status %#x\n", __func__, 940 atio->tag_id, io->io_hdr.status); 941 } 942 #endif 943 cam_fill_ctio(csio, 944 /*retries*/ 2, 945 ctlfedone, 946 flags, 947 (flags & CAM_TAG_ACTION_VALID) ? MSG_SIMPLE_Q_TAG : 0, 948 atio->tag_id, 949 atio->init_id, 950 scsi_status, 951 /*data_ptr*/ data_ptr, 952 /*dxfer_len*/ dxfer_len, 953 /*timeout*/ 5 * 1000); 954 start_ccb->ccb_h.flags |= CAM_UNLOCKED; 955 start_ccb->ccb_h.ccb_atio = atio; 956 if (io->io_hdr.flags & CTL_FLAG_DMA_QUEUED) 957 io->io_hdr.flags |= CTL_FLAG_DMA_INPROG; 958 io->io_hdr.flags &= ~(CTL_FLAG_DMA_QUEUED | CTL_FLAG_STATUS_QUEUED); 959 960 softc->ctios_sent++; 961 962 cam_periph_unlock(periph); 963 xpt_action(start_ccb); 964 cam_periph_lock(periph); 965 966 /* 967 * If we still have work to do, ask for another CCB. 968 */ 969 if (!TAILQ_EMPTY(&softc->work_queue)) 970 xpt_schedule(periph, /*priority*/ 1); 971 } 972 973 static void 974 ctlfe_free_ccb(struct cam_periph *periph, union ccb *ccb) 975 { 976 struct ctlfe_lun_softc *softc; 977 union ctl_io *io; 978 struct ctlfe_cmd_info *cmd_info; 979 980 softc = (struct ctlfe_lun_softc *)periph->softc; 981 io = ccb->ccb_h.io_ptr; 982 983 switch (ccb->ccb_h.func_code) { 984 case XPT_ACCEPT_TARGET_IO: 985 softc->atios_freed++; 986 cmd_info = io->io_hdr.ctl_private[CTL_PRIV_FRONTEND2].ptr; 987 free(cmd_info, M_CTLFE); 988 break; 989 case XPT_IMMEDIATE_NOTIFY: 990 case XPT_NOTIFY_ACKNOWLEDGE: 991 softc->inots_freed++; 992 break; 993 default: 994 break; 995 } 996 997 ctl_free_io(io); 998 free(ccb, M_CTLFE); 999 1000 KASSERT(softc->atios_freed <= softc->atios_alloced, ("%s: " 1001 "atios_freed %ju > atios_alloced %ju", __func__, 1002 softc->atios_freed, softc->atios_alloced)); 1003 KASSERT(softc->inots_freed <= softc->inots_alloced, ("%s: " 1004 "inots_freed %ju > inots_alloced %ju", __func__, 1005 softc->inots_freed, softc->inots_alloced)); 1006 1007 /* 1008 * If we have received all of our CCBs, we can release our 1009 * reference on the peripheral driver. It will probably go away 1010 * now. 1011 */ 1012 if ((softc->atios_freed == softc->atios_alloced) 1013 && (softc->inots_freed == softc->inots_alloced)) { 1014 cam_periph_release_locked(periph); 1015 } 1016 } 1017 1018 static int 1019 ctlfe_adjust_cdb(struct ccb_accept_tio *atio, uint32_t offset) 1020 { 1021 uint64_t lba; 1022 uint32_t num_blocks, nbc; 1023 uint8_t *cmdbyt = (atio->ccb_h.flags & CAM_CDB_POINTER)? 1024 atio->cdb_io.cdb_ptr : atio->cdb_io.cdb_bytes; 1025 1026 nbc = offset >> 9; /* ASSUMING 512 BYTE BLOCKS */ 1027 1028 switch (cmdbyt[0]) { 1029 case READ_6: 1030 case WRITE_6: 1031 { 1032 struct scsi_rw_6 *cdb = (struct scsi_rw_6 *)cmdbyt; 1033 lba = scsi_3btoul(cdb->addr); 1034 lba &= 0x1fffff; 1035 num_blocks = cdb->length; 1036 if (num_blocks == 0) 1037 num_blocks = 256; 1038 lba += nbc; 1039 num_blocks -= nbc; 1040 scsi_ulto3b(lba, cdb->addr); 1041 cdb->length = num_blocks; 1042 break; 1043 } 1044 case READ_10: 1045 case WRITE_10: 1046 { 1047 struct scsi_rw_10 *cdb = (struct scsi_rw_10 *)cmdbyt; 1048 lba = scsi_4btoul(cdb->addr); 1049 num_blocks = scsi_2btoul(cdb->length); 1050 lba += nbc; 1051 num_blocks -= nbc; 1052 scsi_ulto4b(lba, cdb->addr); 1053 scsi_ulto2b(num_blocks, cdb->length); 1054 break; 1055 } 1056 case READ_12: 1057 case WRITE_12: 1058 { 1059 struct scsi_rw_12 *cdb = (struct scsi_rw_12 *)cmdbyt; 1060 lba = scsi_4btoul(cdb->addr); 1061 num_blocks = scsi_4btoul(cdb->length); 1062 lba += nbc; 1063 num_blocks -= nbc; 1064 scsi_ulto4b(lba, cdb->addr); 1065 scsi_ulto4b(num_blocks, cdb->length); 1066 break; 1067 } 1068 case READ_16: 1069 case WRITE_16: 1070 case WRITE_ATOMIC_16: 1071 { 1072 struct scsi_rw_16 *cdb = (struct scsi_rw_16 *)cmdbyt; 1073 lba = scsi_8btou64(cdb->addr); 1074 num_blocks = scsi_4btoul(cdb->length); 1075 lba += nbc; 1076 num_blocks -= nbc; 1077 scsi_u64to8b(lba, cdb->addr); 1078 scsi_ulto4b(num_blocks, cdb->length); 1079 break; 1080 } 1081 default: 1082 return -1; 1083 } 1084 return (0); 1085 } 1086 1087 static void 1088 ctlfedone(struct cam_periph *periph, union ccb *done_ccb) 1089 { 1090 struct ctlfe_lun_softc *softc; 1091 struct ctlfe_softc *bus_softc; 1092 struct ctlfe_cmd_info *cmd_info; 1093 struct ccb_accept_tio *atio = NULL; 1094 union ctl_io *io = NULL; 1095 struct mtx *mtx; 1096 1097 KASSERT((done_ccb->ccb_h.flags & CAM_UNLOCKED) != 0, 1098 ("CCB in ctlfedone() without CAM_UNLOCKED flag")); 1099 #ifdef CTLFE_DEBUG 1100 printf("%s: entered, func_code = %#x\n", __func__, 1101 done_ccb->ccb_h.func_code); 1102 #endif 1103 1104 /* 1105 * At this point CTL has no known use case for device queue freezes. 1106 * In case some SIM think different -- drop its freeze right here. 1107 */ 1108 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) { 1109 cam_release_devq(periph->path, 1110 /*relsim_flags*/0, 1111 /*reduction*/0, 1112 /*timeout*/0, 1113 /*getcount_only*/0); 1114 done_ccb->ccb_h.status &= ~CAM_DEV_QFRZN; 1115 } 1116 1117 softc = (struct ctlfe_lun_softc *)periph->softc; 1118 bus_softc = softc->parent_softc; 1119 mtx = cam_periph_mtx(periph); 1120 mtx_lock(mtx); 1121 1122 /* 1123 * If the peripheral is invalid, ATIOs and immediate notify CCBs 1124 * need to be freed. Most of the ATIOs and INOTs that come back 1125 * will be CCBs that are being returned from the SIM as a result of 1126 * our disabling the LUN. 1127 * 1128 * Other CCB types are handled in their respective cases below. 1129 */ 1130 if (periph->flags & CAM_PERIPH_INVALID) { 1131 switch (done_ccb->ccb_h.func_code) { 1132 case XPT_ACCEPT_TARGET_IO: 1133 case XPT_IMMEDIATE_NOTIFY: 1134 case XPT_NOTIFY_ACKNOWLEDGE: 1135 ctlfe_free_ccb(periph, done_ccb); 1136 goto out; 1137 default: 1138 break; 1139 } 1140 1141 } 1142 switch (done_ccb->ccb_h.func_code) { 1143 case XPT_ACCEPT_TARGET_IO: { 1144 1145 atio = &done_ccb->atio; 1146 1147 resubmit: 1148 /* 1149 * Allocate a ctl_io, pass it to CTL, and wait for the 1150 * datamove or done. 1151 */ 1152 mtx_unlock(mtx); 1153 io = done_ccb->ccb_h.io_ptr; 1154 cmd_info = io->io_hdr.ctl_private[CTL_PRIV_FRONTEND2].ptr; 1155 ctl_zero_io(io); 1156 1157 /* Save pointers on both sides */ 1158 io->io_hdr.ctl_private[CTL_PRIV_FRONTEND].ptr = done_ccb; 1159 io->io_hdr.ctl_private[CTL_PRIV_FRONTEND2].ptr = cmd_info; 1160 done_ccb->ccb_h.io_ptr = io; 1161 1162 /* 1163 * Only SCSI I/O comes down this path, resets, etc. come 1164 * down the immediate notify path below. 1165 */ 1166 io->io_hdr.io_type = CTL_IO_SCSI; 1167 io->io_hdr.nexus.initid.id = atio->init_id; 1168 io->io_hdr.nexus.targ_port = bus_softc->port.targ_port; 1169 io->io_hdr.nexus.targ_target.id = atio->ccb_h.target_id; 1170 io->io_hdr.nexus.targ_lun = atio->ccb_h.target_lun; 1171 io->scsiio.tag_num = atio->tag_id; 1172 switch (atio->tag_action) { 1173 case CAM_TAG_ACTION_NONE: 1174 io->scsiio.tag_type = CTL_TAG_UNTAGGED; 1175 break; 1176 case MSG_SIMPLE_TASK: 1177 io->scsiio.tag_type = CTL_TAG_SIMPLE; 1178 break; 1179 case MSG_HEAD_OF_QUEUE_TASK: 1180 io->scsiio.tag_type = CTL_TAG_HEAD_OF_QUEUE; 1181 break; 1182 case MSG_ORDERED_TASK: 1183 io->scsiio.tag_type = CTL_TAG_ORDERED; 1184 break; 1185 case MSG_ACA_TASK: 1186 io->scsiio.tag_type = CTL_TAG_ACA; 1187 break; 1188 default: 1189 io->scsiio.tag_type = CTL_TAG_UNTAGGED; 1190 printf("%s: unhandled tag type %#x!!\n", __func__, 1191 atio->tag_action); 1192 break; 1193 } 1194 if (atio->cdb_len > sizeof(io->scsiio.cdb)) { 1195 printf("%s: WARNING: CDB len %d > ctl_io space %zd\n", 1196 __func__, atio->cdb_len, sizeof(io->scsiio.cdb)); 1197 } 1198 io->scsiio.cdb_len = min(atio->cdb_len, sizeof(io->scsiio.cdb)); 1199 bcopy(atio->cdb_io.cdb_bytes, io->scsiio.cdb, 1200 io->scsiio.cdb_len); 1201 1202 #ifdef CTLFEDEBUG 1203 printf("%s: %ju:%d:%ju:%d: tag %04x CDB %02x\n", __func__, 1204 (uintmax_t)io->io_hdr.nexus.initid.id, 1205 io->io_hdr.nexus.targ_port, 1206 (uintmax_t)io->io_hdr.nexus.targ_target.id, 1207 io->io_hdr.nexus.targ_lun, 1208 io->scsiio.tag_num, io->scsiio.cdb[0]); 1209 #endif 1210 1211 ctl_queue(io); 1212 return; 1213 } 1214 case XPT_CONT_TARGET_IO: { 1215 int srr = 0; 1216 uint32_t srr_off = 0; 1217 1218 atio = (struct ccb_accept_tio *)done_ccb->ccb_h.ccb_atio; 1219 io = (union ctl_io *)atio->ccb_h.io_ptr; 1220 1221 softc->ctios_returned++; 1222 #ifdef CTLFEDEBUG 1223 printf("%s: got XPT_CONT_TARGET_IO tag %#x flags %#x\n", 1224 __func__, atio->tag_id, done_ccb->ccb_h.flags); 1225 #endif 1226 /* 1227 * Handle SRR case were the data pointer is pushed back hack 1228 */ 1229 if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_MESSAGE_RECV 1230 && done_ccb->csio.msg_ptr != NULL 1231 && done_ccb->csio.msg_ptr[0] == MSG_EXTENDED 1232 && done_ccb->csio.msg_ptr[1] == 5 1233 && done_ccb->csio.msg_ptr[2] == 0) { 1234 srr = 1; 1235 srr_off = 1236 (done_ccb->csio.msg_ptr[3] << 24) 1237 | (done_ccb->csio.msg_ptr[4] << 16) 1238 | (done_ccb->csio.msg_ptr[5] << 8) 1239 | (done_ccb->csio.msg_ptr[6]); 1240 } 1241 1242 if (srr && (io->io_hdr.flags & CTL_FLAG_DMA_INPROG) == 0) { 1243 /* 1244 * If status was being sent, the back end data is now 1245 * history. Hack it up and resubmit a new command with 1246 * the CDB adjusted. If the SIM does the right thing, 1247 * all of the resid math should work. 1248 */ 1249 softc->ccbs_freed++; 1250 xpt_release_ccb(done_ccb); 1251 if (ctlfe_adjust_cdb(atio, srr_off) == 0) { 1252 done_ccb = (union ccb *)atio; 1253 goto resubmit; 1254 } 1255 /* 1256 * Fall through to doom.... 1257 */ 1258 } else if (srr) { 1259 /* 1260 * If we have an srr and we're still sending data, we 1261 * should be able to adjust offsets and cycle again. 1262 */ 1263 io->scsiio.kern_rel_offset = 1264 io->scsiio.ext_data_filled = srr_off; 1265 io->scsiio.ext_data_len = io->scsiio.kern_total_len - 1266 io->scsiio.kern_rel_offset; 1267 softc->ccbs_freed++; 1268 io->scsiio.io_hdr.status = CTL_STATUS_NONE; 1269 xpt_release_ccb(done_ccb); 1270 TAILQ_INSERT_HEAD(&softc->work_queue, &atio->ccb_h, 1271 periph_links.tqe); 1272 xpt_schedule(periph, /*priority*/ 1); 1273 break; 1274 } 1275 1276 if ((done_ccb->ccb_h.flags & CAM_SEND_STATUS) && 1277 (done_ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) 1278 io->io_hdr.flags |= CTL_FLAG_STATUS_SENT; 1279 1280 /* 1281 * If we were sending status back to the initiator, free up 1282 * resources. If we were doing a datamove, call the 1283 * datamove done routine. 1284 */ 1285 if ((io->io_hdr.flags & CTL_FLAG_DMA_INPROG) == 0) { 1286 softc->ccbs_freed++; 1287 xpt_release_ccb(done_ccb); 1288 /* 1289 * For a wildcard attachment, commands can come in 1290 * with a specific target/lun. Reset the target 1291 * and LUN fields back to the wildcard values before 1292 * we send them back down to the SIM. The SIM has 1293 * a wildcard LUN enabled, not whatever target/lun 1294 * these happened to be. 1295 */ 1296 if (softc->flags & CTLFE_LUN_WILDCARD) { 1297 atio->ccb_h.target_id = CAM_TARGET_WILDCARD; 1298 atio->ccb_h.target_lun = CAM_LUN_WILDCARD; 1299 } 1300 if (periph->flags & CAM_PERIPH_INVALID) { 1301 ctlfe_free_ccb(periph, (union ccb *)atio); 1302 } else { 1303 mtx_unlock(mtx); 1304 xpt_action((union ccb *)atio); 1305 return; 1306 } 1307 } else { 1308 struct ctlfe_cmd_info *cmd_info; 1309 struct ccb_scsiio *csio; 1310 1311 csio = &done_ccb->csio; 1312 cmd_info = io->io_hdr.ctl_private[CTL_PRIV_FRONTEND2].ptr; 1313 1314 io->io_hdr.flags &= ~CTL_FLAG_DMA_INPROG; 1315 1316 io->scsiio.ext_data_len += csio->dxfer_len; 1317 if (io->scsiio.ext_data_len > 1318 io->scsiio.kern_total_len) { 1319 xpt_print(periph->path, "%s: tag 0x%04x " 1320 "done len %u > total %u sent %u\n", 1321 __func__, io->scsiio.tag_num, 1322 io->scsiio.ext_data_len, 1323 io->scsiio.kern_total_len, 1324 io->scsiio.ext_data_filled); 1325 } 1326 /* 1327 * Translate CAM status to CTL status. Success 1328 * does not change the overall, ctl_io status. In 1329 * that case we just set port_status to 0. If we 1330 * have a failure, though, set a data phase error 1331 * for the overall ctl_io. 1332 */ 1333 switch (done_ccb->ccb_h.status & CAM_STATUS_MASK) { 1334 case CAM_REQ_CMP: 1335 io->io_hdr.port_status = 0; 1336 break; 1337 default: 1338 /* 1339 * XXX KDM we probably need to figure out a 1340 * standard set of errors that the SIM 1341 * drivers should return in the event of a 1342 * data transfer failure. A data phase 1343 * error will at least point the user to a 1344 * data transfer error of some sort. 1345 * Hopefully the SIM printed out some 1346 * additional information to give the user 1347 * a clue what happened. 1348 */ 1349 io->io_hdr.port_status = 0xbad1; 1350 ctl_set_data_phase_error(&io->scsiio); 1351 /* 1352 * XXX KDM figure out residual. 1353 */ 1354 break; 1355 } 1356 /* 1357 * If we had to break this S/G list into multiple 1358 * pieces, figure out where we are in the list, and 1359 * continue sending pieces if necessary. 1360 */ 1361 if ((cmd_info->flags & CTLFE_CMD_PIECEWISE) 1362 && (io->io_hdr.port_status == 0)) { 1363 ccb_flags flags; 1364 uint8_t scsi_status; 1365 uint8_t *data_ptr; 1366 uint32_t dxfer_len; 1367 1368 flags = atio->ccb_h.flags & 1369 (CAM_DIS_DISCONNECT| 1370 CAM_TAG_ACTION_VALID); 1371 1372 ctlfedata(softc, io, &flags, &data_ptr, 1373 &dxfer_len, &csio->sglist_cnt); 1374 1375 scsi_status = 0; 1376 1377 if (((flags & CAM_SEND_STATUS) == 0) 1378 && (dxfer_len == 0)) { 1379 printf("%s: tag %04x no status or " 1380 "len cdb = %02x\n", __func__, 1381 atio->tag_id, 1382 atio->cdb_io.cdb_bytes[0]); 1383 printf("%s: tag %04x io status %#x\n", 1384 __func__, atio->tag_id, 1385 io->io_hdr.status); 1386 } 1387 1388 cam_fill_ctio(csio, 1389 /*retries*/ 2, 1390 ctlfedone, 1391 flags, 1392 (flags & CAM_TAG_ACTION_VALID) ? 1393 MSG_SIMPLE_Q_TAG : 0, 1394 atio->tag_id, 1395 atio->init_id, 1396 scsi_status, 1397 /*data_ptr*/ data_ptr, 1398 /*dxfer_len*/ dxfer_len, 1399 /*timeout*/ 5 * 1000); 1400 1401 csio->ccb_h.flags |= CAM_UNLOCKED; 1402 csio->resid = 0; 1403 csio->ccb_h.ccb_atio = atio; 1404 io->io_hdr.flags |= CTL_FLAG_DMA_INPROG; 1405 softc->ctios_sent++; 1406 mtx_unlock(mtx); 1407 xpt_action((union ccb *)csio); 1408 } else { 1409 /* 1410 * Release the CTIO. The ATIO will be sent back 1411 * down to the SIM once we send status. 1412 */ 1413 softc->ccbs_freed++; 1414 xpt_release_ccb(done_ccb); 1415 mtx_unlock(mtx); 1416 1417 /* Call the backend move done callback */ 1418 io->scsiio.be_move_done(io); 1419 } 1420 return; 1421 } 1422 break; 1423 } 1424 case XPT_IMMEDIATE_NOTIFY: { 1425 union ctl_io *io; 1426 struct ccb_immediate_notify *inot; 1427 cam_status status; 1428 int send_ctl_io; 1429 1430 inot = &done_ccb->cin1; 1431 printf("%s: got XPT_IMMEDIATE_NOTIFY status %#x tag %#x " 1432 "seq %#x\n", __func__, inot->ccb_h.status, 1433 inot->tag_id, inot->seq_id); 1434 1435 io = done_ccb->ccb_h.io_ptr; 1436 ctl_zero_io(io); 1437 1438 send_ctl_io = 1; 1439 1440 io->io_hdr.io_type = CTL_IO_TASK; 1441 io->io_hdr.ctl_private[CTL_PRIV_FRONTEND].ptr =done_ccb; 1442 inot->ccb_h.io_ptr = io; 1443 io->io_hdr.nexus.initid.id = inot->initiator_id; 1444 io->io_hdr.nexus.targ_port = bus_softc->port.targ_port; 1445 io->io_hdr.nexus.targ_target.id = inot->ccb_h.target_id; 1446 io->io_hdr.nexus.targ_lun = inot->ccb_h.target_lun; 1447 /* XXX KDM should this be the tag_id? */ 1448 io->taskio.tag_num = inot->seq_id; 1449 1450 status = inot->ccb_h.status & CAM_STATUS_MASK; 1451 switch (status) { 1452 case CAM_SCSI_BUS_RESET: 1453 io->taskio.task_action = CTL_TASK_BUS_RESET; 1454 break; 1455 case CAM_BDR_SENT: 1456 io->taskio.task_action = CTL_TASK_TARGET_RESET; 1457 break; 1458 case CAM_MESSAGE_RECV: 1459 switch (inot->arg) { 1460 case MSG_ABORT_TASK_SET: 1461 io->taskio.task_action = 1462 CTL_TASK_ABORT_TASK_SET; 1463 break; 1464 case MSG_TARGET_RESET: 1465 io->taskio.task_action = 1466 CTL_TASK_TARGET_RESET; 1467 break; 1468 case MSG_ABORT_TASK: 1469 io->taskio.task_action = 1470 CTL_TASK_ABORT_TASK; 1471 break; 1472 case MSG_LOGICAL_UNIT_RESET: 1473 io->taskio.task_action = 1474 CTL_TASK_LUN_RESET; 1475 break; 1476 case MSG_CLEAR_TASK_SET: 1477 io->taskio.task_action = 1478 CTL_TASK_CLEAR_TASK_SET; 1479 break; 1480 case MSG_CLEAR_ACA: 1481 io->taskio.task_action = 1482 CTL_TASK_CLEAR_ACA; 1483 break; 1484 case MSG_NOOP: 1485 send_ctl_io = 0; 1486 break; 1487 default: 1488 xpt_print(periph->path, 1489 "%s: unsupported message 0x%x\n", 1490 __func__, inot->arg); 1491 send_ctl_io = 0; 1492 break; 1493 } 1494 break; 1495 case CAM_REQ_ABORTED: 1496 /* 1497 * This request was sent back by the driver. 1498 * XXX KDM what do we do here? 1499 */ 1500 send_ctl_io = 0; 1501 break; 1502 case CAM_REQ_INVALID: 1503 case CAM_PROVIDE_FAIL: 1504 default: 1505 /* 1506 * We should only get here if we're talking 1507 * to a talking to a SIM that is target 1508 * capable but supports the old API. In 1509 * that case, we need to just free the CCB. 1510 * If we actually send a notify acknowledge, 1511 * it will send that back with an error as 1512 * well. 1513 */ 1514 1515 if ((status != CAM_REQ_INVALID) 1516 && (status != CAM_PROVIDE_FAIL)) 1517 xpt_print(periph->path, 1518 "%s: unsupported CAM status 0x%x\n", 1519 __func__, status); 1520 1521 ctlfe_free_ccb(periph, done_ccb); 1522 1523 goto out; 1524 } 1525 if (send_ctl_io != 0) { 1526 ctl_queue(io); 1527 } else { 1528 done_ccb->ccb_h.status = CAM_REQ_INPROG; 1529 done_ccb->ccb_h.func_code = XPT_NOTIFY_ACKNOWLEDGE; 1530 xpt_action(done_ccb); 1531 } 1532 break; 1533 } 1534 case XPT_NOTIFY_ACKNOWLEDGE: 1535 /* 1536 * Queue this back down to the SIM as an immediate notify. 1537 */ 1538 done_ccb->ccb_h.func_code = XPT_IMMEDIATE_NOTIFY; 1539 xpt_action(done_ccb); 1540 break; 1541 case XPT_SET_SIM_KNOB: 1542 case XPT_GET_SIM_KNOB: 1543 break; 1544 default: 1545 panic("%s: unexpected CCB type %#x", __func__, 1546 done_ccb->ccb_h.func_code); 1547 break; 1548 } 1549 1550 out: 1551 mtx_unlock(mtx); 1552 } 1553 1554 static void 1555 ctlfe_onoffline(void *arg, int online) 1556 { 1557 struct ctlfe_softc *bus_softc; 1558 union ccb *ccb; 1559 cam_status status; 1560 struct cam_path *path; 1561 int set_wwnn; 1562 1563 bus_softc = (struct ctlfe_softc *)arg; 1564 1565 set_wwnn = 0; 1566 1567 status = xpt_create_path(&path, /*periph*/ NULL, bus_softc->path_id, 1568 CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD); 1569 if (status != CAM_REQ_CMP) { 1570 printf("%s: unable to create path!\n", __func__); 1571 return; 1572 } 1573 ccb = xpt_alloc_ccb(); 1574 xpt_setup_ccb(&ccb->ccb_h, path, CAM_PRIORITY_NONE); 1575 ccb->ccb_h.func_code = XPT_GET_SIM_KNOB; 1576 xpt_action(ccb); 1577 1578 /* 1579 * Copan WWN format: 1580 * 1581 * Bits 63-60: 0x5 NAA, IEEE registered name 1582 * Bits 59-36: 0x000ED5 IEEE Company name assigned to Copan 1583 * Bits 35-12: Copan SSN (Sequential Serial Number) 1584 * Bits 11-8: Type of port: 1585 * 1 == N-Port 1586 * 2 == F-Port 1587 * 3 == NL-Port 1588 * Bits 7-0: 0 == Node Name, >0 == Port Number 1589 */ 1590 if (online != 0) { 1591 if ((ccb->knob.xport_specific.valid & KNOB_VALID_ADDRESS) != 0){ 1592 #ifdef RANDOM_WWNN 1593 uint64_t random_bits; 1594 #endif 1595 1596 printf("%s: %s current WWNN %#jx\n", __func__, 1597 bus_softc->port_name, 1598 ccb->knob.xport_specific.fc.wwnn); 1599 printf("%s: %s current WWPN %#jx\n", __func__, 1600 bus_softc->port_name, 1601 ccb->knob.xport_specific.fc.wwpn); 1602 1603 #ifdef RANDOM_WWNN 1604 arc4rand(&random_bits, sizeof(random_bits), 0); 1605 #endif 1606 1607 /* 1608 * XXX KDM this is a bit of a kludge for now. We 1609 * take the current WWNN/WWPN from the card, and 1610 * replace the company identifier and the NL-Port 1611 * indicator and the port number (for the WWPN). 1612 * This should be replaced later with ddb_GetWWNN, 1613 * or possibly a more centralized scheme. (It 1614 * would be nice to have the WWNN/WWPN for each 1615 * port stored in the ctl_port structure.) 1616 */ 1617 #ifdef RANDOM_WWNN 1618 ccb->knob.xport_specific.fc.wwnn = 1619 (random_bits & 1620 0x0000000fffffff00ULL) | 1621 /* Company ID */ 0x5000ED5000000000ULL | 1622 /* NL-Port */ 0x0300; 1623 ccb->knob.xport_specific.fc.wwpn = 1624 (random_bits & 1625 0x0000000fffffff00ULL) | 1626 /* Company ID */ 0x5000ED5000000000ULL | 1627 /* NL-Port */ 0x3000 | 1628 /* Port Num */ (bus_softc->port.targ_port & 0xff); 1629 1630 /* 1631 * This is a bit of an API break/reversal, but if 1632 * we're doing the random WWNN that's a little 1633 * different anyway. So record what we're actually 1634 * using with the frontend code so it's reported 1635 * accurately. 1636 */ 1637 ctl_port_set_wwns(&bus_softc->port, 1638 true, ccb->knob.xport_specific.fc.wwnn, 1639 true, ccb->knob.xport_specific.fc.wwpn); 1640 set_wwnn = 1; 1641 #else /* RANDOM_WWNN */ 1642 /* 1643 * If the user has specified a WWNN/WWPN, send them 1644 * down to the SIM. Otherwise, record what the SIM 1645 * has reported. 1646 */ 1647 if (bus_softc->port.wwnn != 0 && bus_softc->port.wwnn 1648 != ccb->knob.xport_specific.fc.wwnn) { 1649 ccb->knob.xport_specific.fc.wwnn = 1650 bus_softc->port.wwnn; 1651 set_wwnn = 1; 1652 } else { 1653 ctl_port_set_wwns(&bus_softc->port, 1654 true, ccb->knob.xport_specific.fc.wwnn, 1655 false, 0); 1656 } 1657 if (bus_softc->port.wwpn != 0 && bus_softc->port.wwpn 1658 != ccb->knob.xport_specific.fc.wwpn) { 1659 ccb->knob.xport_specific.fc.wwpn = 1660 bus_softc->port.wwpn; 1661 set_wwnn = 1; 1662 } else { 1663 ctl_port_set_wwns(&bus_softc->port, 1664 false, 0, 1665 true, ccb->knob.xport_specific.fc.wwpn); 1666 } 1667 #endif /* RANDOM_WWNN */ 1668 1669 1670 if (set_wwnn != 0) { 1671 printf("%s: %s new WWNN %#jx\n", __func__, 1672 bus_softc->port_name, 1673 ccb->knob.xport_specific.fc.wwnn); 1674 printf("%s: %s new WWPN %#jx\n", __func__, 1675 bus_softc->port_name, 1676 ccb->knob.xport_specific.fc.wwpn); 1677 } 1678 } else { 1679 printf("%s: %s has no valid WWNN/WWPN\n", __func__, 1680 bus_softc->port_name); 1681 } 1682 } 1683 ccb->ccb_h.func_code = XPT_SET_SIM_KNOB; 1684 ccb->knob.xport_specific.valid = KNOB_VALID_ROLE; 1685 if (set_wwnn != 0) 1686 ccb->knob.xport_specific.valid |= KNOB_VALID_ADDRESS; 1687 1688 if (online != 0) 1689 ccb->knob.xport_specific.fc.role |= KNOB_ROLE_TARGET; 1690 else 1691 ccb->knob.xport_specific.fc.role &= ~KNOB_ROLE_TARGET; 1692 1693 xpt_action(ccb); 1694 1695 if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1696 printf("%s: SIM %s (path id %d) target %s failed with " 1697 "status %#x\n", 1698 __func__, bus_softc->port_name, bus_softc->path_id, 1699 (online != 0) ? "enable" : "disable", 1700 ccb->ccb_h.status); 1701 } else { 1702 printf("%s: SIM %s (path id %d) target %s succeeded\n", 1703 __func__, bus_softc->port_name, bus_softc->path_id, 1704 (online != 0) ? "enable" : "disable"); 1705 } 1706 1707 xpt_free_path(path); 1708 xpt_free_ccb(ccb); 1709 } 1710 1711 static void 1712 ctlfe_online(void *arg) 1713 { 1714 struct ctlfe_softc *bus_softc; 1715 struct cam_path *path; 1716 cam_status status; 1717 struct ctlfe_lun_softc *lun_softc; 1718 struct cam_periph *periph; 1719 1720 bus_softc = (struct ctlfe_softc *)arg; 1721 1722 /* 1723 * Create the wildcard LUN before bringing the port online. 1724 */ 1725 status = xpt_create_path(&path, /*periph*/ NULL, 1726 bus_softc->path_id, CAM_TARGET_WILDCARD, 1727 CAM_LUN_WILDCARD); 1728 if (status != CAM_REQ_CMP) { 1729 printf("%s: unable to create path for wildcard periph\n", 1730 __func__); 1731 return; 1732 } 1733 1734 lun_softc = malloc(sizeof(*lun_softc), M_CTLFE, M_WAITOK | M_ZERO); 1735 1736 xpt_path_lock(path); 1737 periph = cam_periph_find(path, "ctl"); 1738 if (periph != NULL) { 1739 /* We've already got a periph, no need to alloc a new one. */ 1740 xpt_path_unlock(path); 1741 xpt_free_path(path); 1742 free(lun_softc, M_CTLFE); 1743 return; 1744 } 1745 lun_softc->parent_softc = bus_softc; 1746 lun_softc->flags |= CTLFE_LUN_WILDCARD; 1747 1748 status = cam_periph_alloc(ctlferegister, 1749 ctlfeoninvalidate, 1750 ctlfecleanup, 1751 ctlfestart, 1752 "ctl", 1753 CAM_PERIPH_BIO, 1754 path, 1755 ctlfeasync, 1756 0, 1757 lun_softc); 1758 1759 if ((status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1760 const struct cam_status_entry *entry; 1761 1762 entry = cam_fetch_status_entry(status); 1763 printf("%s: CAM error %s (%#x) returned from " 1764 "cam_periph_alloc()\n", __func__, (entry != NULL) ? 1765 entry->status_text : "Unknown", status); 1766 free(lun_softc, M_CTLFE); 1767 } 1768 1769 xpt_path_unlock(path); 1770 ctlfe_onoffline(arg, /*online*/ 1); 1771 xpt_free_path(path); 1772 } 1773 1774 static void 1775 ctlfe_offline(void *arg) 1776 { 1777 struct ctlfe_softc *bus_softc; 1778 struct cam_path *path; 1779 cam_status status; 1780 struct cam_periph *periph; 1781 1782 bus_softc = (struct ctlfe_softc *)arg; 1783 1784 ctlfe_onoffline(arg, /*online*/ 0); 1785 1786 /* 1787 * Disable the wildcard LUN for this port now that we have taken 1788 * the port offline. 1789 */ 1790 status = xpt_create_path(&path, /*periph*/ NULL, 1791 bus_softc->path_id, CAM_TARGET_WILDCARD, 1792 CAM_LUN_WILDCARD); 1793 if (status != CAM_REQ_CMP) { 1794 printf("%s: unable to create path for wildcard periph\n", 1795 __func__); 1796 return; 1797 } 1798 xpt_path_lock(path); 1799 if ((periph = cam_periph_find(path, "ctl")) != NULL) 1800 cam_periph_invalidate(periph); 1801 xpt_path_unlock(path); 1802 xpt_free_path(path); 1803 } 1804 1805 /* 1806 * This will get called to enable a LUN on every bus that is attached to 1807 * CTL. So we only need to create a path/periph for this particular bus. 1808 */ 1809 static int 1810 ctlfe_lun_enable(void *arg, int lun_id) 1811 { 1812 struct ctlfe_softc *bus_softc; 1813 struct ctlfe_lun_softc *softc; 1814 struct cam_path *path; 1815 struct cam_periph *periph; 1816 cam_status status; 1817 1818 bus_softc = (struct ctlfe_softc *)arg; 1819 1820 status = xpt_create_path(&path, /*periph*/ NULL, 1821 bus_softc->path_id, bus_softc->target_id, lun_id); 1822 /* XXX KDM need some way to return status to CTL here? */ 1823 if (status != CAM_REQ_CMP) { 1824 printf("%s: could not create path, status %#x\n", __func__, 1825 status); 1826 return (1); 1827 } 1828 1829 softc = malloc(sizeof(*softc), M_CTLFE, M_WAITOK | M_ZERO); 1830 xpt_path_lock(path); 1831 periph = cam_periph_find(path, "ctl"); 1832 if (periph != NULL) { 1833 /* We've already got a periph, no need to alloc a new one. */ 1834 xpt_path_unlock(path); 1835 xpt_free_path(path); 1836 free(softc, M_CTLFE); 1837 return (0); 1838 } 1839 softc->parent_softc = bus_softc; 1840 1841 status = cam_periph_alloc(ctlferegister, 1842 ctlfeoninvalidate, 1843 ctlfecleanup, 1844 ctlfestart, 1845 "ctl", 1846 CAM_PERIPH_BIO, 1847 path, 1848 ctlfeasync, 1849 0, 1850 softc); 1851 1852 if ((status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1853 const struct cam_status_entry *entry; 1854 1855 entry = cam_fetch_status_entry(status); 1856 printf("%s: CAM error %s (%#x) returned from " 1857 "cam_periph_alloc()\n", __func__, (entry != NULL) ? 1858 entry->status_text : "Unknown", status); 1859 free(softc, M_CTLFE); 1860 } 1861 1862 xpt_path_unlock(path); 1863 xpt_free_path(path); 1864 return (0); 1865 } 1866 1867 /* 1868 * This will get called when the user removes a LUN to disable that LUN 1869 * on every bus that is attached to CTL. 1870 */ 1871 static int 1872 ctlfe_lun_disable(void *arg, int lun_id) 1873 { 1874 struct ctlfe_softc *softc; 1875 struct ctlfe_lun_softc *lun_softc; 1876 1877 softc = (struct ctlfe_softc *)arg; 1878 1879 mtx_lock(&softc->lun_softc_mtx); 1880 STAILQ_FOREACH(lun_softc, &softc->lun_softc_list, links) { 1881 struct cam_path *path; 1882 1883 path = lun_softc->periph->path; 1884 1885 if ((xpt_path_target_id(path) == 0) 1886 && (xpt_path_lun_id(path) == lun_id)) { 1887 break; 1888 } 1889 } 1890 if (lun_softc == NULL) { 1891 mtx_unlock(&softc->lun_softc_mtx); 1892 printf("%s: can't find lun %d\n", __func__, lun_id); 1893 return (1); 1894 } 1895 cam_periph_acquire(lun_softc->periph); 1896 mtx_unlock(&softc->lun_softc_mtx); 1897 1898 cam_periph_lock(lun_softc->periph); 1899 cam_periph_invalidate(lun_softc->periph); 1900 cam_periph_unlock(lun_softc->periph); 1901 cam_periph_release(lun_softc->periph); 1902 return (0); 1903 } 1904 1905 static void 1906 ctlfe_dump_sim(struct cam_sim *sim) 1907 { 1908 1909 printf("%s%d: max tagged openings: %d, max dev openings: %d\n", 1910 sim->sim_name, sim->unit_number, 1911 sim->max_tagged_dev_openings, sim->max_dev_openings); 1912 } 1913 1914 /* 1915 * Assumes that the SIM lock is held. 1916 */ 1917 static void 1918 ctlfe_dump_queue(struct ctlfe_lun_softc *softc) 1919 { 1920 struct ccb_hdr *hdr; 1921 struct cam_periph *periph; 1922 int num_items; 1923 1924 periph = softc->periph; 1925 num_items = 0; 1926 1927 TAILQ_FOREACH(hdr, &softc->work_queue, periph_links.tqe) { 1928 union ctl_io *io = hdr->io_ptr; 1929 1930 num_items++; 1931 1932 /* 1933 * Only regular SCSI I/O is put on the work 1934 * queue, so we can print sense here. There may be no 1935 * sense if it's no the queue for a DMA, but this serves to 1936 * print out the CCB as well. 1937 * 1938 * XXX KDM switch this over to scsi_sense_print() when 1939 * CTL is merged in with CAM. 1940 */ 1941 ctl_io_error_print(io, NULL); 1942 1943 /* 1944 * Print DMA status if we are DMA_QUEUED. 1945 */ 1946 if (io->io_hdr.flags & CTL_FLAG_DMA_QUEUED) { 1947 xpt_print(periph->path, 1948 "Total %u, Current %u, Resid %u\n", 1949 io->scsiio.kern_total_len, 1950 io->scsiio.kern_data_len, 1951 io->scsiio.kern_data_resid); 1952 } 1953 } 1954 1955 xpt_print(periph->path, "%d requests total waiting for CCBs\n", 1956 num_items); 1957 xpt_print(periph->path, "%ju CCBs outstanding (%ju allocated, %ju " 1958 "freed)\n", (uintmax_t)(softc->ccbs_alloced - 1959 softc->ccbs_freed), (uintmax_t)softc->ccbs_alloced, 1960 (uintmax_t)softc->ccbs_freed); 1961 xpt_print(periph->path, "%ju CTIOs outstanding (%ju sent, %ju " 1962 "returned\n", (uintmax_t)(softc->ctios_sent - 1963 softc->ctios_returned), softc->ctios_sent, 1964 softc->ctios_returned); 1965 } 1966 1967 /* 1968 * Datamove/done routine called by CTL. Put ourselves on the queue to 1969 * receive a CCB from CAM so we can queue the continue I/O request down 1970 * to the adapter. 1971 */ 1972 static void 1973 ctlfe_datamove(union ctl_io *io) 1974 { 1975 union ccb *ccb; 1976 struct cam_periph *periph; 1977 struct ctlfe_lun_softc *softc; 1978 1979 KASSERT(io->io_hdr.io_type == CTL_IO_SCSI, 1980 ("Unexpected io_type (%d) in ctlfe_datamove", io->io_hdr.io_type)); 1981 1982 ccb = io->io_hdr.ctl_private[CTL_PRIV_FRONTEND].ptr; 1983 periph = xpt_path_periph(ccb->ccb_h.path); 1984 cam_periph_lock(periph); 1985 softc = (struct ctlfe_lun_softc *)periph->softc; 1986 io->io_hdr.flags |= CTL_FLAG_DMA_QUEUED; 1987 if ((io->io_hdr.status & CTL_STATUS_MASK) != CTL_STATUS_NONE) 1988 io->io_hdr.flags |= CTL_FLAG_STATUS_QUEUED; 1989 TAILQ_INSERT_TAIL(&softc->work_queue, &ccb->ccb_h, 1990 periph_links.tqe); 1991 xpt_schedule(periph, /*priority*/ 1); 1992 cam_periph_unlock(periph); 1993 } 1994 1995 static void 1996 ctlfe_done(union ctl_io *io) 1997 { 1998 union ccb *ccb; 1999 struct cam_periph *periph; 2000 struct ctlfe_lun_softc *softc; 2001 2002 ccb = io->io_hdr.ctl_private[CTL_PRIV_FRONTEND].ptr; 2003 periph = xpt_path_periph(ccb->ccb_h.path); 2004 cam_periph_lock(periph); 2005 softc = (struct ctlfe_lun_softc *)periph->softc; 2006 2007 if (io->io_hdr.io_type == CTL_IO_TASK) { 2008 /* 2009 * Task management commands don't require any further 2010 * communication back to the adapter. Requeue the CCB 2011 * to the adapter, and free the CTL I/O. 2012 */ 2013 xpt_print(ccb->ccb_h.path, "%s: returning task I/O " 2014 "tag %#x seq %#x\n", __func__, 2015 ccb->cin1.tag_id, ccb->cin1.seq_id); 2016 /* 2017 * Send the notify acknowledge down to the SIM, to let it 2018 * know we processed the task management command. 2019 */ 2020 ccb->ccb_h.status = CAM_REQ_INPROG; 2021 ccb->ccb_h.func_code = XPT_NOTIFY_ACKNOWLEDGE; 2022 xpt_action(ccb); 2023 } else if (io->io_hdr.flags & CTL_FLAG_STATUS_SENT) { 2024 if (softc->flags & CTLFE_LUN_WILDCARD) { 2025 ccb->ccb_h.target_id = CAM_TARGET_WILDCARD; 2026 ccb->ccb_h.target_lun = CAM_LUN_WILDCARD; 2027 } 2028 if (periph->flags & CAM_PERIPH_INVALID) { 2029 ctlfe_free_ccb(periph, ccb); 2030 } else { 2031 cam_periph_unlock(periph); 2032 xpt_action(ccb); 2033 return; 2034 } 2035 } else { 2036 io->io_hdr.flags |= CTL_FLAG_STATUS_QUEUED; 2037 TAILQ_INSERT_TAIL(&softc->work_queue, &ccb->ccb_h, 2038 periph_links.tqe); 2039 xpt_schedule(periph, /*priority*/ 1); 2040 } 2041 2042 cam_periph_unlock(periph); 2043 } 2044 2045 static void 2046 ctlfe_dump(void) 2047 { 2048 struct ctlfe_softc *bus_softc; 2049 struct ctlfe_lun_softc *lun_softc; 2050 2051 STAILQ_FOREACH(bus_softc, &ctlfe_softc_list, links) { 2052 ctlfe_dump_sim(bus_softc->sim); 2053 STAILQ_FOREACH(lun_softc, &bus_softc->lun_softc_list, links) 2054 ctlfe_dump_queue(lun_softc); 2055 } 2056 } 2057