[SCSI] scsi: Handle device_add failure in scsi_alloc_target
[pandora-kernel.git] / drivers / scsi / scsi_scan.c
1 /*
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
12  * device attached, a scsi_device is allocated and setup for it.
13  *
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
20  *              scsi_device for it.
21  *
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
77 static const char *scsi_null_device_strs = "nullnullnullnull";
78
79 #define MAX_SCSI_LUNS   512
80
81 #ifdef CONFIG_SCSI_MULTI_LUN
82 static unsigned int max_scsi_luns = MAX_SCSI_LUNS;
83 #else
84 static unsigned int max_scsi_luns = 1;
85 #endif
86
87 module_param_named(max_luns, max_scsi_luns, int, S_IRUGO|S_IWUSR);
88 MODULE_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  */
98 static unsigned int max_scsi_report_luns = 511;
99
100 module_param_named(max_report_luns, max_scsi_report_luns, int, S_IRUGO|S_IWUSR);
101 MODULE_PARM_DESC(max_report_luns,
102                  "REPORT LUNS maximum number of LUNS received (should be"
103                  " between 1 and 16384)");
104
105 static unsigned int scsi_inq_timeout = SCSI_TIMEOUT/HZ+3;
106
107 module_param_named(inq_timeout, scsi_inq_timeout, int, S_IRUGO|S_IWUSR);
108 MODULE_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
114  * @sdev:       scsi device to send command to
115  * @result:     area to store the result of the MODE SENSE
116  *
117  * Description:
118  *     Send a vendor specific MODE SENSE (not a MODE SELECT) command.
119  *     Called for BLIST_KEY devices.
120  **/
121 static void scsi_unlock_floptical(struct scsi_device *sdev,
122                                   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;
131         scsi_cmd[4] = 0x2a;     /* size */
132         scsi_cmd[5] = 0;
133         scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE, result, 0x2a, NULL,
134                          SCSI_TIMEOUT, 3);
135 }
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  **/
149 static 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  **/
201 static 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 = kzalloc(sizeof(*sdev) + shost->transportt->device_size,
209                        GFP_ATOMIC);
210         if (!sdev)
211                 goto out;
212
213         sdev->vendor = scsi_null_device_strs;
214         sdev->model = scsi_null_device_strs;
215         sdev->rev = scsi_null_device_strs;
216         sdev->host = shost;
217         sdev->id = starget->id;
218         sdev->lun = lun;
219         sdev->channel = starget->channel;
220         sdev->sdev_state = SDEV_CREATED;
221         INIT_LIST_HEAD(&sdev->siblings);
222         INIT_LIST_HEAD(&sdev->same_target_siblings);
223         INIT_LIST_HEAD(&sdev->cmd_list);
224         INIT_LIST_HEAD(&sdev->starved_entry);
225         spin_lock_init(&sdev->list_lock);
226
227         sdev->sdev_gendev.parent = get_device(&starget->dev);
228         sdev->sdev_target = starget;
229
230         /* usually NULL and set by ->slave_alloc instead */
231         sdev->hostdata = hostdata;
232
233         /* if the device needs this changing, it may do so in the
234          * slave_configure function */
235         sdev->max_device_blocked = SCSI_DEFAULT_DEVICE_BLOCKED;
236
237         /*
238          * Some low level driver could use device->type
239          */
240         sdev->type = -1;
241
242         /*
243          * Assume that the device will have handshaking problems,
244          * and then fix this field later if it turns out it
245          * doesn't
246          */
247         sdev->borken = 1;
248
249         sdev->request_queue = scsi_alloc_queue(sdev);
250         if (!sdev->request_queue) {
251                 /* release fn is set up in scsi_sysfs_device_initialise, so
252                  * have to free and put manually here */
253                 put_device(&starget->dev);
254                 goto out;
255         }
256
257         sdev->request_queue->queuedata = sdev;
258         scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
259
260         scsi_sysfs_device_initialize(sdev);
261
262         if (shost->hostt->slave_alloc) {
263                 ret = shost->hostt->slave_alloc(sdev);
264                 if (ret) {
265                         /*
266                          * if LLDD reports slave not present, don't clutter
267                          * console with alloc failure messages
268                          */
269                         if (ret == -ENXIO)
270                                 display_failure_msg = 0;
271                         goto out_device_destroy;
272                 }
273         }
274
275         return sdev;
276
277 out_device_destroy:
278         transport_destroy_device(&sdev->sdev_gendev);
279         put_device(&sdev->sdev_gendev);
280 out:
281         if (display_failure_msg)
282                 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
283         return NULL;
284 }
285
286 static void scsi_target_dev_release(struct device *dev)
287 {
288         struct device *parent = dev->parent;
289         struct scsi_target *starget = to_scsi_target(dev);
290         struct Scsi_Host *shost = dev_to_shost(parent);
291
292         if (shost->hostt->target_destroy)
293                 shost->hostt->target_destroy(starget);
294         kfree(starget);
295         put_device(parent);
296 }
297
298 int scsi_is_target_device(const struct device *dev)
299 {
300         return dev->release == scsi_target_dev_release;
301 }
302 EXPORT_SYMBOL(scsi_is_target_device);
303
304 static struct scsi_target *__scsi_find_target(struct device *parent,
305                                               int channel, uint id)
306 {
307         struct scsi_target *starget, *found_starget = NULL;
308         struct Scsi_Host *shost = dev_to_shost(parent);
309         /*
310          * Search for an existing target for this sdev.
311          */
312         list_for_each_entry(starget, &shost->__targets, siblings) {
313                 if (starget->id == id &&
314                     starget->channel == channel) {
315                         found_starget = starget;
316                         break;
317                 }
318         }
319         if (found_starget)
320                 get_device(&found_starget->dev);
321
322         return found_starget;
323 }
324
325 static struct scsi_target *scsi_alloc_target(struct device *parent,
326                                              int channel, uint id)
327 {
328         struct Scsi_Host *shost = dev_to_shost(parent);
329         struct device *dev = NULL;
330         unsigned long flags;
331         const int size = sizeof(struct scsi_target)
332                 + shost->transportt->target_size;
333         struct scsi_target *starget;
334         struct scsi_target *found_target;
335         int error;
336
337         starget = kzalloc(size, GFP_KERNEL);
338         if (!starget) {
339                 printk(KERN_ERR "%s: allocation failure\n", __FUNCTION__);
340                 return NULL;
341         }
342         dev = &starget->dev;
343         device_initialize(dev);
344         starget->reap_ref = 1;
345         dev->parent = get_device(parent);
346         dev->release = scsi_target_dev_release;
347         sprintf(dev->bus_id, "target%d:%d:%d",
348                 shost->host_no, channel, id);
349         starget->id = id;
350         starget->channel = channel;
351         INIT_LIST_HEAD(&starget->siblings);
352         INIT_LIST_HEAD(&starget->devices);
353         starget->state = STARGET_RUNNING;
354  retry:
355         spin_lock_irqsave(shost->host_lock, flags);
356
357         found_target = __scsi_find_target(parent, channel, id);
358         if (found_target)
359                 goto found;
360
361         list_add_tail(&starget->siblings, &shost->__targets);
362         spin_unlock_irqrestore(shost->host_lock, flags);
363         /* allocate and add */
364         transport_setup_device(dev);
365         error = device_add(dev);
366         if (error) {
367                 dev_err(dev, "target device_add failed, error %d\n", error);
368                 spin_lock_irqsave(shost->host_lock, flags);
369                 list_del_init(&starget->siblings);
370                 spin_unlock_irqrestore(shost->host_lock, flags);
371                 transport_destroy_device(dev);
372                 put_device(parent);
373                 kfree(starget);
374                 return NULL;
375         }
376         transport_add_device(dev);
377         if (shost->hostt->target_alloc) {
378                 error = shost->hostt->target_alloc(starget);
379
380                 if(error) {
381                         dev_printk(KERN_ERR, dev, "target allocation failed, error %d\n", error);
382                         /* don't want scsi_target_reap to do the final
383                          * put because it will be under the host lock */
384                         get_device(dev);
385                         scsi_target_reap(starget);
386                         put_device(dev);
387                         return NULL;
388                 }
389         }
390
391         return starget;
392
393  found:
394         found_target->reap_ref++;
395         spin_unlock_irqrestore(shost->host_lock, flags);
396         put_device(parent);
397         if (found_target->state != STARGET_DEL) {
398                 kfree(starget);
399                 return found_target;
400         }
401         /* Unfortunately, we found a dying target; need to
402          * wait until it's dead before we can get a new one */
403         put_device(&found_target->dev);
404         flush_scheduled_work();
405         goto retry;
406 }
407
408 static void scsi_target_reap_usercontext(void *data)
409 {
410         struct scsi_target *starget = data;
411         struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
412         unsigned long flags;
413
414         transport_remove_device(&starget->dev);
415         device_del(&starget->dev);
416         transport_destroy_device(&starget->dev);
417         spin_lock_irqsave(shost->host_lock, flags);
418         list_del_init(&starget->siblings);
419         spin_unlock_irqrestore(shost->host_lock, flags);
420         put_device(&starget->dev);
421 }
422
423 /**
424  * scsi_target_reap - check to see if target is in use and destroy if not
425  *
426  * @starget: target to be checked
427  *
428  * This is used after removing a LUN or doing a last put of the target
429  * it checks atomically that nothing is using the target and removes
430  * it if so.
431  */
432 void scsi_target_reap(struct scsi_target *starget)
433 {
434         struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
435         unsigned long flags;
436
437         spin_lock_irqsave(shost->host_lock, flags);
438
439         if (--starget->reap_ref == 0 && list_empty(&starget->devices)) {
440                 BUG_ON(starget->state == STARGET_DEL);
441                 starget->state = STARGET_DEL;
442                 spin_unlock_irqrestore(shost->host_lock, flags);
443                 execute_in_process_context(scsi_target_reap_usercontext,
444                                            starget, &starget->ew);
445                 return;
446
447         }
448         spin_unlock_irqrestore(shost->host_lock, flags);
449
450         return;
451 }
452
453 /**
454  * scsi_probe_lun - probe a single LUN using a SCSI INQUIRY
455  * @sdev:       scsi_device to probe
456  * @inq_result: area to store the INQUIRY result
457  * @result_len: len of inq_result
458  * @bflags:     store any bflags found here
459  *
460  * Description:
461  *     Probe the lun associated with @req using a standard SCSI INQUIRY;
462  *
463  *     If the INQUIRY is successful, zero is returned and the
464  *     INQUIRY data is in @inq_result; the scsi_level and INQUIRY length
465  *     are copied to the scsi_device any flags value is stored in *@bflags.
466  **/
467 static int scsi_probe_lun(struct scsi_device *sdev, char *inq_result,
468                           int result_len, int *bflags)
469 {
470         unsigned char scsi_cmd[MAX_COMMAND_SIZE];
471         int first_inquiry_len, try_inquiry_len, next_inquiry_len;
472         int response_len = 0;
473         int pass, count, result;
474         struct scsi_sense_hdr sshdr;
475
476         *bflags = 0;
477
478         /* Perform up to 3 passes.  The first pass uses a conservative
479          * transfer length of 36 unless sdev->inquiry_len specifies a
480          * different value. */
481         first_inquiry_len = sdev->inquiry_len ? sdev->inquiry_len : 36;
482         try_inquiry_len = first_inquiry_len;
483         pass = 1;
484
485  next_pass:
486         SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
487                                 "scsi scan: INQUIRY pass %d length %d\n",
488                                 pass, try_inquiry_len));
489
490         /* Each pass gets up to three chances to ignore Unit Attention */
491         for (count = 0; count < 3; ++count) {
492                 memset(scsi_cmd, 0, 6);
493                 scsi_cmd[0] = INQUIRY;
494                 scsi_cmd[4] = (unsigned char) try_inquiry_len;
495
496                 memset(inq_result, 0, try_inquiry_len);
497
498                 result = scsi_execute_req(sdev,  scsi_cmd, DMA_FROM_DEVICE,
499                                           inq_result, try_inquiry_len, &sshdr,
500                                           HZ / 2 + HZ * scsi_inq_timeout, 3);
501
502                 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: INQUIRY %s "
503                                 "with code 0x%x\n",
504                                 result ? "failed" : "successful", result));
505
506                 if (result) {
507                         /*
508                          * not-ready to ready transition [asc/ascq=0x28/0x0]
509                          * or power-on, reset [asc/ascq=0x29/0x0], continue.
510                          * INQUIRY should not yield UNIT_ATTENTION
511                          * but many buggy devices do so anyway. 
512                          */
513                         if ((driver_byte(result) & DRIVER_SENSE) &&
514                             scsi_sense_valid(&sshdr)) {
515                                 if ((sshdr.sense_key == UNIT_ATTENTION) &&
516                                     ((sshdr.asc == 0x28) ||
517                                      (sshdr.asc == 0x29)) &&
518                                     (sshdr.ascq == 0))
519                                         continue;
520                         }
521                 }
522                 break;
523         }
524
525         if (result == 0) {
526                 response_len = (unsigned char) inq_result[4] + 5;
527                 if (response_len > 255)
528                         response_len = first_inquiry_len;       /* sanity */
529
530                 /*
531                  * Get any flags for this device.
532                  *
533                  * XXX add a bflags to scsi_device, and replace the
534                  * corresponding bit fields in scsi_device, so bflags
535                  * need not be passed as an argument.
536                  */
537                 *bflags = scsi_get_device_flags(sdev, &inq_result[8],
538                                 &inq_result[16]);
539
540                 /* When the first pass succeeds we gain information about
541                  * what larger transfer lengths might work. */
542                 if (pass == 1) {
543                         if (BLIST_INQUIRY_36 & *bflags)
544                                 next_inquiry_len = 36;
545                         else if (BLIST_INQUIRY_58 & *bflags)
546                                 next_inquiry_len = 58;
547                         else if (sdev->inquiry_len)
548                                 next_inquiry_len = sdev->inquiry_len;
549                         else
550                                 next_inquiry_len = response_len;
551
552                         /* If more data is available perform the second pass */
553                         if (next_inquiry_len > try_inquiry_len) {
554                                 try_inquiry_len = next_inquiry_len;
555                                 pass = 2;
556                                 goto next_pass;
557                         }
558                 }
559
560         } else if (pass == 2) {
561                 printk(KERN_INFO "scsi scan: %d byte inquiry failed.  "
562                                 "Consider BLIST_INQUIRY_36 for this device\n",
563                                 try_inquiry_len);
564
565                 /* If this pass failed, the third pass goes back and transfers
566                  * the same amount as we successfully got in the first pass. */
567                 try_inquiry_len = first_inquiry_len;
568                 pass = 3;
569                 goto next_pass;
570         }
571
572         /* If the last transfer attempt got an error, assume the
573          * peripheral doesn't exist or is dead. */
574         if (result)
575                 return -EIO;
576
577         /* Don't report any more data than the device says is valid */
578         sdev->inquiry_len = min(try_inquiry_len, response_len);
579
580         /*
581          * XXX Abort if the response length is less than 36? If less than
582          * 32, the lookup of the device flags (above) could be invalid,
583          * and it would be possible to take an incorrect action - we do
584          * not want to hang because of a short INQUIRY. On the flip side,
585          * if the device is spun down or becoming ready (and so it gives a
586          * short INQUIRY), an abort here prevents any further use of the
587          * device, including spin up.
588          *
589          * Related to the above issue:
590          *
591          * XXX Devices (disk or all?) should be sent a TEST UNIT READY,
592          * and if not ready, sent a START_STOP to start (maybe spin up) and
593          * then send the INQUIRY again, since the INQUIRY can change after
594          * a device is initialized.
595          *
596          * Ideally, start a device if explicitly asked to do so.  This
597          * assumes that a device is spun up on power on, spun down on
598          * request, and then spun up on request.
599          */
600
601         /*
602          * The scanning code needs to know the scsi_level, even if no
603          * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so
604          * non-zero LUNs can be scanned.
605          */
606         sdev->scsi_level = inq_result[2] & 0x07;
607         if (sdev->scsi_level >= 2 ||
608             (sdev->scsi_level == 1 && (inq_result[3] & 0x0f) == 1))
609                 sdev->scsi_level++;
610         sdev->sdev_target->scsi_level = sdev->scsi_level;
611
612         return 0;
613 }
614
615 /**
616  * scsi_add_lun - allocate and fully initialze a scsi_device
617  * @sdevscan:   holds information to be stored in the new scsi_device
618  * @sdevnew:    store the address of the newly allocated scsi_device
619  * @inq_result: holds the result of a previous INQUIRY to the LUN
620  * @bflags:     black/white list flag
621  *
622  * Description:
623  *     Allocate and initialize a scsi_device matching sdevscan. Optionally
624  *     set fields based on values in *@bflags. If @sdevnew is not
625  *     NULL, store the address of the new scsi_device in *@sdevnew (needed
626  *     when scanning a particular LUN).
627  *
628  * Return:
629  *     SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
630  *     SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
631  **/
632 static int scsi_add_lun(struct scsi_device *sdev, char *inq_result, int *bflags)
633 {
634         /*
635          * XXX do not save the inquiry, since it can change underneath us,
636          * save just vendor/model/rev.
637          *
638          * Rather than save it and have an ioctl that retrieves the saved
639          * value, have an ioctl that executes the same INQUIRY code used
640          * in scsi_probe_lun, let user level programs doing INQUIRY
641          * scanning run at their own risk, or supply a user level program
642          * that can correctly scan.
643          */
644         sdev->inquiry = kmalloc(sdev->inquiry_len, GFP_ATOMIC);
645         if (sdev->inquiry == NULL) {
646                 return SCSI_SCAN_NO_RESPONSE;
647         }
648
649         memcpy(sdev->inquiry, inq_result, sdev->inquiry_len);
650         sdev->vendor = (char *) (sdev->inquiry + 8);
651         sdev->model = (char *) (sdev->inquiry + 16);
652         sdev->rev = (char *) (sdev->inquiry + 32);
653
654         if (*bflags & BLIST_ISROM) {
655                 /*
656                  * It would be better to modify sdev->type, and set
657                  * sdev->removable, but then the print_inquiry() output
658                  * would not show TYPE_ROM; if print_inquiry() is removed
659                  * the issue goes away.
660                  */
661                 inq_result[0] = TYPE_ROM;
662                 inq_result[1] |= 0x80;  /* removable */
663         } else if (*bflags & BLIST_NO_ULD_ATTACH)
664                 sdev->no_uld_attach = 1;
665
666         switch (sdev->type = (inq_result[0] & 0x1f)) {
667         case TYPE_TAPE:
668         case TYPE_DISK:
669         case TYPE_PRINTER:
670         case TYPE_MOD:
671         case TYPE_PROCESSOR:
672         case TYPE_SCANNER:
673         case TYPE_MEDIUM_CHANGER:
674         case TYPE_ENCLOSURE:
675         case TYPE_COMM:
676         case TYPE_RBC:
677                 sdev->writeable = 1;
678                 break;
679         case TYPE_WORM:
680         case TYPE_ROM:
681                 sdev->writeable = 0;
682                 break;
683         default:
684                 printk(KERN_INFO "scsi: unknown device type %d\n", sdev->type);
685         }
686
687         print_inquiry(inq_result);
688
689         /*
690          * For a peripheral qualifier (PQ) value of 1 (001b), the SCSI
691          * spec says: The device server is capable of supporting the
692          * specified peripheral device type on this logical unit. However,
693          * the physical device is not currently connected to this logical
694          * unit.
695          *
696          * The above is vague, as it implies that we could treat 001 and
697          * 011 the same. Stay compatible with previous code, and create a
698          * scsi_device for a PQ of 1
699          *
700          * Don't set the device offline here; rather let the upper
701          * level drivers eval the PQ to decide whether they should
702          * attach. So remove ((inq_result[0] >> 5) & 7) == 1 check.
703          */ 
704
705         sdev->inq_periph_qual = (inq_result[0] >> 5) & 7;
706         sdev->removable = (0x80 & inq_result[1]) >> 7;
707         sdev->lockable = sdev->removable;
708         sdev->soft_reset = (inq_result[7] & 1) && ((inq_result[3] & 7) == 2);
709
710         if (sdev->scsi_level >= SCSI_3 || (sdev->inquiry_len > 56 &&
711                 inq_result[56] & 0x04))
712                 sdev->ppr = 1;
713         if (inq_result[7] & 0x60)
714                 sdev->wdtr = 1;
715         if (inq_result[7] & 0x10)
716                 sdev->sdtr = 1;
717
718         /*
719          * End sysfs code.
720          */
721
722         if ((sdev->scsi_level >= SCSI_2) && (inq_result[7] & 2) &&
723             !(*bflags & BLIST_NOTQ))
724                 sdev->tagged_supported = 1;
725         /*
726          * Some devices (Texel CD ROM drives) have handshaking problems
727          * when used with the Seagate controllers. borken is initialized
728          * to 1, and then set it to 0 here.
729          */
730         if ((*bflags & BLIST_BORKEN) == 0)
731                 sdev->borken = 0;
732
733         /*
734          * Apparently some really broken devices (contrary to the SCSI
735          * standards) need to be selected without asserting ATN
736          */
737         if (*bflags & BLIST_SELECT_NO_ATN)
738                 sdev->select_no_atn = 1;
739
740         /*
741          * Some devices may not want to have a start command automatically
742          * issued when a device is added.
743          */
744         if (*bflags & BLIST_NOSTARTONADD)
745                 sdev->no_start_on_add = 1;
746
747         if (*bflags & BLIST_SINGLELUN)
748                 sdev->single_lun = 1;
749
750
751         sdev->use_10_for_rw = 1;
752
753         if (*bflags & BLIST_MS_SKIP_PAGE_08)
754                 sdev->skip_ms_page_8 = 1;
755
756         if (*bflags & BLIST_MS_SKIP_PAGE_3F)
757                 sdev->skip_ms_page_3f = 1;
758
759         if (*bflags & BLIST_USE_10_BYTE_MS)
760                 sdev->use_10_for_ms = 1;
761
762         /* set the device running here so that slave configure
763          * may do I/O */
764         scsi_device_set_state(sdev, SDEV_RUNNING);
765
766         if (*bflags & BLIST_MS_192_BYTES_FOR_3F)
767                 sdev->use_192_bytes_for_3f = 1;
768
769         if (*bflags & BLIST_NOT_LOCKABLE)
770                 sdev->lockable = 0;
771
772         if (*bflags & BLIST_RETRY_HWERROR)
773                 sdev->retry_hwerror = 1;
774
775         transport_configure_device(&sdev->sdev_gendev);
776
777         if (sdev->host->hostt->slave_configure)
778                 sdev->host->hostt->slave_configure(sdev);
779
780         /*
781          * Ok, the device is now all set up, we can
782          * register it and tell the rest of the kernel
783          * about it.
784          */
785         if (scsi_sysfs_add_sdev(sdev) != 0)
786                 return SCSI_SCAN_NO_RESPONSE;
787
788         return SCSI_SCAN_LUN_PRESENT;
789 }
790
791 static inline void scsi_destroy_sdev(struct scsi_device *sdev)
792 {
793         if (sdev->host->hostt->slave_destroy)
794                 sdev->host->hostt->slave_destroy(sdev);
795         transport_destroy_device(&sdev->sdev_gendev);
796         put_device(&sdev->sdev_gendev);
797 }
798
799
800 /**
801  * scsi_probe_and_add_lun - probe a LUN, if a LUN is found add it
802  * @starget:    pointer to target device structure
803  * @lun:        LUN of target device
804  * @sdevscan:   probe the LUN corresponding to this scsi_device
805  * @sdevnew:    store the value of any new scsi_device allocated
806  * @bflagsp:    store bflags here if not NULL
807  *
808  * Description:
809  *     Call scsi_probe_lun, if a LUN with an attached device is found,
810  *     allocate and set it up by calling scsi_add_lun.
811  *
812  * Return:
813  *     SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
814  *     SCSI_SCAN_TARGET_PRESENT: target responded, but no device is
815  *         attached at the LUN
816  *     SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
817  **/
818 static int scsi_probe_and_add_lun(struct scsi_target *starget,
819                                   uint lun, int *bflagsp,
820                                   struct scsi_device **sdevp, int rescan,
821                                   void *hostdata)
822 {
823         struct scsi_device *sdev;
824         unsigned char *result;
825         int bflags, res = SCSI_SCAN_NO_RESPONSE, result_len = 256;
826         struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
827
828         /*
829          * The rescan flag is used as an optimization, the first scan of a
830          * host adapter calls into here with rescan == 0.
831          */
832         sdev = scsi_device_lookup_by_target(starget, lun);
833         if (sdev) {
834                 if (rescan || sdev->sdev_state != SDEV_CREATED) {
835                         SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
836                                 "scsi scan: device exists on %s\n",
837                                 sdev->sdev_gendev.bus_id));
838                         if (sdevp)
839                                 *sdevp = sdev;
840                         else
841                                 scsi_device_put(sdev);
842
843                         if (bflagsp)
844                                 *bflagsp = scsi_get_device_flags(sdev,
845                                                                  sdev->vendor,
846                                                                  sdev->model);
847                         return SCSI_SCAN_LUN_PRESENT;
848                 }
849                 scsi_device_put(sdev);
850         } else
851                 sdev = scsi_alloc_sdev(starget, lun, hostdata);
852         if (!sdev)
853                 goto out;
854
855         result = kmalloc(result_len, GFP_ATOMIC |
856                         ((shost->unchecked_isa_dma) ? __GFP_DMA : 0));
857         if (!result)
858                 goto out_free_sdev;
859
860         if (scsi_probe_lun(sdev, result, result_len, &bflags))
861                 goto out_free_result;
862
863         /*
864          * result contains valid SCSI INQUIRY data.
865          */
866         if ((result[0] >> 5) == 3) {
867                 /*
868                  * For a Peripheral qualifier 3 (011b), the SCSI
869                  * spec says: The device server is not capable of
870                  * supporting a physical device on this logical
871                  * unit.
872                  *
873                  * For disks, this implies that there is no
874                  * logical disk configured at sdev->lun, but there
875                  * is a target id responding.
876                  */
877                 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
878                                         "scsi scan: peripheral qualifier of 3,"
879                                         " no device added\n"));
880                 res = SCSI_SCAN_TARGET_PRESENT;
881                 goto out_free_result;
882         }
883
884         /*
885          * Non-standard SCSI targets may set the PDT to 0x1f (unknown or
886          * no device type) instead of using the Peripheral Qualifier to
887          * indicate that no LUN is present.  For example, USB UFI does this.
888          */
889         if (starget->pdt_1f_for_no_lun && (result[0] & 0x1f) == 0x1f) {
890                 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
891                                         "scsi scan: peripheral device type"
892                                         " of 31, no device added\n"));
893                 res = SCSI_SCAN_TARGET_PRESENT;
894                 goto out_free_result;
895         }
896
897         res = scsi_add_lun(sdev, result, &bflags);
898         if (res == SCSI_SCAN_LUN_PRESENT) {
899                 if (bflags & BLIST_KEY) {
900                         sdev->lockable = 0;
901                         scsi_unlock_floptical(sdev, result);
902                 }
903                 if (bflagsp)
904                         *bflagsp = bflags;
905         }
906
907  out_free_result:
908         kfree(result);
909  out_free_sdev:
910         if (res == SCSI_SCAN_LUN_PRESENT) {
911                 if (sdevp) {
912                         if (scsi_device_get(sdev) == 0) {
913                                 *sdevp = sdev;
914                         } else {
915                                 __scsi_remove_device(sdev);
916                                 res = SCSI_SCAN_NO_RESPONSE;
917                         }
918                 }
919         } else
920                 scsi_destroy_sdev(sdev);
921  out:
922         return res;
923 }
924
925 /**
926  * scsi_sequential_lun_scan - sequentially scan a SCSI target
927  * @starget:    pointer to target structure to scan
928  * @bflags:     black/white list flag for LUN 0
929  * @lun0_res:   result of scanning LUN 0
930  *
931  * Description:
932  *     Generally, scan from LUN 1 (LUN 0 is assumed to already have been
933  *     scanned) to some maximum lun until a LUN is found with no device
934  *     attached. Use the bflags to figure out any oddities.
935  *
936  *     Modifies sdevscan->lun.
937  **/
938 static void scsi_sequential_lun_scan(struct scsi_target *starget,
939                                      int bflags, int lun0_res, int scsi_level,
940                                      int rescan)
941 {
942         unsigned int sparse_lun, lun, max_dev_lun;
943         struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
944
945         SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: Sequential scan of"
946                                     "%s\n", starget->dev.bus_id));
947
948         max_dev_lun = min(max_scsi_luns, shost->max_lun);
949         /*
950          * If this device is known to support sparse multiple units,
951          * override the other settings, and scan all of them. Normally,
952          * SCSI-3 devices should be scanned via the REPORT LUNS.
953          */
954         if (bflags & BLIST_SPARSELUN) {
955                 max_dev_lun = shost->max_lun;
956                 sparse_lun = 1;
957         } else
958                 sparse_lun = 0;
959
960         /*
961          * If not sparse lun and no device attached at LUN 0 do not scan
962          * any further.
963          */
964         if (!sparse_lun && (lun0_res != SCSI_SCAN_LUN_PRESENT))
965                 return;
966
967         /*
968          * If less than SCSI_1_CSS, and no special lun scaning, stop
969          * scanning; this matches 2.4 behaviour, but could just be a bug
970          * (to continue scanning a SCSI_1_CSS device).
971          *
972          * This test is broken.  We might not have any device on lun0 for
973          * a sparselun device, and if that's the case then how would we
974          * know the real scsi_level, eh?  It might make sense to just not
975          * scan any SCSI_1 device for non-0 luns, but that check would best
976          * go into scsi_alloc_sdev() and just have it return null when asked
977          * to alloc an sdev for lun > 0 on an already found SCSI_1 device.
978          *
979         if ((sdevscan->scsi_level < SCSI_1_CCS) &&
980             ((bflags & (BLIST_FORCELUN | BLIST_SPARSELUN | BLIST_MAX5LUN))
981              == 0))
982                 return;
983          */
984         /*
985          * If this device is known to support multiple units, override
986          * the other settings, and scan all of them.
987          */
988         if (bflags & BLIST_FORCELUN)
989                 max_dev_lun = shost->max_lun;
990         /*
991          * REGAL CDC-4X: avoid hang after LUN 4
992          */
993         if (bflags & BLIST_MAX5LUN)
994                 max_dev_lun = min(5U, max_dev_lun);
995         /*
996          * Do not scan SCSI-2 or lower device past LUN 7, unless
997          * BLIST_LARGELUN.
998          */
999         if (scsi_level < SCSI_3 && !(bflags & BLIST_LARGELUN))
1000                 max_dev_lun = min(8U, max_dev_lun);
1001
1002         /*
1003          * We have already scanned LUN 0, so start at LUN 1. Keep scanning
1004          * until we reach the max, or no LUN is found and we are not
1005          * sparse_lun.
1006          */
1007         for (lun = 1; lun < max_dev_lun; ++lun)
1008                 if ((scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan,
1009                                             NULL) != SCSI_SCAN_LUN_PRESENT) &&
1010                     !sparse_lun)
1011                         return;
1012 }
1013
1014 /**
1015  * scsilun_to_int: convert a scsi_lun to an int
1016  * @scsilun:    struct scsi_lun to be converted.
1017  *
1018  * Description:
1019  *     Convert @scsilun from a struct scsi_lun to a four byte host byte-ordered
1020  *     integer, and return the result. The caller must check for
1021  *     truncation before using this function.
1022  *
1023  * Notes:
1024  *     The struct scsi_lun is assumed to be four levels, with each level
1025  *     effectively containing a SCSI byte-ordered (big endian) short; the
1026  *     addressing bits of each level are ignored (the highest two bits).
1027  *     For a description of the LUN format, post SCSI-3 see the SCSI
1028  *     Architecture Model, for SCSI-3 see the SCSI Controller Commands.
1029  *
1030  *     Given a struct scsi_lun of: 0a 04 0b 03 00 00 00 00, this function returns
1031  *     the integer: 0x0b030a04
1032  **/
1033 static int scsilun_to_int(struct scsi_lun *scsilun)
1034 {
1035         int i;
1036         unsigned int lun;
1037
1038         lun = 0;
1039         for (i = 0; i < sizeof(lun); i += 2)
1040                 lun = lun | (((scsilun->scsi_lun[i] << 8) |
1041                               scsilun->scsi_lun[i + 1]) << (i * 8));
1042         return lun;
1043 }
1044
1045 /**
1046  * int_to_scsilun: reverts an int into a scsi_lun
1047  * @int:        integer to be reverted
1048  * @scsilun:    struct scsi_lun to be set.
1049  *
1050  * Description:
1051  *     Reverts the functionality of the scsilun_to_int, which packed
1052  *     an 8-byte lun value into an int. This routine unpacks the int
1053  *     back into the lun value.
1054  *     Note: the scsilun_to_int() routine does not truly handle all
1055  *     8bytes of the lun value. This functions restores only as much
1056  *     as was set by the routine.
1057  *
1058  * Notes:
1059  *     Given an integer : 0x0b030a04,  this function returns a
1060  *     scsi_lun of : struct scsi_lun of: 0a 04 0b 03 00 00 00 00
1061  *
1062  **/
1063 void int_to_scsilun(unsigned int lun, struct scsi_lun *scsilun)
1064 {
1065         int i;
1066
1067         memset(scsilun->scsi_lun, 0, sizeof(scsilun->scsi_lun));
1068
1069         for (i = 0; i < sizeof(lun); i += 2) {
1070                 scsilun->scsi_lun[i] = (lun >> 8) & 0xFF;
1071                 scsilun->scsi_lun[i+1] = lun & 0xFF;
1072                 lun = lun >> 16;
1073         }
1074 }
1075 EXPORT_SYMBOL(int_to_scsilun);
1076
1077 /**
1078  * scsi_report_lun_scan - Scan using SCSI REPORT LUN results
1079  * @sdevscan:   scan the host, channel, and id of this scsi_device
1080  *
1081  * Description:
1082  *     If @sdevscan is for a SCSI-3 or up device, send a REPORT LUN
1083  *     command, and scan the resulting list of LUNs by calling
1084  *     scsi_probe_and_add_lun.
1085  *
1086  *     Modifies sdevscan->lun.
1087  *
1088  * Return:
1089  *     0: scan completed (or no memory, so further scanning is futile)
1090  *     1: no report lun scan, or not configured
1091  **/
1092 static int scsi_report_lun_scan(struct scsi_target *starget, int bflags,
1093                                 int rescan)
1094 {
1095         char devname[64];
1096         unsigned char scsi_cmd[MAX_COMMAND_SIZE];
1097         unsigned int length;
1098         unsigned int lun;
1099         unsigned int num_luns;
1100         unsigned int retries;
1101         int result;
1102         struct scsi_lun *lunp, *lun_data;
1103         u8 *data;
1104         struct scsi_sense_hdr sshdr;
1105         struct scsi_device *sdev;
1106         struct Scsi_Host *shost = dev_to_shost(&starget->dev);
1107         int ret = 0;
1108
1109         /*
1110          * Only support SCSI-3 and up devices if BLIST_NOREPORTLUN is not set.
1111          * Also allow SCSI-2 if BLIST_REPORTLUN2 is set and host adapter does
1112          * support more than 8 LUNs.
1113          */
1114         if ((bflags & BLIST_NOREPORTLUN) || 
1115              starget->scsi_level < SCSI_2 ||
1116             (starget->scsi_level < SCSI_3 && 
1117              (!(bflags & BLIST_REPORTLUN2) || shost->max_lun <= 8)) )
1118                 return 1;
1119         if (bflags & BLIST_NOLUN)
1120                 return 0;
1121
1122         if (!(sdev = scsi_device_lookup_by_target(starget, 0))) {
1123                 sdev = scsi_alloc_sdev(starget, 0, NULL);
1124                 if (!sdev)
1125                         return 0;
1126                 if (scsi_device_get(sdev))
1127                         return 0;
1128         }
1129
1130         sprintf(devname, "host %d channel %d id %d",
1131                 shost->host_no, sdev->channel, sdev->id);
1132
1133         /*
1134          * Allocate enough to hold the header (the same size as one scsi_lun)
1135          * plus the max number of luns we are requesting.
1136          *
1137          * Reallocating and trying again (with the exact amount we need)
1138          * would be nice, but then we need to somehow limit the size
1139          * allocated based on the available memory and the limits of
1140          * kmalloc - we don't want a kmalloc() failure of a huge value to
1141          * prevent us from finding any LUNs on this target.
1142          */
1143         length = (max_scsi_report_luns + 1) * sizeof(struct scsi_lun);
1144         lun_data = kmalloc(length, GFP_ATOMIC |
1145                            (sdev->host->unchecked_isa_dma ? __GFP_DMA : 0));
1146         if (!lun_data) {
1147                 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
1148                 goto out;
1149         }
1150
1151         scsi_cmd[0] = REPORT_LUNS;
1152
1153         /*
1154          * bytes 1 - 5: reserved, set to zero.
1155          */
1156         memset(&scsi_cmd[1], 0, 5);
1157
1158         /*
1159          * bytes 6 - 9: length of the command.
1160          */
1161         scsi_cmd[6] = (unsigned char) (length >> 24) & 0xff;
1162         scsi_cmd[7] = (unsigned char) (length >> 16) & 0xff;
1163         scsi_cmd[8] = (unsigned char) (length >> 8) & 0xff;
1164         scsi_cmd[9] = (unsigned char) length & 0xff;
1165
1166         scsi_cmd[10] = 0;       /* reserved */
1167         scsi_cmd[11] = 0;       /* control */
1168
1169         /*
1170          * We can get a UNIT ATTENTION, for example a power on/reset, so
1171          * retry a few times (like sd.c does for TEST UNIT READY).
1172          * Experience shows some combinations of adapter/devices get at
1173          * least two power on/resets.
1174          *
1175          * Illegal requests (for devices that do not support REPORT LUNS)
1176          * should come through as a check condition, and will not generate
1177          * a retry.
1178          */
1179         for (retries = 0; retries < 3; retries++) {
1180                 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: Sending"
1181                                 " REPORT LUNS to %s (try %d)\n", devname,
1182                                 retries));
1183
1184                 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
1185                                           lun_data, length, &sshdr,
1186                                           SCSI_TIMEOUT + 4 * HZ, 3);
1187
1188                 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: REPORT LUNS"
1189                                 " %s (try %d) result 0x%x\n", result
1190                                 ?  "failed" : "successful", retries, result));
1191                 if (result == 0)
1192                         break;
1193                 else if (scsi_sense_valid(&sshdr)) {
1194                         if (sshdr.sense_key != UNIT_ATTENTION)
1195                                 break;
1196                 }
1197         }
1198
1199         if (result) {
1200                 /*
1201                  * The device probably does not support a REPORT LUN command
1202                  */
1203                 ret = 1;
1204                 goto out_err;
1205         }
1206
1207         /*
1208          * Get the length from the first four bytes of lun_data.
1209          */
1210         data = (u8 *) lun_data->scsi_lun;
1211         length = ((data[0] << 24) | (data[1] << 16) |
1212                   (data[2] << 8) | (data[3] << 0));
1213
1214         num_luns = (length / sizeof(struct scsi_lun));
1215         if (num_luns > max_scsi_report_luns) {
1216                 printk(KERN_WARNING "scsi: On %s only %d (max_scsi_report_luns)"
1217                        " of %d luns reported, try increasing"
1218                        " max_scsi_report_luns.\n", devname,
1219                        max_scsi_report_luns, num_luns);
1220                 num_luns = max_scsi_report_luns;
1221         }
1222
1223         SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1224                 "scsi scan: REPORT LUN scan\n"));
1225
1226         /*
1227          * Scan the luns in lun_data. The entry at offset 0 is really
1228          * the header, so start at 1 and go up to and including num_luns.
1229          */
1230         for (lunp = &lun_data[1]; lunp <= &lun_data[num_luns]; lunp++) {
1231                 lun = scsilun_to_int(lunp);
1232
1233                 /*
1234                  * Check if the unused part of lunp is non-zero, and so
1235                  * does not fit in lun.
1236                  */
1237                 if (memcmp(&lunp->scsi_lun[sizeof(lun)], "\0\0\0\0", 4)) {
1238                         int i;
1239
1240                         /*
1241                          * Output an error displaying the LUN in byte order,
1242                          * this differs from what linux would print for the
1243                          * integer LUN value.
1244                          */
1245                         printk(KERN_WARNING "scsi: %s lun 0x", devname);
1246                         data = (char *)lunp->scsi_lun;
1247                         for (i = 0; i < sizeof(struct scsi_lun); i++)
1248                                 printk("%02x", data[i]);
1249                         printk(" has a LUN larger than currently supported.\n");
1250                 } else if (lun > sdev->host->max_lun) {
1251                         printk(KERN_WARNING "scsi: %s lun%d has a LUN larger"
1252                                " than allowed by the host adapter\n",
1253                                devname, lun);
1254                 } else {
1255                         int res;
1256
1257                         res = scsi_probe_and_add_lun(starget,
1258                                 lun, NULL, NULL, rescan, NULL);
1259                         if (res == SCSI_SCAN_NO_RESPONSE) {
1260                                 /*
1261                                  * Got some results, but now none, abort.
1262                                  */
1263                                 sdev_printk(KERN_ERR, sdev,
1264                                         "Unexpected response"
1265                                         " from lun %d while scanning, scan"
1266                                         " aborted\n", lun);
1267                                 break;
1268                         }
1269                 }
1270         }
1271
1272  out_err:
1273         kfree(lun_data);
1274  out:
1275         scsi_device_put(sdev);
1276         if (sdev->sdev_state == SDEV_CREATED)
1277                 /*
1278                  * the sdev we used didn't appear in the report luns scan
1279                  */
1280                 scsi_destroy_sdev(sdev);
1281         return ret;
1282 }
1283
1284 struct scsi_device *__scsi_add_device(struct Scsi_Host *shost, uint channel,
1285                                       uint id, uint lun, void *hostdata)
1286 {
1287         struct scsi_device *sdev = ERR_PTR(-ENODEV);
1288         struct device *parent = &shost->shost_gendev;
1289         struct scsi_target *starget;
1290
1291         starget = scsi_alloc_target(parent, channel, id);
1292         if (!starget)
1293                 return ERR_PTR(-ENOMEM);
1294
1295         get_device(&starget->dev);
1296         mutex_lock(&shost->scan_mutex);
1297         if (scsi_host_scan_allowed(shost))
1298                 scsi_probe_and_add_lun(starget, lun, NULL, &sdev, 1, hostdata);
1299         mutex_unlock(&shost->scan_mutex);
1300         scsi_target_reap(starget);
1301         put_device(&starget->dev);
1302
1303         return sdev;
1304 }
1305 EXPORT_SYMBOL(__scsi_add_device);
1306
1307 int scsi_add_device(struct Scsi_Host *host, uint channel,
1308                     uint target, uint lun)
1309 {
1310         struct scsi_device *sdev = 
1311                 __scsi_add_device(host, channel, target, lun, NULL);
1312         if (IS_ERR(sdev))
1313                 return PTR_ERR(sdev);
1314
1315         scsi_device_put(sdev);
1316         return 0;
1317 }
1318 EXPORT_SYMBOL(scsi_add_device);
1319
1320 void scsi_rescan_device(struct device *dev)
1321 {
1322         struct scsi_driver *drv;
1323         
1324         if (!dev->driver)
1325                 return;
1326
1327         drv = to_scsi_driver(dev->driver);
1328         if (try_module_get(drv->owner)) {
1329                 if (drv->rescan)
1330                         drv->rescan(dev);
1331                 module_put(drv->owner);
1332         }
1333 }
1334 EXPORT_SYMBOL(scsi_rescan_device);
1335
1336 static void __scsi_scan_target(struct device *parent, unsigned int channel,
1337                 unsigned int id, unsigned int lun, int rescan)
1338 {
1339         struct Scsi_Host *shost = dev_to_shost(parent);
1340         int bflags = 0;
1341         int res;
1342         struct scsi_target *starget;
1343
1344         if (shost->this_id == id)
1345                 /*
1346                  * Don't scan the host adapter
1347                  */
1348                 return;
1349
1350         starget = scsi_alloc_target(parent, channel, id);
1351         if (!starget)
1352                 return;
1353
1354         get_device(&starget->dev);
1355         if (lun != SCAN_WILD_CARD) {
1356                 /*
1357                  * Scan for a specific host/chan/id/lun.
1358                  */
1359                 scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan, NULL);
1360                 goto out_reap;
1361         }
1362
1363         /*
1364          * Scan LUN 0, if there is some response, scan further. Ideally, we
1365          * would not configure LUN 0 until all LUNs are scanned.
1366          */
1367         res = scsi_probe_and_add_lun(starget, 0, &bflags, NULL, rescan, NULL);
1368         if (res == SCSI_SCAN_LUN_PRESENT || res == SCSI_SCAN_TARGET_PRESENT) {
1369                 if (scsi_report_lun_scan(starget, bflags, rescan) != 0)
1370                         /*
1371                          * The REPORT LUN did not scan the target,
1372                          * do a sequential scan.
1373                          */
1374                         scsi_sequential_lun_scan(starget, bflags,
1375                                         res, starget->scsi_level, rescan);
1376         }
1377
1378  out_reap:
1379         /* now determine if the target has any children at all
1380          * and if not, nuke it */
1381         scsi_target_reap(starget);
1382
1383         put_device(&starget->dev);
1384 }
1385
1386 /**
1387  * scsi_scan_target - scan a target id, possibly including all LUNs on the
1388  *     target.
1389  * @parent:     host to scan
1390  * @channel:    channel to scan
1391  * @id:         target id to scan
1392  * @lun:        Specific LUN to scan or SCAN_WILD_CARD
1393  * @rescan:     passed to LUN scanning routines
1394  *
1395  * Description:
1396  *     Scan the target id on @parent, @channel, and @id. Scan at least LUN 0,
1397  *     and possibly all LUNs on the target id.
1398  *
1399  *     First try a REPORT LUN scan, if that does not scan the target, do a
1400  *     sequential scan of LUNs on the target id.
1401  **/
1402 void scsi_scan_target(struct device *parent, unsigned int channel,
1403                       unsigned int id, unsigned int lun, int rescan)
1404 {
1405         struct Scsi_Host *shost = dev_to_shost(parent);
1406
1407         mutex_lock(&shost->scan_mutex);
1408         if (scsi_host_scan_allowed(shost))
1409                 __scsi_scan_target(parent, channel, id, lun, rescan);
1410         mutex_unlock(&shost->scan_mutex);
1411 }
1412 EXPORT_SYMBOL(scsi_scan_target);
1413
1414 static void scsi_scan_channel(struct Scsi_Host *shost, unsigned int channel,
1415                               unsigned int id, unsigned int lun, int rescan)
1416 {
1417         uint order_id;
1418
1419         if (id == SCAN_WILD_CARD)
1420                 for (id = 0; id < shost->max_id; ++id) {
1421                         /*
1422                          * XXX adapter drivers when possible (FCP, iSCSI)
1423                          * could modify max_id to match the current max,
1424                          * not the absolute max.
1425                          *
1426                          * XXX add a shost id iterator, so for example,
1427                          * the FC ID can be the same as a target id
1428                          * without a huge overhead of sparse id's.
1429                          */
1430                         if (shost->reverse_ordering)
1431                                 /*
1432                                  * Scan from high to low id.
1433                                  */
1434                                 order_id = shost->max_id - id - 1;
1435                         else
1436                                 order_id = id;
1437                         __scsi_scan_target(&shost->shost_gendev, channel,
1438                                         order_id, lun, rescan);
1439                 }
1440         else
1441                 __scsi_scan_target(&shost->shost_gendev, channel,
1442                                 id, lun, rescan);
1443 }
1444
1445 int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel,
1446                             unsigned int id, unsigned int lun, int rescan)
1447 {
1448         SCSI_LOG_SCAN_BUS(3, shost_printk (KERN_INFO, shost,
1449                 "%s: <%u:%u:%u>\n",
1450                 __FUNCTION__, channel, id, lun));
1451
1452         if (((channel != SCAN_WILD_CARD) && (channel > shost->max_channel)) ||
1453             ((id != SCAN_WILD_CARD) && (id > shost->max_id)) ||
1454             ((lun != SCAN_WILD_CARD) && (lun > shost->max_lun)))
1455                 return -EINVAL;
1456
1457         mutex_lock(&shost->scan_mutex);
1458         if (scsi_host_scan_allowed(shost)) {
1459                 if (channel == SCAN_WILD_CARD)
1460                         for (channel = 0; channel <= shost->max_channel;
1461                              channel++)
1462                                 scsi_scan_channel(shost, channel, id, lun,
1463                                                   rescan);
1464                 else
1465                         scsi_scan_channel(shost, channel, id, lun, rescan);
1466         }
1467         mutex_unlock(&shost->scan_mutex);
1468
1469         return 0;
1470 }
1471
1472 /**
1473  * scsi_scan_host - scan the given adapter
1474  * @shost:      adapter to scan
1475  **/
1476 void scsi_scan_host(struct Scsi_Host *shost)
1477 {
1478         scsi_scan_host_selected(shost, SCAN_WILD_CARD, SCAN_WILD_CARD,
1479                                 SCAN_WILD_CARD, 0);
1480 }
1481 EXPORT_SYMBOL(scsi_scan_host);
1482
1483 void scsi_forget_host(struct Scsi_Host *shost)
1484 {
1485         struct scsi_device *sdev;
1486         unsigned long flags;
1487
1488  restart:
1489         spin_lock_irqsave(shost->host_lock, flags);
1490         list_for_each_entry(sdev, &shost->__devices, siblings) {
1491                 if (sdev->sdev_state == SDEV_DEL)
1492                         continue;
1493                 spin_unlock_irqrestore(shost->host_lock, flags);
1494                 __scsi_remove_device(sdev);
1495                 goto restart;
1496         }
1497         spin_unlock_irqrestore(shost->host_lock, flags);
1498 }
1499
1500 /*
1501  * Function:    scsi_get_host_dev()
1502  *
1503  * Purpose:     Create a scsi_device that points to the host adapter itself.
1504  *
1505  * Arguments:   SHpnt   - Host that needs a scsi_device
1506  *
1507  * Lock status: None assumed.
1508  *
1509  * Returns:     The scsi_device or NULL
1510  *
1511  * Notes:
1512  *      Attach a single scsi_device to the Scsi_Host - this should
1513  *      be made to look like a "pseudo-device" that points to the
1514  *      HA itself.
1515  *
1516  *      Note - this device is not accessible from any high-level
1517  *      drivers (including generics), which is probably not
1518  *      optimal.  We can add hooks later to attach 
1519  */
1520 struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost)
1521 {
1522         struct scsi_device *sdev = NULL;
1523         struct scsi_target *starget;
1524
1525         mutex_lock(&shost->scan_mutex);
1526         if (!scsi_host_scan_allowed(shost))
1527                 goto out;
1528         starget = scsi_alloc_target(&shost->shost_gendev, 0, shost->this_id);
1529         if (!starget)
1530                 goto out;
1531
1532         sdev = scsi_alloc_sdev(starget, 0, NULL);
1533         if (sdev) {
1534                 sdev->sdev_gendev.parent = get_device(&starget->dev);
1535                 sdev->borken = 0;
1536         }
1537         put_device(&starget->dev);
1538  out:
1539         mutex_unlock(&shost->scan_mutex);
1540         return sdev;
1541 }
1542 EXPORT_SYMBOL(scsi_get_host_dev);
1543
1544 /*
1545  * Function:    scsi_free_host_dev()
1546  *
1547  * Purpose:     Free a scsi_device that points to the host adapter itself.
1548  *
1549  * Arguments:   SHpnt   - Host that needs a scsi_device
1550  *
1551  * Lock status: None assumed.
1552  *
1553  * Returns:     Nothing
1554  *
1555  * Notes:
1556  */
1557 void scsi_free_host_dev(struct scsi_device *sdev)
1558 {
1559         BUG_ON(sdev->id != sdev->host->this_id);
1560
1561         scsi_destroy_sdev(sdev);
1562 }
1563 EXPORT_SYMBOL(scsi_free_host_dev);
1564