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