Linux-libre 4.9.189-gnu
[librecmc/linux-libre.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 <linux/pm_runtime.h>
54 #include <linux/pr.h>
55 #include <linux/t10-pi.h>
56 #include <asm/uaccess.h>
57 #include <asm/unaligned.h>
58
59 #include <scsi/scsi.h>
60 #include <scsi/scsi_cmnd.h>
61 #include <scsi/scsi_dbg.h>
62 #include <scsi/scsi_device.h>
63 #include <scsi/scsi_driver.h>
64 #include <scsi/scsi_eh.h>
65 #include <scsi/scsi_host.h>
66 #include <scsi/scsi_ioctl.h>
67 #include <scsi/scsicam.h>
68
69 #include "sd.h"
70 #include "scsi_priv.h"
71 #include "scsi_logging.h"
72
73 MODULE_AUTHOR("Eric Youngdale");
74 MODULE_DESCRIPTION("SCSI disk (sd) driver");
75 MODULE_LICENSE("GPL");
76
77 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK0_MAJOR);
78 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK1_MAJOR);
79 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK2_MAJOR);
80 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK3_MAJOR);
81 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK4_MAJOR);
82 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK5_MAJOR);
83 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK6_MAJOR);
84 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK7_MAJOR);
85 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK8_MAJOR);
86 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK9_MAJOR);
87 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK10_MAJOR);
88 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK11_MAJOR);
89 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK12_MAJOR);
90 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK13_MAJOR);
91 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK14_MAJOR);
92 MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_DISK15_MAJOR);
93 MODULE_ALIAS_SCSI_DEVICE(TYPE_DISK);
94 MODULE_ALIAS_SCSI_DEVICE(TYPE_MOD);
95 MODULE_ALIAS_SCSI_DEVICE(TYPE_RBC);
96
97 #if !defined(CONFIG_DEBUG_BLOCK_EXT_DEVT)
98 #define SD_MINORS       16
99 #else
100 #define SD_MINORS       0
101 #endif
102
103 static void sd_config_discard(struct scsi_disk *, unsigned int);
104 static void sd_config_write_same(struct scsi_disk *);
105 static int  sd_revalidate_disk(struct gendisk *);
106 static void sd_unlock_native_capacity(struct gendisk *disk);
107 static int  sd_probe(struct device *);
108 static int  sd_remove(struct device *);
109 static void sd_shutdown(struct device *);
110 static int sd_suspend_system(struct device *);
111 static int sd_suspend_runtime(struct device *);
112 static int sd_resume(struct device *);
113 static void sd_rescan(struct device *);
114 static int sd_init_command(struct scsi_cmnd *SCpnt);
115 static void sd_uninit_command(struct scsi_cmnd *SCpnt);
116 static int sd_done(struct scsi_cmnd *);
117 static int sd_eh_action(struct scsi_cmnd *, int);
118 static void sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer);
119 static void scsi_disk_release(struct device *cdev);
120 static void sd_print_sense_hdr(struct scsi_disk *, struct scsi_sense_hdr *);
121 static void sd_print_result(const struct scsi_disk *, const char *, int);
122
123 static DEFINE_SPINLOCK(sd_index_lock);
124 static DEFINE_IDA(sd_index_ida);
125
126 /* This semaphore is used to mediate the 0->1 reference get in the
127  * face of object destruction (i.e. we can't allow a get on an
128  * object after last put) */
129 static DEFINE_MUTEX(sd_ref_mutex);
130
131 static struct kmem_cache *sd_cdb_cache;
132 static mempool_t *sd_cdb_pool;
133
134 static const char *sd_cache_types[] = {
135         "write through", "none", "write back",
136         "write back, no read (daft)"
137 };
138
139 static void sd_set_flush_flag(struct scsi_disk *sdkp)
140 {
141         bool wc = false, fua = false;
142
143         if (sdkp->WCE) {
144                 wc = true;
145                 if (sdkp->DPOFUA)
146                         fua = true;
147         }
148
149         blk_queue_write_cache(sdkp->disk->queue, wc, fua);
150 }
151
152 static ssize_t
153 cache_type_store(struct device *dev, struct device_attribute *attr,
154                  const char *buf, size_t count)
155 {
156         int i, ct = -1, rcd, wce, sp;
157         struct scsi_disk *sdkp = to_scsi_disk(dev);
158         struct scsi_device *sdp = sdkp->device;
159         char buffer[64];
160         char *buffer_data;
161         struct scsi_mode_data data;
162         struct scsi_sense_hdr sshdr;
163         static const char temp[] = "temporary ";
164         int len;
165
166         if (sdp->type != TYPE_DISK)
167                 /* no cache control on RBC devices; theoretically they
168                  * can do it, but there's probably so many exceptions
169                  * it's not worth the risk */
170                 return -EINVAL;
171
172         if (strncmp(buf, temp, sizeof(temp) - 1) == 0) {
173                 buf += sizeof(temp) - 1;
174                 sdkp->cache_override = 1;
175         } else {
176                 sdkp->cache_override = 0;
177         }
178
179         for (i = 0; i < ARRAY_SIZE(sd_cache_types); i++) {
180                 len = strlen(sd_cache_types[i]);
181                 if (strncmp(sd_cache_types[i], buf, len) == 0 &&
182                     buf[len] == '\n') {
183                         ct = i;
184                         break;
185                 }
186         }
187         if (ct < 0)
188                 return -EINVAL;
189         rcd = ct & 0x01 ? 1 : 0;
190         wce = (ct & 0x02) && !sdkp->write_prot ? 1 : 0;
191
192         if (sdkp->cache_override) {
193                 sdkp->WCE = wce;
194                 sdkp->RCD = rcd;
195                 sd_set_flush_flag(sdkp);
196                 return count;
197         }
198
199         if (scsi_mode_sense(sdp, 0x08, 8, buffer, sizeof(buffer), SD_TIMEOUT,
200                             SD_MAX_RETRIES, &data, NULL))
201                 return -EINVAL;
202         len = min_t(size_t, sizeof(buffer), data.length - data.header_length -
203                   data.block_descriptor_length);
204         buffer_data = buffer + data.header_length +
205                 data.block_descriptor_length;
206         buffer_data[2] &= ~0x05;
207         buffer_data[2] |= wce << 2 | rcd;
208         sp = buffer_data[0] & 0x80 ? 1 : 0;
209         buffer_data[0] &= ~0x80;
210
211         /*
212          * Ensure WP, DPOFUA, and RESERVED fields are cleared in
213          * received mode parameter buffer before doing MODE SELECT.
214          */
215         data.device_specific = 0;
216
217         if (scsi_mode_select(sdp, 1, sp, 8, buffer_data, len, SD_TIMEOUT,
218                              SD_MAX_RETRIES, &data, &sshdr)) {
219                 if (scsi_sense_valid(&sshdr))
220                         sd_print_sense_hdr(sdkp, &sshdr);
221                 return -EINVAL;
222         }
223         revalidate_disk(sdkp->disk);
224         return count;
225 }
226
227 static ssize_t
228 manage_start_stop_show(struct device *dev, struct device_attribute *attr,
229                        char *buf)
230 {
231         struct scsi_disk *sdkp = to_scsi_disk(dev);
232         struct scsi_device *sdp = sdkp->device;
233
234         return snprintf(buf, 20, "%u\n", sdp->manage_start_stop);
235 }
236
237 static ssize_t
238 manage_start_stop_store(struct device *dev, struct device_attribute *attr,
239                         const char *buf, size_t count)
240 {
241         struct scsi_disk *sdkp = to_scsi_disk(dev);
242         struct scsi_device *sdp = sdkp->device;
243         bool v;
244
245         if (!capable(CAP_SYS_ADMIN))
246                 return -EACCES;
247
248         if (kstrtobool(buf, &v))
249                 return -EINVAL;
250
251         sdp->manage_start_stop = v;
252
253         return count;
254 }
255 static DEVICE_ATTR_RW(manage_start_stop);
256
257 static ssize_t
258 allow_restart_show(struct device *dev, struct device_attribute *attr, char *buf)
259 {
260         struct scsi_disk *sdkp = to_scsi_disk(dev);
261
262         return snprintf(buf, 40, "%d\n", sdkp->device->allow_restart);
263 }
264
265 static ssize_t
266 allow_restart_store(struct device *dev, struct device_attribute *attr,
267                     const char *buf, size_t count)
268 {
269         bool v;
270         struct scsi_disk *sdkp = to_scsi_disk(dev);
271         struct scsi_device *sdp = sdkp->device;
272
273         if (!capable(CAP_SYS_ADMIN))
274                 return -EACCES;
275
276         if (sdp->type != TYPE_DISK)
277                 return -EINVAL;
278
279         if (kstrtobool(buf, &v))
280                 return -EINVAL;
281
282         sdp->allow_restart = v;
283
284         return count;
285 }
286 static DEVICE_ATTR_RW(allow_restart);
287
288 static ssize_t
289 cache_type_show(struct device *dev, struct device_attribute *attr, char *buf)
290 {
291         struct scsi_disk *sdkp = to_scsi_disk(dev);
292         int ct = sdkp->RCD + 2*sdkp->WCE;
293
294         return snprintf(buf, 40, "%s\n", sd_cache_types[ct]);
295 }
296 static DEVICE_ATTR_RW(cache_type);
297
298 static ssize_t
299 FUA_show(struct device *dev, struct device_attribute *attr, char *buf)
300 {
301         struct scsi_disk *sdkp = to_scsi_disk(dev);
302
303         return snprintf(buf, 20, "%u\n", sdkp->DPOFUA);
304 }
305 static DEVICE_ATTR_RO(FUA);
306
307 static ssize_t
308 protection_type_show(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->protection_type);
314 }
315
316 static ssize_t
317 protection_type_store(struct device *dev, struct device_attribute *attr,
318                       const char *buf, size_t count)
319 {
320         struct scsi_disk *sdkp = to_scsi_disk(dev);
321         unsigned int val;
322         int err;
323
324         if (!capable(CAP_SYS_ADMIN))
325                 return -EACCES;
326
327         err = kstrtouint(buf, 10, &val);
328
329         if (err)
330                 return err;
331
332         if (val >= 0 && val <= T10_PI_TYPE3_PROTECTION)
333                 sdkp->protection_type = val;
334
335         return count;
336 }
337 static DEVICE_ATTR_RW(protection_type);
338
339 static ssize_t
340 protection_mode_show(struct device *dev, struct device_attribute *attr,
341                      char *buf)
342 {
343         struct scsi_disk *sdkp = to_scsi_disk(dev);
344         struct scsi_device *sdp = sdkp->device;
345         unsigned int dif, dix;
346
347         dif = scsi_host_dif_capable(sdp->host, sdkp->protection_type);
348         dix = scsi_host_dix_capable(sdp->host, sdkp->protection_type);
349
350         if (!dix && scsi_host_dix_capable(sdp->host, T10_PI_TYPE0_PROTECTION)) {
351                 dif = 0;
352                 dix = 1;
353         }
354
355         if (!dif && !dix)
356                 return snprintf(buf, 20, "none\n");
357
358         return snprintf(buf, 20, "%s%u\n", dix ? "dix" : "dif", dif);
359 }
360 static DEVICE_ATTR_RO(protection_mode);
361
362 static ssize_t
363 app_tag_own_show(struct device *dev, struct device_attribute *attr, char *buf)
364 {
365         struct scsi_disk *sdkp = to_scsi_disk(dev);
366
367         return snprintf(buf, 20, "%u\n", sdkp->ATO);
368 }
369 static DEVICE_ATTR_RO(app_tag_own);
370
371 static ssize_t
372 thin_provisioning_show(struct device *dev, struct device_attribute *attr,
373                        char *buf)
374 {
375         struct scsi_disk *sdkp = to_scsi_disk(dev);
376
377         return snprintf(buf, 20, "%u\n", sdkp->lbpme);
378 }
379 static DEVICE_ATTR_RO(thin_provisioning);
380
381 static const char *lbp_mode[] = {
382         [SD_LBP_FULL]           = "full",
383         [SD_LBP_UNMAP]          = "unmap",
384         [SD_LBP_WS16]           = "writesame_16",
385         [SD_LBP_WS10]           = "writesame_10",
386         [SD_LBP_ZERO]           = "writesame_zero",
387         [SD_LBP_DISABLE]        = "disabled",
388 };
389
390 static ssize_t
391 provisioning_mode_show(struct device *dev, struct device_attribute *attr,
392                        char *buf)
393 {
394         struct scsi_disk *sdkp = to_scsi_disk(dev);
395
396         return snprintf(buf, 20, "%s\n", lbp_mode[sdkp->provisioning_mode]);
397 }
398
399 static ssize_t
400 provisioning_mode_store(struct device *dev, struct device_attribute *attr,
401                         const char *buf, size_t count)
402 {
403         struct scsi_disk *sdkp = to_scsi_disk(dev);
404         struct scsi_device *sdp = sdkp->device;
405
406         if (!capable(CAP_SYS_ADMIN))
407                 return -EACCES;
408
409         if (sdp->type != TYPE_DISK)
410                 return -EINVAL;
411
412         if (!strncmp(buf, lbp_mode[SD_LBP_UNMAP], 20))
413                 sd_config_discard(sdkp, SD_LBP_UNMAP);
414         else if (!strncmp(buf, lbp_mode[SD_LBP_WS16], 20))
415                 sd_config_discard(sdkp, SD_LBP_WS16);
416         else if (!strncmp(buf, lbp_mode[SD_LBP_WS10], 20))
417                 sd_config_discard(sdkp, SD_LBP_WS10);
418         else if (!strncmp(buf, lbp_mode[SD_LBP_ZERO], 20))
419                 sd_config_discard(sdkp, SD_LBP_ZERO);
420         else if (!strncmp(buf, lbp_mode[SD_LBP_DISABLE], 20))
421                 sd_config_discard(sdkp, SD_LBP_DISABLE);
422         else
423                 return -EINVAL;
424
425         return count;
426 }
427 static DEVICE_ATTR_RW(provisioning_mode);
428
429 static ssize_t
430 max_medium_access_timeouts_show(struct device *dev,
431                                 struct device_attribute *attr, char *buf)
432 {
433         struct scsi_disk *sdkp = to_scsi_disk(dev);
434
435         return snprintf(buf, 20, "%u\n", sdkp->max_medium_access_timeouts);
436 }
437
438 static ssize_t
439 max_medium_access_timeouts_store(struct device *dev,
440                                  struct device_attribute *attr, const char *buf,
441                                  size_t count)
442 {
443         struct scsi_disk *sdkp = to_scsi_disk(dev);
444         int err;
445
446         if (!capable(CAP_SYS_ADMIN))
447                 return -EACCES;
448
449         err = kstrtouint(buf, 10, &sdkp->max_medium_access_timeouts);
450
451         return err ? err : count;
452 }
453 static DEVICE_ATTR_RW(max_medium_access_timeouts);
454
455 static ssize_t
456 max_write_same_blocks_show(struct device *dev, struct device_attribute *attr,
457                            char *buf)
458 {
459         struct scsi_disk *sdkp = to_scsi_disk(dev);
460
461         return snprintf(buf, 20, "%u\n", sdkp->max_ws_blocks);
462 }
463
464 static ssize_t
465 max_write_same_blocks_store(struct device *dev, struct device_attribute *attr,
466                             const char *buf, size_t count)
467 {
468         struct scsi_disk *sdkp = to_scsi_disk(dev);
469         struct scsi_device *sdp = sdkp->device;
470         unsigned long max;
471         int err;
472
473         if (!capable(CAP_SYS_ADMIN))
474                 return -EACCES;
475
476         if (sdp->type != TYPE_DISK)
477                 return -EINVAL;
478
479         err = kstrtoul(buf, 10, &max);
480
481         if (err)
482                 return err;
483
484         if (max == 0)
485                 sdp->no_write_same = 1;
486         else if (max <= SD_MAX_WS16_BLOCKS) {
487                 sdp->no_write_same = 0;
488                 sdkp->max_ws_blocks = max;
489         }
490
491         sd_config_write_same(sdkp);
492
493         return count;
494 }
495 static DEVICE_ATTR_RW(max_write_same_blocks);
496
497 static struct attribute *sd_disk_attrs[] = {
498         &dev_attr_cache_type.attr,
499         &dev_attr_FUA.attr,
500         &dev_attr_allow_restart.attr,
501         &dev_attr_manage_start_stop.attr,
502         &dev_attr_protection_type.attr,
503         &dev_attr_protection_mode.attr,
504         &dev_attr_app_tag_own.attr,
505         &dev_attr_thin_provisioning.attr,
506         &dev_attr_provisioning_mode.attr,
507         &dev_attr_max_write_same_blocks.attr,
508         &dev_attr_max_medium_access_timeouts.attr,
509         NULL,
510 };
511 ATTRIBUTE_GROUPS(sd_disk);
512
513 static struct class sd_disk_class = {
514         .name           = "scsi_disk",
515         .owner          = THIS_MODULE,
516         .dev_release    = scsi_disk_release,
517         .dev_groups     = sd_disk_groups,
518 };
519
520 static const struct dev_pm_ops sd_pm_ops = {
521         .suspend                = sd_suspend_system,
522         .resume                 = sd_resume,
523         .poweroff               = sd_suspend_system,
524         .restore                = sd_resume,
525         .runtime_suspend        = sd_suspend_runtime,
526         .runtime_resume         = sd_resume,
527 };
528
529 static struct scsi_driver sd_template = {
530         .gendrv = {
531                 .name           = "sd",
532                 .owner          = THIS_MODULE,
533                 .probe          = sd_probe,
534                 .remove         = sd_remove,
535                 .shutdown       = sd_shutdown,
536                 .pm             = &sd_pm_ops,
537         },
538         .rescan                 = sd_rescan,
539         .init_command           = sd_init_command,
540         .uninit_command         = sd_uninit_command,
541         .done                   = sd_done,
542         .eh_action              = sd_eh_action,
543 };
544
545 /*
546  * Dummy kobj_map->probe function.
547  * The default ->probe function will call modprobe, which is
548  * pointless as this module is already loaded.
549  */
550 static struct kobject *sd_default_probe(dev_t devt, int *partno, void *data)
551 {
552         return NULL;
553 }
554
555 /*
556  * Device no to disk mapping:
557  * 
558  *       major         disc2     disc  p1
559  *   |............|.............|....|....| <- dev_t
560  *    31        20 19          8 7  4 3  0
561  * 
562  * Inside a major, we have 16k disks, however mapped non-
563  * contiguously. The first 16 disks are for major0, the next
564  * ones with major1, ... Disk 256 is for major0 again, disk 272 
565  * for major1, ... 
566  * As we stay compatible with our numbering scheme, we can reuse 
567  * the well-know SCSI majors 8, 65--71, 136--143.
568  */
569 static int sd_major(int major_idx)
570 {
571         switch (major_idx) {
572         case 0:
573                 return SCSI_DISK0_MAJOR;
574         case 1 ... 7:
575                 return SCSI_DISK1_MAJOR + major_idx - 1;
576         case 8 ... 15:
577                 return SCSI_DISK8_MAJOR + major_idx - 8;
578         default:
579                 BUG();
580                 return 0;       /* shut up gcc */
581         }
582 }
583
584 static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
585 {
586         struct scsi_disk *sdkp = NULL;
587
588         mutex_lock(&sd_ref_mutex);
589
590         if (disk->private_data) {
591                 sdkp = scsi_disk(disk);
592                 if (scsi_device_get(sdkp->device) == 0)
593                         get_device(&sdkp->dev);
594                 else
595                         sdkp = NULL;
596         }
597         mutex_unlock(&sd_ref_mutex);
598         return sdkp;
599 }
600
601 static void scsi_disk_put(struct scsi_disk *sdkp)
602 {
603         struct scsi_device *sdev = sdkp->device;
604
605         mutex_lock(&sd_ref_mutex);
606         put_device(&sdkp->dev);
607         scsi_device_put(sdev);
608         mutex_unlock(&sd_ref_mutex);
609 }
610
611 static unsigned char sd_setup_protect_cmnd(struct scsi_cmnd *scmd,
612                                            unsigned int dix, unsigned int dif)
613 {
614         struct bio *bio = scmd->request->bio;
615         unsigned int prot_op = sd_prot_op(rq_data_dir(scmd->request), dix, dif);
616         unsigned int protect = 0;
617
618         if (dix) {                              /* DIX Type 0, 1, 2, 3 */
619                 if (bio_integrity_flagged(bio, BIP_IP_CHECKSUM))
620                         scmd->prot_flags |= SCSI_PROT_IP_CHECKSUM;
621
622                 if (bio_integrity_flagged(bio, BIP_CTRL_NOCHECK) == false)
623                         scmd->prot_flags |= SCSI_PROT_GUARD_CHECK;
624         }
625
626         if (dif != T10_PI_TYPE3_PROTECTION) {   /* DIX/DIF Type 0, 1, 2 */
627                 scmd->prot_flags |= SCSI_PROT_REF_INCREMENT;
628
629                 if (bio_integrity_flagged(bio, BIP_CTRL_NOCHECK) == false)
630                         scmd->prot_flags |= SCSI_PROT_REF_CHECK;
631         }
632
633         if (dif) {                              /* DIX/DIF Type 1, 2, 3 */
634                 scmd->prot_flags |= SCSI_PROT_TRANSFER_PI;
635
636                 if (bio_integrity_flagged(bio, BIP_DISK_NOCHECK))
637                         protect = 3 << 5;       /* Disable target PI checking */
638                 else
639                         protect = 1 << 5;       /* Enable target PI checking */
640         }
641
642         scsi_set_prot_op(scmd, prot_op);
643         scsi_set_prot_type(scmd, dif);
644         scmd->prot_flags &= sd_prot_flag_mask(prot_op);
645
646         return protect;
647 }
648
649 static void sd_config_discard(struct scsi_disk *sdkp, unsigned int mode)
650 {
651         struct request_queue *q = sdkp->disk->queue;
652         unsigned int logical_block_size = sdkp->device->sector_size;
653         unsigned int max_blocks = 0;
654
655         q->limits.discard_zeroes_data = 0;
656
657         /*
658          * When LBPRZ is reported, discard alignment and granularity
659          * must be fixed to the logical block size. Otherwise the block
660          * layer will drop misaligned portions of the request which can
661          * lead to data corruption. If LBPRZ is not set, we honor the
662          * device preference.
663          */
664         if (sdkp->lbprz) {
665                 q->limits.discard_alignment = 0;
666                 q->limits.discard_granularity = logical_block_size;
667         } else {
668                 q->limits.discard_alignment = sdkp->unmap_alignment *
669                         logical_block_size;
670                 q->limits.discard_granularity =
671                         max(sdkp->physical_block_size,
672                             sdkp->unmap_granularity * logical_block_size);
673         }
674
675         sdkp->provisioning_mode = mode;
676
677         switch (mode) {
678
679         case SD_LBP_DISABLE:
680                 blk_queue_max_discard_sectors(q, 0);
681                 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD, q);
682                 return;
683
684         case SD_LBP_UNMAP:
685                 max_blocks = min_not_zero(sdkp->max_unmap_blocks,
686                                           (u32)SD_MAX_WS16_BLOCKS);
687                 break;
688
689         case SD_LBP_WS16:
690                 max_blocks = min_not_zero(sdkp->max_ws_blocks,
691                                           (u32)SD_MAX_WS16_BLOCKS);
692                 q->limits.discard_zeroes_data = sdkp->lbprz;
693                 break;
694
695         case SD_LBP_WS10:
696                 max_blocks = min_not_zero(sdkp->max_ws_blocks,
697                                           (u32)SD_MAX_WS10_BLOCKS);
698                 q->limits.discard_zeroes_data = sdkp->lbprz;
699                 break;
700
701         case SD_LBP_ZERO:
702                 max_blocks = min_not_zero(sdkp->max_ws_blocks,
703                                           (u32)SD_MAX_WS10_BLOCKS);
704                 q->limits.discard_zeroes_data = 1;
705                 break;
706         }
707
708         blk_queue_max_discard_sectors(q, max_blocks * (logical_block_size >> 9));
709         queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
710 }
711
712 /**
713  * sd_setup_discard_cmnd - unmap blocks on thinly provisioned device
714  * @sdp: scsi device to operate one
715  * @rq: Request to prepare
716  *
717  * Will issue either UNMAP or WRITE SAME(16) depending on preference
718  * indicated by target device.
719  **/
720 static int sd_setup_discard_cmnd(struct scsi_cmnd *cmd)
721 {
722         struct request *rq = cmd->request;
723         struct scsi_device *sdp = cmd->device;
724         struct scsi_disk *sdkp = scsi_disk(rq->rq_disk);
725         sector_t sector = blk_rq_pos(rq);
726         unsigned int nr_sectors = blk_rq_sectors(rq);
727         unsigned int nr_bytes = blk_rq_bytes(rq);
728         unsigned int len;
729         int ret;
730         char *buf;
731         struct page *page;
732
733         sector >>= ilog2(sdp->sector_size) - 9;
734         nr_sectors >>= ilog2(sdp->sector_size) - 9;
735
736         page = alloc_page(GFP_ATOMIC | __GFP_ZERO);
737         if (!page)
738                 return BLKPREP_DEFER;
739
740         switch (sdkp->provisioning_mode) {
741         case SD_LBP_UNMAP:
742                 buf = page_address(page);
743
744                 cmd->cmd_len = 10;
745                 cmd->cmnd[0] = UNMAP;
746                 cmd->cmnd[8] = 24;
747
748                 put_unaligned_be16(6 + 16, &buf[0]);
749                 put_unaligned_be16(16, &buf[2]);
750                 put_unaligned_be64(sector, &buf[8]);
751                 put_unaligned_be32(nr_sectors, &buf[16]);
752
753                 len = 24;
754                 break;
755
756         case SD_LBP_WS16:
757                 cmd->cmd_len = 16;
758                 cmd->cmnd[0] = WRITE_SAME_16;
759                 cmd->cmnd[1] = 0x8; /* UNMAP */
760                 put_unaligned_be64(sector, &cmd->cmnd[2]);
761                 put_unaligned_be32(nr_sectors, &cmd->cmnd[10]);
762
763                 len = sdkp->device->sector_size;
764                 break;
765
766         case SD_LBP_WS10:
767         case SD_LBP_ZERO:
768                 cmd->cmd_len = 10;
769                 cmd->cmnd[0] = WRITE_SAME;
770                 if (sdkp->provisioning_mode == SD_LBP_WS10)
771                         cmd->cmnd[1] = 0x8; /* UNMAP */
772                 put_unaligned_be32(sector, &cmd->cmnd[2]);
773                 put_unaligned_be16(nr_sectors, &cmd->cmnd[7]);
774
775                 len = sdkp->device->sector_size;
776                 break;
777
778         default:
779                 ret = BLKPREP_INVALID;
780                 goto out;
781         }
782
783         rq->completion_data = page;
784         rq->timeout = SD_TIMEOUT;
785
786         cmd->transfersize = len;
787         cmd->allowed = SD_MAX_RETRIES;
788
789         /*
790          * Initially __data_len is set to the amount of data that needs to be
791          * transferred to the target. This amount depends on whether WRITE SAME
792          * or UNMAP is being used. After the scatterlist has been mapped by
793          * scsi_init_io() we set __data_len to the size of the area to be
794          * discarded on disk. This allows us to report completion on the full
795          * amount of blocks described by the request.
796          */
797         blk_add_request_payload(rq, page, 0, len);
798         ret = scsi_init_io(cmd);
799         rq->__data_len = nr_bytes;
800
801 out:
802         if (ret != BLKPREP_OK)
803                 __free_page(page);
804         return ret;
805 }
806
807 static void sd_config_write_same(struct scsi_disk *sdkp)
808 {
809         struct request_queue *q = sdkp->disk->queue;
810         unsigned int logical_block_size = sdkp->device->sector_size;
811
812         if (sdkp->device->no_write_same) {
813                 sdkp->max_ws_blocks = 0;
814                 goto out;
815         }
816
817         /* Some devices can not handle block counts above 0xffff despite
818          * supporting WRITE SAME(16). Consequently we default to 64k
819          * blocks per I/O unless the device explicitly advertises a
820          * bigger limit.
821          */
822         if (sdkp->max_ws_blocks > SD_MAX_WS10_BLOCKS)
823                 sdkp->max_ws_blocks = min_not_zero(sdkp->max_ws_blocks,
824                                                    (u32)SD_MAX_WS16_BLOCKS);
825         else if (sdkp->ws16 || sdkp->ws10 || sdkp->device->no_report_opcodes)
826                 sdkp->max_ws_blocks = min_not_zero(sdkp->max_ws_blocks,
827                                                    (u32)SD_MAX_WS10_BLOCKS);
828         else {
829                 sdkp->device->no_write_same = 1;
830                 sdkp->max_ws_blocks = 0;
831         }
832
833 out:
834         blk_queue_max_write_same_sectors(q, sdkp->max_ws_blocks *
835                                          (logical_block_size >> 9));
836 }
837
838 /**
839  * sd_setup_write_same_cmnd - write the same data to multiple blocks
840  * @cmd: command to prepare
841  *
842  * Will issue either WRITE SAME(10) or WRITE SAME(16) depending on
843  * preference indicated by target device.
844  **/
845 static int sd_setup_write_same_cmnd(struct scsi_cmnd *cmd)
846 {
847         struct request *rq = cmd->request;
848         struct scsi_device *sdp = cmd->device;
849         struct scsi_disk *sdkp = scsi_disk(rq->rq_disk);
850         struct bio *bio = rq->bio;
851         sector_t sector = blk_rq_pos(rq);
852         unsigned int nr_sectors = blk_rq_sectors(rq);
853         unsigned int nr_bytes = blk_rq_bytes(rq);
854         int ret;
855
856         if (sdkp->device->no_write_same)
857                 return BLKPREP_INVALID;
858
859         BUG_ON(bio_offset(bio) || bio_iovec(bio).bv_len != sdp->sector_size);
860
861         sector >>= ilog2(sdp->sector_size) - 9;
862         nr_sectors >>= ilog2(sdp->sector_size) - 9;
863
864         rq->timeout = SD_WRITE_SAME_TIMEOUT;
865
866         if (sdkp->ws16 || sector > 0xffffffff || nr_sectors > 0xffff) {
867                 cmd->cmd_len = 16;
868                 cmd->cmnd[0] = WRITE_SAME_16;
869                 put_unaligned_be64(sector, &cmd->cmnd[2]);
870                 put_unaligned_be32(nr_sectors, &cmd->cmnd[10]);
871         } else {
872                 cmd->cmd_len = 10;
873                 cmd->cmnd[0] = WRITE_SAME;
874                 put_unaligned_be32(sector, &cmd->cmnd[2]);
875                 put_unaligned_be16(nr_sectors, &cmd->cmnd[7]);
876         }
877
878         cmd->transfersize = sdp->sector_size;
879         cmd->allowed = SD_MAX_RETRIES;
880
881         /*
882          * For WRITE_SAME the data transferred in the DATA IN buffer is
883          * different from the amount of data actually written to the target.
884          *
885          * We set up __data_len to the amount of data transferred from the
886          * DATA IN buffer so that blk_rq_map_sg set up the proper S/G list
887          * to transfer a single sector of data first, but then reset it to
888          * the amount of data to be written right after so that the I/O path
889          * knows how much to actually write.
890          */
891         rq->__data_len = sdp->sector_size;
892         ret = scsi_init_io(cmd);
893         rq->__data_len = nr_bytes;
894         return ret;
895 }
896
897 static int sd_setup_flush_cmnd(struct scsi_cmnd *cmd)
898 {
899         struct request *rq = cmd->request;
900
901         /* flush requests don't perform I/O, zero the S/G table */
902         memset(&cmd->sdb, 0, sizeof(cmd->sdb));
903
904         cmd->cmnd[0] = SYNCHRONIZE_CACHE;
905         cmd->cmd_len = 10;
906         cmd->transfersize = 0;
907         cmd->allowed = SD_MAX_RETRIES;
908
909         rq->timeout = rq->q->rq_timeout * SD_FLUSH_TIMEOUT_MULTIPLIER;
910         return BLKPREP_OK;
911 }
912
913 static int sd_setup_read_write_cmnd(struct scsi_cmnd *SCpnt)
914 {
915         struct request *rq = SCpnt->request;
916         struct scsi_device *sdp = SCpnt->device;
917         struct gendisk *disk = rq->rq_disk;
918         struct scsi_disk *sdkp;
919         sector_t block = blk_rq_pos(rq);
920         sector_t threshold;
921         unsigned int this_count = blk_rq_sectors(rq);
922         unsigned int dif, dix;
923         int ret;
924         unsigned char protect;
925
926         ret = scsi_init_io(SCpnt);
927         if (ret != BLKPREP_OK)
928                 goto out;
929         SCpnt = rq->special;
930         sdkp = scsi_disk(disk);
931
932         /* from here on until we're complete, any goto out
933          * is used for a killable error condition */
934         ret = BLKPREP_KILL;
935
936         SCSI_LOG_HLQUEUE(1,
937                 scmd_printk(KERN_INFO, SCpnt,
938                         "%s: block=%llu, count=%d\n",
939                         __func__, (unsigned long long)block, this_count));
940
941         if (!sdp || !scsi_device_online(sdp) ||
942             block + blk_rq_sectors(rq) > get_capacity(disk)) {
943                 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
944                                                 "Finishing %u sectors\n",
945                                                 blk_rq_sectors(rq)));
946                 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
947                                                 "Retry with 0x%p\n", SCpnt));
948                 goto out;
949         }
950
951         if (sdp->changed) {
952                 /*
953                  * quietly refuse to do anything to a changed disc until 
954                  * the changed bit has been reset
955                  */
956                 /* printk("SCSI disk has been changed or is not present. Prohibiting further I/O.\n"); */
957                 goto out;
958         }
959
960         /*
961          * Some SD card readers can't handle multi-sector accesses which touch
962          * the last one or two hardware sectors.  Split accesses as needed.
963          */
964         threshold = get_capacity(disk) - SD_LAST_BUGGY_SECTORS *
965                 (sdp->sector_size / 512);
966
967         if (unlikely(sdp->last_sector_bug && block + this_count > threshold)) {
968                 if (block < threshold) {
969                         /* Access up to the threshold but not beyond */
970                         this_count = threshold - block;
971                 } else {
972                         /* Access only a single hardware sector */
973                         this_count = sdp->sector_size / 512;
974                 }
975         }
976
977         SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt, "block=%llu\n",
978                                         (unsigned long long)block));
979
980         /*
981          * If we have a 1K hardware sectorsize, prevent access to single
982          * 512 byte sectors.  In theory we could handle this - in fact
983          * the scsi cdrom driver must be able to handle this because
984          * we typically use 1K blocksizes, and cdroms typically have
985          * 2K hardware sectorsizes.  Of course, things are simpler
986          * with the cdrom, since it is read-only.  For performance
987          * reasons, the filesystems should be able to handle this
988          * and not force the scsi disk driver to use bounce buffers
989          * for this.
990          */
991         if (sdp->sector_size == 1024) {
992                 if ((block & 1) || (blk_rq_sectors(rq) & 1)) {
993                         scmd_printk(KERN_ERR, SCpnt,
994                                     "Bad block number requested\n");
995                         goto out;
996                 } else {
997                         block = block >> 1;
998                         this_count = this_count >> 1;
999                 }
1000         }
1001         if (sdp->sector_size == 2048) {
1002                 if ((block & 3) || (blk_rq_sectors(rq) & 3)) {
1003                         scmd_printk(KERN_ERR, SCpnt,
1004                                     "Bad block number requested\n");
1005                         goto out;
1006                 } else {
1007                         block = block >> 2;
1008                         this_count = this_count >> 2;
1009                 }
1010         }
1011         if (sdp->sector_size == 4096) {
1012                 if ((block & 7) || (blk_rq_sectors(rq) & 7)) {
1013                         scmd_printk(KERN_ERR, SCpnt,
1014                                     "Bad block number requested\n");
1015                         goto out;
1016                 } else {
1017                         block = block >> 3;
1018                         this_count = this_count >> 3;
1019                 }
1020         }
1021         if (rq_data_dir(rq) == WRITE) {
1022                 SCpnt->cmnd[0] = WRITE_6;
1023
1024                 if (blk_integrity_rq(rq))
1025                         sd_dif_prepare(SCpnt);
1026
1027         } else if (rq_data_dir(rq) == READ) {
1028                 SCpnt->cmnd[0] = READ_6;
1029         } else {
1030                 scmd_printk(KERN_ERR, SCpnt, "Unknown command %llu,%llx\n",
1031                             req_op(rq), (unsigned long long) rq->cmd_flags);
1032                 goto out;
1033         }
1034
1035         SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
1036                                         "%s %d/%u 512 byte blocks.\n",
1037                                         (rq_data_dir(rq) == WRITE) ?
1038                                         "writing" : "reading", this_count,
1039                                         blk_rq_sectors(rq)));
1040
1041         dix = scsi_prot_sg_count(SCpnt);
1042         dif = scsi_host_dif_capable(SCpnt->device->host, sdkp->protection_type);
1043
1044         if (dif || dix)
1045                 protect = sd_setup_protect_cmnd(SCpnt, dix, dif);
1046         else
1047                 protect = 0;
1048
1049         if (protect && sdkp->protection_type == T10_PI_TYPE2_PROTECTION) {
1050                 SCpnt->cmnd = mempool_alloc(sd_cdb_pool, GFP_ATOMIC);
1051
1052                 if (unlikely(SCpnt->cmnd == NULL)) {
1053                         ret = BLKPREP_DEFER;
1054                         goto out;
1055                 }
1056
1057                 SCpnt->cmd_len = SD_EXT_CDB_SIZE;
1058                 memset(SCpnt->cmnd, 0, SCpnt->cmd_len);
1059                 SCpnt->cmnd[0] = VARIABLE_LENGTH_CMD;
1060                 SCpnt->cmnd[7] = 0x18;
1061                 SCpnt->cmnd[9] = (rq_data_dir(rq) == READ) ? READ_32 : WRITE_32;
1062                 SCpnt->cmnd[10] = protect | ((rq->cmd_flags & REQ_FUA) ? 0x8 : 0);
1063
1064                 /* LBA */
1065                 SCpnt->cmnd[12] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
1066                 SCpnt->cmnd[13] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
1067                 SCpnt->cmnd[14] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
1068                 SCpnt->cmnd[15] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
1069                 SCpnt->cmnd[16] = (unsigned char) (block >> 24) & 0xff;
1070                 SCpnt->cmnd[17] = (unsigned char) (block >> 16) & 0xff;
1071                 SCpnt->cmnd[18] = (unsigned char) (block >> 8) & 0xff;
1072                 SCpnt->cmnd[19] = (unsigned char) block & 0xff;
1073
1074                 /* Expected Indirect LBA */
1075                 SCpnt->cmnd[20] = (unsigned char) (block >> 24) & 0xff;
1076                 SCpnt->cmnd[21] = (unsigned char) (block >> 16) & 0xff;
1077                 SCpnt->cmnd[22] = (unsigned char) (block >> 8) & 0xff;
1078                 SCpnt->cmnd[23] = (unsigned char) block & 0xff;
1079
1080                 /* Transfer length */
1081                 SCpnt->cmnd[28] = (unsigned char) (this_count >> 24) & 0xff;
1082                 SCpnt->cmnd[29] = (unsigned char) (this_count >> 16) & 0xff;
1083                 SCpnt->cmnd[30] = (unsigned char) (this_count >> 8) & 0xff;
1084                 SCpnt->cmnd[31] = (unsigned char) this_count & 0xff;
1085         } else if (sdp->use_16_for_rw || (this_count > 0xffff)) {
1086                 SCpnt->cmnd[0] += READ_16 - READ_6;
1087                 SCpnt->cmnd[1] = protect | ((rq->cmd_flags & REQ_FUA) ? 0x8 : 0);
1088                 SCpnt->cmnd[2] = sizeof(block) > 4 ? (unsigned char) (block >> 56) & 0xff : 0;
1089                 SCpnt->cmnd[3] = sizeof(block) > 4 ? (unsigned char) (block >> 48) & 0xff : 0;
1090                 SCpnt->cmnd[4] = sizeof(block) > 4 ? (unsigned char) (block >> 40) & 0xff : 0;
1091                 SCpnt->cmnd[5] = sizeof(block) > 4 ? (unsigned char) (block >> 32) & 0xff : 0;
1092                 SCpnt->cmnd[6] = (unsigned char) (block >> 24) & 0xff;
1093                 SCpnt->cmnd[7] = (unsigned char) (block >> 16) & 0xff;
1094                 SCpnt->cmnd[8] = (unsigned char) (block >> 8) & 0xff;
1095                 SCpnt->cmnd[9] = (unsigned char) block & 0xff;
1096                 SCpnt->cmnd[10] = (unsigned char) (this_count >> 24) & 0xff;
1097                 SCpnt->cmnd[11] = (unsigned char) (this_count >> 16) & 0xff;
1098                 SCpnt->cmnd[12] = (unsigned char) (this_count >> 8) & 0xff;
1099                 SCpnt->cmnd[13] = (unsigned char) this_count & 0xff;
1100                 SCpnt->cmnd[14] = SCpnt->cmnd[15] = 0;
1101         } else if ((this_count > 0xff) || (block > 0x1fffff) ||
1102                    scsi_device_protection(SCpnt->device) ||
1103                    SCpnt->device->use_10_for_rw) {
1104                 SCpnt->cmnd[0] += READ_10 - READ_6;
1105                 SCpnt->cmnd[1] = protect | ((rq->cmd_flags & REQ_FUA) ? 0x8 : 0);
1106                 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
1107                 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
1108                 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
1109                 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
1110                 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
1111                 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
1112                 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
1113         } else {
1114                 if (unlikely(rq->cmd_flags & REQ_FUA)) {
1115                         /*
1116                          * This happens only if this drive failed
1117                          * 10byte rw command with ILLEGAL_REQUEST
1118                          * during operation and thus turned off
1119                          * use_10_for_rw.
1120                          */
1121                         scmd_printk(KERN_ERR, SCpnt,
1122                                     "FUA write on READ/WRITE(6) drive\n");
1123                         goto out;
1124                 }
1125
1126                 SCpnt->cmnd[1] |= (unsigned char) ((block >> 16) & 0x1f);
1127                 SCpnt->cmnd[2] = (unsigned char) ((block >> 8) & 0xff);
1128                 SCpnt->cmnd[3] = (unsigned char) block & 0xff;
1129                 SCpnt->cmnd[4] = (unsigned char) this_count;
1130                 SCpnt->cmnd[5] = 0;
1131         }
1132         SCpnt->sdb.length = this_count * sdp->sector_size;
1133
1134         /*
1135          * We shouldn't disconnect in the middle of a sector, so with a dumb
1136          * host adapter, it's safe to assume that we can at least transfer
1137          * this many bytes between each connect / disconnect.
1138          */
1139         SCpnt->transfersize = sdp->sector_size;
1140         SCpnt->underflow = this_count << 9;
1141         SCpnt->allowed = SD_MAX_RETRIES;
1142
1143         /*
1144          * This indicates that the command is ready from our end to be
1145          * queued.
1146          */
1147         ret = BLKPREP_OK;
1148  out:
1149         return ret;
1150 }
1151
1152 static int sd_init_command(struct scsi_cmnd *cmd)
1153 {
1154         struct request *rq = cmd->request;
1155
1156         switch (req_op(rq)) {
1157         case REQ_OP_DISCARD:
1158                 return sd_setup_discard_cmnd(cmd);
1159         case REQ_OP_WRITE_SAME:
1160                 return sd_setup_write_same_cmnd(cmd);
1161         case REQ_OP_FLUSH:
1162                 return sd_setup_flush_cmnd(cmd);
1163         case REQ_OP_READ:
1164         case REQ_OP_WRITE:
1165                 return sd_setup_read_write_cmnd(cmd);
1166         default:
1167                 WARN_ON_ONCE(1);
1168                 return BLKPREP_KILL;
1169         }
1170 }
1171
1172 static void sd_uninit_command(struct scsi_cmnd *SCpnt)
1173 {
1174         struct request *rq = SCpnt->request;
1175
1176         if (req_op(rq) == REQ_OP_DISCARD)
1177                 __free_page(rq->completion_data);
1178
1179         if (SCpnt->cmnd != rq->cmd) {
1180                 mempool_free(SCpnt->cmnd, sd_cdb_pool);
1181                 SCpnt->cmnd = NULL;
1182                 SCpnt->cmd_len = 0;
1183         }
1184 }
1185
1186 /**
1187  *      sd_open - open a scsi disk device
1188  *      @inode: only i_rdev member may be used
1189  *      @filp: only f_mode and f_flags may be used
1190  *
1191  *      Returns 0 if successful. Returns a negated errno value in case 
1192  *      of error.
1193  *
1194  *      Note: This can be called from a user context (e.g. fsck(1) )
1195  *      or from within the kernel (e.g. as a result of a mount(1) ).
1196  *      In the latter case @inode and @filp carry an abridged amount
1197  *      of information as noted above.
1198  *
1199  *      Locking: called with bdev->bd_mutex held.
1200  **/
1201 static int sd_open(struct block_device *bdev, fmode_t mode)
1202 {
1203         struct scsi_disk *sdkp = scsi_disk_get(bdev->bd_disk);
1204         struct scsi_device *sdev;
1205         int retval;
1206
1207         if (!sdkp)
1208                 return -ENXIO;
1209
1210         SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_open\n"));
1211
1212         sdev = sdkp->device;
1213
1214         /*
1215          * If the device is in error recovery, wait until it is done.
1216          * If the device is offline, then disallow any access to it.
1217          */
1218         retval = -ENXIO;
1219         if (!scsi_block_when_processing_errors(sdev))
1220                 goto error_out;
1221
1222         if (sdev->removable || sdkp->write_prot)
1223                 check_disk_change(bdev);
1224
1225         /*
1226          * If the drive is empty, just let the open fail.
1227          */
1228         retval = -ENOMEDIUM;
1229         if (sdev->removable && !sdkp->media_present && !(mode & FMODE_NDELAY))
1230                 goto error_out;
1231
1232         /*
1233          * If the device has the write protect tab set, have the open fail
1234          * if the user expects to be able to write to the thing.
1235          */
1236         retval = -EROFS;
1237         if (sdkp->write_prot && (mode & FMODE_WRITE))
1238                 goto error_out;
1239
1240         /*
1241          * It is possible that the disk changing stuff resulted in
1242          * the device being taken offline.  If this is the case,
1243          * report this to the user, and don't pretend that the
1244          * open actually succeeded.
1245          */
1246         retval = -ENXIO;
1247         if (!scsi_device_online(sdev))
1248                 goto error_out;
1249
1250         if ((atomic_inc_return(&sdkp->openers) == 1) && sdev->removable) {
1251                 if (scsi_block_when_processing_errors(sdev))
1252                         scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
1253         }
1254
1255         return 0;
1256
1257 error_out:
1258         scsi_disk_put(sdkp);
1259         return retval;  
1260 }
1261
1262 /**
1263  *      sd_release - invoked when the (last) close(2) is called on this
1264  *      scsi disk.
1265  *      @inode: only i_rdev member may be used
1266  *      @filp: only f_mode and f_flags may be used
1267  *
1268  *      Returns 0. 
1269  *
1270  *      Note: may block (uninterruptible) if error recovery is underway
1271  *      on this disk.
1272  *
1273  *      Locking: called with bdev->bd_mutex held.
1274  **/
1275 static void sd_release(struct gendisk *disk, fmode_t mode)
1276 {
1277         struct scsi_disk *sdkp = scsi_disk(disk);
1278         struct scsi_device *sdev = sdkp->device;
1279
1280         SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_release\n"));
1281
1282         if (atomic_dec_return(&sdkp->openers) == 0 && sdev->removable) {
1283                 if (scsi_block_when_processing_errors(sdev))
1284                         scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
1285         }
1286
1287         scsi_disk_put(sdkp);
1288 }
1289
1290 static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1291 {
1292         struct scsi_disk *sdkp = scsi_disk(bdev->bd_disk);
1293         struct scsi_device *sdp = sdkp->device;
1294         struct Scsi_Host *host = sdp->host;
1295         sector_t capacity = logical_to_sectors(sdp, sdkp->capacity);
1296         int diskinfo[4];
1297
1298         /* default to most commonly used values */
1299         diskinfo[0] = 0x40;     /* 1 << 6 */
1300         diskinfo[1] = 0x20;     /* 1 << 5 */
1301         diskinfo[2] = capacity >> 11;
1302
1303         /* override with calculated, extended default, or driver values */
1304         if (host->hostt->bios_param)
1305                 host->hostt->bios_param(sdp, bdev, capacity, diskinfo);
1306         else
1307                 scsicam_bios_param(bdev, capacity, diskinfo);
1308
1309         geo->heads = diskinfo[0];
1310         geo->sectors = diskinfo[1];
1311         geo->cylinders = diskinfo[2];
1312         return 0;
1313 }
1314
1315 /**
1316  *      sd_ioctl - process an ioctl
1317  *      @inode: only i_rdev/i_bdev members may be used
1318  *      @filp: only f_mode and f_flags may be used
1319  *      @cmd: ioctl command number
1320  *      @arg: this is third argument given to ioctl(2) system call.
1321  *      Often contains a pointer.
1322  *
1323  *      Returns 0 if successful (some ioctls return positive numbers on
1324  *      success as well). Returns a negated errno value in case of error.
1325  *
1326  *      Note: most ioctls are forward onto the block subsystem or further
1327  *      down in the scsi subsystem.
1328  **/
1329 static int sd_ioctl(struct block_device *bdev, fmode_t mode,
1330                     unsigned int cmd, unsigned long arg)
1331 {
1332         struct gendisk *disk = bdev->bd_disk;
1333         struct scsi_disk *sdkp = scsi_disk(disk);
1334         struct scsi_device *sdp = sdkp->device;
1335         void __user *p = (void __user *)arg;
1336         int error;
1337     
1338         SCSI_LOG_IOCTL(1, sd_printk(KERN_INFO, sdkp, "sd_ioctl: disk=%s, "
1339                                     "cmd=0x%x\n", disk->disk_name, cmd));
1340
1341         error = scsi_verify_blk_ioctl(bdev, cmd);
1342         if (error < 0)
1343                 return error;
1344
1345         /*
1346          * If we are in the middle of error recovery, don't let anyone
1347          * else try and use this device.  Also, if error recovery fails, it
1348          * may try and take the device offline, in which case all further
1349          * access to the device is prohibited.
1350          */
1351         error = scsi_ioctl_block_when_processing_errors(sdp, cmd,
1352                         (mode & FMODE_NDELAY) != 0);
1353         if (error)
1354                 goto out;
1355
1356         /*
1357          * Send SCSI addressing ioctls directly to mid level, send other
1358          * ioctls to block level and then onto mid level if they can't be
1359          * resolved.
1360          */
1361         switch (cmd) {
1362                 case SCSI_IOCTL_GET_IDLUN:
1363                 case SCSI_IOCTL_GET_BUS_NUMBER:
1364                         error = scsi_ioctl(sdp, cmd, p);
1365                         break;
1366                 default:
1367                         error = scsi_cmd_blk_ioctl(bdev, mode, cmd, p);
1368                         if (error != -ENOTTY)
1369                                 break;
1370                         error = scsi_ioctl(sdp, cmd, p);
1371                         break;
1372         }
1373 out:
1374         return error;
1375 }
1376
1377 static void set_media_not_present(struct scsi_disk *sdkp)
1378 {
1379         if (sdkp->media_present)
1380                 sdkp->device->changed = 1;
1381
1382         if (sdkp->device->removable) {
1383                 sdkp->media_present = 0;
1384                 sdkp->capacity = 0;
1385         }
1386 }
1387
1388 static int media_not_present(struct scsi_disk *sdkp,
1389                              struct scsi_sense_hdr *sshdr)
1390 {
1391         if (!scsi_sense_valid(sshdr))
1392                 return 0;
1393
1394         /* not invoked for commands that could return deferred errors */
1395         switch (sshdr->sense_key) {
1396         case UNIT_ATTENTION:
1397         case NOT_READY:
1398                 /* medium not present */
1399                 if (sshdr->asc == 0x3A) {
1400                         set_media_not_present(sdkp);
1401                         return 1;
1402                 }
1403         }
1404         return 0;
1405 }
1406
1407 /**
1408  *      sd_check_events - check media events
1409  *      @disk: kernel device descriptor
1410  *      @clearing: disk events currently being cleared
1411  *
1412  *      Returns mask of DISK_EVENT_*.
1413  *
1414  *      Note: this function is invoked from the block subsystem.
1415  **/
1416 static unsigned int sd_check_events(struct gendisk *disk, unsigned int clearing)
1417 {
1418         struct scsi_disk *sdkp = scsi_disk_get(disk);
1419         struct scsi_device *sdp;
1420         struct scsi_sense_hdr *sshdr = NULL;
1421         int retval;
1422
1423         if (!sdkp)
1424                 return 0;
1425
1426         sdp = sdkp->device;
1427         SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp, "sd_check_events\n"));
1428
1429         /*
1430          * If the device is offline, don't send any commands - just pretend as
1431          * if the command failed.  If the device ever comes back online, we
1432          * can deal with it then.  It is only because of unrecoverable errors
1433          * that we would ever take a device offline in the first place.
1434          */
1435         if (!scsi_device_online(sdp)) {
1436                 set_media_not_present(sdkp);
1437                 goto out;
1438         }
1439
1440         /*
1441          * Using TEST_UNIT_READY enables differentiation between drive with
1442          * no cartridge loaded - NOT READY, drive with changed cartridge -
1443          * UNIT ATTENTION, or with same cartridge - GOOD STATUS.
1444          *
1445          * Drives that auto spin down. eg iomega jaz 1G, will be started
1446          * by sd_spinup_disk() from sd_revalidate_disk(), which happens whenever
1447          * sd_revalidate() is called.
1448          */
1449         retval = -ENODEV;
1450
1451         if (scsi_block_when_processing_errors(sdp)) {
1452                 sshdr  = kzalloc(sizeof(*sshdr), GFP_KERNEL);
1453                 retval = scsi_test_unit_ready(sdp, SD_TIMEOUT, SD_MAX_RETRIES,
1454                                               sshdr);
1455         }
1456
1457         /* failed to execute TUR, assume media not present */
1458         if (host_byte(retval)) {
1459                 set_media_not_present(sdkp);
1460                 goto out;
1461         }
1462
1463         if (media_not_present(sdkp, sshdr))
1464                 goto out;
1465
1466         /*
1467          * For removable scsi disk we have to recognise the presence
1468          * of a disk in the drive.
1469          */
1470         if (!sdkp->media_present)
1471                 sdp->changed = 1;
1472         sdkp->media_present = 1;
1473 out:
1474         /*
1475          * sdp->changed is set under the following conditions:
1476          *
1477          *      Medium present state has changed in either direction.
1478          *      Device has indicated UNIT_ATTENTION.
1479          */
1480         kfree(sshdr);
1481         retval = sdp->changed ? DISK_EVENT_MEDIA_CHANGE : 0;
1482         sdp->changed = 0;
1483         scsi_disk_put(sdkp);
1484         return retval;
1485 }
1486
1487 static int sd_sync_cache(struct scsi_disk *sdkp)
1488 {
1489         int retries, res;
1490         struct scsi_device *sdp = sdkp->device;
1491         const int timeout = sdp->request_queue->rq_timeout
1492                 * SD_FLUSH_TIMEOUT_MULTIPLIER;
1493         struct scsi_sense_hdr sshdr;
1494
1495         if (!scsi_device_online(sdp))
1496                 return -ENODEV;
1497
1498         for (retries = 3; retries > 0; --retries) {
1499                 unsigned char cmd[10] = { 0 };
1500
1501                 cmd[0] = SYNCHRONIZE_CACHE;
1502                 /*
1503                  * Leave the rest of the command zero to indicate
1504                  * flush everything.
1505                  */
1506                 res = scsi_execute_req_flags(sdp, cmd, DMA_NONE, NULL, 0,
1507                                              &sshdr, timeout, SD_MAX_RETRIES,
1508                                              NULL, REQ_PM);
1509                 if (res == 0)
1510                         break;
1511         }
1512
1513         if (res) {
1514                 sd_print_result(sdkp, "Synchronize Cache(10) failed", res);
1515
1516                 if (driver_byte(res) & DRIVER_SENSE)
1517                         sd_print_sense_hdr(sdkp, &sshdr);
1518                 /* we need to evaluate the error return  */
1519                 if (scsi_sense_valid(&sshdr) &&
1520                         (sshdr.asc == 0x3a ||   /* medium not present */
1521                          sshdr.asc == 0x20))    /* invalid command */
1522                                 /* this is no error here */
1523                                 return 0;
1524
1525                 switch (host_byte(res)) {
1526                 /* ignore errors due to racing a disconnection */
1527                 case DID_BAD_TARGET:
1528                 case DID_NO_CONNECT:
1529                         return 0;
1530                 /* signal the upper layer it might try again */
1531                 case DID_BUS_BUSY:
1532                 case DID_IMM_RETRY:
1533                 case DID_REQUEUE:
1534                 case DID_SOFT_ERROR:
1535                         return -EBUSY;
1536                 default:
1537                         return -EIO;
1538                 }
1539         }
1540         return 0;
1541 }
1542
1543 static void sd_rescan(struct device *dev)
1544 {
1545         struct scsi_disk *sdkp = dev_get_drvdata(dev);
1546
1547         revalidate_disk(sdkp->disk);
1548 }
1549
1550
1551 #ifdef CONFIG_COMPAT
1552 /* 
1553  * This gets directly called from VFS. When the ioctl 
1554  * is not recognized we go back to the other translation paths. 
1555  */
1556 static int sd_compat_ioctl(struct block_device *bdev, fmode_t mode,
1557                            unsigned int cmd, unsigned long arg)
1558 {
1559         struct scsi_device *sdev = scsi_disk(bdev->bd_disk)->device;
1560         int error;
1561
1562         error = scsi_ioctl_block_when_processing_errors(sdev, cmd,
1563                         (mode & FMODE_NDELAY) != 0);
1564         if (error)
1565                 return error;
1566                
1567         /* 
1568          * Let the static ioctl translation table take care of it.
1569          */
1570         if (!sdev->host->hostt->compat_ioctl)
1571                 return -ENOIOCTLCMD; 
1572         return sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg);
1573 }
1574 #endif
1575
1576 static char sd_pr_type(enum pr_type type)
1577 {
1578         switch (type) {
1579         case PR_WRITE_EXCLUSIVE:
1580                 return 0x01;
1581         case PR_EXCLUSIVE_ACCESS:
1582                 return 0x03;
1583         case PR_WRITE_EXCLUSIVE_REG_ONLY:
1584                 return 0x05;
1585         case PR_EXCLUSIVE_ACCESS_REG_ONLY:
1586                 return 0x06;
1587         case PR_WRITE_EXCLUSIVE_ALL_REGS:
1588                 return 0x07;
1589         case PR_EXCLUSIVE_ACCESS_ALL_REGS:
1590                 return 0x08;
1591         default:
1592                 return 0;
1593         }
1594 };
1595
1596 static int sd_pr_command(struct block_device *bdev, u8 sa,
1597                 u64 key, u64 sa_key, u8 type, u8 flags)
1598 {
1599         struct scsi_device *sdev = scsi_disk(bdev->bd_disk)->device;
1600         struct scsi_sense_hdr sshdr;
1601         int result;
1602         u8 cmd[16] = { 0, };
1603         u8 data[24] = { 0, };
1604
1605         cmd[0] = PERSISTENT_RESERVE_OUT;
1606         cmd[1] = sa;
1607         cmd[2] = type;
1608         put_unaligned_be32(sizeof(data), &cmd[5]);
1609
1610         put_unaligned_be64(key, &data[0]);
1611         put_unaligned_be64(sa_key, &data[8]);
1612         data[20] = flags;
1613
1614         result = scsi_execute_req(sdev, cmd, DMA_TO_DEVICE, &data, sizeof(data),
1615                         &sshdr, SD_TIMEOUT, SD_MAX_RETRIES, NULL);
1616
1617         if ((driver_byte(result) & DRIVER_SENSE) &&
1618             (scsi_sense_valid(&sshdr))) {
1619                 sdev_printk(KERN_INFO, sdev, "PR command failed: %d\n", result);
1620                 scsi_print_sense_hdr(sdev, NULL, &sshdr);
1621         }
1622
1623         return result;
1624 }
1625
1626 static int sd_pr_register(struct block_device *bdev, u64 old_key, u64 new_key,
1627                 u32 flags)
1628 {
1629         if (flags & ~PR_FL_IGNORE_KEY)
1630                 return -EOPNOTSUPP;
1631         return sd_pr_command(bdev, (flags & PR_FL_IGNORE_KEY) ? 0x06 : 0x00,
1632                         old_key, new_key, 0,
1633                         (1 << 0) /* APTPL */);
1634 }
1635
1636 static int sd_pr_reserve(struct block_device *bdev, u64 key, enum pr_type type,
1637                 u32 flags)
1638 {
1639         if (flags)
1640                 return -EOPNOTSUPP;
1641         return sd_pr_command(bdev, 0x01, key, 0, sd_pr_type(type), 0);
1642 }
1643
1644 static int sd_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
1645 {
1646         return sd_pr_command(bdev, 0x02, key, 0, sd_pr_type(type), 0);
1647 }
1648
1649 static int sd_pr_preempt(struct block_device *bdev, u64 old_key, u64 new_key,
1650                 enum pr_type type, bool abort)
1651 {
1652         return sd_pr_command(bdev, abort ? 0x05 : 0x04, old_key, new_key,
1653                              sd_pr_type(type), 0);
1654 }
1655
1656 static int sd_pr_clear(struct block_device *bdev, u64 key)
1657 {
1658         return sd_pr_command(bdev, 0x03, key, 0, 0, 0);
1659 }
1660
1661 static const struct pr_ops sd_pr_ops = {
1662         .pr_register    = sd_pr_register,
1663         .pr_reserve     = sd_pr_reserve,
1664         .pr_release     = sd_pr_release,
1665         .pr_preempt     = sd_pr_preempt,
1666         .pr_clear       = sd_pr_clear,
1667 };
1668
1669 static const struct block_device_operations sd_fops = {
1670         .owner                  = THIS_MODULE,
1671         .open                   = sd_open,
1672         .release                = sd_release,
1673         .ioctl                  = sd_ioctl,
1674         .getgeo                 = sd_getgeo,
1675 #ifdef CONFIG_COMPAT
1676         .compat_ioctl           = sd_compat_ioctl,
1677 #endif
1678         .check_events           = sd_check_events,
1679         .revalidate_disk        = sd_revalidate_disk,
1680         .unlock_native_capacity = sd_unlock_native_capacity,
1681         .pr_ops                 = &sd_pr_ops,
1682 };
1683
1684 /**
1685  *      sd_eh_action - error handling callback
1686  *      @scmd:          sd-issued command that has failed
1687  *      @eh_disp:       The recovery disposition suggested by the midlayer
1688  *
1689  *      This function is called by the SCSI midlayer upon completion of an
1690  *      error test command (currently TEST UNIT READY). The result of sending
1691  *      the eh command is passed in eh_disp.  We're looking for devices that
1692  *      fail medium access commands but are OK with non access commands like
1693  *      test unit ready (so wrongly see the device as having a successful
1694  *      recovery)
1695  **/
1696 static int sd_eh_action(struct scsi_cmnd *scmd, int eh_disp)
1697 {
1698         struct scsi_disk *sdkp = scsi_disk(scmd->request->rq_disk);
1699
1700         if (!scsi_device_online(scmd->device) ||
1701             !scsi_medium_access_command(scmd) ||
1702             host_byte(scmd->result) != DID_TIME_OUT ||
1703             eh_disp != SUCCESS)
1704                 return eh_disp;
1705
1706         /*
1707          * The device has timed out executing a medium access command.
1708          * However, the TEST UNIT READY command sent during error
1709          * handling completed successfully. Either the device is in the
1710          * process of recovering or has it suffered an internal failure
1711          * that prevents access to the storage medium.
1712          */
1713         sdkp->medium_access_timed_out++;
1714
1715         /*
1716          * If the device keeps failing read/write commands but TEST UNIT
1717          * READY always completes successfully we assume that medium
1718          * access is no longer possible and take the device offline.
1719          */
1720         if (sdkp->medium_access_timed_out >= sdkp->max_medium_access_timeouts) {
1721                 scmd_printk(KERN_ERR, scmd,
1722                             "Medium access timeout failure. Offlining disk!\n");
1723                 scsi_device_set_state(scmd->device, SDEV_OFFLINE);
1724
1725                 return FAILED;
1726         }
1727
1728         return eh_disp;
1729 }
1730
1731 static unsigned int sd_completed_bytes(struct scsi_cmnd *scmd)
1732 {
1733         u64 start_lba = blk_rq_pos(scmd->request);
1734         u64 end_lba = blk_rq_pos(scmd->request) + (scsi_bufflen(scmd) / 512);
1735         u64 factor = scmd->device->sector_size / 512;
1736         u64 bad_lba;
1737         int info_valid;
1738         /*
1739          * resid is optional but mostly filled in.  When it's unused,
1740          * its value is zero, so we assume the whole buffer transferred
1741          */
1742         unsigned int transferred = scsi_bufflen(scmd) - scsi_get_resid(scmd);
1743         unsigned int good_bytes;
1744
1745         if (scmd->request->cmd_type != REQ_TYPE_FS)
1746                 return 0;
1747
1748         info_valid = scsi_get_sense_info_fld(scmd->sense_buffer,
1749                                              SCSI_SENSE_BUFFERSIZE,
1750                                              &bad_lba);
1751         if (!info_valid)
1752                 return 0;
1753
1754         if (scsi_bufflen(scmd) <= scmd->device->sector_size)
1755                 return 0;
1756
1757         /* be careful ... don't want any overflows */
1758         do_div(start_lba, factor);
1759         do_div(end_lba, factor);
1760
1761         /* The bad lba was reported incorrectly, we have no idea where
1762          * the error is.
1763          */
1764         if (bad_lba < start_lba  || bad_lba >= end_lba)
1765                 return 0;
1766
1767         /* This computation should always be done in terms of
1768          * the resolution of the device's medium.
1769          */
1770         good_bytes = (bad_lba - start_lba) * scmd->device->sector_size;
1771         return min(good_bytes, transferred);
1772 }
1773
1774 /**
1775  *      sd_done - bottom half handler: called when the lower level
1776  *      driver has completed (successfully or otherwise) a scsi command.
1777  *      @SCpnt: mid-level's per command structure.
1778  *
1779  *      Note: potentially run from within an ISR. Must not block.
1780  **/
1781 static int sd_done(struct scsi_cmnd *SCpnt)
1782 {
1783         int result = SCpnt->result;
1784         unsigned int good_bytes = result ? 0 : scsi_bufflen(SCpnt);
1785         struct scsi_sense_hdr sshdr;
1786         struct scsi_disk *sdkp = scsi_disk(SCpnt->request->rq_disk);
1787         struct request *req = SCpnt->request;
1788         int sense_valid = 0;
1789         int sense_deferred = 0;
1790         unsigned char op = SCpnt->cmnd[0];
1791         unsigned char unmap = SCpnt->cmnd[1] & 8;
1792
1793         if (req_op(req) == REQ_OP_DISCARD || req_op(req) == REQ_OP_WRITE_SAME) {
1794                 if (!result) {
1795                         good_bytes = blk_rq_bytes(req);
1796                         scsi_set_resid(SCpnt, 0);
1797                 } else {
1798                         good_bytes = 0;
1799                         scsi_set_resid(SCpnt, blk_rq_bytes(req));
1800                 }
1801         }
1802
1803         if (result) {
1804                 sense_valid = scsi_command_normalize_sense(SCpnt, &sshdr);
1805                 if (sense_valid)
1806                         sense_deferred = scsi_sense_is_deferred(&sshdr);
1807         }
1808         sdkp->medium_access_timed_out = 0;
1809
1810         if (driver_byte(result) != DRIVER_SENSE &&
1811             (!sense_valid || sense_deferred))
1812                 goto out;
1813
1814         switch (sshdr.sense_key) {
1815         case HARDWARE_ERROR:
1816         case MEDIUM_ERROR:
1817                 good_bytes = sd_completed_bytes(SCpnt);
1818                 break;
1819         case RECOVERED_ERROR:
1820                 good_bytes = scsi_bufflen(SCpnt);
1821                 break;
1822         case NO_SENSE:
1823                 /* This indicates a false check condition, so ignore it.  An
1824                  * unknown amount of data was transferred so treat it as an
1825                  * error.
1826                  */
1827                 SCpnt->result = 0;
1828                 memset(SCpnt->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
1829                 break;
1830         case ABORTED_COMMAND:
1831                 if (sshdr.asc == 0x10)  /* DIF: Target detected corruption */
1832                         good_bytes = sd_completed_bytes(SCpnt);
1833                 break;
1834         case ILLEGAL_REQUEST:
1835                 if (sshdr.asc == 0x10)  /* DIX: Host detected corruption */
1836                         good_bytes = sd_completed_bytes(SCpnt);
1837                 /* INVALID COMMAND OPCODE or INVALID FIELD IN CDB */
1838                 if (sshdr.asc == 0x20 || sshdr.asc == 0x24) {
1839                         switch (op) {
1840                         case UNMAP:
1841                                 sd_config_discard(sdkp, SD_LBP_DISABLE);
1842                                 break;
1843                         case WRITE_SAME_16:
1844                         case WRITE_SAME:
1845                                 if (unmap)
1846                                         sd_config_discard(sdkp, SD_LBP_DISABLE);
1847                                 else {
1848                                         sdkp->device->no_write_same = 1;
1849                                         sd_config_write_same(sdkp);
1850
1851                                         good_bytes = 0;
1852                                         req->__data_len = blk_rq_bytes(req);
1853                                         req->cmd_flags |= REQ_QUIET;
1854                                 }
1855                         }
1856                 }
1857                 break;
1858         default:
1859                 break;
1860         }
1861  out:
1862         SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, SCpnt,
1863                                            "sd_done: completed %d of %d bytes\n",
1864                                            good_bytes, scsi_bufflen(SCpnt)));
1865
1866         if (rq_data_dir(SCpnt->request) == READ && scsi_prot_sg_count(SCpnt))
1867                 sd_dif_complete(SCpnt, good_bytes);
1868
1869         return good_bytes;
1870 }
1871
1872 /*
1873  * spinup disk - called only in sd_revalidate_disk()
1874  */
1875 static void
1876 sd_spinup_disk(struct scsi_disk *sdkp)
1877 {
1878         unsigned char cmd[10];
1879         unsigned long spintime_expire = 0;
1880         int retries, spintime;
1881         unsigned int the_result;
1882         struct scsi_sense_hdr sshdr;
1883         int sense_valid = 0;
1884
1885         spintime = 0;
1886
1887         /* Spin up drives, as required.  Only do this at boot time */
1888         /* Spinup needs to be done for module loads too. */
1889         do {
1890                 retries = 0;
1891
1892                 do {
1893                         cmd[0] = TEST_UNIT_READY;
1894                         memset((void *) &cmd[1], 0, 9);
1895
1896                         the_result = scsi_execute_req(sdkp->device, cmd,
1897                                                       DMA_NONE, NULL, 0,
1898                                                       &sshdr, SD_TIMEOUT,
1899                                                       SD_MAX_RETRIES, NULL);
1900
1901                         /*
1902                          * If the drive has indicated to us that it
1903                          * doesn't have any media in it, don't bother
1904                          * with any more polling.
1905                          */
1906                         if (media_not_present(sdkp, &sshdr))
1907                                 return;
1908
1909                         if (the_result)
1910                                 sense_valid = scsi_sense_valid(&sshdr);
1911                         retries++;
1912                 } while (retries < 3 && 
1913                          (!scsi_status_is_good(the_result) ||
1914                           ((driver_byte(the_result) & DRIVER_SENSE) &&
1915                           sense_valid && sshdr.sense_key == UNIT_ATTENTION)));
1916
1917                 if ((driver_byte(the_result) & DRIVER_SENSE) == 0) {
1918                         /* no sense, TUR either succeeded or failed
1919                          * with a status error */
1920                         if(!spintime && !scsi_status_is_good(the_result)) {
1921                                 sd_print_result(sdkp, "Test Unit Ready failed",
1922                                                 the_result);
1923                         }
1924                         break;
1925                 }
1926
1927                 /*
1928                  * The device does not want the automatic start to be issued.
1929                  */
1930                 if (sdkp->device->no_start_on_add)
1931                         break;
1932
1933                 if (sense_valid && sshdr.sense_key == NOT_READY) {
1934                         if (sshdr.asc == 4 && sshdr.ascq == 3)
1935                                 break;  /* manual intervention required */
1936                         if (sshdr.asc == 4 && sshdr.ascq == 0xb)
1937                                 break;  /* standby */
1938                         if (sshdr.asc == 4 && sshdr.ascq == 0xc)
1939                                 break;  /* unavailable */
1940                         if (sshdr.asc == 4 && sshdr.ascq == 0x1b)
1941                                 break;  /* sanitize in progress */
1942                         /*
1943                          * Issue command to spin up drive when not ready
1944                          */
1945                         if (!spintime) {
1946                                 sd_printk(KERN_NOTICE, sdkp, "Spinning up disk...");
1947                                 cmd[0] = START_STOP;
1948                                 cmd[1] = 1;     /* Return immediately */
1949                                 memset((void *) &cmd[2], 0, 8);
1950                                 cmd[4] = 1;     /* Start spin cycle */
1951                                 if (sdkp->device->start_stop_pwr_cond)
1952                                         cmd[4] |= 1 << 4;
1953                                 scsi_execute_req(sdkp->device, cmd, DMA_NONE,
1954                                                  NULL, 0, &sshdr,
1955                                                  SD_TIMEOUT, SD_MAX_RETRIES,
1956                                                  NULL);
1957                                 spintime_expire = jiffies + 100 * HZ;
1958                                 spintime = 1;
1959                         }
1960                         /* Wait 1 second for next try */
1961                         msleep(1000);
1962                         printk(".");
1963
1964                 /*
1965                  * Wait for USB flash devices with slow firmware.
1966                  * Yes, this sense key/ASC combination shouldn't
1967                  * occur here.  It's characteristic of these devices.
1968                  */
1969                 } else if (sense_valid &&
1970                                 sshdr.sense_key == UNIT_ATTENTION &&
1971                                 sshdr.asc == 0x28) {
1972                         if (!spintime) {
1973                                 spintime_expire = jiffies + 5 * HZ;
1974                                 spintime = 1;
1975                         }
1976                         /* Wait 1 second for next try */
1977                         msleep(1000);
1978                 } else {
1979                         /* we don't understand the sense code, so it's
1980                          * probably pointless to loop */
1981                         if(!spintime) {
1982                                 sd_printk(KERN_NOTICE, sdkp, "Unit Not Ready\n");
1983                                 sd_print_sense_hdr(sdkp, &sshdr);
1984                         }
1985                         break;
1986                 }
1987                                 
1988         } while (spintime && time_before_eq(jiffies, spintime_expire));
1989
1990         if (spintime) {
1991                 if (scsi_status_is_good(the_result))
1992                         printk("ready\n");
1993                 else
1994                         printk("not responding...\n");
1995         }
1996 }
1997
1998
1999 /*
2000  * Determine whether disk supports Data Integrity Field.
2001  */
2002 static int sd_read_protection_type(struct scsi_disk *sdkp, unsigned char *buffer)
2003 {
2004         struct scsi_device *sdp = sdkp->device;
2005         u8 type;
2006         int ret = 0;
2007
2008         if (scsi_device_protection(sdp) == 0 || (buffer[12] & 1) == 0)
2009                 return ret;
2010
2011         type = ((buffer[12] >> 1) & 7) + 1; /* P_TYPE 0 = Type 1 */
2012
2013         if (type > T10_PI_TYPE3_PROTECTION)
2014                 ret = -ENODEV;
2015         else if (scsi_host_dif_capable(sdp->host, type))
2016                 ret = 1;
2017
2018         if (sdkp->first_scan || type != sdkp->protection_type)
2019                 switch (ret) {
2020                 case -ENODEV:
2021                         sd_printk(KERN_ERR, sdkp, "formatted with unsupported" \
2022                                   " protection type %u. Disabling disk!\n",
2023                                   type);
2024                         break;
2025                 case 1:
2026                         sd_printk(KERN_NOTICE, sdkp,
2027                                   "Enabling DIF Type %u protection\n", type);
2028                         break;
2029                 case 0:
2030                         sd_printk(KERN_NOTICE, sdkp,
2031                                   "Disabling DIF Type %u protection\n", type);
2032                         break;
2033                 }
2034
2035         sdkp->protection_type = type;
2036
2037         return ret;
2038 }
2039
2040 static void read_capacity_error(struct scsi_disk *sdkp, struct scsi_device *sdp,
2041                         struct scsi_sense_hdr *sshdr, int sense_valid,
2042                         int the_result)
2043 {
2044         if (driver_byte(the_result) & DRIVER_SENSE)
2045                 sd_print_sense_hdr(sdkp, sshdr);
2046         else
2047                 sd_printk(KERN_NOTICE, sdkp, "Sense not available.\n");
2048
2049         /*
2050          * Set dirty bit for removable devices if not ready -
2051          * sometimes drives will not report this properly.
2052          */
2053         if (sdp->removable &&
2054             sense_valid && sshdr->sense_key == NOT_READY)
2055                 set_media_not_present(sdkp);
2056
2057         /*
2058          * We used to set media_present to 0 here to indicate no media
2059          * in the drive, but some drives fail read capacity even with
2060          * media present, so we can't do that.
2061          */
2062         sdkp->capacity = 0; /* unknown mapped to zero - as usual */
2063 }
2064
2065 #define RC16_LEN 32
2066 #if RC16_LEN > SD_BUF_SIZE
2067 #error RC16_LEN must not be more than SD_BUF_SIZE
2068 #endif
2069
2070 #define READ_CAPACITY_RETRIES_ON_RESET  10
2071
2072 /*
2073  * Ensure that we don't overflow sector_t when CONFIG_LBDAF is not set
2074  * and the reported logical block size is bigger than 512 bytes. Note
2075  * that last_sector is a u64 and therefore logical_to_sectors() is not
2076  * applicable.
2077  */
2078 static bool sd_addressable_capacity(u64 lba, unsigned int sector_size)
2079 {
2080         u64 last_sector = (lba + 1ULL) << (ilog2(sector_size) - 9);
2081
2082         if (sizeof(sector_t) == 4 && last_sector > U32_MAX)
2083                 return false;
2084
2085         return true;
2086 }
2087
2088 static int read_capacity_16(struct scsi_disk *sdkp, struct scsi_device *sdp,
2089                                                 unsigned char *buffer)
2090 {
2091         unsigned char cmd[16];
2092         struct scsi_sense_hdr sshdr;
2093         int sense_valid = 0;
2094         int the_result;
2095         int retries = 3, reset_retries = READ_CAPACITY_RETRIES_ON_RESET;
2096         unsigned int alignment;
2097         unsigned long long lba;
2098         unsigned sector_size;
2099
2100         if (sdp->no_read_capacity_16)
2101                 return -EINVAL;
2102
2103         do {
2104                 memset(cmd, 0, 16);
2105                 cmd[0] = SERVICE_ACTION_IN_16;
2106                 cmd[1] = SAI_READ_CAPACITY_16;
2107                 cmd[13] = RC16_LEN;
2108                 memset(buffer, 0, RC16_LEN);
2109
2110                 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
2111                                         buffer, RC16_LEN, &sshdr,
2112                                         SD_TIMEOUT, SD_MAX_RETRIES, NULL);
2113
2114                 if (media_not_present(sdkp, &sshdr))
2115                         return -ENODEV;
2116
2117                 if (the_result) {
2118                         sense_valid = scsi_sense_valid(&sshdr);
2119                         if (sense_valid &&
2120                             sshdr.sense_key == ILLEGAL_REQUEST &&
2121                             (sshdr.asc == 0x20 || sshdr.asc == 0x24) &&
2122                             sshdr.ascq == 0x00)
2123                                 /* Invalid Command Operation Code or
2124                                  * Invalid Field in CDB, just retry
2125                                  * silently with RC10 */
2126                                 return -EINVAL;
2127                         if (sense_valid &&
2128                             sshdr.sense_key == UNIT_ATTENTION &&
2129                             sshdr.asc == 0x29 && sshdr.ascq == 0x00)
2130                                 /* Device reset might occur several times,
2131                                  * give it one more chance */
2132                                 if (--reset_retries > 0)
2133                                         continue;
2134                 }
2135                 retries--;
2136
2137         } while (the_result && retries);
2138
2139         if (the_result) {
2140                 sd_print_result(sdkp, "Read Capacity(16) failed", the_result);
2141                 read_capacity_error(sdkp, sdp, &sshdr, sense_valid, the_result);
2142                 return -EINVAL;
2143         }
2144
2145         sector_size = get_unaligned_be32(&buffer[8]);
2146         lba = get_unaligned_be64(&buffer[0]);
2147
2148         if (sd_read_protection_type(sdkp, buffer) < 0) {
2149                 sdkp->capacity = 0;
2150                 return -ENODEV;
2151         }
2152
2153         if (!sd_addressable_capacity(lba, sector_size)) {
2154                 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use a "
2155                         "kernel compiled with support for large block "
2156                         "devices.\n");
2157                 sdkp->capacity = 0;
2158                 return -EOVERFLOW;
2159         }
2160
2161         /* Logical blocks per physical block exponent */
2162         sdkp->physical_block_size = (1 << (buffer[13] & 0xf)) * sector_size;
2163
2164         /* Lowest aligned logical block */
2165         alignment = ((buffer[14] & 0x3f) << 8 | buffer[15]) * sector_size;
2166         blk_queue_alignment_offset(sdp->request_queue, alignment);
2167         if (alignment && sdkp->first_scan)
2168                 sd_printk(KERN_NOTICE, sdkp,
2169                           "physical block alignment offset: %u\n", alignment);
2170
2171         if (buffer[14] & 0x80) { /* LBPME */
2172                 sdkp->lbpme = 1;
2173
2174                 if (buffer[14] & 0x40) /* LBPRZ */
2175                         sdkp->lbprz = 1;
2176
2177                 sd_config_discard(sdkp, SD_LBP_WS16);
2178         }
2179
2180         sdkp->capacity = lba + 1;
2181         return sector_size;
2182 }
2183
2184 static int read_capacity_10(struct scsi_disk *sdkp, struct scsi_device *sdp,
2185                                                 unsigned char *buffer)
2186 {
2187         unsigned char cmd[16];
2188         struct scsi_sense_hdr sshdr;
2189         int sense_valid = 0;
2190         int the_result;
2191         int retries = 3, reset_retries = READ_CAPACITY_RETRIES_ON_RESET;
2192         sector_t lba;
2193         unsigned sector_size;
2194
2195         do {
2196                 cmd[0] = READ_CAPACITY;
2197                 memset(&cmd[1], 0, 9);
2198                 memset(buffer, 0, 8);
2199
2200                 the_result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
2201                                         buffer, 8, &sshdr,
2202                                         SD_TIMEOUT, SD_MAX_RETRIES, NULL);
2203
2204                 if (media_not_present(sdkp, &sshdr))
2205                         return -ENODEV;
2206
2207                 if (the_result) {
2208                         sense_valid = scsi_sense_valid(&sshdr);
2209                         if (sense_valid &&
2210                             sshdr.sense_key == UNIT_ATTENTION &&
2211                             sshdr.asc == 0x29 && sshdr.ascq == 0x00)
2212                                 /* Device reset might occur several times,
2213                                  * give it one more chance */
2214                                 if (--reset_retries > 0)
2215                                         continue;
2216                 }
2217                 retries--;
2218
2219         } while (the_result && retries);
2220
2221         if (the_result) {
2222                 sd_print_result(sdkp, "Read Capacity(10) failed", the_result);
2223                 read_capacity_error(sdkp, sdp, &sshdr, sense_valid, the_result);
2224                 return -EINVAL;
2225         }
2226
2227         sector_size = get_unaligned_be32(&buffer[4]);
2228         lba = get_unaligned_be32(&buffer[0]);
2229
2230         if (sdp->no_read_capacity_16 && (lba == 0xffffffff)) {
2231                 /* Some buggy (usb cardreader) devices return an lba of
2232                    0xffffffff when the want to report a size of 0 (with
2233                    which they really mean no media is present) */
2234                 sdkp->capacity = 0;
2235                 sdkp->physical_block_size = sector_size;
2236                 return sector_size;
2237         }
2238
2239         if (!sd_addressable_capacity(lba, sector_size)) {
2240                 sd_printk(KERN_ERR, sdkp, "Too big for this kernel. Use a "
2241                         "kernel compiled with support for large block "
2242                         "devices.\n");
2243                 sdkp->capacity = 0;
2244                 return -EOVERFLOW;
2245         }
2246
2247         sdkp->capacity = lba + 1;
2248         sdkp->physical_block_size = sector_size;
2249         return sector_size;
2250 }
2251
2252 static int sd_try_rc16_first(struct scsi_device *sdp)
2253 {
2254         if (sdp->host->max_cmd_len < 16)
2255                 return 0;
2256         if (sdp->try_rc_10_first)
2257                 return 0;
2258         if (sdp->scsi_level > SCSI_SPC_2)
2259                 return 1;
2260         if (scsi_device_protection(sdp))
2261                 return 1;
2262         return 0;
2263 }
2264
2265 /*
2266  * read disk capacity
2267  */
2268 static void
2269 sd_read_capacity(struct scsi_disk *sdkp, unsigned char *buffer)
2270 {
2271         int sector_size;
2272         struct scsi_device *sdp = sdkp->device;
2273         sector_t old_capacity = sdkp->capacity;
2274
2275         if (sd_try_rc16_first(sdp)) {
2276                 sector_size = read_capacity_16(sdkp, sdp, buffer);
2277                 if (sector_size == -EOVERFLOW)
2278                         goto got_data;
2279                 if (sector_size == -ENODEV)
2280                         return;
2281                 if (sector_size < 0)
2282                         sector_size = read_capacity_10(sdkp, sdp, buffer);
2283                 if (sector_size < 0)
2284                         return;
2285         } else {
2286                 sector_size = read_capacity_10(sdkp, sdp, buffer);
2287                 if (sector_size == -EOVERFLOW)
2288                         goto got_data;
2289                 if (sector_size < 0)
2290                         return;
2291                 if ((sizeof(sdkp->capacity) > 4) &&
2292                     (sdkp->capacity > 0xffffffffULL)) {
2293                         int old_sector_size = sector_size;
2294                         sd_printk(KERN_NOTICE, sdkp, "Very big device. "
2295                                         "Trying to use READ CAPACITY(16).\n");
2296                         sector_size = read_capacity_16(sdkp, sdp, buffer);
2297                         if (sector_size < 0) {
2298                                 sd_printk(KERN_NOTICE, sdkp,
2299                                         "Using 0xffffffff as device size\n");
2300                                 sdkp->capacity = 1 + (sector_t) 0xffffffff;
2301                                 sector_size = old_sector_size;
2302                                 goto got_data;
2303                         }
2304                 }
2305         }
2306
2307         /* Some devices are known to return the total number of blocks,
2308          * not the highest block number.  Some devices have versions
2309          * which do this and others which do not.  Some devices we might
2310          * suspect of doing this but we don't know for certain.
2311          *
2312          * If we know the reported capacity is wrong, decrement it.  If
2313          * we can only guess, then assume the number of blocks is even
2314          * (usually true but not always) and err on the side of lowering
2315          * the capacity.
2316          */
2317         if (sdp->fix_capacity ||
2318             (sdp->guess_capacity && (sdkp->capacity & 0x01))) {
2319                 sd_printk(KERN_INFO, sdkp, "Adjusting the sector count "
2320                                 "from its reported value: %llu\n",
2321                                 (unsigned long long) sdkp->capacity);
2322                 --sdkp->capacity;
2323         }
2324
2325 got_data:
2326         if (sector_size == 0) {
2327                 sector_size = 512;
2328                 sd_printk(KERN_NOTICE, sdkp, "Sector size 0 reported, "
2329                           "assuming 512.\n");
2330         }
2331
2332         if (sector_size != 512 &&
2333             sector_size != 1024 &&
2334             sector_size != 2048 &&
2335             sector_size != 4096) {
2336                 sd_printk(KERN_NOTICE, sdkp, "Unsupported sector size %d.\n",
2337                           sector_size);
2338                 /*
2339                  * The user might want to re-format the drive with
2340                  * a supported sectorsize.  Once this happens, it
2341                  * would be relatively trivial to set the thing up.
2342                  * For this reason, we leave the thing in the table.
2343                  */
2344                 sdkp->capacity = 0;
2345                 /*
2346                  * set a bogus sector size so the normal read/write
2347                  * logic in the block layer will eventually refuse any
2348                  * request on this device without tripping over power
2349                  * of two sector size assumptions
2350                  */
2351                 sector_size = 512;
2352         }
2353         blk_queue_logical_block_size(sdp->request_queue, sector_size);
2354
2355         {
2356                 char cap_str_2[10], cap_str_10[10];
2357
2358                 string_get_size(sdkp->capacity, sector_size,
2359                                 STRING_UNITS_2, cap_str_2, sizeof(cap_str_2));
2360                 string_get_size(sdkp->capacity, sector_size,
2361                                 STRING_UNITS_10, cap_str_10,
2362                                 sizeof(cap_str_10));
2363
2364                 if (sdkp->first_scan || old_capacity != sdkp->capacity) {
2365                         sd_printk(KERN_NOTICE, sdkp,
2366                                   "%llu %d-byte logical blocks: (%s/%s)\n",
2367                                   (unsigned long long)sdkp->capacity,
2368                                   sector_size, cap_str_10, cap_str_2);
2369
2370                         if (sdkp->physical_block_size != sector_size)
2371                                 sd_printk(KERN_NOTICE, sdkp,
2372                                           "%u-byte physical blocks\n",
2373                                           sdkp->physical_block_size);
2374                 }
2375         }
2376
2377         if (sdkp->capacity > 0xffffffff)
2378                 sdp->use_16_for_rw = 1;
2379
2380         blk_queue_physical_block_size(sdp->request_queue,
2381                                       sdkp->physical_block_size);
2382         sdkp->device->sector_size = sector_size;
2383 }
2384
2385 /* called with buffer of length 512 */
2386 static inline int
2387 sd_do_mode_sense(struct scsi_device *sdp, int dbd, int modepage,
2388                  unsigned char *buffer, int len, struct scsi_mode_data *data,
2389                  struct scsi_sense_hdr *sshdr)
2390 {
2391         return scsi_mode_sense(sdp, dbd, modepage, buffer, len,
2392                                SD_TIMEOUT, SD_MAX_RETRIES, data,
2393                                sshdr);
2394 }
2395
2396 /*
2397  * read write protect setting, if possible - called only in sd_revalidate_disk()
2398  * called with buffer of length SD_BUF_SIZE
2399  */
2400 static void
2401 sd_read_write_protect_flag(struct scsi_disk *sdkp, unsigned char *buffer)
2402 {
2403         int res;
2404         struct scsi_device *sdp = sdkp->device;
2405         struct scsi_mode_data data;
2406         int old_wp = sdkp->write_prot;
2407
2408         set_disk_ro(sdkp->disk, 0);
2409         if (sdp->skip_ms_page_3f) {
2410                 sd_first_printk(KERN_NOTICE, sdkp, "Assuming Write Enabled\n");
2411                 return;
2412         }
2413
2414         if (sdp->use_192_bytes_for_3f) {
2415                 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 192, &data, NULL);
2416         } else {
2417                 /*
2418                  * First attempt: ask for all pages (0x3F), but only 4 bytes.
2419                  * We have to start carefully: some devices hang if we ask
2420                  * for more than is available.
2421                  */
2422                 res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 4, &data, NULL);
2423
2424                 /*
2425                  * Second attempt: ask for page 0 When only page 0 is
2426                  * implemented, a request for page 3F may return Sense Key
2427                  * 5: Illegal Request, Sense Code 24: Invalid field in
2428                  * CDB.
2429                  */
2430                 if (!scsi_status_is_good(res))
2431                         res = sd_do_mode_sense(sdp, 0, 0, buffer, 4, &data, NULL);
2432
2433                 /*
2434                  * Third attempt: ask 255 bytes, as we did earlier.
2435                  */
2436                 if (!scsi_status_is_good(res))
2437                         res = sd_do_mode_sense(sdp, 0, 0x3F, buffer, 255,
2438                                                &data, NULL);
2439         }
2440
2441         if (!scsi_status_is_good(res)) {
2442                 sd_first_printk(KERN_WARNING, sdkp,
2443                           "Test WP failed, assume Write Enabled\n");
2444         } else {
2445                 sdkp->write_prot = ((data.device_specific & 0x80) != 0);
2446                 set_disk_ro(sdkp->disk, sdkp->write_prot);
2447                 if (sdkp->first_scan || old_wp != sdkp->write_prot) {
2448                         sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
2449                                   sdkp->write_prot ? "on" : "off");
2450                         sd_printk(KERN_DEBUG, sdkp,
2451                                   "Mode Sense: %02x %02x %02x %02x\n",
2452                                   buffer[0], buffer[1], buffer[2], buffer[3]);
2453                 }
2454         }
2455 }
2456
2457 /*
2458  * sd_read_cache_type - called only from sd_revalidate_disk()
2459  * called with buffer of length SD_BUF_SIZE
2460  */
2461 static void
2462 sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
2463 {
2464         int len = 0, res;
2465         struct scsi_device *sdp = sdkp->device;
2466
2467         int dbd;
2468         int modepage;
2469         int first_len;
2470         struct scsi_mode_data data;
2471         struct scsi_sense_hdr sshdr;
2472         int old_wce = sdkp->WCE;
2473         int old_rcd = sdkp->RCD;
2474         int old_dpofua = sdkp->DPOFUA;
2475
2476
2477         if (sdkp->cache_override)
2478                 return;
2479
2480         first_len = 4;
2481         if (sdp->skip_ms_page_8) {
2482                 if (sdp->type == TYPE_RBC)
2483                         goto defaults;
2484                 else {
2485                         if (sdp->skip_ms_page_3f)
2486                                 goto defaults;
2487                         modepage = 0x3F;
2488                         if (sdp->use_192_bytes_for_3f)
2489                                 first_len = 192;
2490                         dbd = 0;
2491                 }
2492         } else if (sdp->type == TYPE_RBC) {
2493                 modepage = 6;
2494                 dbd = 8;
2495         } else {
2496                 modepage = 8;
2497                 dbd = 0;
2498         }
2499
2500         /* cautiously ask */
2501         res = sd_do_mode_sense(sdp, dbd, modepage, buffer, first_len,
2502                         &data, &sshdr);
2503
2504         if (!scsi_status_is_good(res))
2505                 goto bad_sense;
2506
2507         if (!data.header_length) {
2508                 modepage = 6;
2509                 first_len = 0;
2510                 sd_first_printk(KERN_ERR, sdkp,
2511                                 "Missing header in MODE_SENSE response\n");
2512         }
2513
2514         /* that went OK, now ask for the proper length */
2515         len = data.length;
2516
2517         /*
2518          * We're only interested in the first three bytes, actually.
2519          * But the data cache page is defined for the first 20.
2520          */
2521         if (len < 3)
2522                 goto bad_sense;
2523         else if (len > SD_BUF_SIZE) {
2524                 sd_first_printk(KERN_NOTICE, sdkp, "Truncating mode parameter "
2525                           "data from %d to %d bytes\n", len, SD_BUF_SIZE);
2526                 len = SD_BUF_SIZE;
2527         }
2528         if (modepage == 0x3F && sdp->use_192_bytes_for_3f)
2529                 len = 192;
2530
2531         /* Get the data */
2532         if (len > first_len)
2533                 res = sd_do_mode_sense(sdp, dbd, modepage, buffer, len,
2534                                 &data, &sshdr);
2535
2536         if (scsi_status_is_good(res)) {
2537                 int offset = data.header_length + data.block_descriptor_length;
2538
2539                 while (offset < len) {
2540                         u8 page_code = buffer[offset] & 0x3F;
2541                         u8 spf       = buffer[offset] & 0x40;
2542
2543                         if (page_code == 8 || page_code == 6) {
2544                                 /* We're interested only in the first 3 bytes.
2545                                  */
2546                                 if (len - offset <= 2) {
2547                                         sd_first_printk(KERN_ERR, sdkp,
2548                                                 "Incomplete mode parameter "
2549                                                         "data\n");
2550                                         goto defaults;
2551                                 } else {
2552                                         modepage = page_code;
2553                                         goto Page_found;
2554                                 }
2555                         } else {
2556                                 /* Go to the next page */
2557                                 if (spf && len - offset > 3)
2558                                         offset += 4 + (buffer[offset+2] << 8) +
2559                                                 buffer[offset+3];
2560                                 else if (!spf && len - offset > 1)
2561                                         offset += 2 + buffer[offset+1];
2562                                 else {
2563                                         sd_first_printk(KERN_ERR, sdkp,
2564                                                         "Incomplete mode "
2565                                                         "parameter data\n");
2566                                         goto defaults;
2567                                 }
2568                         }
2569                 }
2570
2571                 sd_first_printk(KERN_ERR, sdkp, "No Caching mode page found\n");
2572                 goto defaults;
2573
2574         Page_found:
2575                 if (modepage == 8) {
2576                         sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);
2577                         sdkp->RCD = ((buffer[offset + 2] & 0x01) != 0);
2578                 } else {
2579                         sdkp->WCE = ((buffer[offset + 2] & 0x01) == 0);
2580                         sdkp->RCD = 0;
2581                 }
2582
2583                 sdkp->DPOFUA = (data.device_specific & 0x10) != 0;
2584                 if (sdp->broken_fua) {
2585                         sd_first_printk(KERN_NOTICE, sdkp, "Disabling FUA\n");
2586                         sdkp->DPOFUA = 0;
2587                 } else if (sdkp->DPOFUA && !sdkp->device->use_10_for_rw &&
2588                            !sdkp->device->use_16_for_rw) {
2589                         sd_first_printk(KERN_NOTICE, sdkp,
2590                                   "Uses READ/WRITE(6), disabling FUA\n");
2591                         sdkp->DPOFUA = 0;
2592                 }
2593
2594                 /* No cache flush allowed for write protected devices */
2595                 if (sdkp->WCE && sdkp->write_prot)
2596                         sdkp->WCE = 0;
2597
2598                 if (sdkp->first_scan || old_wce != sdkp->WCE ||
2599                     old_rcd != sdkp->RCD || old_dpofua != sdkp->DPOFUA)
2600                         sd_printk(KERN_NOTICE, sdkp,
2601                                   "Write cache: %s, read cache: %s, %s\n",
2602                                   sdkp->WCE ? "enabled" : "disabled",
2603                                   sdkp->RCD ? "disabled" : "enabled",
2604                                   sdkp->DPOFUA ? "supports DPO and FUA"
2605                                   : "doesn't support DPO or FUA");
2606
2607                 return;
2608         }
2609
2610 bad_sense:
2611         if (scsi_sense_valid(&sshdr) &&
2612             sshdr.sense_key == ILLEGAL_REQUEST &&
2613             sshdr.asc == 0x24 && sshdr.ascq == 0x0)
2614                 /* Invalid field in CDB */
2615                 sd_first_printk(KERN_NOTICE, sdkp, "Cache data unavailable\n");
2616         else
2617                 sd_first_printk(KERN_ERR, sdkp,
2618                                 "Asking for cache data failed\n");
2619
2620 defaults:
2621         if (sdp->wce_default_on) {
2622                 sd_first_printk(KERN_NOTICE, sdkp,
2623                                 "Assuming drive cache: write back\n");
2624                 sdkp->WCE = 1;
2625         } else {
2626                 sd_first_printk(KERN_ERR, sdkp,
2627                                 "Assuming drive cache: write through\n");
2628                 sdkp->WCE = 0;
2629         }
2630         sdkp->RCD = 0;
2631         sdkp->DPOFUA = 0;
2632 }
2633
2634 /*
2635  * The ATO bit indicates whether the DIF application tag is available
2636  * for use by the operating system.
2637  */
2638 static void sd_read_app_tag_own(struct scsi_disk *sdkp, unsigned char *buffer)
2639 {
2640         int res, offset;
2641         struct scsi_device *sdp = sdkp->device;
2642         struct scsi_mode_data data;
2643         struct scsi_sense_hdr sshdr;
2644
2645         if (sdp->type != TYPE_DISK)
2646                 return;
2647
2648         if (sdkp->protection_type == 0)
2649                 return;
2650
2651         res = scsi_mode_sense(sdp, 1, 0x0a, buffer, 36, SD_TIMEOUT,
2652                               SD_MAX_RETRIES, &data, &sshdr);
2653
2654         if (!scsi_status_is_good(res) || !data.header_length ||
2655             data.length < 6) {
2656                 sd_first_printk(KERN_WARNING, sdkp,
2657                           "getting Control mode page failed, assume no ATO\n");
2658
2659                 if (scsi_sense_valid(&sshdr))
2660                         sd_print_sense_hdr(sdkp, &sshdr);
2661
2662                 return;
2663         }
2664
2665         offset = data.header_length + data.block_descriptor_length;
2666
2667         if ((buffer[offset] & 0x3f) != 0x0a) {
2668                 sd_first_printk(KERN_ERR, sdkp, "ATO Got wrong page\n");
2669                 return;
2670         }
2671
2672         if ((buffer[offset + 5] & 0x80) == 0)
2673                 return;
2674
2675         sdkp->ATO = 1;
2676
2677         return;
2678 }
2679
2680 /**
2681  * sd_read_block_limits - Query disk device for preferred I/O sizes.
2682  * @disk: disk to query
2683  */
2684 static void sd_read_block_limits(struct scsi_disk *sdkp)
2685 {
2686         unsigned int sector_sz = sdkp->device->sector_size;
2687         const int vpd_len = 64;
2688         unsigned char *buffer = kmalloc(vpd_len, GFP_KERNEL);
2689
2690         if (!buffer ||
2691             /* Block Limits VPD */
2692             scsi_get_vpd_page(sdkp->device, 0xb0, buffer, vpd_len))
2693                 goto out;
2694
2695         blk_queue_io_min(sdkp->disk->queue,
2696                          get_unaligned_be16(&buffer[6]) * sector_sz);
2697
2698         sdkp->max_xfer_blocks = get_unaligned_be32(&buffer[8]);
2699         sdkp->opt_xfer_blocks = get_unaligned_be32(&buffer[12]);
2700
2701         if (buffer[3] == 0x3c) {
2702                 unsigned int lba_count, desc_count;
2703
2704                 sdkp->max_ws_blocks = (u32)get_unaligned_be64(&buffer[36]);
2705
2706                 if (!sdkp->lbpme)
2707                         goto out;
2708
2709                 lba_count = get_unaligned_be32(&buffer[20]);
2710                 desc_count = get_unaligned_be32(&buffer[24]);
2711
2712                 if (lba_count && desc_count)
2713                         sdkp->max_unmap_blocks = lba_count;
2714
2715                 sdkp->unmap_granularity = get_unaligned_be32(&buffer[28]);
2716
2717                 if (buffer[32] & 0x80)
2718                         sdkp->unmap_alignment =
2719                                 get_unaligned_be32(&buffer[32]) & ~(1 << 31);
2720
2721                 if (!sdkp->lbpvpd) { /* LBP VPD page not provided */
2722
2723                         if (sdkp->max_unmap_blocks)
2724                                 sd_config_discard(sdkp, SD_LBP_UNMAP);
2725                         else
2726                                 sd_config_discard(sdkp, SD_LBP_WS16);
2727
2728                 } else {        /* LBP VPD page tells us what to use */
2729                         if (sdkp->lbpu && sdkp->max_unmap_blocks && !sdkp->lbprz)
2730                                 sd_config_discard(sdkp, SD_LBP_UNMAP);
2731                         else if (sdkp->lbpws)
2732                                 sd_config_discard(sdkp, SD_LBP_WS16);
2733                         else if (sdkp->lbpws10)
2734                                 sd_config_discard(sdkp, SD_LBP_WS10);
2735                         else if (sdkp->lbpu && sdkp->max_unmap_blocks)
2736                                 sd_config_discard(sdkp, SD_LBP_UNMAP);
2737                         else
2738                                 sd_config_discard(sdkp, SD_LBP_DISABLE);
2739                 }
2740         }
2741
2742  out:
2743         kfree(buffer);
2744 }
2745
2746 /**
2747  * sd_read_block_characteristics - Query block dev. characteristics
2748  * @disk: disk to query
2749  */
2750 static void sd_read_block_characteristics(struct scsi_disk *sdkp)
2751 {
2752         unsigned char *buffer;
2753         u16 rot;
2754         const int vpd_len = 64;
2755
2756         buffer = kmalloc(vpd_len, GFP_KERNEL);
2757
2758         if (!buffer ||
2759             /* Block Device Characteristics VPD */
2760             scsi_get_vpd_page(sdkp->device, 0xb1, buffer, vpd_len))
2761                 goto out;
2762
2763         rot = get_unaligned_be16(&buffer[4]);
2764
2765         if (rot == 1) {
2766                 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, sdkp->disk->queue);
2767                 queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, sdkp->disk->queue);
2768         }
2769
2770  out:
2771         kfree(buffer);
2772 }
2773
2774 /**
2775  * sd_read_block_provisioning - Query provisioning VPD page
2776  * @disk: disk to query
2777  */
2778 static void sd_read_block_provisioning(struct scsi_disk *sdkp)
2779 {
2780         unsigned char *buffer;
2781         const int vpd_len = 8;
2782
2783         if (sdkp->lbpme == 0)
2784                 return;
2785
2786         buffer = kmalloc(vpd_len, GFP_KERNEL);
2787
2788         if (!buffer || scsi_get_vpd_page(sdkp->device, 0xb2, buffer, vpd_len))
2789                 goto out;
2790
2791         sdkp->lbpvpd    = 1;
2792         sdkp->lbpu      = (buffer[5] >> 7) & 1; /* UNMAP */
2793         sdkp->lbpws     = (buffer[5] >> 6) & 1; /* WRITE SAME(16) with UNMAP */
2794         sdkp->lbpws10   = (buffer[5] >> 5) & 1; /* WRITE SAME(10) with UNMAP */
2795
2796  out:
2797         kfree(buffer);
2798 }
2799
2800 static void sd_read_write_same(struct scsi_disk *sdkp, unsigned char *buffer)
2801 {
2802         struct scsi_device *sdev = sdkp->device;
2803
2804         if (sdev->host->no_write_same) {
2805                 sdev->no_write_same = 1;
2806
2807                 return;
2808         }
2809
2810         if (scsi_report_opcode(sdev, buffer, SD_BUF_SIZE, INQUIRY) < 0) {
2811                 /* too large values might cause issues with arcmsr */
2812                 int vpd_buf_len = 64;
2813
2814                 sdev->no_report_opcodes = 1;
2815
2816                 /* Disable WRITE SAME if REPORT SUPPORTED OPERATION
2817                  * CODES is unsupported and the device has an ATA
2818                  * Information VPD page (SAT).
2819                  */
2820                 if (!scsi_get_vpd_page(sdev, 0x89, buffer, vpd_buf_len))
2821                         sdev->no_write_same = 1;
2822         }
2823
2824         if (scsi_report_opcode(sdev, buffer, SD_BUF_SIZE, WRITE_SAME_16) == 1)
2825                 sdkp->ws16 = 1;
2826
2827         if (scsi_report_opcode(sdev, buffer, SD_BUF_SIZE, WRITE_SAME) == 1)
2828                 sdkp->ws10 = 1;
2829 }
2830
2831 /*
2832  * Determine the device's preferred I/O size for reads and writes
2833  * unless the reported value is unreasonably small, large, not a
2834  * multiple of the physical block size, or simply garbage.
2835  */
2836 static bool sd_validate_opt_xfer_size(struct scsi_disk *sdkp,
2837                                       unsigned int dev_max)
2838 {
2839         struct scsi_device *sdp = sdkp->device;
2840         unsigned int opt_xfer_bytes =
2841                 logical_to_bytes(sdp, sdkp->opt_xfer_blocks);
2842
2843         if (sdkp->opt_xfer_blocks == 0)
2844                 return false;
2845
2846         if (sdkp->opt_xfer_blocks > dev_max) {
2847                 sd_first_printk(KERN_WARNING, sdkp,
2848                                 "Optimal transfer size %u logical blocks " \
2849                                 "> dev_max (%u logical blocks)\n",
2850                                 sdkp->opt_xfer_blocks, dev_max);
2851                 return false;
2852         }
2853
2854         if (sdkp->opt_xfer_blocks > SD_DEF_XFER_BLOCKS) {
2855                 sd_first_printk(KERN_WARNING, sdkp,
2856                                 "Optimal transfer size %u logical blocks " \
2857                                 "> sd driver limit (%u logical blocks)\n",
2858                                 sdkp->opt_xfer_blocks, SD_DEF_XFER_BLOCKS);
2859                 return false;
2860         }
2861
2862         if (opt_xfer_bytes < PAGE_SIZE) {
2863                 sd_first_printk(KERN_WARNING, sdkp,
2864                                 "Optimal transfer size %u bytes < " \
2865                                 "PAGE_SIZE (%u bytes)\n",
2866                                 opt_xfer_bytes, (unsigned int)PAGE_SIZE);
2867                 return false;
2868         }
2869
2870         if (opt_xfer_bytes & (sdkp->physical_block_size - 1)) {
2871                 sd_first_printk(KERN_WARNING, sdkp,
2872                                 "Optimal transfer size %u bytes not a " \
2873                                 "multiple of physical block size (%u bytes)\n",
2874                                 opt_xfer_bytes, sdkp->physical_block_size);
2875                 return false;
2876         }
2877
2878         sd_first_printk(KERN_INFO, sdkp, "Optimal transfer size %u bytes\n",
2879                         opt_xfer_bytes);
2880         return true;
2881 }
2882
2883 /**
2884  *      sd_revalidate_disk - called the first time a new disk is seen,
2885  *      performs disk spin up, read_capacity, etc.
2886  *      @disk: struct gendisk we care about
2887  **/
2888 static int sd_revalidate_disk(struct gendisk *disk)
2889 {
2890         struct scsi_disk *sdkp = scsi_disk(disk);
2891         struct scsi_device *sdp = sdkp->device;
2892         struct request_queue *q = sdkp->disk->queue;
2893         unsigned char *buffer;
2894         unsigned int dev_max, rw_max;
2895
2896         SCSI_LOG_HLQUEUE(3, sd_printk(KERN_INFO, sdkp,
2897                                       "sd_revalidate_disk\n"));
2898
2899         /*
2900          * If the device is offline, don't try and read capacity or any
2901          * of the other niceties.
2902          */
2903         if (!scsi_device_online(sdp))
2904                 goto out;
2905
2906         buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL);
2907         if (!buffer) {
2908                 sd_printk(KERN_WARNING, sdkp, "sd_revalidate_disk: Memory "
2909                           "allocation failure.\n");
2910                 goto out;
2911         }
2912
2913         sd_spinup_disk(sdkp);
2914
2915         /*
2916          * Without media there is no reason to ask; moreover, some devices
2917          * react badly if we do.
2918          */
2919         if (sdkp->media_present) {
2920                 sd_read_capacity(sdkp, buffer);
2921
2922                 if (scsi_device_supports_vpd(sdp)) {
2923                         sd_read_block_provisioning(sdkp);
2924                         sd_read_block_limits(sdkp);
2925                         sd_read_block_characteristics(sdkp);
2926                 }
2927
2928                 sd_read_write_protect_flag(sdkp, buffer);
2929                 sd_read_cache_type(sdkp, buffer);
2930                 sd_read_app_tag_own(sdkp, buffer);
2931                 sd_read_write_same(sdkp, buffer);
2932         }
2933
2934         /*
2935          * We now have all cache related info, determine how we deal
2936          * with flush requests.
2937          */
2938         sd_set_flush_flag(sdkp);
2939
2940         /* Initial block count limit based on CDB TRANSFER LENGTH field size. */
2941         dev_max = sdp->use_16_for_rw ? SD_MAX_XFER_BLOCKS : SD_DEF_XFER_BLOCKS;
2942
2943         /* Some devices report a maximum block count for READ/WRITE requests. */
2944         dev_max = min_not_zero(dev_max, sdkp->max_xfer_blocks);
2945         q->limits.max_dev_sectors = logical_to_sectors(sdp, dev_max);
2946
2947         if (sd_validate_opt_xfer_size(sdkp, dev_max)) {
2948                 q->limits.io_opt = logical_to_bytes(sdp, sdkp->opt_xfer_blocks);
2949                 rw_max = logical_to_sectors(sdp, sdkp->opt_xfer_blocks);
2950         } else
2951                 rw_max = min_not_zero(logical_to_sectors(sdp, dev_max),
2952                                       (sector_t)BLK_DEF_MAX_SECTORS);
2953
2954         /* Do not exceed controller limit */
2955         rw_max = min(rw_max, queue_max_hw_sectors(q));
2956
2957         /*
2958          * Only update max_sectors if previously unset or if the current value
2959          * exceeds the capabilities of the hardware.
2960          */
2961         if (sdkp->first_scan ||
2962             q->limits.max_sectors > q->limits.max_dev_sectors ||
2963             q->limits.max_sectors > q->limits.max_hw_sectors)
2964                 q->limits.max_sectors = rw_max;
2965
2966         sdkp->first_scan = 0;
2967
2968         set_capacity(disk, logical_to_sectors(sdp, sdkp->capacity));
2969         sd_config_write_same(sdkp);
2970         kfree(buffer);
2971
2972  out:
2973         return 0;
2974 }
2975
2976 /**
2977  *      sd_unlock_native_capacity - unlock native capacity
2978  *      @disk: struct gendisk to set capacity for
2979  *
2980  *      Block layer calls this function if it detects that partitions
2981  *      on @disk reach beyond the end of the device.  If the SCSI host
2982  *      implements ->unlock_native_capacity() method, it's invoked to
2983  *      give it a chance to adjust the device capacity.
2984  *
2985  *      CONTEXT:
2986  *      Defined by block layer.  Might sleep.
2987  */
2988 static void sd_unlock_native_capacity(struct gendisk *disk)
2989 {
2990         struct scsi_device *sdev = scsi_disk(disk)->device;
2991
2992         if (sdev->host->hostt->unlock_native_capacity)
2993                 sdev->host->hostt->unlock_native_capacity(sdev);
2994 }
2995
2996 /**
2997  *      sd_format_disk_name - format disk name
2998  *      @prefix: name prefix - ie. "sd" for SCSI disks
2999  *      @index: index of the disk to format name for
3000  *      @buf: output buffer
3001  *      @buflen: length of the output buffer
3002  *
3003  *      SCSI disk names starts at sda.  The 26th device is sdz and the
3004  *      27th is sdaa.  The last one for two lettered suffix is sdzz
3005  *      which is followed by sdaaa.
3006  *
3007  *      This is basically 26 base counting with one extra 'nil' entry
3008  *      at the beginning from the second digit on and can be
3009  *      determined using similar method as 26 base conversion with the
3010  *      index shifted -1 after each digit is computed.
3011  *
3012  *      CONTEXT:
3013  *      Don't care.
3014  *
3015  *      RETURNS:
3016  *      0 on success, -errno on failure.
3017  */
3018 static int sd_format_disk_name(char *prefix, int index, char *buf, int buflen)
3019 {
3020         const int base = 'z' - 'a' + 1;
3021         char *begin = buf + strlen(prefix);
3022         char *end = buf + buflen;
3023         char *p;
3024         int unit;
3025
3026         p = end - 1;
3027         *p = '\0';
3028         unit = base;
3029         do {
3030                 if (p == begin)
3031                         return -EINVAL;
3032                 *--p = 'a' + (index % unit);
3033                 index = (index / unit) - 1;
3034         } while (index >= 0);
3035
3036         memmove(begin, p, end - p);
3037         memcpy(buf, prefix, strlen(prefix));
3038
3039         return 0;
3040 }
3041
3042 /*
3043  * The asynchronous part of sd_probe
3044  */
3045 static void sd_probe_async(void *data, async_cookie_t cookie)
3046 {
3047         struct scsi_disk *sdkp = data;
3048         struct scsi_device *sdp;
3049         struct gendisk *gd;
3050         u32 index;
3051         struct device *dev;
3052
3053         sdp = sdkp->device;
3054         gd = sdkp->disk;
3055         index = sdkp->index;
3056         dev = &sdp->sdev_gendev;
3057
3058         gd->major = sd_major((index & 0xf0) >> 4);
3059         gd->first_minor = ((index & 0xf) << 4) | (index & 0xfff00);
3060         gd->minors = SD_MINORS;
3061
3062         gd->fops = &sd_fops;
3063         gd->private_data = &sdkp->driver;
3064         gd->queue = sdkp->device->request_queue;
3065
3066         /* defaults, until the device tells us otherwise */
3067         sdp->sector_size = 512;
3068         sdkp->capacity = 0;
3069         sdkp->media_present = 1;
3070         sdkp->write_prot = 0;
3071         sdkp->cache_override = 0;
3072         sdkp->WCE = 0;
3073         sdkp->RCD = 0;
3074         sdkp->ATO = 0;
3075         sdkp->first_scan = 1;
3076         sdkp->max_medium_access_timeouts = SD_MAX_MEDIUM_TIMEOUTS;
3077
3078         sd_revalidate_disk(gd);
3079
3080         gd->flags = GENHD_FL_EXT_DEVT;
3081         if (sdp->removable) {
3082                 gd->flags |= GENHD_FL_REMOVABLE;
3083                 gd->events |= DISK_EVENT_MEDIA_CHANGE;
3084         }
3085
3086         blk_pm_runtime_init(sdp->request_queue, dev);
3087         device_add_disk(dev, gd);
3088         if (sdkp->capacity)
3089                 sd_dif_config_host(sdkp);
3090
3091         sd_revalidate_disk(gd);
3092
3093         sd_printk(KERN_NOTICE, sdkp, "Attached SCSI %sdisk\n",
3094                   sdp->removable ? "removable " : "");
3095         scsi_autopm_put_device(sdp);
3096         put_device(&sdkp->dev);
3097 }
3098
3099 /**
3100  *      sd_probe - called during driver initialization and whenever a
3101  *      new scsi device is attached to the system. It is called once
3102  *      for each scsi device (not just disks) present.
3103  *      @dev: pointer to device object
3104  *
3105  *      Returns 0 if successful (or not interested in this scsi device 
3106  *      (e.g. scanner)); 1 when there is an error.
3107  *
3108  *      Note: this function is invoked from the scsi mid-level.
3109  *      This function sets up the mapping between a given 
3110  *      <host,channel,id,lun> (found in sdp) and new device name 
3111  *      (e.g. /dev/sda). More precisely it is the block device major 
3112  *      and minor number that is chosen here.
3113  *
3114  *      Assume sd_probe is not re-entrant (for time being)
3115  *      Also think about sd_probe() and sd_remove() running coincidentally.
3116  **/
3117 static int sd_probe(struct device *dev)
3118 {
3119         struct scsi_device *sdp = to_scsi_device(dev);
3120         struct scsi_disk *sdkp;
3121         struct gendisk *gd;
3122         int index;
3123         int error;
3124
3125         scsi_autopm_get_device(sdp);
3126         error = -ENODEV;
3127         if (sdp->type != TYPE_DISK && sdp->type != TYPE_MOD && sdp->type != TYPE_RBC)
3128                 goto out;
3129
3130         SCSI_LOG_HLQUEUE(3, sdev_printk(KERN_INFO, sdp,
3131                                         "sd_probe\n"));
3132
3133         error = -ENOMEM;
3134         sdkp = kzalloc(sizeof(*sdkp), GFP_KERNEL);
3135         if (!sdkp)
3136                 goto out;
3137
3138         gd = alloc_disk(SD_MINORS);
3139         if (!gd)
3140                 goto out_free;
3141
3142         do {
3143                 if (!ida_pre_get(&sd_index_ida, GFP_KERNEL))
3144                         goto out_put;
3145
3146                 spin_lock(&sd_index_lock);
3147                 error = ida_get_new(&sd_index_ida, &index);
3148                 spin_unlock(&sd_index_lock);
3149         } while (error == -EAGAIN);
3150
3151         if (error) {
3152                 sdev_printk(KERN_WARNING, sdp, "sd_probe: memory exhausted.\n");
3153                 goto out_put;
3154         }
3155
3156         error = sd_format_disk_name("sd", index, gd->disk_name, DISK_NAME_LEN);
3157         if (error) {
3158                 sdev_printk(KERN_WARNING, sdp, "SCSI disk (sd) name length exceeded.\n");
3159                 goto out_free_index;
3160         }
3161
3162         sdkp->device = sdp;
3163         sdkp->driver = &sd_template;
3164         sdkp->disk = gd;
3165         sdkp->index = index;
3166         atomic_set(&sdkp->openers, 0);
3167         atomic_set(&sdkp->device->ioerr_cnt, 0);
3168
3169         if (!sdp->request_queue->rq_timeout) {
3170                 if (sdp->type != TYPE_MOD)
3171                         blk_queue_rq_timeout(sdp->request_queue, SD_TIMEOUT);
3172                 else
3173                         blk_queue_rq_timeout(sdp->request_queue,
3174                                              SD_MOD_TIMEOUT);
3175         }
3176
3177         device_initialize(&sdkp->dev);
3178         sdkp->dev.parent = dev;
3179         sdkp->dev.class = &sd_disk_class;
3180         dev_set_name(&sdkp->dev, "%s", dev_name(dev));
3181
3182         error = device_add(&sdkp->dev);
3183         if (error)
3184                 goto out_free_index;
3185
3186         get_device(dev);
3187         dev_set_drvdata(dev, sdkp);
3188
3189         get_device(&sdkp->dev); /* prevent release before async_schedule */
3190         async_schedule_domain(sd_probe_async, sdkp, &scsi_sd_probe_domain);
3191
3192         return 0;
3193
3194  out_free_index:
3195         spin_lock(&sd_index_lock);
3196         ida_remove(&sd_index_ida, index);
3197         spin_unlock(&sd_index_lock);
3198  out_put:
3199         put_disk(gd);
3200  out_free:
3201         kfree(sdkp);
3202  out:
3203         scsi_autopm_put_device(sdp);
3204         return error;
3205 }
3206
3207 /**
3208  *      sd_remove - called whenever a scsi disk (previously recognized by
3209  *      sd_probe) is detached from the system. It is called (potentially
3210  *      multiple times) during sd module unload.
3211  *      @sdp: pointer to mid level scsi device object
3212  *
3213  *      Note: this function is invoked from the scsi mid-level.
3214  *      This function potentially frees up a device name (e.g. /dev/sdc)
3215  *      that could be re-used by a subsequent sd_probe().
3216  *      This function is not called when the built-in sd driver is "exit-ed".
3217  **/
3218 static int sd_remove(struct device *dev)
3219 {
3220         struct scsi_disk *sdkp;
3221         dev_t devt;
3222
3223         sdkp = dev_get_drvdata(dev);
3224         devt = disk_devt(sdkp->disk);
3225         scsi_autopm_get_device(sdkp->device);
3226
3227         async_synchronize_full_domain(&scsi_sd_pm_domain);
3228         async_synchronize_full_domain(&scsi_sd_probe_domain);
3229         device_del(&sdkp->dev);
3230         del_gendisk(sdkp->disk);
3231         sd_shutdown(dev);
3232
3233         blk_register_region(devt, SD_MINORS, NULL,
3234                             sd_default_probe, NULL, NULL);
3235
3236         mutex_lock(&sd_ref_mutex);
3237         dev_set_drvdata(dev, NULL);
3238         put_device(&sdkp->dev);
3239         mutex_unlock(&sd_ref_mutex);
3240
3241         return 0;
3242 }
3243
3244 /**
3245  *      scsi_disk_release - Called to free the scsi_disk structure
3246  *      @dev: pointer to embedded class device
3247  *
3248  *      sd_ref_mutex must be held entering this routine.  Because it is
3249  *      called on last put, you should always use the scsi_disk_get()
3250  *      scsi_disk_put() helpers which manipulate the semaphore directly
3251  *      and never do a direct put_device.
3252  **/
3253 static void scsi_disk_release(struct device *dev)
3254 {
3255         struct scsi_disk *sdkp = to_scsi_disk(dev);
3256         struct gendisk *disk = sdkp->disk;
3257         struct request_queue *q = disk->queue;
3258
3259         spin_lock(&sd_index_lock);
3260         ida_remove(&sd_index_ida, sdkp->index);
3261         spin_unlock(&sd_index_lock);
3262
3263         /*
3264          * Wait until all requests that are in progress have completed.
3265          * This is necessary to avoid that e.g. scsi_end_request() crashes
3266          * due to clearing the disk->private_data pointer. Wait from inside
3267          * scsi_disk_release() instead of from sd_release() to avoid that
3268          * freezing and unfreezing the request queue affects user space I/O
3269          * in case multiple processes open a /dev/sd... node concurrently.
3270          */
3271         blk_mq_freeze_queue(q);
3272         blk_mq_unfreeze_queue(q);
3273
3274         disk->private_data = NULL;
3275         put_disk(disk);
3276         put_device(&sdkp->device->sdev_gendev);
3277
3278         kfree(sdkp);
3279 }
3280
3281 static int sd_start_stop_device(struct scsi_disk *sdkp, int start)
3282 {
3283         unsigned char cmd[6] = { START_STOP };  /* START_VALID */
3284         struct scsi_sense_hdr sshdr;
3285         struct scsi_device *sdp = sdkp->device;
3286         int res;
3287
3288         if (start)
3289                 cmd[4] |= 1;    /* START */
3290
3291         if (sdp->start_stop_pwr_cond)
3292                 cmd[4] |= start ? 1 << 4 : 3 << 4;      /* Active or Standby */
3293
3294         if (!scsi_device_online(sdp))
3295                 return -ENODEV;
3296
3297         res = scsi_execute_req_flags(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
3298                                SD_TIMEOUT, SD_MAX_RETRIES, NULL, REQ_PM);
3299         if (res) {
3300                 sd_print_result(sdkp, "Start/Stop Unit failed", res);
3301                 if (driver_byte(res) & DRIVER_SENSE)
3302                         sd_print_sense_hdr(sdkp, &sshdr);
3303                 if (scsi_sense_valid(&sshdr) &&
3304                         /* 0x3a is medium not present */
3305                         sshdr.asc == 0x3a)
3306                         res = 0;
3307         }
3308
3309         /* SCSI error codes must not go to the generic layer */
3310         if (res)
3311                 return -EIO;
3312
3313         return 0;
3314 }
3315
3316 /*
3317  * Send a SYNCHRONIZE CACHE instruction down to the device through
3318  * the normal SCSI command structure.  Wait for the command to
3319  * complete.
3320  */
3321 static void sd_shutdown(struct device *dev)
3322 {
3323         struct scsi_disk *sdkp = dev_get_drvdata(dev);
3324
3325         if (!sdkp)
3326                 return;         /* this can happen */
3327
3328         if (pm_runtime_suspended(dev))
3329                 return;
3330
3331         if (sdkp->WCE && sdkp->media_present) {
3332                 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
3333                 sd_sync_cache(sdkp);
3334         }
3335
3336         if (system_state != SYSTEM_RESTART && sdkp->device->manage_start_stop) {
3337                 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
3338                 sd_start_stop_device(sdkp, 0);
3339         }
3340 }
3341
3342 static int sd_suspend_common(struct device *dev, bool ignore_stop_errors)
3343 {
3344         struct scsi_disk *sdkp = dev_get_drvdata(dev);
3345         int ret = 0;
3346
3347         if (!sdkp)      /* E.g.: runtime suspend following sd_remove() */
3348                 return 0;
3349
3350         if (sdkp->WCE && sdkp->media_present) {
3351                 sd_printk(KERN_NOTICE, sdkp, "Synchronizing SCSI cache\n");
3352                 ret = sd_sync_cache(sdkp);
3353                 if (ret) {
3354                         /* ignore OFFLINE device */
3355                         if (ret == -ENODEV)
3356                                 ret = 0;
3357                         goto done;
3358                 }
3359         }
3360
3361         if (sdkp->device->manage_start_stop) {
3362                 sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n");
3363                 /* an error is not worth aborting a system sleep */
3364                 ret = sd_start_stop_device(sdkp, 0);
3365                 if (ignore_stop_errors)
3366                         ret = 0;
3367         }
3368
3369 done:
3370         return ret;
3371 }
3372
3373 static int sd_suspend_system(struct device *dev)
3374 {
3375         return sd_suspend_common(dev, true);
3376 }
3377
3378 static int sd_suspend_runtime(struct device *dev)
3379 {
3380         return sd_suspend_common(dev, false);
3381 }
3382
3383 static int sd_resume(struct device *dev)
3384 {
3385         struct scsi_disk *sdkp = dev_get_drvdata(dev);
3386
3387         if (!sdkp)      /* E.g.: runtime resume at the start of sd_probe() */
3388                 return 0;
3389
3390         if (!sdkp->device->manage_start_stop)
3391                 return 0;
3392
3393         sd_printk(KERN_NOTICE, sdkp, "Starting disk\n");
3394         return sd_start_stop_device(sdkp, 1);
3395 }
3396
3397 /**
3398  *      init_sd - entry point for this driver (both when built in or when
3399  *      a module).
3400  *
3401  *      Note: this function registers this driver with the scsi mid-level.
3402  **/
3403 static int __init init_sd(void)
3404 {
3405         int majors = 0, i, err;
3406
3407         SCSI_LOG_HLQUEUE(3, printk("init_sd: sd driver entry point\n"));
3408
3409         for (i = 0; i < SD_MAJORS; i++) {
3410                 if (register_blkdev(sd_major(i), "sd") != 0)
3411                         continue;
3412                 majors++;
3413                 blk_register_region(sd_major(i), SD_MINORS, NULL,
3414                                     sd_default_probe, NULL, NULL);
3415         }
3416
3417         if (!majors)
3418                 return -ENODEV;
3419
3420         err = class_register(&sd_disk_class);
3421         if (err)
3422                 goto err_out;
3423
3424         sd_cdb_cache = kmem_cache_create("sd_ext_cdb", SD_EXT_CDB_SIZE,
3425                                          0, 0, NULL);
3426         if (!sd_cdb_cache) {
3427                 printk(KERN_ERR "sd: can't init extended cdb cache\n");
3428                 err = -ENOMEM;
3429                 goto err_out_class;
3430         }
3431
3432         sd_cdb_pool = mempool_create_slab_pool(SD_MEMPOOL_SIZE, sd_cdb_cache);
3433         if (!sd_cdb_pool) {
3434                 printk(KERN_ERR "sd: can't init extended cdb pool\n");
3435                 err = -ENOMEM;
3436                 goto err_out_cache;
3437         }
3438
3439         err = scsi_register_driver(&sd_template.gendrv);
3440         if (err)
3441                 goto err_out_driver;
3442
3443         return 0;
3444
3445 err_out_driver:
3446         mempool_destroy(sd_cdb_pool);
3447
3448 err_out_cache:
3449         kmem_cache_destroy(sd_cdb_cache);
3450
3451 err_out_class:
3452         class_unregister(&sd_disk_class);
3453 err_out:
3454         for (i = 0; i < SD_MAJORS; i++)
3455                 unregister_blkdev(sd_major(i), "sd");
3456         return err;
3457 }
3458
3459 /**
3460  *      exit_sd - exit point for this driver (when it is a module).
3461  *
3462  *      Note: this function unregisters this driver from the scsi mid-level.
3463  **/
3464 static void __exit exit_sd(void)
3465 {
3466         int i;
3467
3468         SCSI_LOG_HLQUEUE(3, printk("exit_sd: exiting sd driver\n"));
3469
3470         scsi_unregister_driver(&sd_template.gendrv);
3471         mempool_destroy(sd_cdb_pool);
3472         kmem_cache_destroy(sd_cdb_cache);
3473
3474         class_unregister(&sd_disk_class);
3475
3476         for (i = 0; i < SD_MAJORS; i++) {
3477                 blk_unregister_region(sd_major(i), SD_MINORS);
3478                 unregister_blkdev(sd_major(i), "sd");
3479         }
3480 }
3481
3482 module_init(init_sd);
3483 module_exit(exit_sd);
3484
3485 static void sd_print_sense_hdr(struct scsi_disk *sdkp,
3486                                struct scsi_sense_hdr *sshdr)
3487 {
3488         scsi_print_sense_hdr(sdkp->device,
3489                              sdkp->disk ? sdkp->disk->disk_name : NULL, sshdr);
3490 }
3491
3492 static void sd_print_result(const struct scsi_disk *sdkp, const char *msg,
3493                             int result)
3494 {
3495         const char *hb_string = scsi_hostbyte_string(result);
3496         const char *db_string = scsi_driverbyte_string(result);
3497
3498         if (hb_string || db_string)
3499                 sd_printk(KERN_INFO, sdkp,
3500                           "%s: Result: hostbyte=%s driverbyte=%s\n", msg,
3501                           hb_string ? hb_string : "invalid",
3502                           db_string ? db_string : "invalid");
3503         else
3504                 sd_printk(KERN_INFO, sdkp,
3505                           "%s: Result: hostbyte=0x%02x driverbyte=0x%02x\n",
3506                           msg, host_byte(result), driver_byte(result));
3507 }
3508