blob: d2fe3fa470f95fb1d0a872d0c0763b4c075a9b9f [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * sr.c Copyright (C) 1992 David Giller
4 * Copyright (C) 1993, 1994, 1995, 1999 Eric Youngdale
5 *
6 * adapted from:
7 * sd.c Copyright (C) 1992 Drew Eckhardt
8 * Linux scsi disk driver by
9 * Drew Eckhardt <drew@colorado.edu>
10 *
11 * Modified by Eric Youngdale ericy@andante.org to
12 * add scatter-gather, multiple outstanding request, and other
13 * enhancements.
14 *
15 * Modified by Eric Youngdale eric@andante.org to support loadable
16 * low-level scsi drivers.
17 *
18 * Modified by Thomas Quinot thomas@melchior.cuivre.fdn.fr to
19 * provide auto-eject.
20 *
21 * Modified by Gerd Knorr <kraxel@cs.tu-berlin.de> to support the
22 * generic cdrom interface
23 *
24 * Modified by Jens Axboe <axboe@suse.de> - Uniform sr_packet()
25 * interface, capabilities probe additions, ioctl cleanups, etc.
26 *
27 * Modified by Richard Gooch <rgooch@atnf.csiro.au> to support devfs
28 *
29 * Modified by Jens Axboe <axboe@suse.de> - support DVD-RAM
30 * transparently and lose the GHOST hack
31 *
32 * Modified by Arnaldo Carvalho de Melo <acme@conectiva.com.br>
33 * check resource allocation in sr_init and some cleanups
34 */
35
36#include <linux/module.h>
37#include <linux/fs.h>
38#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/mm.h>
40#include <linux/bio.h>
Arnd Bergmannd320a952019-03-15 17:39:44 +010041#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/string.h>
43#include <linux/errno.h>
44#include <linux/cdrom.h>
45#include <linux/interrupt.h>
46#include <linux/init.h>
47#include <linux/blkdev.h>
Bart Van Asschebca6b062018-09-26 14:01:03 -070048#include <linux/blk-pm.h>
Arjan van de Ven0b950672006-01-11 13:16:10 +010049#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090050#include <linux/slab.h>
Aaron Lu6c7f1e22013-01-23 15:09:31 +080051#include <linux/pm_runtime.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080052#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#include <scsi/scsi.h>
55#include <scsi/scsi_dbg.h>
56#include <scsi/scsi_device.h>
57#include <scsi/scsi_driver.h>
James Bottomley820732b2005-06-12 22:21:29 -050058#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <scsi/scsi_eh.h>
60#include <scsi/scsi_host.h>
61#include <scsi/scsi_ioctl.h> /* For the door lock/unlock commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#include "scsi_logging.h"
64#include "sr.h"
65
66
Rene Hermanf018fa52006-03-08 00:14:20 -080067MODULE_DESCRIPTION("SCSI cdrom (sr) driver");
68MODULE_LICENSE("GPL");
69MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_CDROM_MAJOR);
Michael Tokarevd7b8bcb02006-10-27 16:02:37 +040070MODULE_ALIAS_SCSI_DEVICE(TYPE_ROM);
71MODULE_ALIAS_SCSI_DEVICE(TYPE_WORM);
Rene Hermanf018fa52006-03-08 00:14:20 -080072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define SR_DISKS 256
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define SR_CAPABILITIES \
76 (CDC_CLOSE_TRAY|CDC_OPEN_TRAY|CDC_LOCK|CDC_SELECT_SPEED| \
77 CDC_SELECT_DISC|CDC_MULTI_SESSION|CDC_MCN|CDC_MEDIA_CHANGED| \
Christoph Hellwig6a2900b2006-03-23 03:00:15 -080078 CDC_PLAY_AUDIO|CDC_RESET|CDC_DRIVE_STATUS| \
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 CDC_CD_R|CDC_CD_RW|CDC_DVD|CDC_DVD_R|CDC_DVD_RAM|CDC_GENERIC_PACKET| \
80 CDC_MRW|CDC_MRW_W|CDC_RAM)
81
82static int sr_probe(struct device *);
83static int sr_remove(struct device *);
Christoph Hellwig159b2cb2018-11-09 14:42:39 +010084static blk_status_t sr_init_command(struct scsi_cmnd *SCpnt);
Linus Torvalds7b3d9542008-01-06 10:17:12 -080085static int sr_done(struct scsi_cmnd *);
Aaron Lu6c7f1e22013-01-23 15:09:31 +080086static int sr_runtime_suspend(struct device *dev);
87
Julia Lawalla816b4c2016-08-28 22:17:38 +020088static const struct dev_pm_ops sr_pm_ops = {
Aaron Lu6c7f1e22013-01-23 15:09:31 +080089 .runtime_suspend = sr_runtime_suspend,
90};
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92static struct scsi_driver sr_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 .gendrv = {
94 .name = "sr",
Christoph Hellwig3af6b352014-11-12 18:34:51 +010095 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 .probe = sr_probe,
97 .remove = sr_remove,
Aaron Lu6c7f1e22013-01-23 15:09:31 +080098 .pm = &sr_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 },
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +0200100 .init_command = sr_init_command,
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800101 .done = sr_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102};
103
104static unsigned long sr_index_bits[SR_DISKS / BITS_PER_LONG];
105static DEFINE_SPINLOCK(sr_index_lock);
106
107/* This semaphore is used to mediate the 0->1 reference get in the
108 * face of object destruction (i.e. we can't allow a get on an
109 * object after last put) */
Arjan van de Ven0b950672006-01-11 13:16:10 +0100110static DEFINE_MUTEX(sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112static int sr_open(struct cdrom_device_info *, int);
113static void sr_release(struct cdrom_device_info *);
114
115static void get_sectorsize(struct scsi_cd *);
116static void get_capabilities(struct scsi_cd *);
117
Tejun Heo93aae172010-12-16 17:52:17 +0100118static unsigned int sr_check_events(struct cdrom_device_info *cdi,
119 unsigned int clearing, int slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120static int sr_packet(struct cdrom_device_info *, struct packet_command *);
121
Kees Cook853fe1b2017-02-13 16:25:26 -0800122static const struct cdrom_device_ops sr_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 .open = sr_open,
124 .release = sr_release,
125 .drive_status = sr_drive_status,
Tejun Heo93aae172010-12-16 17:52:17 +0100126 .check_events = sr_check_events,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 .tray_move = sr_tray_move,
128 .lock_door = sr_lock_door,
129 .select_speed = sr_select_speed,
130 .get_last_session = sr_get_last_session,
131 .get_mcn = sr_get_mcn,
132 .reset = sr_reset,
133 .audio_ioctl = sr_audio_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 .capability = SR_CAPABILITIES,
135 .generic_packet = sr_packet,
136};
137
138static void sr_kref_release(struct kref *kref);
139
140static inline struct scsi_cd *scsi_cd(struct gendisk *disk)
141{
142 return container_of(disk->private_data, struct scsi_cd, driver);
143}
144
Aaron Lu6c7f1e22013-01-23 15:09:31 +0800145static int sr_runtime_suspend(struct device *dev)
146{
147 struct scsi_cd *cd = dev_get_drvdata(dev);
148
Alan Stern13b43892016-01-20 11:26:01 -0500149 if (!cd) /* E.g.: runtime suspend following sr_remove() */
150 return 0;
151
Aaron Lu6c7f1e22013-01-23 15:09:31 +0800152 if (cd->media_present)
153 return -EBUSY;
154 else
155 return 0;
156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/*
159 * The get and put routines for the struct scsi_cd. Note this entity
160 * has a scsi_device pointer and owns a reference to this.
161 */
162static inline struct scsi_cd *scsi_cd_get(struct gendisk *disk)
163{
164 struct scsi_cd *cd = NULL;
165
Arjan van de Ven0b950672006-01-11 13:16:10 +0100166 mutex_lock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (disk->private_data == NULL)
168 goto out;
169 cd = scsi_cd(disk);
170 kref_get(&cd->kref);
Aaron Lu6627b382013-10-28 15:27:49 +0800171 if (scsi_device_get(cd->device)) {
172 kref_put(&cd->kref, sr_kref_release);
173 cd = NULL;
174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 out:
Arjan van de Ven0b950672006-01-11 13:16:10 +0100176 mutex_unlock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return cd;
178}
179
Arjan van de Ven858119e2006-01-14 13:20:43 -0800180static void scsi_cd_put(struct scsi_cd *cd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 struct scsi_device *sdev = cd->device;
183
Arjan van de Ven0b950672006-01-11 13:16:10 +0100184 mutex_lock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 kref_put(&cd->kref, sr_kref_release);
186 scsi_device_put(sdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100187 mutex_unlock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Tejun Heo93aae172010-12-16 17:52:17 +0100190static unsigned int sr_get_events(struct scsi_device *sdev)
191{
192 u8 buf[8];
193 u8 cmd[] = { GET_EVENT_STATUS_NOTIFICATION,
194 1, /* polled */
195 0, 0, /* reserved */
196 1 << 4, /* notification class: media */
197 0, 0, /* reserved */
198 0, sizeof(buf), /* allocation length */
199 0, /* control */
200 };
201 struct event_header *eh = (void *)buf;
202 struct media_event_desc *med = (void *)(buf + 4);
203 struct scsi_sense_hdr sshdr;
204 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Tejun Heo93aae172010-12-16 17:52:17 +0100206 result = scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buf, sizeof(buf),
207 &sshdr, SR_TIMEOUT, MAX_RETRIES, NULL);
208 if (scsi_sense_valid(&sshdr) && sshdr.sense_key == UNIT_ATTENTION)
209 return DISK_EVENT_MEDIA_CHANGE;
210
211 if (result || be16_to_cpu(eh->data_len) < sizeof(*med))
212 return 0;
213
214 if (eh->nea || eh->notification_class != 0x4)
215 return 0;
216
217 if (med->media_event_code == 1)
218 return DISK_EVENT_EJECT_REQUEST;
219 else if (med->media_event_code == 2)
220 return DISK_EVENT_MEDIA_CHANGE;
221 return 0;
222}
223
224/*
225 * This function checks to see if the media has been changed or eject
226 * button has been pressed. It is possible that we have already
227 * sensed a change, or the drive may have sensed one and not yet
228 * reported it. The past events are accumulated in sdev->changed and
229 * returned together with the current state.
230 */
231static unsigned int sr_check_events(struct cdrom_device_info *cdi,
232 unsigned int clearing, int slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 struct scsi_cd *cd = cdi->handle;
Tejun Heo93aae172010-12-16 17:52:17 +0100235 bool last_present;
236 struct scsi_sense_hdr sshdr;
237 unsigned int events;
238 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Tejun Heo93aae172010-12-16 17:52:17 +0100240 /* no changer support */
241 if (CDSL_CURRENT != slot)
242 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Tejun Heo93aae172010-12-16 17:52:17 +0100244 events = sr_get_events(cd->device);
Kay Sievers79b96772011-06-30 15:03:48 +0200245 cd->get_event_changed |= events & DISK_EVENT_MEDIA_CHANGE;
246
247 /*
248 * If earlier GET_EVENT_STATUS_NOTIFICATION and TUR did not agree
249 * for several times in a row. We rely on TUR only for this likely
250 * broken device, to prevent generating incorrect media changed
251 * events for every open().
252 */
253 if (cd->ignore_get_event) {
254 events &= ~DISK_EVENT_MEDIA_CHANGE;
255 goto do_tur;
256 }
257
Tejun Heo93aae172010-12-16 17:52:17 +0100258 /*
259 * GET_EVENT_STATUS_NOTIFICATION is enough unless MEDIA_CHANGE
260 * is being cleared. Note that there are devices which hang
261 * if asked to execute TUR repeatedly.
262 */
Kay Sievers79b96772011-06-30 15:03:48 +0200263 if (cd->device->changed) {
264 events |= DISK_EVENT_MEDIA_CHANGE;
265 cd->device->changed = 0;
266 cd->tur_changed = true;
267 }
Tejun Heo93aae172010-12-16 17:52:17 +0100268
Kay Sievers79b96772011-06-30 15:03:48 +0200269 if (!(clearing & DISK_EVENT_MEDIA_CHANGE))
270 return events;
271do_tur:
Tejun Heo93aae172010-12-16 17:52:17 +0100272 /* let's see whether the media is there with TUR */
273 last_present = cd->media_present;
274 ret = scsi_test_unit_ready(cd->device, SR_TIMEOUT, MAX_RETRIES, &sshdr);
275
Tejun Heo638428e2010-12-09 11:18:42 +0100276 /*
277 * Media is considered to be present if TUR succeeds or fails with
278 * sense data indicating something other than media-not-present
279 * (ASC 0x3a).
280 */
Tejun Heo93aae172010-12-16 17:52:17 +0100281 cd->media_present = scsi_status_is_good(ret) ||
282 (scsi_sense_valid(&sshdr) && sshdr.asc != 0x3a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Tejun Heo93aae172010-12-16 17:52:17 +0100284 if (last_present != cd->media_present)
Kay Sievers79b96772011-06-30 15:03:48 +0200285 cd->device->changed = 1;
286
Tejun Heo93aae172010-12-16 17:52:17 +0100287 if (cd->device->changed) {
288 events |= DISK_EVENT_MEDIA_CHANGE;
289 cd->device->changed = 0;
Kay Sievers79b96772011-06-30 15:03:48 +0200290 cd->tur_changed = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
Kay Sievers285e9672007-08-14 14:10:39 +0200292
Kay Sievers79b96772011-06-30 15:03:48 +0200293 if (cd->ignore_get_event)
294 return events;
295
296 /* check whether GET_EVENT is reporting spurious MEDIA_CHANGE */
297 if (!cd->tur_changed) {
298 if (cd->get_event_changed) {
299 if (cd->tur_mismatch++ > 8) {
Hannes Reinecke96eefad22014-06-25 16:39:54 +0200300 sr_printk(KERN_WARNING, cd,
301 "GET_EVENT and TUR disagree continuously, suppress GET_EVENT events\n");
Kay Sievers79b96772011-06-30 15:03:48 +0200302 cd->ignore_get_event = true;
303 }
304 } else {
305 cd->tur_mismatch = 0;
306 }
307 }
308 cd->tur_changed = false;
309 cd->get_event_changed = false;
310
Tejun Heo93aae172010-12-16 17:52:17 +0100311 return events;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
Tejun Heo93aae172010-12-16 17:52:17 +0100313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314/*
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800315 * sr_done is the interrupt routine for the device driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 *
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800317 * It will be notified on the end of a SCSI read / write, and will take one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 * of several actions based on success or failure.
319 */
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800320static int sr_done(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 int result = SCpnt->result;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200323 int this_count = scsi_bufflen(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 int good_bytes = (result == 0 ? this_count : 0);
325 int block_sectors = 0;
326 long error_sector;
327 struct scsi_cd *cd = scsi_cd(SCpnt->request->rq_disk);
328
329#ifdef DEBUG
Hannes Reinecke96eefad22014-06-25 16:39:54 +0200330 scmd_printk(KERN_INFO, SCpnt, "done: %x\n", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331#endif
332
333 /*
334 * Handle MEDIUM ERRORs or VOLUME OVERFLOWs that indicate partial
335 * success. Since this is a relatively rare error condition, no
336 * care is taken to avoid unnecessary additional work such as
337 * memcpy's that could be avoided.
338 */
339 if (driver_byte(result) != 0 && /* An error occurred */
340 (SCpnt->sense_buffer[0] & 0x7f) == 0x70) { /* Sense current */
341 switch (SCpnt->sense_buffer[2]) {
342 case MEDIUM_ERROR:
343 case VOLUME_OVERFLOW:
344 case ILLEGAL_REQUEST:
345 if (!(SCpnt->sense_buffer[0] & 0x90))
346 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 error_sector = (SCpnt->sense_buffer[3] << 24) |
348 (SCpnt->sense_buffer[4] << 16) |
349 (SCpnt->sense_buffer[5] << 8) |
350 SCpnt->sense_buffer[6];
351 if (SCpnt->request->bio != NULL)
352 block_sectors =
353 bio_sectors(SCpnt->request->bio);
354 if (block_sectors < 4)
355 block_sectors = 4;
356 if (cd->device->sector_size == 2048)
357 error_sector <<= 2;
358 error_sector &= ~(block_sectors - 1);
Tejun Heo83096eb2009-05-07 22:24:39 +0900359 good_bytes = (error_sector -
360 blk_rq_pos(SCpnt->request)) << 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (good_bytes < 0 || good_bytes >= this_count)
362 good_bytes = 0;
363 /*
364 * The SCSI specification allows for the value
365 * returned by READ CAPACITY to be up to 75 2K
366 * sectors past the last readable block.
367 * Therefore, if we hit a medium error within the
368 * last 75 2K sectors, we decrease the saved size
369 * value.
370 */
371 if (error_sector < get_capacity(cd->disk) &&
372 cd->capacity - error_sector < 4 * 75)
373 set_capacity(cd->disk, error_sector);
374 break;
375
376 case RECOVERED_ERROR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 good_bytes = this_count;
378 break;
379
380 default:
381 break;
382 }
383 }
384
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800385 return good_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Christoph Hellwig159b2cb2018-11-09 14:42:39 +0100388static blk_status_t sr_init_command(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700390 int block = 0, this_count, s_size;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500391 struct scsi_cd *cd;
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +0200392 struct request *rq = SCpnt->request;
Christoph Hellwig159b2cb2018-11-09 14:42:39 +0100393 blk_status_t ret;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500394
Christoph Hellwig3c356bd2014-09-05 18:20:23 -0700395 ret = scsi_init_io(SCpnt);
Christoph Hellwig159b2cb2018-11-09 14:42:39 +0100396 if (ret != BLK_STS_OK)
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500397 goto out;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500398 cd = scsi_cd(rq->rq_disk);
399
400 /* from here on until we're complete, any goto out
401 * is used for a killable error condition */
Christoph Hellwig159b2cb2018-11-09 14:42:39 +0100402 ret = BLK_STS_IOERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Hannes Reinecke96eefad22014-06-25 16:39:54 +0200404 SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO, SCpnt,
405 "Doing sr request, block = %d\n", block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 if (!cd->device || !scsi_device_online(cd->device)) {
Hannes Reinecke96eefad22014-06-25 16:39:54 +0200408 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
409 "Finishing %u sectors\n", blk_rq_sectors(rq)));
410 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
411 "Retry with 0x%p\n", SCpnt));
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500412 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414
415 if (cd->device->changed) {
416 /*
417 * quietly refuse to do anything to a changed disc until the
418 * changed bit has been reset
419 */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500420 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
422
423 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 * we do lazy blocksize switching (when reading XA sectors,
425 * see CDROMREADMODE2 ioctl)
426 */
427 s_size = cd->device->sector_size;
428 if (s_size > 2048) {
429 if (!in_interrupt())
430 sr_set_blocklength(cd, 2048);
431 else
Hannes Reinecke96eefad22014-06-25 16:39:54 +0200432 scmd_printk(KERN_INFO, SCpnt,
433 "can't switch blocksize: in interrupt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435
436 if (s_size != 512 && s_size != 1024 && s_size != 2048) {
Jeff Garzik3bf743e2005-10-24 18:04:06 -0400437 scmd_printk(KERN_ERR, SCpnt, "bad sector size %d\n", s_size);
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500438 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
440
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100441 switch (req_op(rq)) {
442 case REQ_OP_WRITE:
Christoph Hellwigfd2eb902014-07-18 16:59:19 +0200443 if (!cd->writeable)
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500444 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 SCpnt->cmnd[0] = WRITE_10;
Hannes Reinecke96eefad22014-06-25 16:39:54 +0200446 cd->cdi.media_written = 1;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100447 break;
448 case REQ_OP_READ:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 SCpnt->cmnd[0] = READ_10;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100450 break;
451 default:
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500452 blk_dump_rq_flags(rq, "Unknown sr command");
453 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455
456 {
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200457 struct scatterlist *sg;
458 int i, size = 0, sg_count = scsi_sg_count(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200460 scsi_for_each_sg(SCpnt, sg, sg_count, i)
461 size += sg->length;
462
463 if (size != scsi_bufflen(SCpnt)) {
Jeff Garzik3bf743e2005-10-24 18:04:06 -0400464 scmd_printk(KERN_ERR, SCpnt,
465 "mismatch count %d, bytes %d\n",
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200466 size, scsi_bufflen(SCpnt));
467 if (scsi_bufflen(SCpnt) > size)
468 SCpnt->sdb.length = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 }
470 }
471
472 /*
473 * request doesn't start on hw block boundary, add scatter pads
474 */
Tejun Heo83096eb2009-05-07 22:24:39 +0900475 if (((unsigned int)blk_rq_pos(rq) % (s_size >> 9)) ||
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200476 (scsi_bufflen(SCpnt) % s_size)) {
Jeff Garzik3bf743e2005-10-24 18:04:06 -0400477 scmd_printk(KERN_NOTICE, SCpnt, "unaligned transfer\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500478 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200481 this_count = (scsi_bufflen(SCpnt) >> 9) / (s_size >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483
Hannes Reinecke96eefad22014-06-25 16:39:54 +0200484 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
485 "%s %d/%u 512 byte blocks.\n",
486 (rq_data_dir(rq) == WRITE) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 "writing" : "reading",
Hannes Reinecke96eefad22014-06-25 16:39:54 +0200488 this_count, blk_rq_sectors(rq)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 SCpnt->cmnd[1] = 0;
Tejun Heo83096eb2009-05-07 22:24:39 +0900491 block = (unsigned int)blk_rq_pos(rq) / (s_size >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 if (this_count > 0xffff) {
494 this_count = 0xffff;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200495 SCpnt->sdb.length = this_count * s_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
497
498 SCpnt->cmnd[2] = (unsigned char) (block >> 24) & 0xff;
499 SCpnt->cmnd[3] = (unsigned char) (block >> 16) & 0xff;
500 SCpnt->cmnd[4] = (unsigned char) (block >> 8) & 0xff;
501 SCpnt->cmnd[5] = (unsigned char) block & 0xff;
502 SCpnt->cmnd[6] = SCpnt->cmnd[9] = 0;
503 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff;
504 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff;
505
506 /*
507 * We shouldn't disconnect in the middle of a sector, so with a dumb
508 * host adapter, it's safe to assume that we can at least transfer
509 * this many bytes between each connect / disconnect.
510 */
511 SCpnt->transfersize = cd->device->sector_size;
512 SCpnt->underflow = this_count << 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 SCpnt->allowed = MAX_RETRIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 * This indicates that the command is ready from our end to be
517 * queued.
518 */
Christoph Hellwig159b2cb2018-11-09 14:42:39 +0100519 ret = BLK_STS_OK;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500520 out:
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +0200521 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
Al Viro40cc51b2008-03-02 10:41:28 -0500524static int sr_block_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200526 struct scsi_cd *cd;
Bart Van Assche1214fd72018-08-02 10:44:42 -0700527 struct scsi_device *sdev;
Al Viro40cc51b2008-03-02 10:41:28 -0500528 int ret = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Bart Van Assche1214fd72018-08-02 10:44:42 -0700530 cd = scsi_cd_get(bdev->bd_disk);
531 if (!cd)
532 goto out;
533
534 sdev = cd->device;
535 scsi_autopm_get_device(sdev);
Maurizio Lombardi2bbea6e2018-03-09 13:59:06 +0100536 check_disk_change(bdev);
537
Merlijn Wajer51a85882020-02-18 15:39:17 +0100538 mutex_lock(&cd->lock);
Bart Van Assche1214fd72018-08-02 10:44:42 -0700539 ret = cdrom_open(&cd->cdi, bdev, mode);
Merlijn Wajer51a85882020-02-18 15:39:17 +0100540 mutex_unlock(&cd->lock);
Bart Van Assche1214fd72018-08-02 10:44:42 -0700541
542 scsi_autopm_put_device(sdev);
543 if (ret)
544 scsi_cd_put(cd);
545
546out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return ret;
548}
549
Al Virodb2a1442013-05-05 21:52:57 -0400550static void sr_block_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Al Viro40cc51b2008-03-02 10:41:28 -0500552 struct scsi_cd *cd = scsi_cd(disk);
Bart Van Assche72655c02020-03-29 19:51:51 -0700553
Merlijn Wajer51a85882020-02-18 15:39:17 +0100554 mutex_lock(&cd->lock);
Al Viro40cc51b2008-03-02 10:41:28 -0500555 cdrom_release(&cd->cdi, mode);
Merlijn Wajer51a85882020-02-18 15:39:17 +0100556 mutex_unlock(&cd->lock);
Bart Van Assche72655c02020-03-29 19:51:51 -0700557
558 scsi_cd_put(cd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
Al Viro40cc51b2008-03-02 10:41:28 -0500561static int sr_block_ioctl(struct block_device *bdev, fmode_t mode, unsigned cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 unsigned long arg)
563{
Al Viro40cc51b2008-03-02 10:41:28 -0500564 struct scsi_cd *cd = scsi_cd(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 struct scsi_device *sdev = cd->device;
Christoph Hellwig6a2900b2006-03-23 03:00:15 -0800566 void __user *argp = (void __user *)arg;
567 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Merlijn Wajer51a85882020-02-18 15:39:17 +0100569 mutex_lock(&cd->lock);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200570
Christoph Hellwig906d15f2014-10-11 16:25:31 +0200571 ret = scsi_ioctl_block_when_processing_errors(sdev, cmd,
572 (mode & FMODE_NDELAY) != 0);
573 if (ret)
574 goto out;
575
Bart Van Assche1214fd72018-08-02 10:44:42 -0700576 scsi_autopm_get_device(sdev);
577
Christoph Hellwig6a2900b2006-03-23 03:00:15 -0800578 /*
579 * Send SCSI addressing ioctls directly to mid level, send other
580 * ioctls to cdrom/block level.
581 */
582 switch (cmd) {
583 case SCSI_IOCTL_GET_IDLUN:
584 case SCSI_IOCTL_GET_BUS_NUMBER:
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200585 ret = scsi_ioctl(sdev, cmd, argp);
Bart Van Assche1214fd72018-08-02 10:44:42 -0700586 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
Christoph Hellwig6a2900b2006-03-23 03:00:15 -0800588
Al Viro40cc51b2008-03-02 10:41:28 -0500589 ret = cdrom_ioctl(&cd->cdi, bdev, mode, cmd, arg);
Tejun Heo63972562007-01-02 17:41:04 +0900590 if (ret != -ENOSYS)
Bart Van Assche1214fd72018-08-02 10:44:42 -0700591 goto put;
Christoph Hellwig6a2900b2006-03-23 03:00:15 -0800592
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200593 ret = scsi_ioctl(sdev, cmd, argp);
594
Bart Van Assche1214fd72018-08-02 10:44:42 -0700595put:
596 scsi_autopm_put_device(sdev);
597
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200598out:
Merlijn Wajer51a85882020-02-18 15:39:17 +0100599 mutex_unlock(&cd->lock);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200600 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Arnd Bergmannd320a952019-03-15 17:39:44 +0100603#ifdef CONFIG_COMPAT
604static int sr_block_compat_ioctl(struct block_device *bdev, fmode_t mode, unsigned cmd,
605 unsigned long arg)
606{
607 struct scsi_cd *cd = scsi_cd(bdev->bd_disk);
608 struct scsi_device *sdev = cd->device;
609 void __user *argp = compat_ptr(arg);
610 int ret;
611
Merlijn Wajer51a85882020-02-18 15:39:17 +0100612 mutex_lock(&cd->lock);
Arnd Bergmannd320a952019-03-15 17:39:44 +0100613
614 ret = scsi_ioctl_block_when_processing_errors(sdev, cmd,
615 (mode & FMODE_NDELAY) != 0);
616 if (ret)
617 goto out;
618
619 scsi_autopm_get_device(sdev);
620
621 /*
622 * Send SCSI addressing ioctls directly to mid level, send other
623 * ioctls to cdrom/block level.
624 */
625 switch (cmd) {
626 case SCSI_IOCTL_GET_IDLUN:
627 case SCSI_IOCTL_GET_BUS_NUMBER:
628 ret = scsi_compat_ioctl(sdev, cmd, argp);
629 goto put;
630 }
631
Arnd Bergmann64cbfa92019-11-28 15:55:17 +0100632 ret = cdrom_ioctl(&cd->cdi, bdev, mode, cmd, (unsigned long)argp);
633 if (ret != -ENOSYS)
Arnd Bergmannd320a952019-03-15 17:39:44 +0100634 goto put;
635
636 ret = scsi_compat_ioctl(sdev, cmd, argp);
637
638put:
639 scsi_autopm_put_device(sdev);
640
641out:
Merlijn Wajer51a85882020-02-18 15:39:17 +0100642 mutex_unlock(&cd->lock);
Arnd Bergmannd320a952019-03-15 17:39:44 +0100643 return ret;
644
645}
646#endif
647
Tejun Heo93aae172010-12-16 17:52:17 +0100648static unsigned int sr_block_check_events(struct gendisk *disk,
649 unsigned int clearing)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Jens Axboe2d097c52018-04-11 11:26:09 -0600651 unsigned int ret = 0;
652 struct scsi_cd *cd;
Aaron Lu6c7f1e22013-01-23 15:09:31 +0800653
Jens Axboe2d097c52018-04-11 11:26:09 -0600654 cd = scsi_cd_get(disk);
655 if (!cd)
Aaron Lu6627b382013-10-28 15:27:49 +0800656 return 0;
Aaron Lu6c7f1e22013-01-23 15:09:31 +0800657
Jens Axboe2d097c52018-04-11 11:26:09 -0600658 if (!atomic_read(&cd->device->disk_events_disable_depth))
659 ret = cdrom_check_events(&cd->cdi, clearing);
660
661 scsi_cd_put(cd);
662 return ret;
Tejun Heo93aae172010-12-16 17:52:17 +0100663}
664
665static int sr_block_revalidate_disk(struct gendisk *disk)
666{
Tejun Heo93aae172010-12-16 17:52:17 +0100667 struct scsi_sense_hdr sshdr;
Jens Axboe2d097c52018-04-11 11:26:09 -0600668 struct scsi_cd *cd;
669
670 cd = scsi_cd_get(disk);
671 if (!cd)
672 return -ENXIO;
Tejun Heo93aae172010-12-16 17:52:17 +0100673
674 /* if the unit is not ready, nothing more to do */
675 if (scsi_test_unit_ready(cd->device, SR_TIMEOUT, MAX_RETRIES, &sshdr))
Aaron Lu6c7f1e22013-01-23 15:09:31 +0800676 goto out;
Tejun Heo93aae172010-12-16 17:52:17 +0100677
678 sr_cd_check(&cd->cdi);
679 get_sectorsize(cd);
Aaron Lu6c7f1e22013-01-23 15:09:31 +0800680out:
Jens Axboe2d097c52018-04-11 11:26:09 -0600681 scsi_cd_put(cd);
Tejun Heo93aae172010-12-16 17:52:17 +0100682 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700685static const struct block_device_operations sr_bdops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 .owner = THIS_MODULE,
Al Viro40cc51b2008-03-02 10:41:28 -0500688 .open = sr_block_open,
689 .release = sr_block_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200690 .ioctl = sr_block_ioctl,
Arnd Bergmannd320a952019-03-15 17:39:44 +0100691#ifdef CONFIG_COMPAT
Adam Williamson03264dd2020-02-19 17:50:07 +0100692 .compat_ioctl = sr_block_compat_ioctl,
Arnd Bergmannd320a952019-03-15 17:39:44 +0100693#endif
Tejun Heo93aae172010-12-16 17:52:17 +0100694 .check_events = sr_block_check_events,
695 .revalidate_disk = sr_block_revalidate_disk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696};
697
698static int sr_open(struct cdrom_device_info *cdi, int purpose)
699{
700 struct scsi_cd *cd = cdi->handle;
701 struct scsi_device *sdev = cd->device;
702 int retval;
703
704 /*
705 * If the device is in error recovery, wait until it is done.
706 * If the device is offline, then disallow any access to it.
707 */
708 retval = -ENXIO;
709 if (!scsi_block_when_processing_errors(sdev))
710 goto error_out;
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return 0;
713
714error_out:
715 return retval;
716}
717
718static void sr_release(struct cdrom_device_info *cdi)
719{
720 struct scsi_cd *cd = cdi->handle;
721
722 if (cd->device->sector_size > 2048)
723 sr_set_blocklength(cd, 2048);
724
725}
726
727static int sr_probe(struct device *dev)
728{
729 struct scsi_device *sdev = to_scsi_device(dev);
730 struct gendisk *disk;
731 struct scsi_cd *cd;
732 int minor, error;
733
Subhash Jadavani6fe8c1d2014-09-10 14:54:09 +0300734 scsi_autopm_get_device(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 error = -ENODEV;
736 if (sdev->type != TYPE_ROM && sdev->type != TYPE_WORM)
737 goto fail;
738
739 error = -ENOMEM;
Jes Sorensen24669f752006-01-16 10:31:18 -0500740 cd = kzalloc(sizeof(*cd), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 if (!cd)
742 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 kref_init(&cd->kref);
745
746 disk = alloc_disk(1);
747 if (!disk)
748 goto fail_free;
Merlijn Wajer51a85882020-02-18 15:39:17 +0100749 mutex_init(&cd->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 spin_lock(&sr_index_lock);
752 minor = find_first_zero_bit(sr_index_bits, SR_DISKS);
753 if (minor == SR_DISKS) {
754 spin_unlock(&sr_index_lock);
755 error = -EBUSY;
756 goto fail_put;
757 }
758 __set_bit(minor, sr_index_bits);
759 spin_unlock(&sr_index_lock);
760
761 disk->major = SCSI_CDROM_MAJOR;
762 disk->first_minor = minor;
763 sprintf(disk->disk_name, "sr%d", minor);
764 disk->fops = &sr_bdops;
Tejun Heod4dc2102011-04-21 20:54:46 +0200765 disk->flags = GENHD_FL_CD | GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE;
Tejun Heo93aae172010-12-16 17:52:17 +0100766 disk->events = DISK_EVENT_MEDIA_CHANGE | DISK_EVENT_EJECT_REQUEST;
Martin Wilckc92e2f02019-03-27 14:51:02 +0100767 disk->event_flags = DISK_EVENT_FLAG_POLL | DISK_EVENT_FLAG_UEVENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Jens Axboe242f9dc2008-09-14 05:55:09 -0700769 blk_queue_rq_timeout(sdev->request_queue, SR_TIMEOUT);
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 cd->device = sdev;
772 cd->disk = disk;
773 cd->driver = &sr_template;
774 cd->disk = disk;
775 cd->capacity = 0x1fffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 cd->device->changed = 1; /* force recheck CD type */
Tejun Heo93aae172010-12-16 17:52:17 +0100777 cd->media_present = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 cd->use = 1;
779 cd->readcd_known = 0;
780 cd->readcd_cdda = 0;
781
782 cd->cdi.ops = &sr_dops;
783 cd->cdi.handle = cd;
784 cd->cdi.mask = 0;
785 cd->cdi.capacity = 1;
786 sprintf(cd->cdi.name, "sr%d", minor);
787
788 sdev->sector_size = 2048; /* A guess, just in case */
789
790 /* FIXME: need to handle a get_capabilities failure properly ?? */
791 get_capabilities(cd);
792 sr_vendor_init(cd);
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 set_capacity(disk, cd->capacity);
795 disk->private_data = &cd->driver;
796 disk->queue = sdev->request_queue;
797 cd->cdi.disk = disk;
798
799 if (register_cdrom(&cd->cdi))
800 goto fail_put;
801
Aaron Lu6627b382013-10-28 15:27:49 +0800802 /*
803 * Initialize block layer runtime PM stuffs before the
804 * periodic event checking request gets started in add_disk.
805 */
806 blk_pm_runtime_init(sdev->request_queue, dev);
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 dev_set_drvdata(dev, cd);
809 disk->flags |= GENHD_FL_REMOVABLE;
Hannes Reineckefef912b2018-09-28 08:17:19 +0200810 device_add_disk(&sdev->sdev_gendev, disk, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
James Bottomley9ccfc752005-10-02 11:45:08 -0500812 sdev_printk(KERN_DEBUG, sdev,
813 "Attached scsi CD-ROM %s\n", cd->cdi.name);
Aaron Lu6c7f1e22013-01-23 15:09:31 +0800814 scsi_autopm_put_device(cd->device);
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return 0;
817
818fail_put:
819 put_disk(disk);
820fail_free:
821 kfree(cd);
822fail:
Subhash Jadavani6fe8c1d2014-09-10 14:54:09 +0300823 scsi_autopm_put_device(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return error;
825}
826
827
828static void get_sectorsize(struct scsi_cd *cd)
829{
830 unsigned char cmd[10];
FUJITA Tomonori62858da2008-07-04 09:31:50 +0200831 unsigned char buffer[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 int the_result, retries = 3;
833 int sector_size;
Jens Axboe165125e2007-07-24 09:28:11 +0200834 struct request_queue *queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 do {
837 cmd[0] = READ_CAPACITY;
838 memset((void *) &cmd[1], 0, 9);
FUJITA Tomonori62858da2008-07-04 09:31:50 +0200839 memset(buffer, 0, sizeof(buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 /* Do the command and wait.. */
James Bottomley820732b2005-06-12 22:21:29 -0500842 the_result = scsi_execute_req(cd->device, cmd, DMA_FROM_DEVICE,
FUJITA Tomonori62858da2008-07-04 09:31:50 +0200843 buffer, sizeof(buffer), NULL,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900844 SR_TIMEOUT, MAX_RETRIES, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 retries--;
847
848 } while (the_result && retries);
849
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (the_result) {
852 cd->capacity = 0x1fffff;
853 sector_size = 2048; /* A guess, just in case */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 } else {
Tejun Heo59151362009-09-04 11:38:02 +0900855 long last_written;
856
857 cd->capacity = 1 + ((buffer[0] << 24) | (buffer[1] << 16) |
858 (buffer[2] << 8) | buffer[3]);
859 /*
860 * READ_CAPACITY doesn't return the correct size on
861 * certain UDF media. If last_written is larger, use
862 * it instead.
863 *
864 * http://bugzilla.kernel.org/show_bug.cgi?id=9668
865 */
866 if (!cdrom_get_last_written(&cd->cdi, &last_written))
867 cd->capacity = max_t(long, cd->capacity, last_written);
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 sector_size = (buffer[4] << 24) |
870 (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
871 switch (sector_size) {
872 /*
873 * HP 4020i CD-Recorder reports 2340 byte sectors
874 * Philips CD-Writers report 2352 byte sectors
875 *
876 * Use 2k sectors for them..
877 */
878 case 0:
879 case 2340:
880 case 2352:
881 sector_size = 2048;
882 /* fall through */
883 case 2048:
884 cd->capacity *= 4;
885 /* fall through */
886 case 512:
887 break;
888 default:
Hannes Reinecke96eefad22014-06-25 16:39:54 +0200889 sr_printk(KERN_INFO, cd,
890 "unsupported sector size %d.", sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 cd->capacity = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
893
894 cd->device->sector_size = sector_size;
895
896 /*
897 * Add this so that we have the ability to correctly gauge
898 * what the device is capable of.
899 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 set_capacity(cd->disk, cd->capacity);
901 }
902
903 queue = cd->device->request_queue;
Martin K. Petersene1defc42009-05-22 17:17:49 -0400904 blk_queue_logical_block_size(queue, sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
FUJITA Tomonori62858da2008-07-04 09:31:50 +0200906 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
909static void get_capabilities(struct scsi_cd *cd)
910{
911 unsigned char *buffer;
912 struct scsi_mode_data data;
James Bottomley820732b2005-06-12 22:21:29 -0500913 struct scsi_sense_hdr sshdr;
Martin K. Petersena00a7862017-03-17 08:47:14 -0400914 unsigned int ms_len = 128;
James Bottomley38582a62008-02-06 13:01:58 -0600915 int rc, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Arjan van de Ven0ad78202005-11-28 16:22:25 +0100917 static const char *loadmech[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 {
919 "caddy",
920 "tray",
921 "pop-up",
922 "",
923 "changer",
924 "cartridge changer",
925 "",
926 ""
927 };
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 /* allocate transfer buffer */
931 buffer = kmalloc(512, GFP_KERNEL | GFP_DMA);
932 if (!buffer) {
Hannes Reinecke96eefad22014-06-25 16:39:54 +0200933 sr_printk(KERN_ERR, cd, "out of memory.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 return;
935 }
936
James Bottomley38582a62008-02-06 13:01:58 -0600937 /* eat unit attentions */
Tejun Heo9f8a2c22010-12-08 20:57:40 +0100938 scsi_test_unit_ready(cd->device, SR_TIMEOUT, MAX_RETRIES, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 /* ask for mode page 0x2a */
Martin K. Petersena00a7862017-03-17 08:47:14 -0400941 rc = scsi_mode_sense(cd->device, 0, 0x2a, buffer, ms_len,
James Bottomley1cf72692005-08-28 11:27:01 -0500942 SR_TIMEOUT, 3, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Martin K. Petersena00a7862017-03-17 08:47:14 -0400944 if (!scsi_status_is_good(rc) || data.length > ms_len ||
945 data.header_length + data.block_descriptor_length > data.length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 /* failed, drive doesn't have capabilities mode page */
947 cd->cdi.speed = 1;
948 cd->cdi.mask |= (CDC_CD_R | CDC_CD_RW | CDC_DVD_R |
Chuck Ebbertbcc1e382006-01-11 23:58:40 -0500949 CDC_DVD | CDC_DVD_RAM |
950 CDC_SELECT_DISC | CDC_SELECT_SPEED |
951 CDC_MRW | CDC_MRW_W | CDC_RAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 kfree(buffer);
Hannes Reinecke96eefad22014-06-25 16:39:54 +0200953 sr_printk(KERN_INFO, cd, "scsi-1 drive");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return;
955 }
956
957 n = data.header_length + data.block_descriptor_length;
958 cd->cdi.speed = ((buffer[n + 8] << 8) + buffer[n + 9]) / 176;
959 cd->readcd_known = 1;
960 cd->readcd_cdda = buffer[n + 5] & 0x01;
961 /* print some capability bits */
Hannes Reinecke96eefad22014-06-25 16:39:54 +0200962 sr_printk(KERN_INFO, cd,
963 "scsi3-mmc drive: %dx/%dx %s%s%s%s%s%s\n",
964 ((buffer[n + 14] << 8) + buffer[n + 15]) / 176,
965 cd->cdi.speed,
966 buffer[n + 3] & 0x01 ? "writer " : "", /* CD Writer */
967 buffer[n + 3] & 0x20 ? "dvd-ram " : "",
968 buffer[n + 2] & 0x02 ? "cd/rw " : "", /* can read rewriteable */
969 buffer[n + 4] & 0x20 ? "xa/form2 " : "", /* can read xa/from2 */
970 buffer[n + 5] & 0x01 ? "cdda " : "", /* can read audio data */
971 loadmech[buffer[n + 6] >> 5]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 if ((buffer[n + 6] >> 5) == 0)
973 /* caddy drives can't close tray... */
974 cd->cdi.mask |= CDC_CLOSE_TRAY;
975 if ((buffer[n + 2] & 0x8) == 0)
976 /* not a DVD drive */
977 cd->cdi.mask |= CDC_DVD;
Hannes Reinecke96eefad22014-06-25 16:39:54 +0200978 if ((buffer[n + 3] & 0x20) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 /* can't write DVD-RAM media */
980 cd->cdi.mask |= CDC_DVD_RAM;
981 if ((buffer[n + 3] & 0x10) == 0)
982 /* can't write DVD-R media */
983 cd->cdi.mask |= CDC_DVD_R;
984 if ((buffer[n + 3] & 0x2) == 0)
985 /* can't write CD-RW media */
986 cd->cdi.mask |= CDC_CD_RW;
987 if ((buffer[n + 3] & 0x1) == 0)
988 /* can't write CD-R media */
989 cd->cdi.mask |= CDC_CD_R;
990 if ((buffer[n + 6] & 0x8) == 0)
991 /* can't eject */
992 cd->cdi.mask |= CDC_OPEN_TRAY;
993
994 if ((buffer[n + 6] >> 5) == mechtype_individual_changer ||
995 (buffer[n + 6] >> 5) == mechtype_cartridge_changer)
996 cd->cdi.capacity =
997 cdrom_number_of_slots(&cd->cdi);
998 if (cd->cdi.capacity <= 1)
999 /* not a changer */
1000 cd->cdi.mask |= CDC_SELECT_DISC;
1001 /*else I don't think it can close its tray
1002 cd->cdi.mask |= CDC_CLOSE_TRAY; */
1003
1004 /*
1005 * if DVD-RAM, MRW-W or CD-RW, we are randomly writable
1006 */
1007 if ((cd->cdi.mask & (CDC_DVD_RAM | CDC_MRW_W | CDC_RAM | CDC_CD_RW)) !=
1008 (CDC_DVD_RAM | CDC_MRW_W | CDC_RAM | CDC_CD_RW)) {
Christoph Hellwigfd2eb902014-07-18 16:59:19 +02001009 cd->writeable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 kfree(buffer);
1013}
1014
1015/*
1016 * sr_packet() is the entry point for the generic commands generated
Hannes Reinecke96eefad22014-06-25 16:39:54 +02001017 * by the Uniform CD-ROM layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 */
1019static int sr_packet(struct cdrom_device_info *cdi,
1020 struct packet_command *cgc)
1021{
Hans de Goede8e04d802010-10-01 14:20:08 -07001022 struct scsi_cd *cd = cdi->handle;
1023 struct scsi_device *sdev = cd->device;
1024
1025 if (cgc->cmd[0] == GPCMD_READ_DISC_INFO && sdev->no_read_disc_info)
1026 return -EDRIVE_CANT_DO_THIS;
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (cgc->timeout <= 0)
1029 cgc->timeout = IOCTL_TIMEOUT;
1030
Hans de Goede8e04d802010-10-01 14:20:08 -07001031 sr_do_ioctl(cd, cgc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 return cgc->stat;
1034}
1035
1036/**
1037 * sr_kref_release - Called to free the scsi_cd structure
1038 * @kref: pointer to embedded kref
1039 *
Arjan van de Ven0b950672006-01-11 13:16:10 +01001040 * sr_ref_mutex must be held entering this routine. Because it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 * called on last put, you should always use the scsi_cd_get()
1042 * scsi_cd_put() helpers which manipulate the semaphore directly
1043 * and never do a direct kref_put().
1044 **/
1045static void sr_kref_release(struct kref *kref)
1046{
1047 struct scsi_cd *cd = container_of(kref, struct scsi_cd, kref);
1048 struct gendisk *disk = cd->disk;
1049
1050 spin_lock(&sr_index_lock);
Tejun Heof331c022008-09-03 09:01:48 +02001051 clear_bit(MINOR(disk_devt(disk)), sr_index_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 spin_unlock(&sr_index_lock);
1053
1054 unregister_cdrom(&cd->cdi);
1055
1056 disk->private_data = NULL;
1057
1058 put_disk(disk);
1059
Merlijn Wajer51a85882020-02-18 15:39:17 +01001060 mutex_destroy(&cd->lock);
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 kfree(cd);
1063}
1064
1065static int sr_remove(struct device *dev)
1066{
1067 struct scsi_cd *cd = dev_get_drvdata(dev);
1068
Aaron Lu6c7f1e22013-01-23 15:09:31 +08001069 scsi_autopm_get_device(cd->device);
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 del_gendisk(cd->disk);
Alan Stern13b43892016-01-20 11:26:01 -05001072 dev_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Arjan van de Ven0b950672006-01-11 13:16:10 +01001074 mutex_lock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 kref_put(&cd->kref, sr_kref_release);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001076 mutex_unlock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 return 0;
1079}
1080
1081static int __init init_sr(void)
1082{
1083 int rc;
1084
1085 rc = register_blkdev(SCSI_CDROM_MAJOR, "sr");
1086 if (rc)
1087 return rc;
Akinobu Mitada3962f2007-06-26 00:39:33 +09001088 rc = scsi_register_driver(&sr_template.gendrv);
1089 if (rc)
1090 unregister_blkdev(SCSI_CDROM_MAJOR, "sr");
1091
1092 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
1094
1095static void __exit exit_sr(void)
1096{
1097 scsi_unregister_driver(&sr_template.gendrv);
1098 unregister_blkdev(SCSI_CDROM_MAJOR, "sr");
1099}
1100
1101module_init(init_sr);
1102module_exit(exit_sr);
1103MODULE_LICENSE("GPL");