blob: f9ecc3dea7dfaf9643ac0bbb90e45a816be7cf80 [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
28#include <linux/config.h>
29#include <linux/module.h>
30#include <linux/moduleparam.h>
31#include <linux/init.h>
32#include <linux/blkdev.h>
33#include <asm/semaphore.h>
34
35#include <scsi/scsi.h>
36#include <scsi/scsi_device.h>
37#include <scsi/scsi_driver.h>
38#include <scsi/scsi_devinfo.h>
39#include <scsi/scsi_host.h>
40#include <scsi/scsi_request.h>
41#include <scsi/scsi_transport.h>
42#include <scsi/scsi_eh.h>
43
44#include "scsi_priv.h"
45#include "scsi_logging.h"
46
47#define ALLOC_FAILURE_MSG KERN_ERR "%s: Allocation failure during" \
48 " SCSI scanning, some SCSI devices might not be configured\n"
49
50/*
51 * Default timeout
52 */
53#define SCSI_TIMEOUT (2*HZ)
54
55/*
56 * Prefix values for the SCSI id's (stored in driverfs name field)
57 */
58#define SCSI_UID_SER_NUM 'S'
59#define SCSI_UID_UNKNOWN 'Z'
60
61/*
62 * Return values of some of the scanning functions.
63 *
64 * SCSI_SCAN_NO_RESPONSE: no valid response received from the target, this
65 * includes allocation or general failures preventing IO from being sent.
66 *
67 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is available
68 * on the given LUN.
69 *
70 * SCSI_SCAN_LUN_PRESENT: target responded, and a device is available on a
71 * given LUN.
72 */
73#define SCSI_SCAN_NO_RESPONSE 0
74#define SCSI_SCAN_TARGET_PRESENT 1
75#define SCSI_SCAN_LUN_PRESENT 2
76
Arjan van de Ven0ad78202005-11-28 16:22:25 +010077static const char *scsi_null_device_strs = "nullnullnullnull";
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79#define MAX_SCSI_LUNS 512
80
81#ifdef CONFIG_SCSI_MULTI_LUN
82static unsigned int max_scsi_luns = MAX_SCSI_LUNS;
83#else
84static unsigned int max_scsi_luns = 1;
85#endif
86
87module_param_named(max_luns, max_scsi_luns, int, S_IRUGO|S_IWUSR);
88MODULE_PARM_DESC(max_luns,
89 "last scsi LUN (should be between 1 and 2^32-1)");
90
91/*
92 * max_scsi_report_luns: the maximum number of LUNS that will be
93 * returned from the REPORT LUNS command. 8 times this value must
94 * be allocated. In theory this could be up to an 8 byte value, but
95 * in practice, the maximum number of LUNs suppored by any device
96 * is about 16k.
97 */
98static unsigned int max_scsi_report_luns = 511;
99
100module_param_named(max_report_luns, max_scsi_report_luns, int, S_IRUGO|S_IWUSR);
101MODULE_PARM_DESC(max_report_luns,
102 "REPORT LUNS maximum number of LUNS received (should be"
103 " between 1 and 16384)");
104
105static unsigned int scsi_inq_timeout = SCSI_TIMEOUT/HZ+3;
106
107module_param_named(inq_timeout, scsi_inq_timeout, int, S_IRUGO|S_IWUSR);
108MODULE_PARM_DESC(inq_timeout,
109 "Timeout (in seconds) waiting for devices to answer INQUIRY."
110 " Default is 5. Some non-compliant devices need more.");
111
112/**
113 * scsi_unlock_floptical - unlock device via a special MODE SENSE command
James Bottomley39216032005-06-15 18:48:29 -0500114 * @sdev: scsi device to send command to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * @result: area to store the result of the MODE SENSE
116 *
117 * Description:
James Bottomley39216032005-06-15 18:48:29 -0500118 * Send a vendor specific MODE SENSE (not a MODE SELECT) command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * Called for BLIST_KEY devices.
120 **/
James Bottomley39216032005-06-15 18:48:29 -0500121static void scsi_unlock_floptical(struct scsi_device *sdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 unsigned char *result)
123{
124 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
125
126 printk(KERN_NOTICE "scsi: unlocking floptical drive\n");
127 scsi_cmd[0] = MODE_SENSE;
128 scsi_cmd[1] = 0;
129 scsi_cmd[2] = 0x2e;
130 scsi_cmd[3] = 0;
James Bottomley39216032005-06-15 18:48:29 -0500131 scsi_cmd[4] = 0x2a; /* size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 scsi_cmd[5] = 0;
James Bottomley39216032005-06-15 18:48:29 -0500133 scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE, result, 0x2a, NULL,
134 SCSI_TIMEOUT, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
137/**
138 * print_inquiry - printk the inquiry information
139 * @inq_result: printk this SCSI INQUIRY
140 *
141 * Description:
142 * printk the vendor, model, and other information found in the
143 * INQUIRY data in @inq_result.
144 *
145 * Notes:
146 * Remove this, and replace with a hotplug event that logs any
147 * relevant information.
148 **/
149static void print_inquiry(unsigned char *inq_result)
150{
151 int i;
152
153 printk(KERN_NOTICE " Vendor: ");
154 for (i = 8; i < 16; i++)
155 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5)
156 printk("%c", inq_result[i]);
157 else
158 printk(" ");
159
160 printk(" Model: ");
161 for (i = 16; i < 32; i++)
162 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5)
163 printk("%c", inq_result[i]);
164 else
165 printk(" ");
166
167 printk(" Rev: ");
168 for (i = 32; i < 36; i++)
169 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5)
170 printk("%c", inq_result[i]);
171 else
172 printk(" ");
173
174 printk("\n");
175
176 i = inq_result[0] & 0x1f;
177
178 printk(KERN_NOTICE " Type: %s ",
179 i <
180 MAX_SCSI_DEVICE_CODE ? scsi_device_types[i] :
181 "Unknown ");
182 printk(" ANSI SCSI revision: %02x",
183 inq_result[2] & 0x07);
184 if ((inq_result[2] & 0x07) == 1 && (inq_result[3] & 0x0f) == 1)
185 printk(" CCS\n");
186 else
187 printk("\n");
188}
189
190/**
191 * scsi_alloc_sdev - allocate and setup a scsi_Device
192 *
193 * Description:
194 * Allocate, initialize for io, and return a pointer to a scsi_Device.
195 * Stores the @shost, @channel, @id, and @lun in the scsi_Device, and
196 * adds scsi_Device to the appropriate list.
197 *
198 * Return value:
199 * scsi_Device pointer, or NULL on failure.
200 **/
201static struct scsi_device *scsi_alloc_sdev(struct scsi_target *starget,
202 unsigned int lun, void *hostdata)
203{
204 struct scsi_device *sdev;
205 int display_failure_msg = 1, ret;
206 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
207
208 sdev = kmalloc(sizeof(*sdev) + shost->transportt->device_size,
209 GFP_ATOMIC);
210 if (!sdev)
211 goto out;
212
213 memset(sdev, 0, sizeof(*sdev));
214 sdev->vendor = scsi_null_device_strs;
215 sdev->model = scsi_null_device_strs;
216 sdev->rev = scsi_null_device_strs;
217 sdev->host = shost;
218 sdev->id = starget->id;
219 sdev->lun = lun;
220 sdev->channel = starget->channel;
221 sdev->sdev_state = SDEV_CREATED;
222 INIT_LIST_HEAD(&sdev->siblings);
223 INIT_LIST_HEAD(&sdev->same_target_siblings);
224 INIT_LIST_HEAD(&sdev->cmd_list);
225 INIT_LIST_HEAD(&sdev->starved_entry);
226 spin_lock_init(&sdev->list_lock);
227
228 sdev->sdev_gendev.parent = get_device(&starget->dev);
229 sdev->sdev_target = starget;
230
231 /* usually NULL and set by ->slave_alloc instead */
232 sdev->hostdata = hostdata;
233
234 /* if the device needs this changing, it may do so in the
235 * slave_configure function */
236 sdev->max_device_blocked = SCSI_DEFAULT_DEVICE_BLOCKED;
237
238 /*
239 * Some low level driver could use device->type
240 */
241 sdev->type = -1;
242
243 /*
244 * Assume that the device will have handshaking problems,
245 * and then fix this field later if it turns out it
246 * doesn't
247 */
248 sdev->borken = 1;
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 sdev->request_queue = scsi_alloc_queue(sdev);
251 if (!sdev->request_queue) {
252 /* release fn is set up in scsi_sysfs_device_initialise, so
253 * have to free and put manually here */
254 put_device(&starget->dev);
255 goto out;
256 }
257
258 sdev->request_queue->queuedata = sdev;
259 scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
260
261 scsi_sysfs_device_initialize(sdev);
262
263 if (shost->hostt->slave_alloc) {
264 ret = shost->hostt->slave_alloc(sdev);
265 if (ret) {
266 /*
267 * if LLDD reports slave not present, don't clutter
268 * console with alloc failure messages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
270 if (ret == -ENXIO)
271 display_failure_msg = 0;
272 goto out_device_destroy;
273 }
274 }
275
276 return sdev;
277
278out_device_destroy:
279 transport_destroy_device(&sdev->sdev_gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 put_device(&sdev->sdev_gendev);
281out:
282 if (display_failure_msg)
283 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
284 return NULL;
285}
286
287static void scsi_target_dev_release(struct device *dev)
288{
289 struct device *parent = dev->parent;
290 struct scsi_target *starget = to_scsi_target(dev);
James Bottomleya283bd32005-05-24 12:06:38 -0500291 struct Scsi_Host *shost = dev_to_shost(parent);
292
293 if (shost->hostt->target_destroy)
294 shost->hostt->target_destroy(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 kfree(starget);
296 put_device(parent);
297}
298
299int scsi_is_target_device(const struct device *dev)
300{
301 return dev->release == scsi_target_dev_release;
302}
303EXPORT_SYMBOL(scsi_is_target_device);
304
305static struct scsi_target *__scsi_find_target(struct device *parent,
306 int channel, uint id)
307{
308 struct scsi_target *starget, *found_starget = NULL;
309 struct Scsi_Host *shost = dev_to_shost(parent);
310 /*
311 * Search for an existing target for this sdev.
312 */
313 list_for_each_entry(starget, &shost->__targets, siblings) {
314 if (starget->id == id &&
315 starget->channel == channel) {
316 found_starget = starget;
317 break;
318 }
319 }
320 if (found_starget)
321 get_device(&found_starget->dev);
322
323 return found_starget;
324}
325
326static struct scsi_target *scsi_alloc_target(struct device *parent,
327 int channel, uint id)
328{
329 struct Scsi_Host *shost = dev_to_shost(parent);
330 struct device *dev = NULL;
331 unsigned long flags;
332 const int size = sizeof(struct scsi_target)
333 + shost->transportt->target_size;
James.Smart@Emulex.Com5c44cd22005-06-10 22:24:30 -0400334 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 struct scsi_target *found_target;
336
James.Smart@Emulex.Com5c44cd22005-06-10 22:24:30 -0400337 starget = kmalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (!starget) {
339 printk(KERN_ERR "%s: allocation failure\n", __FUNCTION__);
340 return NULL;
341 }
342 memset(starget, 0, size);
343 dev = &starget->dev;
344 device_initialize(dev);
345 starget->reap_ref = 1;
346 dev->parent = get_device(parent);
347 dev->release = scsi_target_dev_release;
348 sprintf(dev->bus_id, "target%d:%d:%d",
349 shost->host_no, channel, id);
350 starget->id = id;
351 starget->channel = channel;
352 INIT_LIST_HEAD(&starget->siblings);
353 INIT_LIST_HEAD(&starget->devices);
354 spin_lock_irqsave(shost->host_lock, flags);
355
356 found_target = __scsi_find_target(parent, channel, id);
357 if (found_target)
358 goto found;
359
360 list_add_tail(&starget->siblings, &shost->__targets);
361 spin_unlock_irqrestore(shost->host_lock, flags);
362 /* allocate and add */
James Bottomleya283bd32005-05-24 12:06:38 -0500363 transport_setup_device(dev);
364 device_add(dev);
365 transport_add_device(dev);
366 if (shost->hostt->target_alloc) {
367 int error = shost->hostt->target_alloc(starget);
368
369 if(error) {
370 dev_printk(KERN_ERR, dev, "target allocation failed, error %d\n", error);
371 /* don't want scsi_target_reap to do the final
372 * put because it will be under the host lock */
373 get_device(dev);
374 scsi_target_reap(starget);
375 put_device(dev);
376 return NULL;
377 }
378 }
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return starget;
381
382 found:
383 found_target->reap_ref++;
384 spin_unlock_irqrestore(shost->host_lock, flags);
385 put_device(parent);
386 kfree(starget);
387 return found_target;
388}
389
James Bottomley65110b22006-02-14 10:48:46 -0600390static void scsi_target_reap_usercontext(void *data)
391{
392 struct scsi_target *starget = data;
James Bottomley863a9302005-12-15 20:01:43 -0800393 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
394 unsigned long flags;
395
James Bottomley863a9302005-12-15 20:01:43 -0800396 spin_lock_irqsave(shost->host_lock, flags);
397
398 if (--starget->reap_ref == 0 && list_empty(&starget->devices)) {
399 list_del_init(&starget->siblings);
400 spin_unlock_irqrestore(shost->host_lock, flags);
James Bottomley04333392005-12-26 09:58:49 -0600401 transport_remove_device(&starget->dev);
James Bottomley863a9302005-12-15 20:01:43 -0800402 device_del(&starget->dev);
James Bottomley04333392005-12-26 09:58:49 -0600403 transport_destroy_device(&starget->dev);
James Bottomley863a9302005-12-15 20:01:43 -0800404 put_device(&starget->dev);
405 return;
406
407 }
408 spin_unlock_irqrestore(shost->host_lock, flags);
409
410 return;
411}
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413/**
414 * scsi_target_reap - check to see if target is in use and destroy if not
415 *
416 * @starget: target to be checked
417 *
418 * This is used after removing a LUN or doing a last put of the target
419 * it checks atomically that nothing is using the target and removes
420 * it if so.
421 */
422void scsi_target_reap(struct scsi_target *starget)
423{
James Bottomley65110b22006-02-14 10:48:46 -0600424 scsi_execute_in_process_context(scsi_target_reap_usercontext, starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
427/**
428 * scsi_probe_lun - probe a single LUN using a SCSI INQUIRY
James Bottomley39216032005-06-15 18:48:29 -0500429 * @sdev: scsi_device to probe
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 * @inq_result: area to store the INQUIRY result
James Bottomley39216032005-06-15 18:48:29 -0500431 * @result_len: len of inq_result
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 * @bflags: store any bflags found here
433 *
434 * Description:
James Bottomley39216032005-06-15 18:48:29 -0500435 * Probe the lun associated with @req using a standard SCSI INQUIRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 *
James Bottomley39216032005-06-15 18:48:29 -0500437 * If the INQUIRY is successful, zero is returned and the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 * INQUIRY data is in @inq_result; the scsi_level and INQUIRY length
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100439 * are copied to the scsi_device any flags value is stored in *@bflags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 **/
James Bottomley39216032005-06-15 18:48:29 -0500441static int scsi_probe_lun(struct scsi_device *sdev, char *inq_result,
442 int result_len, int *bflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
445 int first_inquiry_len, try_inquiry_len, next_inquiry_len;
446 int response_len = 0;
James Bottomley39216032005-06-15 18:48:29 -0500447 int pass, count, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 struct scsi_sense_hdr sshdr;
449
450 *bflags = 0;
451
452 /* Perform up to 3 passes. The first pass uses a conservative
453 * transfer length of 36 unless sdev->inquiry_len specifies a
454 * different value. */
455 first_inquiry_len = sdev->inquiry_len ? sdev->inquiry_len : 36;
456 try_inquiry_len = first_inquiry_len;
457 pass = 1;
458
459 next_pass:
James Bottomley9ccfc752005-10-02 11:45:08 -0500460 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
461 "scsi scan: INQUIRY pass %d length %d\n",
462 pass, try_inquiry_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 /* Each pass gets up to three chances to ignore Unit Attention */
465 for (count = 0; count < 3; ++count) {
466 memset(scsi_cmd, 0, 6);
467 scsi_cmd[0] = INQUIRY;
468 scsi_cmd[4] = (unsigned char) try_inquiry_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 memset(inq_result, 0, try_inquiry_len);
James Bottomley39216032005-06-15 18:48:29 -0500471
472 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
James Bottomleyea73a9f2005-08-28 11:33:52 -0500473 inq_result, try_inquiry_len, &sshdr,
James Bottomley39216032005-06-15 18:48:29 -0500474 HZ / 2 + HZ * scsi_inq_timeout, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: INQUIRY %s "
477 "with code 0x%x\n",
James Bottomley39216032005-06-15 18:48:29 -0500478 result ? "failed" : "successful", result));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
James Bottomley39216032005-06-15 18:48:29 -0500480 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 /*
482 * not-ready to ready transition [asc/ascq=0x28/0x0]
483 * or power-on, reset [asc/ascq=0x29/0x0], continue.
484 * INQUIRY should not yield UNIT_ATTENTION
485 * but many buggy devices do so anyway.
486 */
James Bottomley39216032005-06-15 18:48:29 -0500487 if ((driver_byte(result) & DRIVER_SENSE) &&
James Bottomleyea73a9f2005-08-28 11:33:52 -0500488 scsi_sense_valid(&sshdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if ((sshdr.sense_key == UNIT_ATTENTION) &&
490 ((sshdr.asc == 0x28) ||
491 (sshdr.asc == 0x29)) &&
492 (sshdr.ascq == 0))
493 continue;
494 }
495 }
496 break;
497 }
498
James Bottomley39216032005-06-15 18:48:29 -0500499 if (result == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 response_len = (unsigned char) inq_result[4] + 5;
501 if (response_len > 255)
502 response_len = first_inquiry_len; /* sanity */
503
504 /*
505 * Get any flags for this device.
506 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100507 * XXX add a bflags to scsi_device, and replace the
508 * corresponding bit fields in scsi_device, so bflags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * need not be passed as an argument.
510 */
511 *bflags = scsi_get_device_flags(sdev, &inq_result[8],
512 &inq_result[16]);
513
514 /* When the first pass succeeds we gain information about
515 * what larger transfer lengths might work. */
516 if (pass == 1) {
517 if (BLIST_INQUIRY_36 & *bflags)
518 next_inquiry_len = 36;
519 else if (BLIST_INQUIRY_58 & *bflags)
520 next_inquiry_len = 58;
521 else if (sdev->inquiry_len)
522 next_inquiry_len = sdev->inquiry_len;
523 else
524 next_inquiry_len = response_len;
525
526 /* If more data is available perform the second pass */
527 if (next_inquiry_len > try_inquiry_len) {
528 try_inquiry_len = next_inquiry_len;
529 pass = 2;
530 goto next_pass;
531 }
532 }
533
534 } else if (pass == 2) {
535 printk(KERN_INFO "scsi scan: %d byte inquiry failed. "
536 "Consider BLIST_INQUIRY_36 for this device\n",
537 try_inquiry_len);
538
539 /* If this pass failed, the third pass goes back and transfers
540 * the same amount as we successfully got in the first pass. */
541 try_inquiry_len = first_inquiry_len;
542 pass = 3;
543 goto next_pass;
544 }
545
546 /* If the last transfer attempt got an error, assume the
547 * peripheral doesn't exist or is dead. */
James Bottomley39216032005-06-15 18:48:29 -0500548 if (result)
549 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 /* Don't report any more data than the device says is valid */
552 sdev->inquiry_len = min(try_inquiry_len, response_len);
553
554 /*
555 * XXX Abort if the response length is less than 36? If less than
556 * 32, the lookup of the device flags (above) could be invalid,
557 * and it would be possible to take an incorrect action - we do
558 * not want to hang because of a short INQUIRY. On the flip side,
559 * if the device is spun down or becoming ready (and so it gives a
560 * short INQUIRY), an abort here prevents any further use of the
561 * device, including spin up.
562 *
563 * Related to the above issue:
564 *
565 * XXX Devices (disk or all?) should be sent a TEST UNIT READY,
566 * and if not ready, sent a START_STOP to start (maybe spin up) and
567 * then send the INQUIRY again, since the INQUIRY can change after
568 * a device is initialized.
569 *
570 * Ideally, start a device if explicitly asked to do so. This
571 * assumes that a device is spun up on power on, spun down on
572 * request, and then spun up on request.
573 */
574
575 /*
576 * The scanning code needs to know the scsi_level, even if no
577 * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so
578 * non-zero LUNs can be scanned.
579 */
580 sdev->scsi_level = inq_result[2] & 0x07;
581 if (sdev->scsi_level >= 2 ||
582 (sdev->scsi_level == 1 && (inq_result[3] & 0x0f) == 1))
583 sdev->scsi_level++;
James Bottomley6f3a2022005-09-22 20:33:28 -0500584 sdev->sdev_target->scsi_level = sdev->scsi_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
James Bottomley39216032005-06-15 18:48:29 -0500586 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
589/**
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100590 * scsi_add_lun - allocate and fully initialze a scsi_device
591 * @sdevscan: holds information to be stored in the new scsi_device
592 * @sdevnew: store the address of the newly allocated scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 * @inq_result: holds the result of a previous INQUIRY to the LUN
594 * @bflags: black/white list flag
595 *
596 * Description:
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100597 * Allocate and initialize a scsi_device matching sdevscan. Optionally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 * set fields based on values in *@bflags. If @sdevnew is not
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100599 * NULL, store the address of the new scsi_device in *@sdevnew (needed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 * when scanning a particular LUN).
601 *
602 * Return:
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100603 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
604 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 **/
606static int scsi_add_lun(struct scsi_device *sdev, char *inq_result, int *bflags)
607{
608 /*
609 * XXX do not save the inquiry, since it can change underneath us,
610 * save just vendor/model/rev.
611 *
612 * Rather than save it and have an ioctl that retrieves the saved
613 * value, have an ioctl that executes the same INQUIRY code used
614 * in scsi_probe_lun, let user level programs doing INQUIRY
615 * scanning run at their own risk, or supply a user level program
616 * that can correctly scan.
617 */
618 sdev->inquiry = kmalloc(sdev->inquiry_len, GFP_ATOMIC);
619 if (sdev->inquiry == NULL) {
620 return SCSI_SCAN_NO_RESPONSE;
621 }
622
623 memcpy(sdev->inquiry, inq_result, sdev->inquiry_len);
624 sdev->vendor = (char *) (sdev->inquiry + 8);
625 sdev->model = (char *) (sdev->inquiry + 16);
626 sdev->rev = (char *) (sdev->inquiry + 32);
627
628 if (*bflags & BLIST_ISROM) {
629 /*
630 * It would be better to modify sdev->type, and set
631 * sdev->removable, but then the print_inquiry() output
632 * would not show TYPE_ROM; if print_inquiry() is removed
633 * the issue goes away.
634 */
635 inq_result[0] = TYPE_ROM;
636 inq_result[1] |= 0x80; /* removable */
637 } else if (*bflags & BLIST_NO_ULD_ATTACH)
638 sdev->no_uld_attach = 1;
639
640 switch (sdev->type = (inq_result[0] & 0x1f)) {
641 case TYPE_TAPE:
642 case TYPE_DISK:
643 case TYPE_PRINTER:
644 case TYPE_MOD:
645 case TYPE_PROCESSOR:
646 case TYPE_SCANNER:
647 case TYPE_MEDIUM_CHANGER:
648 case TYPE_ENCLOSURE:
649 case TYPE_COMM:
Al Viro 631e8a12005-05-16 01:59:55 +0100650 case TYPE_RBC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 sdev->writeable = 1;
652 break;
653 case TYPE_WORM:
654 case TYPE_ROM:
655 sdev->writeable = 0;
656 break;
657 default:
658 printk(KERN_INFO "scsi: unknown device type %d\n", sdev->type);
659 }
660
661 print_inquiry(inq_result);
662
663 /*
664 * For a peripheral qualifier (PQ) value of 1 (001b), the SCSI
665 * spec says: The device server is capable of supporting the
666 * specified peripheral device type on this logical unit. However,
667 * the physical device is not currently connected to this logical
668 * unit.
669 *
670 * The above is vague, as it implies that we could treat 001 and
671 * 011 the same. Stay compatible with previous code, and create a
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100672 * scsi_device for a PQ of 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 *
674 * Don't set the device offline here; rather let the upper
675 * level drivers eval the PQ to decide whether they should
676 * attach. So remove ((inq_result[0] >> 5) & 7) == 1 check.
677 */
678
679 sdev->inq_periph_qual = (inq_result[0] >> 5) & 7;
680 sdev->removable = (0x80 & inq_result[1]) >> 7;
681 sdev->lockable = sdev->removable;
682 sdev->soft_reset = (inq_result[7] & 1) && ((inq_result[3] & 7) == 2);
683
684 if (sdev->scsi_level >= SCSI_3 || (sdev->inquiry_len > 56 &&
685 inq_result[56] & 0x04))
686 sdev->ppr = 1;
687 if (inq_result[7] & 0x60)
688 sdev->wdtr = 1;
689 if (inq_result[7] & 0x10)
690 sdev->sdtr = 1;
691
692 sprintf(sdev->devfs_name, "scsi/host%d/bus%d/target%d/lun%d",
693 sdev->host->host_no, sdev->channel,
694 sdev->id, sdev->lun);
695
696 /*
697 * End driverfs/devfs code.
698 */
699
700 if ((sdev->scsi_level >= SCSI_2) && (inq_result[7] & 2) &&
701 !(*bflags & BLIST_NOTQ))
702 sdev->tagged_supported = 1;
703 /*
704 * Some devices (Texel CD ROM drives) have handshaking problems
705 * when used with the Seagate controllers. borken is initialized
706 * to 1, and then set it to 0 here.
707 */
708 if ((*bflags & BLIST_BORKEN) == 0)
709 sdev->borken = 0;
710
711 /*
712 * Apparently some really broken devices (contrary to the SCSI
713 * standards) need to be selected without asserting ATN
714 */
715 if (*bflags & BLIST_SELECT_NO_ATN)
716 sdev->select_no_atn = 1;
717
718 /*
719 * Some devices may not want to have a start command automatically
720 * issued when a device is added.
721 */
722 if (*bflags & BLIST_NOSTARTONADD)
723 sdev->no_start_on_add = 1;
724
725 if (*bflags & BLIST_SINGLELUN)
726 sdev->single_lun = 1;
727
728
729 sdev->use_10_for_rw = 1;
730
731 if (*bflags & BLIST_MS_SKIP_PAGE_08)
732 sdev->skip_ms_page_8 = 1;
733
734 if (*bflags & BLIST_MS_SKIP_PAGE_3F)
735 sdev->skip_ms_page_3f = 1;
736
737 if (*bflags & BLIST_USE_10_BYTE_MS)
738 sdev->use_10_for_ms = 1;
739
740 /* set the device running here so that slave configure
741 * may do I/O */
742 scsi_device_set_state(sdev, SDEV_RUNNING);
743
744 if (*bflags & BLIST_MS_192_BYTES_FOR_3F)
745 sdev->use_192_bytes_for_3f = 1;
746
747 if (*bflags & BLIST_NOT_LOCKABLE)
748 sdev->lockable = 0;
749
750 if (*bflags & BLIST_RETRY_HWERROR)
751 sdev->retry_hwerror = 1;
752
753 transport_configure_device(&sdev->sdev_gendev);
754
Christoph Hellwig93805092006-02-17 12:11:29 +0100755 if (sdev->host->hostt->slave_configure) {
756 int ret = sdev->host->hostt->slave_configure(sdev);
757 if (ret) {
758 /*
759 * if LLDD reports slave not present, don't clutter
760 * console with alloc failure messages
761 */
762 if (ret != -ENXIO) {
763 sdev_printk(KERN_ERR, sdev,
764 "failed to configure device\n");
765 }
766 return SCSI_SCAN_NO_RESPONSE;
767 }
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 /*
771 * Ok, the device is now all set up, we can
772 * register it and tell the rest of the kernel
773 * about it.
774 */
Alan Sternb24b1032005-07-27 11:43:46 -0700775 if (scsi_sysfs_add_sdev(sdev) != 0)
776 return SCSI_SCAN_NO_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 return SCSI_SCAN_LUN_PRESENT;
779}
780
James Bottomley6f3a2022005-09-22 20:33:28 -0500781static inline void scsi_destroy_sdev(struct scsi_device *sdev)
782{
783 if (sdev->host->hostt->slave_destroy)
784 sdev->host->hostt->slave_destroy(sdev);
785 transport_destroy_device(&sdev->sdev_gendev);
786 put_device(&sdev->sdev_gendev);
787}
788
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790/**
791 * scsi_probe_and_add_lun - probe a LUN, if a LUN is found add it
792 * @starget: pointer to target device structure
793 * @lun: LUN of target device
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100794 * @sdevscan: probe the LUN corresponding to this scsi_device
795 * @sdevnew: store the value of any new scsi_device allocated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 * @bflagsp: store bflags here if not NULL
797 *
798 * Description:
799 * Call scsi_probe_lun, if a LUN with an attached device is found,
800 * allocate and set it up by calling scsi_add_lun.
801 *
802 * Return:
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100803 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is
805 * attached at the LUN
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100806 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 **/
808static int scsi_probe_and_add_lun(struct scsi_target *starget,
809 uint lun, int *bflagsp,
810 struct scsi_device **sdevp, int rescan,
811 void *hostdata)
812{
813 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 unsigned char *result;
James Bottomley39216032005-06-15 18:48:29 -0500815 int bflags, res = SCSI_SCAN_NO_RESPONSE, result_len = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
817
818 /*
819 * The rescan flag is used as an optimization, the first scan of a
820 * host adapter calls into here with rescan == 0.
821 */
James Bottomley6f3a2022005-09-22 20:33:28 -0500822 sdev = scsi_device_lookup_by_target(starget, lun);
823 if (sdev) {
824 if (rescan || sdev->sdev_state != SDEV_CREATED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
826 "scsi scan: device exists on %s\n",
827 sdev->sdev_gendev.bus_id));
828 if (sdevp)
829 *sdevp = sdev;
830 else
831 scsi_device_put(sdev);
832
833 if (bflagsp)
834 *bflagsp = scsi_get_device_flags(sdev,
835 sdev->vendor,
836 sdev->model);
837 return SCSI_SCAN_LUN_PRESENT;
838 }
James Bottomley6f3a2022005-09-22 20:33:28 -0500839 scsi_device_put(sdev);
840 } else
841 sdev = scsi_alloc_sdev(starget, lun, hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 if (!sdev)
843 goto out;
James Bottomley39216032005-06-15 18:48:29 -0500844
845 result = kmalloc(result_len, GFP_ATOMIC |
Al Virobc861202005-04-24 12:28:34 -0700846 ((shost->unchecked_isa_dma) ? __GFP_DMA : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 if (!result)
James Bottomley39216032005-06-15 18:48:29 -0500848 goto out_free_sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
James Bottomley39216032005-06-15 18:48:29 -0500850 if (scsi_probe_lun(sdev, result, result_len, &bflags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 goto out_free_result;
852
853 /*
854 * result contains valid SCSI INQUIRY data.
855 */
856 if ((result[0] >> 5) == 3) {
857 /*
858 * For a Peripheral qualifier 3 (011b), the SCSI
859 * spec says: The device server is not capable of
860 * supporting a physical device on this logical
861 * unit.
862 *
863 * For disks, this implies that there is no
864 * logical disk configured at sdev->lun, but there
865 * is a target id responding.
866 */
867 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
868 "scsi scan: peripheral qualifier of 3,"
869 " no device added\n"));
870 res = SCSI_SCAN_TARGET_PRESENT;
871 goto out_free_result;
872 }
873
874 res = scsi_add_lun(sdev, result, &bflags);
875 if (res == SCSI_SCAN_LUN_PRESENT) {
876 if (bflags & BLIST_KEY) {
877 sdev->lockable = 0;
James Bottomley39216032005-06-15 18:48:29 -0500878 scsi_unlock_floptical(sdev, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
880 if (bflagsp)
881 *bflagsp = bflags;
882 }
883
884 out_free_result:
885 kfree(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 out_free_sdev:
887 if (res == SCSI_SCAN_LUN_PRESENT) {
888 if (sdevp) {
Alan Sternb70d37b2005-07-26 10:30:40 -0400889 if (scsi_device_get(sdev) == 0) {
890 *sdevp = sdev;
891 } else {
892 __scsi_remove_device(sdev);
893 res = SCSI_SCAN_NO_RESPONSE;
894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
James Bottomley6f3a2022005-09-22 20:33:28 -0500896 } else
897 scsi_destroy_sdev(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 out:
899 return res;
900}
901
902/**
903 * scsi_sequential_lun_scan - sequentially scan a SCSI target
904 * @starget: pointer to target structure to scan
905 * @bflags: black/white list flag for LUN 0
906 * @lun0_res: result of scanning LUN 0
907 *
908 * Description:
909 * Generally, scan from LUN 1 (LUN 0 is assumed to already have been
910 * scanned) to some maximum lun until a LUN is found with no device
911 * attached. Use the bflags to figure out any oddities.
912 *
913 * Modifies sdevscan->lun.
914 **/
915static void scsi_sequential_lun_scan(struct scsi_target *starget,
916 int bflags, int lun0_res, int scsi_level,
917 int rescan)
918{
919 unsigned int sparse_lun, lun, max_dev_lun;
920 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
921
922 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: Sequential scan of"
923 "%s\n", starget->dev.bus_id));
924
925 max_dev_lun = min(max_scsi_luns, shost->max_lun);
926 /*
927 * If this device is known to support sparse multiple units,
928 * override the other settings, and scan all of them. Normally,
929 * SCSI-3 devices should be scanned via the REPORT LUNS.
930 */
931 if (bflags & BLIST_SPARSELUN) {
932 max_dev_lun = shost->max_lun;
933 sparse_lun = 1;
934 } else
935 sparse_lun = 0;
936
937 /*
938 * If not sparse lun and no device attached at LUN 0 do not scan
939 * any further.
940 */
941 if (!sparse_lun && (lun0_res != SCSI_SCAN_LUN_PRESENT))
942 return;
943
944 /*
945 * If less than SCSI_1_CSS, and no special lun scaning, stop
946 * scanning; this matches 2.4 behaviour, but could just be a bug
947 * (to continue scanning a SCSI_1_CSS device).
948 *
949 * This test is broken. We might not have any device on lun0 for
950 * a sparselun device, and if that's the case then how would we
951 * know the real scsi_level, eh? It might make sense to just not
952 * scan any SCSI_1 device for non-0 luns, but that check would best
953 * go into scsi_alloc_sdev() and just have it return null when asked
954 * to alloc an sdev for lun > 0 on an already found SCSI_1 device.
955 *
956 if ((sdevscan->scsi_level < SCSI_1_CCS) &&
957 ((bflags & (BLIST_FORCELUN | BLIST_SPARSELUN | BLIST_MAX5LUN))
958 == 0))
959 return;
960 */
961 /*
962 * If this device is known to support multiple units, override
963 * the other settings, and scan all of them.
964 */
965 if (bflags & BLIST_FORCELUN)
966 max_dev_lun = shost->max_lun;
967 /*
968 * REGAL CDC-4X: avoid hang after LUN 4
969 */
970 if (bflags & BLIST_MAX5LUN)
971 max_dev_lun = min(5U, max_dev_lun);
972 /*
973 * Do not scan SCSI-2 or lower device past LUN 7, unless
974 * BLIST_LARGELUN.
975 */
976 if (scsi_level < SCSI_3 && !(bflags & BLIST_LARGELUN))
977 max_dev_lun = min(8U, max_dev_lun);
978
979 /*
980 * We have already scanned LUN 0, so start at LUN 1. Keep scanning
981 * until we reach the max, or no LUN is found and we are not
982 * sparse_lun.
983 */
984 for (lun = 1; lun < max_dev_lun; ++lun)
985 if ((scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan,
986 NULL) != SCSI_SCAN_LUN_PRESENT) &&
987 !sparse_lun)
988 return;
989}
990
991/**
992 * scsilun_to_int: convert a scsi_lun to an int
993 * @scsilun: struct scsi_lun to be converted.
994 *
995 * Description:
996 * Convert @scsilun from a struct scsi_lun to a four byte host byte-ordered
997 * integer, and return the result. The caller must check for
998 * truncation before using this function.
999 *
1000 * Notes:
1001 * The struct scsi_lun is assumed to be four levels, with each level
1002 * effectively containing a SCSI byte-ordered (big endian) short; the
1003 * addressing bits of each level are ignored (the highest two bits).
1004 * For a description of the LUN format, post SCSI-3 see the SCSI
1005 * Architecture Model, for SCSI-3 see the SCSI Controller Commands.
1006 *
1007 * Given a struct scsi_lun of: 0a 04 0b 03 00 00 00 00, this function returns
1008 * the integer: 0x0b030a04
1009 **/
1010static int scsilun_to_int(struct scsi_lun *scsilun)
1011{
1012 int i;
1013 unsigned int lun;
1014
1015 lun = 0;
1016 for (i = 0; i < sizeof(lun); i += 2)
1017 lun = lun | (((scsilun->scsi_lun[i] << 8) |
1018 scsilun->scsi_lun[i + 1]) << (i * 8));
1019 return lun;
1020}
1021
1022/**
James.Smart@Emulex.Com2f4701d2005-07-13 22:05:03 -04001023 * int_to_scsilun: reverts an int into a scsi_lun
1024 * @int: integer to be reverted
1025 * @scsilun: struct scsi_lun to be set.
1026 *
1027 * Description:
1028 * Reverts the functionality of the scsilun_to_int, which packed
1029 * an 8-byte lun value into an int. This routine unpacks the int
1030 * back into the lun value.
1031 * Note: the scsilun_to_int() routine does not truly handle all
1032 * 8bytes of the lun value. This functions restores only as much
1033 * as was set by the routine.
1034 *
1035 * Notes:
1036 * Given an integer : 0x0b030a04, this function returns a
1037 * scsi_lun of : struct scsi_lun of: 0a 04 0b 03 00 00 00 00
1038 *
1039 **/
1040void int_to_scsilun(unsigned int lun, struct scsi_lun *scsilun)
1041{
1042 int i;
1043
1044 memset(scsilun->scsi_lun, 0, sizeof(scsilun->scsi_lun));
1045
1046 for (i = 0; i < sizeof(lun); i += 2) {
1047 scsilun->scsi_lun[i] = (lun >> 8) & 0xFF;
1048 scsilun->scsi_lun[i+1] = lun & 0xFF;
1049 lun = lun >> 16;
1050 }
1051}
1052EXPORT_SYMBOL(int_to_scsilun);
1053
1054/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 * scsi_report_lun_scan - Scan using SCSI REPORT LUN results
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001056 * @sdevscan: scan the host, channel, and id of this scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 *
1058 * Description:
1059 * If @sdevscan is for a SCSI-3 or up device, send a REPORT LUN
1060 * command, and scan the resulting list of LUNs by calling
1061 * scsi_probe_and_add_lun.
1062 *
1063 * Modifies sdevscan->lun.
1064 *
1065 * Return:
1066 * 0: scan completed (or no memory, so further scanning is futile)
1067 * 1: no report lun scan, or not configured
1068 **/
James Bottomley6f3a2022005-09-22 20:33:28 -05001069static int scsi_report_lun_scan(struct scsi_target *starget, int bflags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 int rescan)
1071{
1072 char devname[64];
1073 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
1074 unsigned int length;
1075 unsigned int lun;
1076 unsigned int num_luns;
1077 unsigned int retries;
James Bottomley39216032005-06-15 18:48:29 -05001078 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 struct scsi_lun *lunp, *lun_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 u8 *data;
1081 struct scsi_sense_hdr sshdr;
James Bottomley6f3a2022005-09-22 20:33:28 -05001082 struct scsi_device *sdev;
1083 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
Alan Stern2ef89192005-11-08 15:51:55 -05001084 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
1086 /*
1087 * Only support SCSI-3 and up devices if BLIST_NOREPORTLUN is not set.
1088 * Also allow SCSI-2 if BLIST_REPORTLUN2 is set and host adapter does
1089 * support more than 8 LUNs.
1090 */
1091 if ((bflags & BLIST_NOREPORTLUN) ||
James Bottomley6f3a2022005-09-22 20:33:28 -05001092 starget->scsi_level < SCSI_2 ||
1093 (starget->scsi_level < SCSI_3 &&
1094 (!(bflags & BLIST_REPORTLUN2) || shost->max_lun <= 8)) )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return 1;
1096 if (bflags & BLIST_NOLUN)
1097 return 0;
1098
James Bottomley6f3a2022005-09-22 20:33:28 -05001099 if (!(sdev = scsi_device_lookup_by_target(starget, 0))) {
1100 sdev = scsi_alloc_sdev(starget, 0, NULL);
1101 if (!sdev)
1102 return 0;
1103 if (scsi_device_get(sdev))
1104 return 0;
1105 }
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 sprintf(devname, "host %d channel %d id %d",
James Bottomley6f3a2022005-09-22 20:33:28 -05001108 shost->host_no, sdev->channel, sdev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 /*
1111 * Allocate enough to hold the header (the same size as one scsi_lun)
1112 * plus the max number of luns we are requesting.
1113 *
1114 * Reallocating and trying again (with the exact amount we need)
1115 * would be nice, but then we need to somehow limit the size
1116 * allocated based on the available memory and the limits of
1117 * kmalloc - we don't want a kmalloc() failure of a huge value to
1118 * prevent us from finding any LUNs on this target.
1119 */
1120 length = (max_scsi_report_luns + 1) * sizeof(struct scsi_lun);
1121 lun_data = kmalloc(length, GFP_ATOMIC |
1122 (sdev->host->unchecked_isa_dma ? __GFP_DMA : 0));
James Bottomley6f3a2022005-09-22 20:33:28 -05001123 if (!lun_data) {
1124 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
James Bottomley39216032005-06-15 18:48:29 -05001125 goto out;
James Bottomley6f3a2022005-09-22 20:33:28 -05001126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 scsi_cmd[0] = REPORT_LUNS;
1129
1130 /*
1131 * bytes 1 - 5: reserved, set to zero.
1132 */
1133 memset(&scsi_cmd[1], 0, 5);
1134
1135 /*
1136 * bytes 6 - 9: length of the command.
1137 */
1138 scsi_cmd[6] = (unsigned char) (length >> 24) & 0xff;
1139 scsi_cmd[7] = (unsigned char) (length >> 16) & 0xff;
1140 scsi_cmd[8] = (unsigned char) (length >> 8) & 0xff;
1141 scsi_cmd[9] = (unsigned char) length & 0xff;
1142
1143 scsi_cmd[10] = 0; /* reserved */
1144 scsi_cmd[11] = 0; /* control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 /*
1147 * We can get a UNIT ATTENTION, for example a power on/reset, so
1148 * retry a few times (like sd.c does for TEST UNIT READY).
1149 * Experience shows some combinations of adapter/devices get at
1150 * least two power on/resets.
1151 *
1152 * Illegal requests (for devices that do not support REPORT LUNS)
1153 * should come through as a check condition, and will not generate
1154 * a retry.
1155 */
1156 for (retries = 0; retries < 3; retries++) {
1157 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: Sending"
1158 " REPORT LUNS to %s (try %d)\n", devname,
1159 retries));
James Bottomley39216032005-06-15 18:48:29 -05001160
James Bottomley39216032005-06-15 18:48:29 -05001161 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001162 lun_data, length, &sshdr,
James Bottomley39216032005-06-15 18:48:29 -05001163 SCSI_TIMEOUT + 4 * HZ, 3);
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: REPORT LUNS"
James Bottomley39216032005-06-15 18:48:29 -05001166 " %s (try %d) result 0x%x\n", result
1167 ? "failed" : "successful", retries, result));
1168 if (result == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 break;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001170 else if (scsi_sense_valid(&sshdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if (sshdr.sense_key != UNIT_ATTENTION)
1172 break;
1173 }
1174 }
1175
James Bottomley39216032005-06-15 18:48:29 -05001176 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 /*
1178 * The device probably does not support a REPORT LUN command
1179 */
Alan Stern2ef89192005-11-08 15:51:55 -05001180 ret = 1;
1181 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 /*
1185 * Get the length from the first four bytes of lun_data.
1186 */
1187 data = (u8 *) lun_data->scsi_lun;
1188 length = ((data[0] << 24) | (data[1] << 16) |
1189 (data[2] << 8) | (data[3] << 0));
1190
1191 num_luns = (length / sizeof(struct scsi_lun));
1192 if (num_luns > max_scsi_report_luns) {
1193 printk(KERN_WARNING "scsi: On %s only %d (max_scsi_report_luns)"
1194 " of %d luns reported, try increasing"
1195 " max_scsi_report_luns.\n", devname,
1196 max_scsi_report_luns, num_luns);
1197 num_luns = max_scsi_report_luns;
1198 }
1199
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001200 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1201 "scsi scan: REPORT LUN scan\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 /*
1204 * Scan the luns in lun_data. The entry at offset 0 is really
1205 * the header, so start at 1 and go up to and including num_luns.
1206 */
1207 for (lunp = &lun_data[1]; lunp <= &lun_data[num_luns]; lunp++) {
1208 lun = scsilun_to_int(lunp);
1209
1210 /*
1211 * Check if the unused part of lunp is non-zero, and so
1212 * does not fit in lun.
1213 */
1214 if (memcmp(&lunp->scsi_lun[sizeof(lun)], "\0\0\0\0", 4)) {
1215 int i;
1216
1217 /*
1218 * Output an error displaying the LUN in byte order,
1219 * this differs from what linux would print for the
1220 * integer LUN value.
1221 */
1222 printk(KERN_WARNING "scsi: %s lun 0x", devname);
1223 data = (char *)lunp->scsi_lun;
1224 for (i = 0; i < sizeof(struct scsi_lun); i++)
1225 printk("%02x", data[i]);
1226 printk(" has a LUN larger than currently supported.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 } else if (lun > sdev->host->max_lun) {
1228 printk(KERN_WARNING "scsi: %s lun%d has a LUN larger"
1229 " than allowed by the host adapter\n",
1230 devname, lun);
1231 } else {
1232 int res;
1233
1234 res = scsi_probe_and_add_lun(starget,
1235 lun, NULL, NULL, rescan, NULL);
1236 if (res == SCSI_SCAN_NO_RESPONSE) {
1237 /*
1238 * Got some results, but now none, abort.
1239 */
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001240 sdev_printk(KERN_ERR, sdev,
1241 "Unexpected response"
1242 " from lun %d while scanning, scan"
1243 " aborted\n", lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 break;
1245 }
1246 }
1247 }
1248
Alan Stern2ef89192005-11-08 15:51:55 -05001249 out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 kfree(lun_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 out:
James Bottomley6f3a2022005-09-22 20:33:28 -05001252 scsi_device_put(sdev);
1253 if (sdev->sdev_state == SDEV_CREATED)
1254 /*
1255 * the sdev we used didn't appear in the report luns scan
1256 */
1257 scsi_destroy_sdev(sdev);
Alan Stern2ef89192005-11-08 15:51:55 -05001258 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259}
1260
1261struct scsi_device *__scsi_add_device(struct Scsi_Host *shost, uint channel,
1262 uint id, uint lun, void *hostdata)
1263{
1264 struct scsi_device *sdev;
1265 struct device *parent = &shost->shost_gendev;
1266 int res;
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001267 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001269 starget = scsi_alloc_target(parent, channel, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (!starget)
1271 return ERR_PTR(-ENOMEM);
1272
Nathan Lynchc92715b2005-06-02 17:15:09 -05001273 get_device(&starget->dev);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001274 mutex_lock(&shost->scan_mutex);
Mike Anderson82f29462005-06-16 11:14:33 -07001275 if (scsi_host_scan_allowed(shost)) {
1276 res = scsi_probe_and_add_lun(starget, lun, NULL, &sdev, 1,
1277 hostdata);
1278 if (res != SCSI_SCAN_LUN_PRESENT)
1279 sdev = ERR_PTR(-ENODEV);
1280 }
Arjan van de Ven0b950672006-01-11 13:16:10 +01001281 mutex_unlock(&shost->scan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 scsi_target_reap(starget);
1283 put_device(&starget->dev);
1284
1285 return sdev;
1286}
1287EXPORT_SYMBOL(__scsi_add_device);
1288
James Bottomley146f7262005-09-10 12:44:09 -05001289int scsi_add_device(struct Scsi_Host *host, uint channel,
1290 uint target, uint lun)
1291{
1292 struct scsi_device *sdev =
1293 __scsi_add_device(host, channel, target, lun, NULL);
1294 if (IS_ERR(sdev))
1295 return PTR_ERR(sdev);
1296
1297 scsi_device_put(sdev);
1298 return 0;
1299}
1300EXPORT_SYMBOL(scsi_add_device);
1301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302void scsi_rescan_device(struct device *dev)
1303{
1304 struct scsi_driver *drv;
1305
1306 if (!dev->driver)
1307 return;
1308
1309 drv = to_scsi_driver(dev->driver);
1310 if (try_module_get(drv->owner)) {
1311 if (drv->rescan)
1312 drv->rescan(dev);
1313 module_put(drv->owner);
1314 }
1315}
1316EXPORT_SYMBOL(scsi_rescan_device);
1317
Alan Sterne517d312005-07-26 10:18:45 -04001318static void __scsi_scan_target(struct device *parent, unsigned int channel,
1319 unsigned int id, unsigned int lun, int rescan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
1321 struct Scsi_Host *shost = dev_to_shost(parent);
1322 int bflags = 0;
1323 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 struct scsi_target *starget;
1325
1326 if (shost->this_id == id)
1327 /*
1328 * Don't scan the host adapter
1329 */
1330 return;
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 starget = scsi_alloc_target(parent, channel, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 if (!starget)
1334 return;
1335
1336 get_device(&starget->dev);
1337 if (lun != SCAN_WILD_CARD) {
1338 /*
1339 * Scan for a specific host/chan/id/lun.
1340 */
1341 scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan, NULL);
1342 goto out_reap;
1343 }
1344
1345 /*
1346 * Scan LUN 0, if there is some response, scan further. Ideally, we
1347 * would not configure LUN 0 until all LUNs are scanned.
1348 */
James Bottomley6f3a2022005-09-22 20:33:28 -05001349 res = scsi_probe_and_add_lun(starget, 0, &bflags, NULL, rescan, NULL);
1350 if (res == SCSI_SCAN_LUN_PRESENT || res == SCSI_SCAN_TARGET_PRESENT) {
1351 if (scsi_report_lun_scan(starget, bflags, rescan) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 /*
1353 * The REPORT LUN did not scan the target,
1354 * do a sequential scan.
1355 */
1356 scsi_sequential_lun_scan(starget, bflags,
James Bottomley6f3a2022005-09-22 20:33:28 -05001357 res, starget->scsi_level, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 out_reap:
1361 /* now determine if the target has any children at all
1362 * and if not, nuke it */
1363 scsi_target_reap(starget);
1364
1365 put_device(&starget->dev);
1366}
Alan Sterne517d312005-07-26 10:18:45 -04001367
1368/**
1369 * scsi_scan_target - scan a target id, possibly including all LUNs on the
1370 * target.
1371 * @parent: host to scan
1372 * @channel: channel to scan
1373 * @id: target id to scan
1374 * @lun: Specific LUN to scan or SCAN_WILD_CARD
1375 * @rescan: passed to LUN scanning routines
1376 *
1377 * Description:
1378 * Scan the target id on @parent, @channel, and @id. Scan at least LUN 0,
1379 * and possibly all LUNs on the target id.
1380 *
1381 * First try a REPORT LUN scan, if that does not scan the target, do a
1382 * sequential scan of LUNs on the target id.
1383 **/
1384void scsi_scan_target(struct device *parent, unsigned int channel,
1385 unsigned int id, unsigned int lun, int rescan)
1386{
1387 struct Scsi_Host *shost = dev_to_shost(parent);
1388
Arjan van de Ven0b950672006-01-11 13:16:10 +01001389 mutex_lock(&shost->scan_mutex);
Alan Sterne517d312005-07-26 10:18:45 -04001390 if (scsi_host_scan_allowed(shost))
1391 __scsi_scan_target(parent, channel, id, lun, rescan);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001392 mutex_unlock(&shost->scan_mutex);
Alan Sterne517d312005-07-26 10:18:45 -04001393}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394EXPORT_SYMBOL(scsi_scan_target);
1395
1396static void scsi_scan_channel(struct Scsi_Host *shost, unsigned int channel,
1397 unsigned int id, unsigned int lun, int rescan)
1398{
1399 uint order_id;
1400
1401 if (id == SCAN_WILD_CARD)
1402 for (id = 0; id < shost->max_id; ++id) {
1403 /*
1404 * XXX adapter drivers when possible (FCP, iSCSI)
1405 * could modify max_id to match the current max,
1406 * not the absolute max.
1407 *
1408 * XXX add a shost id iterator, so for example,
1409 * the FC ID can be the same as a target id
1410 * without a huge overhead of sparse id's.
1411 */
1412 if (shost->reverse_ordering)
1413 /*
1414 * Scan from high to low id.
1415 */
1416 order_id = shost->max_id - id - 1;
1417 else
1418 order_id = id;
Alan Sterne517d312005-07-26 10:18:45 -04001419 __scsi_scan_target(&shost->shost_gendev, channel,
1420 order_id, lun, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
1422 else
Alan Sterne517d312005-07-26 10:18:45 -04001423 __scsi_scan_target(&shost->shost_gendev, channel,
1424 id, lun, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425}
1426
1427int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel,
1428 unsigned int id, unsigned int lun, int rescan)
1429{
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001430 SCSI_LOG_SCAN_BUS(3, shost_printk (KERN_INFO, shost,
1431 "%s: <%u:%u:%u>\n",
1432 __FUNCTION__, channel, id, lun));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 if (((channel != SCAN_WILD_CARD) && (channel > shost->max_channel)) ||
1435 ((id != SCAN_WILD_CARD) && (id > shost->max_id)) ||
1436 ((lun != SCAN_WILD_CARD) && (lun > shost->max_lun)))
1437 return -EINVAL;
1438
Arjan van de Ven0b950672006-01-11 13:16:10 +01001439 mutex_lock(&shost->scan_mutex);
Mike Anderson82f29462005-06-16 11:14:33 -07001440 if (scsi_host_scan_allowed(shost)) {
1441 if (channel == SCAN_WILD_CARD)
1442 for (channel = 0; channel <= shost->max_channel;
1443 channel++)
1444 scsi_scan_channel(shost, channel, id, lun,
1445 rescan);
1446 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 scsi_scan_channel(shost, channel, id, lun, rescan);
Mike Anderson82f29462005-06-16 11:14:33 -07001448 }
Arjan van de Ven0b950672006-01-11 13:16:10 +01001449 mutex_unlock(&shost->scan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451 return 0;
1452}
1453
1454/**
1455 * scsi_scan_host - scan the given adapter
1456 * @shost: adapter to scan
1457 **/
1458void scsi_scan_host(struct Scsi_Host *shost)
1459{
1460 scsi_scan_host_selected(shost, SCAN_WILD_CARD, SCAN_WILD_CARD,
1461 SCAN_WILD_CARD, 0);
1462}
1463EXPORT_SYMBOL(scsi_scan_host);
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465void scsi_forget_host(struct Scsi_Host *shost)
1466{
Alan Sterna64358d2005-07-26 10:27:10 -04001467 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 unsigned long flags;
1469
Alan Sterna64358d2005-07-26 10:27:10 -04001470 restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 spin_lock_irqsave(shost->host_lock, flags);
Alan Sterna64358d2005-07-26 10:27:10 -04001472 list_for_each_entry(sdev, &shost->__devices, siblings) {
1473 if (sdev->sdev_state == SDEV_DEL)
1474 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 spin_unlock_irqrestore(shost->host_lock, flags);
Alan Sterna64358d2005-07-26 10:27:10 -04001476 __scsi_remove_device(sdev);
1477 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 }
1479 spin_unlock_irqrestore(shost->host_lock, flags);
1480}
1481
1482/*
1483 * Function: scsi_get_host_dev()
1484 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001485 * Purpose: Create a scsi_device that points to the host adapter itself.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001487 * Arguments: SHpnt - Host that needs a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 *
1489 * Lock status: None assumed.
1490 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001491 * Returns: The scsi_device or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 *
1493 * Notes:
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001494 * Attach a single scsi_device to the Scsi_Host - this should
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 * be made to look like a "pseudo-device" that points to the
1496 * HA itself.
1497 *
1498 * Note - this device is not accessible from any high-level
1499 * drivers (including generics), which is probably not
1500 * optimal. We can add hooks later to attach
1501 */
1502struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost)
1503{
Alan Sterne517d312005-07-26 10:18:45 -04001504 struct scsi_device *sdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 struct scsi_target *starget;
1506
Arjan van de Ven0b950672006-01-11 13:16:10 +01001507 mutex_lock(&shost->scan_mutex);
Alan Sterne517d312005-07-26 10:18:45 -04001508 if (!scsi_host_scan_allowed(shost))
1509 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 starget = scsi_alloc_target(&shost->shost_gendev, 0, shost->this_id);
1511 if (!starget)
Alan Sterne517d312005-07-26 10:18:45 -04001512 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
1514 sdev = scsi_alloc_sdev(starget, 0, NULL);
1515 if (sdev) {
1516 sdev->sdev_gendev.parent = get_device(&starget->dev);
1517 sdev->borken = 0;
1518 }
1519 put_device(&starget->dev);
Alan Sterne517d312005-07-26 10:18:45 -04001520 out:
Arjan van de Ven0b950672006-01-11 13:16:10 +01001521 mutex_unlock(&shost->scan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 return sdev;
1523}
1524EXPORT_SYMBOL(scsi_get_host_dev);
1525
1526/*
1527 * Function: scsi_free_host_dev()
1528 *
1529 * Purpose: Free a scsi_device that points to the host adapter itself.
1530 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001531 * Arguments: SHpnt - Host that needs a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 *
1533 * Lock status: None assumed.
1534 *
1535 * Returns: Nothing
1536 *
1537 * Notes:
1538 */
1539void scsi_free_host_dev(struct scsi_device *sdev)
1540{
1541 BUG_ON(sdev->id != sdev->host->this_id);
1542
James Bottomley6f3a2022005-09-22 20:33:28 -05001543 scsi_destroy_sdev(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544}
1545EXPORT_SYMBOL(scsi_free_host_dev);
1546