4 * Copyright (C) 2000 Eric Youngdale,
5 * Copyright (C) 2002 Patrick Mansfield
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.
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.
14 * For every id of every channel on the given host:
16 * Scan LUN 0; if the target responds to LUN 0 (even if there is no
17 * device or storage attached to LUN 0):
19 * If LUN 0 has a device attached, allocate and setup a
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.
28 #include <linux/module.h>
29 #include <linux/moduleparam.h>
30 #include <linux/init.h>
31 #include <linux/blkdev.h>
32 #include <linux/delay.h>
33 #include <linux/kthread.h>
34 #include <linux/spinlock.h>
35 #include <linux/async.h>
36 #include <linux/slab.h>
37 #include <asm/unaligned.h>
39 #include <scsi/scsi.h>
40 #include <scsi/scsi_cmnd.h>
41 #include <scsi/scsi_device.h>
42 #include <scsi/scsi_driver.h>
43 #include <scsi/scsi_devinfo.h>
44 #include <scsi/scsi_host.h>
45 #include <scsi/scsi_transport.h>
46 #include <scsi/scsi_dh.h>
47 #include <scsi/scsi_eh.h>
49 #include "scsi_priv.h"
50 #include "scsi_logging.h"
52 #define ALLOC_FAILURE_MSG KERN_ERR "%s: Allocation failure during" \
53 " SCSI scanning, some SCSI devices might not be configured\n"
58 #define SCSI_TIMEOUT (2*HZ)
59 #define SCSI_REPORT_LUNS_TIMEOUT (30*HZ)
62 * Prefix values for the SCSI id's (stored in sysfs name field)
64 #define SCSI_UID_SER_NUM 'S'
65 #define SCSI_UID_UNKNOWN 'Z'
68 * Return values of some of the scanning functions.
70 * SCSI_SCAN_NO_RESPONSE: no valid response received from the target, this
71 * includes allocation or general failures preventing IO from being sent.
73 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is available
76 * SCSI_SCAN_LUN_PRESENT: target responded, and a device is available on a
79 #define SCSI_SCAN_NO_RESPONSE 0
80 #define SCSI_SCAN_TARGET_PRESENT 1
81 #define SCSI_SCAN_LUN_PRESENT 2
83 static const char *scsi_null_device_strs
= "nullnullnullnull";
85 #define MAX_SCSI_LUNS 512
87 static u64 max_scsi_luns
= MAX_SCSI_LUNS
;
89 module_param_named(max_luns
, max_scsi_luns
, ullong
, S_IRUGO
|S_IWUSR
);
90 MODULE_PARM_DESC(max_luns
,
91 "last scsi LUN (should be between 1 and 2^64-1)");
93 #ifdef CONFIG_SCSI_SCAN_ASYNC
94 #define SCSI_SCAN_TYPE_DEFAULT "async"
96 #define SCSI_SCAN_TYPE_DEFAULT "sync"
99 char scsi_scan_type
[7] = SCSI_SCAN_TYPE_DEFAULT
;
101 module_param_string(scan
, scsi_scan_type
, sizeof(scsi_scan_type
),
103 MODULE_PARM_DESC(scan
, "sync, async, manual, or none. "
104 "Setting to 'manual' disables automatic scanning, but allows "
105 "for manual device scan via the 'scan' sysfs attribute.");
107 static unsigned int scsi_inq_timeout
= SCSI_TIMEOUT
/HZ
+ 18;
109 module_param_named(inq_timeout
, scsi_inq_timeout
, uint
, S_IRUGO
|S_IWUSR
);
110 MODULE_PARM_DESC(inq_timeout
,
111 "Timeout (in seconds) waiting for devices to answer INQUIRY."
112 " Default is 20. Some devices may need more; most need less.");
114 /* This lock protects only this list */
115 static DEFINE_SPINLOCK(async_scan_lock
);
116 static LIST_HEAD(scanning_hosts
);
118 struct async_scan_data
{
119 struct list_head list
;
120 struct Scsi_Host
*shost
;
121 struct completion prev_finished
;
125 * scsi_complete_async_scans - Wait for asynchronous scans to complete
127 * When this function returns, any host which started scanning before
128 * this function was called will have finished its scan. Hosts which
129 * started scanning after this function was called may or may not have
132 int scsi_complete_async_scans(void)
134 struct async_scan_data
*data
;
137 if (list_empty(&scanning_hosts
))
139 /* If we can't get memory immediately, that's OK. Just
140 * sleep a little. Even if we never get memory, the async
141 * scans will finish eventually.
143 data
= kmalloc(sizeof(*data
), GFP_KERNEL
);
149 init_completion(&data
->prev_finished
);
151 spin_lock(&async_scan_lock
);
152 /* Check that there's still somebody else on the list */
153 if (list_empty(&scanning_hosts
))
155 list_add_tail(&data
->list
, &scanning_hosts
);
156 spin_unlock(&async_scan_lock
);
158 printk(KERN_INFO
"scsi: waiting for bus probes to complete ...\n");
159 wait_for_completion(&data
->prev_finished
);
161 spin_lock(&async_scan_lock
);
162 list_del(&data
->list
);
163 if (!list_empty(&scanning_hosts
)) {
164 struct async_scan_data
*next
= list_entry(scanning_hosts
.next
,
165 struct async_scan_data
, list
);
166 complete(&next
->prev_finished
);
169 spin_unlock(&async_scan_lock
);
176 * scsi_unlock_floptical - unlock device via a special MODE SENSE command
177 * @sdev: scsi device to send command to
178 * @result: area to store the result of the MODE SENSE
181 * Send a vendor specific MODE SENSE (not a MODE SELECT) command.
182 * Called for BLIST_KEY devices.
184 static void scsi_unlock_floptical(struct scsi_device
*sdev
,
185 unsigned char *result
)
187 unsigned char scsi_cmd
[MAX_COMMAND_SIZE
];
189 sdev_printk(KERN_NOTICE
, sdev
, "unlocking floptical drive\n");
190 scsi_cmd
[0] = MODE_SENSE
;
194 scsi_cmd
[4] = 0x2a; /* size */
196 scsi_execute_req(sdev
, scsi_cmd
, DMA_FROM_DEVICE
, result
, 0x2a, NULL
,
197 SCSI_TIMEOUT
, 3, NULL
);
201 * scsi_alloc_sdev - allocate and setup a scsi_Device
202 * @starget: which target to allocate a &scsi_device for
204 * @hostdata: usually NULL and set by ->slave_alloc instead
207 * Allocate, initialize for io, and return a pointer to a scsi_Device.
208 * Stores the @shost, @channel, @id, and @lun in the scsi_Device, and
209 * adds scsi_Device to the appropriate list.
212 * scsi_Device pointer, or NULL on failure.
214 static struct scsi_device
*scsi_alloc_sdev(struct scsi_target
*starget
,
215 u64 lun
, void *hostdata
)
217 struct scsi_device
*sdev
;
218 int display_failure_msg
= 1, ret
;
219 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
221 sdev
= kzalloc(sizeof(*sdev
) + shost
->transportt
->device_size
,
226 sdev
->vendor
= scsi_null_device_strs
;
227 sdev
->model
= scsi_null_device_strs
;
228 sdev
->rev
= scsi_null_device_strs
;
230 sdev
->queue_ramp_up_period
= SCSI_DEFAULT_RAMP_UP_PERIOD
;
231 sdev
->id
= starget
->id
;
233 sdev
->channel
= starget
->channel
;
234 sdev
->sdev_state
= SDEV_CREATED
;
235 INIT_LIST_HEAD(&sdev
->siblings
);
236 INIT_LIST_HEAD(&sdev
->same_target_siblings
);
237 INIT_LIST_HEAD(&sdev
->cmd_list
);
238 INIT_LIST_HEAD(&sdev
->starved_entry
);
239 INIT_LIST_HEAD(&sdev
->event_list
);
240 spin_lock_init(&sdev
->list_lock
);
241 mutex_init(&sdev
->inquiry_mutex
);
242 INIT_WORK(&sdev
->event_work
, scsi_evt_thread
);
243 INIT_WORK(&sdev
->requeue_work
, scsi_requeue_run_queue
);
245 sdev
->sdev_gendev
.parent
= get_device(&starget
->dev
);
246 sdev
->sdev_target
= starget
;
248 /* usually NULL and set by ->slave_alloc instead */
249 sdev
->hostdata
= hostdata
;
251 /* if the device needs this changing, it may do so in the
252 * slave_configure function */
253 sdev
->max_device_blocked
= SCSI_DEFAULT_DEVICE_BLOCKED
;
256 * Some low level driver could use device->type
261 * Assume that the device will have handshaking problems,
262 * and then fix this field later if it turns out it
267 if (shost_use_blk_mq(shost
))
268 sdev
->request_queue
= scsi_mq_alloc_queue(sdev
);
270 sdev
->request_queue
= scsi_alloc_queue(sdev
);
271 if (!sdev
->request_queue
) {
272 /* release fn is set up in scsi_sysfs_device_initialise, so
273 * have to free and put manually here */
274 put_device(&starget
->dev
);
278 WARN_ON_ONCE(!blk_get_queue(sdev
->request_queue
));
279 sdev
->request_queue
->queuedata
= sdev
;
281 if (!shost_use_blk_mq(sdev
->host
)) {
282 blk_queue_init_tags(sdev
->request_queue
,
283 sdev
->host
->cmd_per_lun
, shost
->bqt
,
284 shost
->hostt
->tag_alloc_policy
);
286 scsi_change_queue_depth(sdev
, sdev
->host
->cmd_per_lun
?
287 sdev
->host
->cmd_per_lun
: 1);
289 scsi_sysfs_device_initialize(sdev
);
291 if (shost
->hostt
->slave_alloc
) {
292 ret
= shost
->hostt
->slave_alloc(sdev
);
295 * if LLDD reports slave not present, don't clutter
296 * console with alloc failure messages
299 display_failure_msg
= 0;
300 goto out_device_destroy
;
307 __scsi_remove_device(sdev
);
309 if (display_failure_msg
)
310 printk(ALLOC_FAILURE_MSG
, __func__
);
314 static void scsi_target_destroy(struct scsi_target
*starget
)
316 struct device
*dev
= &starget
->dev
;
317 struct Scsi_Host
*shost
= dev_to_shost(dev
->parent
);
320 BUG_ON(starget
->state
== STARGET_DEL
);
321 starget
->state
= STARGET_DEL
;
322 transport_destroy_device(dev
);
323 spin_lock_irqsave(shost
->host_lock
, flags
);
324 if (shost
->hostt
->target_destroy
)
325 shost
->hostt
->target_destroy(starget
);
326 list_del_init(&starget
->siblings
);
327 spin_unlock_irqrestore(shost
->host_lock
, flags
);
331 static void scsi_target_dev_release(struct device
*dev
)
333 struct device
*parent
= dev
->parent
;
334 struct scsi_target
*starget
= to_scsi_target(dev
);
340 static struct device_type scsi_target_type
= {
341 .name
= "scsi_target",
342 .release
= scsi_target_dev_release
,
345 int scsi_is_target_device(const struct device
*dev
)
347 return dev
->type
== &scsi_target_type
;
349 EXPORT_SYMBOL(scsi_is_target_device
);
351 static struct scsi_target
*__scsi_find_target(struct device
*parent
,
352 int channel
, uint id
)
354 struct scsi_target
*starget
, *found_starget
= NULL
;
355 struct Scsi_Host
*shost
= dev_to_shost(parent
);
357 * Search for an existing target for this sdev.
359 list_for_each_entry(starget
, &shost
->__targets
, siblings
) {
360 if (starget
->id
== id
&&
361 starget
->channel
== channel
) {
362 found_starget
= starget
;
367 get_device(&found_starget
->dev
);
369 return found_starget
;
373 * scsi_target_reap_ref_release - remove target from visibility
374 * @kref: the reap_ref in the target being released
376 * Called on last put of reap_ref, which is the indication that no device
377 * under this target is visible anymore, so render the target invisible in
378 * sysfs. Note: we have to be in user context here because the target reaps
379 * should be done in places where the scsi device visibility is being removed.
381 static void scsi_target_reap_ref_release(struct kref
*kref
)
383 struct scsi_target
*starget
384 = container_of(kref
, struct scsi_target
, reap_ref
);
387 * if we get here and the target is still in a CREATED state that
388 * means it was allocated but never made visible (because a scan
389 * turned up no LUNs), so don't call device_del() on it.
391 if ((starget
->state
!= STARGET_CREATED
) &&
392 (starget
->state
!= STARGET_CREATED_REMOVE
)) {
393 transport_remove_device(&starget
->dev
);
394 device_del(&starget
->dev
);
396 scsi_target_destroy(starget
);
399 static void scsi_target_reap_ref_put(struct scsi_target
*starget
)
401 kref_put(&starget
->reap_ref
, scsi_target_reap_ref_release
);
405 * scsi_alloc_target - allocate a new or find an existing target
406 * @parent: parent of the target (need not be a scsi host)
407 * @channel: target channel number (zero if no channels)
408 * @id: target id number
410 * Return an existing target if one exists, provided it hasn't already
411 * gone into STARGET_DEL state, otherwise allocate a new target.
413 * The target is returned with an incremented reference, so the caller
414 * is responsible for both reaping and doing a last put
416 static struct scsi_target
*scsi_alloc_target(struct device
*parent
,
417 int channel
, uint id
)
419 struct Scsi_Host
*shost
= dev_to_shost(parent
);
420 struct device
*dev
= NULL
;
422 const int size
= sizeof(struct scsi_target
)
423 + shost
->transportt
->target_size
;
424 struct scsi_target
*starget
;
425 struct scsi_target
*found_target
;
428 starget
= kzalloc(size
, GFP_KERNEL
);
430 printk(KERN_ERR
"%s: allocation failure\n", __func__
);
434 device_initialize(dev
);
435 kref_init(&starget
->reap_ref
);
436 dev
->parent
= get_device(parent
);
437 dev_set_name(dev
, "target%d:%d:%d", shost
->host_no
, channel
, id
);
438 dev
->bus
= &scsi_bus_type
;
439 dev
->type
= &scsi_target_type
;
441 starget
->channel
= channel
;
442 starget
->can_queue
= 0;
443 INIT_LIST_HEAD(&starget
->siblings
);
444 INIT_LIST_HEAD(&starget
->devices
);
445 starget
->state
= STARGET_CREATED
;
446 starget
->scsi_level
= SCSI_2
;
447 starget
->max_target_blocked
= SCSI_DEFAULT_TARGET_BLOCKED
;
449 spin_lock_irqsave(shost
->host_lock
, flags
);
451 found_target
= __scsi_find_target(parent
, channel
, id
);
455 list_add_tail(&starget
->siblings
, &shost
->__targets
);
456 spin_unlock_irqrestore(shost
->host_lock
, flags
);
457 /* allocate and add */
458 transport_setup_device(dev
);
459 if (shost
->hostt
->target_alloc
) {
460 error
= shost
->hostt
->target_alloc(starget
);
463 dev_printk(KERN_ERR
, dev
, "target allocation failed, error %d\n", error
);
464 /* don't want scsi_target_reap to do the final
465 * put because it will be under the host lock */
466 scsi_target_destroy(starget
);
476 * release routine already fired if kref is zero, so if we can still
477 * take the reference, the target must be alive. If we can't, it must
478 * be dying and we need to wait for a new target
480 ref_got
= kref_get_unless_zero(&found_target
->reap_ref
);
482 spin_unlock_irqrestore(shost
->host_lock
, flags
);
488 * Unfortunately, we found a dying target; need to wait until it's
489 * dead before we can get a new one. There is an anomaly here. We
490 * *should* call scsi_target_reap() to balance the kref_get() of the
491 * reap_ref above. However, since the target being released, it's
492 * already invisible and the reap_ref is irrelevant. If we call
493 * scsi_target_reap() we might spuriously do another device_del() on
494 * an already invisible target.
496 put_device(&found_target
->dev
);
498 * length of time is irrelevant here, we just want to yield the CPU
499 * for a tick to avoid busy waiting for the target to die.
506 * scsi_target_reap - check to see if target is in use and destroy if not
507 * @starget: target to be checked
509 * This is used after removing a LUN or doing a last put of the target
510 * it checks atomically that nothing is using the target and removes
513 void scsi_target_reap(struct scsi_target
*starget
)
516 * serious problem if this triggers: STARGET_DEL is only set in the if
517 * the reap_ref drops to zero, so we're trying to do another final put
518 * on an already released kref
520 BUG_ON(starget
->state
== STARGET_DEL
);
521 scsi_target_reap_ref_put(starget
);
525 * scsi_sanitize_inquiry_string - remove non-graphical chars from an
526 * INQUIRY result string
527 * @s: INQUIRY result string to sanitize
528 * @len: length of the string
531 * The SCSI spec says that INQUIRY vendor, product, and revision
532 * strings must consist entirely of graphic ASCII characters,
533 * padded on the right with spaces. Since not all devices obey
534 * this rule, we will replace non-graphic or non-ASCII characters
535 * with spaces. Exception: a NUL character is interpreted as a
536 * string terminator, so all the following characters are set to
539 void scsi_sanitize_inquiry_string(unsigned char *s
, int len
)
543 for (; len
> 0; (--len
, ++s
)) {
546 if (terminated
|| *s
< 0x20 || *s
> 0x7e)
550 EXPORT_SYMBOL(scsi_sanitize_inquiry_string
);
553 * scsi_probe_lun - probe a single LUN using a SCSI INQUIRY
554 * @sdev: scsi_device to probe
555 * @inq_result: area to store the INQUIRY result
556 * @result_len: len of inq_result
557 * @bflags: store any bflags found here
560 * Probe the lun associated with @req using a standard SCSI INQUIRY;
562 * If the INQUIRY is successful, zero is returned and the
563 * INQUIRY data is in @inq_result; the scsi_level and INQUIRY length
564 * are copied to the scsi_device any flags value is stored in *@bflags.
566 static int scsi_probe_lun(struct scsi_device
*sdev
, unsigned char *inq_result
,
567 int result_len
, int *bflags
)
569 unsigned char scsi_cmd
[MAX_COMMAND_SIZE
];
570 int first_inquiry_len
, try_inquiry_len
, next_inquiry_len
;
571 int response_len
= 0;
572 int pass
, count
, result
;
573 struct scsi_sense_hdr sshdr
;
577 /* Perform up to 3 passes. The first pass uses a conservative
578 * transfer length of 36 unless sdev->inquiry_len specifies a
579 * different value. */
580 first_inquiry_len
= sdev
->inquiry_len
? sdev
->inquiry_len
: 36;
581 try_inquiry_len
= first_inquiry_len
;
585 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO
, sdev
,
586 "scsi scan: INQUIRY pass %d length %d\n",
587 pass
, try_inquiry_len
));
589 /* Each pass gets up to three chances to ignore Unit Attention */
590 for (count
= 0; count
< 3; ++count
) {
593 memset(scsi_cmd
, 0, 6);
594 scsi_cmd
[0] = INQUIRY
;
595 scsi_cmd
[4] = (unsigned char) try_inquiry_len
;
597 memset(inq_result
, 0, try_inquiry_len
);
599 result
= scsi_execute_req(sdev
, scsi_cmd
, DMA_FROM_DEVICE
,
600 inq_result
, try_inquiry_len
, &sshdr
,
601 HZ
/ 2 + HZ
* scsi_inq_timeout
, 3,
604 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO
, sdev
,
605 "scsi scan: INQUIRY %s with code 0x%x\n",
606 result
? "failed" : "successful", result
));
610 * not-ready to ready transition [asc/ascq=0x28/0x0]
611 * or power-on, reset [asc/ascq=0x29/0x0], continue.
612 * INQUIRY should not yield UNIT_ATTENTION
613 * but many buggy devices do so anyway.
615 if ((driver_byte(result
) & DRIVER_SENSE
) &&
616 scsi_sense_valid(&sshdr
)) {
617 if ((sshdr
.sense_key
== UNIT_ATTENTION
) &&
618 ((sshdr
.asc
== 0x28) ||
619 (sshdr
.asc
== 0x29)) &&
625 * if nothing was transferred, we try
626 * again. It's a workaround for some USB
629 if (resid
== try_inquiry_len
)
636 scsi_sanitize_inquiry_string(&inq_result
[8], 8);
637 scsi_sanitize_inquiry_string(&inq_result
[16], 16);
638 scsi_sanitize_inquiry_string(&inq_result
[32], 4);
640 response_len
= inq_result
[4] + 5;
641 if (response_len
> 255)
642 response_len
= first_inquiry_len
; /* sanity */
645 * Get any flags for this device.
647 * XXX add a bflags to scsi_device, and replace the
648 * corresponding bit fields in scsi_device, so bflags
649 * need not be passed as an argument.
651 *bflags
= scsi_get_device_flags(sdev
, &inq_result
[8],
654 /* When the first pass succeeds we gain information about
655 * what larger transfer lengths might work. */
657 if (BLIST_INQUIRY_36
& *bflags
)
658 next_inquiry_len
= 36;
659 else if (BLIST_INQUIRY_58
& *bflags
)
660 next_inquiry_len
= 58;
661 else if (sdev
->inquiry_len
)
662 next_inquiry_len
= sdev
->inquiry_len
;
664 next_inquiry_len
= response_len
;
666 /* If more data is available perform the second pass */
667 if (next_inquiry_len
> try_inquiry_len
) {
668 try_inquiry_len
= next_inquiry_len
;
674 } else if (pass
== 2) {
675 sdev_printk(KERN_INFO
, sdev
,
676 "scsi scan: %d byte inquiry failed. "
677 "Consider BLIST_INQUIRY_36 for this device\n",
680 /* If this pass failed, the third pass goes back and transfers
681 * the same amount as we successfully got in the first pass. */
682 try_inquiry_len
= first_inquiry_len
;
687 /* If the last transfer attempt got an error, assume the
688 * peripheral doesn't exist or is dead. */
692 /* Don't report any more data than the device says is valid */
693 sdev
->inquiry_len
= min(try_inquiry_len
, response_len
);
696 * XXX Abort if the response length is less than 36? If less than
697 * 32, the lookup of the device flags (above) could be invalid,
698 * and it would be possible to take an incorrect action - we do
699 * not want to hang because of a short INQUIRY. On the flip side,
700 * if the device is spun down or becoming ready (and so it gives a
701 * short INQUIRY), an abort here prevents any further use of the
702 * device, including spin up.
704 * On the whole, the best approach seems to be to assume the first
705 * 36 bytes are valid no matter what the device says. That's
706 * better than copying < 36 bytes to the inquiry-result buffer
707 * and displaying garbage for the Vendor, Product, or Revision
710 if (sdev
->inquiry_len
< 36) {
711 if (!sdev
->host
->short_inquiry
) {
712 shost_printk(KERN_INFO
, sdev
->host
,
713 "scsi scan: INQUIRY result too short (%d),"
714 " using 36\n", sdev
->inquiry_len
);
715 sdev
->host
->short_inquiry
= 1;
717 sdev
->inquiry_len
= 36;
721 * Related to the above issue:
723 * XXX Devices (disk or all?) should be sent a TEST UNIT READY,
724 * and if not ready, sent a START_STOP to start (maybe spin up) and
725 * then send the INQUIRY again, since the INQUIRY can change after
726 * a device is initialized.
728 * Ideally, start a device if explicitly asked to do so. This
729 * assumes that a device is spun up on power on, spun down on
730 * request, and then spun up on request.
734 * The scanning code needs to know the scsi_level, even if no
735 * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so
736 * non-zero LUNs can be scanned.
738 sdev
->scsi_level
= inq_result
[2] & 0x07;
739 if (sdev
->scsi_level
>= 2 ||
740 (sdev
->scsi_level
== 1 && (inq_result
[3] & 0x0f) == 1))
742 sdev
->sdev_target
->scsi_level
= sdev
->scsi_level
;
745 * If SCSI-2 or lower, and if the transport requires it,
746 * store the LUN value in CDB[1].
748 sdev
->lun_in_cdb
= 0;
749 if (sdev
->scsi_level
<= SCSI_2
&&
750 sdev
->scsi_level
!= SCSI_UNKNOWN
&&
751 !sdev
->host
->no_scsi2_lun_in_cdb
)
752 sdev
->lun_in_cdb
= 1;
758 * scsi_add_lun - allocate and fully initialze a scsi_device
759 * @sdev: holds information to be stored in the new scsi_device
760 * @inq_result: holds the result of a previous INQUIRY to the LUN
761 * @bflags: black/white list flag
762 * @async: 1 if this device is being scanned asynchronously
765 * Initialize the scsi_device @sdev. Optionally set fields based
766 * on values in *@bflags.
769 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
770 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
772 static int scsi_add_lun(struct scsi_device
*sdev
, unsigned char *inq_result
,
773 int *bflags
, int async
)
778 * XXX do not save the inquiry, since it can change underneath us,
779 * save just vendor/model/rev.
781 * Rather than save it and have an ioctl that retrieves the saved
782 * value, have an ioctl that executes the same INQUIRY code used
783 * in scsi_probe_lun, let user level programs doing INQUIRY
784 * scanning run at their own risk, or supply a user level program
785 * that can correctly scan.
789 * Copy at least 36 bytes of INQUIRY data, so that we don't
790 * dereference unallocated memory when accessing the Vendor,
791 * Product, and Revision strings. Badly behaved devices may set
792 * the INQUIRY Additional Length byte to a small value, indicating
793 * these strings are invalid, but often they contain plausible data
794 * nonetheless. It doesn't matter if the device sent < 36 bytes
795 * total, since scsi_probe_lun() initializes inq_result with 0s.
797 sdev
->inquiry
= kmemdup(inq_result
,
798 max_t(size_t, sdev
->inquiry_len
, 36),
800 if (sdev
->inquiry
== NULL
)
801 return SCSI_SCAN_NO_RESPONSE
;
803 sdev
->vendor
= (char *) (sdev
->inquiry
+ 8);
804 sdev
->model
= (char *) (sdev
->inquiry
+ 16);
805 sdev
->rev
= (char *) (sdev
->inquiry
+ 32);
807 if (strncmp(sdev
->vendor
, "ATA ", 8) == 0) {
809 * sata emulation layer device. This is a hack to work around
810 * the SATL power management specifications which state that
811 * when the SATL detects the device has gone into standby
812 * mode, it shall respond with NOT READY.
814 sdev
->allow_restart
= 1;
817 if (*bflags
& BLIST_ISROM
) {
818 sdev
->type
= TYPE_ROM
;
821 sdev
->type
= (inq_result
[0] & 0x1f);
822 sdev
->removable
= (inq_result
[1] & 0x80) >> 7;
825 * some devices may respond with wrong type for
826 * well-known logical units. Force well-known type
827 * to enumerate them correctly.
829 if (scsi_is_wlun(sdev
->lun
) && sdev
->type
!= TYPE_WLUN
) {
830 sdev_printk(KERN_WARNING
, sdev
,
831 "%s: correcting incorrect peripheral device type 0x%x for W-LUN 0x%16xhN\n",
832 __func__
, sdev
->type
, (unsigned int)sdev
->lun
);
833 sdev
->type
= TYPE_WLUN
;
838 if (sdev
->type
== TYPE_RBC
|| sdev
->type
== TYPE_ROM
) {
839 /* RBC and MMC devices can return SCSI-3 compliance and yet
840 * still not support REPORT LUNS, so make them act as
841 * BLIST_NOREPORTLUN unless BLIST_REPORTLUN2 is
842 * specifically set */
843 if ((*bflags
& BLIST_REPORTLUN2
) == 0)
844 *bflags
|= BLIST_NOREPORTLUN
;
848 * For a peripheral qualifier (PQ) value of 1 (001b), the SCSI
849 * spec says: The device server is capable of supporting the
850 * specified peripheral device type on this logical unit. However,
851 * the physical device is not currently connected to this logical
854 * The above is vague, as it implies that we could treat 001 and
855 * 011 the same. Stay compatible with previous code, and create a
856 * scsi_device for a PQ of 1
858 * Don't set the device offline here; rather let the upper
859 * level drivers eval the PQ to decide whether they should
860 * attach. So remove ((inq_result[0] >> 5) & 7) == 1 check.
863 sdev
->inq_periph_qual
= (inq_result
[0] >> 5) & 7;
864 sdev
->lockable
= sdev
->removable
;
865 sdev
->soft_reset
= (inq_result
[7] & 1) && ((inq_result
[3] & 7) == 2);
867 if (sdev
->scsi_level
>= SCSI_3
||
868 (sdev
->inquiry_len
> 56 && inq_result
[56] & 0x04))
870 if (inq_result
[7] & 0x60)
872 if (inq_result
[7] & 0x10)
875 sdev_printk(KERN_NOTICE
, sdev
, "%s %.8s %.16s %.4s PQ: %d "
876 "ANSI: %d%s\n", scsi_device_type(sdev
->type
),
877 sdev
->vendor
, sdev
->model
, sdev
->rev
,
878 sdev
->inq_periph_qual
, inq_result
[2] & 0x07,
879 (inq_result
[3] & 0x0f) == 1 ? " CCS" : "");
881 if ((sdev
->scsi_level
>= SCSI_2
) && (inq_result
[7] & 2) &&
882 !(*bflags
& BLIST_NOTQ
)) {
883 sdev
->tagged_supported
= 1;
884 sdev
->simple_tags
= 1;
888 * Some devices (Texel CD ROM drives) have handshaking problems
889 * when used with the Seagate controllers. borken is initialized
890 * to 1, and then set it to 0 here.
892 if ((*bflags
& BLIST_BORKEN
) == 0)
895 if (*bflags
& BLIST_NO_ULD_ATTACH
)
896 sdev
->no_uld_attach
= 1;
899 * Apparently some really broken devices (contrary to the SCSI
900 * standards) need to be selected without asserting ATN
902 if (*bflags
& BLIST_SELECT_NO_ATN
)
903 sdev
->select_no_atn
= 1;
906 * Maximum 512 sector transfer length
907 * broken RA4x00 Compaq Disk Array
909 if (*bflags
& BLIST_MAX_512
)
910 blk_queue_max_hw_sectors(sdev
->request_queue
, 512);
912 * Max 1024 sector transfer length for targets that report incorrect
913 * max/optimal lengths and relied on the old block layer safe default
915 else if (*bflags
& BLIST_MAX_1024
)
916 blk_queue_max_hw_sectors(sdev
->request_queue
, 1024);
919 * Some devices may not want to have a start command automatically
920 * issued when a device is added.
922 if (*bflags
& BLIST_NOSTARTONADD
)
923 sdev
->no_start_on_add
= 1;
925 if (*bflags
& BLIST_SINGLELUN
)
926 scsi_target(sdev
)->single_lun
= 1;
928 sdev
->use_10_for_rw
= 1;
930 if (*bflags
& BLIST_MS_SKIP_PAGE_08
)
931 sdev
->skip_ms_page_8
= 1;
933 if (*bflags
& BLIST_MS_SKIP_PAGE_3F
)
934 sdev
->skip_ms_page_3f
= 1;
936 if (*bflags
& BLIST_USE_10_BYTE_MS
)
937 sdev
->use_10_for_ms
= 1;
939 /* some devices don't like REPORT SUPPORTED OPERATION CODES
940 * and will simply timeout causing sd_mod init to take a very
942 if (*bflags
& BLIST_NO_RSOC
)
943 sdev
->no_report_opcodes
= 1;
945 /* set the device running here so that slave configure
947 ret
= scsi_device_set_state(sdev
, SDEV_RUNNING
);
949 ret
= scsi_device_set_state(sdev
, SDEV_BLOCK
);
952 sdev_printk(KERN_ERR
, sdev
,
953 "in wrong state %s to complete scan\n",
954 scsi_device_state_name(sdev
->sdev_state
));
955 return SCSI_SCAN_NO_RESPONSE
;
959 if (*bflags
& BLIST_MS_192_BYTES_FOR_3F
)
960 sdev
->use_192_bytes_for_3f
= 1;
962 if (*bflags
& BLIST_NOT_LOCKABLE
)
965 if (*bflags
& BLIST_RETRY_HWERROR
)
966 sdev
->retry_hwerror
= 1;
968 if (*bflags
& BLIST_NO_DIF
)
971 if (*bflags
& BLIST_SYNC_ALUA
)
972 sdev
->synchronous_alua
= 1;
974 sdev
->eh_timeout
= SCSI_DEFAULT_EH_TIMEOUT
;
976 if (*bflags
& BLIST_TRY_VPD_PAGES
)
977 sdev
->try_vpd_pages
= 1;
978 else if (*bflags
& BLIST_SKIP_VPD_PAGES
)
979 sdev
->skip_vpd_pages
= 1;
981 transport_configure_device(&sdev
->sdev_gendev
);
983 if (sdev
->host
->hostt
->slave_configure
) {
984 ret
= sdev
->host
->hostt
->slave_configure(sdev
);
987 * if LLDD reports slave not present, don't clutter
988 * console with alloc failure messages
991 sdev_printk(KERN_ERR
, sdev
,
992 "failed to configure device\n");
994 return SCSI_SCAN_NO_RESPONSE
;
998 if (sdev
->scsi_level
>= SCSI_3
)
999 scsi_attach_vpd(sdev
);
1001 sdev
->max_queue_depth
= sdev
->queue_depth
;
1004 * Ok, the device is now all set up, we can
1005 * register it and tell the rest of the kernel
1008 if (!async
&& scsi_sysfs_add_sdev(sdev
) != 0)
1009 return SCSI_SCAN_NO_RESPONSE
;
1011 return SCSI_SCAN_LUN_PRESENT
;
1014 #ifdef CONFIG_SCSI_LOGGING
1016 * scsi_inq_str - print INQUIRY data from min to max index, strip trailing whitespace
1017 * @buf: Output buffer with at least end-first+1 bytes of space
1018 * @inq: Inquiry buffer (input)
1019 * @first: Offset of string into inq
1020 * @end: Index after last character in inq
1022 static unsigned char *scsi_inq_str(unsigned char *buf
, unsigned char *inq
,
1023 unsigned first
, unsigned end
)
1025 unsigned term
= 0, idx
;
1027 for (idx
= 0; idx
+ first
< end
&& idx
+ first
< inq
[4] + 5; idx
++) {
1028 if (inq
[idx
+first
] > ' ') {
1029 buf
[idx
] = inq
[idx
+first
];
1041 * scsi_probe_and_add_lun - probe a LUN, if a LUN is found add it
1042 * @starget: pointer to target device structure
1043 * @lun: LUN of target device
1044 * @bflagsp: store bflags here if not NULL
1045 * @sdevp: probe the LUN corresponding to this scsi_device
1046 * @rescan: if not equal to SCSI_SCAN_INITIAL skip some code only
1047 * needed on first scan
1048 * @hostdata: passed to scsi_alloc_sdev()
1051 * Call scsi_probe_lun, if a LUN with an attached device is found,
1052 * allocate and set it up by calling scsi_add_lun.
1055 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
1056 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is
1057 * attached at the LUN
1058 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
1060 static int scsi_probe_and_add_lun(struct scsi_target
*starget
,
1061 u64 lun
, int *bflagsp
,
1062 struct scsi_device
**sdevp
,
1063 enum scsi_scan_mode rescan
,
1066 struct scsi_device
*sdev
;
1067 unsigned char *result
;
1068 int bflags
, res
= SCSI_SCAN_NO_RESPONSE
, result_len
= 256;
1069 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
1072 * The rescan flag is used as an optimization, the first scan of a
1073 * host adapter calls into here with rescan == 0.
1075 sdev
= scsi_device_lookup_by_target(starget
, lun
);
1077 if (rescan
!= SCSI_SCAN_INITIAL
|| !scsi_device_created(sdev
)) {
1078 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO
, sdev
,
1079 "scsi scan: device exists on %s\n",
1080 dev_name(&sdev
->sdev_gendev
)));
1084 scsi_device_put(sdev
);
1087 *bflagsp
= scsi_get_device_flags(sdev
,
1090 return SCSI_SCAN_LUN_PRESENT
;
1092 scsi_device_put(sdev
);
1094 sdev
= scsi_alloc_sdev(starget
, lun
, hostdata
);
1098 result
= kmalloc(result_len
, GFP_ATOMIC
|
1099 ((shost
->unchecked_isa_dma
) ? __GFP_DMA
: 0));
1103 if (scsi_probe_lun(sdev
, result
, result_len
, &bflags
))
1104 goto out_free_result
;
1109 * result contains valid SCSI INQUIRY data.
1111 if (((result
[0] >> 5) == 3) && !(bflags
& BLIST_ATTACH_PQ3
)) {
1113 * For a Peripheral qualifier 3 (011b), the SCSI
1114 * spec says: The device server is not capable of
1115 * supporting a physical device on this logical
1118 * For disks, this implies that there is no
1119 * logical disk configured at sdev->lun, but there
1120 * is a target id responding.
1122 SCSI_LOG_SCAN_BUS(2, sdev_printk(KERN_INFO
, sdev
, "scsi scan:"
1123 " peripheral qualifier of 3, device not"
1126 SCSI_LOG_SCAN_BUS(1, {
1127 unsigned char vend
[9];
1128 unsigned char mod
[17];
1130 sdev_printk(KERN_INFO
, sdev
,
1131 "scsi scan: consider passing scsi_mod."
1132 "dev_flags=%s:%s:0x240 or 0x1000240\n",
1133 scsi_inq_str(vend
, result
, 8, 16),
1134 scsi_inq_str(mod
, result
, 16, 32));
1139 res
= SCSI_SCAN_TARGET_PRESENT
;
1140 goto out_free_result
;
1144 * Some targets may set slight variations of PQ and PDT to signal
1145 * that no LUN is present, so don't add sdev in these cases.
1146 * Two specific examples are:
1147 * 1) NetApp targets: return PQ=1, PDT=0x1f
1148 * 2) USB UFI: returns PDT=0x1f, with the PQ bits being "reserved"
1149 * in the UFI 1.0 spec (we cannot rely on reserved bits).
1152 * 1) SCSI SPC-3, pp. 145-146
1153 * PQ=1: "A peripheral device having the specified peripheral
1154 * device type is not connected to this logical unit. However, the
1155 * device server is capable of supporting the specified peripheral
1156 * device type on this logical unit."
1157 * PDT=0x1f: "Unknown or no device type"
1158 * 2) USB UFI 1.0, p. 20
1159 * PDT=00h Direct-access device (floppy)
1160 * PDT=1Fh none (no FDD connected to the requested logical unit)
1162 if (((result
[0] >> 5) == 1 || starget
->pdt_1f_for_no_lun
) &&
1163 (result
[0] & 0x1f) == 0x1f &&
1164 !scsi_is_wlun(lun
)) {
1165 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO
, sdev
,
1166 "scsi scan: peripheral device type"
1167 " of 31, no device added\n"));
1168 res
= SCSI_SCAN_TARGET_PRESENT
;
1169 goto out_free_result
;
1172 res
= scsi_add_lun(sdev
, result
, &bflags
, shost
->async_scan
);
1173 if (res
== SCSI_SCAN_LUN_PRESENT
) {
1174 if (bflags
& BLIST_KEY
) {
1176 scsi_unlock_floptical(sdev
, result
);
1183 if (res
== SCSI_SCAN_LUN_PRESENT
) {
1185 if (scsi_device_get(sdev
) == 0) {
1188 __scsi_remove_device(sdev
);
1189 res
= SCSI_SCAN_NO_RESPONSE
;
1193 __scsi_remove_device(sdev
);
1199 * scsi_sequential_lun_scan - sequentially scan a SCSI target
1200 * @starget: pointer to target structure to scan
1201 * @bflags: black/white list flag for LUN 0
1202 * @scsi_level: Which version of the standard does this device adhere to
1203 * @rescan: passed to scsi_probe_add_lun()
1206 * Generally, scan from LUN 1 (LUN 0 is assumed to already have been
1207 * scanned) to some maximum lun until a LUN is found with no device
1208 * attached. Use the bflags to figure out any oddities.
1210 * Modifies sdevscan->lun.
1212 static void scsi_sequential_lun_scan(struct scsi_target
*starget
,
1213 int bflags
, int scsi_level
,
1214 enum scsi_scan_mode rescan
)
1217 u64 sparse_lun
, lun
;
1218 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
1220 SCSI_LOG_SCAN_BUS(3, starget_printk(KERN_INFO
, starget
,
1221 "scsi scan: Sequential scan\n"));
1223 max_dev_lun
= min(max_scsi_luns
, shost
->max_lun
);
1225 * If this device is known to support sparse multiple units,
1226 * override the other settings, and scan all of them. Normally,
1227 * SCSI-3 devices should be scanned via the REPORT LUNS.
1229 if (bflags
& BLIST_SPARSELUN
) {
1230 max_dev_lun
= shost
->max_lun
;
1236 * If less than SCSI_1_CCS, and no special lun scanning, stop
1237 * scanning; this matches 2.4 behaviour, but could just be a bug
1238 * (to continue scanning a SCSI_1_CCS device).
1240 * This test is broken. We might not have any device on lun0 for
1241 * a sparselun device, and if that's the case then how would we
1242 * know the real scsi_level, eh? It might make sense to just not
1243 * scan any SCSI_1 device for non-0 luns, but that check would best
1244 * go into scsi_alloc_sdev() and just have it return null when asked
1245 * to alloc an sdev for lun > 0 on an already found SCSI_1 device.
1247 if ((sdevscan->scsi_level < SCSI_1_CCS) &&
1248 ((bflags & (BLIST_FORCELUN | BLIST_SPARSELUN | BLIST_MAX5LUN))
1253 * If this device is known to support multiple units, override
1254 * the other settings, and scan all of them.
1256 if (bflags
& BLIST_FORCELUN
)
1257 max_dev_lun
= shost
->max_lun
;
1259 * REGAL CDC-4X: avoid hang after LUN 4
1261 if (bflags
& BLIST_MAX5LUN
)
1262 max_dev_lun
= min(5U, max_dev_lun
);
1264 * Do not scan SCSI-2 or lower device past LUN 7, unless
1267 if (scsi_level
< SCSI_3
&& !(bflags
& BLIST_LARGELUN
))
1268 max_dev_lun
= min(8U, max_dev_lun
);
1271 * Stop scanning at 255 unless BLIST_SCSI3LUN
1273 if (!(bflags
& BLIST_SCSI3LUN
))
1274 max_dev_lun
= min(256U, max_dev_lun
);
1277 * We have already scanned LUN 0, so start at LUN 1. Keep scanning
1278 * until we reach the max, or no LUN is found and we are not
1281 for (lun
= 1; lun
< max_dev_lun
; ++lun
)
1282 if ((scsi_probe_and_add_lun(starget
, lun
, NULL
, NULL
, rescan
,
1283 NULL
) != SCSI_SCAN_LUN_PRESENT
) &&
1289 * scsi_report_lun_scan - Scan using SCSI REPORT LUN results
1290 * @starget: which target
1291 * @bflags: Zero or a mix of BLIST_NOLUN, BLIST_REPORTLUN2, or BLIST_NOREPORTLUN
1292 * @rescan: nonzero if we can skip code only needed on first scan
1295 * Fast scanning for modern (SCSI-3) devices by sending a REPORT LUN command.
1296 * Scan the resulting list of LUNs by calling scsi_probe_and_add_lun.
1298 * If BLINK_REPORTLUN2 is set, scan a target that supports more than 8
1299 * LUNs even if it's older than SCSI-3.
1300 * If BLIST_NOREPORTLUN is set, return 1 always.
1301 * If BLIST_NOLUN is set, return 0 always.
1302 * If starget->no_report_luns is set, return 1 always.
1305 * 0: scan completed (or no memory, so further scanning is futile)
1306 * 1: could not scan with REPORT LUN
1308 static int scsi_report_lun_scan(struct scsi_target
*starget
, int bflags
,
1309 enum scsi_scan_mode rescan
)
1311 unsigned char scsi_cmd
[MAX_COMMAND_SIZE
];
1312 unsigned int length
;
1314 unsigned int num_luns
;
1315 unsigned int retries
;
1317 struct scsi_lun
*lunp
, *lun_data
;
1318 struct scsi_sense_hdr sshdr
;
1319 struct scsi_device
*sdev
;
1320 struct Scsi_Host
*shost
= dev_to_shost(&starget
->dev
);
1324 * Only support SCSI-3 and up devices if BLIST_NOREPORTLUN is not set.
1325 * Also allow SCSI-2 if BLIST_REPORTLUN2 is set and host adapter does
1326 * support more than 8 LUNs.
1327 * Don't attempt if the target doesn't support REPORT LUNS.
1329 if (bflags
& BLIST_NOREPORTLUN
)
1331 if (starget
->scsi_level
< SCSI_2
&&
1332 starget
->scsi_level
!= SCSI_UNKNOWN
)
1334 if (starget
->scsi_level
< SCSI_3
&&
1335 (!(bflags
& BLIST_REPORTLUN2
) || shost
->max_lun
<= 8))
1337 if (bflags
& BLIST_NOLUN
)
1339 if (starget
->no_report_luns
)
1342 if (!(sdev
= scsi_device_lookup_by_target(starget
, 0))) {
1343 sdev
= scsi_alloc_sdev(starget
, 0, NULL
);
1346 if (scsi_device_get(sdev
)) {
1347 __scsi_remove_device(sdev
);
1353 * Allocate enough to hold the header (the same size as one scsi_lun)
1354 * plus the number of luns we are requesting. 511 was the default
1355 * value of the now removed max_report_luns parameter.
1357 length
= (511 + 1) * sizeof(struct scsi_lun
);
1359 lun_data
= kmalloc(length
, GFP_KERNEL
|
1360 (sdev
->host
->unchecked_isa_dma
? __GFP_DMA
: 0));
1362 printk(ALLOC_FAILURE_MSG
, __func__
);
1366 scsi_cmd
[0] = REPORT_LUNS
;
1369 * bytes 1 - 5: reserved, set to zero.
1371 memset(&scsi_cmd
[1], 0, 5);
1374 * bytes 6 - 9: length of the command.
1376 put_unaligned_be32(length
, &scsi_cmd
[6]);
1378 scsi_cmd
[10] = 0; /* reserved */
1379 scsi_cmd
[11] = 0; /* control */
1382 * We can get a UNIT ATTENTION, for example a power on/reset, so
1383 * retry a few times (like sd.c does for TEST UNIT READY).
1384 * Experience shows some combinations of adapter/devices get at
1385 * least two power on/resets.
1387 * Illegal requests (for devices that do not support REPORT LUNS)
1388 * should come through as a check condition, and will not generate
1391 for (retries
= 0; retries
< 3; retries
++) {
1392 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO
, sdev
,
1393 "scsi scan: Sending REPORT LUNS to (try %d)\n",
1396 result
= scsi_execute_req(sdev
, scsi_cmd
, DMA_FROM_DEVICE
,
1397 lun_data
, length
, &sshdr
,
1398 SCSI_REPORT_LUNS_TIMEOUT
, 3, NULL
);
1400 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO
, sdev
,
1401 "scsi scan: REPORT LUNS"
1402 " %s (try %d) result 0x%x\n",
1403 result
? "failed" : "successful",
1407 else if (scsi_sense_valid(&sshdr
)) {
1408 if (sshdr
.sense_key
!= UNIT_ATTENTION
)
1415 * The device probably does not support a REPORT LUN command
1422 * Get the length from the first four bytes of lun_data.
1424 if (get_unaligned_be32(lun_data
->scsi_lun
) +
1425 sizeof(struct scsi_lun
) > length
) {
1426 length
= get_unaligned_be32(lun_data
->scsi_lun
) +
1427 sizeof(struct scsi_lun
);
1431 length
= get_unaligned_be32(lun_data
->scsi_lun
);
1433 num_luns
= (length
/ sizeof(struct scsi_lun
));
1435 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO
, sdev
,
1436 "scsi scan: REPORT LUN scan\n"));
1439 * Scan the luns in lun_data. The entry at offset 0 is really
1440 * the header, so start at 1 and go up to and including num_luns.
1442 for (lunp
= &lun_data
[1]; lunp
<= &lun_data
[num_luns
]; lunp
++) {
1443 lun
= scsilun_to_int(lunp
);
1445 if (lun
> sdev
->host
->max_lun
) {
1446 sdev_printk(KERN_WARNING
, sdev
,
1447 "lun%llu has a LUN larger than"
1448 " allowed by the host adapter\n", lun
);
1452 res
= scsi_probe_and_add_lun(starget
,
1453 lun
, NULL
, NULL
, rescan
, NULL
);
1454 if (res
== SCSI_SCAN_NO_RESPONSE
) {
1456 * Got some results, but now none, abort.
1458 sdev_printk(KERN_ERR
, sdev
,
1459 "Unexpected response"
1460 " from lun %llu while scanning, scan"
1461 " aborted\n", (unsigned long long)lun
);
1470 if (scsi_device_created(sdev
))
1472 * the sdev we used didn't appear in the report luns scan
1474 __scsi_remove_device(sdev
);
1475 scsi_device_put(sdev
);
1479 struct scsi_device
*__scsi_add_device(struct Scsi_Host
*shost
, uint channel
,
1480 uint id
, u64 lun
, void *hostdata
)
1482 struct scsi_device
*sdev
= ERR_PTR(-ENODEV
);
1483 struct device
*parent
= &shost
->shost_gendev
;
1484 struct scsi_target
*starget
;
1486 if (strncmp(scsi_scan_type
, "none", 4) == 0)
1487 return ERR_PTR(-ENODEV
);
1489 starget
= scsi_alloc_target(parent
, channel
, id
);
1491 return ERR_PTR(-ENOMEM
);
1492 scsi_autopm_get_target(starget
);
1494 mutex_lock(&shost
->scan_mutex
);
1495 if (!shost
->async_scan
)
1496 scsi_complete_async_scans();
1498 if (scsi_host_scan_allowed(shost
) && scsi_autopm_get_host(shost
) == 0) {
1499 scsi_probe_and_add_lun(starget
, lun
, NULL
, &sdev
, 1, hostdata
);
1500 scsi_autopm_put_host(shost
);
1502 mutex_unlock(&shost
->scan_mutex
);
1503 scsi_autopm_put_target(starget
);
1505 * paired with scsi_alloc_target(). Target will be destroyed unless
1506 * scsi_probe_and_add_lun made an underlying device visible
1508 scsi_target_reap(starget
);
1509 put_device(&starget
->dev
);
1513 EXPORT_SYMBOL(__scsi_add_device
);
1515 int scsi_add_device(struct Scsi_Host
*host
, uint channel
,
1516 uint target
, u64 lun
)
1518 struct scsi_device
*sdev
=
1519 __scsi_add_device(host
, channel
, target
, lun
, NULL
);
1521 return PTR_ERR(sdev
);
1523 scsi_device_put(sdev
);
1526 EXPORT_SYMBOL(scsi_add_device
);
1528 void scsi_rescan_device(struct device
*dev
)
1530 struct scsi_device
*sdev
= to_scsi_device(dev
);
1534 scsi_attach_vpd(sdev
);
1536 if (sdev
->handler
&& sdev
->handler
->rescan
)
1537 sdev
->handler
->rescan(sdev
);
1539 if (dev
->driver
&& try_module_get(dev
->driver
->owner
)) {
1540 struct scsi_driver
*drv
= to_scsi_driver(dev
->driver
);
1544 module_put(dev
->driver
->owner
);
1548 EXPORT_SYMBOL(scsi_rescan_device
);
1550 static void __scsi_scan_target(struct device
*parent
, unsigned int channel
,
1551 unsigned int id
, u64 lun
, enum scsi_scan_mode rescan
)
1553 struct Scsi_Host
*shost
= dev_to_shost(parent
);
1556 struct scsi_target
*starget
;
1558 if (shost
->this_id
== id
)
1560 * Don't scan the host adapter
1564 starget
= scsi_alloc_target(parent
, channel
, id
);
1567 scsi_autopm_get_target(starget
);
1569 if (lun
!= SCAN_WILD_CARD
) {
1571 * Scan for a specific host/chan/id/lun.
1573 scsi_probe_and_add_lun(starget
, lun
, NULL
, NULL
, rescan
, NULL
);
1578 * Scan LUN 0, if there is some response, scan further. Ideally, we
1579 * would not configure LUN 0 until all LUNs are scanned.
1581 res
= scsi_probe_and_add_lun(starget
, 0, &bflags
, NULL
, rescan
, NULL
);
1582 if (res
== SCSI_SCAN_LUN_PRESENT
|| res
== SCSI_SCAN_TARGET_PRESENT
) {
1583 if (scsi_report_lun_scan(starget
, bflags
, rescan
) != 0)
1585 * The REPORT LUN did not scan the target,
1586 * do a sequential scan.
1588 scsi_sequential_lun_scan(starget
, bflags
,
1589 starget
->scsi_level
, rescan
);
1593 scsi_autopm_put_target(starget
);
1595 * paired with scsi_alloc_target(): determine if the target has
1596 * any children at all and if not, nuke it
1598 scsi_target_reap(starget
);
1600 put_device(&starget
->dev
);
1604 * scsi_scan_target - scan a target id, possibly including all LUNs on the target.
1605 * @parent: host to scan
1606 * @channel: channel to scan
1607 * @id: target id to scan
1608 * @lun: Specific LUN to scan or SCAN_WILD_CARD
1609 * @rescan: passed to LUN scanning routines; SCSI_SCAN_INITIAL for
1610 * no rescan, SCSI_SCAN_RESCAN to rescan existing LUNs,
1611 * and SCSI_SCAN_MANUAL to force scanning even if
1612 * 'scan=manual' is set.
1615 * Scan the target id on @parent, @channel, and @id. Scan at least LUN 0,
1616 * and possibly all LUNs on the target id.
1618 * First try a REPORT LUN scan, if that does not scan the target, do a
1619 * sequential scan of LUNs on the target id.
1621 void scsi_scan_target(struct device
*parent
, unsigned int channel
,
1622 unsigned int id
, u64 lun
, enum scsi_scan_mode rescan
)
1624 struct Scsi_Host
*shost
= dev_to_shost(parent
);
1626 if (strncmp(scsi_scan_type
, "none", 4) == 0)
1629 if (rescan
!= SCSI_SCAN_MANUAL
&&
1630 strncmp(scsi_scan_type
, "manual", 6) == 0)
1633 mutex_lock(&shost
->scan_mutex
);
1634 if (!shost
->async_scan
)
1635 scsi_complete_async_scans();
1637 if (scsi_host_scan_allowed(shost
) && scsi_autopm_get_host(shost
) == 0) {
1638 __scsi_scan_target(parent
, channel
, id
, lun
, rescan
);
1639 scsi_autopm_put_host(shost
);
1641 mutex_unlock(&shost
->scan_mutex
);
1643 EXPORT_SYMBOL(scsi_scan_target
);
1645 static void scsi_scan_channel(struct Scsi_Host
*shost
, unsigned int channel
,
1646 unsigned int id
, u64 lun
,
1647 enum scsi_scan_mode rescan
)
1651 if (id
== SCAN_WILD_CARD
)
1652 for (id
= 0; id
< shost
->max_id
; ++id
) {
1654 * XXX adapter drivers when possible (FCP, iSCSI)
1655 * could modify max_id to match the current max,
1656 * not the absolute max.
1658 * XXX add a shost id iterator, so for example,
1659 * the FC ID can be the same as a target id
1660 * without a huge overhead of sparse id's.
1662 if (shost
->reverse_ordering
)
1664 * Scan from high to low id.
1666 order_id
= shost
->max_id
- id
- 1;
1669 __scsi_scan_target(&shost
->shost_gendev
, channel
,
1670 order_id
, lun
, rescan
);
1673 __scsi_scan_target(&shost
->shost_gendev
, channel
,
1677 int scsi_scan_host_selected(struct Scsi_Host
*shost
, unsigned int channel
,
1678 unsigned int id
, u64 lun
,
1679 enum scsi_scan_mode rescan
)
1681 SCSI_LOG_SCAN_BUS(3, shost_printk (KERN_INFO
, shost
,
1682 "%s: <%u:%u:%llu>\n",
1683 __func__
, channel
, id
, lun
));
1685 if (((channel
!= SCAN_WILD_CARD
) && (channel
> shost
->max_channel
)) ||
1686 ((id
!= SCAN_WILD_CARD
) && (id
>= shost
->max_id
)) ||
1687 ((lun
!= SCAN_WILD_CARD
) && (lun
>= shost
->max_lun
)))
1690 mutex_lock(&shost
->scan_mutex
);
1691 if (!shost
->async_scan
)
1692 scsi_complete_async_scans();
1694 if (scsi_host_scan_allowed(shost
) && scsi_autopm_get_host(shost
) == 0) {
1695 if (channel
== SCAN_WILD_CARD
)
1696 for (channel
= 0; channel
<= shost
->max_channel
;
1698 scsi_scan_channel(shost
, channel
, id
, lun
,
1701 scsi_scan_channel(shost
, channel
, id
, lun
, rescan
);
1702 scsi_autopm_put_host(shost
);
1704 mutex_unlock(&shost
->scan_mutex
);
1709 static void scsi_sysfs_add_devices(struct Scsi_Host
*shost
)
1711 struct scsi_device
*sdev
;
1712 shost_for_each_device(sdev
, shost
) {
1713 /* target removed before the device could be added */
1714 if (sdev
->sdev_state
== SDEV_DEL
)
1716 /* If device is already visible, skip adding it to sysfs */
1717 if (sdev
->is_visible
)
1719 if (!scsi_host_scan_allowed(shost
) ||
1720 scsi_sysfs_add_sdev(sdev
) != 0)
1721 __scsi_remove_device(sdev
);
1726 * scsi_prep_async_scan - prepare for an async scan
1727 * @shost: the host which will be scanned
1728 * Returns: a cookie to be passed to scsi_finish_async_scan()
1730 * Tells the midlayer this host is going to do an asynchronous scan.
1731 * It reserves the host's position in the scanning list and ensures
1732 * that other asynchronous scans started after this one won't affect the
1733 * ordering of the discovered devices.
1735 static struct async_scan_data
*scsi_prep_async_scan(struct Scsi_Host
*shost
)
1737 struct async_scan_data
*data
;
1738 unsigned long flags
;
1740 if (strncmp(scsi_scan_type
, "sync", 4) == 0)
1743 if (shost
->async_scan
) {
1744 shost_printk(KERN_DEBUG
, shost
, "%s called twice\n", __func__
);
1748 data
= kmalloc(sizeof(*data
), GFP_KERNEL
);
1751 data
->shost
= scsi_host_get(shost
);
1754 init_completion(&data
->prev_finished
);
1756 mutex_lock(&shost
->scan_mutex
);
1757 spin_lock_irqsave(shost
->host_lock
, flags
);
1758 shost
->async_scan
= 1;
1759 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1760 mutex_unlock(&shost
->scan_mutex
);
1762 spin_lock(&async_scan_lock
);
1763 if (list_empty(&scanning_hosts
))
1764 complete(&data
->prev_finished
);
1765 list_add_tail(&data
->list
, &scanning_hosts
);
1766 spin_unlock(&async_scan_lock
);
1776 * scsi_finish_async_scan - asynchronous scan has finished
1777 * @data: cookie returned from earlier call to scsi_prep_async_scan()
1779 * All the devices currently attached to this host have been found.
1780 * This function announces all the devices it has found to the rest
1783 static void scsi_finish_async_scan(struct async_scan_data
*data
)
1785 struct Scsi_Host
*shost
;
1786 unsigned long flags
;
1791 shost
= data
->shost
;
1793 mutex_lock(&shost
->scan_mutex
);
1795 if (!shost
->async_scan
) {
1796 shost_printk(KERN_INFO
, shost
, "%s called twice\n", __func__
);
1798 mutex_unlock(&shost
->scan_mutex
);
1802 wait_for_completion(&data
->prev_finished
);
1804 scsi_sysfs_add_devices(shost
);
1806 spin_lock_irqsave(shost
->host_lock
, flags
);
1807 shost
->async_scan
= 0;
1808 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1810 mutex_unlock(&shost
->scan_mutex
);
1812 spin_lock(&async_scan_lock
);
1813 list_del(&data
->list
);
1814 if (!list_empty(&scanning_hosts
)) {
1815 struct async_scan_data
*next
= list_entry(scanning_hosts
.next
,
1816 struct async_scan_data
, list
);
1817 complete(&next
->prev_finished
);
1819 spin_unlock(&async_scan_lock
);
1821 scsi_autopm_put_host(shost
);
1822 scsi_host_put(shost
);
1826 static void do_scsi_scan_host(struct Scsi_Host
*shost
)
1828 if (shost
->hostt
->scan_finished
) {
1829 unsigned long start
= jiffies
;
1830 if (shost
->hostt
->scan_start
)
1831 shost
->hostt
->scan_start(shost
);
1833 while (!shost
->hostt
->scan_finished(shost
, jiffies
- start
))
1836 scsi_scan_host_selected(shost
, SCAN_WILD_CARD
, SCAN_WILD_CARD
,
1841 static void do_scan_async(void *_data
, async_cookie_t c
)
1843 struct async_scan_data
*data
= _data
;
1844 struct Scsi_Host
*shost
= data
->shost
;
1846 do_scsi_scan_host(shost
);
1847 scsi_finish_async_scan(data
);
1851 * scsi_scan_host - scan the given adapter
1852 * @shost: adapter to scan
1854 void scsi_scan_host(struct Scsi_Host
*shost
)
1856 struct async_scan_data
*data
;
1858 if (strncmp(scsi_scan_type
, "none", 4) == 0 ||
1859 strncmp(scsi_scan_type
, "manual", 6) == 0)
1861 if (scsi_autopm_get_host(shost
) < 0)
1864 data
= scsi_prep_async_scan(shost
);
1866 do_scsi_scan_host(shost
);
1867 scsi_autopm_put_host(shost
);
1871 /* register with the async subsystem so wait_for_device_probe()
1872 * will flush this work
1874 async_schedule(do_scan_async
, data
);
1876 /* scsi_autopm_put_host(shost) is called in scsi_finish_async_scan() */
1878 EXPORT_SYMBOL(scsi_scan_host
);
1880 void scsi_forget_host(struct Scsi_Host
*shost
)
1882 struct scsi_device
*sdev
;
1883 unsigned long flags
;
1886 spin_lock_irqsave(shost
->host_lock
, flags
);
1887 list_for_each_entry(sdev
, &shost
->__devices
, siblings
) {
1888 if (sdev
->sdev_state
== SDEV_DEL
)
1890 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1891 __scsi_remove_device(sdev
);
1894 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1898 * scsi_get_host_dev - Create a scsi_device that points to the host adapter itself
1899 * @shost: Host that needs a scsi_device
1901 * Lock status: None assumed.
1903 * Returns: The scsi_device or NULL
1906 * Attach a single scsi_device to the Scsi_Host - this should
1907 * be made to look like a "pseudo-device" that points to the
1910 * Note - this device is not accessible from any high-level
1911 * drivers (including generics), which is probably not
1912 * optimal. We can add hooks later to attach.
1914 struct scsi_device
*scsi_get_host_dev(struct Scsi_Host
*shost
)
1916 struct scsi_device
*sdev
= NULL
;
1917 struct scsi_target
*starget
;
1919 mutex_lock(&shost
->scan_mutex
);
1920 if (!scsi_host_scan_allowed(shost
))
1922 starget
= scsi_alloc_target(&shost
->shost_gendev
, 0, shost
->this_id
);
1926 sdev
= scsi_alloc_sdev(starget
, 0, NULL
);
1930 scsi_target_reap(starget
);
1931 put_device(&starget
->dev
);
1933 mutex_unlock(&shost
->scan_mutex
);
1936 EXPORT_SYMBOL(scsi_get_host_dev
);
1939 * scsi_free_host_dev - Free a scsi_device that points to the host adapter itself
1940 * @sdev: Host device to be freed
1942 * Lock status: None assumed.
1946 void scsi_free_host_dev(struct scsi_device
*sdev
)
1948 BUG_ON(sdev
->id
!= sdev
->host
->this_id
);
1950 __scsi_remove_device(sdev
);
1952 EXPORT_SYMBOL(scsi_free_host_dev
);