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