Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.13-rc4 1525 lines 44 kB view raw
1/* 2 * scsi_scan.c 3 * 4 * Copyright (C) 2000 Eric Youngdale, 5 * Copyright (C) 2002 Patrick Mansfield 6 * 7 * The general scanning/probing algorithm is as follows, exceptions are 8 * made to it depending on device specific flags, compilation options, and 9 * global variable (boot or module load time) settings. 10 * 11 * A specific LUN is scanned via an INQUIRY command; if the LUN has a 12 * device attached, a Scsi_Device is allocated and setup for it. 13 * 14 * For every id of every channel on the given host: 15 * 16 * Scan LUN 0; if the target responds to LUN 0 (even if there is no 17 * device or storage attached to LUN 0): 18 * 19 * If LUN 0 has a device attached, allocate and setup a 20 * Scsi_Device for it. 21 * 22 * If target is SCSI-3 or up, issue a REPORT LUN, and scan 23 * all of the LUNs returned by the REPORT LUN; else, 24 * sequentially scan LUNs up until some maximum is reached, 25 * or a LUN is seen that cannot have a device attached to it. 26 */ 27 28#include <linux/config.h> 29#include <linux/module.h> 30#include <linux/moduleparam.h> 31#include <linux/init.h> 32#include <linux/blkdev.h> 33#include <asm/semaphore.h> 34 35#include <scsi/scsi.h> 36#include <scsi/scsi_device.h> 37#include <scsi/scsi_driver.h> 38#include <scsi/scsi_devinfo.h> 39#include <scsi/scsi_host.h> 40#include <scsi/scsi_request.h> 41#include <scsi/scsi_transport.h> 42#include <scsi/scsi_eh.h> 43 44#include "scsi_priv.h" 45#include "scsi_logging.h" 46 47#define ALLOC_FAILURE_MSG KERN_ERR "%s: Allocation failure during" \ 48 " SCSI scanning, some SCSI devices might not be configured\n" 49 50/* 51 * Default timeout 52 */ 53#define SCSI_TIMEOUT (2*HZ) 54 55/* 56 * Prefix values for the SCSI id's (stored in driverfs name field) 57 */ 58#define SCSI_UID_SER_NUM 'S' 59#define SCSI_UID_UNKNOWN 'Z' 60 61/* 62 * Return values of some of the scanning functions. 63 * 64 * SCSI_SCAN_NO_RESPONSE: no valid response received from the target, this 65 * includes allocation or general failures preventing IO from being sent. 66 * 67 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is available 68 * on the given LUN. 69 * 70 * SCSI_SCAN_LUN_PRESENT: target responded, and a device is available on a 71 * given LUN. 72 */ 73#define SCSI_SCAN_NO_RESPONSE 0 74#define SCSI_SCAN_TARGET_PRESENT 1 75#define SCSI_SCAN_LUN_PRESENT 2 76 77static char *scsi_null_device_strs = "nullnullnullnull"; 78 79#define MAX_SCSI_LUNS 512 80 81#ifdef CONFIG_SCSI_MULTI_LUN 82static unsigned int max_scsi_luns = MAX_SCSI_LUNS; 83#else 84static unsigned int max_scsi_luns = 1; 85#endif 86 87module_param_named(max_luns, max_scsi_luns, int, S_IRUGO|S_IWUSR); 88MODULE_PARM_DESC(max_luns, 89 "last scsi LUN (should be between 1 and 2^32-1)"); 90 91/* 92 * max_scsi_report_luns: the maximum number of LUNS that will be 93 * returned from the REPORT LUNS command. 8 times this value must 94 * be allocated. In theory this could be up to an 8 byte value, but 95 * in practice, the maximum number of LUNs suppored by any device 96 * is about 16k. 97 */ 98static unsigned int max_scsi_report_luns = 511; 99 100module_param_named(max_report_luns, max_scsi_report_luns, int, S_IRUGO|S_IWUSR); 101MODULE_PARM_DESC(max_report_luns, 102 "REPORT LUNS maximum number of LUNS received (should be" 103 " between 1 and 16384)"); 104 105static unsigned int scsi_inq_timeout = SCSI_TIMEOUT/HZ+3; 106 107module_param_named(inq_timeout, scsi_inq_timeout, int, S_IRUGO|S_IWUSR); 108MODULE_PARM_DESC(inq_timeout, 109 "Timeout (in seconds) waiting for devices to answer INQUIRY." 110 " Default is 5. Some non-compliant devices need more."); 111 112/** 113 * scsi_unlock_floptical - unlock device via a special MODE SENSE command 114 * @sreq: used to send the command 115 * @result: area to store the result of the MODE SENSE 116 * 117 * Description: 118 * Send a vendor specific MODE SENSE (not a MODE SELECT) command using 119 * @sreq to unlock a device, storing the (unused) results into result. 120 * Called for BLIST_KEY devices. 121 **/ 122static void scsi_unlock_floptical(struct scsi_request *sreq, 123 unsigned char *result) 124{ 125 unsigned char scsi_cmd[MAX_COMMAND_SIZE]; 126 127 printk(KERN_NOTICE "scsi: unlocking floptical drive\n"); 128 scsi_cmd[0] = MODE_SENSE; 129 scsi_cmd[1] = 0; 130 scsi_cmd[2] = 0x2e; 131 scsi_cmd[3] = 0; 132 scsi_cmd[4] = 0x2a; /* size */ 133 scsi_cmd[5] = 0; 134 sreq->sr_cmd_len = 0; 135 sreq->sr_data_direction = DMA_FROM_DEVICE; 136 scsi_wait_req(sreq, scsi_cmd, result, 0x2a /* size */, SCSI_TIMEOUT, 3); 137} 138 139/** 140 * print_inquiry - printk the inquiry information 141 * @inq_result: printk this SCSI INQUIRY 142 * 143 * Description: 144 * printk the vendor, model, and other information found in the 145 * INQUIRY data in @inq_result. 146 * 147 * Notes: 148 * Remove this, and replace with a hotplug event that logs any 149 * relevant information. 150 **/ 151static void print_inquiry(unsigned char *inq_result) 152{ 153 int i; 154 155 printk(KERN_NOTICE " Vendor: "); 156 for (i = 8; i < 16; i++) 157 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5) 158 printk("%c", inq_result[i]); 159 else 160 printk(" "); 161 162 printk(" Model: "); 163 for (i = 16; i < 32; i++) 164 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5) 165 printk("%c", inq_result[i]); 166 else 167 printk(" "); 168 169 printk(" Rev: "); 170 for (i = 32; i < 36; i++) 171 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5) 172 printk("%c", inq_result[i]); 173 else 174 printk(" "); 175 176 printk("\n"); 177 178 i = inq_result[0] & 0x1f; 179 180 printk(KERN_NOTICE " Type: %s ", 181 i < 182 MAX_SCSI_DEVICE_CODE ? scsi_device_types[i] : 183 "Unknown "); 184 printk(" ANSI SCSI revision: %02x", 185 inq_result[2] & 0x07); 186 if ((inq_result[2] & 0x07) == 1 && (inq_result[3] & 0x0f) == 1) 187 printk(" CCS\n"); 188 else 189 printk("\n"); 190} 191 192/** 193 * scsi_alloc_sdev - allocate and setup a scsi_Device 194 * 195 * Description: 196 * Allocate, initialize for io, and return a pointer to a scsi_Device. 197 * Stores the @shost, @channel, @id, and @lun in the scsi_Device, and 198 * adds scsi_Device to the appropriate list. 199 * 200 * Return value: 201 * scsi_Device pointer, or NULL on failure. 202 **/ 203static struct scsi_device *scsi_alloc_sdev(struct scsi_target *starget, 204 unsigned int lun, void *hostdata) 205{ 206 struct scsi_device *sdev; 207 int display_failure_msg = 1, ret; 208 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); 209 210 sdev = kmalloc(sizeof(*sdev) + shost->transportt->device_size, 211 GFP_ATOMIC); 212 if (!sdev) 213 goto out; 214 215 memset(sdev, 0, sizeof(*sdev)); 216 sdev->vendor = scsi_null_device_strs; 217 sdev->model = scsi_null_device_strs; 218 sdev->rev = scsi_null_device_strs; 219 sdev->host = shost; 220 sdev->id = starget->id; 221 sdev->lun = lun; 222 sdev->channel = starget->channel; 223 sdev->sdev_state = SDEV_CREATED; 224 INIT_LIST_HEAD(&sdev->siblings); 225 INIT_LIST_HEAD(&sdev->same_target_siblings); 226 INIT_LIST_HEAD(&sdev->cmd_list); 227 INIT_LIST_HEAD(&sdev->starved_entry); 228 spin_lock_init(&sdev->list_lock); 229 230 sdev->sdev_gendev.parent = get_device(&starget->dev); 231 sdev->sdev_target = starget; 232 233 /* usually NULL and set by ->slave_alloc instead */ 234 sdev->hostdata = hostdata; 235 236 /* if the device needs this changing, it may do so in the 237 * slave_configure function */ 238 sdev->max_device_blocked = SCSI_DEFAULT_DEVICE_BLOCKED; 239 240 /* 241 * Some low level driver could use device->type 242 */ 243 sdev->type = -1; 244 245 /* 246 * Assume that the device will have handshaking problems, 247 * and then fix this field later if it turns out it 248 * doesn't 249 */ 250 sdev->borken = 1; 251 252 sdev->request_queue = scsi_alloc_queue(sdev); 253 if (!sdev->request_queue) { 254 /* release fn is set up in scsi_sysfs_device_initialise, so 255 * have to free and put manually here */ 256 put_device(&starget->dev); 257 goto out; 258 } 259 260 sdev->request_queue->queuedata = sdev; 261 scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun); 262 263 scsi_sysfs_device_initialize(sdev); 264 265 if (shost->hostt->slave_alloc) { 266 ret = shost->hostt->slave_alloc(sdev); 267 if (ret) { 268 /* 269 * if LLDD reports slave not present, don't clutter 270 * console with alloc failure messages 271 272 273 */ 274 if (ret == -ENXIO) 275 display_failure_msg = 0; 276 goto out_device_destroy; 277 } 278 } 279 280 return sdev; 281 282out_device_destroy: 283 transport_destroy_device(&sdev->sdev_gendev); 284 scsi_free_queue(sdev->request_queue); 285 put_device(&sdev->sdev_gendev); 286out: 287 if (display_failure_msg) 288 printk(ALLOC_FAILURE_MSG, __FUNCTION__); 289 return NULL; 290} 291 292static void scsi_target_dev_release(struct device *dev) 293{ 294 struct device *parent = dev->parent; 295 struct scsi_target *starget = to_scsi_target(dev); 296 struct Scsi_Host *shost = dev_to_shost(parent); 297 298 if (shost->hostt->target_destroy) 299 shost->hostt->target_destroy(starget); 300 kfree(starget); 301 put_device(parent); 302} 303 304int scsi_is_target_device(const struct device *dev) 305{ 306 return dev->release == scsi_target_dev_release; 307} 308EXPORT_SYMBOL(scsi_is_target_device); 309 310static struct scsi_target *__scsi_find_target(struct device *parent, 311 int channel, uint id) 312{ 313 struct scsi_target *starget, *found_starget = NULL; 314 struct Scsi_Host *shost = dev_to_shost(parent); 315 /* 316 * Search for an existing target for this sdev. 317 */ 318 list_for_each_entry(starget, &shost->__targets, siblings) { 319 if (starget->id == id && 320 starget->channel == channel) { 321 found_starget = starget; 322 break; 323 } 324 } 325 if (found_starget) 326 get_device(&found_starget->dev); 327 328 return found_starget; 329} 330 331static struct scsi_target *scsi_alloc_target(struct device *parent, 332 int channel, uint id) 333{ 334 struct Scsi_Host *shost = dev_to_shost(parent); 335 struct device *dev = NULL; 336 unsigned long flags; 337 const int size = sizeof(struct scsi_target) 338 + shost->transportt->target_size; 339 struct scsi_target *starget = kmalloc(size, GFP_ATOMIC); 340 struct scsi_target *found_target; 341 342 if (!starget) { 343 printk(KERN_ERR "%s: allocation failure\n", __FUNCTION__); 344 return NULL; 345 } 346 memset(starget, 0, size); 347 dev = &starget->dev; 348 device_initialize(dev); 349 starget->reap_ref = 1; 350 dev->parent = get_device(parent); 351 dev->release = scsi_target_dev_release; 352 sprintf(dev->bus_id, "target%d:%d:%d", 353 shost->host_no, channel, id); 354 starget->id = id; 355 starget->channel = channel; 356 INIT_LIST_HEAD(&starget->siblings); 357 INIT_LIST_HEAD(&starget->devices); 358 spin_lock_irqsave(shost->host_lock, flags); 359 360 found_target = __scsi_find_target(parent, channel, id); 361 if (found_target) 362 goto found; 363 364 list_add_tail(&starget->siblings, &shost->__targets); 365 spin_unlock_irqrestore(shost->host_lock, flags); 366 /* allocate and add */ 367 transport_setup_device(dev); 368 device_add(dev); 369 transport_add_device(dev); 370 if (shost->hostt->target_alloc) { 371 int error = shost->hostt->target_alloc(starget); 372 373 if(error) { 374 dev_printk(KERN_ERR, dev, "target allocation failed, error %d\n", error); 375 /* don't want scsi_target_reap to do the final 376 * put because it will be under the host lock */ 377 get_device(dev); 378 scsi_target_reap(starget); 379 put_device(dev); 380 return NULL; 381 } 382 } 383 384 return starget; 385 386 found: 387 found_target->reap_ref++; 388 spin_unlock_irqrestore(shost->host_lock, flags); 389 put_device(parent); 390 kfree(starget); 391 return found_target; 392} 393 394/** 395 * scsi_target_reap - check to see if target is in use and destroy if not 396 * 397 * @starget: target to be checked 398 * 399 * This is used after removing a LUN or doing a last put of the target 400 * it checks atomically that nothing is using the target and removes 401 * it if so. 402 */ 403void scsi_target_reap(struct scsi_target *starget) 404{ 405 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); 406 unsigned long flags; 407 spin_lock_irqsave(shost->host_lock, flags); 408 409 if (--starget->reap_ref == 0 && list_empty(&starget->devices)) { 410 list_del_init(&starget->siblings); 411 spin_unlock_irqrestore(shost->host_lock, flags); 412 device_del(&starget->dev); 413 transport_unregister_device(&starget->dev); 414 put_device(&starget->dev); 415 return; 416 } 417 spin_unlock_irqrestore(shost->host_lock, flags); 418} 419 420/** 421 * scsi_probe_lun - probe a single LUN using a SCSI INQUIRY 422 * @sreq: used to send the INQUIRY 423 * @inq_result: area to store the INQUIRY result 424 * @bflags: store any bflags found here 425 * 426 * Description: 427 * Probe the lun associated with @sreq using a standard SCSI INQUIRY; 428 * 429 * If the INQUIRY is successful, sreq->sr_result is zero and: the 430 * INQUIRY data is in @inq_result; the scsi_level and INQUIRY length 431 * are copied to the Scsi_Device at @sreq->sr_device (sdev); 432 * any flags value is stored in *@bflags. 433 **/ 434static void scsi_probe_lun(struct scsi_request *sreq, char *inq_result, 435 int *bflags) 436{ 437 struct scsi_device *sdev = sreq->sr_device; /* a bit ugly */ 438 unsigned char scsi_cmd[MAX_COMMAND_SIZE]; 439 int first_inquiry_len, try_inquiry_len, next_inquiry_len; 440 int response_len = 0; 441 int pass, count; 442 struct scsi_sense_hdr sshdr; 443 444 *bflags = 0; 445 446 /* Perform up to 3 passes. The first pass uses a conservative 447 * transfer length of 36 unless sdev->inquiry_len specifies a 448 * different value. */ 449 first_inquiry_len = sdev->inquiry_len ? sdev->inquiry_len : 36; 450 try_inquiry_len = first_inquiry_len; 451 pass = 1; 452 453 next_pass: 454 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: INQUIRY pass %d " 455 "to host %d channel %d id %d lun %d, length %d\n", 456 pass, sdev->host->host_no, sdev->channel, 457 sdev->id, sdev->lun, try_inquiry_len)); 458 459 /* Each pass gets up to three chances to ignore Unit Attention */ 460 for (count = 0; count < 3; ++count) { 461 memset(scsi_cmd, 0, 6); 462 scsi_cmd[0] = INQUIRY; 463 scsi_cmd[4] = (unsigned char) try_inquiry_len; 464 sreq->sr_cmd_len = 0; 465 sreq->sr_data_direction = DMA_FROM_DEVICE; 466 467 memset(inq_result, 0, try_inquiry_len); 468 scsi_wait_req(sreq, (void *) scsi_cmd, (void *) inq_result, 469 try_inquiry_len, 470 HZ/2 + HZ*scsi_inq_timeout, 3); 471 472 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: INQUIRY %s " 473 "with code 0x%x\n", 474 sreq->sr_result ? "failed" : "successful", 475 sreq->sr_result)); 476 477 if (sreq->sr_result) { 478 /* 479 * not-ready to ready transition [asc/ascq=0x28/0x0] 480 * or power-on, reset [asc/ascq=0x29/0x0], continue. 481 * INQUIRY should not yield UNIT_ATTENTION 482 * but many buggy devices do so anyway. 483 */ 484 if ((driver_byte(sreq->sr_result) & DRIVER_SENSE) && 485 scsi_request_normalize_sense(sreq, &sshdr)) { 486 if ((sshdr.sense_key == UNIT_ATTENTION) && 487 ((sshdr.asc == 0x28) || 488 (sshdr.asc == 0x29)) && 489 (sshdr.ascq == 0)) 490 continue; 491 } 492 } 493 break; 494 } 495 496 if (sreq->sr_result == 0) { 497 response_len = (unsigned char) inq_result[4] + 5; 498 if (response_len > 255) 499 response_len = first_inquiry_len; /* sanity */ 500 501 /* 502 * Get any flags for this device. 503 * 504 * XXX add a bflags to Scsi_Device, and replace the 505 * corresponding bit fields in Scsi_Device, so bflags 506 * need not be passed as an argument. 507 */ 508 *bflags = scsi_get_device_flags(sdev, &inq_result[8], 509 &inq_result[16]); 510 511 /* When the first pass succeeds we gain information about 512 * what larger transfer lengths might work. */ 513 if (pass == 1) { 514 if (BLIST_INQUIRY_36 & *bflags) 515 next_inquiry_len = 36; 516 else if (BLIST_INQUIRY_58 & *bflags) 517 next_inquiry_len = 58; 518 else if (sdev->inquiry_len) 519 next_inquiry_len = sdev->inquiry_len; 520 else 521 next_inquiry_len = response_len; 522 523 /* If more data is available perform the second pass */ 524 if (next_inquiry_len > try_inquiry_len) { 525 try_inquiry_len = next_inquiry_len; 526 pass = 2; 527 goto next_pass; 528 } 529 } 530 531 } else if (pass == 2) { 532 printk(KERN_INFO "scsi scan: %d byte inquiry failed. " 533 "Consider BLIST_INQUIRY_36 for this device\n", 534 try_inquiry_len); 535 536 /* If this pass failed, the third pass goes back and transfers 537 * the same amount as we successfully got in the first pass. */ 538 try_inquiry_len = first_inquiry_len; 539 pass = 3; 540 goto next_pass; 541 } 542 543 /* If the last transfer attempt got an error, assume the 544 * peripheral doesn't exist or is dead. */ 545 if (sreq->sr_result) 546 return; 547 548 /* Don't report any more data than the device says is valid */ 549 sdev->inquiry_len = min(try_inquiry_len, response_len); 550 551 /* 552 * XXX Abort if the response length is less than 36? If less than 553 * 32, the lookup of the device flags (above) could be invalid, 554 * and it would be possible to take an incorrect action - we do 555 * not want to hang because of a short INQUIRY. On the flip side, 556 * if the device is spun down or becoming ready (and so it gives a 557 * short INQUIRY), an abort here prevents any further use of the 558 * device, including spin up. 559 * 560 * Related to the above issue: 561 * 562 * XXX Devices (disk or all?) should be sent a TEST UNIT READY, 563 * and if not ready, sent a START_STOP to start (maybe spin up) and 564 * then send the INQUIRY again, since the INQUIRY can change after 565 * a device is initialized. 566 * 567 * Ideally, start a device if explicitly asked to do so. This 568 * assumes that a device is spun up on power on, spun down on 569 * request, and then spun up on request. 570 */ 571 572 /* 573 * The scanning code needs to know the scsi_level, even if no 574 * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so 575 * non-zero LUNs can be scanned. 576 */ 577 sdev->scsi_level = inq_result[2] & 0x07; 578 if (sdev->scsi_level >= 2 || 579 (sdev->scsi_level == 1 && (inq_result[3] & 0x0f) == 1)) 580 sdev->scsi_level++; 581 582 return; 583} 584 585/** 586 * scsi_add_lun - allocate and fully initialze a Scsi_Device 587 * @sdevscan: holds information to be stored in the new Scsi_Device 588 * @sdevnew: store the address of the newly allocated Scsi_Device 589 * @inq_result: holds the result of a previous INQUIRY to the LUN 590 * @bflags: black/white list flag 591 * 592 * Description: 593 * Allocate and initialize a Scsi_Device matching sdevscan. Optionally 594 * set fields based on values in *@bflags. If @sdevnew is not 595 * NULL, store the address of the new Scsi_Device in *@sdevnew (needed 596 * when scanning a particular LUN). 597 * 598 * Return: 599 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a Scsi_Device 600 * SCSI_SCAN_LUN_PRESENT: a new Scsi_Device was allocated and initialized 601 **/ 602static int scsi_add_lun(struct scsi_device *sdev, char *inq_result, int *bflags) 603{ 604 /* 605 * XXX do not save the inquiry, since it can change underneath us, 606 * save just vendor/model/rev. 607 * 608 * Rather than save it and have an ioctl that retrieves the saved 609 * value, have an ioctl that executes the same INQUIRY code used 610 * in scsi_probe_lun, let user level programs doing INQUIRY 611 * scanning run at their own risk, or supply a user level program 612 * that can correctly scan. 613 */ 614 sdev->inquiry = kmalloc(sdev->inquiry_len, GFP_ATOMIC); 615 if (sdev->inquiry == NULL) { 616 return SCSI_SCAN_NO_RESPONSE; 617 } 618 619 memcpy(sdev->inquiry, inq_result, sdev->inquiry_len); 620 sdev->vendor = (char *) (sdev->inquiry + 8); 621 sdev->model = (char *) (sdev->inquiry + 16); 622 sdev->rev = (char *) (sdev->inquiry + 32); 623 624 if (*bflags & BLIST_ISROM) { 625 /* 626 * It would be better to modify sdev->type, and set 627 * sdev->removable, but then the print_inquiry() output 628 * would not show TYPE_ROM; if print_inquiry() is removed 629 * the issue goes away. 630 */ 631 inq_result[0] = TYPE_ROM; 632 inq_result[1] |= 0x80; /* removable */ 633 } else if (*bflags & BLIST_NO_ULD_ATTACH) 634 sdev->no_uld_attach = 1; 635 636 switch (sdev->type = (inq_result[0] & 0x1f)) { 637 case TYPE_TAPE: 638 case TYPE_DISK: 639 case TYPE_PRINTER: 640 case TYPE_MOD: 641 case TYPE_PROCESSOR: 642 case TYPE_SCANNER: 643 case TYPE_MEDIUM_CHANGER: 644 case TYPE_ENCLOSURE: 645 case TYPE_COMM: 646 case TYPE_RBC: 647 sdev->writeable = 1; 648 break; 649 case TYPE_WORM: 650 case TYPE_ROM: 651 sdev->writeable = 0; 652 break; 653 default: 654 printk(KERN_INFO "scsi: unknown device type %d\n", sdev->type); 655 } 656 657 print_inquiry(inq_result); 658 659 /* 660 * For a peripheral qualifier (PQ) value of 1 (001b), the SCSI 661 * spec says: The device server is capable of supporting the 662 * specified peripheral device type on this logical unit. However, 663 * the physical device is not currently connected to this logical 664 * unit. 665 * 666 * The above is vague, as it implies that we could treat 001 and 667 * 011 the same. Stay compatible with previous code, and create a 668 * Scsi_Device for a PQ of 1 669 * 670 * Don't set the device offline here; rather let the upper 671 * level drivers eval the PQ to decide whether they should 672 * attach. So remove ((inq_result[0] >> 5) & 7) == 1 check. 673 */ 674 675 sdev->inq_periph_qual = (inq_result[0] >> 5) & 7; 676 sdev->removable = (0x80 & inq_result[1]) >> 7; 677 sdev->lockable = sdev->removable; 678 sdev->soft_reset = (inq_result[7] & 1) && ((inq_result[3] & 7) == 2); 679 680 if (sdev->scsi_level >= SCSI_3 || (sdev->inquiry_len > 56 && 681 inq_result[56] & 0x04)) 682 sdev->ppr = 1; 683 if (inq_result[7] & 0x60) 684 sdev->wdtr = 1; 685 if (inq_result[7] & 0x10) 686 sdev->sdtr = 1; 687 688 sprintf(sdev->devfs_name, "scsi/host%d/bus%d/target%d/lun%d", 689 sdev->host->host_no, sdev->channel, 690 sdev->id, sdev->lun); 691 692 /* 693 * End driverfs/devfs code. 694 */ 695 696 if ((sdev->scsi_level >= SCSI_2) && (inq_result[7] & 2) && 697 !(*bflags & BLIST_NOTQ)) 698 sdev->tagged_supported = 1; 699 /* 700 * Some devices (Texel CD ROM drives) have handshaking problems 701 * when used with the Seagate controllers. borken is initialized 702 * to 1, and then set it to 0 here. 703 */ 704 if ((*bflags & BLIST_BORKEN) == 0) 705 sdev->borken = 0; 706 707 /* 708 * Apparently some really broken devices (contrary to the SCSI 709 * standards) need to be selected without asserting ATN 710 */ 711 if (*bflags & BLIST_SELECT_NO_ATN) 712 sdev->select_no_atn = 1; 713 714 /* 715 * Some devices may not want to have a start command automatically 716 * issued when a device is added. 717 */ 718 if (*bflags & BLIST_NOSTARTONADD) 719 sdev->no_start_on_add = 1; 720 721 if (*bflags & BLIST_SINGLELUN) 722 sdev->single_lun = 1; 723 724 725 sdev->use_10_for_rw = 1; 726 727 if (*bflags & BLIST_MS_SKIP_PAGE_08) 728 sdev->skip_ms_page_8 = 1; 729 730 if (*bflags & BLIST_MS_SKIP_PAGE_3F) 731 sdev->skip_ms_page_3f = 1; 732 733 if (*bflags & BLIST_USE_10_BYTE_MS) 734 sdev->use_10_for_ms = 1; 735 736 /* set the device running here so that slave configure 737 * may do I/O */ 738 scsi_device_set_state(sdev, SDEV_RUNNING); 739 740 if (*bflags & BLIST_MS_192_BYTES_FOR_3F) 741 sdev->use_192_bytes_for_3f = 1; 742 743 if (*bflags & BLIST_NOT_LOCKABLE) 744 sdev->lockable = 0; 745 746 if (*bflags & BLIST_RETRY_HWERROR) 747 sdev->retry_hwerror = 1; 748 749 transport_configure_device(&sdev->sdev_gendev); 750 751 if (sdev->host->hostt->slave_configure) 752 sdev->host->hostt->slave_configure(sdev); 753 754 /* 755 * Ok, the device is now all set up, we can 756 * register it and tell the rest of the kernel 757 * about it. 758 */ 759 if (scsi_sysfs_add_sdev(sdev) != 0) 760 return SCSI_SCAN_NO_RESPONSE; 761 762 return SCSI_SCAN_LUN_PRESENT; 763} 764 765/** 766 * scsi_probe_and_add_lun - probe a LUN, if a LUN is found add it 767 * @starget: pointer to target device structure 768 * @lun: LUN of target device 769 * @sdevscan: probe the LUN corresponding to this Scsi_Device 770 * @sdevnew: store the value of any new Scsi_Device allocated 771 * @bflagsp: store bflags here if not NULL 772 * 773 * Description: 774 * Call scsi_probe_lun, if a LUN with an attached device is found, 775 * allocate and set it up by calling scsi_add_lun. 776 * 777 * Return: 778 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a Scsi_Device 779 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is 780 * attached at the LUN 781 * SCSI_SCAN_LUN_PRESENT: a new Scsi_Device was allocated and initialized 782 **/ 783static int scsi_probe_and_add_lun(struct scsi_target *starget, 784 uint lun, int *bflagsp, 785 struct scsi_device **sdevp, int rescan, 786 void *hostdata) 787{ 788 struct scsi_device *sdev; 789 struct scsi_request *sreq; 790 unsigned char *result; 791 int bflags, res = SCSI_SCAN_NO_RESPONSE; 792 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); 793 794 /* 795 * The rescan flag is used as an optimization, the first scan of a 796 * host adapter calls into here with rescan == 0. 797 */ 798 if (rescan) { 799 sdev = scsi_device_lookup_by_target(starget, lun); 800 if (sdev) { 801 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO 802 "scsi scan: device exists on %s\n", 803 sdev->sdev_gendev.bus_id)); 804 if (sdevp) 805 *sdevp = sdev; 806 else 807 scsi_device_put(sdev); 808 809 if (bflagsp) 810 *bflagsp = scsi_get_device_flags(sdev, 811 sdev->vendor, 812 sdev->model); 813 return SCSI_SCAN_LUN_PRESENT; 814 } 815 } 816 817 sdev = scsi_alloc_sdev(starget, lun, hostdata); 818 if (!sdev) 819 goto out; 820 sreq = scsi_allocate_request(sdev, GFP_ATOMIC); 821 if (!sreq) 822 goto out_free_sdev; 823 result = kmalloc(256, GFP_ATOMIC | 824 ((shost->unchecked_isa_dma) ? __GFP_DMA : 0)); 825 if (!result) 826 goto out_free_sreq; 827 828 scsi_probe_lun(sreq, result, &bflags); 829 if (sreq->sr_result) 830 goto out_free_result; 831 832 /* 833 * result contains valid SCSI INQUIRY data. 834 */ 835 if ((result[0] >> 5) == 3) { 836 /* 837 * For a Peripheral qualifier 3 (011b), the SCSI 838 * spec says: The device server is not capable of 839 * supporting a physical device on this logical 840 * unit. 841 * 842 * For disks, this implies that there is no 843 * logical disk configured at sdev->lun, but there 844 * is a target id responding. 845 */ 846 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO 847 "scsi scan: peripheral qualifier of 3," 848 " no device added\n")); 849 res = SCSI_SCAN_TARGET_PRESENT; 850 goto out_free_result; 851 } 852 853 res = scsi_add_lun(sdev, result, &bflags); 854 if (res == SCSI_SCAN_LUN_PRESENT) { 855 if (bflags & BLIST_KEY) { 856 sdev->lockable = 0; 857 scsi_unlock_floptical(sreq, result); 858 } 859 if (bflagsp) 860 *bflagsp = bflags; 861 } 862 863 out_free_result: 864 kfree(result); 865 out_free_sreq: 866 scsi_release_request(sreq); 867 out_free_sdev: 868 if (res == SCSI_SCAN_LUN_PRESENT) { 869 if (sdevp) { 870 scsi_device_get(sdev); 871 *sdevp = sdev; 872 } 873 } else { 874 if (sdev->host->hostt->slave_destroy) 875 sdev->host->hostt->slave_destroy(sdev); 876 transport_destroy_device(&sdev->sdev_gendev); 877 put_device(&sdev->sdev_gendev); 878 } 879 out: 880 return res; 881} 882 883/** 884 * scsi_sequential_lun_scan - sequentially scan a SCSI target 885 * @starget: pointer to target structure to scan 886 * @bflags: black/white list flag for LUN 0 887 * @lun0_res: result of scanning LUN 0 888 * 889 * Description: 890 * Generally, scan from LUN 1 (LUN 0 is assumed to already have been 891 * scanned) to some maximum lun until a LUN is found with no device 892 * attached. Use the bflags to figure out any oddities. 893 * 894 * Modifies sdevscan->lun. 895 **/ 896static void scsi_sequential_lun_scan(struct scsi_target *starget, 897 int bflags, int lun0_res, int scsi_level, 898 int rescan) 899{ 900 unsigned int sparse_lun, lun, max_dev_lun; 901 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); 902 903 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: Sequential scan of" 904 "%s\n", starget->dev.bus_id)); 905 906 max_dev_lun = min(max_scsi_luns, shost->max_lun); 907 /* 908 * If this device is known to support sparse multiple units, 909 * override the other settings, and scan all of them. Normally, 910 * SCSI-3 devices should be scanned via the REPORT LUNS. 911 */ 912 if (bflags & BLIST_SPARSELUN) { 913 max_dev_lun = shost->max_lun; 914 sparse_lun = 1; 915 } else 916 sparse_lun = 0; 917 918 /* 919 * If not sparse lun and no device attached at LUN 0 do not scan 920 * any further. 921 */ 922 if (!sparse_lun && (lun0_res != SCSI_SCAN_LUN_PRESENT)) 923 return; 924 925 /* 926 * If less than SCSI_1_CSS, and no special lun scaning, stop 927 * scanning; this matches 2.4 behaviour, but could just be a bug 928 * (to continue scanning a SCSI_1_CSS device). 929 * 930 * This test is broken. We might not have any device on lun0 for 931 * a sparselun device, and if that's the case then how would we 932 * know the real scsi_level, eh? It might make sense to just not 933 * scan any SCSI_1 device for non-0 luns, but that check would best 934 * go into scsi_alloc_sdev() and just have it return null when asked 935 * to alloc an sdev for lun > 0 on an already found SCSI_1 device. 936 * 937 if ((sdevscan->scsi_level < SCSI_1_CCS) && 938 ((bflags & (BLIST_FORCELUN | BLIST_SPARSELUN | BLIST_MAX5LUN)) 939 == 0)) 940 return; 941 */ 942 /* 943 * If this device is known to support multiple units, override 944 * the other settings, and scan all of them. 945 */ 946 if (bflags & BLIST_FORCELUN) 947 max_dev_lun = shost->max_lun; 948 /* 949 * REGAL CDC-4X: avoid hang after LUN 4 950 */ 951 if (bflags & BLIST_MAX5LUN) 952 max_dev_lun = min(5U, max_dev_lun); 953 /* 954 * Do not scan SCSI-2 or lower device past LUN 7, unless 955 * BLIST_LARGELUN. 956 */ 957 if (scsi_level < SCSI_3 && !(bflags & BLIST_LARGELUN)) 958 max_dev_lun = min(8U, max_dev_lun); 959 960 /* 961 * We have already scanned LUN 0, so start at LUN 1. Keep scanning 962 * until we reach the max, or no LUN is found and we are not 963 * sparse_lun. 964 */ 965 for (lun = 1; lun < max_dev_lun; ++lun) 966 if ((scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan, 967 NULL) != SCSI_SCAN_LUN_PRESENT) && 968 !sparse_lun) 969 return; 970} 971 972/** 973 * scsilun_to_int: convert a scsi_lun to an int 974 * @scsilun: struct scsi_lun to be converted. 975 * 976 * Description: 977 * Convert @scsilun from a struct scsi_lun to a four byte host byte-ordered 978 * integer, and return the result. The caller must check for 979 * truncation before using this function. 980 * 981 * Notes: 982 * The struct scsi_lun is assumed to be four levels, with each level 983 * effectively containing a SCSI byte-ordered (big endian) short; the 984 * addressing bits of each level are ignored (the highest two bits). 985 * For a description of the LUN format, post SCSI-3 see the SCSI 986 * Architecture Model, for SCSI-3 see the SCSI Controller Commands. 987 * 988 * Given a struct scsi_lun of: 0a 04 0b 03 00 00 00 00, this function returns 989 * the integer: 0x0b030a04 990 **/ 991static int scsilun_to_int(struct scsi_lun *scsilun) 992{ 993 int i; 994 unsigned int lun; 995 996 lun = 0; 997 for (i = 0; i < sizeof(lun); i += 2) 998 lun = lun | (((scsilun->scsi_lun[i] << 8) | 999 scsilun->scsi_lun[i + 1]) << (i * 8)); 1000 return lun; 1001} 1002 1003/** 1004 * int_to_scsilun: reverts an int into a scsi_lun 1005 * @int: integer to be reverted 1006 * @scsilun: struct scsi_lun to be set. 1007 * 1008 * Description: 1009 * Reverts the functionality of the scsilun_to_int, which packed 1010 * an 8-byte lun value into an int. This routine unpacks the int 1011 * back into the lun value. 1012 * Note: the scsilun_to_int() routine does not truly handle all 1013 * 8bytes of the lun value. This functions restores only as much 1014 * as was set by the routine. 1015 * 1016 * Notes: 1017 * Given an integer : 0x0b030a04, this function returns a 1018 * scsi_lun of : struct scsi_lun of: 0a 04 0b 03 00 00 00 00 1019 * 1020 **/ 1021void int_to_scsilun(unsigned int lun, struct scsi_lun *scsilun) 1022{ 1023 int i; 1024 1025 memset(scsilun->scsi_lun, 0, sizeof(scsilun->scsi_lun)); 1026 1027 for (i = 0; i < sizeof(lun); i += 2) { 1028 scsilun->scsi_lun[i] = (lun >> 8) & 0xFF; 1029 scsilun->scsi_lun[i+1] = lun & 0xFF; 1030 lun = lun >> 16; 1031 } 1032} 1033EXPORT_SYMBOL(int_to_scsilun); 1034 1035/** 1036 * scsi_report_lun_scan - Scan using SCSI REPORT LUN results 1037 * @sdevscan: scan the host, channel, and id of this Scsi_Device 1038 * 1039 * Description: 1040 * If @sdevscan is for a SCSI-3 or up device, send a REPORT LUN 1041 * command, and scan the resulting list of LUNs by calling 1042 * scsi_probe_and_add_lun. 1043 * 1044 * Modifies sdevscan->lun. 1045 * 1046 * Return: 1047 * 0: scan completed (or no memory, so further scanning is futile) 1048 * 1: no report lun scan, or not configured 1049 **/ 1050static int scsi_report_lun_scan(struct scsi_device *sdev, int bflags, 1051 int rescan) 1052{ 1053 char devname[64]; 1054 unsigned char scsi_cmd[MAX_COMMAND_SIZE]; 1055 unsigned int length; 1056 unsigned int lun; 1057 unsigned int num_luns; 1058 unsigned int retries; 1059 struct scsi_lun *lunp, *lun_data; 1060 struct scsi_request *sreq; 1061 u8 *data; 1062 struct scsi_sense_hdr sshdr; 1063 struct scsi_target *starget = scsi_target(sdev); 1064 1065 /* 1066 * Only support SCSI-3 and up devices if BLIST_NOREPORTLUN is not set. 1067 * Also allow SCSI-2 if BLIST_REPORTLUN2 is set and host adapter does 1068 * support more than 8 LUNs. 1069 */ 1070 if ((bflags & BLIST_NOREPORTLUN) || 1071 sdev->scsi_level < SCSI_2 || 1072 (sdev->scsi_level < SCSI_3 && 1073 (!(bflags & BLIST_REPORTLUN2) || sdev->host->max_lun <= 8)) ) 1074 return 1; 1075 if (bflags & BLIST_NOLUN) 1076 return 0; 1077 1078 sreq = scsi_allocate_request(sdev, GFP_ATOMIC); 1079 if (!sreq) 1080 goto out; 1081 1082 sprintf(devname, "host %d channel %d id %d", 1083 sdev->host->host_no, sdev->channel, sdev->id); 1084 1085 /* 1086 * Allocate enough to hold the header (the same size as one scsi_lun) 1087 * plus the max number of luns we are requesting. 1088 * 1089 * Reallocating and trying again (with the exact amount we need) 1090 * would be nice, but then we need to somehow limit the size 1091 * allocated based on the available memory and the limits of 1092 * kmalloc - we don't want a kmalloc() failure of a huge value to 1093 * prevent us from finding any LUNs on this target. 1094 */ 1095 length = (max_scsi_report_luns + 1) * sizeof(struct scsi_lun); 1096 lun_data = kmalloc(length, GFP_ATOMIC | 1097 (sdev->host->unchecked_isa_dma ? __GFP_DMA : 0)); 1098 if (!lun_data) 1099 goto out_release_request; 1100 1101 scsi_cmd[0] = REPORT_LUNS; 1102 1103 /* 1104 * bytes 1 - 5: reserved, set to zero. 1105 */ 1106 memset(&scsi_cmd[1], 0, 5); 1107 1108 /* 1109 * bytes 6 - 9: length of the command. 1110 */ 1111 scsi_cmd[6] = (unsigned char) (length >> 24) & 0xff; 1112 scsi_cmd[7] = (unsigned char) (length >> 16) & 0xff; 1113 scsi_cmd[8] = (unsigned char) (length >> 8) & 0xff; 1114 scsi_cmd[9] = (unsigned char) length & 0xff; 1115 1116 scsi_cmd[10] = 0; /* reserved */ 1117 scsi_cmd[11] = 0; /* control */ 1118 sreq->sr_cmd_len = 0; 1119 sreq->sr_data_direction = DMA_FROM_DEVICE; 1120 1121 /* 1122 * We can get a UNIT ATTENTION, for example a power on/reset, so 1123 * retry a few times (like sd.c does for TEST UNIT READY). 1124 * Experience shows some combinations of adapter/devices get at 1125 * least two power on/resets. 1126 * 1127 * Illegal requests (for devices that do not support REPORT LUNS) 1128 * should come through as a check condition, and will not generate 1129 * a retry. 1130 */ 1131 for (retries = 0; retries < 3; retries++) { 1132 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: Sending" 1133 " REPORT LUNS to %s (try %d)\n", devname, 1134 retries)); 1135 scsi_wait_req(sreq, scsi_cmd, lun_data, length, 1136 SCSI_TIMEOUT + 4*HZ, 3); 1137 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: REPORT LUNS" 1138 " %s (try %d) result 0x%x\n", sreq->sr_result 1139 ? "failed" : "successful", retries, 1140 sreq->sr_result)); 1141 if (sreq->sr_result == 0) 1142 break; 1143 else if (scsi_request_normalize_sense(sreq, &sshdr)) { 1144 if (sshdr.sense_key != UNIT_ATTENTION) 1145 break; 1146 } 1147 } 1148 1149 if (sreq->sr_result) { 1150 /* 1151 * The device probably does not support a REPORT LUN command 1152 */ 1153 kfree(lun_data); 1154 scsi_release_request(sreq); 1155 return 1; 1156 } 1157 scsi_release_request(sreq); 1158 1159 /* 1160 * Get the length from the first four bytes of lun_data. 1161 */ 1162 data = (u8 *) lun_data->scsi_lun; 1163 length = ((data[0] << 24) | (data[1] << 16) | 1164 (data[2] << 8) | (data[3] << 0)); 1165 1166 num_luns = (length / sizeof(struct scsi_lun)); 1167 if (num_luns > max_scsi_report_luns) { 1168 printk(KERN_WARNING "scsi: On %s only %d (max_scsi_report_luns)" 1169 " of %d luns reported, try increasing" 1170 " max_scsi_report_luns.\n", devname, 1171 max_scsi_report_luns, num_luns); 1172 num_luns = max_scsi_report_luns; 1173 } 1174 1175 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: REPORT LUN scan of" 1176 " host %d channel %d id %d\n", sdev->host->host_no, 1177 sdev->channel, sdev->id)); 1178 1179 /* 1180 * Scan the luns in lun_data. The entry at offset 0 is really 1181 * the header, so start at 1 and go up to and including num_luns. 1182 */ 1183 for (lunp = &lun_data[1]; lunp <= &lun_data[num_luns]; lunp++) { 1184 lun = scsilun_to_int(lunp); 1185 1186 /* 1187 * Check if the unused part of lunp is non-zero, and so 1188 * does not fit in lun. 1189 */ 1190 if (memcmp(&lunp->scsi_lun[sizeof(lun)], "\0\0\0\0", 4)) { 1191 int i; 1192 1193 /* 1194 * Output an error displaying the LUN in byte order, 1195 * this differs from what linux would print for the 1196 * integer LUN value. 1197 */ 1198 printk(KERN_WARNING "scsi: %s lun 0x", devname); 1199 data = (char *)lunp->scsi_lun; 1200 for (i = 0; i < sizeof(struct scsi_lun); i++) 1201 printk("%02x", data[i]); 1202 printk(" has a LUN larger than currently supported.\n"); 1203 } else if (lun == 0) { 1204 /* 1205 * LUN 0 has already been scanned. 1206 */ 1207 } else if (lun > sdev->host->max_lun) { 1208 printk(KERN_WARNING "scsi: %s lun%d has a LUN larger" 1209 " than allowed by the host adapter\n", 1210 devname, lun); 1211 } else { 1212 int res; 1213 1214 res = scsi_probe_and_add_lun(starget, 1215 lun, NULL, NULL, rescan, NULL); 1216 if (res == SCSI_SCAN_NO_RESPONSE) { 1217 /* 1218 * Got some results, but now none, abort. 1219 */ 1220 printk(KERN_ERR "scsi: Unexpected response" 1221 " from %s lun %d while scanning, scan" 1222 " aborted\n", devname, lun); 1223 break; 1224 } 1225 } 1226 } 1227 1228 kfree(lun_data); 1229 return 0; 1230 1231 out_release_request: 1232 scsi_release_request(sreq); 1233 out: 1234 /* 1235 * We are out of memory, don't try scanning any further. 1236 */ 1237 printk(ALLOC_FAILURE_MSG, __FUNCTION__); 1238 return 0; 1239} 1240 1241struct scsi_device *__scsi_add_device(struct Scsi_Host *shost, uint channel, 1242 uint id, uint lun, void *hostdata) 1243{ 1244 struct scsi_device *sdev; 1245 struct device *parent = &shost->shost_gendev; 1246 int res; 1247 struct scsi_target *starget = scsi_alloc_target(parent, channel, id); 1248 1249 if (!starget) 1250 return ERR_PTR(-ENOMEM); 1251 1252 get_device(&starget->dev); 1253 down(&shost->scan_mutex); 1254 res = scsi_probe_and_add_lun(starget, lun, NULL, &sdev, 1, hostdata); 1255 if (res != SCSI_SCAN_LUN_PRESENT) 1256 sdev = ERR_PTR(-ENODEV); 1257 up(&shost->scan_mutex); 1258 scsi_target_reap(starget); 1259 put_device(&starget->dev); 1260 1261 return sdev; 1262} 1263EXPORT_SYMBOL(__scsi_add_device); 1264 1265void scsi_rescan_device(struct device *dev) 1266{ 1267 struct scsi_driver *drv; 1268 1269 if (!dev->driver) 1270 return; 1271 1272 drv = to_scsi_driver(dev->driver); 1273 if (try_module_get(drv->owner)) { 1274 if (drv->rescan) 1275 drv->rescan(dev); 1276 module_put(drv->owner); 1277 } 1278} 1279EXPORT_SYMBOL(scsi_rescan_device); 1280 1281/** 1282 * scsi_scan_target - scan a target id, possibly including all LUNs on the 1283 * target. 1284 * @sdevsca: Scsi_Device handle for scanning 1285 * @shost: host to scan 1286 * @channel: channel to scan 1287 * @id: target id to scan 1288 * 1289 * Description: 1290 * Scan the target id on @shost, @channel, and @id. Scan at least LUN 1291 * 0, and possibly all LUNs on the target id. 1292 * 1293 * Use the pre-allocated @sdevscan as a handle for the scanning. This 1294 * function sets sdevscan->host, sdevscan->id and sdevscan->lun; the 1295 * scanning functions modify sdevscan->lun. 1296 * 1297 * First try a REPORT LUN scan, if that does not scan the target, do a 1298 * sequential scan of LUNs on the target id. 1299 **/ 1300void scsi_scan_target(struct device *parent, unsigned int channel, 1301 unsigned int id, unsigned int lun, int rescan) 1302{ 1303 struct Scsi_Host *shost = dev_to_shost(parent); 1304 int bflags = 0; 1305 int res; 1306 struct scsi_device *sdev = NULL; 1307 struct scsi_target *starget; 1308 1309 if (shost->this_id == id) 1310 /* 1311 * Don't scan the host adapter 1312 */ 1313 return; 1314 1315 1316 starget = scsi_alloc_target(parent, channel, id); 1317 1318 if (!starget) 1319 return; 1320 1321 get_device(&starget->dev); 1322 if (lun != SCAN_WILD_CARD) { 1323 /* 1324 * Scan for a specific host/chan/id/lun. 1325 */ 1326 scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan, NULL); 1327 goto out_reap; 1328 } 1329 1330 /* 1331 * Scan LUN 0, if there is some response, scan further. Ideally, we 1332 * would not configure LUN 0 until all LUNs are scanned. 1333 */ 1334 res = scsi_probe_and_add_lun(starget, 0, &bflags, &sdev, rescan, NULL); 1335 if (res == SCSI_SCAN_LUN_PRESENT) { 1336 if (scsi_report_lun_scan(sdev, bflags, rescan) != 0) 1337 /* 1338 * The REPORT LUN did not scan the target, 1339 * do a sequential scan. 1340 */ 1341 scsi_sequential_lun_scan(starget, bflags, 1342 res, sdev->scsi_level, rescan); 1343 } else if (res == SCSI_SCAN_TARGET_PRESENT) { 1344 /* 1345 * There's a target here, but lun 0 is offline so we 1346 * can't use the report_lun scan. Fall back to a 1347 * sequential lun scan with a bflags of SPARSELUN and 1348 * a default scsi level of SCSI_2 1349 */ 1350 scsi_sequential_lun_scan(starget, BLIST_SPARSELUN, 1351 SCSI_SCAN_TARGET_PRESENT, SCSI_2, rescan); 1352 } 1353 if (sdev) 1354 scsi_device_put(sdev); 1355 1356 out_reap: 1357 /* now determine if the target has any children at all 1358 * and if not, nuke it */ 1359 scsi_target_reap(starget); 1360 1361 put_device(&starget->dev); 1362} 1363EXPORT_SYMBOL(scsi_scan_target); 1364 1365static void scsi_scan_channel(struct Scsi_Host *shost, unsigned int channel, 1366 unsigned int id, unsigned int lun, int rescan) 1367{ 1368 uint order_id; 1369 1370 if (id == SCAN_WILD_CARD) 1371 for (id = 0; id < shost->max_id; ++id) { 1372 /* 1373 * XXX adapter drivers when possible (FCP, iSCSI) 1374 * could modify max_id to match the current max, 1375 * not the absolute max. 1376 * 1377 * XXX add a shost id iterator, so for example, 1378 * the FC ID can be the same as a target id 1379 * without a huge overhead of sparse id's. 1380 */ 1381 if (shost->reverse_ordering) 1382 /* 1383 * Scan from high to low id. 1384 */ 1385 order_id = shost->max_id - id - 1; 1386 else 1387 order_id = id; 1388 scsi_scan_target(&shost->shost_gendev, channel, order_id, lun, rescan); 1389 } 1390 else 1391 scsi_scan_target(&shost->shost_gendev, channel, id, lun, rescan); 1392} 1393 1394int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel, 1395 unsigned int id, unsigned int lun, int rescan) 1396{ 1397 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "%s: <%u:%u:%u:%u>\n", 1398 __FUNCTION__, shost->host_no, channel, id, lun)); 1399 1400 if (((channel != SCAN_WILD_CARD) && (channel > shost->max_channel)) || 1401 ((id != SCAN_WILD_CARD) && (id > shost->max_id)) || 1402 ((lun != SCAN_WILD_CARD) && (lun > shost->max_lun))) 1403 return -EINVAL; 1404 1405 down(&shost->scan_mutex); 1406 if (channel == SCAN_WILD_CARD) 1407 for (channel = 0; channel <= shost->max_channel; channel++) 1408 scsi_scan_channel(shost, channel, id, lun, rescan); 1409 else 1410 scsi_scan_channel(shost, channel, id, lun, rescan); 1411 up(&shost->scan_mutex); 1412 1413 return 0; 1414} 1415 1416/** 1417 * scsi_scan_host - scan the given adapter 1418 * @shost: adapter to scan 1419 **/ 1420void scsi_scan_host(struct Scsi_Host *shost) 1421{ 1422 scsi_scan_host_selected(shost, SCAN_WILD_CARD, SCAN_WILD_CARD, 1423 SCAN_WILD_CARD, 0); 1424} 1425EXPORT_SYMBOL(scsi_scan_host); 1426 1427/** 1428 * scsi_scan_single_target - scan the given SCSI target 1429 * @shost: adapter to scan 1430 * @chan: channel to scan 1431 * @id: target id to scan 1432 **/ 1433void scsi_scan_single_target(struct Scsi_Host *shost, 1434 unsigned int chan, unsigned int id) 1435{ 1436 scsi_scan_host_selected(shost, chan, id, SCAN_WILD_CARD, 1); 1437} 1438EXPORT_SYMBOL(scsi_scan_single_target); 1439 1440void scsi_forget_host(struct Scsi_Host *shost) 1441{ 1442 struct scsi_target *starget, *tmp; 1443 unsigned long flags; 1444 1445 /* 1446 * Ok, this look a bit strange. We always look for the first device 1447 * on the list as scsi_remove_device removes them from it - thus we 1448 * also have to release the lock. 1449 * We don't need to get another reference to the device before 1450 * releasing the lock as we already own the reference from 1451 * scsi_register_device that's release in scsi_remove_device. And 1452 * after that we don't look at sdev anymore. 1453 */ 1454 spin_lock_irqsave(shost->host_lock, flags); 1455 list_for_each_entry_safe(starget, tmp, &shost->__targets, siblings) { 1456 spin_unlock_irqrestore(shost->host_lock, flags); 1457 scsi_remove_target(&starget->dev); 1458 spin_lock_irqsave(shost->host_lock, flags); 1459 } 1460 spin_unlock_irqrestore(shost->host_lock, flags); 1461} 1462 1463/* 1464 * Function: scsi_get_host_dev() 1465 * 1466 * Purpose: Create a Scsi_Device that points to the host adapter itself. 1467 * 1468 * Arguments: SHpnt - Host that needs a Scsi_Device 1469 * 1470 * Lock status: None assumed. 1471 * 1472 * Returns: The Scsi_Device or NULL 1473 * 1474 * Notes: 1475 * Attach a single Scsi_Device to the Scsi_Host - this should 1476 * be made to look like a "pseudo-device" that points to the 1477 * HA itself. 1478 * 1479 * Note - this device is not accessible from any high-level 1480 * drivers (including generics), which is probably not 1481 * optimal. We can add hooks later to attach 1482 */ 1483struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost) 1484{ 1485 struct scsi_device *sdev; 1486 struct scsi_target *starget; 1487 1488 starget = scsi_alloc_target(&shost->shost_gendev, 0, shost->this_id); 1489 if (!starget) 1490 return NULL; 1491 1492 sdev = scsi_alloc_sdev(starget, 0, NULL); 1493 if (sdev) { 1494 sdev->sdev_gendev.parent = get_device(&starget->dev); 1495 sdev->borken = 0; 1496 } 1497 put_device(&starget->dev); 1498 return sdev; 1499} 1500EXPORT_SYMBOL(scsi_get_host_dev); 1501 1502/* 1503 * Function: scsi_free_host_dev() 1504 * 1505 * Purpose: Free a scsi_device that points to the host adapter itself. 1506 * 1507 * Arguments: SHpnt - Host that needs a Scsi_Device 1508 * 1509 * Lock status: None assumed. 1510 * 1511 * Returns: Nothing 1512 * 1513 * Notes: 1514 */ 1515void scsi_free_host_dev(struct scsi_device *sdev) 1516{ 1517 BUG_ON(sdev->id != sdev->host->this_id); 1518 1519 if (sdev->host->hostt->slave_destroy) 1520 sdev->host->hostt->slave_destroy(sdev); 1521 transport_destroy_device(&sdev->sdev_gendev); 1522 put_device(&sdev->sdev_gendev); 1523} 1524EXPORT_SYMBOL(scsi_free_host_dev); 1525