blob: 01699845c42c8434551043ab173b68514c63bf7e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070038#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 Ven0b950672006-01-11 13:16:10 +010046#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090047#include <linux/slab.h>
Aaron Lu6c7f1e22013-01-23 15:09:31 +080048#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#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 Bottomley820732b2005-06-12 22:21:29 -050055#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <scsi/scsi_eh.h>
57#include <scsi/scsi_host.h>
58#include <scsi/scsi_ioctl.h> /* For the door lock/unlock commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#include "scsi_logging.h"
61#include "sr.h"
62
63
Rene Hermanf018fa52006-03-08 00:14:20 -080064MODULE_DESCRIPTION("SCSI cdrom (sr) driver");
65MODULE_LICENSE("GPL");
66MODULE_ALIAS_BLOCKDEV_MAJOR(SCSI_CDROM_MAJOR);
Michael Tokarevd7b8bcb2006-10-27 16:02:37 +040067MODULE_ALIAS_SCSI_DEVICE(TYPE_ROM);
68MODULE_ALIAS_SCSI_DEVICE(TYPE_WORM);
Rene Hermanf018fa52006-03-08 00:14:20 -080069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define SR_DISKS 256
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#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 Hellwig6a2900b2006-03-23 03:00:15 -080075 CDC_PLAY_AUDIO|CDC_RESET|CDC_DRIVE_STATUS| \
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 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 Bergmann2a48fc02010-06-02 14:28:52 +020079static DEFINE_MUTEX(sr_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static int sr_probe(struct device *);
81static int sr_remove(struct device *);
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +020082static int sr_init_command(struct scsi_cmnd *SCpnt);
Linus Torvalds7b3d9542008-01-06 10:17:12 -080083static int sr_done(struct scsi_cmnd *);
Aaron Lu6c7f1e22013-01-23 15:09:31 +080084static int sr_runtime_suspend(struct device *dev);
85
Julia Lawalla816b4c2016-08-28 22:17:38 +020086static const struct dev_pm_ops sr_pm_ops = {
Aaron Lu6c7f1e22013-01-23 15:09:31 +080087 .runtime_suspend = sr_runtime_suspend,
88};
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90static struct scsi_driver sr_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 .gendrv = {
92 .name = "sr",
Christoph Hellwig3af6b352014-11-12 18:34:51 +010093 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 .probe = sr_probe,
95 .remove = sr_remove,
Aaron Lu6c7f1e22013-01-23 15:09:31 +080096 .pm = &sr_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 },
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +020098 .init_command = sr_init_command,
Linus Torvalds7b3d9542008-01-06 10:17:12 -080099 .done = sr_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100};
101
102static unsigned long sr_index_bits[SR_DISKS / BITS_PER_LONG];
103static 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 Ven0b950672006-01-11 13:16:10 +0100108static DEFINE_MUTEX(sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110static int sr_open(struct cdrom_device_info *, int);
111static void sr_release(struct cdrom_device_info *);
112
113static void get_sectorsize(struct scsi_cd *);
114static void get_capabilities(struct scsi_cd *);
115
Tejun Heo93aae172010-12-16 17:52:17 +0100116static unsigned int sr_check_events(struct cdrom_device_info *cdi,
117 unsigned int clearing, int slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118static int sr_packet(struct cdrom_device_info *, struct packet_command *);
119
120static struct cdrom_device_ops sr_dops = {
121 .open = sr_open,
122 .release = sr_release,
123 .drive_status = sr_drive_status,
Tejun Heo93aae172010-12-16 17:52:17 +0100124 .check_events = sr_check_events,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .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 Torvalds1da177e2005-04-16 15:20:36 -0700132 .capability = SR_CAPABILITIES,
133 .generic_packet = sr_packet,
134};
135
136static void sr_kref_release(struct kref *kref);
137
138static inline struct scsi_cd *scsi_cd(struct gendisk *disk)
139{
140 return container_of(disk->private_data, struct scsi_cd, driver);
141}
142
Aaron Lu6c7f1e22013-01-23 15:09:31 +0800143static int sr_runtime_suspend(struct device *dev)
144{
145 struct scsi_cd *cd = dev_get_drvdata(dev);
146
Alan Stern13b43892016-01-20 11:26:01 -0500147 if (!cd) /* E.g.: runtime suspend following sr_remove() */
148 return 0;
149
Aaron Lu6c7f1e22013-01-23 15:09:31 +0800150 if (cd->media_present)
151 return -EBUSY;
152 else
153 return 0;
154}
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/*
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 */
160static inline struct scsi_cd *scsi_cd_get(struct gendisk *disk)
161{
162 struct scsi_cd *cd = NULL;
163
Arjan van de Ven0b950672006-01-11 13:16:10 +0100164 mutex_lock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (disk->private_data == NULL)
166 goto out;
167 cd = scsi_cd(disk);
168 kref_get(&cd->kref);
Aaron Lu6627b382013-10-28 15:27:49 +0800169 if (scsi_device_get(cd->device)) {
170 kref_put(&cd->kref, sr_kref_release);
171 cd = NULL;
172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 out:
Arjan van de Ven0b950672006-01-11 13:16:10 +0100174 mutex_unlock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return cd;
176}
177
Arjan van de Ven858119e2006-01-14 13:20:43 -0800178static void scsi_cd_put(struct scsi_cd *cd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 struct scsi_device *sdev = cd->device;
181
Arjan van de Ven0b950672006-01-11 13:16:10 +0100182 mutex_lock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 kref_put(&cd->kref, sr_kref_release);
184 scsi_device_put(sdev);
Arjan van de Ven0b950672006-01-11 13:16:10 +0100185 mutex_unlock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
Tejun Heo93aae172010-12-16 17:52:17 +0100188static 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 Torvalds1da177e2005-04-16 15:20:36 -0700203
Tejun Heo93aae172010-12-16 17:52:17 +0100204 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 */
229static unsigned int sr_check_events(struct cdrom_device_info *cdi,
230 unsigned int clearing, int slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 struct scsi_cd *cd = cdi->handle;
Tejun Heo93aae172010-12-16 17:52:17 +0100233 bool last_present;
234 struct scsi_sense_hdr sshdr;
235 unsigned int events;
236 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Tejun Heo93aae172010-12-16 17:52:17 +0100238 /* no changer support */
239 if (CDSL_CURRENT != slot)
240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Tejun Heo93aae172010-12-16 17:52:17 +0100242 events = sr_get_events(cd->device);
Kay Sievers79b96772011-06-30 15:03:48 +0200243 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 Heo93aae172010-12-16 17:52:17 +0100256 /*
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 Sievers79b96772011-06-30 15:03:48 +0200261 if (cd->device->changed) {
262 events |= DISK_EVENT_MEDIA_CHANGE;
263 cd->device->changed = 0;
264 cd->tur_changed = true;
265 }
Tejun Heo93aae172010-12-16 17:52:17 +0100266
Kay Sievers79b96772011-06-30 15:03:48 +0200267 if (!(clearing & DISK_EVENT_MEDIA_CHANGE))
268 return events;
269do_tur:
Tejun Heo93aae172010-12-16 17:52:17 +0100270 /* 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 Heo638428e2010-12-09 11:18:42 +0100274 /*
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 Heo93aae172010-12-16 17:52:17 +0100279 cd->media_present = scsi_status_is_good(ret) ||
280 (scsi_sense_valid(&sshdr) && sshdr.asc != 0x3a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Tejun Heo93aae172010-12-16 17:52:17 +0100282 if (last_present != cd->media_present)
Kay Sievers79b96772011-06-30 15:03:48 +0200283 cd->device->changed = 1;
284
Tejun Heo93aae172010-12-16 17:52:17 +0100285 if (cd->device->changed) {
286 events |= DISK_EVENT_MEDIA_CHANGE;
287 cd->device->changed = 0;
Kay Sievers79b96772011-06-30 15:03:48 +0200288 cd->tur_changed = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
Kay Sievers285e9672007-08-14 14:10:39 +0200290
Kay Sievers79b96772011-06-30 15:03:48 +0200291 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 Reinecke96eefad2014-06-25 16:39:54 +0200298 sr_printk(KERN_WARNING, cd,
299 "GET_EVENT and TUR disagree continuously, suppress GET_EVENT events\n");
Kay Sievers79b96772011-06-30 15:03:48 +0200300 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 Heo93aae172010-12-16 17:52:17 +0100309 return events;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
Tejun Heo93aae172010-12-16 17:52:17 +0100311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312/*
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800313 * sr_done is the interrupt routine for the device driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 *
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800315 * It will be notified on the end of a SCSI read / write, and will take one
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 * of several actions based on success or failure.
317 */
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800318static int sr_done(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320 int result = SCpnt->result;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200321 int this_count = scsi_bufflen(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 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 Reinecke96eefad2014-06-25 16:39:54 +0200328 scmd_printk(KERN_INFO, SCpnt, "done: %x\n", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329#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 Torvalds1da177e2005-04-16 15:20:36 -0700345 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 Heo83096eb2009-05-07 22:24:39 +0900357 good_bytes = (error_sector -
358 blk_rq_pos(SCpnt->request)) << 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 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 Torvalds1da177e2005-04-16 15:20:36 -0700375 good_bytes = this_count;
376 break;
377
378 default:
379 break;
380 }
381 }
382
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800383 return good_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +0200386static int sr_init_command(struct scsi_cmnd *SCpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700388 int block = 0, this_count, s_size;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500389 struct scsi_cd *cd;
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +0200390 struct request *rq = SCpnt->request;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500391 int ret;
392
Christoph Hellwig3c356bd2014-09-05 18:20:23 -0700393 ret = scsi_init_io(SCpnt);
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500394 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 Torvalds1da177e2005-04-16 15:20:36 -0700402
Hannes Reinecke96eefad2014-06-25 16:39:54 +0200403 SCSI_LOG_HLQUEUE(1, scmd_printk(KERN_INFO, SCpnt,
404 "Doing sr request, block = %d\n", block));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 if (!cd->device || !scsi_device_online(cd->device)) {
Hannes Reinecke96eefad2014-06-25 16:39:54 +0200407 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 Bottomley7f9a6bc2007-08-04 10:06:25 -0500411 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
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 Bottomley7f9a6bc2007-08-04 10:06:25 -0500419 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421
422 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * 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 Reinecke96eefad2014-06-25 16:39:54 +0200431 scmd_printk(KERN_INFO, SCpnt,
432 "can't switch blocksize: in interrupt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434
435 if (s_size != 512 && s_size != 1024 && s_size != 2048) {
Jeff Garzik3bf743e2005-10-24 18:04:06 -0400436 scmd_printk(KERN_ERR, SCpnt, "bad sector size %d\n", s_size);
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500437 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500440 if (rq_data_dir(rq) == WRITE) {
Christoph Hellwigfd2eb902014-07-18 16:59:19 +0200441 if (!cd->writeable)
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500442 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 SCpnt->cmnd[0] = WRITE_10;
Hannes Reinecke96eefad2014-06-25 16:39:54 +0200444 cd->cdi.media_written = 1;
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500445 } else if (rq_data_dir(rq) == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 SCpnt->cmnd[0] = READ_10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 } else {
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500448 blk_dump_rq_flags(rq, "Unknown sr command");
449 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451
452 {
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200453 struct scatterlist *sg;
454 int i, size = 0, sg_count = scsi_sg_count(SCpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200456 scsi_for_each_sg(SCpnt, sg, sg_count, i)
457 size += sg->length;
458
459 if (size != scsi_bufflen(SCpnt)) {
Jeff Garzik3bf743e2005-10-24 18:04:06 -0400460 scmd_printk(KERN_ERR, SCpnt,
461 "mismatch count %d, bytes %d\n",
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200462 size, scsi_bufflen(SCpnt));
463 if (scsi_bufflen(SCpnt) > size)
464 SCpnt->sdb.length = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
466 }
467
468 /*
469 * request doesn't start on hw block boundary, add scatter pads
470 */
Tejun Heo83096eb2009-05-07 22:24:39 +0900471 if (((unsigned int)blk_rq_pos(rq) % (s_size >> 9)) ||
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200472 (scsi_bufflen(SCpnt) % s_size)) {
Jeff Garzik3bf743e2005-10-24 18:04:06 -0400473 scmd_printk(KERN_NOTICE, SCpnt, "unaligned transfer\n");
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500474 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200477 this_count = (scsi_bufflen(SCpnt) >> 9) / (s_size >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479
Hannes Reinecke96eefad2014-06-25 16:39:54 +0200480 SCSI_LOG_HLQUEUE(2, scmd_printk(KERN_INFO, SCpnt,
481 "%s %d/%u 512 byte blocks.\n",
482 (rq_data_dir(rq) == WRITE) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 "writing" : "reading",
Hannes Reinecke96eefad2014-06-25 16:39:54 +0200484 this_count, blk_rq_sectors(rq)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 SCpnt->cmnd[1] = 0;
Tejun Heo83096eb2009-05-07 22:24:39 +0900487 block = (unsigned int)blk_rq_pos(rq) / (s_size >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 if (this_count > 0xffff) {
490 this_count = 0xffff;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200491 SCpnt->sdb.length = this_count * s_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
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 Torvalds1da177e2005-04-16 15:20:36 -0700509 SCpnt->allowed = MAX_RETRIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 * This indicates that the command is ready from our end to be
513 * queued.
514 */
James Bottomley7f9a6bc2007-08-04 10:06:25 -0500515 ret = BLKPREP_OK;
516 out:
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +0200517 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Al Viro40cc51b2008-03-02 10:41:28 -0500520static int sr_block_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200522 struct scsi_cd *cd;
Al Viro40cc51b2008-03-02 10:41:28 -0500523 int ret = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Maurizio Lombardi94ee9a42018-03-09 13:59:06 +0100525 check_disk_change(bdev);
526
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200527 mutex_lock(&sr_mutex);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200528 cd = scsi_cd_get(bdev->bd_disk);
Al Viro40cc51b2008-03-02 10:41:28 -0500529 if (cd) {
530 ret = cdrom_open(&cd->cdi, bdev, mode);
531 if (ret)
532 scsi_cd_put(cd);
533 }
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200534 mutex_unlock(&sr_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return ret;
536}
537
Al Virodb2a1442013-05-05 21:52:57 -0400538static void sr_block_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Al Viro40cc51b2008-03-02 10:41:28 -0500540 struct scsi_cd *cd = scsi_cd(disk);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200541 mutex_lock(&sr_mutex);
Al Viro40cc51b2008-03-02 10:41:28 -0500542 cdrom_release(&cd->cdi, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 scsi_cd_put(cd);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200544 mutex_unlock(&sr_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Al Viro40cc51b2008-03-02 10:41:28 -0500547static int sr_block_ioctl(struct block_device *bdev, fmode_t mode, unsigned cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 unsigned long arg)
549{
Al Viro40cc51b2008-03-02 10:41:28 -0500550 struct scsi_cd *cd = scsi_cd(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 struct scsi_device *sdev = cd->device;
Christoph Hellwig6a2900b2006-03-23 03:00:15 -0800552 void __user *argp = (void __user *)arg;
553 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200555 mutex_lock(&sr_mutex);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200556
Christoph Hellwig906d15f2014-10-11 16:25:31 +0200557 ret = scsi_ioctl_block_when_processing_errors(sdev, cmd,
558 (mode & FMODE_NDELAY) != 0);
559 if (ret)
560 goto out;
561
Christoph Hellwig6a2900b2006-03-23 03:00:15 -0800562 /*
563 * Send SCSI addressing ioctls directly to mid level, send other
564 * ioctls to cdrom/block level.
565 */
566 switch (cmd) {
567 case SCSI_IOCTL_GET_IDLUN:
568 case SCSI_IOCTL_GET_BUS_NUMBER:
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200569 ret = scsi_ioctl(sdev, cmd, argp);
570 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
Christoph Hellwig6a2900b2006-03-23 03:00:15 -0800572
Al Viro40cc51b2008-03-02 10:41:28 -0500573 ret = cdrom_ioctl(&cd->cdi, bdev, mode, cmd, arg);
Tejun Heo63972562007-01-02 17:41:04 +0900574 if (ret != -ENOSYS)
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200575 goto out;
Christoph Hellwig6a2900b2006-03-23 03:00:15 -0800576
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200577 ret = scsi_ioctl(sdev, cmd, argp);
578
579out:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200580 mutex_unlock(&sr_mutex);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200581 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Tejun Heo93aae172010-12-16 17:52:17 +0100584static unsigned int sr_block_check_events(struct gendisk *disk,
585 unsigned int clearing)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Jens Axboeb2666b22018-04-11 11:26:09 -0600587 unsigned int ret = 0;
588 struct scsi_cd *cd;
Aaron Lu6c7f1e22013-01-23 15:09:31 +0800589
Jens Axboeb2666b22018-04-11 11:26:09 -0600590 cd = scsi_cd_get(disk);
591 if (!cd)
Aaron Lu6627b382013-10-28 15:27:49 +0800592 return 0;
Aaron Lu6c7f1e22013-01-23 15:09:31 +0800593
Jens Axboeb2666b22018-04-11 11:26:09 -0600594 if (!atomic_read(&cd->device->disk_events_disable_depth))
595 ret = cdrom_check_events(&cd->cdi, clearing);
596
597 scsi_cd_put(cd);
598 return ret;
Tejun Heo93aae172010-12-16 17:52:17 +0100599}
600
601static int sr_block_revalidate_disk(struct gendisk *disk)
602{
Tejun Heo93aae172010-12-16 17:52:17 +0100603 struct scsi_sense_hdr sshdr;
Jens Axboeb2666b22018-04-11 11:26:09 -0600604 struct scsi_cd *cd;
605
606 cd = scsi_cd_get(disk);
607 if (!cd)
608 return -ENXIO;
Tejun Heo93aae172010-12-16 17:52:17 +0100609
610 /* if the unit is not ready, nothing more to do */
611 if (scsi_test_unit_ready(cd->device, SR_TIMEOUT, MAX_RETRIES, &sshdr))
Aaron Lu6c7f1e22013-01-23 15:09:31 +0800612 goto out;
Tejun Heo93aae172010-12-16 17:52:17 +0100613
614 sr_cd_check(&cd->cdi);
615 get_sectorsize(cd);
Aaron Lu6c7f1e22013-01-23 15:09:31 +0800616out:
Jens Axboeb2666b22018-04-11 11:26:09 -0600617 scsi_cd_put(cd);
Tejun Heo93aae172010-12-16 17:52:17 +0100618 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700621static const struct block_device_operations sr_bdops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
623 .owner = THIS_MODULE,
Al Viro40cc51b2008-03-02 10:41:28 -0500624 .open = sr_block_open,
625 .release = sr_block_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200626 .ioctl = sr_block_ioctl,
Tejun Heo93aae172010-12-16 17:52:17 +0100627 .check_events = sr_block_check_events,
628 .revalidate_disk = sr_block_revalidate_disk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /*
630 * No compat_ioctl for now because sr_block_ioctl never
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300631 * seems to pass arbitrary ioctls down to host drivers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 */
633};
634
635static int sr_open(struct cdrom_device_info *cdi, int purpose)
636{
637 struct scsi_cd *cd = cdi->handle;
638 struct scsi_device *sdev = cd->device;
639 int retval;
640
641 /*
642 * If the device is in error recovery, wait until it is done.
643 * If the device is offline, then disallow any access to it.
644 */
645 retval = -ENXIO;
646 if (!scsi_block_when_processing_errors(sdev))
647 goto error_out;
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return 0;
650
651error_out:
652 return retval;
653}
654
655static void sr_release(struct cdrom_device_info *cdi)
656{
657 struct scsi_cd *cd = cdi->handle;
658
659 if (cd->device->sector_size > 2048)
660 sr_set_blocklength(cd, 2048);
661
662}
663
664static int sr_probe(struct device *dev)
665{
666 struct scsi_device *sdev = to_scsi_device(dev);
667 struct gendisk *disk;
668 struct scsi_cd *cd;
669 int minor, error;
670
Subhash Jadavani6fe8c1d2014-09-10 14:54:09 +0300671 scsi_autopm_get_device(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 error = -ENODEV;
673 if (sdev->type != TYPE_ROM && sdev->type != TYPE_WORM)
674 goto fail;
675
676 error = -ENOMEM;
Jes Sorensen24669f752006-01-16 10:31:18 -0500677 cd = kzalloc(sizeof(*cd), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (!cd)
679 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 kref_init(&cd->kref);
682
683 disk = alloc_disk(1);
684 if (!disk)
685 goto fail_free;
686
687 spin_lock(&sr_index_lock);
688 minor = find_first_zero_bit(sr_index_bits, SR_DISKS);
689 if (minor == SR_DISKS) {
690 spin_unlock(&sr_index_lock);
691 error = -EBUSY;
692 goto fail_put;
693 }
694 __set_bit(minor, sr_index_bits);
695 spin_unlock(&sr_index_lock);
696
697 disk->major = SCSI_CDROM_MAJOR;
698 disk->first_minor = minor;
699 sprintf(disk->disk_name, "sr%d", minor);
700 disk->fops = &sr_bdops;
Tejun Heod4dc2102011-04-21 20:54:46 +0200701 disk->flags = GENHD_FL_CD | GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE;
Tejun Heo93aae172010-12-16 17:52:17 +0100702 disk->events = DISK_EVENT_MEDIA_CHANGE | DISK_EVENT_EJECT_REQUEST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Jens Axboe242f9dc2008-09-14 05:55:09 -0700704 blk_queue_rq_timeout(sdev->request_queue, SR_TIMEOUT);
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 cd->device = sdev;
707 cd->disk = disk;
708 cd->driver = &sr_template;
709 cd->disk = disk;
710 cd->capacity = 0x1fffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 cd->device->changed = 1; /* force recheck CD type */
Tejun Heo93aae172010-12-16 17:52:17 +0100712 cd->media_present = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 cd->use = 1;
714 cd->readcd_known = 0;
715 cd->readcd_cdda = 0;
716
717 cd->cdi.ops = &sr_dops;
718 cd->cdi.handle = cd;
719 cd->cdi.mask = 0;
720 cd->cdi.capacity = 1;
721 sprintf(cd->cdi.name, "sr%d", minor);
722
723 sdev->sector_size = 2048; /* A guess, just in case */
724
725 /* FIXME: need to handle a get_capabilities failure properly ?? */
726 get_capabilities(cd);
727 sr_vendor_init(cd);
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 set_capacity(disk, cd->capacity);
730 disk->private_data = &cd->driver;
731 disk->queue = sdev->request_queue;
732 cd->cdi.disk = disk;
733
734 if (register_cdrom(&cd->cdi))
735 goto fail_put;
736
Aaron Lu6627b382013-10-28 15:27:49 +0800737 /*
738 * Initialize block layer runtime PM stuffs before the
739 * periodic event checking request gets started in add_disk.
740 */
741 blk_pm_runtime_init(sdev->request_queue, dev);
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 dev_set_drvdata(dev, cd);
744 disk->flags |= GENHD_FL_REMOVABLE;
Dan Williams0d52c7562016-06-15 19:44:20 -0700745 device_add_disk(&sdev->sdev_gendev, disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
James Bottomley9ccfc752005-10-02 11:45:08 -0500747 sdev_printk(KERN_DEBUG, sdev,
748 "Attached scsi CD-ROM %s\n", cd->cdi.name);
Aaron Lu6c7f1e22013-01-23 15:09:31 +0800749 scsi_autopm_put_device(cd->device);
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return 0;
752
753fail_put:
754 put_disk(disk);
755fail_free:
756 kfree(cd);
757fail:
Subhash Jadavani6fe8c1d2014-09-10 14:54:09 +0300758 scsi_autopm_put_device(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return error;
760}
761
762
763static void get_sectorsize(struct scsi_cd *cd)
764{
765 unsigned char cmd[10];
FUJITA Tomonori62858da2008-07-04 09:31:50 +0200766 unsigned char buffer[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 int the_result, retries = 3;
768 int sector_size;
Jens Axboe165125e2007-07-24 09:28:11 +0200769 struct request_queue *queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 do {
772 cmd[0] = READ_CAPACITY;
773 memset((void *) &cmd[1], 0, 9);
FUJITA Tomonori62858da2008-07-04 09:31:50 +0200774 memset(buffer, 0, sizeof(buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 /* Do the command and wait.. */
James Bottomley820732b2005-06-12 22:21:29 -0500777 the_result = scsi_execute_req(cd->device, cmd, DMA_FROM_DEVICE,
FUJITA Tomonori62858da2008-07-04 09:31:50 +0200778 buffer, sizeof(buffer), NULL,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900779 SR_TIMEOUT, MAX_RETRIES, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 retries--;
782
783 } while (the_result && retries);
784
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (the_result) {
787 cd->capacity = 0x1fffff;
788 sector_size = 2048; /* A guess, just in case */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 } else {
Tejun Heo59151362009-09-04 11:38:02 +0900790 long last_written;
791
792 cd->capacity = 1 + ((buffer[0] << 24) | (buffer[1] << 16) |
793 (buffer[2] << 8) | buffer[3]);
794 /*
795 * READ_CAPACITY doesn't return the correct size on
796 * certain UDF media. If last_written is larger, use
797 * it instead.
798 *
799 * http://bugzilla.kernel.org/show_bug.cgi?id=9668
800 */
801 if (!cdrom_get_last_written(&cd->cdi, &last_written))
802 cd->capacity = max_t(long, cd->capacity, last_written);
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 sector_size = (buffer[4] << 24) |
805 (buffer[5] << 16) | (buffer[6] << 8) | buffer[7];
806 switch (sector_size) {
807 /*
808 * HP 4020i CD-Recorder reports 2340 byte sectors
809 * Philips CD-Writers report 2352 byte sectors
810 *
811 * Use 2k sectors for them..
812 */
813 case 0:
814 case 2340:
815 case 2352:
816 sector_size = 2048;
817 /* fall through */
818 case 2048:
819 cd->capacity *= 4;
820 /* fall through */
821 case 512:
822 break;
823 default:
Hannes Reinecke96eefad2014-06-25 16:39:54 +0200824 sr_printk(KERN_INFO, cd,
825 "unsupported sector size %d.", sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 cd->capacity = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
828
829 cd->device->sector_size = sector_size;
830
831 /*
832 * Add this so that we have the ability to correctly gauge
833 * what the device is capable of.
834 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 set_capacity(cd->disk, cd->capacity);
836 }
837
838 queue = cd->device->request_queue;
Martin K. Petersene1defc42009-05-22 17:17:49 -0400839 blk_queue_logical_block_size(queue, sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
FUJITA Tomonori62858da2008-07-04 09:31:50 +0200841 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
844static void get_capabilities(struct scsi_cd *cd)
845{
846 unsigned char *buffer;
847 struct scsi_mode_data data;
James Bottomley820732b2005-06-12 22:21:29 -0500848 struct scsi_sense_hdr sshdr;
Martin K. Petersenc80c1582017-03-17 08:47:14 -0400849 unsigned int ms_len = 128;
James Bottomley38582a62008-02-06 13:01:58 -0600850 int rc, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Arjan van de Ven0ad78202005-11-28 16:22:25 +0100852 static const char *loadmech[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 {
854 "caddy",
855 "tray",
856 "pop-up",
857 "",
858 "changer",
859 "cartridge changer",
860 "",
861 ""
862 };
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 /* allocate transfer buffer */
866 buffer = kmalloc(512, GFP_KERNEL | GFP_DMA);
867 if (!buffer) {
Hannes Reinecke96eefad2014-06-25 16:39:54 +0200868 sr_printk(KERN_ERR, cd, "out of memory.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return;
870 }
871
James Bottomley38582a62008-02-06 13:01:58 -0600872 /* eat unit attentions */
Tejun Heo9f8a2c22010-12-08 20:57:40 +0100873 scsi_test_unit_ready(cd->device, SR_TIMEOUT, MAX_RETRIES, &sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 /* ask for mode page 0x2a */
Martin K. Petersenc80c1582017-03-17 08:47:14 -0400876 rc = scsi_mode_sense(cd->device, 0, 0x2a, buffer, ms_len,
James Bottomley1cf72692005-08-28 11:27:01 -0500877 SR_TIMEOUT, 3, &data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Martin K. Petersenc80c1582017-03-17 08:47:14 -0400879 if (!scsi_status_is_good(rc) || data.length > ms_len ||
880 data.header_length + data.block_descriptor_length > data.length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 /* failed, drive doesn't have capabilities mode page */
882 cd->cdi.speed = 1;
883 cd->cdi.mask |= (CDC_CD_R | CDC_CD_RW | CDC_DVD_R |
Chuck Ebbertbcc1e382006-01-11 23:58:40 -0500884 CDC_DVD | CDC_DVD_RAM |
885 CDC_SELECT_DISC | CDC_SELECT_SPEED |
886 CDC_MRW | CDC_MRW_W | CDC_RAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 kfree(buffer);
Hannes Reinecke96eefad2014-06-25 16:39:54 +0200888 sr_printk(KERN_INFO, cd, "scsi-1 drive");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return;
890 }
891
892 n = data.header_length + data.block_descriptor_length;
893 cd->cdi.speed = ((buffer[n + 8] << 8) + buffer[n + 9]) / 176;
894 cd->readcd_known = 1;
895 cd->readcd_cdda = buffer[n + 5] & 0x01;
896 /* print some capability bits */
Hannes Reinecke96eefad2014-06-25 16:39:54 +0200897 sr_printk(KERN_INFO, cd,
898 "scsi3-mmc drive: %dx/%dx %s%s%s%s%s%s\n",
899 ((buffer[n + 14] << 8) + buffer[n + 15]) / 176,
900 cd->cdi.speed,
901 buffer[n + 3] & 0x01 ? "writer " : "", /* CD Writer */
902 buffer[n + 3] & 0x20 ? "dvd-ram " : "",
903 buffer[n + 2] & 0x02 ? "cd/rw " : "", /* can read rewriteable */
904 buffer[n + 4] & 0x20 ? "xa/form2 " : "", /* can read xa/from2 */
905 buffer[n + 5] & 0x01 ? "cdda " : "", /* can read audio data */
906 loadmech[buffer[n + 6] >> 5]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if ((buffer[n + 6] >> 5) == 0)
908 /* caddy drives can't close tray... */
909 cd->cdi.mask |= CDC_CLOSE_TRAY;
910 if ((buffer[n + 2] & 0x8) == 0)
911 /* not a DVD drive */
912 cd->cdi.mask |= CDC_DVD;
Hannes Reinecke96eefad2014-06-25 16:39:54 +0200913 if ((buffer[n + 3] & 0x20) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 /* can't write DVD-RAM media */
915 cd->cdi.mask |= CDC_DVD_RAM;
916 if ((buffer[n + 3] & 0x10) == 0)
917 /* can't write DVD-R media */
918 cd->cdi.mask |= CDC_DVD_R;
919 if ((buffer[n + 3] & 0x2) == 0)
920 /* can't write CD-RW media */
921 cd->cdi.mask |= CDC_CD_RW;
922 if ((buffer[n + 3] & 0x1) == 0)
923 /* can't write CD-R media */
924 cd->cdi.mask |= CDC_CD_R;
925 if ((buffer[n + 6] & 0x8) == 0)
926 /* can't eject */
927 cd->cdi.mask |= CDC_OPEN_TRAY;
928
929 if ((buffer[n + 6] >> 5) == mechtype_individual_changer ||
930 (buffer[n + 6] >> 5) == mechtype_cartridge_changer)
931 cd->cdi.capacity =
932 cdrom_number_of_slots(&cd->cdi);
933 if (cd->cdi.capacity <= 1)
934 /* not a changer */
935 cd->cdi.mask |= CDC_SELECT_DISC;
936 /*else I don't think it can close its tray
937 cd->cdi.mask |= CDC_CLOSE_TRAY; */
938
939 /*
940 * if DVD-RAM, MRW-W or CD-RW, we are randomly writable
941 */
942 if ((cd->cdi.mask & (CDC_DVD_RAM | CDC_MRW_W | CDC_RAM | CDC_CD_RW)) !=
943 (CDC_DVD_RAM | CDC_MRW_W | CDC_RAM | CDC_CD_RW)) {
Christoph Hellwigfd2eb902014-07-18 16:59:19 +0200944 cd->writeable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 kfree(buffer);
948}
949
950/*
951 * sr_packet() is the entry point for the generic commands generated
Hannes Reinecke96eefad2014-06-25 16:39:54 +0200952 * by the Uniform CD-ROM layer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 */
954static int sr_packet(struct cdrom_device_info *cdi,
955 struct packet_command *cgc)
956{
Hans de Goede8e04d802010-10-01 14:20:08 -0700957 struct scsi_cd *cd = cdi->handle;
958 struct scsi_device *sdev = cd->device;
959
960 if (cgc->cmd[0] == GPCMD_READ_DISC_INFO && sdev->no_read_disc_info)
961 return -EDRIVE_CANT_DO_THIS;
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 if (cgc->timeout <= 0)
964 cgc->timeout = IOCTL_TIMEOUT;
965
Hans de Goede8e04d802010-10-01 14:20:08 -0700966 sr_do_ioctl(cd, cgc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 return cgc->stat;
969}
970
971/**
972 * sr_kref_release - Called to free the scsi_cd structure
973 * @kref: pointer to embedded kref
974 *
Arjan van de Ven0b950672006-01-11 13:16:10 +0100975 * sr_ref_mutex must be held entering this routine. Because it is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 * called on last put, you should always use the scsi_cd_get()
977 * scsi_cd_put() helpers which manipulate the semaphore directly
978 * and never do a direct kref_put().
979 **/
980static void sr_kref_release(struct kref *kref)
981{
982 struct scsi_cd *cd = container_of(kref, struct scsi_cd, kref);
983 struct gendisk *disk = cd->disk;
984
985 spin_lock(&sr_index_lock);
Tejun Heof331c022008-09-03 09:01:48 +0200986 clear_bit(MINOR(disk_devt(disk)), sr_index_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 spin_unlock(&sr_index_lock);
988
989 unregister_cdrom(&cd->cdi);
990
991 disk->private_data = NULL;
992
993 put_disk(disk);
994
995 kfree(cd);
996}
997
998static int sr_remove(struct device *dev)
999{
1000 struct scsi_cd *cd = dev_get_drvdata(dev);
1001
Aaron Lu6c7f1e22013-01-23 15:09:31 +08001002 scsi_autopm_get_device(cd->device);
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 del_gendisk(cd->disk);
Alan Stern13b43892016-01-20 11:26:01 -05001005 dev_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Arjan van de Ven0b950672006-01-11 13:16:10 +01001007 mutex_lock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 kref_put(&cd->kref, sr_kref_release);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001009 mutex_unlock(&sr_ref_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 return 0;
1012}
1013
1014static int __init init_sr(void)
1015{
1016 int rc;
1017
1018 rc = register_blkdev(SCSI_CDROM_MAJOR, "sr");
1019 if (rc)
1020 return rc;
Akinobu Mitada3962f2007-06-26 00:39:33 +09001021 rc = scsi_register_driver(&sr_template.gendrv);
1022 if (rc)
1023 unregister_blkdev(SCSI_CDROM_MAJOR, "sr");
1024
1025 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
1028static void __exit exit_sr(void)
1029{
1030 scsi_unregister_driver(&sr_template.gendrv);
1031 unregister_blkdev(SCSI_CDROM_MAJOR, "sr");
1032}
1033
1034module_init(init_sr);
1035module_exit(exit_sr);
1036MODULE_LICENSE("GPL");