Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * sr.c Copyright (C) 1992 David Giller |
| 3 | * Copyright (C) 1993, 1994, 1995, 1999 Eric Youngdale |
| 4 | * |
| 5 | * adapted from: |
| 6 | * sd.c Copyright (C) 1992 Drew Eckhardt |
| 7 | * Linux scsi disk driver by |
| 8 | * Drew Eckhardt <drew@colorado.edu> |
| 9 | * |
| 10 | * Modified by Eric Youngdale ericy@andante.org to |
| 11 | * add scatter-gather, multiple outstanding request, and other |
| 12 | * enhancements. |
| 13 | * |
| 14 | * Modified by Eric Youngdale eric@andante.org to support loadable |
| 15 | * low-level scsi drivers. |
| 16 | * |
| 17 | * Modified by Thomas Quinot thomas@melchior.cuivre.fdn.fr to |
| 18 | * provide auto-eject. |
| 19 | * |
| 20 | * Modified by Gerd Knorr <kraxel@cs.tu-berlin.de> to support the |
| 21 | * generic cdrom interface |
| 22 | * |
| 23 | * Modified by Jens Axboe <axboe@suse.de> - Uniform sr_packet() |
| 24 | * interface, capabilities probe additions, ioctl cleanups, etc. |
| 25 | * |
| 26 | * Modified by Richard Gooch <rgooch@atnf.csiro.au> to support devfs |
| 27 | * |
| 28 | * Modified by Jens Axboe <axboe@suse.de> - support DVD-RAM |
| 29 | * transparently and lose the GHOST hack |
| 30 | * |
| 31 | * Modified by Arnaldo Carvalho de Melo <acme@conectiva.com.br> |
| 32 | * check resource allocation in sr_init and some cleanups |
| 33 | */ |
| 34 | |
| 35 | #include <linux/module.h> |
| 36 | #include <linux/fs.h> |
| 37 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/mm.h> |
| 39 | #include <linux/bio.h> |
| 40 | #include <linux/string.h> |
| 41 | #include <linux/errno.h> |
| 42 | #include <linux/cdrom.h> |
| 43 | #include <linux/interrupt.h> |
| 44 | #include <linux/init.h> |
| 45 | #include <linux/blkdev.h> |
Arjan van de Ven | 0b95067 | 2006-01-11 13:16:10 +0100 | [diff] [blame] | 46 | #include <linux/mutex.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 47 | #include <linux/slab.h> |
Aaron Lu | 6c7f1e2 | 2013-01-23 15:09:31 +0800 | [diff] [blame] | 48 | #include <linux/pm_runtime.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <asm/uaccess.h> |
| 50 | |
| 51 | #include <scsi/scsi.h> |
| 52 | #include <scsi/scsi_dbg.h> |
| 53 | #include <scsi/scsi_device.h> |
| 54 | #include <scsi/scsi_driver.h> |
James Bottomley | 820732b | 2005-06-12 22:21:29 -0500 | [diff] [blame] | 55 | #include <scsi/scsi_cmnd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #include <scsi/scsi_eh.h> |
| 57 | #include <scsi/scsi_host.h> |
| 58 | #include <scsi/scsi_ioctl.h> /* For the door lock/unlock commands */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | #include "scsi_logging.h" |
| 61 | #include "sr.h" |
| 62 | |
| 63 | |
Rene Herman | f018fa5 | 2006-03-08 00:14:20 -0800 | [diff] [blame] | 64 | MODULE_DESCRIPTION("SCSI cdrom (sr) driver"); |
| 65 | MODULE_LICENSE("GPL"); |
| 66 | MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_CDROM_MAJOR); |
Michael Tokarev | d7b8bcb | 2006-10-27 16:02:37 +0400 | [diff] [blame] | 67 | MODULE_ALIAS_SCSI_DEVICE(TYPE_ROM); |
| 68 | MODULE_ALIAS_SCSI_DEVICE(TYPE_WORM); |
Rene Herman | f018fa5 | 2006-03-08 00:14:20 -0800 | [diff] [blame] | 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | #define SR_DISKS 256 |
| 71 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | #define SR_CAPABILITIES \ |
| 73 | (CDC_CLOSE_TRAY|CDC_OPEN_TRAY|CDC_LOCK|CDC_SELECT_SPEED| \ |
| 74 | CDC_SELECT_DISC|CDC_MULTI_SESSION|CDC_MCN|CDC_MEDIA_CHANGED| \ |
Christoph Hellwig | 6a2900b | 2006-03-23 03:00:15 -0800 | [diff] [blame] | 75 | CDC_PLAY_AUDIO|CDC_RESET|CDC_DRIVE_STATUS| \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | CDC_CD_R|CDC_CD_RW|CDC_DVD|CDC_DVD_R|CDC_DVD_RAM|CDC_GENERIC_PACKET| \ |
| 77 | CDC_MRW|CDC_MRW_W|CDC_RAM) |
| 78 | |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 79 | static DEFINE_MUTEX(sr_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | static int sr_probe(struct device *); |
| 81 | static int sr_remove(struct device *); |
Christoph Hellwig | a1b73fc | 2014-05-01 16:51:04 +0200 | [diff] [blame] | 82 | static int sr_init_command(struct scsi_cmnd *SCpnt); |
Linus Torvalds | 7b3d954 | 2008-01-06 10:17:12 -0800 | [diff] [blame] | 83 | static int sr_done(struct scsi_cmnd *); |
Aaron Lu | 6c7f1e2 | 2013-01-23 15:09:31 +0800 | [diff] [blame] | 84 | static int sr_runtime_suspend(struct device *dev); |
| 85 | |
Julia Lawall | a816b4c | 2016-08-28 22:17:38 +0200 | [diff] [blame] | 86 | static const struct dev_pm_ops sr_pm_ops = { |
Aaron Lu | 6c7f1e2 | 2013-01-23 15:09:31 +0800 | [diff] [blame] | 87 | .runtime_suspend = sr_runtime_suspend, |
| 88 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | static struct scsi_driver sr_template = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | .gendrv = { |
| 92 | .name = "sr", |
Christoph Hellwig | 3af6b35 | 2014-11-12 18:34:51 +0100 | [diff] [blame] | 93 | .owner = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | .probe = sr_probe, |
| 95 | .remove = sr_remove, |
Aaron Lu | 6c7f1e2 | 2013-01-23 15:09:31 +0800 | [diff] [blame] | 96 | .pm = &sr_pm_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | }, |
Christoph Hellwig | a1b73fc | 2014-05-01 16:51:04 +0200 | [diff] [blame] | 98 | .init_command = sr_init_command, |
Linus Torvalds | 7b3d954 | 2008-01-06 10:17:12 -0800 | [diff] [blame] | 99 | .done = sr_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | }; |
| 101 | |
| 102 | static unsigned long sr_index_bits[SR_DISKS / BITS_PER_LONG]; |
| 103 | static DEFINE_SPINLOCK(sr_index_lock); |
| 104 | |
| 105 | /* This semaphore is used to mediate the 0->1 reference get in the |
| 106 | * face of object destruction (i.e. we can't allow a get on an |
| 107 | * object after last put) */ |
Arjan van de Ven | 0b95067 | 2006-01-11 13:16:10 +0100 | [diff] [blame] | 108 | static DEFINE_MUTEX(sr_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
| 110 | static int sr_open(struct cdrom_device_info *, int); |
| 111 | static void sr_release(struct cdrom_device_info *); |
| 112 | |
| 113 | static void get_sectorsize(struct scsi_cd *); |
| 114 | static void get_capabilities(struct scsi_cd *); |
| 115 | |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 116 | static unsigned int sr_check_events(struct cdrom_device_info *cdi, |
| 117 | unsigned int clearing, int slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | static int sr_packet(struct cdrom_device_info *, struct packet_command *); |
| 119 | |
| 120 | static struct cdrom_device_ops sr_dops = { |
| 121 | .open = sr_open, |
| 122 | .release = sr_release, |
| 123 | .drive_status = sr_drive_status, |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 124 | .check_events = sr_check_events, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | .tray_move = sr_tray_move, |
| 126 | .lock_door = sr_lock_door, |
| 127 | .select_speed = sr_select_speed, |
| 128 | .get_last_session = sr_get_last_session, |
| 129 | .get_mcn = sr_get_mcn, |
| 130 | .reset = sr_reset, |
| 131 | .audio_ioctl = sr_audio_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | .capability = SR_CAPABILITIES, |
| 133 | .generic_packet = sr_packet, |
| 134 | }; |
| 135 | |
| 136 | static void sr_kref_release(struct kref *kref); |
| 137 | |
| 138 | static inline struct scsi_cd *scsi_cd(struct gendisk *disk) |
| 139 | { |
| 140 | return container_of(disk->private_data, struct scsi_cd, driver); |
| 141 | } |
| 142 | |
Aaron Lu | 6c7f1e2 | 2013-01-23 15:09:31 +0800 | [diff] [blame] | 143 | static int sr_runtime_suspend(struct device *dev) |
| 144 | { |
| 145 | struct scsi_cd *cd = dev_get_drvdata(dev); |
| 146 | |
Alan Stern | 13b4389 | 2016-01-20 11:26:01 -0500 | [diff] [blame] | 147 | if (!cd) /* E.g.: runtime suspend following sr_remove() */ |
| 148 | return 0; |
| 149 | |
Aaron Lu | 6c7f1e2 | 2013-01-23 15:09:31 +0800 | [diff] [blame] | 150 | if (cd->media_present) |
| 151 | return -EBUSY; |
| 152 | else |
| 153 | return 0; |
| 154 | } |
| 155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | /* |
| 157 | * The get and put routines for the struct scsi_cd. Note this entity |
| 158 | * has a scsi_device pointer and owns a reference to this. |
| 159 | */ |
| 160 | static inline struct scsi_cd *scsi_cd_get(struct gendisk *disk) |
| 161 | { |
| 162 | struct scsi_cd *cd = NULL; |
| 163 | |
Arjan van de Ven | 0b95067 | 2006-01-11 13:16:10 +0100 | [diff] [blame] | 164 | mutex_lock(&sr_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | if (disk->private_data == NULL) |
| 166 | goto out; |
| 167 | cd = scsi_cd(disk); |
| 168 | kref_get(&cd->kref); |
Aaron Lu | 6627b38 | 2013-10-28 15:27:49 +0800 | [diff] [blame] | 169 | if (scsi_device_get(cd->device)) { |
| 170 | kref_put(&cd->kref, sr_kref_release); |
| 171 | cd = NULL; |
| 172 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | out: |
Arjan van de Ven | 0b95067 | 2006-01-11 13:16:10 +0100 | [diff] [blame] | 174 | mutex_unlock(&sr_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | return cd; |
| 176 | } |
| 177 | |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 178 | static void scsi_cd_put(struct scsi_cd *cd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | { |
| 180 | struct scsi_device *sdev = cd->device; |
| 181 | |
Arjan van de Ven | 0b95067 | 2006-01-11 13:16:10 +0100 | [diff] [blame] | 182 | mutex_lock(&sr_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | kref_put(&cd->kref, sr_kref_release); |
| 184 | scsi_device_put(sdev); |
Arjan van de Ven | 0b95067 | 2006-01-11 13:16:10 +0100 | [diff] [blame] | 185 | mutex_unlock(&sr_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 188 | static unsigned int sr_get_events(struct scsi_device *sdev) |
| 189 | { |
| 190 | u8 buf[8]; |
| 191 | u8 cmd[] = { GET_EVENT_STATUS_NOTIFICATION, |
| 192 | 1, /* polled */ |
| 193 | 0, 0, /* reserved */ |
| 194 | 1 << 4, /* notification class: media */ |
| 195 | 0, 0, /* reserved */ |
| 196 | 0, sizeof(buf), /* allocation length */ |
| 197 | 0, /* control */ |
| 198 | }; |
| 199 | struct event_header *eh = (void *)buf; |
| 200 | struct media_event_desc *med = (void *)(buf + 4); |
| 201 | struct scsi_sense_hdr sshdr; |
| 202 | int result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 204 | result = scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buf, sizeof(buf), |
| 205 | &sshdr, SR_TIMEOUT, MAX_RETRIES, NULL); |
| 206 | if (scsi_sense_valid(&sshdr) && sshdr.sense_key == UNIT_ATTENTION) |
| 207 | return DISK_EVENT_MEDIA_CHANGE; |
| 208 | |
| 209 | if (result || be16_to_cpu(eh->data_len) < sizeof(*med)) |
| 210 | return 0; |
| 211 | |
| 212 | if (eh->nea || eh->notification_class != 0x4) |
| 213 | return 0; |
| 214 | |
| 215 | if (med->media_event_code == 1) |
| 216 | return DISK_EVENT_EJECT_REQUEST; |
| 217 | else if (med->media_event_code == 2) |
| 218 | return DISK_EVENT_MEDIA_CHANGE; |
| 219 | return 0; |
| 220 | } |
| 221 | |
| 222 | /* |
| 223 | * This function checks to see if the media has been changed or eject |
| 224 | * button has been pressed. It is possible that we have already |
| 225 | * sensed a change, or the drive may have sensed one and not yet |
| 226 | * reported it. The past events are accumulated in sdev->changed and |
| 227 | * returned together with the current state. |
| 228 | */ |
| 229 | static unsigned int sr_check_events(struct cdrom_device_info *cdi, |
| 230 | unsigned int clearing, int slot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | { |
| 232 | struct scsi_cd *cd = cdi->handle; |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 233 | bool last_present; |
| 234 | struct scsi_sense_hdr sshdr; |
| 235 | unsigned int events; |
| 236 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 238 | /* no changer support */ |
| 239 | if (CDSL_CURRENT != slot) |
| 240 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 242 | events = sr_get_events(cd->device); |
Kay Sievers | 79b9677 | 2011-06-30 15:03:48 +0200 | [diff] [blame] | 243 | cd->get_event_changed |= events & DISK_EVENT_MEDIA_CHANGE; |
| 244 | |
| 245 | /* |
| 246 | * If earlier GET_EVENT_STATUS_NOTIFICATION and TUR did not agree |
| 247 | * for several times in a row. We rely on TUR only for this likely |
| 248 | * broken device, to prevent generating incorrect media changed |
| 249 | * events for every open(). |
| 250 | */ |
| 251 | if (cd->ignore_get_event) { |
| 252 | events &= ~DISK_EVENT_MEDIA_CHANGE; |
| 253 | goto do_tur; |
| 254 | } |
| 255 | |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 256 | /* |
| 257 | * GET_EVENT_STATUS_NOTIFICATION is enough unless MEDIA_CHANGE |
| 258 | * is being cleared. Note that there are devices which hang |
| 259 | * if asked to execute TUR repeatedly. |
| 260 | */ |
Kay Sievers | 79b9677 | 2011-06-30 15:03:48 +0200 | [diff] [blame] | 261 | if (cd->device->changed) { |
| 262 | events |= DISK_EVENT_MEDIA_CHANGE; |
| 263 | cd->device->changed = 0; |
| 264 | cd->tur_changed = true; |
| 265 | } |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 266 | |
Kay Sievers | 79b9677 | 2011-06-30 15:03:48 +0200 | [diff] [blame] | 267 | if (!(clearing & DISK_EVENT_MEDIA_CHANGE)) |
| 268 | return events; |
| 269 | do_tur: |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 270 | /* let's see whether the media is there with TUR */ |
| 271 | last_present = cd->media_present; |
| 272 | ret = scsi_test_unit_ready(cd->device, SR_TIMEOUT, MAX_RETRIES, &sshdr); |
| 273 | |
Tejun Heo | 638428e | 2010-12-09 11:18:42 +0100 | [diff] [blame] | 274 | /* |
| 275 | * Media is considered to be present if TUR succeeds or fails with |
| 276 | * sense data indicating something other than media-not-present |
| 277 | * (ASC 0x3a). |
| 278 | */ |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 279 | cd->media_present = scsi_status_is_good(ret) || |
| 280 | (scsi_sense_valid(&sshdr) && sshdr.asc != 0x3a); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 282 | if (last_present != cd->media_present) |
Kay Sievers | 79b9677 | 2011-06-30 15:03:48 +0200 | [diff] [blame] | 283 | cd->device->changed = 1; |
| 284 | |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 285 | if (cd->device->changed) { |
| 286 | events |= DISK_EVENT_MEDIA_CHANGE; |
| 287 | cd->device->changed = 0; |
Kay Sievers | 79b9677 | 2011-06-30 15:03:48 +0200 | [diff] [blame] | 288 | cd->tur_changed = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | } |
Kay Sievers | 285e967 | 2007-08-14 14:10:39 +0200 | [diff] [blame] | 290 | |
Kay Sievers | 79b9677 | 2011-06-30 15:03:48 +0200 | [diff] [blame] | 291 | if (cd->ignore_get_event) |
| 292 | return events; |
| 293 | |
| 294 | /* check whether GET_EVENT is reporting spurious MEDIA_CHANGE */ |
| 295 | if (!cd->tur_changed) { |
| 296 | if (cd->get_event_changed) { |
| 297 | if (cd->tur_mismatch++ > 8) { |
Hannes Reinecke | 96eefad | 2014-06-25 16:39:54 +0200 | [diff] [blame] | 298 | sr_printk(KERN_WARNING, cd, |
| 299 | "GET_EVENT and TUR disagree continuously, suppress GET_EVENT events\n"); |
Kay Sievers | 79b9677 | 2011-06-30 15:03:48 +0200 | [diff] [blame] | 300 | cd->ignore_get_event = true; |
| 301 | } |
| 302 | } else { |
| 303 | cd->tur_mismatch = 0; |
| 304 | } |
| 305 | } |
| 306 | cd->tur_changed = false; |
| 307 | cd->get_event_changed = false; |
| 308 | |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 309 | return events; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | /* |
Linus Torvalds | 7b3d954 | 2008-01-06 10:17:12 -0800 | [diff] [blame] | 313 | * sr_done is the interrupt routine for the device driver. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | * |
Linus Torvalds | 7b3d954 | 2008-01-06 10:17:12 -0800 | [diff] [blame] | 315 | * It will be notified on the end of a SCSI read / write, and will take one |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | * of several actions based on success or failure. |
| 317 | */ |
Linus Torvalds | 7b3d954 | 2008-01-06 10:17:12 -0800 | [diff] [blame] | 318 | static int sr_done(struct scsi_cmnd *SCpnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | { |
| 320 | int result = SCpnt->result; |
Boaz Harrosh | 30b0c37 | 2007-12-13 13:47:40 +0200 | [diff] [blame] | 321 | int this_count = scsi_bufflen(SCpnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | int good_bytes = (result == 0 ? this_count : 0); |
| 323 | int block_sectors = 0; |
| 324 | long error_sector; |
| 325 | struct scsi_cd *cd = scsi_cd(SCpnt->request->rq_disk); |
| 326 | |
| 327 | #ifdef DEBUG |
Hannes Reinecke | 96eefad | 2014-06-25 16:39:54 +0200 | [diff] [blame] | 328 | scmd_printk(KERN_INFO, SCpnt, "done: %x\n", result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | #endif |
| 330 | |
| 331 | /* |
| 332 | * Handle MEDIUM ERRORs or VOLUME OVERFLOWs that indicate partial |
| 333 | * success. Since this is a relatively rare error condition, no |
| 334 | * care is taken to avoid unnecessary additional work such as |
| 335 | * memcpy's that could be avoided. |
| 336 | */ |
| 337 | if (driver_byte(result) != 0 && /* An error occurred */ |
| 338 | (SCpnt->sense_buffer[0] & 0x7f) == 0x70) { /* Sense current */ |
| 339 | switch (SCpnt->sense_buffer[2]) { |
| 340 | case MEDIUM_ERROR: |
| 341 | case VOLUME_OVERFLOW: |
| 342 | case ILLEGAL_REQUEST: |
| 343 | if (!(SCpnt->sense_buffer[0] & 0x90)) |
| 344 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | error_sector = (SCpnt->sense_buffer[3] << 24) | |
| 346 | (SCpnt->sense_buffer[4] << 16) | |
| 347 | (SCpnt->sense_buffer[5] << 8) | |
| 348 | SCpnt->sense_buffer[6]; |
| 349 | if (SCpnt->request->bio != NULL) |
| 350 | block_sectors = |
| 351 | bio_sectors(SCpnt->request->bio); |
| 352 | if (block_sectors < 4) |
| 353 | block_sectors = 4; |
| 354 | if (cd->device->sector_size == 2048) |
| 355 | error_sector <<= 2; |
| 356 | error_sector &= ~(block_sectors - 1); |
Tejun Heo | 83096eb | 2009-05-07 22:24:39 +0900 | [diff] [blame] | 357 | good_bytes = (error_sector - |
| 358 | blk_rq_pos(SCpnt->request)) << 9; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | if (good_bytes < 0 || good_bytes >= this_count) |
| 360 | good_bytes = 0; |
| 361 | /* |
| 362 | * The SCSI specification allows for the value |
| 363 | * returned by READ CAPACITY to be up to 75 2K |
| 364 | * sectors past the last readable block. |
| 365 | * Therefore, if we hit a medium error within the |
| 366 | * last 75 2K sectors, we decrease the saved size |
| 367 | * value. |
| 368 | */ |
| 369 | if (error_sector < get_capacity(cd->disk) && |
| 370 | cd->capacity - error_sector < 4 * 75) |
| 371 | set_capacity(cd->disk, error_sector); |
| 372 | break; |
| 373 | |
| 374 | case RECOVERED_ERROR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | good_bytes = this_count; |
| 376 | break; |
| 377 | |
| 378 | default: |
| 379 | break; |
| 380 | } |
| 381 | } |
| 382 | |
Linus Torvalds | 7b3d954 | 2008-01-06 10:17:12 -0800 | [diff] [blame] | 383 | return good_bytes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | } |
| 385 | |
Christoph Hellwig | a1b73fc | 2014-05-01 16:51:04 +0200 | [diff] [blame] | 386 | static int sr_init_command(struct scsi_cmnd *SCpnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | { |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 388 | int block = 0, this_count, s_size; |
James Bottomley | 7f9a6bc | 2007-08-04 10:06:25 -0500 | [diff] [blame] | 389 | struct scsi_cd *cd; |
Christoph Hellwig | a1b73fc | 2014-05-01 16:51:04 +0200 | [diff] [blame] | 390 | struct request *rq = SCpnt->request; |
James Bottomley | 7f9a6bc | 2007-08-04 10:06:25 -0500 | [diff] [blame] | 391 | int ret; |
| 392 | |
Christoph Hellwig | 3c356bd | 2014-09-05 18:20:23 -0700 | [diff] [blame] | 393 | ret = scsi_init_io(SCpnt); |
James Bottomley | 7f9a6bc | 2007-08-04 10:06:25 -0500 | [diff] [blame] | 394 | if (ret != BLKPREP_OK) |
| 395 | goto out; |
| 396 | SCpnt = rq->special; |
| 397 | cd = scsi_cd(rq->rq_disk); |
| 398 | |
| 399 | /* from here on until we're complete, any goto out |
| 400 | * is used for a killable error condition */ |
| 401 | ret = BLKPREP_KILL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | |
Hannes Reinecke | 96eefad | 2014-06-25 16:39:54 +0200 | [diff] [blame] | 403 | SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO, SCpnt, |
| 404 | "Doing sr request, block = %d\n", block)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | |
| 406 | if (!cd->device || !scsi_device_online(cd->device)) { |
Hannes Reinecke | 96eefad | 2014-06-25 16:39:54 +0200 | [diff] [blame] | 407 | SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt, |
| 408 | "Finishing %u sectors\n", blk_rq_sectors(rq))); |
| 409 | SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt, |
| 410 | "Retry with 0x%p\n", SCpnt)); |
James Bottomley | 7f9a6bc | 2007-08-04 10:06:25 -0500 | [diff] [blame] | 411 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | } |
| 413 | |
| 414 | if (cd->device->changed) { |
| 415 | /* |
| 416 | * quietly refuse to do anything to a changed disc until the |
| 417 | * changed bit has been reset |
| 418 | */ |
James Bottomley | 7f9a6bc | 2007-08-04 10:06:25 -0500 | [diff] [blame] | 419 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | * we do lazy blocksize switching (when reading XA sectors, |
| 424 | * see CDROMREADMODE2 ioctl) |
| 425 | */ |
| 426 | s_size = cd->device->sector_size; |
| 427 | if (s_size > 2048) { |
| 428 | if (!in_interrupt()) |
| 429 | sr_set_blocklength(cd, 2048); |
| 430 | else |
Hannes Reinecke | 96eefad | 2014-06-25 16:39:54 +0200 | [diff] [blame] | 431 | scmd_printk(KERN_INFO, SCpnt, |
| 432 | "can't switch blocksize: in interrupt\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | } |
| 434 | |
| 435 | if (s_size != 512 && s_size != 1024 && s_size != 2048) { |
Jeff Garzik | 3bf743e | 2005-10-24 18:04:06 -0400 | [diff] [blame] | 436 | scmd_printk(KERN_ERR, SCpnt, "bad sector size %d\n", s_size); |
James Bottomley | 7f9a6bc | 2007-08-04 10:06:25 -0500 | [diff] [blame] | 437 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | } |
| 439 | |
James Bottomley | 7f9a6bc | 2007-08-04 10:06:25 -0500 | [diff] [blame] | 440 | if (rq_data_dir(rq) == WRITE) { |
Christoph Hellwig | fd2eb90 | 2014-07-18 16:59:19 +0200 | [diff] [blame] | 441 | if (!cd->writeable) |
James Bottomley | 7f9a6bc | 2007-08-04 10:06:25 -0500 | [diff] [blame] | 442 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | SCpnt->cmnd[0] = WRITE_10; |
Hannes Reinecke | 96eefad | 2014-06-25 16:39:54 +0200 | [diff] [blame] | 444 | cd->cdi.media_written = 1; |
James Bottomley | 7f9a6bc | 2007-08-04 10:06:25 -0500 | [diff] [blame] | 445 | } else if (rq_data_dir(rq) == READ) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | SCpnt->cmnd[0] = READ_10; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | } else { |
James Bottomley | 7f9a6bc | 2007-08-04 10:06:25 -0500 | [diff] [blame] | 448 | blk_dump_rq_flags(rq, "Unknown sr command"); |
| 449 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | } |
| 451 | |
| 452 | { |
Boaz Harrosh | 30b0c37 | 2007-12-13 13:47:40 +0200 | [diff] [blame] | 453 | struct scatterlist *sg; |
| 454 | int i, size = 0, sg_count = scsi_sg_count(SCpnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | |
Boaz Harrosh | 30b0c37 | 2007-12-13 13:47:40 +0200 | [diff] [blame] | 456 | scsi_for_each_sg(SCpnt, sg, sg_count, i) |
| 457 | size += sg->length; |
| 458 | |
| 459 | if (size != scsi_bufflen(SCpnt)) { |
Jeff Garzik | 3bf743e | 2005-10-24 18:04:06 -0400 | [diff] [blame] | 460 | scmd_printk(KERN_ERR, SCpnt, |
| 461 | "mismatch count %d, bytes %d\n", |
Boaz Harrosh | 30b0c37 | 2007-12-13 13:47:40 +0200 | [diff] [blame] | 462 | size, scsi_bufflen(SCpnt)); |
| 463 | if (scsi_bufflen(SCpnt) > size) |
| 464 | SCpnt->sdb.length = size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | } |
| 466 | } |
| 467 | |
| 468 | /* |
| 469 | * request doesn't start on hw block boundary, add scatter pads |
| 470 | */ |
Tejun Heo | 83096eb | 2009-05-07 22:24:39 +0900 | [diff] [blame] | 471 | if (((unsigned int)blk_rq_pos(rq) % (s_size >> 9)) || |
Boaz Harrosh | 30b0c37 | 2007-12-13 13:47:40 +0200 | [diff] [blame] | 472 | (scsi_bufflen(SCpnt) % s_size)) { |
Jeff Garzik | 3bf743e | 2005-10-24 18:04:06 -0400 | [diff] [blame] | 473 | scmd_printk(KERN_NOTICE, SCpnt, "unaligned transfer\n"); |
James Bottomley | 7f9a6bc | 2007-08-04 10:06:25 -0500 | [diff] [blame] | 474 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | } |
| 476 | |
Boaz Harrosh | 30b0c37 | 2007-12-13 13:47:40 +0200 | [diff] [blame] | 477 | this_count = (scsi_bufflen(SCpnt) >> 9) / (s_size >> 9); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | |
| 479 | |
Hannes Reinecke | 96eefad | 2014-06-25 16:39:54 +0200 | [diff] [blame] | 480 | SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt, |
| 481 | "%s %d/%u 512 byte blocks.\n", |
| 482 | (rq_data_dir(rq) == WRITE) ? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | "writing" : "reading", |
Hannes Reinecke | 96eefad | 2014-06-25 16:39:54 +0200 | [diff] [blame] | 484 | this_count, blk_rq_sectors(rq))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | |
| 486 | SCpnt->cmnd[1] = 0; |
Tejun Heo | 83096eb | 2009-05-07 22:24:39 +0900 | [diff] [blame] | 487 | block = (unsigned int)blk_rq_pos(rq) / (s_size >> 9); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | |
| 489 | if (this_count > 0xffff) { |
| 490 | this_count = 0xffff; |
Boaz Harrosh | 30b0c37 | 2007-12-13 13:47:40 +0200 | [diff] [blame] | 491 | SCpnt->sdb.length = this_count * s_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff; |
| 495 | SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff; |
| 496 | SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff; |
| 497 | SCpnt->cmnd[5] = (unsigned char) block & 0xff; |
| 498 | SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0; |
| 499 | SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff; |
| 500 | SCpnt->cmnd[8] = (unsigned char) this_count & 0xff; |
| 501 | |
| 502 | /* |
| 503 | * We shouldn't disconnect in the middle of a sector, so with a dumb |
| 504 | * host adapter, it's safe to assume that we can at least transfer |
| 505 | * this many bytes between each connect / disconnect. |
| 506 | */ |
| 507 | SCpnt->transfersize = cd->device->sector_size; |
| 508 | SCpnt->underflow = this_count << 9; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | SCpnt->allowed = MAX_RETRIES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | |
| 511 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | * This indicates that the command is ready from our end to be |
| 513 | * queued. |
| 514 | */ |
James Bottomley | 7f9a6bc | 2007-08-04 10:06:25 -0500 | [diff] [blame] | 515 | ret = BLKPREP_OK; |
| 516 | out: |
Christoph Hellwig | a1b73fc | 2014-05-01 16:51:04 +0200 | [diff] [blame] | 517 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | } |
| 519 | |
Al Viro | 40cc51b | 2008-03-02 10:41:28 -0500 | [diff] [blame] | 520 | static int sr_block_open(struct block_device *bdev, fmode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | { |
Arnd Bergmann | 6e9624b | 2010-08-07 18:25:34 +0200 | [diff] [blame] | 522 | struct scsi_cd *cd; |
Bart Van Assche | bcf447f | 2018-08-02 10:44:42 -0700 | [diff] [blame] | 523 | struct scsi_device *sdev; |
Al Viro | 40cc51b | 2008-03-02 10:41:28 -0500 | [diff] [blame] | 524 | int ret = -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
Bart Van Assche | bcf447f | 2018-08-02 10:44:42 -0700 | [diff] [blame] | 526 | cd = scsi_cd_get(bdev->bd_disk); |
| 527 | if (!cd) |
| 528 | goto out; |
| 529 | |
| 530 | sdev = cd->device; |
| 531 | scsi_autopm_get_device(sdev); |
Maurizio Lombardi | 94ee9a4 | 2018-03-09 13:59:06 +0100 | [diff] [blame] | 532 | check_disk_change(bdev); |
| 533 | |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 534 | mutex_lock(&sr_mutex); |
Bart Van Assche | bcf447f | 2018-08-02 10:44:42 -0700 | [diff] [blame] | 535 | ret = cdrom_open(&cd->cdi, bdev, mode); |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 536 | mutex_unlock(&sr_mutex); |
Bart Van Assche | bcf447f | 2018-08-02 10:44:42 -0700 | [diff] [blame] | 537 | |
| 538 | scsi_autopm_put_device(sdev); |
| 539 | if (ret) |
| 540 | scsi_cd_put(cd); |
| 541 | |
| 542 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | return ret; |
| 544 | } |
| 545 | |
Al Viro | db2a144 | 2013-05-05 21:52:57 -0400 | [diff] [blame] | 546 | static void sr_block_release(struct gendisk *disk, fmode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | { |
Al Viro | 40cc51b | 2008-03-02 10:41:28 -0500 | [diff] [blame] | 548 | struct scsi_cd *cd = scsi_cd(disk); |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 549 | mutex_lock(&sr_mutex); |
Al Viro | 40cc51b | 2008-03-02 10:41:28 -0500 | [diff] [blame] | 550 | cdrom_release(&cd->cdi, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | scsi_cd_put(cd); |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 552 | mutex_unlock(&sr_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | } |
| 554 | |
Al Viro | 40cc51b | 2008-03-02 10:41:28 -0500 | [diff] [blame] | 555 | static int sr_block_ioctl(struct block_device *bdev, fmode_t mode, unsigned cmd, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | unsigned long arg) |
| 557 | { |
Al Viro | 40cc51b | 2008-03-02 10:41:28 -0500 | [diff] [blame] | 558 | struct scsi_cd *cd = scsi_cd(bdev->bd_disk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | struct scsi_device *sdev = cd->device; |
Christoph Hellwig | 6a2900b | 2006-03-23 03:00:15 -0800 | [diff] [blame] | 560 | void __user *argp = (void __user *)arg; |
| 561 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 563 | mutex_lock(&sr_mutex); |
Arnd Bergmann | 8a6cfeb | 2010-07-08 10:18:46 +0200 | [diff] [blame] | 564 | |
Christoph Hellwig | 906d15f | 2014-10-11 16:25:31 +0200 | [diff] [blame] | 565 | ret = scsi_ioctl_block_when_processing_errors(sdev, cmd, |
| 566 | (mode & FMODE_NDELAY) != 0); |
| 567 | if (ret) |
| 568 | goto out; |
| 569 | |
Bart Van Assche | bcf447f | 2018-08-02 10:44:42 -0700 | [diff] [blame] | 570 | scsi_autopm_get_device(sdev); |
| 571 | |
Christoph Hellwig | 6a2900b | 2006-03-23 03:00:15 -0800 | [diff] [blame] | 572 | /* |
| 573 | * Send SCSI addressing ioctls directly to mid level, send other |
| 574 | * ioctls to cdrom/block level. |
| 575 | */ |
| 576 | switch (cmd) { |
| 577 | case SCSI_IOCTL_GET_IDLUN: |
| 578 | case SCSI_IOCTL_GET_BUS_NUMBER: |
Arnd Bergmann | 8a6cfeb | 2010-07-08 10:18:46 +0200 | [diff] [blame] | 579 | ret = scsi_ioctl(sdev, cmd, argp); |
Bart Van Assche | bcf447f | 2018-08-02 10:44:42 -0700 | [diff] [blame] | 580 | goto put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | } |
Christoph Hellwig | 6a2900b | 2006-03-23 03:00:15 -0800 | [diff] [blame] | 582 | |
Al Viro | 40cc51b | 2008-03-02 10:41:28 -0500 | [diff] [blame] | 583 | ret = cdrom_ioctl(&cd->cdi, bdev, mode, cmd, arg); |
Tejun Heo | 6397256 | 2007-01-02 17:41:04 +0900 | [diff] [blame] | 584 | if (ret != -ENOSYS) |
Bart Van Assche | bcf447f | 2018-08-02 10:44:42 -0700 | [diff] [blame] | 585 | goto put; |
Christoph Hellwig | 6a2900b | 2006-03-23 03:00:15 -0800 | [diff] [blame] | 586 | |
Arnd Bergmann | 8a6cfeb | 2010-07-08 10:18:46 +0200 | [diff] [blame] | 587 | ret = scsi_ioctl(sdev, cmd, argp); |
| 588 | |
Bart Van Assche | bcf447f | 2018-08-02 10:44:42 -0700 | [diff] [blame] | 589 | put: |
| 590 | scsi_autopm_put_device(sdev); |
| 591 | |
Arnd Bergmann | 8a6cfeb | 2010-07-08 10:18:46 +0200 | [diff] [blame] | 592 | out: |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 593 | mutex_unlock(&sr_mutex); |
Arnd Bergmann | 8a6cfeb | 2010-07-08 10:18:46 +0200 | [diff] [blame] | 594 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | } |
| 596 | |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 597 | static unsigned int sr_block_check_events(struct gendisk *disk, |
| 598 | unsigned int clearing) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | { |
Jens Axboe | b2666b2 | 2018-04-11 11:26:09 -0600 | [diff] [blame] | 600 | unsigned int ret = 0; |
| 601 | struct scsi_cd *cd; |
Aaron Lu | 6c7f1e2 | 2013-01-23 15:09:31 +0800 | [diff] [blame] | 602 | |
Jens Axboe | b2666b2 | 2018-04-11 11:26:09 -0600 | [diff] [blame] | 603 | cd = scsi_cd_get(disk); |
| 604 | if (!cd) |
Aaron Lu | 6627b38 | 2013-10-28 15:27:49 +0800 | [diff] [blame] | 605 | return 0; |
Aaron Lu | 6c7f1e2 | 2013-01-23 15:09:31 +0800 | [diff] [blame] | 606 | |
Jens Axboe | b2666b2 | 2018-04-11 11:26:09 -0600 | [diff] [blame] | 607 | if (!atomic_read(&cd->device->disk_events_disable_depth)) |
| 608 | ret = cdrom_check_events(&cd->cdi, clearing); |
| 609 | |
| 610 | scsi_cd_put(cd); |
| 611 | return ret; |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 612 | } |
| 613 | |
| 614 | static int sr_block_revalidate_disk(struct gendisk *disk) |
| 615 | { |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 616 | struct scsi_sense_hdr sshdr; |
Jens Axboe | b2666b2 | 2018-04-11 11:26:09 -0600 | [diff] [blame] | 617 | struct scsi_cd *cd; |
| 618 | |
| 619 | cd = scsi_cd_get(disk); |
| 620 | if (!cd) |
| 621 | return -ENXIO; |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 622 | |
| 623 | /* if the unit is not ready, nothing more to do */ |
| 624 | if (scsi_test_unit_ready(cd->device, SR_TIMEOUT, MAX_RETRIES, &sshdr)) |
Aaron Lu | 6c7f1e2 | 2013-01-23 15:09:31 +0800 | [diff] [blame] | 625 | goto out; |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 626 | |
| 627 | sr_cd_check(&cd->cdi); |
| 628 | get_sectorsize(cd); |
Aaron Lu | 6c7f1e2 | 2013-01-23 15:09:31 +0800 | [diff] [blame] | 629 | out: |
Jens Axboe | b2666b2 | 2018-04-11 11:26:09 -0600 | [diff] [blame] | 630 | scsi_cd_put(cd); |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 631 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | } |
| 633 | |
Alexey Dobriyan | 83d5cde | 2009-09-21 17:01:13 -0700 | [diff] [blame] | 634 | static const struct block_device_operations sr_bdops = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | { |
| 636 | .owner = THIS_MODULE, |
Al Viro | 40cc51b | 2008-03-02 10:41:28 -0500 | [diff] [blame] | 637 | .open = sr_block_open, |
| 638 | .release = sr_block_release, |
Arnd Bergmann | 8a6cfeb | 2010-07-08 10:18:46 +0200 | [diff] [blame] | 639 | .ioctl = sr_block_ioctl, |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 640 | .check_events = sr_block_check_events, |
| 641 | .revalidate_disk = sr_block_revalidate_disk, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | /* |
| 643 | * No compat_ioctl for now because sr_block_ioctl never |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 644 | * seems to pass arbitrary ioctls down to host drivers. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | */ |
| 646 | }; |
| 647 | |
| 648 | static int sr_open(struct cdrom_device_info *cdi, int purpose) |
| 649 | { |
| 650 | struct scsi_cd *cd = cdi->handle; |
| 651 | struct scsi_device *sdev = cd->device; |
| 652 | int retval; |
| 653 | |
| 654 | /* |
| 655 | * If the device is in error recovery, wait until it is done. |
| 656 | * If the device is offline, then disallow any access to it. |
| 657 | */ |
| 658 | retval = -ENXIO; |
| 659 | if (!scsi_block_when_processing_errors(sdev)) |
| 660 | goto error_out; |
| 661 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | return 0; |
| 663 | |
| 664 | error_out: |
| 665 | return retval; |
| 666 | } |
| 667 | |
| 668 | static void sr_release(struct cdrom_device_info *cdi) |
| 669 | { |
| 670 | struct scsi_cd *cd = cdi->handle; |
| 671 | |
| 672 | if (cd->device->sector_size > 2048) |
| 673 | sr_set_blocklength(cd, 2048); |
| 674 | |
| 675 | } |
| 676 | |
| 677 | static int sr_probe(struct device *dev) |
| 678 | { |
| 679 | struct scsi_device *sdev = to_scsi_device(dev); |
| 680 | struct gendisk *disk; |
| 681 | struct scsi_cd *cd; |
| 682 | int minor, error; |
| 683 | |
Subhash Jadavani | 6fe8c1d | 2014-09-10 14:54:09 +0300 | [diff] [blame] | 684 | scsi_autopm_get_device(sdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | error = -ENODEV; |
| 686 | if (sdev->type != TYPE_ROM && sdev->type != TYPE_WORM) |
| 687 | goto fail; |
| 688 | |
| 689 | error = -ENOMEM; |
Jes Sorensen | 24669f75 | 2006-01-16 10:31:18 -0500 | [diff] [blame] | 690 | cd = kzalloc(sizeof(*cd), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | if (!cd) |
| 692 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | |
| 694 | kref_init(&cd->kref); |
| 695 | |
| 696 | disk = alloc_disk(1); |
| 697 | if (!disk) |
| 698 | goto fail_free; |
| 699 | |
| 700 | spin_lock(&sr_index_lock); |
| 701 | minor = find_first_zero_bit(sr_index_bits, SR_DISKS); |
| 702 | if (minor == SR_DISKS) { |
| 703 | spin_unlock(&sr_index_lock); |
| 704 | error = -EBUSY; |
| 705 | goto fail_put; |
| 706 | } |
| 707 | __set_bit(minor, sr_index_bits); |
| 708 | spin_unlock(&sr_index_lock); |
| 709 | |
| 710 | disk->major = SCSI_CDROM_MAJOR; |
| 711 | disk->first_minor = minor; |
| 712 | sprintf(disk->disk_name, "sr%d", minor); |
| 713 | disk->fops = &sr_bdops; |
Tejun Heo | d4dc210 | 2011-04-21 20:54:46 +0200 | [diff] [blame] | 714 | disk->flags = GENHD_FL_CD | GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE; |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 715 | disk->events = DISK_EVENT_MEDIA_CHANGE | DISK_EVENT_EJECT_REQUEST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 717 | blk_queue_rq_timeout(sdev->request_queue, SR_TIMEOUT); |
| 718 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | cd->device = sdev; |
| 720 | cd->disk = disk; |
| 721 | cd->driver = &sr_template; |
| 722 | cd->disk = disk; |
| 723 | cd->capacity = 0x1fffff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | cd->device->changed = 1; /* force recheck CD type */ |
Tejun Heo | 93aae17 | 2010-12-16 17:52:17 +0100 | [diff] [blame] | 725 | cd->media_present = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | cd->use = 1; |
| 727 | cd->readcd_known = 0; |
| 728 | cd->readcd_cdda = 0; |
| 729 | |
| 730 | cd->cdi.ops = &sr_dops; |
| 731 | cd->cdi.handle = cd; |
| 732 | cd->cdi.mask = 0; |
| 733 | cd->cdi.capacity = 1; |
| 734 | sprintf(cd->cdi.name, "sr%d", minor); |
| 735 | |
| 736 | sdev->sector_size = 2048; /* A guess, just in case */ |
| 737 | |
| 738 | /* FIXME: need to handle a get_capabilities failure properly ?? */ |
| 739 | get_capabilities(cd); |
| 740 | sr_vendor_init(cd); |
| 741 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | set_capacity(disk, cd->capacity); |
| 743 | disk->private_data = &cd->driver; |
| 744 | disk->queue = sdev->request_queue; |
| 745 | cd->cdi.disk = disk; |
| 746 | |
| 747 | if (register_cdrom(&cd->cdi)) |
| 748 | goto fail_put; |
| 749 | |
Aaron Lu | 6627b38 | 2013-10-28 15:27:49 +0800 | [diff] [blame] | 750 | /* |
| 751 | * Initialize block layer runtime PM stuffs before the |
| 752 | * periodic event checking request gets started in add_disk. |
| 753 | */ |
| 754 | blk_pm_runtime_init(sdev->request_queue, dev); |
| 755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | dev_set_drvdata(dev, cd); |
| 757 | disk->flags |= GENHD_FL_REMOVABLE; |
Dan Williams | 0d52c756 | 2016-06-15 19:44:20 -0700 | [diff] [blame] | 758 | device_add_disk(&sdev->sdev_gendev, disk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | |
James Bottomley | 9ccfc75 | 2005-10-02 11:45:08 -0500 | [diff] [blame] | 760 | sdev_printk(KERN_DEBUG, sdev, |
| 761 | "Attached scsi CD-ROM %s\n", cd->cdi.name); |
Aaron Lu | 6c7f1e2 | 2013-01-23 15:09:31 +0800 | [diff] [blame] | 762 | scsi_autopm_put_device(cd->device); |
| 763 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | return 0; |
| 765 | |
| 766 | fail_put: |
| 767 | put_disk(disk); |
| 768 | fail_free: |
| 769 | kfree(cd); |
| 770 | fail: |
Subhash Jadavani | 6fe8c1d | 2014-09-10 14:54:09 +0300 | [diff] [blame] | 771 | scsi_autopm_put_device(sdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | return error; |
| 773 | } |
| 774 | |
| 775 | |
| 776 | static void get_sectorsize(struct scsi_cd *cd) |
| 777 | { |
| 778 | unsigned char cmd[10]; |
FUJITA Tomonori | 62858da | 2008-07-04 09:31:50 +0200 | [diff] [blame] | 779 | unsigned char buffer[8]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | int the_result, retries = 3; |
| 781 | int sector_size; |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 782 | struct request_queue *queue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | do { |
| 785 | cmd[0] = READ_CAPACITY; |
| 786 | memset((void *) &cmd[1], 0, 9); |
FUJITA Tomonori | 62858da | 2008-07-04 09:31:50 +0200 | [diff] [blame] | 787 | memset(buffer, 0, sizeof(buffer)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | |
| 789 | /* Do the command and wait.. */ |
James Bottomley | 820732b | 2005-06-12 22:21:29 -0500 | [diff] [blame] | 790 | the_result = scsi_execute_req(cd->device, cmd, DMA_FROM_DEVICE, |
FUJITA Tomonori | 62858da | 2008-07-04 09:31:50 +0200 | [diff] [blame] | 791 | buffer, sizeof(buffer), NULL, |
FUJITA Tomonori | f4f4e47 | 2008-12-04 14:24:39 +0900 | [diff] [blame] | 792 | SR_TIMEOUT, MAX_RETRIES, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | retries--; |
| 795 | |
| 796 | } while (the_result && retries); |
| 797 | |
| 798 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | if (the_result) { |
| 800 | cd->capacity = 0x1fffff; |
| 801 | sector_size = 2048; /* A guess, just in case */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | } else { |
Tejun Heo | 5915136 | 2009-09-04 11:38:02 +0900 | [diff] [blame] | 803 | long last_written; |
| 804 | |
| 805 | cd->capacity = 1 + ((buffer[0] << 24) | (buffer[1] << 16) | |
| 806 | (buffer[2] << 8) | buffer[3]); |
| 807 | /* |
| 808 | * READ_CAPACITY doesn't return the correct size on |
| 809 | * certain UDF media. If last_written is larger, use |
| 810 | * it instead. |
| 811 | * |
| 812 | * http://bugzilla.kernel.org/show_bug.cgi?id=9668 |
| 813 | */ |
| 814 | if (!cdrom_get_last_written(&cd->cdi, &last_written)) |
| 815 | cd->capacity = max_t(long, cd->capacity, last_written); |
| 816 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | sector_size = (buffer[4] << 24) | |
| 818 | (buffer[5] << 16) | (buffer[6] << 8) | buffer[7]; |
| 819 | switch (sector_size) { |
| 820 | /* |
| 821 | * HP 4020i CD-Recorder reports 2340 byte sectors |
| 822 | * Philips CD-Writers report 2352 byte sectors |
| 823 | * |
| 824 | * Use 2k sectors for them.. |
| 825 | */ |
| 826 | case 0: |
| 827 | case 2340: |
| 828 | case 2352: |
| 829 | sector_size = 2048; |
| 830 | /* fall through */ |
| 831 | case 2048: |
| 832 | cd->capacity *= 4; |
| 833 | /* fall through */ |
| 834 | case 512: |
| 835 | break; |
| 836 | default: |
Hannes Reinecke | 96eefad | 2014-06-25 16:39:54 +0200 | [diff] [blame] | 837 | sr_printk(KERN_INFO, cd, |
| 838 | "unsupported sector size %d.", sector_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | cd->capacity = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | cd->device->sector_size = sector_size; |
| 843 | |
| 844 | /* |
| 845 | * Add this so that we have the ability to correctly gauge |
| 846 | * what the device is capable of. |
| 847 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | set_capacity(cd->disk, cd->capacity); |
| 849 | } |
| 850 | |
| 851 | queue = cd->device->request_queue; |
Martin K. Petersen | e1defc4 | 2009-05-22 17:17:49 -0400 | [diff] [blame] | 852 | blk_queue_logical_block_size(queue, sector_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | |
FUJITA Tomonori | 62858da | 2008-07-04 09:31:50 +0200 | [diff] [blame] | 854 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | } |
| 856 | |
| 857 | static void get_capabilities(struct scsi_cd *cd) |
| 858 | { |
| 859 | unsigned char *buffer; |
| 860 | struct scsi_mode_data data; |
James Bottomley | 820732b | 2005-06-12 22:21:29 -0500 | [diff] [blame] | 861 | struct scsi_sense_hdr sshdr; |
Martin K. Petersen | c80c158 | 2017-03-17 08:47:14 -0400 | [diff] [blame] | 862 | unsigned int ms_len = 128; |
James Bottomley | 38582a6 | 2008-02-06 13:01:58 -0600 | [diff] [blame] | 863 | int rc, n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | |
Arjan van de Ven | 0ad7820 | 2005-11-28 16:22:25 +0100 | [diff] [blame] | 865 | static const char *loadmech[] = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | { |
| 867 | "caddy", |
| 868 | "tray", |
| 869 | "pop-up", |
| 870 | "", |
| 871 | "changer", |
| 872 | "cartridge changer", |
| 873 | "", |
| 874 | "" |
| 875 | }; |
| 876 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | |
| 878 | /* allocate transfer buffer */ |
| 879 | buffer = kmalloc(512, GFP_KERNEL | GFP_DMA); |
| 880 | if (!buffer) { |
Hannes Reinecke | 96eefad | 2014-06-25 16:39:54 +0200 | [diff] [blame] | 881 | sr_printk(KERN_ERR, cd, "out of memory.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | return; |
| 883 | } |
| 884 | |
James Bottomley | 38582a6 | 2008-02-06 13:01:58 -0600 | [diff] [blame] | 885 | /* eat unit attentions */ |
Tejun Heo | 9f8a2c2 | 2010-12-08 20:57:40 +0100 | [diff] [blame] | 886 | scsi_test_unit_ready(cd->device, SR_TIMEOUT, MAX_RETRIES, &sshdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | |
| 888 | /* ask for mode page 0x2a */ |
Martin K. Petersen | c80c158 | 2017-03-17 08:47:14 -0400 | [diff] [blame] | 889 | rc = scsi_mode_sense(cd->device, 0, 0x2a, buffer, ms_len, |
James Bottomley | 1cf7269 | 2005-08-28 11:27:01 -0500 | [diff] [blame] | 890 | SR_TIMEOUT, 3, &data, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | |
Martin K. Petersen | c80c158 | 2017-03-17 08:47:14 -0400 | [diff] [blame] | 892 | if (!scsi_status_is_good(rc) || data.length > ms_len || |
| 893 | data.header_length + data.block_descriptor_length > data.length) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | /* failed, drive doesn't have capabilities mode page */ |
| 895 | cd->cdi.speed = 1; |
| 896 | cd->cdi.mask |= (CDC_CD_R | CDC_CD_RW | CDC_DVD_R | |
Chuck Ebbert | bcc1e38 | 2006-01-11 23:58:40 -0500 | [diff] [blame] | 897 | CDC_DVD | CDC_DVD_RAM | |
| 898 | CDC_SELECT_DISC | CDC_SELECT_SPEED | |
| 899 | CDC_MRW | CDC_MRW_W | CDC_RAM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | kfree(buffer); |
Hannes Reinecke | 96eefad | 2014-06-25 16:39:54 +0200 | [diff] [blame] | 901 | sr_printk(KERN_INFO, cd, "scsi-1 drive"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | return; |
| 903 | } |
| 904 | |
| 905 | n = data.header_length + data.block_descriptor_length; |
| 906 | cd->cdi.speed = ((buffer[n + 8] << 8) + buffer[n + 9]) / 176; |
| 907 | cd->readcd_known = 1; |
| 908 | cd->readcd_cdda = buffer[n + 5] & 0x01; |
| 909 | /* print some capability bits */ |
Hannes Reinecke | 96eefad | 2014-06-25 16:39:54 +0200 | [diff] [blame] | 910 | sr_printk(KERN_INFO, cd, |
| 911 | "scsi3-mmc drive: %dx/%dx %s%s%s%s%s%s\n", |
| 912 | ((buffer[n + 14] << 8) + buffer[n + 15]) / 176, |
| 913 | cd->cdi.speed, |
| 914 | buffer[n + 3] & 0x01 ? "writer " : "", /* CD Writer */ |
| 915 | buffer[n + 3] & 0x20 ? "dvd-ram " : "", |
| 916 | buffer[n + 2] & 0x02 ? "cd/rw " : "", /* can read rewriteable */ |
| 917 | buffer[n + 4] & 0x20 ? "xa/form2 " : "", /* can read xa/from2 */ |
| 918 | buffer[n + 5] & 0x01 ? "cdda " : "", /* can read audio data */ |
| 919 | loadmech[buffer[n + 6] >> 5]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | if ((buffer[n + 6] >> 5) == 0) |
| 921 | /* caddy drives can't close tray... */ |
| 922 | cd->cdi.mask |= CDC_CLOSE_TRAY; |
| 923 | if ((buffer[n + 2] & 0x8) == 0) |
| 924 | /* not a DVD drive */ |
| 925 | cd->cdi.mask |= CDC_DVD; |
Hannes Reinecke | 96eefad | 2014-06-25 16:39:54 +0200 | [diff] [blame] | 926 | if ((buffer[n + 3] & 0x20) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | /* can't write DVD-RAM media */ |
| 928 | cd->cdi.mask |= CDC_DVD_RAM; |
| 929 | if ((buffer[n + 3] & 0x10) == 0) |
| 930 | /* can't write DVD-R media */ |
| 931 | cd->cdi.mask |= CDC_DVD_R; |
| 932 | if ((buffer[n + 3] & 0x2) == 0) |
| 933 | /* can't write CD-RW media */ |
| 934 | cd->cdi.mask |= CDC_CD_RW; |
| 935 | if ((buffer[n + 3] & 0x1) == 0) |
| 936 | /* can't write CD-R media */ |
| 937 | cd->cdi.mask |= CDC_CD_R; |
| 938 | if ((buffer[n + 6] & 0x8) == 0) |
| 939 | /* can't eject */ |
| 940 | cd->cdi.mask |= CDC_OPEN_TRAY; |
| 941 | |
| 942 | if ((buffer[n + 6] >> 5) == mechtype_individual_changer || |
| 943 | (buffer[n + 6] >> 5) == mechtype_cartridge_changer) |
| 944 | cd->cdi.capacity = |
| 945 | cdrom_number_of_slots(&cd->cdi); |
| 946 | if (cd->cdi.capacity <= 1) |
| 947 | /* not a changer */ |
| 948 | cd->cdi.mask |= CDC_SELECT_DISC; |
| 949 | /*else I don't think it can close its tray |
| 950 | cd->cdi.mask |= CDC_CLOSE_TRAY; */ |
| 951 | |
| 952 | /* |
| 953 | * if DVD-RAM, MRW-W or CD-RW, we are randomly writable |
| 954 | */ |
| 955 | if ((cd->cdi.mask & (CDC_DVD_RAM | CDC_MRW_W | CDC_RAM | CDC_CD_RW)) != |
| 956 | (CDC_DVD_RAM | CDC_MRW_W | CDC_RAM | CDC_CD_RW)) { |
Christoph Hellwig | fd2eb90 | 2014-07-18 16:59:19 +0200 | [diff] [blame] | 957 | cd->writeable = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | } |
| 959 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | kfree(buffer); |
| 961 | } |
| 962 | |
| 963 | /* |
| 964 | * sr_packet() is the entry point for the generic commands generated |
Hannes Reinecke | 96eefad | 2014-06-25 16:39:54 +0200 | [diff] [blame] | 965 | * by the Uniform CD-ROM layer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | */ |
| 967 | static int sr_packet(struct cdrom_device_info *cdi, |
| 968 | struct packet_command *cgc) |
| 969 | { |
Hans de Goede | 8e04d80 | 2010-10-01 14:20:08 -0700 | [diff] [blame] | 970 | struct scsi_cd *cd = cdi->handle; |
| 971 | struct scsi_device *sdev = cd->device; |
| 972 | |
| 973 | if (cgc->cmd[0] == GPCMD_READ_DISC_INFO && sdev->no_read_disc_info) |
| 974 | return -EDRIVE_CANT_DO_THIS; |
| 975 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | if (cgc->timeout <= 0) |
| 977 | cgc->timeout = IOCTL_TIMEOUT; |
| 978 | |
Hans de Goede | 8e04d80 | 2010-10-01 14:20:08 -0700 | [diff] [blame] | 979 | sr_do_ioctl(cd, cgc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | |
| 981 | return cgc->stat; |
| 982 | } |
| 983 | |
| 984 | /** |
| 985 | * sr_kref_release - Called to free the scsi_cd structure |
| 986 | * @kref: pointer to embedded kref |
| 987 | * |
Arjan van de Ven | 0b95067 | 2006-01-11 13:16:10 +0100 | [diff] [blame] | 988 | * sr_ref_mutex must be held entering this routine. Because it is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | * called on last put, you should always use the scsi_cd_get() |
| 990 | * scsi_cd_put() helpers which manipulate the semaphore directly |
| 991 | * and never do a direct kref_put(). |
| 992 | **/ |
| 993 | static void sr_kref_release(struct kref *kref) |
| 994 | { |
| 995 | struct scsi_cd *cd = container_of(kref, struct scsi_cd, kref); |
| 996 | struct gendisk *disk = cd->disk; |
| 997 | |
| 998 | spin_lock(&sr_index_lock); |
Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 999 | clear_bit(MINOR(disk_devt(disk)), sr_index_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | spin_unlock(&sr_index_lock); |
| 1001 | |
| 1002 | unregister_cdrom(&cd->cdi); |
| 1003 | |
| 1004 | disk->private_data = NULL; |
| 1005 | |
| 1006 | put_disk(disk); |
| 1007 | |
| 1008 | kfree(cd); |
| 1009 | } |
| 1010 | |
| 1011 | static int sr_remove(struct device *dev) |
| 1012 | { |
| 1013 | struct scsi_cd *cd = dev_get_drvdata(dev); |
| 1014 | |
Aaron Lu | 6c7f1e2 | 2013-01-23 15:09:31 +0800 | [diff] [blame] | 1015 | scsi_autopm_get_device(cd->device); |
| 1016 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | del_gendisk(cd->disk); |
Alan Stern | 13b4389 | 2016-01-20 11:26:01 -0500 | [diff] [blame] | 1018 | dev_set_drvdata(dev, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | |
Arjan van de Ven | 0b95067 | 2006-01-11 13:16:10 +0100 | [diff] [blame] | 1020 | mutex_lock(&sr_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | kref_put(&cd->kref, sr_kref_release); |
Arjan van de Ven | 0b95067 | 2006-01-11 13:16:10 +0100 | [diff] [blame] | 1022 | mutex_unlock(&sr_ref_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | |
| 1024 | return 0; |
| 1025 | } |
| 1026 | |
| 1027 | static int __init init_sr(void) |
| 1028 | { |
| 1029 | int rc; |
| 1030 | |
| 1031 | rc = register_blkdev(SCSI_CDROM_MAJOR, "sr"); |
| 1032 | if (rc) |
| 1033 | return rc; |
Akinobu Mita | da3962f | 2007-06-26 00:39:33 +0900 | [diff] [blame] | 1034 | rc = scsi_register_driver(&sr_template.gendrv); |
| 1035 | if (rc) |
| 1036 | unregister_blkdev(SCSI_CDROM_MAJOR, "sr"); |
| 1037 | |
| 1038 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | } |
| 1040 | |
| 1041 | static void __exit exit_sr(void) |
| 1042 | { |
| 1043 | scsi_unregister_driver(&sr_template.gendrv); |
| 1044 | unregister_blkdev(SCSI_CDROM_MAJOR, "sr"); |
| 1045 | } |
| 1046 | |
| 1047 | module_init(init_sr); |
| 1048 | module_exit(exit_sr); |
| 1049 | MODULE_LICENSE("GPL"); |