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