blob: b7948d20c23b0798d0832208bece95a0b4a4f762 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * scsi_scan.c
3 *
4 * Copyright (C) 2000 Eric Youngdale,
5 * Copyright (C) 2002 Patrick Mansfield
6 *
7 * The general scanning/probing algorithm is as follows, exceptions are
8 * made to it depending on device specific flags, compilation options, and
9 * global variable (boot or module load time) settings.
10 *
11 * A specific LUN is scanned via an INQUIRY command; if the LUN has a
Christoph Hellwigf64a1812005-10-31 18:32:08 +010012 * device attached, a scsi_device is allocated and setup for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * For every id of every channel on the given host:
15 *
16 * Scan LUN 0; if the target responds to LUN 0 (even if there is no
17 * device or storage attached to LUN 0):
18 *
19 * If LUN 0 has a device attached, allocate and setup a
Christoph Hellwigf64a1812005-10-31 18:32:08 +010020 * scsi_device for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 *
22 * If target is SCSI-3 or up, issue a REPORT LUN, and scan
23 * all of the LUNs returned by the REPORT LUN; else,
24 * sequentially scan LUNs up until some maximum is reached,
25 * or a LUN is seen that cannot have a device attached to it.
26 */
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/moduleparam.h>
30#include <linux/init.h>
31#include <linux/blkdev.h>
Matthew Wilcox3e082a92006-09-28 15:19:20 -060032#include <linux/delay.h>
33#include <linux/kthread.h>
34#include <linux/spinlock.h>
Arjan van de Ven4ace92f2009-01-04 05:32:28 -080035#include <linux/async.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Rob Evers2a904e52014-12-16 11:01:19 -050037#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <scsi/scsi.h>
Christoph Hellwigbeb40482006-06-10 18:01:03 +020040#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <scsi/scsi_device.h>
42#include <scsi/scsi_driver.h>
43#include <scsi/scsi_devinfo.h>
44#include <scsi/scsi_host.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <scsi/scsi_transport.h>
46#include <scsi/scsi_eh.h>
47
48#include "scsi_priv.h"
49#include "scsi_logging.h"
50
51#define ALLOC_FAILURE_MSG KERN_ERR "%s: Allocation failure during" \
52 " SCSI scanning, some SCSI devices might not be configured\n"
53
54/*
55 * Default timeout
56 */
57#define SCSI_TIMEOUT (2*HZ)
58
59/*
Robert P. J. Day405ae7d2007-02-17 19:13:42 +010060 * Prefix values for the SCSI id's (stored in sysfs name field)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 */
62#define SCSI_UID_SER_NUM 'S'
63#define SCSI_UID_UNKNOWN 'Z'
64
65/*
66 * Return values of some of the scanning functions.
67 *
68 * SCSI_SCAN_NO_RESPONSE: no valid response received from the target, this
69 * includes allocation or general failures preventing IO from being sent.
70 *
71 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is available
72 * on the given LUN.
73 *
74 * SCSI_SCAN_LUN_PRESENT: target responded, and a device is available on a
75 * given LUN.
76 */
77#define SCSI_SCAN_NO_RESPONSE 0
78#define SCSI_SCAN_TARGET_PRESENT 1
79#define SCSI_SCAN_LUN_PRESENT 2
80
Arjan van de Ven0ad78202005-11-28 16:22:25 +010081static const char *scsi_null_device_strs = "nullnullnullnull";
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83#define MAX_SCSI_LUNS 512
84
Hannes Reinecke1abf6352014-06-25 15:27:38 +020085static u64 max_scsi_luns = MAX_SCSI_LUNS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Hannes Reinecke1abf6352014-06-25 15:27:38 +020087module_param_named(max_luns, max_scsi_luns, ullong, S_IRUGO|S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088MODULE_PARM_DESC(max_luns,
Hannes Reinecke1abf6352014-06-25 15:27:38 +020089 "last scsi LUN (should be between 1 and 2^64-1)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Matthew Wilcox21db1882006-11-22 13:24:52 -070091#ifdef CONFIG_SCSI_SCAN_ASYNC
92#define SCSI_SCAN_TYPE_DEFAULT "async"
93#else
94#define SCSI_SCAN_TYPE_DEFAULT "sync"
95#endif
96
Dan Williams3c31b522014-04-10 15:30:35 -070097char scsi_scan_type[6] = SCSI_SCAN_TYPE_DEFAULT;
Matthew Wilcox3e082a92006-09-28 15:19:20 -060098
99module_param_string(scan, scsi_scan_type, sizeof(scsi_scan_type), S_IRUGO);
100MODULE_PARM_DESC(scan, "sync, async or none");
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/*
103 * max_scsi_report_luns: the maximum number of LUNS that will be
104 * returned from the REPORT LUNS command. 8 times this value must
105 * be allocated. In theory this could be up to an 8 byte value, but
106 * in practice, the maximum number of LUNs suppored by any device
107 * is about 16k.
108 */
109static unsigned int max_scsi_report_luns = 511;
110
Masatake YAMATO10f4b892007-09-19 22:59:16 +0900111module_param_named(max_report_luns, max_scsi_report_luns, uint, S_IRUGO|S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112MODULE_PARM_DESC(max_report_luns,
113 "REPORT LUNS maximum number of LUNS received (should be"
114 " between 1 and 16384)");
115
Alan Stern14faf122009-03-12 11:08:51 -0400116static unsigned int scsi_inq_timeout = SCSI_TIMEOUT/HZ + 18;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Masatake YAMATO10f4b892007-09-19 22:59:16 +0900118module_param_named(inq_timeout, scsi_inq_timeout, uint, S_IRUGO|S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119MODULE_PARM_DESC(inq_timeout,
120 "Timeout (in seconds) waiting for devices to answer INQUIRY."
Alan Stern14faf122009-03-12 11:08:51 -0400121 " Default is 20. Some devices may need more; most need less.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Matthew Wilcox6b7f1232007-06-26 15:18:51 -0600123/* This lock protects only this list */
Matthew Wilcox3e082a92006-09-28 15:19:20 -0600124static DEFINE_SPINLOCK(async_scan_lock);
125static LIST_HEAD(scanning_hosts);
126
127struct async_scan_data {
128 struct list_head list;
129 struct Scsi_Host *shost;
130 struct completion prev_finished;
131};
132
133/**
134 * scsi_complete_async_scans - Wait for asynchronous scans to complete
135 *
Matthew Wilcox8bcc2412006-12-07 19:29:27 -0700136 * When this function returns, any host which started scanning before
137 * this function was called will have finished its scan. Hosts which
138 * started scanning after this function was called may or may not have
139 * finished.
Matthew Wilcox3e082a92006-09-28 15:19:20 -0600140 */
141int scsi_complete_async_scans(void)
142{
143 struct async_scan_data *data;
144
145 do {
146 if (list_empty(&scanning_hosts))
Dan Williamse96eb232012-07-09 19:33:45 -0700147 return 0;
Matthew Wilcox3e082a92006-09-28 15:19:20 -0600148 /* If we can't get memory immediately, that's OK. Just
149 * sleep a little. Even if we never get memory, the async
150 * scans will finish eventually.
151 */
152 data = kmalloc(sizeof(*data), GFP_KERNEL);
153 if (!data)
154 msleep(1);
155 } while (!data);
156
157 data->shost = NULL;
158 init_completion(&data->prev_finished);
159
160 spin_lock(&async_scan_lock);
161 /* Check that there's still somebody else on the list */
162 if (list_empty(&scanning_hosts))
163 goto done;
164 list_add_tail(&data->list, &scanning_hosts);
165 spin_unlock(&async_scan_lock);
166
167 printk(KERN_INFO "scsi: waiting for bus probes to complete ...\n");
168 wait_for_completion(&data->prev_finished);
169
170 spin_lock(&async_scan_lock);
171 list_del(&data->list);
Matthew Wilcox8bcc2412006-12-07 19:29:27 -0700172 if (!list_empty(&scanning_hosts)) {
173 struct async_scan_data *next = list_entry(scanning_hosts.next,
174 struct async_scan_data, list);
175 complete(&next->prev_finished);
176 }
Matthew Wilcox3e082a92006-09-28 15:19:20 -0600177 done:
178 spin_unlock(&async_scan_lock);
Dan Williamse96eb232012-07-09 19:33:45 -0700179
Matthew Wilcox3e082a92006-09-28 15:19:20 -0600180 kfree(data);
181 return 0;
182}
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/**
185 * scsi_unlock_floptical - unlock device via a special MODE SENSE command
James Bottomley39216032005-06-15 18:48:29 -0500186 * @sdev: scsi device to send command to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 * @result: area to store the result of the MODE SENSE
188 *
189 * Description:
James Bottomley39216032005-06-15 18:48:29 -0500190 * Send a vendor specific MODE SENSE (not a MODE SELECT) command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * Called for BLIST_KEY devices.
192 **/
James Bottomley39216032005-06-15 18:48:29 -0500193static void scsi_unlock_floptical(struct scsi_device *sdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 unsigned char *result)
195{
196 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
197
Hannes Reinecke91921e02014-06-25 16:39:59 +0200198 sdev_printk(KERN_NOTICE, sdev, "unlocking floptical drive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 scsi_cmd[0] = MODE_SENSE;
200 scsi_cmd[1] = 0;
201 scsi_cmd[2] = 0x2e;
202 scsi_cmd[3] = 0;
James Bottomley39216032005-06-15 18:48:29 -0500203 scsi_cmd[4] = 0x2a; /* size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 scsi_cmd[5] = 0;
James Bottomley39216032005-06-15 18:48:29 -0500205 scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE, result, 0x2a, NULL,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900206 SCSI_TIMEOUT, 3, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
209/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 * scsi_alloc_sdev - allocate and setup a scsi_Device
Rob Landleyeb448202007-11-03 13:30:39 -0500211 * @starget: which target to allocate a &scsi_device for
212 * @lun: which lun
213 * @hostdata: usually NULL and set by ->slave_alloc instead
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 *
215 * Description:
216 * Allocate, initialize for io, and return a pointer to a scsi_Device.
217 * Stores the @shost, @channel, @id, and @lun in the scsi_Device, and
218 * adds scsi_Device to the appropriate list.
219 *
220 * Return value:
221 * scsi_Device pointer, or NULL on failure.
222 **/
223static struct scsi_device *scsi_alloc_sdev(struct scsi_target *starget,
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200224 u64 lun, void *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 struct scsi_device *sdev;
227 int display_failure_msg = 1, ret;
228 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
Jeff Garzika341cd02007-10-29 17:15:22 -0400229 extern void scsi_evt_thread(struct work_struct *work);
Jens Axboe9937a5e2011-05-17 11:04:44 +0200230 extern void scsi_requeue_run_queue(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Jes Sorensen24669f752006-01-16 10:31:18 -0500232 sdev = kzalloc(sizeof(*sdev) + shost->transportt->device_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 GFP_ATOMIC);
234 if (!sdev)
235 goto out;
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 sdev->vendor = scsi_null_device_strs;
238 sdev->model = scsi_null_device_strs;
239 sdev->rev = scsi_null_device_strs;
240 sdev->host = shost;
Vasu Dev4a840672009-10-22 15:46:33 -0700241 sdev->queue_ramp_up_period = SCSI_DEFAULT_RAMP_UP_PERIOD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 sdev->id = starget->id;
243 sdev->lun = lun;
244 sdev->channel = starget->channel;
245 sdev->sdev_state = SDEV_CREATED;
246 INIT_LIST_HEAD(&sdev->siblings);
247 INIT_LIST_HEAD(&sdev->same_target_siblings);
248 INIT_LIST_HEAD(&sdev->cmd_list);
249 INIT_LIST_HEAD(&sdev->starved_entry);
Jeff Garzika341cd02007-10-29 17:15:22 -0400250 INIT_LIST_HEAD(&sdev->event_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 spin_lock_init(&sdev->list_lock);
Jeff Garzika341cd02007-10-29 17:15:22 -0400252 INIT_WORK(&sdev->event_work, scsi_evt_thread);
Jens Axboe9937a5e2011-05-17 11:04:44 +0200253 INIT_WORK(&sdev->requeue_work, scsi_requeue_run_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 sdev->sdev_gendev.parent = get_device(&starget->dev);
256 sdev->sdev_target = starget;
257
258 /* usually NULL and set by ->slave_alloc instead */
259 sdev->hostdata = hostdata;
260
261 /* if the device needs this changing, it may do so in the
262 * slave_configure function */
263 sdev->max_device_blocked = SCSI_DEFAULT_DEVICE_BLOCKED;
264
265 /*
266 * Some low level driver could use device->type
267 */
268 sdev->type = -1;
269
270 /*
271 * Assume that the device will have handshaking problems,
272 * and then fix this field later if it turns out it
273 * doesn't
274 */
275 sdev->borken = 1;
276
Christoph Hellwigd2852032014-01-17 12:06:53 +0100277 if (shost_use_blk_mq(shost))
278 sdev->request_queue = scsi_mq_alloc_queue(sdev);
279 else
280 sdev->request_queue = scsi_alloc_queue(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (!sdev->request_queue) {
282 /* release fn is set up in scsi_sysfs_device_initialise, so
283 * have to free and put manually here */
284 put_device(&starget->dev);
Dave Jones93f560892006-03-09 10:21:27 -0500285 kfree(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 goto out;
287 }
Tejun Heo09ac46c2011-12-14 00:33:38 +0100288 WARN_ON_ONCE(!blk_get_queue(sdev->request_queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 sdev->request_queue->queuedata = sdev;
Christoph Hellwig2ecb2042014-11-03 14:09:02 +0100290
291 if (!shost_use_blk_mq(sdev->host) &&
292 (shost->bqt || shost->hostt->use_blk_tags)) {
293 blk_queue_init_tags(sdev->request_queue,
294 sdev->host->cmd_per_lun, shost->bqt);
295 }
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100296 scsi_change_queue_depth(sdev, sdev->host->cmd_per_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 scsi_sysfs_device_initialize(sdev);
299
300 if (shost->hostt->slave_alloc) {
301 ret = shost->hostt->slave_alloc(sdev);
302 if (ret) {
303 /*
304 * if LLDD reports slave not present, don't clutter
305 * console with alloc failure messages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 */
307 if (ret == -ENXIO)
308 display_failure_msg = 0;
309 goto out_device_destroy;
310 }
311 }
312
313 return sdev;
314
315out_device_destroy:
James Bottomley4e6c82b2011-11-07 08:51:24 -0600316 __scsi_remove_device(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317out:
318 if (display_failure_msg)
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700319 printk(ALLOC_FAILURE_MSG, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return NULL;
321}
322
James Bottomley643eb2d2008-03-22 22:42:27 -0500323static void scsi_target_destroy(struct scsi_target *starget)
324{
325 struct device *dev = &starget->dev;
326 struct Scsi_Host *shost = dev_to_shost(dev->parent);
327 unsigned long flags;
328
James Bottomleyf2495e22014-01-21 07:01:41 -0800329 starget->state = STARGET_DEL;
James Bottomley643eb2d2008-03-22 22:42:27 -0500330 transport_destroy_device(dev);
331 spin_lock_irqsave(shost->host_lock, flags);
332 if (shost->hostt->target_destroy)
333 shost->hostt->target_destroy(starget);
334 list_del_init(&starget->siblings);
335 spin_unlock_irqrestore(shost->host_lock, flags);
336 put_device(dev);
337}
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339static void scsi_target_dev_release(struct device *dev)
340{
341 struct device *parent = dev->parent;
342 struct scsi_target *starget = to_scsi_target(dev);
James Bottomleya283bd32005-05-24 12:06:38 -0500343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 kfree(starget);
345 put_device(parent);
346}
347
Adrian Bunk453cd0f2008-07-03 23:47:33 -0700348static struct device_type scsi_target_type = {
Hannes Reineckeb0ed4332008-03-18 14:32:28 +0100349 .name = "scsi_target",
350 .release = scsi_target_dev_release,
351};
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353int scsi_is_target_device(const struct device *dev)
354{
Hannes Reineckeb0ed4332008-03-18 14:32:28 +0100355 return dev->type == &scsi_target_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357EXPORT_SYMBOL(scsi_is_target_device);
358
359static struct scsi_target *__scsi_find_target(struct device *parent,
360 int channel, uint id)
361{
362 struct scsi_target *starget, *found_starget = NULL;
363 struct Scsi_Host *shost = dev_to_shost(parent);
364 /*
365 * Search for an existing target for this sdev.
366 */
367 list_for_each_entry(starget, &shost->__targets, siblings) {
368 if (starget->id == id &&
369 starget->channel == channel) {
370 found_starget = starget;
371 break;
372 }
373 }
374 if (found_starget)
375 get_device(&found_starget->dev);
376
377 return found_starget;
378}
379
James Bottomley884d25c2006-09-05 16:26:41 -0500380/**
James Bottomleye63ed0d2014-01-21 07:00:50 -0800381 * scsi_target_reap_ref_release - remove target from visibility
382 * @kref: the reap_ref in the target being released
383 *
384 * Called on last put of reap_ref, which is the indication that no device
385 * under this target is visible anymore, so render the target invisible in
386 * sysfs. Note: we have to be in user context here because the target reaps
387 * should be done in places where the scsi device visibility is being removed.
388 */
389static void scsi_target_reap_ref_release(struct kref *kref)
390{
391 struct scsi_target *starget
392 = container_of(kref, struct scsi_target, reap_ref);
393
James Bottomleyf2495e22014-01-21 07:01:41 -0800394 /*
395 * if we get here and the target is still in the CREATED state that
396 * means it was allocated but never made visible (because a scan
397 * turned up no LUNs), so don't call device_del() on it.
398 */
399 if (starget->state != STARGET_CREATED) {
400 transport_remove_device(&starget->dev);
401 device_del(&starget->dev);
402 }
James Bottomleye63ed0d2014-01-21 07:00:50 -0800403 scsi_target_destroy(starget);
404}
405
406static void scsi_target_reap_ref_put(struct scsi_target *starget)
407{
408 kref_put(&starget->reap_ref, scsi_target_reap_ref_release);
409}
410
411/**
James Bottomley884d25c2006-09-05 16:26:41 -0500412 * scsi_alloc_target - allocate a new or find an existing target
413 * @parent: parent of the target (need not be a scsi host)
414 * @channel: target channel number (zero if no channels)
415 * @id: target id number
416 *
417 * Return an existing target if one exists, provided it hasn't already
418 * gone into STARGET_DEL state, otherwise allocate a new target.
419 *
420 * The target is returned with an incremented reference, so the caller
421 * is responsible for both reaping and doing a last put
422 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423static struct scsi_target *scsi_alloc_target(struct device *parent,
424 int channel, uint id)
425{
426 struct Scsi_Host *shost = dev_to_shost(parent);
427 struct device *dev = NULL;
428 unsigned long flags;
429 const int size = sizeof(struct scsi_target)
430 + shost->transportt->target_size;
James.Smart@Emulex.Com5c44cd22005-06-10 22:24:30 -0400431 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 struct scsi_target *found_target;
James Bottomleye63ed0d2014-01-21 07:00:50 -0800433 int error, ref_got;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Jes Sorensen24669f752006-01-16 10:31:18 -0500435 starget = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (!starget) {
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700437 printk(KERN_ERR "%s: allocation failure\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return NULL;
439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 dev = &starget->dev;
441 device_initialize(dev);
James Bottomleye63ed0d2014-01-21 07:00:50 -0800442 kref_init(&starget->reap_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 dev->parent = get_device(parent);
Kay Sievers71610f52008-12-03 22:41:36 +0100444 dev_set_name(dev, "target%d:%d:%d", shost->host_no, channel, id);
Hannes Reineckeb0ed4332008-03-18 14:32:28 +0100445 dev->bus = &scsi_bus_type;
Hannes Reineckeb0ed4332008-03-18 14:32:28 +0100446 dev->type = &scsi_target_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 starget->id = id;
448 starget->channel = channel;
Mike Christief0c0a372008-08-17 15:24:38 -0500449 starget->can_queue = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 INIT_LIST_HEAD(&starget->siblings);
451 INIT_LIST_HEAD(&starget->devices);
James Bottomley643eb2d2008-03-22 22:42:27 -0500452 starget->state = STARGET_CREATED;
Alan Stern7c9d6f12007-01-08 11:12:32 -0500453 starget->scsi_level = SCSI_2;
Edward Gogginc53a2842009-04-09 10:02:22 -0700454 starget->max_target_blocked = SCSI_DEFAULT_TARGET_BLOCKED;
James Bottomleyffedb452006-02-23 14:27:18 -0600455 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 spin_lock_irqsave(shost->host_lock, flags);
457
458 found_target = __scsi_find_target(parent, channel, id);
459 if (found_target)
460 goto found;
461
462 list_add_tail(&starget->siblings, &shost->__targets);
463 spin_unlock_irqrestore(shost->host_lock, flags);
464 /* allocate and add */
James Bottomleya283bd32005-05-24 12:06:38 -0500465 transport_setup_device(dev);
James Bottomleya283bd32005-05-24 12:06:38 -0500466 if (shost->hostt->target_alloc) {
Brian King32f95792006-02-22 14:28:24 -0600467 error = shost->hostt->target_alloc(starget);
James Bottomleya283bd32005-05-24 12:06:38 -0500468
469 if(error) {
470 dev_printk(KERN_ERR, dev, "target allocation failed, error %d\n", error);
471 /* don't want scsi_target_reap to do the final
472 * put because it will be under the host lock */
James Bottomley643eb2d2008-03-22 22:42:27 -0500473 scsi_target_destroy(starget);
James Bottomleya283bd32005-05-24 12:06:38 -0500474 return NULL;
475 }
476 }
James Bottomley884d25c2006-09-05 16:26:41 -0500477 get_device(dev);
James Bottomleya283bd32005-05-24 12:06:38 -0500478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return starget;
480
481 found:
James Bottomleye63ed0d2014-01-21 07:00:50 -0800482 /*
483 * release routine already fired if kref is zero, so if we can still
484 * take the reference, the target must be alive. If we can't, it must
485 * be dying and we need to wait for a new target
486 */
487 ref_got = kref_get_unless_zero(&found_target->reap_ref);
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 spin_unlock_irqrestore(shost->host_lock, flags);
James Bottomleye63ed0d2014-01-21 07:00:50 -0800490 if (ref_got) {
Alan Stern12fb8c12010-03-18 15:41:22 -0400491 put_device(dev);
James Bottomleyffedb452006-02-23 14:27:18 -0600492 return found_target;
493 }
James Bottomleye63ed0d2014-01-21 07:00:50 -0800494 /*
495 * Unfortunately, we found a dying target; need to wait until it's
496 * dead before we can get a new one. There is an anomaly here. We
497 * *should* call scsi_target_reap() to balance the kref_get() of the
498 * reap_ref above. However, since the target being released, it's
499 * already invisible and the reap_ref is irrelevant. If we call
500 * scsi_target_reap() we might spuriously do another device_del() on
501 * an already invisible target.
502 */
James Bottomleyffedb452006-02-23 14:27:18 -0600503 put_device(&found_target->dev);
James Bottomleye63ed0d2014-01-21 07:00:50 -0800504 /*
505 * length of time is irrelevant here, we just want to yield the CPU
506 * for a tick to avoid busy waiting for the target to die.
507 */
508 msleep(1);
James Bottomleyffedb452006-02-23 14:27:18 -0600509 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
512/**
513 * scsi_target_reap - check to see if target is in use and destroy if not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 * @starget: target to be checked
515 *
516 * This is used after removing a LUN or doing a last put of the target
517 * it checks atomically that nothing is using the target and removes
518 * it if so.
519 */
520void scsi_target_reap(struct scsi_target *starget)
521{
James Bottomleyf2495e22014-01-21 07:01:41 -0800522 /*
523 * serious problem if this triggers: STARGET_DEL is only set in the if
524 * the reap_ref drops to zero, so we're trying to do another final put
525 * on an already released kref
526 */
James Bottomleye63ed0d2014-01-21 07:00:50 -0800527 BUG_ON(starget->state == STARGET_DEL);
James Bottomleyf2495e22014-01-21 07:01:41 -0800528 scsi_target_reap_ref_put(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
531/**
Alan Sterne5b3cd42006-08-21 15:53:25 -0400532 * sanitize_inquiry_string - remove non-graphical chars from an INQUIRY result string
533 * @s: INQUIRY result string to sanitize
534 * @len: length of the string
535 *
536 * Description:
537 * The SCSI spec says that INQUIRY vendor, product, and revision
538 * strings must consist entirely of graphic ASCII characters,
539 * padded on the right with spaces. Since not all devices obey
540 * this rule, we will replace non-graphic or non-ASCII characters
541 * with spaces. Exception: a NUL character is interpreted as a
542 * string terminator, so all the following characters are set to
543 * spaces.
544 **/
545static void sanitize_inquiry_string(unsigned char *s, int len)
546{
547 int terminated = 0;
548
549 for (; len > 0; (--len, ++s)) {
550 if (*s == 0)
551 terminated = 1;
552 if (terminated || *s < 0x20 || *s > 0x7e)
553 *s = ' ';
554 }
555}
556
557/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 * scsi_probe_lun - probe a single LUN using a SCSI INQUIRY
James Bottomley39216032005-06-15 18:48:29 -0500559 * @sdev: scsi_device to probe
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 * @inq_result: area to store the INQUIRY result
James Bottomley39216032005-06-15 18:48:29 -0500561 * @result_len: len of inq_result
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 * @bflags: store any bflags found here
563 *
564 * Description:
James Bottomley39216032005-06-15 18:48:29 -0500565 * Probe the lun associated with @req using a standard SCSI INQUIRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 *
James Bottomley39216032005-06-15 18:48:29 -0500567 * If the INQUIRY is successful, zero is returned and the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 * INQUIRY data is in @inq_result; the scsi_level and INQUIRY length
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100569 * are copied to the scsi_device any flags value is stored in *@bflags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 **/
Alan Sterne5b3cd42006-08-21 15:53:25 -0400571static int scsi_probe_lun(struct scsi_device *sdev, unsigned char *inq_result,
James Bottomley39216032005-06-15 18:48:29 -0500572 int result_len, int *bflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
575 int first_inquiry_len, try_inquiry_len, next_inquiry_len;
576 int response_len = 0;
James Bottomley39216032005-06-15 18:48:29 -0500577 int pass, count, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 struct scsi_sense_hdr sshdr;
579
580 *bflags = 0;
581
582 /* Perform up to 3 passes. The first pass uses a conservative
583 * transfer length of 36 unless sdev->inquiry_len specifies a
584 * different value. */
585 first_inquiry_len = sdev->inquiry_len ? sdev->inquiry_len : 36;
586 try_inquiry_len = first_inquiry_len;
587 pass = 1;
588
589 next_pass:
James Bottomley9ccfc752005-10-02 11:45:08 -0500590 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
591 "scsi scan: INQUIRY pass %d length %d\n",
592 pass, try_inquiry_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 /* Each pass gets up to three chances to ignore Unit Attention */
595 for (count = 0; count < 3; ++count) {
FUJITA Tomonori5cd3bbf2008-12-05 11:21:46 +0900596 int resid;
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 memset(scsi_cmd, 0, 6);
599 scsi_cmd[0] = INQUIRY;
600 scsi_cmd[4] = (unsigned char) try_inquiry_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 memset(inq_result, 0, try_inquiry_len);
James Bottomley39216032005-06-15 18:48:29 -0500603
604 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
James Bottomleyea73a9f2005-08-28 11:33:52 -0500605 inq_result, try_inquiry_len, &sshdr,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900606 HZ / 2 + HZ * scsi_inq_timeout, 3,
FUJITA Tomonori5cd3bbf2008-12-05 11:21:46 +0900607 &resid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Hannes Reinecke91921e02014-06-25 16:39:59 +0200609 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
610 "scsi scan: INQUIRY %s with code 0x%x\n",
James Bottomley39216032005-06-15 18:48:29 -0500611 result ? "failed" : "successful", result));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
James Bottomley39216032005-06-15 18:48:29 -0500613 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 /*
615 * not-ready to ready transition [asc/ascq=0x28/0x0]
616 * or power-on, reset [asc/ascq=0x29/0x0], continue.
617 * INQUIRY should not yield UNIT_ATTENTION
618 * but many buggy devices do so anyway.
619 */
James Bottomley39216032005-06-15 18:48:29 -0500620 if ((driver_byte(result) & DRIVER_SENSE) &&
James Bottomleyea73a9f2005-08-28 11:33:52 -0500621 scsi_sense_valid(&sshdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if ((sshdr.sense_key == UNIT_ATTENTION) &&
623 ((sshdr.asc == 0x28) ||
624 (sshdr.asc == 0x29)) &&
625 (sshdr.ascq == 0))
626 continue;
627 }
FUJITA Tomonori5cd3bbf2008-12-05 11:21:46 +0900628 } else {
629 /*
630 * if nothing was transferred, we try
631 * again. It's a workaround for some USB
632 * devices.
633 */
634 if (resid == try_inquiry_len)
635 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
637 break;
638 }
639
James Bottomley39216032005-06-15 18:48:29 -0500640 if (result == 0) {
Alan Sterne5b3cd42006-08-21 15:53:25 -0400641 sanitize_inquiry_string(&inq_result[8], 8);
642 sanitize_inquiry_string(&inq_result[16], 16);
643 sanitize_inquiry_string(&inq_result[32], 4);
644
645 response_len = inq_result[4] + 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (response_len > 255)
647 response_len = first_inquiry_len; /* sanity */
648
649 /*
650 * Get any flags for this device.
651 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100652 * XXX add a bflags to scsi_device, and replace the
653 * corresponding bit fields in scsi_device, so bflags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 * need not be passed as an argument.
655 */
656 *bflags = scsi_get_device_flags(sdev, &inq_result[8],
657 &inq_result[16]);
658
659 /* When the first pass succeeds we gain information about
660 * what larger transfer lengths might work. */
661 if (pass == 1) {
662 if (BLIST_INQUIRY_36 & *bflags)
663 next_inquiry_len = 36;
664 else if (BLIST_INQUIRY_58 & *bflags)
665 next_inquiry_len = 58;
666 else if (sdev->inquiry_len)
667 next_inquiry_len = sdev->inquiry_len;
668 else
669 next_inquiry_len = response_len;
670
671 /* If more data is available perform the second pass */
672 if (next_inquiry_len > try_inquiry_len) {
673 try_inquiry_len = next_inquiry_len;
674 pass = 2;
675 goto next_pass;
676 }
677 }
678
679 } else if (pass == 2) {
Hannes Reinecke91921e02014-06-25 16:39:59 +0200680 sdev_printk(KERN_INFO, sdev,
681 "scsi scan: %d byte inquiry failed. "
682 "Consider BLIST_INQUIRY_36 for this device\n",
683 try_inquiry_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 /* If this pass failed, the third pass goes back and transfers
686 * the same amount as we successfully got in the first pass. */
687 try_inquiry_len = first_inquiry_len;
688 pass = 3;
689 goto next_pass;
690 }
691
692 /* If the last transfer attempt got an error, assume the
693 * peripheral doesn't exist or is dead. */
James Bottomley39216032005-06-15 18:48:29 -0500694 if (result)
695 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 /* Don't report any more data than the device says is valid */
698 sdev->inquiry_len = min(try_inquiry_len, response_len);
699
700 /*
701 * XXX Abort if the response length is less than 36? If less than
702 * 32, the lookup of the device flags (above) could be invalid,
703 * and it would be possible to take an incorrect action - we do
704 * not want to hang because of a short INQUIRY. On the flip side,
705 * if the device is spun down or becoming ready (and so it gives a
706 * short INQUIRY), an abort here prevents any further use of the
707 * device, including spin up.
708 *
Alan Sterne423ee32007-02-16 01:46:38 -0800709 * On the whole, the best approach seems to be to assume the first
710 * 36 bytes are valid no matter what the device says. That's
711 * better than copying < 36 bytes to the inquiry-result buffer
712 * and displaying garbage for the Vendor, Product, or Revision
713 * strings.
714 */
715 if (sdev->inquiry_len < 36) {
Hannes Reinecke91921e02014-06-25 16:39:59 +0200716 sdev_printk(KERN_INFO, sdev,
717 "scsi scan: INQUIRY result too short (%d),"
718 " using 36\n", sdev->inquiry_len);
Alan Sterne423ee32007-02-16 01:46:38 -0800719 sdev->inquiry_len = 36;
720 }
721
722 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 * Related to the above issue:
724 *
725 * XXX Devices (disk or all?) should be sent a TEST UNIT READY,
726 * and if not ready, sent a START_STOP to start (maybe spin up) and
727 * then send the INQUIRY again, since the INQUIRY can change after
728 * a device is initialized.
729 *
730 * Ideally, start a device if explicitly asked to do so. This
731 * assumes that a device is spun up on power on, spun down on
732 * request, and then spun up on request.
733 */
734
735 /*
736 * The scanning code needs to know the scsi_level, even if no
737 * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so
738 * non-zero LUNs can be scanned.
739 */
740 sdev->scsi_level = inq_result[2] & 0x07;
741 if (sdev->scsi_level >= 2 ||
742 (sdev->scsi_level == 1 && (inq_result[3] & 0x0f) == 1))
743 sdev->scsi_level++;
James Bottomley6f3a2022005-09-22 20:33:28 -0500744 sdev->sdev_target->scsi_level = sdev->scsi_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Alan Stern50c4e962014-09-02 11:35:50 -0400746 /*
747 * If SCSI-2 or lower, and if the transport requires it,
748 * store the LUN value in CDB[1].
749 */
750 sdev->lun_in_cdb = 0;
751 if (sdev->scsi_level <= SCSI_2 &&
752 sdev->scsi_level != SCSI_UNKNOWN &&
753 !sdev->host->no_scsi2_lun_in_cdb)
754 sdev->lun_in_cdb = 1;
755
James Bottomley39216032005-06-15 18:48:29 -0500756 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759/**
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100760 * scsi_add_lun - allocate and fully initialze a scsi_device
Matthew Wilcox6d877682007-07-11 12:54:55 -0600761 * @sdev: holds information to be stored in the new scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 * @inq_result: holds the result of a previous INQUIRY to the LUN
763 * @bflags: black/white list flag
Matthew Wilcox6d877682007-07-11 12:54:55 -0600764 * @async: 1 if this device is being scanned asynchronously
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 *
766 * Description:
Matthew Wilcox6d877682007-07-11 12:54:55 -0600767 * Initialize the scsi_device @sdev. Optionally set fields based
768 * on values in *@bflags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 *
770 * Return:
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100771 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
772 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 **/
Alan Sterne5b3cd42006-08-21 15:53:25 -0400774static int scsi_add_lun(struct scsi_device *sdev, unsigned char *inq_result,
Matthew Wilcox3e082a92006-09-28 15:19:20 -0600775 int *bflags, int async)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
James Bottomley6f4267e2008-08-22 16:53:31 -0500777 int ret;
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 /*
780 * XXX do not save the inquiry, since it can change underneath us,
781 * save just vendor/model/rev.
782 *
783 * Rather than save it and have an ioctl that retrieves the saved
784 * value, have an ioctl that executes the same INQUIRY code used
785 * in scsi_probe_lun, let user level programs doing INQUIRY
786 * scanning run at their own risk, or supply a user level program
787 * that can correctly scan.
788 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Alan Stern09123d22006-11-10 12:27:57 -0800790 /*
791 * Copy at least 36 bytes of INQUIRY data, so that we don't
792 * dereference unallocated memory when accessing the Vendor,
793 * Product, and Revision strings. Badly behaved devices may set
794 * the INQUIRY Additional Length byte to a small value, indicating
795 * these strings are invalid, but often they contain plausible data
796 * nonetheless. It doesn't matter if the device sent < 36 bytes
797 * total, since scsi_probe_lun() initializes inq_result with 0s.
798 */
799 sdev->inquiry = kmemdup(inq_result,
800 max_t(size_t, sdev->inquiry_len, 36),
801 GFP_ATOMIC);
802 if (sdev->inquiry == NULL)
803 return SCSI_SCAN_NO_RESPONSE;
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 sdev->vendor = (char *) (sdev->inquiry + 8);
806 sdev->model = (char *) (sdev->inquiry + 16);
807 sdev->rev = (char *) (sdev->inquiry + 32);
808
James Bottomley14216562012-07-25 23:55:55 +0400809 if (strncmp(sdev->vendor, "ATA ", 8) == 0) {
810 /*
811 * sata emulation layer device. This is a hack to work around
812 * the SATL power management specifications which state that
813 * when the SATL detects the device has gone into standby
814 * mode, it shall respond with NOT READY.
815 */
816 sdev->allow_restart = 1;
817 }
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (*bflags & BLIST_ISROM) {
Matthew Wilcox6d877682007-07-11 12:54:55 -0600820 sdev->type = TYPE_ROM;
821 sdev->removable = 1;
822 } else {
823 sdev->type = (inq_result[0] & 0x1f);
824 sdev->removable = (inq_result[1] & 0x80) >> 7;
Subhash Jadavani45341ca2014-09-25 15:32:19 +0300825
826 /*
827 * some devices may respond with wrong type for
828 * well-known logical units. Force well-known type
829 * to enumerate them correctly.
830 */
831 if (scsi_is_wlun(sdev->lun) && sdev->type != TYPE_WLUN) {
832 sdev_printk(KERN_WARNING, sdev,
833 "%s: correcting incorrect peripheral device type 0x%x for W-LUN 0x%16xhN\n",
834 __func__, sdev->type, (unsigned int)sdev->lun);
835 sdev->type = TYPE_WLUN;
836 }
837
Matthew Wilcox6d877682007-07-11 12:54:55 -0600838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Matthew Wilcox6d877682007-07-11 12:54:55 -0600840 if (sdev->type == TYPE_RBC || sdev->type == TYPE_ROM) {
841 /* RBC and MMC devices can return SCSI-3 compliance and yet
842 * still not support REPORT LUNS, so make them act as
843 * BLIST_NOREPORTLUN unless BLIST_REPORTLUN2 is
844 * specifically set */
845 if ((*bflags & BLIST_REPORTLUN2) == 0)
846 *bflags |= BLIST_NOREPORTLUN;
847 }
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 /*
850 * For a peripheral qualifier (PQ) value of 1 (001b), the SCSI
851 * spec says: The device server is capable of supporting the
852 * specified peripheral device type on this logical unit. However,
853 * the physical device is not currently connected to this logical
854 * unit.
855 *
856 * The above is vague, as it implies that we could treat 001 and
857 * 011 the same. Stay compatible with previous code, and create a
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100858 * scsi_device for a PQ of 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 *
860 * Don't set the device offline here; rather let the upper
861 * level drivers eval the PQ to decide whether they should
862 * attach. So remove ((inq_result[0] >> 5) & 7) == 1 check.
863 */
864
865 sdev->inq_periph_qual = (inq_result[0] >> 5) & 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 sdev->lockable = sdev->removable;
867 sdev->soft_reset = (inq_result[7] & 1) && ((inq_result[3] & 7) == 2);
868
Matthew Wilcox6d877682007-07-11 12:54:55 -0600869 if (sdev->scsi_level >= SCSI_3 ||
870 (sdev->inquiry_len > 56 && inq_result[56] & 0x04))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 sdev->ppr = 1;
872 if (inq_result[7] & 0x60)
873 sdev->wdtr = 1;
874 if (inq_result[7] & 0x10)
875 sdev->sdtr = 1;
876
James Bottomley19ac0db2006-08-06 18:15:22 -0500877 sdev_printk(KERN_NOTICE, sdev, "%s %.8s %.16s %.4s PQ: %d "
Matthew Wilcox4ff36712006-07-04 12:15:20 -0600878 "ANSI: %d%s\n", scsi_device_type(sdev->type),
879 sdev->vendor, sdev->model, sdev->rev,
880 sdev->inq_periph_qual, inq_result[2] & 0x07,
881 (inq_result[3] & 0x0f) == 1 ? " CCS" : "");
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if ((sdev->scsi_level >= SCSI_2) && (inq_result[7] & 2) &&
Christoph Hellwigc8b09f62014-11-03 20:15:14 +0100884 !(*bflags & BLIST_NOTQ)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 sdev->tagged_supported = 1;
Christoph Hellwigc8b09f62014-11-03 20:15:14 +0100886 sdev->simple_tags = 1;
887 }
Matthew Wilcox6d877682007-07-11 12:54:55 -0600888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 /*
890 * Some devices (Texel CD ROM drives) have handshaking problems
891 * when used with the Seagate controllers. borken is initialized
892 * to 1, and then set it to 0 here.
893 */
894 if ((*bflags & BLIST_BORKEN) == 0)
895 sdev->borken = 0;
896
Matthew Wilcox6d877682007-07-11 12:54:55 -0600897 if (*bflags & BLIST_NO_ULD_ATTACH)
898 sdev->no_uld_attach = 1;
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 /*
901 * Apparently some really broken devices (contrary to the SCSI
902 * standards) need to be selected without asserting ATN
903 */
904 if (*bflags & BLIST_SELECT_NO_ATN)
905 sdev->select_no_atn = 1;
906
907 /*
James Bottomley4d7db042006-03-31 20:07:45 -0600908 * Maximum 512 sector transfer length
909 * broken RA4x00 Compaq Disk Array
910 */
911 if (*bflags & BLIST_MAX_512)
Martin K. Petersen086fa5f2010-02-26 00:20:38 -0500912 blk_queue_max_hw_sectors(sdev->request_queue, 512);
James Bottomley4d7db042006-03-31 20:07:45 -0600913
914 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 * Some devices may not want to have a start command automatically
916 * issued when a device is added.
917 */
918 if (*bflags & BLIST_NOSTARTONADD)
919 sdev->no_start_on_add = 1;
920
921 if (*bflags & BLIST_SINGLELUN)
Tony Battersby25d7c362007-11-12 10:00:44 -0500922 scsi_target(sdev)->single_lun = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 sdev->use_10_for_rw = 1;
925
926 if (*bflags & BLIST_MS_SKIP_PAGE_08)
927 sdev->skip_ms_page_8 = 1;
928
929 if (*bflags & BLIST_MS_SKIP_PAGE_3F)
930 sdev->skip_ms_page_3f = 1;
931
932 if (*bflags & BLIST_USE_10_BYTE_MS)
933 sdev->use_10_for_ms = 1;
934
Janusz Dziemidowicz02134362014-07-24 15:48:46 +0200935 /* some devices don't like REPORT SUPPORTED OPERATION CODES
936 * and will simply timeout causing sd_mod init to take a very
937 * very long time */
938 if (*bflags & BLIST_NO_RSOC)
939 sdev->no_report_opcodes = 1;
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 /* set the device running here so that slave configure
942 * may do I/O */
James Bottomley6f4267e2008-08-22 16:53:31 -0500943 ret = scsi_device_set_state(sdev, SDEV_RUNNING);
944 if (ret) {
945 ret = scsi_device_set_state(sdev, SDEV_BLOCK);
946
947 if (ret) {
948 sdev_printk(KERN_ERR, sdev,
949 "in wrong state %s to complete scan\n",
950 scsi_device_state_name(sdev->sdev_state));
951 return SCSI_SCAN_NO_RESPONSE;
952 }
953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 if (*bflags & BLIST_MS_192_BYTES_FOR_3F)
956 sdev->use_192_bytes_for_3f = 1;
957
958 if (*bflags & BLIST_NOT_LOCKABLE)
959 sdev->lockable = 0;
960
961 if (*bflags & BLIST_RETRY_HWERROR)
962 sdev->retry_hwerror = 1;
963
Martin K. Petersend974e422012-08-28 14:29:35 -0400964 if (*bflags & BLIST_NO_DIF)
965 sdev->no_dif = 1;
966
Martin K. Petersen0816c922013-05-10 10:36:04 -0400967 sdev->eh_timeout = SCSI_DEFAULT_EH_TIMEOUT;
968
Martin K. Petersenc1d40a52014-07-15 12:49:17 -0400969 if (*bflags & BLIST_TRY_VPD_PAGES)
970 sdev->try_vpd_pages = 1;
971 else if (*bflags & BLIST_SKIP_VPD_PAGES)
Martin K. Petersen56f2a802013-04-24 21:19:47 -0400972 sdev->skip_vpd_pages = 1;
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 transport_configure_device(&sdev->sdev_gendev);
975
Christoph Hellwig93805092006-02-17 12:11:29 +0100976 if (sdev->host->hostt->slave_configure) {
James Bottomley6f4267e2008-08-22 16:53:31 -0500977 ret = sdev->host->hostt->slave_configure(sdev);
Christoph Hellwig93805092006-02-17 12:11:29 +0100978 if (ret) {
979 /*
980 * if LLDD reports slave not present, don't clutter
981 * console with alloc failure messages
982 */
983 if (ret != -ENXIO) {
984 sdev_printk(KERN_ERR, sdev,
985 "failed to configure device\n");
986 }
987 return SCSI_SCAN_NO_RESPONSE;
988 }
989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Hannes Reineckeb3ae8782014-03-15 09:51:49 +0100991 if (sdev->scsi_level >= SCSI_3)
992 scsi_attach_vpd(sdev);
993
Vasu Dev4a840672009-10-22 15:46:33 -0700994 sdev->max_queue_depth = sdev->queue_depth;
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 /*
997 * Ok, the device is now all set up, we can
998 * register it and tell the rest of the kernel
999 * about it.
1000 */
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001001 if (!async && scsi_sysfs_add_sdev(sdev) != 0)
Alan Sternb24b1032005-07-27 11:43:46 -07001002 return SCSI_SCAN_NO_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 return SCSI_SCAN_LUN_PRESENT;
1005}
1006
akpm@osdl.orgc5f2e642006-04-15 00:30:24 -07001007#ifdef CONFIG_SCSI_LOGGING
Kurt Garloff6c7154c2006-04-03 15:18:35 +02001008/**
Rob Landleyeb448202007-11-03 13:30:39 -05001009 * scsi_inq_str - print INQUIRY data from min to max index, strip trailing whitespace
Kurt Garloff6c7154c2006-04-03 15:18:35 +02001010 * @buf: Output buffer with at least end-first+1 bytes of space
1011 * @inq: Inquiry buffer (input)
1012 * @first: Offset of string into inq
1013 * @end: Index after last character in inq
1014 */
akpm@osdl.orgc5f2e642006-04-15 00:30:24 -07001015static unsigned char *scsi_inq_str(unsigned char *buf, unsigned char *inq,
Kurt Garloff6c7154c2006-04-03 15:18:35 +02001016 unsigned first, unsigned end)
1017{
1018 unsigned term = 0, idx;
akpm@osdl.orgc5f2e642006-04-15 00:30:24 -07001019
1020 for (idx = 0; idx + first < end && idx + first < inq[4] + 5; idx++) {
1021 if (inq[idx+first] > ' ') {
Kurt Garloff6c7154c2006-04-03 15:18:35 +02001022 buf[idx] = inq[idx+first];
1023 term = idx+1;
1024 } else {
1025 buf[idx] = ' ';
1026 }
1027 }
1028 buf[term] = 0;
1029 return buf;
1030}
akpm@osdl.orgc5f2e642006-04-15 00:30:24 -07001031#endif
James Bottomley6f3a2022005-09-22 20:33:28 -05001032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033/**
1034 * scsi_probe_and_add_lun - probe a LUN, if a LUN is found add it
1035 * @starget: pointer to target device structure
1036 * @lun: LUN of target device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 * @bflagsp: store bflags here if not NULL
Rob Landleyeb448202007-11-03 13:30:39 -05001038 * @sdevp: probe the LUN corresponding to this scsi_device
1039 * @rescan: if nonzero skip some code only needed on first scan
1040 * @hostdata: passed to scsi_alloc_sdev()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 *
1042 * Description:
1043 * Call scsi_probe_lun, if a LUN with an attached device is found,
1044 * allocate and set it up by calling scsi_add_lun.
1045 *
1046 * Return:
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001047 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is
1049 * attached at the LUN
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001050 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 **/
1052static int scsi_probe_and_add_lun(struct scsi_target *starget,
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001053 u64 lun, int *bflagsp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 struct scsi_device **sdevp, int rescan,
1055 void *hostdata)
1056{
1057 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 unsigned char *result;
James Bottomley39216032005-06-15 18:48:29 -05001059 int bflags, res = SCSI_SCAN_NO_RESPONSE, result_len = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
1061
1062 /*
1063 * The rescan flag is used as an optimization, the first scan of a
1064 * host adapter calls into here with rescan == 0.
1065 */
James Bottomley6f3a2022005-09-22 20:33:28 -05001066 sdev = scsi_device_lookup_by_target(starget, lun);
1067 if (sdev) {
James Bottomley0f1d87a2008-08-22 16:43:59 -05001068 if (rescan || !scsi_device_created(sdev)) {
Hannes Reinecke91921e02014-06-25 16:39:59 +02001069 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 "scsi scan: device exists on %s\n",
Kay Sievers71610f52008-12-03 22:41:36 +01001071 dev_name(&sdev->sdev_gendev)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 if (sdevp)
1073 *sdevp = sdev;
1074 else
1075 scsi_device_put(sdev);
1076
1077 if (bflagsp)
1078 *bflagsp = scsi_get_device_flags(sdev,
1079 sdev->vendor,
1080 sdev->model);
1081 return SCSI_SCAN_LUN_PRESENT;
1082 }
James Bottomley6f3a2022005-09-22 20:33:28 -05001083 scsi_device_put(sdev);
1084 } else
1085 sdev = scsi_alloc_sdev(starget, lun, hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 if (!sdev)
1087 goto out;
James Bottomley39216032005-06-15 18:48:29 -05001088
1089 result = kmalloc(result_len, GFP_ATOMIC |
Al Virobc861202005-04-24 12:28:34 -07001090 ((shost->unchecked_isa_dma) ? __GFP_DMA : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 if (!result)
James Bottomley39216032005-06-15 18:48:29 -05001092 goto out_free_sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
James Bottomley39216032005-06-15 18:48:29 -05001094 if (scsi_probe_lun(sdev, result, result_len, &bflags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 goto out_free_result;
1096
Kurt Garloff4186ab12006-04-03 15:16:48 +02001097 if (bflagsp)
1098 *bflagsp = bflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 /*
1100 * result contains valid SCSI INQUIRY data.
1101 */
Kurt Garloff13f7e5a2006-04-03 15:20:08 +02001102 if (((result[0] >> 5) == 3) && !(bflags & BLIST_ATTACH_PQ3)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 /*
1104 * For a Peripheral qualifier 3 (011b), the SCSI
1105 * spec says: The device server is not capable of
1106 * supporting a physical device on this logical
1107 * unit.
1108 *
1109 * For disks, this implies that there is no
1110 * logical disk configured at sdev->lun, but there
1111 * is a target id responding.
1112 */
Kurt Garloff6c7154c2006-04-03 15:18:35 +02001113 SCSI_LOG_SCAN_BUS(2, sdev_printk(KERN_INFO, sdev, "scsi scan:"
1114 " peripheral qualifier of 3, device not"
1115 " added\n"))
1116 if (lun == 0) {
akpm@osdl.orgc5f2e642006-04-15 00:30:24 -07001117 SCSI_LOG_SCAN_BUS(1, {
1118 unsigned char vend[9];
1119 unsigned char mod[17];
1120
1121 sdev_printk(KERN_INFO, sdev,
Kurt Garloff6c7154c2006-04-03 15:18:35 +02001122 "scsi scan: consider passing scsi_mod."
Kurt Garloff3424a652007-01-09 02:28:54 +01001123 "dev_flags=%s:%s:0x240 or 0x1000240\n",
Kurt Garloff6c7154c2006-04-03 15:18:35 +02001124 scsi_inq_str(vend, result, 8, 16),
akpm@osdl.orgc5f2e642006-04-15 00:30:24 -07001125 scsi_inq_str(mod, result, 16, 32));
1126 });
James Bottomley643eb2d2008-03-22 22:42:27 -05001127
Kurt Garloff6c7154c2006-04-03 15:18:35 +02001128 }
James Bottomley643eb2d2008-03-22 22:42:27 -05001129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 res = SCSI_SCAN_TARGET_PRESENT;
1131 goto out_free_result;
1132 }
1133
Alan Stern1bfc5d92006-02-09 15:26:18 -05001134 /*
dave wysochanski84961f22006-08-09 14:56:32 -04001135 * Some targets may set slight variations of PQ and PDT to signal
1136 * that no LUN is present, so don't add sdev in these cases.
1137 * Two specific examples are:
1138 * 1) NetApp targets: return PQ=1, PDT=0x1f
1139 * 2) USB UFI: returns PDT=0x1f, with the PQ bits being "reserved"
1140 * in the UFI 1.0 spec (we cannot rely on reserved bits).
1141 *
1142 * References:
1143 * 1) SCSI SPC-3, pp. 145-146
1144 * PQ=1: "A peripheral device having the specified peripheral
1145 * device type is not connected to this logical unit. However, the
1146 * device server is capable of supporting the specified peripheral
1147 * device type on this logical unit."
1148 * PDT=0x1f: "Unknown or no device type"
1149 * 2) USB UFI 1.0, p. 20
1150 * PDT=00h Direct-access device (floppy)
1151 * PDT=1Fh none (no FDD connected to the requested logical unit)
Alan Stern1bfc5d92006-02-09 15:26:18 -05001152 */
dave wysochanski84961f22006-08-09 14:56:32 -04001153 if (((result[0] >> 5) == 1 || starget->pdt_1f_for_no_lun) &&
James Bottomley01b291b2008-08-21 15:14:14 -05001154 (result[0] & 0x1f) == 0x1f &&
1155 !scsi_is_wlun(lun)) {
Hannes Reinecke91921e02014-06-25 16:39:59 +02001156 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
Alan Stern1bfc5d92006-02-09 15:26:18 -05001157 "scsi scan: peripheral device type"
1158 " of 31, no device added\n"));
1159 res = SCSI_SCAN_TARGET_PRESENT;
1160 goto out_free_result;
1161 }
1162
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001163 res = scsi_add_lun(sdev, result, &bflags, shost->async_scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 if (res == SCSI_SCAN_LUN_PRESENT) {
1165 if (bflags & BLIST_KEY) {
1166 sdev->lockable = 0;
James Bottomley39216032005-06-15 18:48:29 -05001167 scsi_unlock_floptical(sdev, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
1170
1171 out_free_result:
1172 kfree(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 out_free_sdev:
1174 if (res == SCSI_SCAN_LUN_PRESENT) {
1175 if (sdevp) {
Alan Sternb70d37b2005-07-26 10:30:40 -04001176 if (scsi_device_get(sdev) == 0) {
1177 *sdevp = sdev;
1178 } else {
1179 __scsi_remove_device(sdev);
1180 res = SCSI_SCAN_NO_RESPONSE;
1181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
James Bottomley6f3a2022005-09-22 20:33:28 -05001183 } else
James Bottomley860dc732009-11-19 17:48:29 -05001184 __scsi_remove_device(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 out:
1186 return res;
1187}
1188
1189/**
1190 * scsi_sequential_lun_scan - sequentially scan a SCSI target
1191 * @starget: pointer to target structure to scan
1192 * @bflags: black/white list flag for LUN 0
Rob Landleyeb448202007-11-03 13:30:39 -05001193 * @scsi_level: Which version of the standard does this device adhere to
1194 * @rescan: passed to scsi_probe_add_lun()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 *
1196 * Description:
1197 * Generally, scan from LUN 1 (LUN 0 is assumed to already have been
1198 * scanned) to some maximum lun until a LUN is found with no device
1199 * attached. Use the bflags to figure out any oddities.
1200 *
1201 * Modifies sdevscan->lun.
1202 **/
1203static void scsi_sequential_lun_scan(struct scsi_target *starget,
Kurt Garloff4186ab12006-04-03 15:16:48 +02001204 int bflags, int scsi_level, int rescan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001206 uint max_dev_lun;
1207 u64 sparse_lun, lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
1209
Hannes Reinecke91921e02014-06-25 16:39:59 +02001210 SCSI_LOG_SCAN_BUS(3, starget_printk(KERN_INFO, starget,
1211 "scsi scan: Sequential scan\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 max_dev_lun = min(max_scsi_luns, shost->max_lun);
1214 /*
1215 * If this device is known to support sparse multiple units,
1216 * override the other settings, and scan all of them. Normally,
1217 * SCSI-3 devices should be scanned via the REPORT LUNS.
1218 */
1219 if (bflags & BLIST_SPARSELUN) {
1220 max_dev_lun = shost->max_lun;
1221 sparse_lun = 1;
1222 } else
1223 sparse_lun = 0;
1224
1225 /*
Mark Knibbsfb0d82f2014-10-09 12:39:40 +01001226 * If less than SCSI_1_CCS, and no special lun scanning, stop
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 * scanning; this matches 2.4 behaviour, but could just be a bug
Mark Knibbsfb0d82f2014-10-09 12:39:40 +01001228 * (to continue scanning a SCSI_1_CCS device).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 *
1230 * This test is broken. We might not have any device on lun0 for
1231 * a sparselun device, and if that's the case then how would we
1232 * know the real scsi_level, eh? It might make sense to just not
1233 * scan any SCSI_1 device for non-0 luns, but that check would best
1234 * go into scsi_alloc_sdev() and just have it return null when asked
1235 * to alloc an sdev for lun > 0 on an already found SCSI_1 device.
1236 *
1237 if ((sdevscan->scsi_level < SCSI_1_CCS) &&
1238 ((bflags & (BLIST_FORCELUN | BLIST_SPARSELUN | BLIST_MAX5LUN))
1239 == 0))
1240 return;
1241 */
1242 /*
1243 * If this device is known to support multiple units, override
1244 * the other settings, and scan all of them.
1245 */
1246 if (bflags & BLIST_FORCELUN)
1247 max_dev_lun = shost->max_lun;
1248 /*
1249 * REGAL CDC-4X: avoid hang after LUN 4
1250 */
1251 if (bflags & BLIST_MAX5LUN)
1252 max_dev_lun = min(5U, max_dev_lun);
1253 /*
1254 * Do not scan SCSI-2 or lower device past LUN 7, unless
1255 * BLIST_LARGELUN.
1256 */
1257 if (scsi_level < SCSI_3 && !(bflags & BLIST_LARGELUN))
1258 max_dev_lun = min(8U, max_dev_lun);
1259
1260 /*
Hannes Reinecke22ffeb42014-06-03 10:58:53 +02001261 * Stop scanning at 255 unless BLIST_SCSI3LUN
1262 */
1263 if (!(bflags & BLIST_SCSI3LUN))
1264 max_dev_lun = min(256U, max_dev_lun);
1265
1266 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 * We have already scanned LUN 0, so start at LUN 1. Keep scanning
1268 * until we reach the max, or no LUN is found and we are not
1269 * sparse_lun.
1270 */
1271 for (lun = 1; lun < max_dev_lun; ++lun)
1272 if ((scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan,
1273 NULL) != SCSI_SCAN_LUN_PRESENT) &&
1274 !sparse_lun)
1275 return;
1276}
1277
1278/**
Randy Dunlap9f6aa572010-05-23 17:02:30 -07001279 * scsilun_to_int - convert a scsi_lun to an int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 * @scsilun: struct scsi_lun to be converted.
1281 *
1282 * Description:
1283 * Convert @scsilun from a struct scsi_lun to a four byte host byte-ordered
1284 * integer, and return the result. The caller must check for
1285 * truncation before using this function.
1286 *
1287 * Notes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 * For a description of the LUN format, post SCSI-3 see the SCSI
1289 * Architecture Model, for SCSI-3 see the SCSI Controller Commands.
1290 *
Hannes Reinecked9e5d612014-06-25 15:27:39 +02001291 * Given a struct scsi_lun of: d2 04 0b 03 00 00 00 00, this function
1292 * returns the integer: 0x0b03d204
1293 *
1294 * This encoding will return a standard integer LUN for LUNs smaller
1295 * than 256, which typically use a single level LUN structure with
1296 * addressing method 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 **/
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001298u64 scsilun_to_int(struct scsi_lun *scsilun)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
1300 int i;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001301 u64 lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 lun = 0;
1304 for (i = 0; i < sizeof(lun); i += 2)
Hannes Reinecked9e5d612014-06-25 15:27:39 +02001305 lun = lun | (((u64)scsilun->scsi_lun[i] << ((i + 1) * 8)) |
1306 ((u64)scsilun->scsi_lun[i + 1] << (i * 8)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return lun;
1308}
Christof Schmitt462b7852007-06-19 10:25:30 +02001309EXPORT_SYMBOL(scsilun_to_int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311/**
Randy Dunlap9f6aa572010-05-23 17:02:30 -07001312 * int_to_scsilun - reverts an int into a scsi_lun
Rob Landleyeb448202007-11-03 13:30:39 -05001313 * @lun: integer to be reverted
James.Smart@Emulex.Com2f4701d2005-07-13 22:05:03 -04001314 * @scsilun: struct scsi_lun to be set.
1315 *
1316 * Description:
1317 * Reverts the functionality of the scsilun_to_int, which packed
1318 * an 8-byte lun value into an int. This routine unpacks the int
1319 * back into the lun value.
James.Smart@Emulex.Com2f4701d2005-07-13 22:05:03 -04001320 *
1321 * Notes:
Hannes Reinecked9e5d612014-06-25 15:27:39 +02001322 * Given an integer : 0x0b03d204, this function returns a
1323 * struct scsi_lun of: d2 04 0b 03 00 00 00 00
James.Smart@Emulex.Com2f4701d2005-07-13 22:05:03 -04001324 *
1325 **/
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001326void int_to_scsilun(u64 lun, struct scsi_lun *scsilun)
James.Smart@Emulex.Com2f4701d2005-07-13 22:05:03 -04001327{
1328 int i;
1329
1330 memset(scsilun->scsi_lun, 0, sizeof(scsilun->scsi_lun));
1331
1332 for (i = 0; i < sizeof(lun); i += 2) {
1333 scsilun->scsi_lun[i] = (lun >> 8) & 0xFF;
1334 scsilun->scsi_lun[i+1] = lun & 0xFF;
1335 lun = lun >> 16;
1336 }
1337}
1338EXPORT_SYMBOL(int_to_scsilun);
1339
1340/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 * scsi_report_lun_scan - Scan using SCSI REPORT LUN results
Rob Landleyeb448202007-11-03 13:30:39 -05001342 * @starget: which target
1343 * @bflags: Zero or a mix of BLIST_NOLUN, BLIST_REPORTLUN2, or BLIST_NOREPORTLUN
1344 * @rescan: nonzero if we can skip code only needed on first scan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 *
1346 * Description:
Rob Landleyeb448202007-11-03 13:30:39 -05001347 * Fast scanning for modern (SCSI-3) devices by sending a REPORT LUN command.
1348 * Scan the resulting list of LUNs by calling scsi_probe_and_add_lun.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 *
Rob Landleyeb448202007-11-03 13:30:39 -05001350 * If BLINK_REPORTLUN2 is set, scan a target that supports more than 8
1351 * LUNs even if it's older than SCSI-3.
1352 * If BLIST_NOREPORTLUN is set, return 1 always.
1353 * If BLIST_NOLUN is set, return 0 always.
Alan Stern09b6b512012-01-10 13:43:30 -05001354 * If starget->no_report_luns is set, return 1 always.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 *
1356 * Return:
1357 * 0: scan completed (or no memory, so further scanning is futile)
Rob Landleyeb448202007-11-03 13:30:39 -05001358 * 1: could not scan with REPORT LUN
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 **/
James Bottomley6f3a2022005-09-22 20:33:28 -05001360static int scsi_report_lun_scan(struct scsi_target *starget, int bflags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 int rescan)
1362{
1363 char devname[64];
1364 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
1365 unsigned int length;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001366 u64 lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 unsigned int num_luns;
1368 unsigned int retries;
James Bottomley39216032005-06-15 18:48:29 -05001369 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 struct scsi_lun *lunp, *lun_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 struct scsi_sense_hdr sshdr;
James Bottomley6f3a2022005-09-22 20:33:28 -05001372 struct scsi_device *sdev;
1373 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
Alan Stern2ef89192005-11-08 15:51:55 -05001374 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 /*
1377 * Only support SCSI-3 and up devices if BLIST_NOREPORTLUN is not set.
1378 * Also allow SCSI-2 if BLIST_REPORTLUN2 is set and host adapter does
1379 * support more than 8 LUNs.
Alan Stern09b6b512012-01-10 13:43:30 -05001380 * Don't attempt if the target doesn't support REPORT LUNS.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 */
James Bottomley4d7db042006-03-31 20:07:45 -06001382 if (bflags & BLIST_NOREPORTLUN)
1383 return 1;
1384 if (starget->scsi_level < SCSI_2 &&
1385 starget->scsi_level != SCSI_UNKNOWN)
1386 return 1;
1387 if (starget->scsi_level < SCSI_3 &&
1388 (!(bflags & BLIST_REPORTLUN2) || shost->max_lun <= 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 return 1;
1390 if (bflags & BLIST_NOLUN)
1391 return 0;
Alan Stern09b6b512012-01-10 13:43:30 -05001392 if (starget->no_report_luns)
1393 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
James Bottomley6f3a2022005-09-22 20:33:28 -05001395 if (!(sdev = scsi_device_lookup_by_target(starget, 0))) {
1396 sdev = scsi_alloc_sdev(starget, 0, NULL);
1397 if (!sdev)
1398 return 0;
Alan Stern75f8ee82010-02-12 12:13:31 -05001399 if (scsi_device_get(sdev)) {
1400 __scsi_remove_device(sdev);
James Bottomley6f3a2022005-09-22 20:33:28 -05001401 return 0;
Alan Stern75f8ee82010-02-12 12:13:31 -05001402 }
James Bottomley6f3a2022005-09-22 20:33:28 -05001403 }
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 sprintf(devname, "host %d channel %d id %d",
James Bottomley6f3a2022005-09-22 20:33:28 -05001406 shost->host_no, sdev->channel, sdev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 /*
1409 * Allocate enough to hold the header (the same size as one scsi_lun)
1410 * plus the max number of luns we are requesting.
1411 *
1412 * Reallocating and trying again (with the exact amount we need)
1413 * would be nice, but then we need to somehow limit the size
1414 * allocated based on the available memory and the limits of
1415 * kmalloc - we don't want a kmalloc() failure of a huge value to
1416 * prevent us from finding any LUNs on this target.
1417 */
1418 length = (max_scsi_report_luns + 1) * sizeof(struct scsi_lun);
Rob Everseb9eea02014-12-16 11:01:18 -05001419 lun_data = kmalloc(length, GFP_KERNEL |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 (sdev->host->unchecked_isa_dma ? __GFP_DMA : 0));
James Bottomley6f3a2022005-09-22 20:33:28 -05001421 if (!lun_data) {
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001422 printk(ALLOC_FAILURE_MSG, __func__);
James Bottomley39216032005-06-15 18:48:29 -05001423 goto out;
James Bottomley6f3a2022005-09-22 20:33:28 -05001424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426 scsi_cmd[0] = REPORT_LUNS;
1427
1428 /*
1429 * bytes 1 - 5: reserved, set to zero.
1430 */
1431 memset(&scsi_cmd[1], 0, 5);
1432
1433 /*
1434 * bytes 6 - 9: length of the command.
1435 */
Rob Evers2a904e52014-12-16 11:01:19 -05001436 put_unaligned_be32(length, &scsi_cmd[6]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 scsi_cmd[10] = 0; /* reserved */
1439 scsi_cmd[11] = 0; /* control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 /*
1442 * We can get a UNIT ATTENTION, for example a power on/reset, so
1443 * retry a few times (like sd.c does for TEST UNIT READY).
1444 * Experience shows some combinations of adapter/devices get at
1445 * least two power on/resets.
1446 *
1447 * Illegal requests (for devices that do not support REPORT LUNS)
1448 * should come through as a check condition, and will not generate
1449 * a retry.
1450 */
1451 for (retries = 0; retries < 3; retries++) {
Hannes Reinecke91921e02014-06-25 16:39:59 +02001452 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1453 "scsi scan: Sending REPORT LUNS to (try %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 retries));
James Bottomley39216032005-06-15 18:48:29 -05001455
James Bottomley39216032005-06-15 18:48:29 -05001456 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001457 lun_data, length, &sshdr,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +09001458 SCSI_TIMEOUT + 4 * HZ, 3, NULL);
James Bottomley39216032005-06-15 18:48:29 -05001459
Hannes Reinecke91921e02014-06-25 16:39:59 +02001460 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1461 "scsi scan: REPORT LUNS"
1462 " %s (try %d) result 0x%x\n",
1463 result ? "failed" : "successful",
1464 retries, result));
James Bottomley39216032005-06-15 18:48:29 -05001465 if (result == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 break;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001467 else if (scsi_sense_valid(&sshdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 if (sshdr.sense_key != UNIT_ATTENTION)
1469 break;
1470 }
1471 }
1472
James Bottomley39216032005-06-15 18:48:29 -05001473 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 /*
1475 * The device probably does not support a REPORT LUN command
1476 */
Alan Stern2ef89192005-11-08 15:51:55 -05001477 ret = 1;
1478 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 /*
1482 * Get the length from the first four bytes of lun_data.
1483 */
Rob Evers2a904e52014-12-16 11:01:19 -05001484 length = get_unaligned_be32(lun_data->scsi_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 num_luns = (length / sizeof(struct scsi_lun));
1487 if (num_luns > max_scsi_report_luns) {
Hannes Reinecke91921e02014-06-25 16:39:59 +02001488 sdev_printk(KERN_WARNING, sdev,
1489 "Only %d (max_scsi_report_luns)"
1490 " of %d luns reported, try increasing"
1491 " max_scsi_report_luns.\n",
1492 max_scsi_report_luns, num_luns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 num_luns = max_scsi_report_luns;
1494 }
1495
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001496 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1497 "scsi scan: REPORT LUN scan\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 /*
1500 * Scan the luns in lun_data. The entry at offset 0 is really
1501 * the header, so start at 1 and go up to and including num_luns.
1502 */
1503 for (lunp = &lun_data[1]; lunp <= &lun_data[num_luns]; lunp++) {
1504 lun = scsilun_to_int(lunp);
1505
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001506 if (lun > sdev->host->max_lun) {
Hannes Reinecke91921e02014-06-25 16:39:59 +02001507 sdev_printk(KERN_WARNING, sdev,
1508 "lun%llu has a LUN larger than"
1509 " allowed by the host adapter\n", lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 } else {
1511 int res;
1512
1513 res = scsi_probe_and_add_lun(starget,
1514 lun, NULL, NULL, rescan, NULL);
1515 if (res == SCSI_SCAN_NO_RESPONSE) {
1516 /*
1517 * Got some results, but now none, abort.
1518 */
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001519 sdev_printk(KERN_ERR, sdev,
1520 "Unexpected response"
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001521 " from lun %llu while scanning, scan"
1522 " aborted\n", (unsigned long long)lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 break;
1524 }
1525 }
1526 }
1527
Alan Stern2ef89192005-11-08 15:51:55 -05001528 out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 kfree(lun_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 out:
James Bottomley6f3a2022005-09-22 20:33:28 -05001531 scsi_device_put(sdev);
James Bottomley0f1d87a2008-08-22 16:43:59 -05001532 if (scsi_device_created(sdev))
James Bottomley6f3a2022005-09-22 20:33:28 -05001533 /*
1534 * the sdev we used didn't appear in the report luns scan
1535 */
James Bottomley860dc732009-11-19 17:48:29 -05001536 __scsi_remove_device(sdev);
Alan Stern2ef89192005-11-08 15:51:55 -05001537 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538}
1539
1540struct scsi_device *__scsi_add_device(struct Scsi_Host *shost, uint channel,
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001541 uint id, u64 lun, void *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
Matthew Wilcoxa97a83a2006-02-05 08:01:33 -07001543 struct scsi_device *sdev = ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 struct device *parent = &shost->shost_gendev;
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001545 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Matthew Wilcox938e2ac2007-01-15 18:07:09 -07001547 if (strncmp(scsi_scan_type, "none", 4) == 0)
1548 return ERR_PTR(-ENODEV);
1549
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001550 starget = scsi_alloc_target(parent, channel, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 if (!starget)
1552 return ERR_PTR(-ENOMEM);
Alan Sternbc4f2402010-06-17 10:41:42 -04001553 scsi_autopm_get_target(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Arjan van de Ven0b950672006-01-11 13:16:10 +01001555 mutex_lock(&shost->scan_mutex);
Matthew Wilcox6b7f1232007-06-26 15:18:51 -06001556 if (!shost->async_scan)
1557 scsi_complete_async_scans();
1558
Alan Sternbc4f2402010-06-17 10:41:42 -04001559 if (scsi_host_scan_allowed(shost) && scsi_autopm_get_host(shost) == 0) {
Matthew Wilcoxa97a83a2006-02-05 08:01:33 -07001560 scsi_probe_and_add_lun(starget, lun, NULL, &sdev, 1, hostdata);
Alan Sternbc4f2402010-06-17 10:41:42 -04001561 scsi_autopm_put_host(shost);
1562 }
Arjan van de Ven0b950672006-01-11 13:16:10 +01001563 mutex_unlock(&shost->scan_mutex);
Alan Sternbc4f2402010-06-17 10:41:42 -04001564 scsi_autopm_put_target(starget);
James Bottomleye63ed0d2014-01-21 07:00:50 -08001565 /*
1566 * paired with scsi_alloc_target(). Target will be destroyed unless
1567 * scsi_probe_and_add_lun made an underlying device visible
1568 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 scsi_target_reap(starget);
1570 put_device(&starget->dev);
1571
1572 return sdev;
1573}
1574EXPORT_SYMBOL(__scsi_add_device);
1575
James Bottomley146f7262005-09-10 12:44:09 -05001576int scsi_add_device(struct Scsi_Host *host, uint channel,
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001577 uint target, u64 lun)
James Bottomley146f7262005-09-10 12:44:09 -05001578{
1579 struct scsi_device *sdev =
1580 __scsi_add_device(host, channel, target, lun, NULL);
1581 if (IS_ERR(sdev))
1582 return PTR_ERR(sdev);
1583
1584 scsi_device_put(sdev);
1585 return 0;
1586}
1587EXPORT_SYMBOL(scsi_add_device);
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589void scsi_rescan_device(struct device *dev)
1590{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 if (!dev->driver)
1592 return;
1593
Christoph Hellwig3af6b352014-11-12 18:34:51 +01001594 if (try_module_get(dev->driver->owner)) {
1595 struct scsi_driver *drv = to_scsi_driver(dev->driver);
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 if (drv->rescan)
1598 drv->rescan(dev);
Christoph Hellwig3af6b352014-11-12 18:34:51 +01001599 module_put(dev->driver->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 }
1601}
1602EXPORT_SYMBOL(scsi_rescan_device);
1603
Alan Sterne517d312005-07-26 10:18:45 -04001604static void __scsi_scan_target(struct device *parent, unsigned int channel,
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001605 unsigned int id, u64 lun, int rescan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
1607 struct Scsi_Host *shost = dev_to_shost(parent);
1608 int bflags = 0;
1609 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 struct scsi_target *starget;
1611
1612 if (shost->this_id == id)
1613 /*
1614 * Don't scan the host adapter
1615 */
1616 return;
1617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 starget = scsi_alloc_target(parent, channel, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 if (!starget)
1620 return;
Alan Sternbc4f2402010-06-17 10:41:42 -04001621 scsi_autopm_get_target(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 if (lun != SCAN_WILD_CARD) {
1624 /*
1625 * Scan for a specific host/chan/id/lun.
1626 */
1627 scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan, NULL);
1628 goto out_reap;
1629 }
1630
1631 /*
1632 * Scan LUN 0, if there is some response, scan further. Ideally, we
1633 * would not configure LUN 0 until all LUNs are scanned.
1634 */
James Bottomley6f3a2022005-09-22 20:33:28 -05001635 res = scsi_probe_and_add_lun(starget, 0, &bflags, NULL, rescan, NULL);
1636 if (res == SCSI_SCAN_LUN_PRESENT || res == SCSI_SCAN_TARGET_PRESENT) {
1637 if (scsi_report_lun_scan(starget, bflags, rescan) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 /*
1639 * The REPORT LUN did not scan the target,
1640 * do a sequential scan.
1641 */
1642 scsi_sequential_lun_scan(starget, bflags,
Kurt Garloff4186ab12006-04-03 15:16:48 +02001643 starget->scsi_level, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646 out_reap:
Alan Sternbc4f2402010-06-17 10:41:42 -04001647 scsi_autopm_put_target(starget);
James Bottomleye63ed0d2014-01-21 07:00:50 -08001648 /*
1649 * paired with scsi_alloc_target(): determine if the target has
1650 * any children at all and if not, nuke it
1651 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 scsi_target_reap(starget);
1653
1654 put_device(&starget->dev);
1655}
Alan Sterne517d312005-07-26 10:18:45 -04001656
1657/**
Randy Dunlape59e4a02008-02-29 22:02:50 -08001658 * scsi_scan_target - scan a target id, possibly including all LUNs on the target.
Alan Sterne517d312005-07-26 10:18:45 -04001659 * @parent: host to scan
1660 * @channel: channel to scan
1661 * @id: target id to scan
1662 * @lun: Specific LUN to scan or SCAN_WILD_CARD
1663 * @rescan: passed to LUN scanning routines
1664 *
1665 * Description:
1666 * Scan the target id on @parent, @channel, and @id. Scan at least LUN 0,
1667 * and possibly all LUNs on the target id.
1668 *
1669 * First try a REPORT LUN scan, if that does not scan the target, do a
1670 * sequential scan of LUNs on the target id.
1671 **/
1672void scsi_scan_target(struct device *parent, unsigned int channel,
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001673 unsigned int id, u64 lun, int rescan)
Alan Sterne517d312005-07-26 10:18:45 -04001674{
1675 struct Scsi_Host *shost = dev_to_shost(parent);
1676
Matthew Wilcox93b45af2006-11-22 13:24:53 -07001677 if (strncmp(scsi_scan_type, "none", 4) == 0)
1678 return;
1679
Matthew Wilcox6b7f1232007-06-26 15:18:51 -06001680 mutex_lock(&shost->scan_mutex);
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001681 if (!shost->async_scan)
1682 scsi_complete_async_scans();
1683
Alan Sternbc4f2402010-06-17 10:41:42 -04001684 if (scsi_host_scan_allowed(shost) && scsi_autopm_get_host(shost) == 0) {
Alan Sterne517d312005-07-26 10:18:45 -04001685 __scsi_scan_target(parent, channel, id, lun, rescan);
Alan Sternbc4f2402010-06-17 10:41:42 -04001686 scsi_autopm_put_host(shost);
1687 }
Arjan van de Ven0b950672006-01-11 13:16:10 +01001688 mutex_unlock(&shost->scan_mutex);
Alan Sterne517d312005-07-26 10:18:45 -04001689}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690EXPORT_SYMBOL(scsi_scan_target);
1691
1692static void scsi_scan_channel(struct Scsi_Host *shost, unsigned int channel,
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001693 unsigned int id, u64 lun, int rescan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694{
1695 uint order_id;
1696
1697 if (id == SCAN_WILD_CARD)
1698 for (id = 0; id < shost->max_id; ++id) {
1699 /*
1700 * XXX adapter drivers when possible (FCP, iSCSI)
1701 * could modify max_id to match the current max,
1702 * not the absolute max.
1703 *
1704 * XXX add a shost id iterator, so for example,
1705 * the FC ID can be the same as a target id
1706 * without a huge overhead of sparse id's.
1707 */
1708 if (shost->reverse_ordering)
1709 /*
1710 * Scan from high to low id.
1711 */
1712 order_id = shost->max_id - id - 1;
1713 else
1714 order_id = id;
Alan Sterne517d312005-07-26 10:18:45 -04001715 __scsi_scan_target(&shost->shost_gendev, channel,
1716 order_id, lun, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 }
1718 else
Alan Sterne517d312005-07-26 10:18:45 -04001719 __scsi_scan_target(&shost->shost_gendev, channel,
1720 id, lun, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721}
1722
1723int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel,
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001724 unsigned int id, u64 lun, int rescan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001726 SCSI_LOG_SCAN_BUS(3, shost_printk (KERN_INFO, shost,
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001727 "%s: <%u:%u:%llu>\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001728 __func__, channel, id, lun));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
1730 if (((channel != SCAN_WILD_CARD) && (channel > shost->max_channel)) ||
Amit Arora091686d2006-05-19 16:14:50 -07001731 ((id != SCAN_WILD_CARD) && (id >= shost->max_id)) ||
Mark Knibbs605c6db2014-10-09 12:39:48 +01001732 ((lun != SCAN_WILD_CARD) && (lun >= shost->max_lun)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 return -EINVAL;
1734
Arjan van de Ven0b950672006-01-11 13:16:10 +01001735 mutex_lock(&shost->scan_mutex);
Matthew Wilcox6b7f1232007-06-26 15:18:51 -06001736 if (!shost->async_scan)
1737 scsi_complete_async_scans();
1738
Alan Sternbc4f2402010-06-17 10:41:42 -04001739 if (scsi_host_scan_allowed(shost) && scsi_autopm_get_host(shost) == 0) {
Mike Anderson82f29462005-06-16 11:14:33 -07001740 if (channel == SCAN_WILD_CARD)
1741 for (channel = 0; channel <= shost->max_channel;
1742 channel++)
1743 scsi_scan_channel(shost, channel, id, lun,
1744 rescan);
1745 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 scsi_scan_channel(shost, channel, id, lun, rescan);
Alan Sternbc4f2402010-06-17 10:41:42 -04001747 scsi_autopm_put_host(shost);
Mike Anderson82f29462005-06-16 11:14:33 -07001748 }
Arjan van de Ven0b950672006-01-11 13:16:10 +01001749 mutex_unlock(&shost->scan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
1751 return 0;
1752}
1753
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001754static void scsi_sysfs_add_devices(struct Scsi_Host *shost)
1755{
1756 struct scsi_device *sdev;
1757 shost_for_each_device(sdev, shost) {
Dan Williams3b661a92012-06-21 23:47:28 -07001758 /* target removed before the device could be added */
1759 if (sdev->sdev_state == SDEV_DEL)
1760 continue;
Subhash Jadavani693ad5b2014-09-25 15:32:20 +03001761 /* If device is already visible, skip adding it to sysfs */
1762 if (sdev->is_visible)
1763 continue;
Matthew Wilcox6b7f1232007-06-26 15:18:51 -06001764 if (!scsi_host_scan_allowed(shost) ||
1765 scsi_sysfs_add_sdev(sdev) != 0)
James Bottomley860dc732009-11-19 17:48:29 -05001766 __scsi_remove_device(sdev);
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001767 }
1768}
1769
1770/**
1771 * scsi_prep_async_scan - prepare for an async scan
1772 * @shost: the host which will be scanned
1773 * Returns: a cookie to be passed to scsi_finish_async_scan()
1774 *
1775 * Tells the midlayer this host is going to do an asynchronous scan.
1776 * It reserves the host's position in the scanning list and ensures
1777 * that other asynchronous scans started after this one won't affect the
1778 * ordering of the discovered devices.
1779 */
Matthew Wilcox1aa8fab2006-11-22 13:24:54 -07001780static struct async_scan_data *scsi_prep_async_scan(struct Scsi_Host *shost)
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001781{
1782 struct async_scan_data *data;
Matthew Wilcox6b7f1232007-06-26 15:18:51 -06001783 unsigned long flags;
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001784
1785 if (strncmp(scsi_scan_type, "sync", 4) == 0)
1786 return NULL;
1787
1788 if (shost->async_scan) {
Hannes Reinecke91921e02014-06-25 16:39:59 +02001789 shost_printk(KERN_INFO, shost, "%s called twice\n", __func__);
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001790 dump_stack();
1791 return NULL;
1792 }
1793
1794 data = kmalloc(sizeof(*data), GFP_KERNEL);
1795 if (!data)
1796 goto err;
1797 data->shost = scsi_host_get(shost);
1798 if (!data->shost)
1799 goto err;
1800 init_completion(&data->prev_finished);
1801
Matthew Wilcox6b7f1232007-06-26 15:18:51 -06001802 mutex_lock(&shost->scan_mutex);
1803 spin_lock_irqsave(shost->host_lock, flags);
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001804 shost->async_scan = 1;
Matthew Wilcox6b7f1232007-06-26 15:18:51 -06001805 spin_unlock_irqrestore(shost->host_lock, flags);
1806 mutex_unlock(&shost->scan_mutex);
1807
1808 spin_lock(&async_scan_lock);
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001809 if (list_empty(&scanning_hosts))
1810 complete(&data->prev_finished);
1811 list_add_tail(&data->list, &scanning_hosts);
1812 spin_unlock(&async_scan_lock);
1813
1814 return data;
1815
1816 err:
1817 kfree(data);
1818 return NULL;
1819}
1820
1821/**
1822 * scsi_finish_async_scan - asynchronous scan has finished
1823 * @data: cookie returned from earlier call to scsi_prep_async_scan()
1824 *
1825 * All the devices currently attached to this host have been found.
1826 * This function announces all the devices it has found to the rest
1827 * of the system.
1828 */
Matthew Wilcox1aa8fab2006-11-22 13:24:54 -07001829static void scsi_finish_async_scan(struct async_scan_data *data)
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001830{
1831 struct Scsi_Host *shost;
Matthew Wilcox6b7f1232007-06-26 15:18:51 -06001832 unsigned long flags;
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001833
1834 if (!data)
1835 return;
1836
1837 shost = data->shost;
Matthew Wilcox6b7f1232007-06-26 15:18:51 -06001838
1839 mutex_lock(&shost->scan_mutex);
1840
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001841 if (!shost->async_scan) {
Hannes Reinecke91921e02014-06-25 16:39:59 +02001842 shost_printk(KERN_INFO, shost, "%s called twice\n", __func__);
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001843 dump_stack();
Julia Lawall773e82f2008-07-21 09:58:30 +02001844 mutex_unlock(&shost->scan_mutex);
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001845 return;
1846 }
1847
1848 wait_for_completion(&data->prev_finished);
1849
1850 scsi_sysfs_add_devices(shost);
1851
Matthew Wilcox6b7f1232007-06-26 15:18:51 -06001852 spin_lock_irqsave(shost->host_lock, flags);
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001853 shost->async_scan = 0;
Matthew Wilcox6b7f1232007-06-26 15:18:51 -06001854 spin_unlock_irqrestore(shost->host_lock, flags);
1855
1856 mutex_unlock(&shost->scan_mutex);
1857
1858 spin_lock(&async_scan_lock);
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001859 list_del(&data->list);
1860 if (!list_empty(&scanning_hosts)) {
1861 struct async_scan_data *next = list_entry(scanning_hosts.next,
1862 struct async_scan_data, list);
1863 complete(&next->prev_finished);
1864 }
1865 spin_unlock(&async_scan_lock);
1866
Huajun Li267a6ad2012-02-12 19:59:14 +08001867 scsi_autopm_put_host(shost);
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001868 scsi_host_put(shost);
1869 kfree(data);
1870}
1871
Matthew Wilcox1aa8fab2006-11-22 13:24:54 -07001872static void do_scsi_scan_host(struct Scsi_Host *shost)
1873{
1874 if (shost->hostt->scan_finished) {
1875 unsigned long start = jiffies;
1876 if (shost->hostt->scan_start)
1877 shost->hostt->scan_start(shost);
1878
1879 while (!shost->hostt->scan_finished(shost, jiffies - start))
1880 msleep(10);
1881 } else {
1882 scsi_scan_host_selected(shost, SCAN_WILD_CARD, SCAN_WILD_CARD,
1883 SCAN_WILD_CARD, 0);
1884 }
1885}
1886
Dan Williams6cdd5522012-07-09 19:33:35 -07001887static void do_scan_async(void *_data, async_cookie_t c)
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001888{
1889 struct async_scan_data *data = _data;
Alan Sternbc4f2402010-06-17 10:41:42 -04001890 struct Scsi_Host *shost = data->shost;
1891
1892 do_scsi_scan_host(shost);
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001893 scsi_finish_async_scan(data);
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001894}
1895
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896/**
1897 * scsi_scan_host - scan the given adapter
1898 * @shost: adapter to scan
1899 **/
1900void scsi_scan_host(struct Scsi_Host *shost)
1901{
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001902 struct async_scan_data *data;
1903
1904 if (strncmp(scsi_scan_type, "none", 4) == 0)
1905 return;
Alan Sternbc4f2402010-06-17 10:41:42 -04001906 if (scsi_autopm_get_host(shost) < 0)
1907 return;
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001908
1909 data = scsi_prep_async_scan(shost);
1910 if (!data) {
Matthew Wilcox1aa8fab2006-11-22 13:24:54 -07001911 do_scsi_scan_host(shost);
Alan Sternbc4f2402010-06-17 10:41:42 -04001912 scsi_autopm_put_host(shost);
Matthew Wilcox3e082a92006-09-28 15:19:20 -06001913 return;
1914 }
Matthew Wilcox1aa8fab2006-11-22 13:24:54 -07001915
Dan Williams6cdd5522012-07-09 19:33:35 -07001916 /* register with the async subsystem so wait_for_device_probe()
1917 * will flush this work
1918 */
1919 async_schedule(do_scan_async, data);
1920
Huajun Li267a6ad2012-02-12 19:59:14 +08001921 /* scsi_autopm_put_host(shost) is called in scsi_finish_async_scan() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922}
1923EXPORT_SYMBOL(scsi_scan_host);
1924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925void scsi_forget_host(struct Scsi_Host *shost)
1926{
Alan Sterna64358d2005-07-26 10:27:10 -04001927 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 unsigned long flags;
1929
Alan Sterna64358d2005-07-26 10:27:10 -04001930 restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 spin_lock_irqsave(shost->host_lock, flags);
Alan Sterna64358d2005-07-26 10:27:10 -04001932 list_for_each_entry(sdev, &shost->__devices, siblings) {
1933 if (sdev->sdev_state == SDEV_DEL)
1934 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 spin_unlock_irqrestore(shost->host_lock, flags);
Alan Sterna64358d2005-07-26 10:27:10 -04001936 __scsi_remove_device(sdev);
1937 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
1939 spin_unlock_irqrestore(shost->host_lock, flags);
1940}
1941
Randy Dunlap9f6aa572010-05-23 17:02:30 -07001942/**
1943 * scsi_get_host_dev - Create a scsi_device that points to the host adapter itself
1944 * @shost: Host that needs a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 *
1946 * Lock status: None assumed.
1947 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001948 * Returns: The scsi_device or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 *
1950 * Notes:
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001951 * Attach a single scsi_device to the Scsi_Host - this should
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 * be made to look like a "pseudo-device" that points to the
1953 * HA itself.
1954 *
1955 * Note - this device is not accessible from any high-level
1956 * drivers (including generics), which is probably not
Randy Dunlap9f6aa572010-05-23 17:02:30 -07001957 * optimal. We can add hooks later to attach.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 */
1959struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost)
1960{
Alan Sterne517d312005-07-26 10:18:45 -04001961 struct scsi_device *sdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 struct scsi_target *starget;
1963
Arjan van de Ven0b950672006-01-11 13:16:10 +01001964 mutex_lock(&shost->scan_mutex);
Alan Sterne517d312005-07-26 10:18:45 -04001965 if (!scsi_host_scan_allowed(shost))
1966 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 starget = scsi_alloc_target(&shost->shost_gendev, 0, shost->this_id);
1968 if (!starget)
Alan Sterne517d312005-07-26 10:18:45 -04001969 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 sdev = scsi_alloc_sdev(starget, 0, NULL);
Alan Sternd5469112010-02-12 12:13:39 -05001972 if (sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 sdev->borken = 0;
Alan Sternd5469112010-02-12 12:13:39 -05001974 else
James Bottomley884d25c2006-09-05 16:26:41 -05001975 scsi_target_reap(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 put_device(&starget->dev);
Alan Sterne517d312005-07-26 10:18:45 -04001977 out:
Arjan van de Ven0b950672006-01-11 13:16:10 +01001978 mutex_unlock(&shost->scan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 return sdev;
1980}
1981EXPORT_SYMBOL(scsi_get_host_dev);
1982
Randy Dunlap9f6aa572010-05-23 17:02:30 -07001983/**
1984 * scsi_free_host_dev - Free a scsi_device that points to the host adapter itself
1985 * @sdev: Host device to be freed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 *
1987 * Lock status: None assumed.
1988 *
1989 * Returns: Nothing
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 */
1991void scsi_free_host_dev(struct scsi_device *sdev)
1992{
1993 BUG_ON(sdev->id != sdev->host->this_id);
1994
James Bottomley860dc732009-11-19 17:48:29 -05001995 __scsi_remove_device(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996}
1997EXPORT_SYMBOL(scsi_free_host_dev);
1998