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