1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * scsi_scan.c
4 *
5 * Copyright (C) 2000 Eric Youngdale,
6 * Copyright (C) 2002 Patrick Mansfield
7 *
8 * The general scanning/probing algorithm is as follows, exceptions are
9 * made to it depending on device specific flags, compilation options, and
10 * global variable (boot or module load time) settings.
11 *
12 * A specific LUN is scanned via an INQUIRY command; if the LUN has a
13 * device attached, a scsi_device is allocated and setup for it.
14 *
15 * For every id of every channel on the given host:
16 *
17 * Scan LUN 0; if the target responds to LUN 0 (even if there is no
18 * device or storage attached to LUN 0):
19 *
20 * If LUN 0 has a device attached, allocate and setup a
21 * scsi_device for it.
22 *
23 * If target is SCSI-3 or up, issue a REPORT LUN, and scan
24 * all of the LUNs returned by the REPORT LUN; else,
25 * sequentially scan LUNs up until some maximum is reached,
26 * or a LUN is seen that cannot have a device attached to it.
27 */
28
29 #include <linux/module.h>
30 #include <linux/moduleparam.h>
31 #include <linux/init.h>
32 #include <linux/blkdev.h>
33 #include <linux/delay.h>
34 #include <linux/kthread.h>
35 #include <linux/spinlock.h>
36 #include <linux/async.h>
37 #include <linux/slab.h>
38 #include <asm/unaligned.h>
39
40 #include <scsi/scsi.h>
41 #include <scsi/scsi_cmnd.h>
42 #include <scsi/scsi_device.h>
43 #include <scsi/scsi_driver.h>
44 #include <scsi/scsi_devinfo.h>
45 #include <scsi/scsi_host.h>
46 #include <scsi/scsi_transport.h>
47 #include <scsi/scsi_dh.h>
48 #include <scsi/scsi_eh.h>
49
50 #include "scsi_priv.h"
51 #include "scsi_logging.h"
52
53 #define ALLOC_FAILURE_MSG KERN_ERR "%s: Allocation failure during" \
54 " SCSI scanning, some SCSI devices might not be configured\n"
55
56 /*
57 * Default timeout
58 */
59 #define SCSI_TIMEOUT (2*HZ)
60 #define SCSI_REPORT_LUNS_TIMEOUT (30*HZ)
61
62 /*
63 * Prefix values for the SCSI id's (stored in sysfs name field)
64 */
65 #define SCSI_UID_SER_NUM 'S'
66 #define SCSI_UID_UNKNOWN 'Z'
67
68 /*
69 * Return values of some of the scanning functions.
70 *
71 * SCSI_SCAN_NO_RESPONSE: no valid response received from the target, this
72 * includes allocation or general failures preventing IO from being sent.
73 *
74 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is available
75 * on the given LUN.
76 *
77 * SCSI_SCAN_LUN_PRESENT: target responded, and a device is available on a
78 * given LUN.
79 */
80 #define SCSI_SCAN_NO_RESPONSE 0
81 #define SCSI_SCAN_TARGET_PRESENT 1
82 #define SCSI_SCAN_LUN_PRESENT 2
83
84 static const char *scsi_null_device_strs = "nullnullnullnull";
85
86 #define MAX_SCSI_LUNS 512
87
88 static u64 max_scsi_luns = MAX_SCSI_LUNS;
89
90 module_param_named(max_luns, max_scsi_luns, ullong, S_IRUGO|S_IWUSR);
91 MODULE_PARM_DESC(max_luns,
92 "last scsi LUN (should be between 1 and 2^64-1)");
93
94 #ifdef CONFIG_SCSI_SCAN_ASYNC
95 #define SCSI_SCAN_TYPE_DEFAULT "async"
96 #else
97 #define SCSI_SCAN_TYPE_DEFAULT "sync"
98 #endif
99
100 char scsi_scan_type[7] = SCSI_SCAN_TYPE_DEFAULT;
101
102 module_param_string(scan, scsi_scan_type, sizeof(scsi_scan_type),
103 S_IRUGO|S_IWUSR);
104 MODULE_PARM_DESC(scan, "sync, async, manual, or none. "
105 "Setting to 'manual' disables automatic scanning, but allows "
106 "for manual device scan via the 'scan' sysfs attribute.");
107
108 static unsigned int scsi_inq_timeout = SCSI_TIMEOUT/HZ + 18;
109
110 module_param_named(inq_timeout, scsi_inq_timeout, uint, S_IRUGO|S_IWUSR);
111 MODULE_PARM_DESC(inq_timeout,
112 "Timeout (in seconds) waiting for devices to answer INQUIRY."
113 " Default is 20. Some devices may need more; most need less.");
114
115 /* This lock protects only this list */
116 static DEFINE_SPINLOCK(async_scan_lock);
117 static LIST_HEAD(scanning_hosts);
118
119 struct async_scan_data {
120 struct list_head list;
121 struct Scsi_Host *shost;
122 struct completion prev_finished;
123 };
124
125 /**
126 * scsi_enable_async_suspend - Enable async suspend and resume
127 */
scsi_enable_async_suspend(struct device * dev)128 void scsi_enable_async_suspend(struct device *dev)
129 {
130 /*
131 * If a user has disabled async probing a likely reason is due to a
132 * storage enclosure that does not inject staggered spin-ups. For
133 * safety, make resume synchronous as well in that case.
134 */
135 if (strncmp(scsi_scan_type, "async", 5) != 0)
136 return;
137 /* Enable asynchronous suspend and resume. */
138 device_enable_async_suspend(dev);
139 }
140
141 /**
142 * scsi_complete_async_scans - Wait for asynchronous scans to complete
143 *
144 * When this function returns, any host which started scanning before
145 * this function was called will have finished its scan. Hosts which
146 * started scanning after this function was called may or may not have
147 * finished.
148 */
scsi_complete_async_scans(void)149 int scsi_complete_async_scans(void)
150 {
151 struct async_scan_data *data;
152
153 do {
154 if (list_empty(&scanning_hosts))
155 return 0;
156 /* If we can't get memory immediately, that's OK. Just
157 * sleep a little. Even if we never get memory, the async
158 * scans will finish eventually.
159 */
160 data = kmalloc(sizeof(*data), GFP_KERNEL);
161 if (!data)
162 msleep(1);
163 } while (!data);
164
165 data->shost = NULL;
166 init_completion(&data->prev_finished);
167
168 spin_lock(&async_scan_lock);
169 /* Check that there's still somebody else on the list */
170 if (list_empty(&scanning_hosts))
171 goto done;
172 list_add_tail(&data->list, &scanning_hosts);
173 spin_unlock(&async_scan_lock);
174
175 printk(KERN_INFO "scsi: waiting for bus probes to complete ...\n");
176 wait_for_completion(&data->prev_finished);
177
178 spin_lock(&async_scan_lock);
179 list_del(&data->list);
180 if (!list_empty(&scanning_hosts)) {
181 struct async_scan_data *next = list_entry(scanning_hosts.next,
182 struct async_scan_data, list);
183 complete(&next->prev_finished);
184 }
185 done:
186 spin_unlock(&async_scan_lock);
187
188 kfree(data);
189 return 0;
190 }
191
192 /**
193 * scsi_unlock_floptical - unlock device via a special MODE SENSE command
194 * @sdev: scsi device to send command to
195 * @result: area to store the result of the MODE SENSE
196 *
197 * Description:
198 * Send a vendor specific MODE SENSE (not a MODE SELECT) command.
199 * Called for BLIST_KEY devices.
200 **/
scsi_unlock_floptical(struct scsi_device * sdev,unsigned char * result)201 static void scsi_unlock_floptical(struct scsi_device *sdev,
202 unsigned char *result)
203 {
204 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
205
206 sdev_printk(KERN_NOTICE, sdev, "unlocking floptical drive\n");
207 scsi_cmd[0] = MODE_SENSE;
208 scsi_cmd[1] = 0;
209 scsi_cmd[2] = 0x2e;
210 scsi_cmd[3] = 0;
211 scsi_cmd[4] = 0x2a; /* size */
212 scsi_cmd[5] = 0;
213 scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE, result, 0x2a, NULL,
214 SCSI_TIMEOUT, 3, NULL);
215 }
216
217 /**
218 * scsi_alloc_sdev - allocate and setup a scsi_Device
219 * @starget: which target to allocate a &scsi_device for
220 * @lun: which lun
221 * @hostdata: usually NULL and set by ->slave_alloc instead
222 *
223 * Description:
224 * Allocate, initialize for io, and return a pointer to a scsi_Device.
225 * Stores the @shost, @channel, @id, and @lun in the scsi_Device, and
226 * adds scsi_Device to the appropriate list.
227 *
228 * Return value:
229 * scsi_Device pointer, or NULL on failure.
230 **/
scsi_alloc_sdev(struct scsi_target * starget,u64 lun,void * hostdata)231 static struct scsi_device *scsi_alloc_sdev(struct scsi_target *starget,
232 u64 lun, void *hostdata)
233 {
234 unsigned int depth;
235 struct scsi_device *sdev;
236 struct request_queue *q;
237 int display_failure_msg = 1, ret;
238 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
239
240 sdev = kzalloc(sizeof(*sdev) + shost->transportt->device_size,
241 GFP_KERNEL);
242 if (!sdev)
243 goto out;
244
245 sdev->vendor = scsi_null_device_strs;
246 sdev->model = scsi_null_device_strs;
247 sdev->rev = scsi_null_device_strs;
248 sdev->host = shost;
249 sdev->queue_ramp_up_period = SCSI_DEFAULT_RAMP_UP_PERIOD;
250 sdev->id = starget->id;
251 sdev->lun = lun;
252 sdev->channel = starget->channel;
253 mutex_init(&sdev->state_mutex);
254 sdev->sdev_state = SDEV_CREATED;
255 INIT_LIST_HEAD(&sdev->siblings);
256 INIT_LIST_HEAD(&sdev->same_target_siblings);
257 INIT_LIST_HEAD(&sdev->starved_entry);
258 INIT_LIST_HEAD(&sdev->event_list);
259 spin_lock_init(&sdev->list_lock);
260 mutex_init(&sdev->inquiry_mutex);
261 INIT_WORK(&sdev->event_work, scsi_evt_thread);
262 INIT_WORK(&sdev->requeue_work, scsi_requeue_run_queue);
263
264 sdev->sdev_gendev.parent = get_device(&starget->dev);
265 sdev->sdev_target = starget;
266
267 /* usually NULL and set by ->slave_alloc instead */
268 sdev->hostdata = hostdata;
269
270 /* if the device needs this changing, it may do so in the
271 * slave_configure function */
272 sdev->max_device_blocked = SCSI_DEFAULT_DEVICE_BLOCKED;
273
274 /*
275 * Some low level driver could use device->type
276 */
277 sdev->type = -1;
278
279 /*
280 * Assume that the device will have handshaking problems,
281 * and then fix this field later if it turns out it
282 * doesn't
283 */
284 sdev->borken = 1;
285
286 sdev->sg_reserved_size = INT_MAX;
287
288 q = blk_mq_init_queue(&sdev->host->tag_set);
289 if (IS_ERR(q)) {
290 /* release fn is set up in scsi_sysfs_device_initialise, so
291 * have to free and put manually here */
292 put_device(&starget->dev);
293 kfree(sdev);
294 goto out;
295 }
296 sdev->request_queue = q;
297 q->queuedata = sdev;
298 __scsi_init_queue(sdev->host, q);
299 WARN_ON_ONCE(!blk_get_queue(q));
300
301 depth = sdev->host->cmd_per_lun ?: 1;
302
303 /*
304 * Use .can_queue as budget map's depth because we have to
305 * support adjusting queue depth from sysfs. Meantime use
306 * default device queue depth to figure out sbitmap shift
307 * since we use this queue depth most of times.
308 */
309 if (sbitmap_init_node(&sdev->budget_map,
310 scsi_device_max_queue_depth(sdev),
311 sbitmap_calculate_shift(depth),
312 GFP_KERNEL, sdev->request_queue->node,
313 false, true)) {
314 put_device(&starget->dev);
315 kfree(sdev);
316 goto out;
317 }
318
319 scsi_change_queue_depth(sdev, depth);
320
321 scsi_sysfs_device_initialize(sdev);
322
323 if (shost->hostt->slave_alloc) {
324 ret = shost->hostt->slave_alloc(sdev);
325 if (ret) {
326 /*
327 * if LLDD reports slave not present, don't clutter
328 * console with alloc failure messages
329 */
330 if (ret == -ENXIO)
331 display_failure_msg = 0;
332 goto out_device_destroy;
333 }
334 }
335
336 return sdev;
337
338 out_device_destroy:
339 __scsi_remove_device(sdev);
340 out:
341 if (display_failure_msg)
342 printk(ALLOC_FAILURE_MSG, __func__);
343 return NULL;
344 }
345
scsi_target_destroy(struct scsi_target * starget)346 static void scsi_target_destroy(struct scsi_target *starget)
347 {
348 struct device *dev = &starget->dev;
349 struct Scsi_Host *shost = dev_to_shost(dev->parent);
350 unsigned long flags;
351
352 BUG_ON(starget->state == STARGET_DEL);
353 starget->state = STARGET_DEL;
354 transport_destroy_device(dev);
355 spin_lock_irqsave(shost->host_lock, flags);
356 if (shost->hostt->target_destroy)
357 shost->hostt->target_destroy(starget);
358 list_del_init(&starget->siblings);
359 spin_unlock_irqrestore(shost->host_lock, flags);
360 put_device(dev);
361 }
362
scsi_target_dev_release(struct device * dev)363 static void scsi_target_dev_release(struct device *dev)
364 {
365 struct device *parent = dev->parent;
366 struct scsi_target *starget = to_scsi_target(dev);
367
368 kfree(starget);
369 put_device(parent);
370 }
371
372 static struct device_type scsi_target_type = {
373 .name = "scsi_target",
374 .release = scsi_target_dev_release,
375 };
376
scsi_is_target_device(const struct device * dev)377 int scsi_is_target_device(const struct device *dev)
378 {
379 return dev->type == &scsi_target_type;
380 }
381 EXPORT_SYMBOL(scsi_is_target_device);
382
__scsi_find_target(struct device * parent,int channel,uint id)383 static struct scsi_target *__scsi_find_target(struct device *parent,
384 int channel, uint id)
385 {
386 struct scsi_target *starget, *found_starget = NULL;
387 struct Scsi_Host *shost = dev_to_shost(parent);
388 /*
389 * Search for an existing target for this sdev.
390 */
391 list_for_each_entry(starget, &shost->__targets, siblings) {
392 if (starget->id == id &&
393 starget->channel == channel) {
394 found_starget = starget;
395 break;
396 }
397 }
398 if (found_starget)
399 get_device(&found_starget->dev);
400
401 return found_starget;
402 }
403
404 /**
405 * scsi_target_reap_ref_release - remove target from visibility
406 * @kref: the reap_ref in the target being released
407 *
408 * Called on last put of reap_ref, which is the indication that no device
409 * under this target is visible anymore, so render the target invisible in
410 * sysfs. Note: we have to be in user context here because the target reaps
411 * should be done in places where the scsi device visibility is being removed.
412 */
scsi_target_reap_ref_release(struct kref * kref)413 static void scsi_target_reap_ref_release(struct kref *kref)
414 {
415 struct scsi_target *starget
416 = container_of(kref, struct scsi_target, reap_ref);
417
418 /*
419 * if we get here and the target is still in a CREATED state that
420 * means it was allocated but never made visible (because a scan
421 * turned up no LUNs), so don't call device_del() on it.
422 */
423 if ((starget->state != STARGET_CREATED) &&
424 (starget->state != STARGET_CREATED_REMOVE)) {
425 transport_remove_device(&starget->dev);
426 device_del(&starget->dev);
427 }
428 scsi_target_destroy(starget);
429 }
430
scsi_target_reap_ref_put(struct scsi_target * starget)431 static void scsi_target_reap_ref_put(struct scsi_target *starget)
432 {
433 kref_put(&starget->reap_ref, scsi_target_reap_ref_release);
434 }
435
436 /**
437 * scsi_alloc_target - allocate a new or find an existing target
438 * @parent: parent of the target (need not be a scsi host)
439 * @channel: target channel number (zero if no channels)
440 * @id: target id number
441 *
442 * Return an existing target if one exists, provided it hasn't already
443 * gone into STARGET_DEL state, otherwise allocate a new target.
444 *
445 * The target is returned with an incremented reference, so the caller
446 * is responsible for both reaping and doing a last put
447 */
scsi_alloc_target(struct device * parent,int channel,uint id)448 static struct scsi_target *scsi_alloc_target(struct device *parent,
449 int channel, uint id)
450 {
451 struct Scsi_Host *shost = dev_to_shost(parent);
452 struct device *dev = NULL;
453 unsigned long flags;
454 const int size = sizeof(struct scsi_target)
455 + shost->transportt->target_size;
456 struct scsi_target *starget;
457 struct scsi_target *found_target;
458 int error, ref_got;
459
460 starget = kzalloc(size, GFP_KERNEL);
461 if (!starget) {
462 printk(KERN_ERR "%s: allocation failure\n", __func__);
463 return NULL;
464 }
465 dev = &starget->dev;
466 device_initialize(dev);
467 kref_init(&starget->reap_ref);
468 dev->parent = get_device(parent);
469 dev_set_name(dev, "target%d:%d:%d", shost->host_no, channel, id);
470 dev->bus = &scsi_bus_type;
471 dev->type = &scsi_target_type;
472 scsi_enable_async_suspend(dev);
473 starget->id = id;
474 starget->channel = channel;
475 starget->can_queue = 0;
476 INIT_LIST_HEAD(&starget->siblings);
477 INIT_LIST_HEAD(&starget->devices);
478 starget->state = STARGET_CREATED;
479 starget->scsi_level = SCSI_2;
480 starget->max_target_blocked = SCSI_DEFAULT_TARGET_BLOCKED;
481 retry:
482 spin_lock_irqsave(shost->host_lock, flags);
483
484 found_target = __scsi_find_target(parent, channel, id);
485 if (found_target)
486 goto found;
487
488 list_add_tail(&starget->siblings, &shost->__targets);
489 spin_unlock_irqrestore(shost->host_lock, flags);
490 /* allocate and add */
491 transport_setup_device(dev);
492 if (shost->hostt->target_alloc) {
493 error = shost->hostt->target_alloc(starget);
494
495 if(error) {
496 if (error != -ENXIO)
497 dev_err(dev, "target allocation failed, error %d\n", error);
498 /* don't want scsi_target_reap to do the final
499 * put because it will be under the host lock */
500 scsi_target_destroy(starget);
501 return NULL;
502 }
503 }
504 get_device(dev);
505
506 return starget;
507
508 found:
509 /*
510 * release routine already fired if kref is zero, so if we can still
511 * take the reference, the target must be alive. If we can't, it must
512 * be dying and we need to wait for a new target
513 */
514 ref_got = kref_get_unless_zero(&found_target->reap_ref);
515
516 spin_unlock_irqrestore(shost->host_lock, flags);
517 if (ref_got) {
518 put_device(dev);
519 return found_target;
520 }
521 /*
522 * Unfortunately, we found a dying target; need to wait until it's
523 * dead before we can get a new one. There is an anomaly here. We
524 * *should* call scsi_target_reap() to balance the kref_get() of the
525 * reap_ref above. However, since the target being released, it's
526 * already invisible and the reap_ref is irrelevant. If we call
527 * scsi_target_reap() we might spuriously do another device_del() on
528 * an already invisible target.
529 */
530 put_device(&found_target->dev);
531 /*
532 * length of time is irrelevant here, we just want to yield the CPU
533 * for a tick to avoid busy waiting for the target to die.
534 */
535 msleep(1);
536 goto retry;
537 }
538
539 /**
540 * scsi_target_reap - check to see if target is in use and destroy if not
541 * @starget: target to be checked
542 *
543 * This is used after removing a LUN or doing a last put of the target
544 * it checks atomically that nothing is using the target and removes
545 * it if so.
546 */
scsi_target_reap(struct scsi_target * starget)547 void scsi_target_reap(struct scsi_target *starget)
548 {
549 /*
550 * serious problem if this triggers: STARGET_DEL is only set in the if
551 * the reap_ref drops to zero, so we're trying to do another final put
552 * on an already released kref
553 */
554 BUG_ON(starget->state == STARGET_DEL);
555 scsi_target_reap_ref_put(starget);
556 }
557
558 /**
559 * scsi_sanitize_inquiry_string - remove non-graphical chars from an
560 * INQUIRY result string
561 * @s: INQUIRY result string to sanitize
562 * @len: length of the string
563 *
564 * Description:
565 * The SCSI spec says that INQUIRY vendor, product, and revision
566 * strings must consist entirely of graphic ASCII characters,
567 * padded on the right with spaces. Since not all devices obey
568 * this rule, we will replace non-graphic or non-ASCII characters
569 * with spaces. Exception: a NUL character is interpreted as a
570 * string terminator, so all the following characters are set to
571 * spaces.
572 **/
scsi_sanitize_inquiry_string(unsigned char * s,int len)573 void scsi_sanitize_inquiry_string(unsigned char *s, int len)
574 {
575 int terminated = 0;
576
577 for (; len > 0; (--len, ++s)) {
578 if (*s == 0)
579 terminated = 1;
580 if (terminated || *s < 0x20 || *s > 0x7e)
581 *s = ' ';
582 }
583 }
584 EXPORT_SYMBOL(scsi_sanitize_inquiry_string);
585
586 /**
587 * scsi_probe_lun - probe a single LUN using a SCSI INQUIRY
588 * @sdev: scsi_device to probe
589 * @inq_result: area to store the INQUIRY result
590 * @result_len: len of inq_result
591 * @bflags: store any bflags found here
592 *
593 * Description:
594 * Probe the lun associated with @req using a standard SCSI INQUIRY;
595 *
596 * If the INQUIRY is successful, zero is returned and the
597 * INQUIRY data is in @inq_result; the scsi_level and INQUIRY length
598 * are copied to the scsi_device any flags value is stored in *@bflags.
599 **/
scsi_probe_lun(struct scsi_device * sdev,unsigned char * inq_result,int result_len,blist_flags_t * bflags)600 static int scsi_probe_lun(struct scsi_device *sdev, unsigned char *inq_result,
601 int result_len, blist_flags_t *bflags)
602 {
603 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
604 int first_inquiry_len, try_inquiry_len, next_inquiry_len;
605 int response_len = 0;
606 int pass, count, result;
607 struct scsi_sense_hdr sshdr;
608
609 *bflags = 0;
610
611 /* Perform up to 3 passes. The first pass uses a conservative
612 * transfer length of 36 unless sdev->inquiry_len specifies a
613 * different value. */
614 first_inquiry_len = sdev->inquiry_len ? sdev->inquiry_len : 36;
615 try_inquiry_len = first_inquiry_len;
616 pass = 1;
617
618 next_pass:
619 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
620 "scsi scan: INQUIRY pass %d length %d\n",
621 pass, try_inquiry_len));
622
623 /* Each pass gets up to three chances to ignore Unit Attention */
624 for (count = 0; count < 3; ++count) {
625 int resid;
626
627 memset(scsi_cmd, 0, 6);
628 scsi_cmd[0] = INQUIRY;
629 scsi_cmd[4] = (unsigned char) try_inquiry_len;
630
631 memset(inq_result, 0, try_inquiry_len);
632
633 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
634 inq_result, try_inquiry_len, &sshdr,
635 HZ / 2 + HZ * scsi_inq_timeout, 3,
636 &resid);
637
638 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
639 "scsi scan: INQUIRY %s with code 0x%x\n",
640 result ? "failed" : "successful", result));
641
642 if (result > 0) {
643 /*
644 * not-ready to ready transition [asc/ascq=0x28/0x0]
645 * or power-on, reset [asc/ascq=0x29/0x0], continue.
646 * INQUIRY should not yield UNIT_ATTENTION
647 * but many buggy devices do so anyway.
648 */
649 if (scsi_status_is_check_condition(result) &&
650 scsi_sense_valid(&sshdr)) {
651 if ((sshdr.sense_key == UNIT_ATTENTION) &&
652 ((sshdr.asc == 0x28) ||
653 (sshdr.asc == 0x29)) &&
654 (sshdr.ascq == 0))
655 continue;
656 }
657 } else if (result == 0) {
658 /*
659 * if nothing was transferred, we try
660 * again. It's a workaround for some USB
661 * devices.
662 */
663 if (resid == try_inquiry_len)
664 continue;
665 }
666 break;
667 }
668
669 if (result == 0) {
670 scsi_sanitize_inquiry_string(&inq_result[8], 8);
671 scsi_sanitize_inquiry_string(&inq_result[16], 16);
672 scsi_sanitize_inquiry_string(&inq_result[32], 4);
673
674 response_len = inq_result[4] + 5;
675 if (response_len > 255)
676 response_len = first_inquiry_len; /* sanity */
677
678 /*
679 * Get any flags for this device.
680 *
681 * XXX add a bflags to scsi_device, and replace the
682 * corresponding bit fields in scsi_device, so bflags
683 * need not be passed as an argument.
684 */
685 *bflags = scsi_get_device_flags(sdev, &inq_result[8],
686 &inq_result[16]);
687
688 /* When the first pass succeeds we gain information about
689 * what larger transfer lengths might work. */
690 if (pass == 1) {
691 if (BLIST_INQUIRY_36 & *bflags)
692 next_inquiry_len = 36;
693 else if (sdev->inquiry_len)
694 next_inquiry_len = sdev->inquiry_len;
695 else
696 next_inquiry_len = response_len;
697
698 /* If more data is available perform the second pass */
699 if (next_inquiry_len > try_inquiry_len) {
700 try_inquiry_len = next_inquiry_len;
701 pass = 2;
702 goto next_pass;
703 }
704 }
705
706 } else if (pass == 2) {
707 sdev_printk(KERN_INFO, sdev,
708 "scsi scan: %d byte inquiry failed. "
709 "Consider BLIST_INQUIRY_36 for this device\n",
710 try_inquiry_len);
711
712 /* If this pass failed, the third pass goes back and transfers
713 * the same amount as we successfully got in the first pass. */
714 try_inquiry_len = first_inquiry_len;
715 pass = 3;
716 goto next_pass;
717 }
718
719 /* If the last transfer attempt got an error, assume the
720 * peripheral doesn't exist or is dead. */
721 if (result)
722 return -EIO;
723
724 /* Don't report any more data than the device says is valid */
725 sdev->inquiry_len = min(try_inquiry_len, response_len);
726
727 /*
728 * XXX Abort if the response length is less than 36? If less than
729 * 32, the lookup of the device flags (above) could be invalid,
730 * and it would be possible to take an incorrect action - we do
731 * not want to hang because of a short INQUIRY. On the flip side,
732 * if the device is spun down or becoming ready (and so it gives a
733 * short INQUIRY), an abort here prevents any further use of the
734 * device, including spin up.
735 *
736 * On the whole, the best approach seems to be to assume the first
737 * 36 bytes are valid no matter what the device says. That's
738 * better than copying < 36 bytes to the inquiry-result buffer
739 * and displaying garbage for the Vendor, Product, or Revision
740 * strings.
741 */
742 if (sdev->inquiry_len < 36) {
743 if (!sdev->host->short_inquiry) {
744 shost_printk(KERN_INFO, sdev->host,
745 "scsi scan: INQUIRY result too short (%d),"
746 " using 36\n", sdev->inquiry_len);
747 sdev->host->short_inquiry = 1;
748 }
749 sdev->inquiry_len = 36;
750 }
751
752 /*
753 * Related to the above issue:
754 *
755 * XXX Devices (disk or all?) should be sent a TEST UNIT READY,
756 * and if not ready, sent a START_STOP to start (maybe spin up) and
757 * then send the INQUIRY again, since the INQUIRY can change after
758 * a device is initialized.
759 *
760 * Ideally, start a device if explicitly asked to do so. This
761 * assumes that a device is spun up on power on, spun down on
762 * request, and then spun up on request.
763 */
764
765 /*
766 * The scanning code needs to know the scsi_level, even if no
767 * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so
768 * non-zero LUNs can be scanned.
769 */
770 sdev->scsi_level = inq_result[2] & 0x07;
771 if (sdev->scsi_level >= 2 ||
772 (sdev->scsi_level == 1 && (inq_result[3] & 0x0f) == 1))
773 sdev->scsi_level++;
774 sdev->sdev_target->scsi_level = sdev->scsi_level;
775
776 /*
777 * If SCSI-2 or lower, and if the transport requires it,
778 * store the LUN value in CDB[1].
779 */
780 sdev->lun_in_cdb = 0;
781 if (sdev->scsi_level <= SCSI_2 &&
782 sdev->scsi_level != SCSI_UNKNOWN &&
783 !sdev->host->no_scsi2_lun_in_cdb)
784 sdev->lun_in_cdb = 1;
785
786 return 0;
787 }
788
789 /**
790 * scsi_add_lun - allocate and fully initialze a scsi_device
791 * @sdev: holds information to be stored in the new scsi_device
792 * @inq_result: holds the result of a previous INQUIRY to the LUN
793 * @bflags: black/white list flag
794 * @async: 1 if this device is being scanned asynchronously
795 *
796 * Description:
797 * Initialize the scsi_device @sdev. Optionally set fields based
798 * on values in *@bflags.
799 *
800 * Return:
801 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
802 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
803 **/
scsi_add_lun(struct scsi_device * sdev,unsigned char * inq_result,blist_flags_t * bflags,int async)804 static int scsi_add_lun(struct scsi_device *sdev, unsigned char *inq_result,
805 blist_flags_t *bflags, int async)
806 {
807 int ret;
808
809 /*
810 * XXX do not save the inquiry, since it can change underneath us,
811 * save just vendor/model/rev.
812 *
813 * Rather than save it and have an ioctl that retrieves the saved
814 * value, have an ioctl that executes the same INQUIRY code used
815 * in scsi_probe_lun, let user level programs doing INQUIRY
816 * scanning run at their own risk, or supply a user level program
817 * that can correctly scan.
818 */
819
820 /*
821 * Copy at least 36 bytes of INQUIRY data, so that we don't
822 * dereference unallocated memory when accessing the Vendor,
823 * Product, and Revision strings. Badly behaved devices may set
824 * the INQUIRY Additional Length byte to a small value, indicating
825 * these strings are invalid, but often they contain plausible data
826 * nonetheless. It doesn't matter if the device sent < 36 bytes
827 * total, since scsi_probe_lun() initializes inq_result with 0s.
828 */
829 sdev->inquiry = kmemdup(inq_result,
830 max_t(size_t, sdev->inquiry_len, 36),
831 GFP_KERNEL);
832 if (sdev->inquiry == NULL)
833 return SCSI_SCAN_NO_RESPONSE;
834
835 sdev->vendor = (char *) (sdev->inquiry + 8);
836 sdev->model = (char *) (sdev->inquiry + 16);
837 sdev->rev = (char *) (sdev->inquiry + 32);
838
839 if (strncmp(sdev->vendor, "ATA ", 8) == 0) {
840 /*
841 * sata emulation layer device. This is a hack to work around
842 * the SATL power management specifications which state that
843 * when the SATL detects the device has gone into standby
844 * mode, it shall respond with NOT READY.
845 */
846 sdev->allow_restart = 1;
847 }
848
849 if (*bflags & BLIST_ISROM) {
850 sdev->type = TYPE_ROM;
851 sdev->removable = 1;
852 } else {
853 sdev->type = (inq_result[0] & 0x1f);
854 sdev->removable = (inq_result[1] & 0x80) >> 7;
855
856 /*
857 * some devices may respond with wrong type for
858 * well-known logical units. Force well-known type
859 * to enumerate them correctly.
860 */
861 if (scsi_is_wlun(sdev->lun) && sdev->type != TYPE_WLUN) {
862 sdev_printk(KERN_WARNING, sdev,
863 "%s: correcting incorrect peripheral device type 0x%x for W-LUN 0x%16xhN\n",
864 __func__, sdev->type, (unsigned int)sdev->lun);
865 sdev->type = TYPE_WLUN;
866 }
867
868 }
869
870 if (sdev->type == TYPE_RBC || sdev->type == TYPE_ROM) {
871 /* RBC and MMC devices can return SCSI-3 compliance and yet
872 * still not support REPORT LUNS, so make them act as
873 * BLIST_NOREPORTLUN unless BLIST_REPORTLUN2 is
874 * specifically set */
875 if ((*bflags & BLIST_REPORTLUN2) == 0)
876 *bflags |= BLIST_NOREPORTLUN;
877 }
878
879 /*
880 * For a peripheral qualifier (PQ) value of 1 (001b), the SCSI
881 * spec says: The device server is capable of supporting the
882 * specified peripheral device type on this logical unit. However,
883 * the physical device is not currently connected to this logical
884 * unit.
885 *
886 * The above is vague, as it implies that we could treat 001 and
887 * 011 the same. Stay compatible with previous code, and create a
888 * scsi_device for a PQ of 1
889 *
890 * Don't set the device offline here; rather let the upper
891 * level drivers eval the PQ to decide whether they should
892 * attach. So remove ((inq_result[0] >> 5) & 7) == 1 check.
893 */
894
895 sdev->inq_periph_qual = (inq_result[0] >> 5) & 7;
896 sdev->lockable = sdev->removable;
897 sdev->soft_reset = (inq_result[7] & 1) && ((inq_result[3] & 7) == 2);
898
899 if (sdev->scsi_level >= SCSI_3 ||
900 (sdev->inquiry_len > 56 && inq_result[56] & 0x04))
901 sdev->ppr = 1;
902 if (inq_result[7] & 0x60)
903 sdev->wdtr = 1;
904 if (inq_result[7] & 0x10)
905 sdev->sdtr = 1;
906
907 sdev_printk(KERN_NOTICE, sdev, "%s %.8s %.16s %.4s PQ: %d "
908 "ANSI: %d%s\n", scsi_device_type(sdev->type),
909 sdev->vendor, sdev->model, sdev->rev,
910 sdev->inq_periph_qual, inq_result[2] & 0x07,
911 (inq_result[3] & 0x0f) == 1 ? " CCS" : "");
912
913 if ((sdev->scsi_level >= SCSI_2) && (inq_result[7] & 2) &&
914 !(*bflags & BLIST_NOTQ)) {
915 sdev->tagged_supported = 1;
916 sdev->simple_tags = 1;
917 }
918
919 /*
920 * Some devices (Texel CD ROM drives) have handshaking problems
921 * when used with the Seagate controllers. borken is initialized
922 * to 1, and then set it to 0 here.
923 */
924 if ((*bflags & BLIST_BORKEN) == 0)
925 sdev->borken = 0;
926
927 if (*bflags & BLIST_NO_ULD_ATTACH)
928 sdev->no_uld_attach = 1;
929
930 /*
931 * Apparently some really broken devices (contrary to the SCSI
932 * standards) need to be selected without asserting ATN
933 */
934 if (*bflags & BLIST_SELECT_NO_ATN)
935 sdev->select_no_atn = 1;
936
937 /*
938 * Maximum 512 sector transfer length
939 * broken RA4x00 Compaq Disk Array
940 */
941 if (*bflags & BLIST_MAX_512)
942 blk_queue_max_hw_sectors(sdev->request_queue, 512);
943 /*
944 * Max 1024 sector transfer length for targets that report incorrect
945 * max/optimal lengths and relied on the old block layer safe default
946 */
947 else if (*bflags & BLIST_MAX_1024)
948 blk_queue_max_hw_sectors(sdev->request_queue, 1024);
949
950 /*
951 * Some devices may not want to have a start command automatically
952 * issued when a device is added.
953 */
954 if (*bflags & BLIST_NOSTARTONADD)
955 sdev->no_start_on_add = 1;
956
957 if (*bflags & BLIST_SINGLELUN)
958 scsi_target(sdev)->single_lun = 1;
959
960 sdev->use_10_for_rw = 1;
961
962 /* some devices don't like REPORT SUPPORTED OPERATION CODES
963 * and will simply timeout causing sd_mod init to take a very
964 * very long time */
965 if (*bflags & BLIST_NO_RSOC)
966 sdev->no_report_opcodes = 1;
967
968 /* set the device running here so that slave configure
969 * may do I/O */
970 mutex_lock(&sdev->state_mutex);
971 ret = scsi_device_set_state(sdev, SDEV_RUNNING);
972 if (ret)
973 ret = scsi_device_set_state(sdev, SDEV_BLOCK);
974 mutex_unlock(&sdev->state_mutex);
975
976 if (ret) {
977 sdev_printk(KERN_ERR, sdev,
978 "in wrong state %s to complete scan\n",
979 scsi_device_state_name(sdev->sdev_state));
980 return SCSI_SCAN_NO_RESPONSE;
981 }
982
983 if (*bflags & BLIST_NOT_LOCKABLE)
984 sdev->lockable = 0;
985
986 if (*bflags & BLIST_RETRY_HWERROR)
987 sdev->retry_hwerror = 1;
988
989 if (*bflags & BLIST_NO_DIF)
990 sdev->no_dif = 1;
991
992 if (*bflags & BLIST_UNMAP_LIMIT_WS)
993 sdev->unmap_limit_for_ws = 1;
994
995 if (*bflags & BLIST_IGN_MEDIA_CHANGE)
996 sdev->ignore_media_change = 1;
997
998 sdev->eh_timeout = SCSI_DEFAULT_EH_TIMEOUT;
999
1000 if (*bflags & BLIST_TRY_VPD_PAGES)
1001 sdev->try_vpd_pages = 1;
1002 else if (*bflags & BLIST_SKIP_VPD_PAGES)
1003 sdev->skip_vpd_pages = 1;
1004
1005 transport_configure_device(&sdev->sdev_gendev);
1006
1007 if (sdev->host->hostt->slave_configure) {
1008 ret = sdev->host->hostt->slave_configure(sdev);
1009 if (ret) {
1010 /*
1011 * if LLDD reports slave not present, don't clutter
1012 * console with alloc failure messages
1013 */
1014 if (ret != -ENXIO) {
1015 sdev_printk(KERN_ERR, sdev,
1016 "failed to configure device\n");
1017 }
1018 return SCSI_SCAN_NO_RESPONSE;
1019 }
1020 }
1021
1022 if (sdev->scsi_level >= SCSI_3)
1023 scsi_attach_vpd(sdev);
1024
1025 sdev->max_queue_depth = sdev->queue_depth;
1026 WARN_ON_ONCE(sdev->max_queue_depth > sdev->budget_map.depth);
1027 sdev->sdev_bflags = *bflags;
1028
1029 /*
1030 * Ok, the device is now all set up, we can
1031 * register it and tell the rest of the kernel
1032 * about it.
1033 */
1034 if (!async && scsi_sysfs_add_sdev(sdev) != 0)
1035 return SCSI_SCAN_NO_RESPONSE;
1036
1037 return SCSI_SCAN_LUN_PRESENT;
1038 }
1039
1040 #ifdef CONFIG_SCSI_LOGGING
1041 /**
1042 * scsi_inq_str - print INQUIRY data from min to max index, strip trailing whitespace
1043 * @buf: Output buffer with at least end-first+1 bytes of space
1044 * @inq: Inquiry buffer (input)
1045 * @first: Offset of string into inq
1046 * @end: Index after last character in inq
1047 */
scsi_inq_str(unsigned char * buf,unsigned char * inq,unsigned first,unsigned end)1048 static unsigned char *scsi_inq_str(unsigned char *buf, unsigned char *inq,
1049 unsigned first, unsigned end)
1050 {
1051 unsigned term = 0, idx;
1052
1053 for (idx = 0; idx + first < end && idx + first < inq[4] + 5; idx++) {
1054 if (inq[idx+first] > ' ') {
1055 buf[idx] = inq[idx+first];
1056 term = idx+1;
1057 } else {
1058 buf[idx] = ' ';
1059 }
1060 }
1061 buf[term] = 0;
1062 return buf;
1063 }
1064 #endif
1065
1066 /**
1067 * scsi_probe_and_add_lun - probe a LUN, if a LUN is found add it
1068 * @starget: pointer to target device structure
1069 * @lun: LUN of target device
1070 * @bflagsp: store bflags here if not NULL
1071 * @sdevp: probe the LUN corresponding to this scsi_device
1072 * @rescan: if not equal to SCSI_SCAN_INITIAL skip some code only
1073 * needed on first scan
1074 * @hostdata: passed to scsi_alloc_sdev()
1075 *
1076 * Description:
1077 * Call scsi_probe_lun, if a LUN with an attached device is found,
1078 * allocate and set it up by calling scsi_add_lun.
1079 *
1080 * Return:
1081 *
1082 * - SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
1083 * - SCSI_SCAN_TARGET_PRESENT: target responded, but no device is
1084 * attached at the LUN
1085 * - SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
1086 **/
scsi_probe_and_add_lun(struct scsi_target * starget,u64 lun,blist_flags_t * bflagsp,struct scsi_device ** sdevp,enum scsi_scan_mode rescan,void * hostdata)1087 static int scsi_probe_and_add_lun(struct scsi_target *starget,
1088 u64 lun, blist_flags_t *bflagsp,
1089 struct scsi_device **sdevp,
1090 enum scsi_scan_mode rescan,
1091 void *hostdata)
1092 {
1093 struct scsi_device *sdev;
1094 unsigned char *result;
1095 blist_flags_t bflags;
1096 int res = SCSI_SCAN_NO_RESPONSE, result_len = 256;
1097 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
1098
1099 /*
1100 * The rescan flag is used as an optimization, the first scan of a
1101 * host adapter calls into here with rescan == 0.
1102 */
1103 sdev = scsi_device_lookup_by_target(starget, lun);
1104 if (sdev) {
1105 if (rescan != SCSI_SCAN_INITIAL || !scsi_device_created(sdev)) {
1106 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
1107 "scsi scan: device exists on %s\n",
1108 dev_name(&sdev->sdev_gendev)));
1109 if (sdevp)
1110 *sdevp = sdev;
1111 else
1112 scsi_device_put(sdev);
1113
1114 if (bflagsp)
1115 *bflagsp = scsi_get_device_flags(sdev,
1116 sdev->vendor,
1117 sdev->model);
1118 return SCSI_SCAN_LUN_PRESENT;
1119 }
1120 scsi_device_put(sdev);
1121 } else
1122 sdev = scsi_alloc_sdev(starget, lun, hostdata);
1123 if (!sdev)
1124 goto out;
1125
1126 result = kmalloc(result_len, GFP_KERNEL);
1127 if (!result)
1128 goto out_free_sdev;
1129
1130 if (scsi_probe_lun(sdev, result, result_len, &bflags))
1131 goto out_free_result;
1132
1133 if (bflagsp)
1134 *bflagsp = bflags;
1135 /*
1136 * result contains valid SCSI INQUIRY data.
1137 */
1138 if ((result[0] >> 5) == 3) {
1139 /*
1140 * For a Peripheral qualifier 3 (011b), the SCSI
1141 * spec says: The device server is not capable of
1142 * supporting a physical device on this logical
1143 * unit.
1144 *
1145 * For disks, this implies that there is no
1146 * logical disk configured at sdev->lun, but there
1147 * is a target id responding.
1148 */
1149 SCSI_LOG_SCAN_BUS(2, sdev_printk(KERN_INFO, sdev, "scsi scan:"
1150 " peripheral qualifier of 3, device not"
1151 " added\n"))
1152 if (lun == 0) {
1153 SCSI_LOG_SCAN_BUS(1, {
1154 unsigned char vend[9];
1155 unsigned char mod[17];
1156
1157 sdev_printk(KERN_INFO, sdev,
1158 "scsi scan: consider passing scsi_mod."
1159 "dev_flags=%s:%s:0x240 or 0x1000240\n",
1160 scsi_inq_str(vend, result, 8, 16),
1161 scsi_inq_str(mod, result, 16, 32));
1162 });
1163
1164 }
1165
1166 res = SCSI_SCAN_TARGET_PRESENT;
1167 goto out_free_result;
1168 }
1169
1170 /*
1171 * Some targets may set slight variations of PQ and PDT to signal
1172 * that no LUN is present, so don't add sdev in these cases.
1173 * Two specific examples are:
1174 * 1) NetApp targets: return PQ=1, PDT=0x1f
1175 * 2) IBM/2145 targets: return PQ=1, PDT=0
1176 * 3) USB UFI: returns PDT=0x1f, with the PQ bits being "reserved"
1177 * in the UFI 1.0 spec (we cannot rely on reserved bits).
1178 *
1179 * References:
1180 * 1) SCSI SPC-3, pp. 145-146
1181 * PQ=1: "A peripheral device having the specified peripheral
1182 * device type is not connected to this logical unit. However, the
1183 * device server is capable of supporting the specified peripheral
1184 * device type on this logical unit."
1185 * PDT=0x1f: "Unknown or no device type"
1186 * 2) USB UFI 1.0, p. 20
1187 * PDT=00h Direct-access device (floppy)
1188 * PDT=1Fh none (no FDD connected to the requested logical unit)
1189 */
1190 if (((result[0] >> 5) == 1 ||
1191 (starget->pdt_1f_for_no_lun && (result[0] & 0x1f) == 0x1f)) &&
1192 !scsi_is_wlun(lun)) {
1193 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
1194 "scsi scan: peripheral device type"
1195 " of 31, no device added\n"));
1196 res = SCSI_SCAN_TARGET_PRESENT;
1197 goto out_free_result;
1198 }
1199
1200 res = scsi_add_lun(sdev, result, &bflags, shost->async_scan);
1201 if (res == SCSI_SCAN_LUN_PRESENT) {
1202 if (bflags & BLIST_KEY) {
1203 sdev->lockable = 0;
1204 scsi_unlock_floptical(sdev, result);
1205 }
1206 }
1207
1208 out_free_result:
1209 kfree(result);
1210 out_free_sdev:
1211 if (res == SCSI_SCAN_LUN_PRESENT) {
1212 if (sdevp) {
1213 if (scsi_device_get(sdev) == 0) {
1214 *sdevp = sdev;
1215 } else {
1216 __scsi_remove_device(sdev);
1217 res = SCSI_SCAN_NO_RESPONSE;
1218 }
1219 }
1220 } else
1221 __scsi_remove_device(sdev);
1222 out:
1223 return res;
1224 }
1225
1226 /**
1227 * scsi_sequential_lun_scan - sequentially scan a SCSI target
1228 * @starget: pointer to target structure to scan
1229 * @bflags: black/white list flag for LUN 0
1230 * @scsi_level: Which version of the standard does this device adhere to
1231 * @rescan: passed to scsi_probe_add_lun()
1232 *
1233 * Description:
1234 * Generally, scan from LUN 1 (LUN 0 is assumed to already have been
1235 * scanned) to some maximum lun until a LUN is found with no device
1236 * attached. Use the bflags to figure out any oddities.
1237 *
1238 * Modifies sdevscan->lun.
1239 **/
scsi_sequential_lun_scan(struct scsi_target * starget,blist_flags_t bflags,int scsi_level,enum scsi_scan_mode rescan)1240 static void scsi_sequential_lun_scan(struct scsi_target *starget,
1241 blist_flags_t bflags, int scsi_level,
1242 enum scsi_scan_mode rescan)
1243 {
1244 uint max_dev_lun;
1245 u64 sparse_lun, lun;
1246 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
1247
1248 SCSI_LOG_SCAN_BUS(3, starget_printk(KERN_INFO, starget,
1249 "scsi scan: Sequential scan\n"));
1250
1251 max_dev_lun = min(max_scsi_luns, shost->max_lun);
1252 /*
1253 * If this device is known to support sparse multiple units,
1254 * override the other settings, and scan all of them. Normally,
1255 * SCSI-3 devices should be scanned via the REPORT LUNS.
1256 */
1257 if (bflags & BLIST_SPARSELUN) {
1258 max_dev_lun = shost->max_lun;
1259 sparse_lun = 1;
1260 } else
1261 sparse_lun = 0;
1262
1263 /*
1264 * If less than SCSI_1_CCS, and no special lun scanning, stop
1265 * scanning; this matches 2.4 behaviour, but could just be a bug
1266 * (to continue scanning a SCSI_1_CCS device).
1267 *
1268 * This test is broken. We might not have any device on lun0 for
1269 * a sparselun device, and if that's the case then how would we
1270 * know the real scsi_level, eh? It might make sense to just not
1271 * scan any SCSI_1 device for non-0 luns, but that check would best
1272 * go into scsi_alloc_sdev() and just have it return null when asked
1273 * to alloc an sdev for lun > 0 on an already found SCSI_1 device.
1274 *
1275 if ((sdevscan->scsi_level < SCSI_1_CCS) &&
1276 ((bflags & (BLIST_FORCELUN | BLIST_SPARSELUN | BLIST_MAX5LUN))
1277 == 0))
1278 return;
1279 */
1280 /*
1281 * If this device is known to support multiple units, override
1282 * the other settings, and scan all of them.
1283 */
1284 if (bflags & BLIST_FORCELUN)
1285 max_dev_lun = shost->max_lun;
1286 /*
1287 * REGAL CDC-4X: avoid hang after LUN 4
1288 */
1289 if (bflags & BLIST_MAX5LUN)
1290 max_dev_lun = min(5U, max_dev_lun);
1291 /*
1292 * Do not scan SCSI-2 or lower device past LUN 7, unless
1293 * BLIST_LARGELUN.
1294 */
1295 if (scsi_level < SCSI_3 && !(bflags & BLIST_LARGELUN))
1296 max_dev_lun = min(8U, max_dev_lun);
1297 else
1298 max_dev_lun = min(256U, max_dev_lun);
1299
1300 /*
1301 * We have already scanned LUN 0, so start at LUN 1. Keep scanning
1302 * until we reach the max, or no LUN is found and we are not
1303 * sparse_lun.
1304 */
1305 for (lun = 1; lun < max_dev_lun; ++lun)
1306 if ((scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan,
1307 NULL) != SCSI_SCAN_LUN_PRESENT) &&
1308 !sparse_lun)
1309 return;
1310 }
1311
1312 /**
1313 * scsi_report_lun_scan - Scan using SCSI REPORT LUN results
1314 * @starget: which target
1315 * @bflags: Zero or a mix of BLIST_NOLUN, BLIST_REPORTLUN2, or BLIST_NOREPORTLUN
1316 * @rescan: nonzero if we can skip code only needed on first scan
1317 *
1318 * Description:
1319 * Fast scanning for modern (SCSI-3) devices by sending a REPORT LUN command.
1320 * Scan the resulting list of LUNs by calling scsi_probe_and_add_lun.
1321 *
1322 * If BLINK_REPORTLUN2 is set, scan a target that supports more than 8
1323 * LUNs even if it's older than SCSI-3.
1324 * If BLIST_NOREPORTLUN is set, return 1 always.
1325 * If BLIST_NOLUN is set, return 0 always.
1326 * If starget->no_report_luns is set, return 1 always.
1327 *
1328 * Return:
1329 * 0: scan completed (or no memory, so further scanning is futile)
1330 * 1: could not scan with REPORT LUN
1331 **/
scsi_report_lun_scan(struct scsi_target * starget,blist_flags_t bflags,enum scsi_scan_mode rescan)1332 static int scsi_report_lun_scan(struct scsi_target *starget, blist_flags_t bflags,
1333 enum scsi_scan_mode rescan)
1334 {
1335 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
1336 unsigned int length;
1337 u64 lun;
1338 unsigned int num_luns;
1339 unsigned int retries;
1340 int result;
1341 struct scsi_lun *lunp, *lun_data;
1342 struct scsi_sense_hdr sshdr;
1343 struct scsi_device *sdev;
1344 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
1345 int ret = 0;
1346
1347 /*
1348 * Only support SCSI-3 and up devices if BLIST_NOREPORTLUN is not set.
1349 * Also allow SCSI-2 if BLIST_REPORTLUN2 is set and host adapter does
1350 * support more than 8 LUNs.
1351 * Don't attempt if the target doesn't support REPORT LUNS.
1352 */
1353 if (bflags & BLIST_NOREPORTLUN)
1354 return 1;
1355 if (starget->scsi_level < SCSI_2 &&
1356 starget->scsi_level != SCSI_UNKNOWN)
1357 return 1;
1358 if (starget->scsi_level < SCSI_3 &&
1359 (!(bflags & BLIST_REPORTLUN2) || shost->max_lun <= 8))
1360 return 1;
1361 if (bflags & BLIST_NOLUN)
1362 return 0;
1363 if (starget->no_report_luns)
1364 return 1;
1365
1366 if (!(sdev = scsi_device_lookup_by_target(starget, 0))) {
1367 sdev = scsi_alloc_sdev(starget, 0, NULL);
1368 if (!sdev)
1369 return 0;
1370 if (scsi_device_get(sdev)) {
1371 __scsi_remove_device(sdev);
1372 return 0;
1373 }
1374 }
1375
1376 /*
1377 * Allocate enough to hold the header (the same size as one scsi_lun)
1378 * plus the number of luns we are requesting. 511 was the default
1379 * value of the now removed max_report_luns parameter.
1380 */
1381 length = (511 + 1) * sizeof(struct scsi_lun);
1382 retry:
1383 lun_data = kmalloc(length, GFP_KERNEL);
1384 if (!lun_data) {
1385 printk(ALLOC_FAILURE_MSG, __func__);
1386 goto out;
1387 }
1388
1389 scsi_cmd[0] = REPORT_LUNS;
1390
1391 /*
1392 * bytes 1 - 5: reserved, set to zero.
1393 */
1394 memset(&scsi_cmd[1], 0, 5);
1395
1396 /*
1397 * bytes 6 - 9: length of the command.
1398 */
1399 put_unaligned_be32(length, &scsi_cmd[6]);
1400
1401 scsi_cmd[10] = 0; /* reserved */
1402 scsi_cmd[11] = 0; /* control */
1403
1404 /*
1405 * We can get a UNIT ATTENTION, for example a power on/reset, so
1406 * retry a few times (like sd.c does for TEST UNIT READY).
1407 * Experience shows some combinations of adapter/devices get at
1408 * least two power on/resets.
1409 *
1410 * Illegal requests (for devices that do not support REPORT LUNS)
1411 * should come through as a check condition, and will not generate
1412 * a retry.
1413 */
1414 for (retries = 0; retries < 3; retries++) {
1415 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1416 "scsi scan: Sending REPORT LUNS to (try %d)\n",
1417 retries));
1418
1419 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
1420 lun_data, length, &sshdr,
1421 SCSI_REPORT_LUNS_TIMEOUT, 3, NULL);
1422
1423 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1424 "scsi scan: REPORT LUNS"
1425 " %s (try %d) result 0x%x\n",
1426 result ? "failed" : "successful",
1427 retries, result));
1428 if (result == 0)
1429 break;
1430 else if (scsi_sense_valid(&sshdr)) {
1431 if (sshdr.sense_key != UNIT_ATTENTION)
1432 break;
1433 }
1434 }
1435
1436 if (result) {
1437 /*
1438 * The device probably does not support a REPORT LUN command
1439 */
1440 ret = 1;
1441 goto out_err;
1442 }
1443
1444 /*
1445 * Get the length from the first four bytes of lun_data.
1446 */
1447 if (get_unaligned_be32(lun_data->scsi_lun) +
1448 sizeof(struct scsi_lun) > length) {
1449 length = get_unaligned_be32(lun_data->scsi_lun) +
1450 sizeof(struct scsi_lun);
1451 kfree(lun_data);
1452 goto retry;
1453 }
1454 length = get_unaligned_be32(lun_data->scsi_lun);
1455
1456 num_luns = (length / sizeof(struct scsi_lun));
1457
1458 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1459 "scsi scan: REPORT LUN scan\n"));
1460
1461 /*
1462 * Scan the luns in lun_data. The entry at offset 0 is really
1463 * the header, so start at 1 and go up to and including num_luns.
1464 */
1465 for (lunp = &lun_data[1]; lunp <= &lun_data[num_luns]; lunp++) {
1466 lun = scsilun_to_int(lunp);
1467
1468 if (lun > sdev->host->max_lun) {
1469 sdev_printk(KERN_WARNING, sdev,
1470 "lun%llu has a LUN larger than"
1471 " allowed by the host adapter\n", lun);
1472 } else {
1473 int res;
1474
1475 res = scsi_probe_and_add_lun(starget,
1476 lun, NULL, NULL, rescan, NULL);
1477 if (res == SCSI_SCAN_NO_RESPONSE) {
1478 /*
1479 * Got some results, but now none, abort.
1480 */
1481 sdev_printk(KERN_ERR, sdev,
1482 "Unexpected response"
1483 " from lun %llu while scanning, scan"
1484 " aborted\n", (unsigned long long)lun);
1485 break;
1486 }
1487 }
1488 }
1489
1490 out_err:
1491 kfree(lun_data);
1492 out:
1493 if (scsi_device_created(sdev))
1494 /*
1495 * the sdev we used didn't appear in the report luns scan
1496 */
1497 __scsi_remove_device(sdev);
1498 scsi_device_put(sdev);
1499 return ret;
1500 }
1501
__scsi_add_device(struct Scsi_Host * shost,uint channel,uint id,u64 lun,void * hostdata)1502 struct scsi_device *__scsi_add_device(struct Scsi_Host *shost, uint channel,
1503 uint id, u64 lun, void *hostdata)
1504 {
1505 struct scsi_device *sdev = ERR_PTR(-ENODEV);
1506 struct device *parent = &shost->shost_gendev;
1507 struct scsi_target *starget;
1508
1509 if (strncmp(scsi_scan_type, "none", 4) == 0)
1510 return ERR_PTR(-ENODEV);
1511
1512 starget = scsi_alloc_target(parent, channel, id);
1513 if (!starget)
1514 return ERR_PTR(-ENOMEM);
1515 scsi_autopm_get_target(starget);
1516
1517 mutex_lock(&shost->scan_mutex);
1518 if (!shost->async_scan)
1519 scsi_complete_async_scans();
1520
1521 if (scsi_host_scan_allowed(shost) && scsi_autopm_get_host(shost) == 0) {
1522 scsi_probe_and_add_lun(starget, lun, NULL, &sdev, 1, hostdata);
1523 scsi_autopm_put_host(shost);
1524 }
1525 mutex_unlock(&shost->scan_mutex);
1526 scsi_autopm_put_target(starget);
1527 /*
1528 * paired with scsi_alloc_target(). Target will be destroyed unless
1529 * scsi_probe_and_add_lun made an underlying device visible
1530 */
1531 scsi_target_reap(starget);
1532 put_device(&starget->dev);
1533
1534 return sdev;
1535 }
1536 EXPORT_SYMBOL(__scsi_add_device);
1537
scsi_add_device(struct Scsi_Host * host,uint channel,uint target,u64 lun)1538 int scsi_add_device(struct Scsi_Host *host, uint channel,
1539 uint target, u64 lun)
1540 {
1541 struct scsi_device *sdev =
1542 __scsi_add_device(host, channel, target, lun, NULL);
1543 if (IS_ERR(sdev))
1544 return PTR_ERR(sdev);
1545
1546 scsi_device_put(sdev);
1547 return 0;
1548 }
1549 EXPORT_SYMBOL(scsi_add_device);
1550
scsi_rescan_device(struct device * dev)1551 void scsi_rescan_device(struct device *dev)
1552 {
1553 struct scsi_device *sdev = to_scsi_device(dev);
1554
1555 device_lock(dev);
1556
1557 scsi_attach_vpd(sdev);
1558
1559 if (sdev->handler && sdev->handler->rescan)
1560 sdev->handler->rescan(sdev);
1561
1562 if (dev->driver && try_module_get(dev->driver->owner)) {
1563 struct scsi_driver *drv = to_scsi_driver(dev->driver);
1564
1565 if (drv->rescan)
1566 drv->rescan(dev);
1567 module_put(dev->driver->owner);
1568 }
1569 device_unlock(dev);
1570 }
1571 EXPORT_SYMBOL(scsi_rescan_device);
1572
__scsi_scan_target(struct device * parent,unsigned int channel,unsigned int id,u64 lun,enum scsi_scan_mode rescan)1573 static void __scsi_scan_target(struct device *parent, unsigned int channel,
1574 unsigned int id, u64 lun, enum scsi_scan_mode rescan)
1575 {
1576 struct Scsi_Host *shost = dev_to_shost(parent);
1577 blist_flags_t bflags = 0;
1578 int res;
1579 struct scsi_target *starget;
1580
1581 if (shost->this_id == id)
1582 /*
1583 * Don't scan the host adapter
1584 */
1585 return;
1586
1587 starget = scsi_alloc_target(parent, channel, id);
1588 if (!starget)
1589 return;
1590 scsi_autopm_get_target(starget);
1591
1592 if (lun != SCAN_WILD_CARD) {
1593 /*
1594 * Scan for a specific host/chan/id/lun.
1595 */
1596 scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan, NULL);
1597 goto out_reap;
1598 }
1599
1600 /*
1601 * Scan LUN 0, if there is some response, scan further. Ideally, we
1602 * would not configure LUN 0 until all LUNs are scanned.
1603 */
1604 res = scsi_probe_and_add_lun(starget, 0, &bflags, NULL, rescan, NULL);
1605 if (res == SCSI_SCAN_LUN_PRESENT || res == SCSI_SCAN_TARGET_PRESENT) {
1606 if (scsi_report_lun_scan(starget, bflags, rescan) != 0)
1607 /*
1608 * The REPORT LUN did not scan the target,
1609 * do a sequential scan.
1610 */
1611 scsi_sequential_lun_scan(starget, bflags,
1612 starget->scsi_level, rescan);
1613 }
1614
1615 out_reap:
1616 scsi_autopm_put_target(starget);
1617 /*
1618 * paired with scsi_alloc_target(): determine if the target has
1619 * any children at all and if not, nuke it
1620 */
1621 scsi_target_reap(starget);
1622
1623 put_device(&starget->dev);
1624 }
1625
1626 /**
1627 * scsi_scan_target - scan a target id, possibly including all LUNs on the target.
1628 * @parent: host to scan
1629 * @channel: channel to scan
1630 * @id: target id to scan
1631 * @lun: Specific LUN to scan or SCAN_WILD_CARD
1632 * @rescan: passed to LUN scanning routines; SCSI_SCAN_INITIAL for
1633 * no rescan, SCSI_SCAN_RESCAN to rescan existing LUNs,
1634 * and SCSI_SCAN_MANUAL to force scanning even if
1635 * 'scan=manual' is set.
1636 *
1637 * Description:
1638 * Scan the target id on @parent, @channel, and @id. Scan at least LUN 0,
1639 * and possibly all LUNs on the target id.
1640 *
1641 * First try a REPORT LUN scan, if that does not scan the target, do a
1642 * sequential scan of LUNs on the target id.
1643 **/
scsi_scan_target(struct device * parent,unsigned int channel,unsigned int id,u64 lun,enum scsi_scan_mode rescan)1644 void scsi_scan_target(struct device *parent, unsigned int channel,
1645 unsigned int id, u64 lun, enum scsi_scan_mode rescan)
1646 {
1647 struct Scsi_Host *shost = dev_to_shost(parent);
1648
1649 if (strncmp(scsi_scan_type, "none", 4) == 0)
1650 return;
1651
1652 if (rescan != SCSI_SCAN_MANUAL &&
1653 strncmp(scsi_scan_type, "manual", 6) == 0)
1654 return;
1655
1656 mutex_lock(&shost->scan_mutex);
1657 if (!shost->async_scan)
1658 scsi_complete_async_scans();
1659
1660 if (scsi_host_scan_allowed(shost) && scsi_autopm_get_host(shost) == 0) {
1661 __scsi_scan_target(parent, channel, id, lun, rescan);
1662 scsi_autopm_put_host(shost);
1663 }
1664 mutex_unlock(&shost->scan_mutex);
1665 }
1666 EXPORT_SYMBOL(scsi_scan_target);
1667
scsi_scan_channel(struct Scsi_Host * shost,unsigned int channel,unsigned int id,u64 lun,enum scsi_scan_mode rescan)1668 static void scsi_scan_channel(struct Scsi_Host *shost, unsigned int channel,
1669 unsigned int id, u64 lun,
1670 enum scsi_scan_mode rescan)
1671 {
1672 uint order_id;
1673
1674 if (id == SCAN_WILD_CARD)
1675 for (id = 0; id < shost->max_id; ++id) {
1676 /*
1677 * XXX adapter drivers when possible (FCP, iSCSI)
1678 * could modify max_id to match the current max,
1679 * not the absolute max.
1680 *
1681 * XXX add a shost id iterator, so for example,
1682 * the FC ID can be the same as a target id
1683 * without a huge overhead of sparse id's.
1684 */
1685 if (shost->reverse_ordering)
1686 /*
1687 * Scan from high to low id.
1688 */
1689 order_id = shost->max_id - id - 1;
1690 else
1691 order_id = id;
1692 __scsi_scan_target(&shost->shost_gendev, channel,
1693 order_id, lun, rescan);
1694 }
1695 else
1696 __scsi_scan_target(&shost->shost_gendev, channel,
1697 id, lun, rescan);
1698 }
1699
scsi_scan_host_selected(struct Scsi_Host * shost,unsigned int channel,unsigned int id,u64 lun,enum scsi_scan_mode rescan)1700 int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel,
1701 unsigned int id, u64 lun,
1702 enum scsi_scan_mode rescan)
1703 {
1704 SCSI_LOG_SCAN_BUS(3, shost_printk (KERN_INFO, shost,
1705 "%s: <%u:%u:%llu>\n",
1706 __func__, channel, id, lun));
1707
1708 if (((channel != SCAN_WILD_CARD) && (channel > shost->max_channel)) ||
1709 ((id != SCAN_WILD_CARD) && (id >= shost->max_id)) ||
1710 ((lun != SCAN_WILD_CARD) && (lun >= shost->max_lun)))
1711 return -EINVAL;
1712
1713 mutex_lock(&shost->scan_mutex);
1714 if (!shost->async_scan)
1715 scsi_complete_async_scans();
1716
1717 if (scsi_host_scan_allowed(shost) && scsi_autopm_get_host(shost) == 0) {
1718 if (channel == SCAN_WILD_CARD)
1719 for (channel = 0; channel <= shost->max_channel;
1720 channel++)
1721 scsi_scan_channel(shost, channel, id, lun,
1722 rescan);
1723 else
1724 scsi_scan_channel(shost, channel, id, lun, rescan);
1725 scsi_autopm_put_host(shost);
1726 }
1727 mutex_unlock(&shost->scan_mutex);
1728
1729 return 0;
1730 }
1731
scsi_sysfs_add_devices(struct Scsi_Host * shost)1732 static void scsi_sysfs_add_devices(struct Scsi_Host *shost)
1733 {
1734 struct scsi_device *sdev;
1735 shost_for_each_device(sdev, shost) {
1736 /* target removed before the device could be added */
1737 if (sdev->sdev_state == SDEV_DEL)
1738 continue;
1739 /* If device is already visible, skip adding it to sysfs */
1740 if (sdev->is_visible)
1741 continue;
1742 if (!scsi_host_scan_allowed(shost) ||
1743 scsi_sysfs_add_sdev(sdev) != 0)
1744 __scsi_remove_device(sdev);
1745 }
1746 }
1747
1748 /**
1749 * scsi_prep_async_scan - prepare for an async scan
1750 * @shost: the host which will be scanned
1751 * Returns: a cookie to be passed to scsi_finish_async_scan()
1752 *
1753 * Tells the midlayer this host is going to do an asynchronous scan.
1754 * It reserves the host's position in the scanning list and ensures
1755 * that other asynchronous scans started after this one won't affect the
1756 * ordering of the discovered devices.
1757 */
scsi_prep_async_scan(struct Scsi_Host * shost)1758 static struct async_scan_data *scsi_prep_async_scan(struct Scsi_Host *shost)
1759 {
1760 struct async_scan_data *data = NULL;
1761 unsigned long flags;
1762
1763 if (strncmp(scsi_scan_type, "sync", 4) == 0)
1764 return NULL;
1765
1766 mutex_lock(&shost->scan_mutex);
1767 if (shost->async_scan) {
1768 shost_printk(KERN_DEBUG, shost, "%s called twice\n", __func__);
1769 goto err;
1770 }
1771
1772 data = kmalloc(sizeof(*data), GFP_KERNEL);
1773 if (!data)
1774 goto err;
1775 data->shost = scsi_host_get(shost);
1776 if (!data->shost)
1777 goto err;
1778 init_completion(&data->prev_finished);
1779
1780 spin_lock_irqsave(shost->host_lock, flags);
1781 shost->async_scan = 1;
1782 spin_unlock_irqrestore(shost->host_lock, flags);
1783 mutex_unlock(&shost->scan_mutex);
1784
1785 spin_lock(&async_scan_lock);
1786 if (list_empty(&scanning_hosts))
1787 complete(&data->prev_finished);
1788 list_add_tail(&data->list, &scanning_hosts);
1789 spin_unlock(&async_scan_lock);
1790
1791 return data;
1792
1793 err:
1794 mutex_unlock(&shost->scan_mutex);
1795 kfree(data);
1796 return NULL;
1797 }
1798
1799 /**
1800 * scsi_finish_async_scan - asynchronous scan has finished
1801 * @data: cookie returned from earlier call to scsi_prep_async_scan()
1802 *
1803 * All the devices currently attached to this host have been found.
1804 * This function announces all the devices it has found to the rest
1805 * of the system.
1806 */
scsi_finish_async_scan(struct async_scan_data * data)1807 static void scsi_finish_async_scan(struct async_scan_data *data)
1808 {
1809 struct Scsi_Host *shost;
1810 unsigned long flags;
1811
1812 if (!data)
1813 return;
1814
1815 shost = data->shost;
1816
1817 mutex_lock(&shost->scan_mutex);
1818
1819 if (!shost->async_scan) {
1820 shost_printk(KERN_INFO, shost, "%s called twice\n", __func__);
1821 dump_stack();
1822 mutex_unlock(&shost->scan_mutex);
1823 return;
1824 }
1825
1826 wait_for_completion(&data->prev_finished);
1827
1828 scsi_sysfs_add_devices(shost);
1829
1830 spin_lock_irqsave(shost->host_lock, flags);
1831 shost->async_scan = 0;
1832 spin_unlock_irqrestore(shost->host_lock, flags);
1833
1834 mutex_unlock(&shost->scan_mutex);
1835
1836 spin_lock(&async_scan_lock);
1837 list_del(&data->list);
1838 if (!list_empty(&scanning_hosts)) {
1839 struct async_scan_data *next = list_entry(scanning_hosts.next,
1840 struct async_scan_data, list);
1841 complete(&next->prev_finished);
1842 }
1843 spin_unlock(&async_scan_lock);
1844
1845 scsi_autopm_put_host(shost);
1846 scsi_host_put(shost);
1847 kfree(data);
1848 }
1849
do_scsi_scan_host(struct Scsi_Host * shost)1850 static void do_scsi_scan_host(struct Scsi_Host *shost)
1851 {
1852 if (shost->hostt->scan_finished) {
1853 unsigned long start = jiffies;
1854 if (shost->hostt->scan_start)
1855 shost->hostt->scan_start(shost);
1856
1857 while (!shost->hostt->scan_finished(shost, jiffies - start))
1858 msleep(10);
1859 } else {
1860 scsi_scan_host_selected(shost, SCAN_WILD_CARD, SCAN_WILD_CARD,
1861 SCAN_WILD_CARD, 0);
1862 }
1863 }
1864
do_scan_async(void * _data,async_cookie_t c)1865 static void do_scan_async(void *_data, async_cookie_t c)
1866 {
1867 struct async_scan_data *data = _data;
1868 struct Scsi_Host *shost = data->shost;
1869
1870 do_scsi_scan_host(shost);
1871 scsi_finish_async_scan(data);
1872 }
1873
1874 /**
1875 * scsi_scan_host - scan the given adapter
1876 * @shost: adapter to scan
1877 **/
scsi_scan_host(struct Scsi_Host * shost)1878 void scsi_scan_host(struct Scsi_Host *shost)
1879 {
1880 struct async_scan_data *data;
1881
1882 if (strncmp(scsi_scan_type, "none", 4) == 0 ||
1883 strncmp(scsi_scan_type, "manual", 6) == 0)
1884 return;
1885 if (scsi_autopm_get_host(shost) < 0)
1886 return;
1887
1888 data = scsi_prep_async_scan(shost);
1889 if (!data) {
1890 do_scsi_scan_host(shost);
1891 scsi_autopm_put_host(shost);
1892 return;
1893 }
1894
1895 /* register with the async subsystem so wait_for_device_probe()
1896 * will flush this work
1897 */
1898 async_schedule(do_scan_async, data);
1899
1900 /* scsi_autopm_put_host(shost) is called in scsi_finish_async_scan() */
1901 }
1902 EXPORT_SYMBOL(scsi_scan_host);
1903
scsi_forget_host(struct Scsi_Host * shost)1904 void scsi_forget_host(struct Scsi_Host *shost)
1905 {
1906 struct scsi_device *sdev;
1907 unsigned long flags;
1908
1909 restart:
1910 spin_lock_irqsave(shost->host_lock, flags);
1911 list_for_each_entry(sdev, &shost->__devices, siblings) {
1912 if (sdev->sdev_state == SDEV_DEL)
1913 continue;
1914 spin_unlock_irqrestore(shost->host_lock, flags);
1915 __scsi_remove_device(sdev);
1916 goto restart;
1917 }
1918 spin_unlock_irqrestore(shost->host_lock, flags);
1919 }
1920
1921