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