sd: Fix excessive capacity printing on devices with blocks bigger than 512 bytes
[pandora-kernel.git] / drivers / scsi / sd.c
1 /*
2  *      sd.c Copyright (C) 1992 Drew Eckhardt
3  *           Copyright (C) 1993, 1994, 1995, 1999 Eric Youngdale
4  *
5  *      Linux scsi disk driver
6  *              Initial versions: Drew Eckhardt
7  *              Subsequent revisions: Eric Youngdale
8  *      Modification history:
9  *       - Drew Eckhardt <drew@colorado.edu> original
10  *       - Eric Youngdale <eric@andante.org> add scatter-gather, multiple 
11  *         outstanding request, and other enhancements.
12  *         Support loadable low-level scsi drivers.
13  *       - Jirka Hanika <geo@ff.cuni.cz> support more scsi disks using 
14  *         eight major numbers.
15  *       - Richard Gooch <rgooch@atnf.csiro.au> support devfs.
16  *       - Torben Mathiasen <tmm@image.dk> Resource allocation fixes in 
17  *         sd_init and cleanups.
18  *       - Alex Davis <letmein@erols.com> Fix problem where partition info
19  *         not being read in sd_open. Fix problem where removable media 
20  *         could be ejected after sd_open.
21  *       - Douglas Gilbert <dgilbert@interlog.com> cleanup for lk 2.5.x
22  *       - Badari Pulavarty <pbadari@us.ibm.com>, Matthew Wilcox 
23  *         <willy@debian.org>, Kurt Garloff <garloff@suse.de>: 
24  *         Support 32k/1M disks.
25  *
26  *      Logging policy (needs CONFIG_SCSI_LOGGING defined):
27  *       - setting up transfer: SCSI_LOG_HLQUEUE levels 1 and 2
28  *       - end of transfer (bh + scsi_lib): SCSI_LOG_HLCOMPLETE level 1
29  *       - entering sd_ioctl: SCSI_LOG_IOCTL level 1
30  *       - entering other commands: SCSI_LOG_HLQUEUE level 3
31  *      Note: when the logging level is set by the user, it must be greater
32  *      than the level indicated above to trigger output.       
33  */
34
35 #include <linux/module.h>
36 #include <linux/fs.h>
37 #include <linux/kernel.h>
38 #include <linux/mm.h>
39 #include <linux/bio.h>
40 #include <linux/genhd.h>
41 #include <linux/hdreg.h>
42 #include <linux/errno.h>
43 #include <linux/idr.h>
44 #include <linux/interrupt.h>
45 #include <linux/init.h>
46 #include <linux/blkdev.h>
47 #include <linux/blkpg.h>
48 #include <linux/delay.h>
49 #include <linux/mutex.h>
50 #include <linux/string_helpers.h>
51 #include <linux/async.h>
52 #include <linux/slab.h>
53 #include <asm/uaccess.h>
54 #include <asm/unaligned.h>
55
56 #include <scsi/scsi.h>
57 #include <scsi/scsi_cmnd.h>
58 #include <scsi/scsi_dbg.h>
59 #include <scsi/scsi_device.h>
60 #include <scsi/scsi_driver.h>
61 #include <scsi/scsi_eh.h>
62 #include <scsi/scsi_host.h>
63 #include <scsi/scsi_ioctl.h>
64 #include <scsi/scsicam.h>
65
66 #include "sd.h"
67 #include "scsi_logging.h"
68
69 MODULE_AUTHOR("Eric Youngdale");
70 MODULE_DESCRIPTION("SCSI disk (sd) driver");
71 MODULE_LICENSE("GPL");
72
73 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK0_MAJOR);
74 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK1_MAJOR);
75 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK2_MAJOR);
76 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK3_MAJOR);
77 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK4_MAJOR);
78 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK5_MAJOR);
79 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK6_MAJOR);
80 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK7_MAJOR);
81 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK8_MAJOR);
82 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK9_MAJOR);
83 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK10_MAJOR);
84 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK11_MAJOR);
85 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK12_MAJOR);
86 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK13_MAJOR);
87 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK14_MAJOR);
88 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK15_MAJOR);
89 MODULE_ALIAS_SCSI_DEVICE(TYPE_DISK);
90 MODULE_ALIAS_SCSI_DEVICE(TYPE_MOD);
91 MODULE_ALIAS_SCSI_DEVICE(TYPE_RBC);
92
93 #if !defined(CONFIG_DEBUG_BLOCK_EXT_DEVT)
94 #define SD_MINORS       16
95 #else
96 #define SD_MINORS       0
97 #endif
98
99 static void sd_config_discard(struct scsi_disk *, unsigned int);
100 static int  sd_revalidate_disk(struct gendisk *);
101 static void sd_unlock_native_capacity(struct gendisk *disk);
102 static int  sd_probe(struct device *);
103 static int  sd_remove(struct device *);
104 static void sd_shutdown(struct device *);
105 static int sd_suspend(struct device *, pm_message_t state);
106 static int sd_resume(struct device *);
107 static void sd_rescan(struct device *);
108 static int sd_done(struct scsi_cmnd *);
109 static void sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer);
110 static void scsi_disk_release(struct device *cdev);
111 static void sd_print_sense_hdr(struct scsi_disk *, struct scsi_sense_hdr *);
112 static void sd_print_result(struct scsi_disk *, int);
113
114 static DEFINE_SPINLOCK(sd_index_lock);
115 static DEFINE_IDA(sd_index_ida);
116
117 /* This semaphore is used to mediate the 0->1 reference get in the
118  * face of object destruction (i.e. we can't allow a get on an
119  * object after last put) */
120 static DEFINE_MUTEX(sd_ref_mutex);
121
122 static struct kmem_cache *sd_cdb_cache;
123 static mempool_t *sd_cdb_pool;
124
125 static const char *sd_cache_types[] = {
126         "write through", "none", "write back",
127         "write back, no read (daft)"
128 };
129
130 static ssize_t
131 sd_store_cache_type(struct device *dev, struct device_attribute *attr,
132                     const char *buf, size_t count)
133 {
134         int i, ct = -1, rcd, wce, sp;
135         struct scsi_disk *sdkp = to_scsi_disk(dev);
136         struct scsi_device *sdp = sdkp->device;
137         char buffer[64];
138         char *buffer_data;
139         struct scsi_mode_data data;
140         struct scsi_sense_hdr sshdr;
141         static const char temp[] = "temporary ";
142         int len;
143
144         if (sdp->type != TYPE_DISK)
145                 /* no cache control on RBC devices; theoretically they
146                  * can do it, but there's probably so many exceptions
147                  * it's not worth the risk */
148                 return -EINVAL;
149
150         if (strncmp(buf, temp, sizeof(temp) - 1) == 0) {
151                 buf += sizeof(temp) - 1;
152                 sdkp->cache_override = 1;
153         } else {
154                 sdkp->cache_override = 0;
155         }
156
157         for (i = 0; i < ARRAY_SIZE(sd_cache_types); i++) {
158                 len = strlen(sd_cache_types[i]);
159                 if (strncmp(sd_cache_types[i], buf, len) == 0 &&
160                     buf[len] == '\n') {
161                         ct = i;
162                         break;
163                 }
164         }
165         if (ct < 0)
166                 return -EINVAL;
167         rcd = ct & 0x01 ? 1 : 0;
168         wce = ct & 0x02 ? 1 : 0;
169
170         if (sdkp->cache_override) {
171                 sdkp->WCE = wce;
172                 sdkp->RCD = rcd;
173                 return count;
174         }
175
176         if (scsi_mode_sense(sdp, 0x08, 8, buffer, sizeof(buffer), SD_TIMEOUT,
177                             SD_MAX_RETRIES, &data, NULL))
178                 return -EINVAL;
179         len = min_t(size_t, sizeof(buffer), data.length - data.header_length -
180                   data.block_descriptor_length);
181         buffer_data = buffer + data.header_length +
182                 data.block_descriptor_length;
183         buffer_data[2] &= ~0x05;
184         buffer_data[2] |= wce << 2 | rcd;
185         sp = buffer_data[0] & 0x80 ? 1 : 0;
186
187         if (scsi_mode_select(sdp, 1, sp, 8, buffer_data, len, SD_TIMEOUT,
188                              SD_MAX_RETRIES, &data, &sshdr)) {
189                 if (scsi_sense_valid(&sshdr))
190                         sd_print_sense_hdr(sdkp, &sshdr);
191                 return -EINVAL;
192         }
193         revalidate_disk(sdkp->disk);
194         return count;
195 }
196
197 static ssize_t
198 sd_store_manage_start_stop(struct device *dev, struct device_attribute *attr,
199                            const char *buf, size_t count)
200 {
201         struct scsi_disk *sdkp = to_scsi_disk(dev);
202         struct scsi_device *sdp = sdkp->device;
203
204         if (!capable(CAP_SYS_ADMIN))
205                 return -EACCES;
206
207         sdp->manage_start_stop = simple_strtoul(buf, NULL, 10);
208
209         return count;
210 }
211
212 static ssize_t
213 sd_store_allow_restart(struct device *dev, struct device_attribute *attr,
214                        const char *buf, size_t count)
215 {
216         struct scsi_disk *sdkp = to_scsi_disk(dev);
217         struct scsi_device *sdp = sdkp->device;
218
219         if (!capable(CAP_SYS_ADMIN))
220                 return -EACCES;
221
222         if (sdp->type != TYPE_DISK)
223                 return -EINVAL;
224
225         sdp->allow_restart = simple_strtoul(buf, NULL, 10);
226
227         return count;
228 }
229
230 static ssize_t
231 sd_show_cache_type(struct device *dev, struct device_attribute *attr,
232                    char *buf)
233 {
234         struct scsi_disk *sdkp = to_scsi_disk(dev);
235         int ct = sdkp->RCD + 2*sdkp->WCE;
236
237         return snprintf(buf, 40, "%s\n", sd_cache_types[ct]);
238 }
239
240 static ssize_t
241 sd_show_fua(struct device *dev, struct device_attribute *attr, char *buf)
242 {
243         struct scsi_disk *sdkp = to_scsi_disk(dev);
244
245         return snprintf(buf, 20, "%u\n", sdkp->DPOFUA);
246 }
247
248 static ssize_t
249 sd_show_manage_start_stop(struct device *dev, struct device_attribute *attr,
250                           char *buf)
251 {
252         struct scsi_disk *sdkp = to_scsi_disk(dev);
253         struct scsi_device *sdp = sdkp->device;
254
255         return snprintf(buf, 20, "%u\n", sdp->manage_start_stop);
256 }
257
258 static ssize_t
259 sd_show_allow_restart(struct device *dev, struct device_attribute *attr,
260                       char *buf)
261 {
262         struct scsi_disk *sdkp = to_scsi_disk(dev);
263
264         return snprintf(buf, 40, "%d\n", sdkp->device->allow_restart);
265 }
266
267 static ssize_t
268 sd_show_protection_type(struct device *dev, struct device_attribute *attr,
269                         char *buf)
270 {
271         struct scsi_disk *sdkp = to_scsi_disk(dev);
272
273         return snprintf(buf, 20, "%u\n", sdkp->protection_type);
274 }
275
276 static ssize_t
277 sd_show_protection_mode(struct device *dev, struct device_attribute *attr,
278                         char *buf)
279 {
280         struct scsi_disk *sdkp = to_scsi_disk(dev);
281         struct scsi_device *sdp = sdkp->device;
282         unsigned int dif, dix;
283
284         dif = scsi_host_dif_capable(sdp->host, sdkp->protection_type);
285         dix = scsi_host_dix_capable(sdp->host, sdkp->protection_type);
286
287         if (!dix && scsi_host_dix_capable(sdp->host, SD_DIF_TYPE0_PROTECTION)) {
288                 dif = 0;
289                 dix = 1;
290         }
291
292         if (!dif && !dix)
293                 return snprintf(buf, 20, "none\n");
294
295         return snprintf(buf, 20, "%s%u\n", dix ? "dix" : "dif", dif);
296 }
297
298 static ssize_t
299 sd_show_app_tag_own(struct device *dev, struct device_attribute *attr,
300                     char *buf)
301 {
302         struct scsi_disk *sdkp = to_scsi_disk(dev);
303
304         return snprintf(buf, 20, "%u\n", sdkp->ATO);
305 }
306
307 static ssize_t
308 sd_show_thin_provisioning(struct device *dev, struct device_attribute *attr,
309                           char *buf)
310 {
311         struct scsi_disk *sdkp = to_scsi_disk(dev);
312
313         return snprintf(buf, 20, "%u\n", sdkp->lbpme);
314 }
315
316 static const char *lbp_mode[] = {
317         [SD_LBP_FULL]           = "full",
318         [SD_LBP_UNMAP]          = "unmap",
319         [SD_LBP_WS16]           = "writesame_16",
320         [SD_LBP_WS10]           = "writesame_10",
321         [SD_LBP_ZERO]           = "writesame_zero",
322         [SD_LBP_DISABLE]        = "disabled",
323 };
324
325 static ssize_t
326 sd_show_provisioning_mode(struct device *dev, struct device_attribute *attr,
327                           char *buf)
328 {
329         struct scsi_disk *sdkp = to_scsi_disk(dev);
330
331         return snprintf(buf, 20, "%s\n", lbp_mode[sdkp->provisioning_mode]);
332 }
333
334 static ssize_t
335 sd_store_provisioning_mode(struct device *dev, struct device_attribute *attr,
336                            const char *buf, size_t count)
337 {
338         struct scsi_disk *sdkp = to_scsi_disk(dev);
339         struct scsi_device *sdp = sdkp->device;
340
341         if (!capable(CAP_SYS_ADMIN))
342                 return -EACCES;
343
344         if (sdp->type != TYPE_DISK)
345                 return -EINVAL;
346
347         if (!strncmp(buf, lbp_mode[SD_LBP_UNMAP], 20))
348                 sd_config_discard(sdkp, SD_LBP_UNMAP);
349         else if (!strncmp(buf, lbp_mode[SD_LBP_WS16], 20))
350                 sd_config_discard(sdkp, SD_LBP_WS16);
351         else if (!strncmp(buf, lbp_mode[SD_LBP_WS10], 20))
352                 sd_config_discard(sdkp, SD_LBP_WS10);
353         else if (!strncmp(buf, lbp_mode[SD_LBP_ZERO], 20))
354                 sd_config_discard(sdkp, SD_LBP_ZERO);
355         else if (!strncmp(buf, lbp_mode[SD_LBP_DISABLE], 20))
356                 sd_config_discard(sdkp, SD_LBP_DISABLE);
357         else
358                 return -EINVAL;
359
360         return count;
361 }
362
363 static struct device_attribute sd_disk_attrs[] = {
364         __ATTR(cache_type, S_IRUGO|S_IWUSR, sd_show_cache_type,
365                sd_store_cache_type),
366         __ATTR(FUA, S_IRUGO, sd_show_fua, NULL),
367         __ATTR(allow_restart, S_IRUGO|S_IWUSR, sd_show_allow_restart,
368                sd_store_allow_restart),
369         __ATTR(manage_start_stop, S_IRUGO|S_IWUSR, sd_show_manage_start_stop,
370                sd_store_manage_start_stop),
371         __ATTR(protection_type, S_IRUGO, sd_show_protection_type, NULL),
372         __ATTR(protection_mode, S_IRUGO, sd_show_protection_mode, NULL),
373         __ATTR(app_tag_own, S_IRUGO, sd_show_app_tag_own, NULL),
374         __ATTR(thin_provisioning, S_IRUGO, sd_show_thin_provisioning, NULL),
375         __ATTR(provisioning_mode, S_IRUGO|S_IWUSR, sd_show_provisioning_mode,
376                sd_store_provisioning_mode),
377         __ATTR_NULL,
378 };
379
380 static struct class sd_disk_class = {
381         .name           = "scsi_disk",
382         .owner          = THIS_MODULE,
383         .dev_release    = scsi_disk_release,
384         .dev_attrs      = sd_disk_attrs,
385 };
386
387 static struct scsi_driver sd_template = {
388         .owner                  = THIS_MODULE,
389         .gendrv = {
390                 .name           = "sd",
391                 .probe          = sd_probe,
392                 .remove         = sd_remove,
393                 .suspend        = sd_suspend,
394                 .resume         = sd_resume,
395                 .shutdown       = sd_shutdown,
396         },
397         .rescan                 = sd_rescan,
398         .done                   = sd_done,
399 };
400
401 /*
402  * Device no to disk mapping:
403  * 
404  *       major         disc2     disc  p1
405  *   |............|.............|....|....| <- dev_t
406  *    31        20 19          8 7  4 3  0
407  * 
408  * Inside a major, we have 16k disks, however mapped non-
409  * contiguously. The first 16 disks are for major0, the next
410  * ones with major1, ... Disk 256 is for major0 again, disk 272 
411  * for major1, ... 
412  * As we stay compatible with our numbering scheme, we can reuse 
413  * the well-know SCSI majors 8, 65--71, 136--143.
414  */
415 static int sd_major(int major_idx)
416 {
417         switch (major_idx) {
418         case 0:
419                 return SCSI_DISK0_MAJOR;
420         case 1 ... 7:
421                 return SCSI_DISK1_MAJOR + major_idx - 1;
422         case 8 ... 15:
423                 return SCSI_DISK8_MAJOR + major_idx - 8;
424         default:
425                 BUG();
426                 return 0;       /* shut up gcc */
427         }
428 }
429
430 static struct scsi_disk *__scsi_disk_get(struct gendisk *disk)
431 {
432         struct scsi_disk *sdkp = NULL;
433
434         if (disk->private_data) {
435                 sdkp = scsi_disk(disk);
436                 if (scsi_device_get(sdkp->device) == 0)
437                         get_device(&sdkp->dev);
438                 else
439                         sdkp = NULL;
440         }
441         return sdkp;
442 }
443
444 static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
445 {
446         struct scsi_disk *sdkp;
447
448         mutex_lock(&sd_ref_mutex);
449         sdkp = __scsi_disk_get(disk);
450         mutex_unlock(&sd_ref_mutex);
451         return sdkp;
452 }
453
454 static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev)
455 {
456         struct scsi_disk *sdkp;
457
458         mutex_lock(&sd_ref_mutex);
459         sdkp = dev_get_drvdata(dev);
460         if (sdkp)
461                 sdkp = __scsi_disk_get(sdkp->disk);
462         mutex_unlock(&sd_ref_mutex);
463         return sdkp;
464 }
465
466 static void scsi_disk_put(struct scsi_disk *sdkp)
467 {
468         struct scsi_device *sdev = sdkp->device;
469
470         mutex_lock(&sd_ref_mutex);
471         put_device(&sdkp->dev);
472         scsi_device_put(sdev);
473         mutex_unlock(&sd_ref_mutex);
474 }
475
476 static void sd_prot_op(struct scsi_cmnd *scmd, unsigned int dif)
477 {
478         unsigned int prot_op = SCSI_PROT_NORMAL;
479         unsigned int dix = scsi_prot_sg_count(scmd);
480
481         if (scmd->sc_data_direction == DMA_FROM_DEVICE) {
482                 if (dif && dix)
483                         prot_op = SCSI_PROT_READ_PASS;
484                 else if (dif && !dix)
485                         prot_op = SCSI_PROT_READ_STRIP;
486                 else if (!dif && dix)
487                         prot_op = SCSI_PROT_READ_INSERT;
488         } else {
489                 if (dif && dix)
490                         prot_op = SCSI_PROT_WRITE_PASS;
491                 else if (dif && !dix)
492                         prot_op = SCSI_PROT_WRITE_INSERT;
493                 else if (!dif && dix)
494                         prot_op = SCSI_PROT_WRITE_STRIP;
495         }
496
497         scsi_set_prot_op(scmd, prot_op);
498         scsi_set_prot_type(scmd, dif);
499 }
500
501 static void sd_config_discard(struct scsi_disk *sdkp, unsigned int mode)
502 {
503         struct request_queue *q = sdkp->disk->queue;
504         unsigned int logical_block_size = sdkp->device->sector_size;
505         unsigned int max_blocks = 0;
506
507         q->limits.discard_zeroes_data = sdkp->lbprz;
508         q->limits.discard_alignment = sdkp->unmap_alignment *
509                 logical_block_size;
510         q->limits.discard_granularity =
511                 max(sdkp->physical_block_size,
512                     sdkp->unmap_granularity * logical_block_size);
513
514         switch (mode) {
515
516         case SD_LBP_DISABLE:
517                 q->limits.max_discard_sectors = 0;
518                 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD, q);
519                 return;
520
521         case SD_LBP_UNMAP:
522                 max_blocks = min_not_zero(sdkp->max_unmap_blocks, 0xffffffff);
523                 break;
524
525         case SD_LBP_WS16:
526                 max_blocks = min_not_zero(sdkp->max_ws_blocks, 0xffffffff);
527                 break;
528
529         case SD_LBP_WS10:
530                 max_blocks = min_not_zero(sdkp->max_ws_blocks, (u32)0xffff);
531                 break;
532
533         case SD_LBP_ZERO:
534                 max_blocks = min_not_zero(sdkp->max_ws_blocks, (u32)0xffff);
535                 q->limits.discard_zeroes_data = 1;
536                 break;
537         }
538
539         q->limits.max_discard_sectors = max_blocks * (logical_block_size >> 9);
540         queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
541
542         sdkp->provisioning_mode = mode;
543 }
544
545 /**
546  * scsi_setup_discard_cmnd - unmap blocks on thinly provisioned device
547  * @sdp: scsi device to operate one
548  * @rq: Request to prepare
549  *
550  * Will issue either UNMAP or WRITE SAME(16) depending on preference
551  * indicated by target device.
552  **/
553 static int scsi_setup_discard_cmnd(struct scsi_device *sdp, struct request *rq)
554 {
555         struct scsi_disk *sdkp = scsi_disk(rq->rq_disk);
556         struct bio *bio = rq->bio;
557         sector_t sector = bio->bi_sector;
558         unsigned int nr_sectors = bio_sectors(bio);
559         unsigned int len;
560         int ret;
561         char *buf;
562         struct page *page;
563
564         if (sdkp->device->sector_size == 4096) {
565                 sector >>= 3;
566                 nr_sectors >>= 3;
567         }
568
569         rq->timeout = SD_TIMEOUT;
570
571         memset(rq->cmd, 0, rq->cmd_len);
572
573         page = alloc_page(GFP_ATOMIC | __GFP_ZERO);
574         if (!page)
575                 return BLKPREP_DEFER;
576
577         switch (sdkp->provisioning_mode) {
578         case SD_LBP_UNMAP:
579                 buf = page_address(page);
580
581                 rq->cmd_len = 10;
582                 rq->cmd[0] = UNMAP;
583                 rq->cmd[8] = 24;
584
585                 put_unaligned_be16(6 + 16, &buf[0]);
586                 put_unaligned_be16(16, &buf[2]);
587                 put_unaligned_be64(sector, &buf[8]);
588                 put_unaligned_be32(nr_sectors, &buf[16]);
589
590                 len = 24;
591                 break;
592
593         case SD_LBP_WS16:
594                 rq->cmd_len = 16;
595                 rq->cmd[0] = WRITE_SAME_16;
596                 rq->cmd[1] = 0x8; /* UNMAP */
597                 put_unaligned_be64(sector, &rq->cmd[2]);
598                 put_unaligned_be32(nr_sectors, &rq->cmd[10]);
599
600                 len = sdkp->device->sector_size;
601                 break;
602
603         case SD_LBP_WS10:
604         case SD_LBP_ZERO:
605                 rq->cmd_len = 10;
606                 rq->cmd[0] = WRITE_SAME;
607                 if (sdkp->provisioning_mode == SD_LBP_WS10)
608                         rq->cmd[1] = 0x8; /* UNMAP */
609                 put_unaligned_be32(sector, &rq->cmd[2]);
610                 put_unaligned_be16(nr_sectors, &rq->cmd[7]);
611
612                 len = sdkp->device->sector_size;
613                 break;
614
615         default:
616                 ret = BLKPREP_KILL;
617                 goto out;
618         }
619
620         blk_add_request_payload(rq, page, len);
621         ret = scsi_setup_blk_pc_cmnd(sdp, rq);
622         rq->buffer = page_address(page);
623
624 out:
625         if (ret != BLKPREP_OK) {
626                 __free_page(page);
627                 rq->buffer = NULL;
628         }
629         return ret;
630 }
631
632 static int scsi_setup_flush_cmnd(struct scsi_device *sdp, struct request *rq)
633 {
634         rq->timeout = SD_FLUSH_TIMEOUT;
635         rq->retries = SD_MAX_RETRIES;
636         rq->cmd[0] = SYNCHRONIZE_CACHE;
637         rq->cmd_len = 10;
638
639         return scsi_setup_blk_pc_cmnd(sdp, rq);
640 }
641
642 static void sd_unprep_fn(struct request_queue *q, struct request *rq)
643 {
644         struct scsi_cmnd *SCpnt = rq->special;
645
646         if (rq->cmd_flags & REQ_DISCARD) {
647                 free_page((unsigned long)rq->buffer);
648                 rq->buffer = NULL;
649         }
650         if (SCpnt->cmnd != rq->cmd) {
651                 mempool_free(SCpnt->cmnd, sd_cdb_pool);
652                 SCpnt->cmnd = NULL;
653                 SCpnt->cmd_len = 0;
654         }
655 }
656
657 /**
658  *      sd_init_command - build a scsi (read or write) command from
659  *      information in the request structure.
660  *      @SCpnt: pointer to mid-level's per scsi command structure that
661  *      contains request and into which the scsi command is written
662  *
663  *      Returns 1 if successful and 0 if error (or cannot be done now).
664  **/
665 static int sd_prep_fn(struct request_queue *q, struct request *rq)
666 {
667         struct scsi_cmnd *SCpnt;
668         struct scsi_device *sdp = q->queuedata;
669         struct gendisk *disk = rq->rq_disk;
670         struct scsi_disk *sdkp;
671         sector_t block = blk_rq_pos(rq);
672         sector_t threshold;
673         unsigned int this_count = blk_rq_sectors(rq);
674         int ret, host_dif;
675         unsigned char protect;
676
677         /*
678          * Discard request come in as REQ_TYPE_FS but we turn them into
679          * block PC requests to make life easier.
680          */
681         if (rq->cmd_flags & REQ_DISCARD) {
682                 ret = scsi_setup_discard_cmnd(sdp, rq);
683                 goto out;
684         } else if (rq->cmd_flags & REQ_FLUSH) {
685                 ret = scsi_setup_flush_cmnd(sdp, rq);
686                 goto out;
687         } else if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
688                 ret = scsi_setup_blk_pc_cmnd(sdp, rq);
689                 goto out;
690         } else if (rq->cmd_type != REQ_TYPE_FS) {
691                 ret = BLKPREP_KILL;
692                 goto out;
693         }
694         ret = scsi_setup_fs_cmnd(sdp, rq);
695         if (ret != BLKPREP_OK)
696                 goto out;
697         SCpnt = rq->special;
698         sdkp = scsi_disk(disk);
699
700         /* from here on until we're complete, any goto out
701          * is used for a killable error condition */
702         ret = BLKPREP_KILL;
703
704         SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO, SCpnt,
705                                         "sd_init_command: block=%llu, "
706                                         "count=%d\n",
707                                         (unsigned long long)block,
708                                         this_count));
709
710         if (!sdp || !scsi_device_online(sdp) ||
711             block + blk_rq_sectors(rq) > get_capacity(disk)) {
712                 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
713                                                 "Finishing %u sectors\n",
714                                                 blk_rq_sectors(rq)));
715                 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
716                                                 "Retry with 0x%p\n", SCpnt));
717                 goto out;
718         }
719
720         if (sdp->changed) {
721                 /*
722                  * quietly refuse to do anything to a changed disc until 
723                  * the changed bit has been reset
724                  */
725                 /* printk("SCSI disk has been changed or is not present. Prohibiting further I/O.\n"); */
726                 goto out;
727         }
728
729         /*
730          * Some SD card readers can't handle multi-sector accesses which touch
731          * the last one or two hardware sectors.  Split accesses as needed.
732          */
733         threshold = get_capacity(disk) - SD_LAST_BUGGY_SECTORS *
734                 (sdp->sector_size / 512);
735
736         if (unlikely(sdp->last_sector_bug && block + this_count > threshold)) {
737                 if (block < threshold) {
738                         /* Access up to the threshold but not beyond */
739                         this_count = threshold - block;
740                 } else {
741                         /* Access only a single hardware sector */
742                         this_count = sdp->sector_size / 512;
743                 }
744         }
745
746         SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt, "block=%llu\n",
747                                         (unsigned long long)block));
748
749         /*
750          * If we have a 1K hardware sectorsize, prevent access to single
751          * 512 byte sectors.  In theory we could handle this - in fact
752          * the scsi cdrom driver must be able to handle this because
753          * we typically use 1K blocksizes, and cdroms typically have
754          * 2K hardware sectorsizes.  Of course, things are simpler
755          * with the cdrom, since it is read-only.  For performance
756          * reasons, the filesystems should be able to handle this
757          * and not force the scsi disk driver to use bounce buffers
758          * for this.
759          */
760         if (sdp->sector_size == 1024) {
761                 if ((block & 1) || (blk_rq_sectors(rq) & 1)) {
762                         scmd_printk(KERN_ERR, SCpnt,
763                                     "Bad block number requested\n");
764                         goto out;
765                 } else {
766                         block = block >> 1;
767                         this_count = this_count >> 1;
768                 }
769         }
770         if (sdp->sector_size == 2048) {
771                 if ((block & 3) || (blk_rq_sectors(rq) & 3)) {
772                         scmd_printk(KERN_ERR, SCpnt,
773                                     "Bad block number requested\n");
774                         goto out;
775                 } else {
776                         block = block >> 2;
777                         this_count = this_count >> 2;
778                 }
779         }
780         if (sdp->sector_size == 4096) {
781                 if ((block & 7) || (blk_rq_sectors(rq) & 7)) {
782                         scmd_printk(KERN_ERR, SCpnt,
783                                     "Bad block number requested\n");
784                         goto out;
785                 } else {
786                         block = block >> 3;
787                         this_count = this_count >> 3;
788                 }
789         }
790         if (rq_data_dir(rq) == WRITE) {
791                 if (!sdp->writeable) {
792                         goto out;
793                 }
794                 SCpnt->cmnd[0] = WRITE_6;
795                 SCpnt->sc_data_direction = DMA_TO_DEVICE;
796
797                 if (blk_integrity_rq(rq) &&
798                     sd_dif_prepare(rq, block, sdp->sector_size) == -EIO)
799                         goto out;
800
801         } else if (rq_data_dir(rq) == READ) {
802                 SCpnt->cmnd[0] = READ_6;
803                 SCpnt->sc_data_direction = DMA_FROM_DEVICE;
804         } else {
805                 scmd_printk(KERN_ERR, SCpnt, "Unknown command %x\n", rq->cmd_flags);
806                 goto out;
807         }
808
809         SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
810                                         "%s %d/%u 512 byte blocks.\n",
811                                         (rq_data_dir(rq) == WRITE) ?
812                                         "writing" : "reading", this_count,
813                                         blk_rq_sectors(rq)));
814
815         /* Set RDPROTECT/WRPROTECT if disk is formatted with DIF */
816         host_dif = scsi_host_dif_capable(sdp->host, sdkp->protection_type);
817         if (host_dif)
818                 protect = 1 << 5;
819         else
820                 protect = 0;
821
822         if (host_dif == SD_DIF_TYPE2_PROTECTION) {
823                 SCpnt->cmnd = mempool_alloc(sd_cdb_pool, GFP_ATOMIC);
824
825                 if (unlikely(SCpnt->cmnd == NULL)) {
826                         ret = BLKPREP_DEFER;
827                         goto out;
828                 }
829
830                 SCpnt->cmd_len = SD_EXT_CDB_SIZE;
831                 memset(SCpnt->cmnd, 0, SCpnt->cmd_len);
832                 SCpnt->cmnd[0] = VARIABLE_LENGTH_CMD;
833                 SCpnt->cmnd[7] = 0x18;
834                 SCpnt->cmnd[9] = (rq_data_dir(rq) == READ) ? READ_32 : WRITE_32;
835                 SCpnt->cmnd[10] = protect | ((rq->cmd_flags & REQ_FUA) ? 0x8 : 0);
836
837                 /* LBA */
838                 SCpnt->cmnd[12] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
839                 SCpnt->cmnd[13] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
840                 SCpnt->cmnd[14] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
841                 SCpnt->cmnd[15] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
842                 SCpnt->cmnd[16] = (unsigned char) (block >> 24) & 0xff;
843                 SCpnt->cmnd[17] = (unsigned char) (block >> 16) & 0xff;
844                 SCpnt->cmnd[18] = (unsigned char) (block >> 8) & 0xff;
845                 SCpnt->cmnd[19] = (unsigned char) block & 0xff;
846
847                 /* Expected Indirect LBA */
848                 SCpnt->cmnd[20] = (unsigned char) (block >> 24) & 0xff;
849                 SCpnt->cmnd[21] = (unsigned char) (block >> 16) & 0xff;
850                 SCpnt->cmnd[22] = (unsigned char) (block >> 8) & 0xff;
851                 SCpnt->cmnd[23] = (unsigned char) block & 0xff;
852
853                 /* Transfer length */
854                 SCpnt->cmnd[28] = (unsigned char) (this_count >> 24) & 0xff;
855                 SCpnt->cmnd[29] = (unsigned char) (this_count >> 16) & 0xff;
856                 SCpnt->cmnd[30] = (unsigned char) (this_count >> 8) & 0xff;
857                 SCpnt->cmnd[31] = (unsigned char) this_count & 0xff;
858         } else if (block > 0xffffffff) {
859                 SCpnt->cmnd[0] += READ_16 - READ_6;
860                 SCpnt->cmnd[1] = protect | ((rq->cmd_flags & REQ_FUA) ? 0x8 : 0);
861                 SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
862                 SCpnt->cmnd[3] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
863                 SCpnt->cmnd[4] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
864                 SCpnt->cmnd[5] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
865                 SCpnt->cmnd[6] = (unsigned char) (block >> 24) & 0xff;
866                 SCpnt->cmnd[7] = (unsigned char) (block >> 16) & 0xff;
867                 SCpnt->cmnd[8] = (unsigned char) (block >> 8) & 0xff;
868                 SCpnt->cmnd[9] = (unsigned char) block & 0xff;
869                 SCpnt->cmnd[10] = (unsigned char) (this_count >> 24) & 0xff;
870                 SCpnt->cmnd[11] = (unsigned char) (this_count >> 16) & 0xff;
871                 SCpnt->cmnd[12] = (unsigned char) (this_count >> 8) & 0xff;
872                 SCpnt->cmnd[13] = (unsigned char) this_count & 0xff;
873                 SCpnt->cmnd[14] = SCpnt->cmnd[15] = 0;
874         } else if ((this_count > 0xff) || (block > 0x1fffff) ||
875                    scsi_device_protection(SCpnt->device) ||
876                    SCpnt->device->use_10_for_rw) {
877                 if (this_count > 0xffff)
878                         this_count = 0xffff;
879
880                 SCpnt->cmnd[0] += READ_10 - READ_6;
881                 SCpnt->cmnd[1] = protect | ((rq->cmd_flags & REQ_FUA) ? 0x8 : 0);
882                 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
883                 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
884                 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
885                 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
886                 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
887                 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
888                 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
889         } else {
890                 if (unlikely(rq->cmd_flags & REQ_FUA)) {
891                         /*
892                          * This happens only if this drive failed
893                          * 10byte rw command with ILLEGAL_REQUEST
894                          * during operation and thus turned off
895                          * use_10_for_rw.
896                          */
897                         scmd_printk(KERN_ERR, SCpnt,
898                                     "FUA write on READ/WRITE(6) drive\n");
899                         goto out;
900                 }
901
902                 SCpnt->cmnd[1] |= (unsigned char) ((block >> 16) & 0x1f);
903                 SCpnt->cmnd[2] = (unsigned char) ((block >> 8) & 0xff);
904                 SCpnt->cmnd[3] = (unsigned char) block & 0xff;
905                 SCpnt->cmnd[4] = (unsigned char) this_count;
906                 SCpnt->cmnd[5] = 0;
907         }
908         SCpnt->sdb.length = this_count * sdp->sector_size;
909
910         /* If DIF or DIX is enabled, tell HBA how to handle request */
911         if (host_dif || scsi_prot_sg_count(SCpnt))
912                 sd_prot_op(SCpnt, host_dif);
913
914         /*
915          * We shouldn't disconnect in the middle of a sector, so with a dumb
916          * host adapter, it's safe to assume that we can at least transfer
917          * this many bytes between each connect / disconnect.
918          */
919         SCpnt->transfersize = sdp->sector_size;
920         SCpnt->underflow = this_count << 9;
921         SCpnt->allowed = SD_MAX_RETRIES;
922
923         /*
924          * This indicates that the command is ready from our end to be
925          * queued.
926          */
927         ret = BLKPREP_OK;
928  out:
929         return scsi_prep_return(q, rq, ret);
930 }
931
932 /**
933  *      sd_open - open a scsi disk device
934  *      @inode: only i_rdev member may be used
935  *      @filp: only f_mode and f_flags may be used
936  *
937  *      Returns 0 if successful. Returns a negated errno value in case 
938  *      of error.
939  *
940  *      Note: This can be called from a user context (e.g. fsck(1) )
941  *      or from within the kernel (e.g. as a result of a mount(1) ).
942  *      In the latter case @inode and @filp carry an abridged amount
943  *      of information as noted above.
944  *
945  *      Locking: called with bdev->bd_mutex held.
946  **/
947 static int sd_open(struct block_device *bdev, fmode_t mode)
948 {
949         struct scsi_disk *sdkp = scsi_disk_get(bdev->bd_disk);
950         struct scsi_device *sdev;
951         int retval;
952
953         if (!sdkp)
954                 return -ENXIO;
955
956         SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_open\n"));
957
958         sdev = sdkp->device;
959
960         retval = scsi_autopm_get_device(sdev);
961         if (retval)
962                 goto error_autopm;
963
964         /*
965          * If the device is in error recovery, wait until it is done.
966          * If the device is offline, then disallow any access to it.
967          */
968         retval = -ENXIO;
969         if (!scsi_block_when_processing_errors(sdev))
970                 goto error_out;
971
972         if (sdev->removable || sdkp->write_prot)
973                 check_disk_change(bdev);
974
975         /*
976          * If the drive is empty, just let the open fail.
977          */
978         retval = -ENOMEDIUM;
979         if (sdev->removable && !sdkp->media_present && !(mode & FMODE_NDELAY))
980                 goto error_out;
981
982         /*
983          * If the device has the write protect tab set, have the open fail
984          * if the user expects to be able to write to the thing.
985          */
986         retval = -EROFS;
987         if (sdkp->write_prot && (mode & FMODE_WRITE))
988                 goto error_out;
989
990         /*
991          * It is possible that the disk changing stuff resulted in
992          * the device being taken offline.  If this is the case,
993          * report this to the user, and don't pretend that the
994          * open actually succeeded.
995          */
996         retval = -ENXIO;
997         if (!scsi_device_online(sdev))
998                 goto error_out;
999
1000         if ((atomic_inc_return(&sdkp->openers) == 1) && sdev->removable) {
1001                 if (scsi_block_when_processing_errors(sdev))
1002                         scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
1003         }
1004
1005         return 0;
1006
1007 error_out:
1008         scsi_autopm_put_device(sdev);
1009 error_autopm:
1010         scsi_disk_put(sdkp);
1011         return retval;  
1012 }
1013
1014 /**
1015  *      sd_release - invoked when the (last) close(2) is called on this
1016  *      scsi disk.
1017  *      @inode: only i_rdev member may be used
1018  *      @filp: only f_mode and f_flags may be used
1019  *
1020  *      Returns 0. 
1021  *
1022  *      Note: may block (uninterruptible) if error recovery is underway
1023  *      on this disk.
1024  *
1025  *      Locking: called with bdev->bd_mutex held.
1026  **/
1027 static int sd_release(struct gendisk *disk, fmode_t mode)
1028 {
1029         struct scsi_disk *sdkp = scsi_disk(disk);
1030         struct scsi_device *sdev = sdkp->device;
1031
1032         SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_release\n"));
1033
1034         if (atomic_dec_return(&sdkp->openers) == 0 && sdev->removable) {
1035                 if (scsi_block_when_processing_errors(sdev))
1036                         scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
1037         }
1038
1039         /*
1040          * XXX and what if there are packets in flight and this close()
1041          * XXX is followed by a "rmmod sd_mod"?
1042          */
1043
1044         scsi_autopm_put_device(sdev);
1045         scsi_disk_put(sdkp);
1046         return 0;
1047 }
1048
1049 static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1050 {
1051         struct scsi_disk *sdkp = scsi_disk(bdev->bd_disk);
1052         struct scsi_device *sdp = sdkp->device;
1053         struct Scsi_Host *host = sdp->host;
1054         sector_t capacity = logical_to_sectors(sdp, sdkp->capacity);
1055         int diskinfo[4];
1056
1057         /* default to most commonly used values */
1058         diskinfo[0] = 0x40;     /* 1 << 6 */
1059         diskinfo[1] = 0x20;     /* 1 << 5 */
1060         diskinfo[2] = capacity >> 11;
1061
1062         /* override with calculated, extended default, or driver values */
1063         if (host->hostt->bios_param)
1064                 host->hostt->bios_param(sdp, bdev, capacity, diskinfo);
1065         else
1066                 scsicam_bios_param(bdev, capacity, diskinfo);
1067
1068         geo->heads = diskinfo[0];
1069         geo->sectors = diskinfo[1];
1070         geo->cylinders = diskinfo[2];
1071         return 0;
1072 }
1073
1074 /**
1075  *      sd_ioctl - process an ioctl
1076  *      @inode: only i_rdev/i_bdev members may be used
1077  *      @filp: only f_mode and f_flags may be used
1078  *      @cmd: ioctl command number
1079  *      @arg: this is third argument given to ioctl(2) system call.
1080  *      Often contains a pointer.
1081  *
1082  *      Returns 0 if successful (some ioctls return positive numbers on
1083  *      success as well). Returns a negated errno value in case of error.
1084  *
1085  *      Note: most ioctls are forward onto the block subsystem or further
1086  *      down in the scsi subsystem.
1087  **/
1088 static int sd_ioctl(struct block_device *bdev, fmode_t mode,
1089                     unsigned int cmd, unsigned long arg)
1090 {
1091         struct gendisk *disk = bdev->bd_disk;
1092         struct scsi_disk *sdkp = scsi_disk(disk);
1093         struct scsi_device *sdp = sdkp->device;
1094         void __user *p = (void __user *)arg;
1095         int error;
1096     
1097         SCSI_LOG_IOCTL(1, sd_printk(KERN_INFO, sdkp, "sd_ioctl: disk=%s, "
1098                                     "cmd=0x%x\n", disk->disk_name, cmd));
1099
1100         error = scsi_verify_blk_ioctl(bdev, cmd);
1101         if (error < 0)
1102                 return error;
1103
1104         /*
1105          * If we are in the middle of error recovery, don't let anyone
1106          * else try and use this device.  Also, if error recovery fails, it
1107          * may try and take the device offline, in which case all further
1108          * access to the device is prohibited.
1109          */
1110         error = scsi_nonblockable_ioctl(sdp, cmd, p,
1111                                         (mode & FMODE_NDELAY) != 0);
1112         if (!scsi_block_when_processing_errors(sdp) || !error)
1113                 goto out;
1114
1115         /*
1116          * Send SCSI addressing ioctls directly to mid level, send other
1117          * ioctls to block level and then onto mid level if they can't be
1118          * resolved.
1119          */
1120         switch (cmd) {
1121                 case SCSI_IOCTL_GET_IDLUN:
1122                 case SCSI_IOCTL_GET_BUS_NUMBER:
1123                         error = scsi_ioctl(sdp, cmd, p);
1124                         break;
1125                 default:
1126                         error = scsi_cmd_blk_ioctl(bdev, mode, cmd, p);
1127                         if (error != -ENOTTY)
1128                                 break;
1129                         error = scsi_ioctl(sdp, cmd, p);
1130                         break;
1131         }
1132 out:
1133         return error;
1134 }
1135
1136 static void set_media_not_present(struct scsi_disk *sdkp)
1137 {
1138         if (sdkp->media_present)
1139                 sdkp->device->changed = 1;
1140
1141         if (sdkp->device->removable) {
1142                 sdkp->media_present = 0;
1143                 sdkp->capacity = 0;
1144         }
1145 }
1146
1147 static int media_not_present(struct scsi_disk *sdkp,
1148                              struct scsi_sense_hdr *sshdr)
1149 {
1150         if (!scsi_sense_valid(sshdr))
1151                 return 0;
1152
1153         /* not invoked for commands that could return deferred errors */
1154         switch (sshdr->sense_key) {
1155         case UNIT_ATTENTION:
1156         case NOT_READY:
1157                 /* medium not present */
1158                 if (sshdr->asc == 0x3A) {
1159                         set_media_not_present(sdkp);
1160                         return 1;
1161                 }
1162         }
1163         return 0;
1164 }
1165
1166 /**
1167  *      sd_check_events - check media events
1168  *      @disk: kernel device descriptor
1169  *      @clearing: disk events currently being cleared
1170  *
1171  *      Returns mask of DISK_EVENT_*.
1172  *
1173  *      Note: this function is invoked from the block subsystem.
1174  **/
1175 static unsigned int sd_check_events(struct gendisk *disk, unsigned int clearing)
1176 {
1177         struct scsi_disk *sdkp = scsi_disk(disk);
1178         struct scsi_device *sdp = sdkp->device;
1179         struct scsi_sense_hdr *sshdr = NULL;
1180         int retval;
1181
1182         SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_check_events\n"));
1183
1184         /*
1185          * If the device is offline, don't send any commands - just pretend as
1186          * if the command failed.  If the device ever comes back online, we
1187          * can deal with it then.  It is only because of unrecoverable errors
1188          * that we would ever take a device offline in the first place.
1189          */
1190         if (!scsi_device_online(sdp)) {
1191                 set_media_not_present(sdkp);
1192                 goto out;
1193         }
1194
1195         /*
1196          * Using TEST_UNIT_READY enables differentiation between drive with
1197          * no cartridge loaded - NOT READY, drive with changed cartridge -
1198          * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
1199          *
1200          * Drives that auto spin down. eg iomega jaz 1G, will be started
1201          * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
1202          * sd_revalidate() is called.
1203          */
1204         retval = -ENODEV;
1205
1206         if (scsi_block_when_processing_errors(sdp)) {
1207                 sshdr  = kzalloc(sizeof(*sshdr), GFP_KERNEL);
1208                 retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES,
1209                                               sshdr);
1210         }
1211
1212         /* failed to execute TUR, assume media not present */
1213         if (host_byte(retval)) {
1214                 set_media_not_present(sdkp);
1215                 goto out;
1216         }
1217
1218         if (media_not_present(sdkp, sshdr))
1219                 goto out;
1220
1221         /*
1222          * For removable scsi disk we have to recognise the presence
1223          * of a disk in the drive.
1224          */
1225         if (!sdkp->media_present)
1226                 sdp->changed = 1;
1227         sdkp->media_present = 1;
1228 out:
1229         /*
1230          * sdp->changed is set under the following conditions:
1231          *
1232          *      Medium present state has changed in either direction.
1233          *      Device has indicated UNIT_ATTENTION.
1234          */
1235         kfree(sshdr);
1236         retval = sdp->changed ? DISK_EVENT_MEDIA_CHANGE : 0;
1237         sdp->changed = 0;
1238         return retval;
1239 }
1240
1241 static int sd_sync_cache(struct scsi_disk *sdkp)
1242 {
1243         int retries, res;
1244         struct scsi_device *sdp = sdkp->device;
1245         struct scsi_sense_hdr sshdr;
1246
1247         if (!scsi_device_online(sdp))
1248                 return -ENODEV;
1249
1250
1251         for (retries = 3; retries > 0; --retries) {
1252                 unsigned char cmd[10] = { 0 };
1253
1254                 cmd[0] = SYNCHRONIZE_CACHE;
1255                 /*
1256                  * Leave the rest of the command zero to indicate
1257                  * flush everything.
1258                  */
1259                 res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
1260                                        SD_FLUSH_TIMEOUT, SD_MAX_RETRIES, NULL);
1261                 if (res == 0)
1262                         break;
1263         }
1264
1265         if (res) {
1266                 sd_print_result(sdkp, res);
1267                 if (driver_byte(res) & DRIVER_SENSE)
1268                         sd_print_sense_hdr(sdkp, &sshdr);
1269         }
1270
1271         if (res)
1272                 return -EIO;
1273         return 0;
1274 }
1275
1276 static void sd_rescan(struct device *dev)
1277 {
1278         struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
1279
1280         if (sdkp) {
1281                 revalidate_disk(sdkp->disk);
1282                 scsi_disk_put(sdkp);
1283         }
1284 }
1285
1286
1287 #ifdef CONFIG_COMPAT
1288 /* 
1289  * This gets directly called from VFS. When the ioctl 
1290  * is not recognized we go back to the other translation paths. 
1291  */
1292 static int sd_compat_ioctl(struct block_device *bdev, fmode_t mode,
1293                            unsigned int cmd, unsigned long arg)
1294 {
1295         struct scsi_device *sdev = scsi_disk(bdev->bd_disk)->device;
1296         int ret;
1297
1298         ret = scsi_verify_blk_ioctl(bdev, cmd);
1299         if (ret < 0)
1300                 return -ENOIOCTLCMD;
1301
1302         /*
1303          * If we are in the middle of error recovery, don't let anyone
1304          * else try and use this device.  Also, if error recovery fails, it
1305          * may try and take the device offline, in which case all further
1306          * access to the device is prohibited.
1307          */
1308         if (!scsi_block_when_processing_errors(sdev))
1309                 return -ENODEV;
1310                
1311         if (sdev->host->hostt->compat_ioctl) {
1312                 ret = sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg);
1313
1314                 return ret;
1315         }
1316
1317         /* 
1318          * Let the static ioctl translation table take care of it.
1319          */
1320         return -ENOIOCTLCMD; 
1321 }
1322 #endif
1323
1324 static const struct block_device_operations sd_fops = {
1325         .owner                  = THIS_MODULE,
1326         .open                   = sd_open,
1327         .release                = sd_release,
1328         .ioctl                  = sd_ioctl,
1329         .getgeo                 = sd_getgeo,
1330 #ifdef CONFIG_COMPAT
1331         .compat_ioctl           = sd_compat_ioctl,
1332 #endif
1333         .check_events           = sd_check_events,
1334         .revalidate_disk        = sd_revalidate_disk,
1335         .unlock_native_capacity = sd_unlock_native_capacity,
1336 };
1337
1338 static unsigned int sd_completed_bytes(struct scsi_cmnd *scmd)
1339 {
1340         u64 start_lba = blk_rq_pos(scmd->request);
1341         u64 end_lba = blk_rq_pos(scmd->request) + (scsi_bufflen(scmd) / 512);
1342         u64 factor = scmd->device->sector_size / 512;
1343         u64 bad_lba;
1344         int info_valid;
1345         /*
1346          * resid is optional but mostly filled in.  When it's unused,
1347          * its value is zero, so we assume the whole buffer transferred
1348          */
1349         unsigned int transferred = scsi_bufflen(scmd) - scsi_get_resid(scmd);
1350         unsigned int good_bytes;
1351
1352         if (scmd->request->cmd_type != REQ_TYPE_FS)
1353                 return 0;
1354
1355         info_valid = scsi_get_sense_info_fld(scmd->sense_buffer,
1356                                              SCSI_SENSE_BUFFERSIZE,
1357                                              &bad_lba);
1358         if (!info_valid)
1359                 return 0;
1360
1361         if (scsi_bufflen(scmd) <= scmd->device->sector_size)
1362                 return 0;
1363
1364         /* be careful ... don't want any overflows */
1365         do_div(start_lba, factor);
1366         do_div(end_lba, factor);
1367
1368         /* The bad lba was reported incorrectly, we have no idea where
1369          * the error is.
1370          */
1371         if (bad_lba < start_lba  || bad_lba >= end_lba)
1372                 return 0;
1373
1374         /* This computation should always be done in terms of
1375          * the resolution of the device's medium.
1376          */
1377         good_bytes = (bad_lba - start_lba) * scmd->device->sector_size;
1378         return min(good_bytes, transferred);
1379 }
1380
1381 /**
1382  *      sd_done - bottom half handler: called when the lower level
1383  *      driver has completed (successfully or otherwise) a scsi command.
1384  *      @SCpnt: mid-level's per command structure.
1385  *
1386  *      Note: potentially run from within an ISR. Must not block.
1387  **/
1388 static int sd_done(struct scsi_cmnd *SCpnt)
1389 {
1390         int result = SCpnt->result;
1391         unsigned int good_bytes = result ? 0 : scsi_bufflen(SCpnt);
1392         struct scsi_sense_hdr sshdr;
1393         struct scsi_disk *sdkp = scsi_disk(SCpnt->request->rq_disk);
1394         int sense_valid = 0;
1395         int sense_deferred = 0;
1396         unsigned char op = SCpnt->cmnd[0];
1397
1398         if ((SCpnt->request->cmd_flags & REQ_DISCARD) && !result)
1399                 scsi_set_resid(SCpnt, 0);
1400
1401         if (result) {
1402                 sense_valid = scsi_command_normalize_sense(SCpnt, &sshdr);
1403                 if (sense_valid)
1404                         sense_deferred = scsi_sense_is_deferred(&sshdr);
1405         }
1406 #ifdef CONFIG_SCSI_LOGGING
1407         SCSI_LOG_HLCOMPLETE(1, scsi_print_result(SCpnt));
1408         if (sense_valid) {
1409                 SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, SCpnt,
1410                                                    "sd_done: sb[respc,sk,asc,"
1411                                                    "ascq]=%x,%x,%x,%x\n",
1412                                                    sshdr.response_code,
1413                                                    sshdr.sense_key, sshdr.asc,
1414                                                    sshdr.ascq));
1415         }
1416 #endif
1417         if (driver_byte(result) != DRIVER_SENSE &&
1418             (!sense_valid || sense_deferred))
1419                 goto out;
1420
1421         switch (sshdr.sense_key) {
1422         case HARDWARE_ERROR:
1423         case MEDIUM_ERROR:
1424                 good_bytes = sd_completed_bytes(SCpnt);
1425                 break;
1426         case RECOVERED_ERROR:
1427                 good_bytes = scsi_bufflen(SCpnt);
1428                 break;
1429         case NO_SENSE:
1430                 /* This indicates a false check condition, so ignore it.  An
1431                  * unknown amount of data was transferred so treat it as an
1432                  * error.
1433                  */
1434                 scsi_print_sense("sd", SCpnt);
1435                 SCpnt->result = 0;
1436                 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
1437                 break;
1438         case ABORTED_COMMAND:
1439                 if (sshdr.asc == 0x10)  /* DIF: Target detected corruption */
1440                         good_bytes = sd_completed_bytes(SCpnt);
1441                 break;
1442         case ILLEGAL_REQUEST:
1443                 if (sshdr.asc == 0x10)  /* DIX: Host detected corruption */
1444                         good_bytes = sd_completed_bytes(SCpnt);
1445                 /* INVALID COMMAND OPCODE or INVALID FIELD IN CDB */
1446                 if ((sshdr.asc == 0x20 || sshdr.asc == 0x24) &&
1447                     (op == UNMAP || op == WRITE_SAME_16 || op == WRITE_SAME))
1448                         sd_config_discard(sdkp, SD_LBP_DISABLE);
1449                 break;
1450         default:
1451                 break;
1452         }
1453  out:
1454         if (rq_data_dir(SCpnt->request) == READ && scsi_prot_sg_count(SCpnt))
1455                 sd_dif_complete(SCpnt, good_bytes);
1456
1457         return good_bytes;
1458 }
1459
1460 /*
1461  * spinup disk - called only in sd_revalidate_disk()
1462  */
1463 static void
1464 sd_spinup_disk(struct scsi_disk *sdkp)
1465 {
1466         unsigned char cmd[10];
1467         unsigned long spintime_expire = 0;
1468         int retries, spintime;
1469         unsigned int the_result;
1470         struct scsi_sense_hdr sshdr;
1471         int sense_valid = 0;
1472
1473         spintime = 0;
1474
1475         /* Spin up drives, as required.  Only do this at boot time */
1476         /* Spinup needs to be done for module loads too. */
1477         do {
1478                 retries = 0;
1479
1480                 do {
1481                         cmd[0] = TEST_UNIT_READY;
1482                         memset((void *) &cmd[1], 0, 9);
1483
1484                         the_result = scsi_execute_req(sdkp->device, cmd,
1485                                                       DMA_NONE, NULL, 0,
1486                                                       &sshdr, SD_TIMEOUT,
1487                                                       SD_MAX_RETRIES, NULL);
1488
1489                         /*
1490                          * If the drive has indicated to us that it
1491                          * doesn't have any media in it, don't bother
1492                          * with any more polling.
1493                          */
1494                         if (media_not_present(sdkp, &sshdr))
1495                                 return;
1496
1497                         if (the_result)
1498                                 sense_valid = scsi_sense_valid(&sshdr);
1499                         retries++;
1500                 } while (retries < 3 && 
1501                          (!scsi_status_is_good(the_result) ||
1502                           ((driver_byte(the_result) & DRIVER_SENSE) &&
1503                           sense_valid && sshdr.sense_key == UNIT_ATTENTION)));
1504
1505                 if ((driver_byte(the_result) & DRIVER_SENSE) == 0) {
1506                         /* no sense, TUR either succeeded or failed
1507                          * with a status error */
1508                         if(!spintime && !scsi_status_is_good(the_result)) {
1509                                 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1510                                 sd_print_result(sdkp, the_result);
1511                         }
1512                         break;
1513                 }
1514                                         
1515                 /*
1516                  * The device does not want the automatic start to be issued.
1517                  */
1518                 if (sdkp->device->no_start_on_add)
1519                         break;
1520
1521                 if (sense_valid && sshdr.sense_key == NOT_READY) {
1522                         if (sshdr.asc == 4 && sshdr.ascq == 3)
1523                                 break;  /* manual intervention required */
1524                         if (sshdr.asc == 4 && sshdr.ascq == 0xb)
1525                                 break;  /* standby */
1526                         if (sshdr.asc == 4 && sshdr.ascq == 0xc)
1527                                 break;  /* unavailable */
1528                         /*
1529                          * Issue command to spin up drive when not ready
1530                          */
1531                         if (!spintime) {
1532                                 sd_printk(KERN_NOTICE, sdkp, "Spinning up disk...");
1533                                 cmd[0] = START_STOP;
1534                                 cmd[1] = 1;     /* Return immediately */
1535                                 memset((void *) &cmd[2], 0, 8);
1536                                 cmd[4] = 1;     /* Start spin cycle */
1537                                 if (sdkp->device->start_stop_pwr_cond)
1538                                         cmd[4] |= 1 << 4;
1539                                 scsi_execute_req(sdkp->device, cmd, DMA_NONE,
1540                                                  NULL, 0, &sshdr,
1541                                                  SD_TIMEOUT, SD_MAX_RETRIES,
1542                                                  NULL);
1543                                 spintime_expire = jiffies + 100 * HZ;
1544                                 spintime = 1;
1545                         }
1546                         /* Wait 1 second for next try */
1547                         msleep(1000);
1548                         printk(".");
1549
1550                 /*
1551                  * Wait for USB flash devices with slow firmware.
1552                  * Yes, this sense key/ASC combination shouldn't
1553                  * occur here.  It's characteristic of these devices.
1554                  */
1555                 } else if (sense_valid &&
1556                                 sshdr.sense_key == UNIT_ATTENTION &&
1557                                 sshdr.asc == 0x28) {
1558                         if (!spintime) {
1559                                 spintime_expire = jiffies + 5 * HZ;
1560                                 spintime = 1;
1561                         }
1562                         /* Wait 1 second for next try */
1563                         msleep(1000);
1564                 } else {
1565                         /* we don't understand the sense code, so it's
1566                          * probably pointless to loop */
1567                         if(!spintime) {
1568                                 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1569                                 sd_print_sense_hdr(sdkp, &sshdr);
1570                         }
1571                         break;
1572                 }
1573                                 
1574         } while (spintime && time_before_eq(jiffies, spintime_expire));
1575
1576         if (spintime) {
1577                 if (scsi_status_is_good(the_result))
1578                         printk("ready\n");
1579                 else
1580                         printk("not responding...\n");
1581         }
1582 }
1583
1584
1585 /*
1586  * Determine whether disk supports Data Integrity Field.
1587  */
1588 static void sd_read_protection_type(struct scsi_disk *sdkp, unsigned char *buffer)
1589 {
1590         struct scsi_device *sdp = sdkp->device;
1591         u8 type;
1592
1593         if (scsi_device_protection(sdp) == 0 || (buffer[12] & 1) == 0)
1594                 return;
1595
1596         type = ((buffer[12] >> 1) & 7) + 1; /* P_TYPE 0 = Type 1 */
1597
1598         if (type == sdkp->protection_type || !sdkp->first_scan)
1599                 return;
1600
1601         sdkp->protection_type = type;
1602
1603         if (type > SD_DIF_TYPE3_PROTECTION) {
1604                 sd_printk(KERN_ERR, sdkp, "formatted with unsupported " \
1605                           "protection type %u. Disabling disk!\n", type);
1606                 sdkp->capacity = 0;
1607                 return;
1608         }
1609
1610         if (scsi_host_dif_capable(sdp->host, type))
1611                 sd_printk(KERN_NOTICE, sdkp,
1612                           "Enabling DIF Type %u protection\n", type);
1613         else
1614                 sd_printk(KERN_NOTICE, sdkp,
1615                           "Disabling DIF Type %u protection\n", type);
1616 }
1617
1618 static void read_capacity_error(struct scsi_disk *sdkp, struct scsi_device *sdp,
1619                         struct scsi_sense_hdr *sshdr, int sense_valid,
1620                         int the_result)
1621 {
1622         sd_print_result(sdkp, the_result);
1623         if (driver_byte(the_result) & DRIVER_SENSE)
1624                 sd_print_sense_hdr(sdkp, sshdr);
1625         else
1626                 sd_printk(KERN_NOTICE, sdkp, "Sense not available.\n");
1627
1628         /*
1629          * Set dirty bit for removable devices if not ready -
1630          * sometimes drives will not report this properly.
1631          */
1632         if (sdp->removable &&
1633             sense_valid && sshdr->sense_key == NOT_READY)
1634                 set_media_not_present(sdkp);
1635
1636         /*
1637          * We used to set media_present to 0 here to indicate no media
1638          * in the drive, but some drives fail read capacity even with
1639          * media present, so we can't do that.
1640          */
1641         sdkp->capacity = 0; /* unknown mapped to zero - as usual */
1642 }
1643
1644 #define RC16_LEN 32
1645 #if RC16_LEN > SD_BUF_SIZE
1646 #error RC16_LEN must not be more than SD_BUF_SIZE
1647 #endif
1648
1649 #define READ_CAPACITY_RETRIES_ON_RESET  10
1650
1651 static int read_capacity_16(struct scsi_disk *sdkp, struct scsi_device *sdp,
1652                                                 unsigned char *buffer)
1653 {
1654         unsigned char cmd[16];
1655         struct scsi_sense_hdr sshdr;
1656         int sense_valid = 0;
1657         int the_result;
1658         int retries = 3, reset_retries = READ_CAPACITY_RETRIES_ON_RESET;
1659         unsigned int alignment;
1660         unsigned long long lba;
1661         unsigned sector_size;
1662
1663         if (sdp->no_read_capacity_16)
1664                 return -EINVAL;
1665
1666         do {
1667                 memset(cmd, 0, 16);
1668                 cmd[0] = SERVICE_ACTION_IN;
1669                 cmd[1] = SAI_READ_CAPACITY_16;
1670                 cmd[13] = RC16_LEN;
1671                 memset(buffer, 0, RC16_LEN);
1672
1673                 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
1674                                         buffer, RC16_LEN, &sshdr,
1675                                         SD_TIMEOUT, SD_MAX_RETRIES, NULL);
1676
1677                 if (media_not_present(sdkp, &sshdr))
1678                         return -ENODEV;
1679
1680                 if (the_result) {
1681                         sense_valid = scsi_sense_valid(&sshdr);
1682                         if (sense_valid &&
1683                             sshdr.sense_key == ILLEGAL_REQUEST &&
1684                             (sshdr.asc == 0x20 || sshdr.asc == 0x24) &&
1685                             sshdr.ascq == 0x00)
1686                                 /* Invalid Command Operation Code or
1687                                  * Invalid Field in CDB, just retry
1688                                  * silently with RC10 */
1689                                 return -EINVAL;
1690                         if (sense_valid &&
1691                             sshdr.sense_key == UNIT_ATTENTION &&
1692                             sshdr.asc == 0x29 && sshdr.ascq == 0x00)
1693                                 /* Device reset might occur several times,
1694                                  * give it one more chance */
1695                                 if (--reset_retries > 0)
1696                                         continue;
1697                 }
1698                 retries--;
1699
1700         } while (the_result && retries);
1701
1702         if (the_result) {
1703                 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY(16) failed\n");
1704                 read_capacity_error(sdkp, sdp, &sshdr, sense_valid, the_result);
1705                 return -EINVAL;
1706         }
1707
1708         sector_size = get_unaligned_be32(&buffer[8]);
1709         lba = get_unaligned_be64(&buffer[0]);
1710
1711         sd_read_protection_type(sdkp, buffer);
1712
1713         if ((sizeof(sdkp->capacity) == 4) && (lba >= 0xffffffffULL)) {
1714                 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use a "
1715                         "kernel compiled with support for large block "
1716                         "devices.\n");
1717                 sdkp->capacity = 0;
1718                 return -EOVERFLOW;
1719         }
1720
1721         /* Logical blocks per physical block exponent */
1722         sdkp->physical_block_size = (1 << (buffer[13] & 0xf)) * sector_size;
1723
1724         /* Lowest aligned logical block */
1725         alignment = ((buffer[14] & 0x3f) << 8 | buffer[15]) * sector_size;
1726         blk_queue_alignment_offset(sdp->request_queue, alignment);
1727         if (alignment && sdkp->first_scan)
1728                 sd_printk(KERN_NOTICE, sdkp,
1729                           "physical block alignment offset: %u\n", alignment);
1730
1731         if (buffer[14] & 0x80) { /* LBPME */
1732                 sdkp->lbpme = 1;
1733
1734                 if (buffer[14] & 0x40) /* LBPRZ */
1735                         sdkp->lbprz = 1;
1736
1737                 sd_config_discard(sdkp, SD_LBP_WS16);
1738         }
1739
1740         sdkp->capacity = lba + 1;
1741         return sector_size;
1742 }
1743
1744 static int read_capacity_10(struct scsi_disk *sdkp, struct scsi_device *sdp,
1745                                                 unsigned char *buffer)
1746 {
1747         unsigned char cmd[16];
1748         struct scsi_sense_hdr sshdr;
1749         int sense_valid = 0;
1750         int the_result;
1751         int retries = 3, reset_retries = READ_CAPACITY_RETRIES_ON_RESET;
1752         sector_t lba;
1753         unsigned sector_size;
1754
1755         do {
1756                 cmd[0] = READ_CAPACITY;
1757                 memset(&cmd[1], 0, 9);
1758                 memset(buffer, 0, 8);
1759
1760                 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
1761                                         buffer, 8, &sshdr,
1762                                         SD_TIMEOUT, SD_MAX_RETRIES, NULL);
1763
1764                 if (media_not_present(sdkp, &sshdr))
1765                         return -ENODEV;
1766
1767                 if (the_result) {
1768                         sense_valid = scsi_sense_valid(&sshdr);
1769                         if (sense_valid &&
1770                             sshdr.sense_key == UNIT_ATTENTION &&
1771                             sshdr.asc == 0x29 && sshdr.ascq == 0x00)
1772                                 /* Device reset might occur several times,
1773                                  * give it one more chance */
1774                                 if (--reset_retries > 0)
1775                                         continue;
1776                 }
1777                 retries--;
1778
1779         } while (the_result && retries);
1780
1781         if (the_result) {
1782                 sd_printk(KERN_NOTICE, sdkp, "READ CAPACITY failed\n");
1783                 read_capacity_error(sdkp, sdp, &sshdr, sense_valid, the_result);
1784                 return -EINVAL;
1785         }
1786
1787         sector_size = get_unaligned_be32(&buffer[4]);
1788         lba = get_unaligned_be32(&buffer[0]);
1789
1790         if (sdp->no_read_capacity_16 && (lba == 0xffffffff)) {
1791                 /* Some buggy (usb cardreader) devices return an lba of
1792                    0xffffffff when the want to report a size of 0 (with
1793                    which they really mean no media is present) */
1794                 sdkp->capacity = 0;
1795                 sdkp->physical_block_size = sector_size;
1796                 return sector_size;
1797         }
1798
1799         if ((sizeof(sdkp->capacity) == 4) && (lba == 0xffffffff)) {
1800                 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use a "
1801                         "kernel compiled with support for large block "
1802                         "devices.\n");
1803                 sdkp->capacity = 0;
1804                 return -EOVERFLOW;
1805         }
1806
1807         sdkp->capacity = lba + 1;
1808         sdkp->physical_block_size = sector_size;
1809         return sector_size;
1810 }
1811
1812 static int sd_try_rc16_first(struct scsi_device *sdp)
1813 {
1814         if (sdp->host->max_cmd_len < 16)
1815                 return 0;
1816         if (sdp->scsi_level > SCSI_SPC_2)
1817                 return 1;
1818         if (scsi_device_protection(sdp))
1819                 return 1;
1820         return 0;
1821 }
1822
1823 /*
1824  * read disk capacity
1825  */
1826 static void
1827 sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer)
1828 {
1829         int sector_size;
1830         struct scsi_device *sdp = sdkp->device;
1831         sector_t old_capacity = sdkp->capacity;
1832
1833         if (sd_try_rc16_first(sdp)) {
1834                 sector_size = read_capacity_16(sdkp, sdp, buffer);
1835                 if (sector_size == -EOVERFLOW)
1836                         goto got_data;
1837                 if (sector_size == -ENODEV)
1838                         return;
1839                 if (sector_size < 0)
1840                         sector_size = read_capacity_10(sdkp, sdp, buffer);
1841                 if (sector_size < 0)
1842                         return;
1843         } else {
1844                 sector_size = read_capacity_10(sdkp, sdp, buffer);
1845                 if (sector_size == -EOVERFLOW)
1846                         goto got_data;
1847                 if (sector_size < 0)
1848                         return;
1849                 if ((sizeof(sdkp->capacity) > 4) &&
1850                     (sdkp->capacity > 0xffffffffULL)) {
1851                         int old_sector_size = sector_size;
1852                         sd_printk(KERN_NOTICE, sdkp, "Very big device. "
1853                                         "Trying to use READ CAPACITY(16).\n");
1854                         sector_size = read_capacity_16(sdkp, sdp, buffer);
1855                         if (sector_size < 0) {
1856                                 sd_printk(KERN_NOTICE, sdkp,
1857                                         "Using 0xffffffff as device size\n");
1858                                 sdkp->capacity = 1 + (sector_t) 0xffffffff;
1859                                 sector_size = old_sector_size;
1860                                 goto got_data;
1861                         }
1862                 }
1863         }
1864
1865         /* Some devices are known to return the total number of blocks,
1866          * not the highest block number.  Some devices have versions
1867          * which do this and others which do not.  Some devices we might
1868          * suspect of doing this but we don't know for certain.
1869          *
1870          * If we know the reported capacity is wrong, decrement it.  If
1871          * we can only guess, then assume the number of blocks is even
1872          * (usually true but not always) and err on the side of lowering
1873          * the capacity.
1874          */
1875         if (sdp->fix_capacity ||
1876             (sdp->guess_capacity && (sdkp->capacity & 0x01))) {
1877                 sd_printk(KERN_INFO, sdkp, "Adjusting the sector count "
1878                                 "from its reported value: %llu\n",
1879                                 (unsigned long long) sdkp->capacity);
1880                 --sdkp->capacity;
1881         }
1882
1883 got_data:
1884         if (sector_size == 0) {
1885                 sector_size = 512;
1886                 sd_printk(KERN_NOTICE, sdkp, "Sector size 0 reported, "
1887                           "assuming 512.\n");
1888         }
1889
1890         if (sector_size != 512 &&
1891             sector_size != 1024 &&
1892             sector_size != 2048 &&
1893             sector_size != 4096) {
1894                 sd_printk(KERN_NOTICE, sdkp, "Unsupported sector size %d.\n",
1895                           sector_size);
1896                 /*
1897                  * The user might want to re-format the drive with
1898                  * a supported sectorsize.  Once this happens, it
1899                  * would be relatively trivial to set the thing up.
1900                  * For this reason, we leave the thing in the table.
1901                  */
1902                 sdkp->capacity = 0;
1903                 /*
1904                  * set a bogus sector size so the normal read/write
1905                  * logic in the block layer will eventually refuse any
1906                  * request on this device without tripping over power
1907                  * of two sector size assumptions
1908                  */
1909                 sector_size = 512;
1910         }
1911         blk_queue_logical_block_size(sdp->request_queue, sector_size);
1912
1913         {
1914                 char cap_str_2[10], cap_str_10[10];
1915                 u64 sz = (u64)sdkp->capacity << ilog2(sector_size);
1916
1917                 string_get_size(sz, STRING_UNITS_2, cap_str_2,
1918                                 sizeof(cap_str_2));
1919                 string_get_size(sz, STRING_UNITS_10, cap_str_10,
1920                                 sizeof(cap_str_10));
1921
1922                 if (sdkp->first_scan || old_capacity != sdkp->capacity) {
1923                         sd_printk(KERN_NOTICE, sdkp,
1924                                   "%llu %d-byte logical blocks: (%s/%s)\n",
1925                                   (unsigned long long)sdkp->capacity,
1926                                   sector_size, cap_str_10, cap_str_2);
1927
1928                         if (sdkp->physical_block_size != sector_size)
1929                                 sd_printk(KERN_NOTICE, sdkp,
1930                                           "%u-byte physical blocks\n",
1931                                           sdkp->physical_block_size);
1932                 }
1933         }
1934
1935         blk_queue_physical_block_size(sdp->request_queue,
1936                                       sdkp->physical_block_size);
1937         sdkp->device->sector_size = sector_size;
1938 }
1939
1940 /* called with buffer of length 512 */
1941 static inline int
1942 sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage,
1943                  unsigned char *buffer, int len, struct scsi_mode_data *data,
1944                  struct scsi_sense_hdr *sshdr)
1945 {
1946         return scsi_mode_sense(sdp, dbd, modepage, buffer, len,
1947                                SD_TIMEOUT, SD_MAX_RETRIES, data,
1948                                sshdr);
1949 }
1950
1951 /*
1952  * read write protect setting, if possible - called only in sd_revalidate_disk()
1953  * called with buffer of length SD_BUF_SIZE
1954  */
1955 static void
1956 sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
1957 {
1958         int res;
1959         struct scsi_device *sdp = sdkp->device;
1960         struct scsi_mode_data data;
1961         int old_wp = sdkp->write_prot;
1962
1963         set_disk_ro(sdkp->disk, 0);
1964         if (sdp->skip_ms_page_3f) {
1965                 sd_printk(KERN_NOTICE, sdkp, "Assuming Write Enabled\n");
1966                 return;
1967         }
1968
1969         if (sdp->use_192_bytes_for_3f) {
1970                 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 192, &data, NULL);
1971         } else {
1972                 /*
1973                  * First attempt: ask for all pages (0x3F), but only 4 bytes.
1974                  * We have to start carefully: some devices hang if we ask
1975                  * for more than is available.
1976                  */
1977                 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 4, &data, NULL);
1978
1979                 /*
1980                  * Second attempt: ask for page 0 When only page 0 is
1981                  * implemented, a request for page 3F may return Sense Key
1982                  * 5: Illegal Request, Sense Code 24: Invalid field in
1983                  * CDB.
1984                  */
1985                 if (!scsi_status_is_good(res))
1986                         res = sd_do_mode_sense(sdp, 0, 0, buffer, 4, &data, NULL);
1987
1988                 /*
1989                  * Third attempt: ask 255 bytes, as we did earlier.
1990                  */
1991                 if (!scsi_status_is_good(res))
1992                         res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 255,
1993                                                &data, NULL);
1994         }
1995
1996         if (!scsi_status_is_good(res)) {
1997                 sd_printk(KERN_WARNING, sdkp,
1998                           "Test WP failed, assume Write Enabled\n");
1999         } else {
2000                 sdkp->write_prot = ((data.device_specific & 0x80) != 0);
2001                 set_disk_ro(sdkp->disk, sdkp->write_prot);
2002                 if (sdkp->first_scan || old_wp != sdkp->write_prot) {
2003                         sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
2004                                   sdkp->write_prot ? "on" : "off");
2005                         sd_printk(KERN_DEBUG, sdkp,
2006                                   "Mode Sense: %02x %02x %02x %02x\n",
2007                                   buffer[0], buffer[1], buffer[2], buffer[3]);
2008                 }
2009         }
2010 }
2011
2012 /*
2013  * sd_read_cache_type - called only from sd_revalidate_disk()
2014  * called with buffer of length SD_BUF_SIZE
2015  */
2016 static void
2017 sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
2018 {
2019         int len = 0, res;
2020         struct scsi_device *sdp = sdkp->device;
2021
2022         int dbd;
2023         int modepage;
2024         int first_len;
2025         struct scsi_mode_data data;
2026         struct scsi_sense_hdr sshdr;
2027         int old_wce = sdkp->WCE;
2028         int old_rcd = sdkp->RCD;
2029         int old_dpofua = sdkp->DPOFUA;
2030
2031
2032         if (sdkp->cache_override)
2033                 return;
2034
2035         first_len = 4;
2036         if (sdp->skip_ms_page_8) {
2037                 if (sdp->type == TYPE_RBC)
2038                         goto defaults;
2039                 else {
2040                         if (sdp->skip_ms_page_3f)
2041                                 goto defaults;
2042                         modepage = 0x3F;
2043                         if (sdp->use_192_bytes_for_3f)
2044                                 first_len = 192;
2045                         dbd = 0;
2046                 }
2047         } else if (sdp->type == TYPE_RBC) {
2048                 modepage = 6;
2049                 dbd = 8;
2050         } else {
2051                 modepage = 8;
2052                 dbd = 0;
2053         }
2054
2055         /* cautiously ask */
2056         res = sd_do_mode_sense(sdp, dbd, modepage, buffer, first_len,
2057                         &data, &sshdr);
2058
2059         if (!scsi_status_is_good(res))
2060                 goto bad_sense;
2061
2062         if (!data.header_length) {
2063                 modepage = 6;
2064                 first_len = 0;
2065                 sd_printk(KERN_ERR, sdkp, "Missing header in MODE_SENSE response\n");
2066         }
2067
2068         /* that went OK, now ask for the proper length */
2069         len = data.length;
2070
2071         /*
2072          * We're only interested in the first three bytes, actually.
2073          * But the data cache page is defined for the first 20.
2074          */
2075         if (len < 3)
2076                 goto bad_sense;
2077         else if (len > SD_BUF_SIZE) {
2078                 sd_printk(KERN_NOTICE, sdkp, "Truncating mode parameter "
2079                           "data from %d to %d bytes\n", len, SD_BUF_SIZE);
2080                 len = SD_BUF_SIZE;
2081         }
2082         if (modepage == 0x3F && sdp->use_192_bytes_for_3f)
2083                 len = 192;
2084
2085         /* Get the data */
2086         if (len > first_len)
2087                 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len,
2088                                 &data, &sshdr);
2089
2090         if (scsi_status_is_good(res)) {
2091                 int offset = data.header_length + data.block_descriptor_length;
2092
2093                 while (offset < len) {
2094                         u8 page_code = buffer[offset] & 0x3F;
2095                         u8 spf       = buffer[offset] & 0x40;
2096
2097                         if (page_code == 8 || page_code == 6) {
2098                                 /* We're interested only in the first 3 bytes.
2099                                  */
2100                                 if (len - offset <= 2) {
2101                                         sd_printk(KERN_ERR, sdkp, "Incomplete "
2102                                                   "mode parameter data\n");
2103                                         goto defaults;
2104                                 } else {
2105                                         modepage = page_code;
2106                                         goto Page_found;
2107                                 }
2108                         } else {
2109                                 /* Go to the next page */
2110                                 if (spf && len - offset > 3)
2111                                         offset += 4 + (buffer[offset+2] << 8) +
2112                                                 buffer[offset+3];
2113                                 else if (!spf && len - offset > 1)
2114                                         offset += 2 + buffer[offset+1];
2115                                 else {
2116                                         sd_printk(KERN_ERR, sdkp, "Incomplete "
2117                                                   "mode parameter data\n");
2118                                         goto defaults;
2119                                 }
2120                         }
2121                 }
2122
2123                 sd_printk(KERN_ERR, sdkp, "No Caching mode page found\n");
2124                 goto defaults;
2125
2126         Page_found:
2127                 if (modepage == 8) {
2128                         sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);
2129                         sdkp->RCD = ((buffer[offset + 2] & 0x01) != 0);
2130                 } else {
2131                         sdkp->WCE = ((buffer[offset + 2] & 0x01) == 0);
2132                         sdkp->RCD = 0;
2133                 }
2134
2135                 sdkp->DPOFUA = (data.device_specific & 0x10) != 0;
2136                 if (sdp->broken_fua) {
2137                         sd_printk(KERN_NOTICE, sdkp, "Disabling FUA\n");
2138                         sdkp->DPOFUA = 0;
2139                 } else if (sdkp->DPOFUA && !sdkp->device->use_10_for_rw) {
2140                         sd_printk(KERN_NOTICE, sdkp,
2141                                   "Uses READ/WRITE(6), disabling FUA\n");
2142                         sdkp->DPOFUA = 0;
2143                 }
2144
2145                 if (sdkp->first_scan || old_wce != sdkp->WCE ||
2146                     old_rcd != sdkp->RCD || old_dpofua != sdkp->DPOFUA)
2147                         sd_printk(KERN_NOTICE, sdkp,
2148                                   "Write cache: %s, read cache: %s, %s\n",
2149                                   sdkp->WCE ? "enabled" : "disabled",
2150                                   sdkp->RCD ? "disabled" : "enabled",
2151                                   sdkp->DPOFUA ? "supports DPO and FUA"
2152                                   : "doesn't support DPO or FUA");
2153
2154                 return;
2155         }
2156
2157 bad_sense:
2158         if (scsi_sense_valid(&sshdr) &&
2159             sshdr.sense_key == ILLEGAL_REQUEST &&
2160             sshdr.asc == 0x24 && sshdr.ascq == 0x0)
2161                 /* Invalid field in CDB */
2162                 sd_printk(KERN_NOTICE, sdkp, "Cache data unavailable\n");
2163         else
2164                 sd_printk(KERN_ERR, sdkp, "Asking for cache data failed\n");
2165
2166 defaults:
2167         sd_printk(KERN_ERR, sdkp, "Assuming drive cache: write through\n");
2168         sdkp->WCE = 0;
2169         sdkp->RCD = 0;
2170         sdkp->DPOFUA = 0;
2171 }
2172
2173 /*
2174  * The ATO bit indicates whether the DIF application tag is available
2175  * for use by the operating system.
2176  */
2177 static void sd_read_app_tag_own(struct scsi_disk *sdkp, unsigned char *buffer)
2178 {
2179         int res, offset;
2180         struct scsi_device *sdp = sdkp->device;
2181         struct scsi_mode_data data;
2182         struct scsi_sense_hdr sshdr;
2183
2184         if (sdp->type != TYPE_DISK)
2185                 return;
2186
2187         if (sdkp->protection_type == 0)
2188                 return;
2189
2190         res = scsi_mode_sense(sdp, 1, 0x0a, buffer, 36, SD_TIMEOUT,
2191                               SD_MAX_RETRIES, &data, &sshdr);
2192
2193         if (!scsi_status_is_good(res) || !data.header_length ||
2194             data.length < 6) {
2195                 sd_printk(KERN_WARNING, sdkp,
2196                           "getting Control mode page failed, assume no ATO\n");
2197
2198                 if (scsi_sense_valid(&sshdr))
2199                         sd_print_sense_hdr(sdkp, &sshdr);
2200
2201                 return;
2202         }
2203
2204         offset = data.header_length + data.block_descriptor_length;
2205
2206         if ((buffer[offset] & 0x3f) != 0x0a) {
2207                 sd_printk(KERN_ERR, sdkp, "ATO Got wrong page\n");
2208                 return;
2209         }
2210
2211         if ((buffer[offset + 5] & 0x80) == 0)
2212                 return;
2213
2214         sdkp->ATO = 1;
2215
2216         return;
2217 }
2218
2219 /**
2220  * sd_read_block_limits - Query disk device for preferred I/O sizes.
2221  * @disk: disk to query
2222  */
2223 static void sd_read_block_limits(struct scsi_disk *sdkp)
2224 {
2225         unsigned int sector_sz = sdkp->device->sector_size;
2226         const int vpd_len = 64;
2227         unsigned char *buffer = kmalloc(vpd_len, GFP_KERNEL);
2228
2229         if (!buffer ||
2230             /* Block Limits VPD */
2231             scsi_get_vpd_page(sdkp->device, 0xb0, buffer, vpd_len))
2232                 goto out;
2233
2234         blk_queue_io_min(sdkp->disk->queue,
2235                          get_unaligned_be16(&buffer[6]) * sector_sz);
2236         blk_queue_io_opt(sdkp->disk->queue,
2237                          get_unaligned_be32(&buffer[12]) * sector_sz);
2238
2239         if (buffer[3] == 0x3c) {
2240                 unsigned int lba_count, desc_count;
2241
2242                 sdkp->max_ws_blocks =
2243                         (u32) min_not_zero(get_unaligned_be64(&buffer[36]),
2244                                            (u64)0xffffffff);
2245
2246                 if (!sdkp->lbpme)
2247                         goto out;
2248
2249                 lba_count = get_unaligned_be32(&buffer[20]);
2250                 desc_count = get_unaligned_be32(&buffer[24]);
2251
2252                 if (lba_count && desc_count)
2253                         sdkp->max_unmap_blocks = lba_count;
2254
2255                 sdkp->unmap_granularity = get_unaligned_be32(&buffer[28]);
2256
2257                 if (buffer[32] & 0x80)
2258                         sdkp->unmap_alignment =
2259                                 get_unaligned_be32(&buffer[32]) & ~(1 << 31);
2260
2261                 if (!sdkp->lbpvpd) { /* LBP VPD page not provided */
2262
2263                         if (sdkp->max_unmap_blocks)
2264                                 sd_config_discard(sdkp, SD_LBP_UNMAP);
2265                         else
2266                                 sd_config_discard(sdkp, SD_LBP_WS16);
2267
2268                 } else {        /* LBP VPD page tells us what to use */
2269
2270                         if (sdkp->lbpu && sdkp->max_unmap_blocks)
2271                                 sd_config_discard(sdkp, SD_LBP_UNMAP);
2272                         else if (sdkp->lbpws)
2273                                 sd_config_discard(sdkp, SD_LBP_WS16);
2274                         else if (sdkp->lbpws10)
2275                                 sd_config_discard(sdkp, SD_LBP_WS10);
2276                         else
2277                                 sd_config_discard(sdkp, SD_LBP_DISABLE);
2278                 }
2279         }
2280
2281  out:
2282         kfree(buffer);
2283 }
2284
2285 /**
2286  * sd_read_block_characteristics - Query block dev. characteristics
2287  * @disk: disk to query
2288  */
2289 static void sd_read_block_characteristics(struct scsi_disk *sdkp)
2290 {
2291         unsigned char *buffer;
2292         u16 rot;
2293         const int vpd_len = 64;
2294
2295         buffer = kmalloc(vpd_len, GFP_KERNEL);
2296
2297         if (!buffer ||
2298             /* Block Device Characteristics VPD */
2299             scsi_get_vpd_page(sdkp->device, 0xb1, buffer, vpd_len))
2300                 goto out;
2301
2302         rot = get_unaligned_be16(&buffer[4]);
2303
2304         if (rot == 1)
2305                 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, sdkp->disk->queue);
2306
2307  out:
2308         kfree(buffer);
2309 }
2310
2311 /**
2312  * sd_read_block_provisioning - Query provisioning VPD page
2313  * @disk: disk to query
2314  */
2315 static void sd_read_block_provisioning(struct scsi_disk *sdkp)
2316 {
2317         unsigned char *buffer;
2318         const int vpd_len = 8;
2319
2320         if (sdkp->lbpme == 0)
2321                 return;
2322
2323         buffer = kmalloc(vpd_len, GFP_KERNEL);
2324
2325         if (!buffer || scsi_get_vpd_page(sdkp->device, 0xb2, buffer, vpd_len))
2326                 goto out;
2327
2328         sdkp->lbpvpd    = 1;
2329         sdkp->lbpu      = (buffer[5] >> 7) & 1; /* UNMAP */
2330         sdkp->lbpws     = (buffer[5] >> 6) & 1; /* WRITE SAME(16) with UNMAP */
2331         sdkp->lbpws10   = (buffer[5] >> 5) & 1; /* WRITE SAME(10) with UNMAP */
2332
2333  out:
2334         kfree(buffer);
2335 }
2336
2337 static int sd_try_extended_inquiry(struct scsi_device *sdp)
2338 {
2339         /*
2340          * Although VPD inquiries can go to SCSI-2 type devices,
2341          * some USB ones crash on receiving them, and the pages
2342          * we currently ask for are for SPC-3 and beyond
2343          */
2344         if (sdp->scsi_level > SCSI_SPC_2)
2345                 return 1;
2346         return 0;
2347 }
2348
2349 /**
2350  *      sd_revalidate_disk - called the first time a new disk is seen,
2351  *      performs disk spin up, read_capacity, etc.
2352  *      @disk: struct gendisk we care about
2353  **/
2354 static int sd_revalidate_disk(struct gendisk *disk)
2355 {
2356         struct scsi_disk *sdkp = scsi_disk(disk);
2357         struct scsi_device *sdp = sdkp->device;
2358         unsigned char *buffer;
2359         unsigned flush = 0;
2360
2361         SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp,
2362                                       "sd_revalidate_disk\n"));
2363
2364         /*
2365          * If the device is offline, don't try and read capacity or any
2366          * of the other niceties.
2367          */
2368         if (!scsi_device_online(sdp))
2369                 goto out;
2370
2371         buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL);
2372         if (!buffer) {
2373                 sd_printk(KERN_WARNING, sdkp, "sd_revalidate_disk: Memory "
2374                           "allocation failure.\n");
2375                 goto out;
2376         }
2377
2378         sd_spinup_disk(sdkp);
2379
2380         /*
2381          * Without media there is no reason to ask; moreover, some devices
2382          * react badly if we do.
2383          */
2384         if (sdkp->media_present) {
2385                 sd_read_capacity(sdkp, buffer);
2386
2387                 if (sd_try_extended_inquiry(sdp)) {
2388                         sd_read_block_provisioning(sdkp);
2389                         sd_read_block_limits(sdkp);
2390                         sd_read_block_characteristics(sdkp);
2391                 }
2392
2393                 sd_read_write_protect_flag(sdkp, buffer);
2394                 sd_read_cache_type(sdkp, buffer);
2395                 sd_read_app_tag_own(sdkp, buffer);
2396         }
2397
2398         sdkp->first_scan = 0;
2399
2400         /*
2401          * We now have all cache related info, determine how we deal
2402          * with flush requests.
2403          */
2404         if (sdkp->WCE) {
2405                 flush |= REQ_FLUSH;
2406                 if (sdkp->DPOFUA)
2407                         flush |= REQ_FUA;
2408         }
2409
2410         blk_queue_flush(sdkp->disk->queue, flush);
2411
2412         set_capacity(disk, logical_to_sectors(sdp, sdkp->capacity));
2413         kfree(buffer);
2414
2415  out:
2416         return 0;
2417 }
2418
2419 /**
2420  *      sd_unlock_native_capacity - unlock native capacity
2421  *      @disk: struct gendisk to set capacity for
2422  *
2423  *      Block layer calls this function if it detects that partitions
2424  *      on @disk reach beyond the end of the device.  If the SCSI host
2425  *      implements ->unlock_native_capacity() method, it's invoked to
2426  *      give it a chance to adjust the device capacity.
2427  *
2428  *      CONTEXT:
2429  *      Defined by block layer.  Might sleep.
2430  */
2431 static void sd_unlock_native_capacity(struct gendisk *disk)
2432 {
2433         struct scsi_device *sdev = scsi_disk(disk)->device;
2434
2435         if (sdev->host->hostt->unlock_native_capacity)
2436                 sdev->host->hostt->unlock_native_capacity(sdev);
2437 }
2438
2439 /**
2440  *      sd_format_disk_name - format disk name
2441  *      @prefix: name prefix - ie. "sd" for SCSI disks
2442  *      @index: index of the disk to format name for
2443  *      @buf: output buffer
2444  *      @buflen: length of the output buffer
2445  *
2446  *      SCSI disk names starts at sda.  The 26th device is sdz and the
2447  *      27th is sdaa.  The last one for two lettered suffix is sdzz
2448  *      which is followed by sdaaa.
2449  *
2450  *      This is basically 26 base counting with one extra 'nil' entry
2451  *      at the beginning from the second digit on and can be
2452  *      determined using similar method as 26 base conversion with the
2453  *      index shifted -1 after each digit is computed.
2454  *
2455  *      CONTEXT:
2456  *      Don't care.
2457  *
2458  *      RETURNS:
2459  *      0 on success, -errno on failure.
2460  */
2461 static int sd_format_disk_name(char *prefix, int index, char *buf, int buflen)
2462 {
2463         const int base = 'z' - 'a' + 1;
2464         char *begin = buf + strlen(prefix);
2465         char *end = buf + buflen;
2466         char *p;
2467         int unit;
2468
2469         p = end - 1;
2470         *p = '\0';
2471         unit = base;
2472         do {
2473                 if (p == begin)
2474                         return -EINVAL;
2475                 *--p = 'a' + (index % unit);
2476                 index = (index / unit) - 1;
2477         } while (index >= 0);
2478
2479         memmove(begin, p, end - p);
2480         memcpy(buf, prefix, strlen(prefix));
2481
2482         return 0;
2483 }
2484
2485 /*
2486  * The asynchronous part of sd_probe
2487  */
2488 static void sd_probe_async(void *data, async_cookie_t cookie)
2489 {
2490         struct scsi_disk *sdkp = data;
2491         struct scsi_device *sdp;
2492         struct gendisk *gd;
2493         u32 index;
2494         struct device *dev;
2495
2496         sdp = sdkp->device;
2497         gd = sdkp->disk;
2498         index = sdkp->index;
2499         dev = &sdp->sdev_gendev;
2500
2501         gd->major = sd_major((index & 0xf0) >> 4);
2502         gd->first_minor = ((index & 0xf) << 4) | (index & 0xfff00);
2503         gd->minors = SD_MINORS;
2504
2505         gd->fops = &sd_fops;
2506         gd->private_data = &sdkp->driver;
2507         gd->queue = sdkp->device->request_queue;
2508
2509         /* defaults, until the device tells us otherwise */
2510         sdp->sector_size = 512;
2511         sdkp->capacity = 0;
2512         sdkp->media_present = 1;
2513         sdkp->write_prot = 0;
2514         sdkp->cache_override = 0;
2515         sdkp->WCE = 0;
2516         sdkp->RCD = 0;
2517         sdkp->ATO = 0;
2518         sdkp->first_scan = 1;
2519
2520         sd_revalidate_disk(gd);
2521
2522         blk_queue_prep_rq(sdp->request_queue, sd_prep_fn);
2523         blk_queue_unprep_rq(sdp->request_queue, sd_unprep_fn);
2524
2525         gd->driverfs_dev = &sdp->sdev_gendev;
2526         gd->flags = GENHD_FL_EXT_DEVT;
2527         if (sdp->removable) {
2528                 gd->flags |= GENHD_FL_REMOVABLE;
2529                 gd->events |= DISK_EVENT_MEDIA_CHANGE;
2530         }
2531
2532         add_disk(gd);
2533         sd_dif_config_host(sdkp);
2534
2535         sd_revalidate_disk(gd);
2536
2537         sd_printk(KERN_NOTICE, sdkp, "Attached SCSI %sdisk\n",
2538                   sdp->removable ? "removable " : "");
2539         scsi_autopm_put_device(sdp);
2540         put_device(&sdkp->dev);
2541 }
2542
2543 /**
2544  *      sd_probe - called during driver initialization and whenever a
2545  *      new scsi device is attached to the system. It is called once
2546  *      for each scsi device (not just disks) present.
2547  *      @dev: pointer to device object
2548  *
2549  *      Returns 0 if successful (or not interested in this scsi device 
2550  *      (e.g. scanner)); 1 when there is an error.
2551  *
2552  *      Note: this function is invoked from the scsi mid-level.
2553  *      This function sets up the mapping between a given 
2554  *      <host,channel,id,lun> (found in sdp) and new device name 
2555  *      (e.g. /dev/sda). More precisely it is the block device major 
2556  *      and minor number that is chosen here.
2557  *
2558  *      Assume sd_attach is not re-entrant (for time being)
2559  *      Also think about sd_attach() and sd_remove() running coincidentally.
2560  **/
2561 static int sd_probe(struct device *dev)
2562 {
2563         struct scsi_device *sdp = to_scsi_device(dev);
2564         struct scsi_disk *sdkp;
2565         struct gendisk *gd;
2566         int index;
2567         int error;
2568
2569         error = -ENODEV;
2570         if (sdp->type != TYPE_DISK && sdp->type != TYPE_MOD && sdp->type != TYPE_RBC)
2571                 goto out;
2572
2573         SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO, sdp,
2574                                         "sd_attach\n"));
2575
2576         error = -ENOMEM;
2577         sdkp = kzalloc(sizeof(*sdkp), GFP_KERNEL);
2578         if (!sdkp)
2579                 goto out;
2580
2581         gd = alloc_disk(SD_MINORS);
2582         if (!gd)
2583                 goto out_free;
2584
2585         do {
2586                 if (!ida_pre_get(&sd_index_ida, GFP_KERNEL))
2587                         goto out_put;
2588
2589                 spin_lock(&sd_index_lock);
2590                 error = ida_get_new(&sd_index_ida, &index);
2591                 spin_unlock(&sd_index_lock);
2592         } while (error == -EAGAIN);
2593
2594         if (error) {
2595                 sdev_printk(KERN_WARNING, sdp, "sd_probe: memory exhausted.\n");
2596                 goto out_put;
2597         }
2598
2599         error = sd_format_disk_name("sd", index, gd->disk_name, DISK_NAME_LEN);
2600         if (error) {
2601                 sdev_printk(KERN_WARNING, sdp, "SCSI disk (sd) name length exceeded.\n");
2602                 goto out_free_index;
2603         }
2604
2605         sdkp->device = sdp;
2606         sdkp->driver = &sd_template;
2607         sdkp->disk = gd;
2608         sdkp->index = index;
2609         atomic_set(&sdkp->openers, 0);
2610
2611         if (!sdp->request_queue->rq_timeout) {
2612                 if (sdp->type != TYPE_MOD)
2613                         blk_queue_rq_timeout(sdp->request_queue, SD_TIMEOUT);
2614                 else
2615                         blk_queue_rq_timeout(sdp->request_queue,
2616                                              SD_MOD_TIMEOUT);
2617         }
2618
2619         device_initialize(&sdkp->dev);
2620         sdkp->dev.parent = dev;
2621         sdkp->dev.class = &sd_disk_class;
2622         dev_set_name(&sdkp->dev, dev_name(dev));
2623
2624         if (device_add(&sdkp->dev))
2625                 goto out_free_index;
2626
2627         get_device(dev);
2628         dev_set_drvdata(dev, sdkp);
2629
2630         get_device(&sdkp->dev); /* prevent release before async_schedule */
2631         async_schedule(sd_probe_async, sdkp);
2632
2633         return 0;
2634
2635  out_free_index:
2636         spin_lock(&sd_index_lock);
2637         ida_remove(&sd_index_ida, index);
2638         spin_unlock(&sd_index_lock);
2639  out_put:
2640         put_disk(gd);
2641  out_free:
2642         kfree(sdkp);
2643  out:
2644         return error;
2645 }
2646
2647 /**
2648  *      sd_remove - called whenever a scsi disk (previously recognized by
2649  *      sd_probe) is detached from the system. It is called (potentially
2650  *      multiple times) during sd module unload.
2651  *      @sdp: pointer to mid level scsi device object
2652  *
2653  *      Note: this function is invoked from the scsi mid-level.
2654  *      This function potentially frees up a device name (e.g. /dev/sdc)
2655  *      that could be re-used by a subsequent sd_probe().
2656  *      This function is not called when the built-in sd driver is "exit-ed".
2657  **/
2658 static int sd_remove(struct device *dev)
2659 {
2660         struct scsi_disk *sdkp;
2661
2662         sdkp = dev_get_drvdata(dev);
2663         scsi_autopm_get_device(sdkp->device);
2664
2665         async_synchronize_full();
2666         blk_queue_prep_rq(sdkp->device->request_queue, scsi_prep_fn);
2667         blk_queue_unprep_rq(sdkp->device->request_queue, NULL);
2668         device_del(&sdkp->dev);
2669         del_gendisk(sdkp->disk);
2670         sd_shutdown(dev);
2671
2672         mutex_lock(&sd_ref_mutex);
2673         dev_set_drvdata(dev, NULL);
2674         put_device(&sdkp->dev);
2675         mutex_unlock(&sd_ref_mutex);
2676
2677         return 0;
2678 }
2679
2680 /**
2681  *      scsi_disk_release - Called to free the scsi_disk structure
2682  *      @dev: pointer to embedded class device
2683  *
2684  *      sd_ref_mutex must be held entering this routine.  Because it is
2685  *      called on last put, you should always use the scsi_disk_get()
2686  *      scsi_disk_put() helpers which manipulate the semaphore directly
2687  *      and never do a direct put_device.
2688  **/
2689 static void scsi_disk_release(struct device *dev)
2690 {
2691         struct scsi_disk *sdkp = to_scsi_disk(dev);
2692         struct gendisk *disk = sdkp->disk;
2693         
2694         spin_lock(&sd_index_lock);
2695         ida_remove(&sd_index_ida, sdkp->index);
2696         spin_unlock(&sd_index_lock);
2697
2698         disk->private_data = NULL;
2699         put_disk(disk);
2700         put_device(&sdkp->device->sdev_gendev);
2701
2702         kfree(sdkp);
2703 }
2704
2705 static int sd_start_stop_device(struct scsi_disk *sdkp, int start)
2706 {
2707         unsigned char cmd[6] = { START_STOP };  /* START_VALID */
2708         struct scsi_sense_hdr sshdr;
2709         struct scsi_device *sdp = sdkp->device;
2710         int res;
2711
2712         if (start)
2713                 cmd[4] |= 1;    /* START */
2714
2715         if (sdp->start_stop_pwr_cond)
2716                 cmd[4] |= start ? 1 << 4 : 3 << 4;      /* Active or Standby */
2717
2718         if (!scsi_device_online(sdp))
2719                 return -ENODEV;
2720
2721         res = scsi_execute_req(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
2722                                SD_TIMEOUT, SD_MAX_RETRIES, NULL);
2723         if (res) {
2724                 sd_printk(KERN_WARNING, sdkp, "START_STOP FAILED\n");
2725                 sd_print_result(sdkp, res);
2726                 if (driver_byte(res) & DRIVER_SENSE)
2727                         sd_print_sense_hdr(sdkp, &sshdr);
2728         }
2729
2730         return res;
2731 }
2732
2733 /*
2734  * Send a SYNCHRONIZE CACHE instruction down to the device through
2735  * the normal SCSI command structure.  Wait for the command to
2736  * complete.
2737  */
2738 static void sd_shutdown(struct device *dev)
2739 {
2740         struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
2741
2742         if (!sdkp)
2743                 return;         /* this can happen */
2744
2745         if (sdkp->WCE) {
2746                 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
2747                 sd_sync_cache(sdkp);
2748         }
2749
2750         if (system_state != SYSTEM_RESTART && sdkp->device->manage_start_stop) {
2751                 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
2752                 sd_start_stop_device(sdkp, 0);
2753         }
2754
2755         scsi_disk_put(sdkp);
2756 }
2757
2758 static int sd_suspend(struct device *dev, pm_message_t mesg)
2759 {
2760         struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
2761         int ret = 0;
2762
2763         if (!sdkp)      /* E.g.: runtime suspend following sd_remove() */
2764                 return 0;
2765
2766         if (sdkp->WCE) {
2767                 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
2768                 ret = sd_sync_cache(sdkp);
2769                 if (ret)
2770                         goto done;
2771         }
2772
2773         if ((mesg.event & PM_EVENT_SLEEP) && sdkp->device->manage_start_stop) {
2774                 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
2775                 ret = sd_start_stop_device(sdkp, 0);
2776         }
2777
2778 done:
2779         scsi_disk_put(sdkp);
2780         return ret;
2781 }
2782
2783 static int sd_resume(struct device *dev)
2784 {
2785         struct scsi_disk *sdkp = scsi_disk_get_from_dev(dev);
2786         int ret = 0;
2787
2788         if (!sdkp)      /* E.g.: runtime resume at the start of sd_probe() */
2789                 return 0;
2790
2791         if (!sdkp->device->manage_start_stop)
2792                 goto done;
2793
2794         sd_printk(KERN_NOTICE, sdkp, "Starting disk\n");
2795         ret = sd_start_stop_device(sdkp, 1);
2796
2797 done:
2798         scsi_disk_put(sdkp);
2799         return ret;
2800 }
2801
2802 /**
2803  *      init_sd - entry point for this driver (both when built in or when
2804  *      a module).
2805  *
2806  *      Note: this function registers this driver with the scsi mid-level.
2807  **/
2808 static int __init init_sd(void)
2809 {
2810         int majors = 0, i, err;
2811
2812         SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
2813
2814         for (i = 0; i < SD_MAJORS; i++)
2815                 if (register_blkdev(sd_major(i), "sd") == 0)
2816                         majors++;
2817
2818         if (!majors)
2819                 return -ENODEV;
2820
2821         err = class_register(&sd_disk_class);
2822         if (err)
2823                 goto err_out;
2824
2825         sd_cdb_cache = kmem_cache_create("sd_ext_cdb", SD_EXT_CDB_SIZE,
2826                                          0, 0, NULL);
2827         if (!sd_cdb_cache) {
2828                 printk(KERN_ERR "sd: can't init extended cdb cache\n");
2829                 goto err_out_class;
2830         }
2831
2832         sd_cdb_pool = mempool_create_slab_pool(SD_MEMPOOL_SIZE, sd_cdb_cache);
2833         if (!sd_cdb_pool) {
2834                 printk(KERN_ERR "sd: can't init extended cdb pool\n");
2835                 goto err_out_cache;
2836         }
2837
2838         err = scsi_register_driver(&sd_template.gendrv);
2839         if (err)
2840                 goto err_out_driver;
2841
2842         return 0;
2843
2844 err_out_driver:
2845         mempool_destroy(sd_cdb_pool);
2846
2847 err_out_cache:
2848         kmem_cache_destroy(sd_cdb_cache);
2849
2850 err_out_class:
2851         class_unregister(&sd_disk_class);
2852 err_out:
2853         for (i = 0; i < SD_MAJORS; i++)
2854                 unregister_blkdev(sd_major(i), "sd");
2855         return err;
2856 }
2857
2858 /**
2859  *      exit_sd - exit point for this driver (when it is a module).
2860  *
2861  *      Note: this function unregisters this driver from the scsi mid-level.
2862  **/
2863 static void __exit exit_sd(void)
2864 {
2865         int i;
2866
2867         SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
2868
2869         scsi_unregister_driver(&sd_template.gendrv);
2870         mempool_destroy(sd_cdb_pool);
2871         kmem_cache_destroy(sd_cdb_cache);
2872
2873         class_unregister(&sd_disk_class);
2874
2875         for (i = 0; i < SD_MAJORS; i++)
2876                 unregister_blkdev(sd_major(i), "sd");
2877 }
2878
2879 module_init(init_sd);
2880 module_exit(exit_sd);
2881
2882 static void sd_print_sense_hdr(struct scsi_disk *sdkp,
2883                                struct scsi_sense_hdr *sshdr)
2884 {
2885         sd_printk(KERN_INFO, sdkp, " ");
2886         scsi_show_sense_hdr(sshdr);
2887         sd_printk(KERN_INFO, sdkp, " ");
2888         scsi_show_extd_sense(sshdr->asc, sshdr->ascq);
2889 }
2890
2891 static void sd_print_result(struct scsi_disk *sdkp, int result)
2892 {
2893         sd_printk(KERN_INFO, sdkp, " ");
2894         scsi_show_result(result);
2895 }
2896