2 * Copyright (C) 2001 Jens Axboe <axboe@suse.de>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public Licens
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-
19 #include <linux/kernel.h>
20 #include <linux/errno.h>
21 #include <linux/string.h>
22 #include <linux/module.h>
23 #include <linux/blkdev.h>
24 #include <linux/completion.h>
25 #include <linux/cdrom.h>
26 #include <linux/slab.h>
27 #include <linux/times.h>
28 #include <asm/uaccess.h>
30 #include <scsi/scsi.h>
31 #include <scsi/scsi_ioctl.h>
32 #include <scsi/scsi_cmnd.h>
34 /* Command group 3 is reserved and should never be used. */
35 const unsigned char scsi_command_size[8] =
41 EXPORT_SYMBOL(scsi_command_size);
43 #define BLK_DEFAULT_TIMEOUT (60 * HZ)
47 static int sg_get_version(int __user *p)
49 static int sg_version_num = 30527;
50 return put_user(sg_version_num, p);
53 static int scsi_get_idlun(request_queue_t *q, int __user *p)
55 return put_user(0, p);
58 static int scsi_get_bus(request_queue_t *q, int __user *p)
60 return put_user(0, p);
63 static int sg_get_timeout(request_queue_t *q)
65 return q->sg_timeout / (HZ / USER_HZ);
68 static int sg_set_timeout(request_queue_t *q, int __user *p)
70 int timeout, err = get_user(timeout, p);
73 q->sg_timeout = timeout * (HZ / USER_HZ);
78 static int sg_get_reserved_size(request_queue_t *q, int __user *p)
80 return put_user(q->sg_reserved_size, p);
83 static int sg_set_reserved_size(request_queue_t *q, int __user *p)
85 int size, err = get_user(size, p);
92 if (size > (q->max_sectors << 9))
93 size = q->max_sectors << 9;
95 q->sg_reserved_size = size;
100 * will always return that we are ATAPI even for a real SCSI drive, I'm not
101 * so sure this is worth doing anything about (why would you care??)
103 static int sg_emulated_host(request_queue_t *q, int __user *p)
105 return put_user(1, p);
108 #define CMD_READ_SAFE 0x01
109 #define CMD_WRITE_SAFE 0x02
110 #define CMD_WARNED 0x04
111 #define safe_for_read(cmd) [cmd] = CMD_READ_SAFE
112 #define safe_for_write(cmd) [cmd] = CMD_WRITE_SAFE
114 static int verify_command(struct file *file, unsigned char *cmd)
116 static unsigned char cmd_type[256] = {
118 /* Basic read-only commands */
119 safe_for_read(TEST_UNIT_READY),
120 safe_for_read(REQUEST_SENSE),
121 safe_for_read(READ_6),
122 safe_for_read(READ_10),
123 safe_for_read(READ_12),
124 safe_for_read(READ_16),
125 safe_for_read(READ_BUFFER),
126 safe_for_read(READ_LONG),
127 safe_for_read(INQUIRY),
128 safe_for_read(MODE_SENSE),
129 safe_for_read(MODE_SENSE_10),
130 safe_for_read(LOG_SENSE),
131 safe_for_read(START_STOP),
132 safe_for_read(GPCMD_VERIFY_10),
133 safe_for_read(VERIFY_16),
135 /* Audio CD commands */
136 safe_for_read(GPCMD_PLAY_CD),
137 safe_for_read(GPCMD_PLAY_AUDIO_10),
138 safe_for_read(GPCMD_PLAY_AUDIO_MSF),
139 safe_for_read(GPCMD_PLAY_AUDIO_TI),
140 safe_for_read(GPCMD_PAUSE_RESUME),
142 /* CD/DVD data reading */
143 safe_for_read(GPCMD_READ_BUFFER_CAPACITY),
144 safe_for_read(GPCMD_READ_CD),
145 safe_for_read(GPCMD_READ_CD_MSF),
146 safe_for_read(GPCMD_READ_DISC_INFO),
147 safe_for_read(GPCMD_READ_CDVD_CAPACITY),
148 safe_for_read(GPCMD_READ_DVD_STRUCTURE),
149 safe_for_read(GPCMD_READ_HEADER),
150 safe_for_read(GPCMD_READ_TRACK_RZONE_INFO),
151 safe_for_read(GPCMD_READ_SUBCHANNEL),
152 safe_for_read(GPCMD_READ_TOC_PMA_ATIP),
153 safe_for_read(GPCMD_REPORT_KEY),
154 safe_for_read(GPCMD_SCAN),
155 safe_for_read(GPCMD_GET_CONFIGURATION),
156 safe_for_read(GPCMD_READ_FORMAT_CAPACITIES),
157 safe_for_read(GPCMD_GET_EVENT_STATUS_NOTIFICATION),
158 safe_for_read(GPCMD_GET_PERFORMANCE),
159 safe_for_read(GPCMD_SEEK),
160 safe_for_read(GPCMD_STOP_PLAY_SCAN),
162 /* Basic writing commands */
163 safe_for_write(WRITE_6),
164 safe_for_write(WRITE_10),
165 safe_for_write(WRITE_VERIFY),
166 safe_for_write(WRITE_12),
167 safe_for_write(WRITE_VERIFY_12),
168 safe_for_write(WRITE_16),
169 safe_for_write(WRITE_LONG),
170 safe_for_write(ERASE),
171 safe_for_write(GPCMD_MODE_SELECT_10),
172 safe_for_write(MODE_SELECT),
173 safe_for_write(LOG_SELECT),
174 safe_for_write(GPCMD_BLANK),
175 safe_for_write(GPCMD_CLOSE_TRACK),
176 safe_for_write(GPCMD_FLUSH_CACHE),
177 safe_for_write(GPCMD_FORMAT_UNIT),
178 safe_for_write(GPCMD_REPAIR_RZONE_TRACK),
179 safe_for_write(GPCMD_RESERVE_RZONE_TRACK),
180 safe_for_write(GPCMD_SEND_DVD_STRUCTURE),
181 safe_for_write(GPCMD_SEND_EVENT),
182 safe_for_write(GPCMD_SEND_KEY),
183 safe_for_write(GPCMD_SEND_OPC),
184 safe_for_write(GPCMD_SEND_CUE_SHEET),
185 safe_for_write(GPCMD_SET_SPEED),
186 safe_for_write(GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL),
187 safe_for_write(GPCMD_LOAD_UNLOAD),
188 safe_for_write(GPCMD_SET_STREAMING),
190 unsigned char type = cmd_type[cmd[0]];
192 /* Anybody who can open the device can do a read-safe command */
193 if (type & CMD_READ_SAFE)
196 /* Write-safe commands just require a writable open.. */
197 if (type & CMD_WRITE_SAFE) {
198 if (file->f_mode & FMODE_WRITE)
203 cmd_type[cmd[0]] = CMD_WARNED;
204 printk(KERN_WARNING "scsi: unknown opcode 0x%02x\n", cmd[0]);
207 /* And root can do any command.. */
208 if (capable(CAP_SYS_RAWIO))
211 /* Otherwise fail it with an "Operation not permitted" */
215 static int sg_io(struct file *file, request_queue_t *q,
216 struct gendisk *bd_disk, struct sg_io_hdr *hdr)
218 unsigned long start_time;
219 int writing = 0, ret = 0;
222 char sense[SCSI_SENSE_BUFFERSIZE];
223 unsigned char cmd[BLK_MAX_CDB];
225 if (hdr->interface_id != 'S')
227 if (hdr->cmd_len > BLK_MAX_CDB)
229 if (copy_from_user(cmd, hdr->cmdp, hdr->cmd_len))
231 if (verify_command(file, cmd))
234 if (hdr->dxfer_len > (q->max_sectors << 9))
238 switch (hdr->dxfer_direction) {
241 case SG_DXFER_TO_FROM_DEV:
242 case SG_DXFER_TO_DEV:
245 case SG_DXFER_FROM_DEV:
249 rq = blk_get_request(q, writing ? WRITE : READ, GFP_KERNEL);
253 if (hdr->iovec_count) {
254 const int size = sizeof(struct sg_iovec) * hdr->iovec_count;
255 struct sg_iovec *iov;
257 iov = kmalloc(size, GFP_KERNEL);
263 if (copy_from_user(iov, hdr->dxferp, size)) {
269 ret = blk_rq_map_user_iov(q, rq, iov, hdr->iovec_count);
271 } else if (hdr->dxfer_len)
272 ret = blk_rq_map_user(q, rq, hdr->dxferp, hdr->dxfer_len);
278 * fill in request structure
280 rq->cmd_len = hdr->cmd_len;
281 memcpy(rq->cmd, cmd, hdr->cmd_len);
282 if (sizeof(rq->cmd) != hdr->cmd_len)
283 memset(rq->cmd + hdr->cmd_len, 0, sizeof(rq->cmd) - hdr->cmd_len);
285 memset(sense, 0, sizeof(sense));
289 rq->flags |= REQ_BLOCK_PC;
293 * bounce this after holding a reference to the original bio, it's
294 * needed for proper unmapping
297 blk_queue_bounce(q, &rq->bio);
299 rq->timeout = (hdr->timeout * HZ) / 1000;
301 rq->timeout = q->sg_timeout;
303 rq->timeout = BLK_DEFAULT_TIMEOUT;
305 start_time = jiffies;
307 /* ignore return value. All information is passed back to caller
308 * (if he doesn't check that is his problem).
309 * N.B. a non-zero SCSI status is _not_ necessarily an error.
311 blk_execute_rq(q, bd_disk, rq, 0);
313 /* write to all output members */
314 hdr->status = 0xff & rq->errors;
315 hdr->masked_status = status_byte(rq->errors);
316 hdr->msg_status = msg_byte(rq->errors);
317 hdr->host_status = host_byte(rq->errors);
318 hdr->driver_status = driver_byte(rq->errors);
320 if (hdr->masked_status || hdr->host_status || hdr->driver_status)
321 hdr->info |= SG_INFO_CHECK;
322 hdr->resid = rq->data_len;
323 hdr->duration = ((jiffies - start_time) * 1000) / HZ;
326 if (rq->sense_len && hdr->sbp) {
327 int len = min((unsigned int) hdr->mx_sb_len, rq->sense_len);
329 if (!copy_to_user(hdr->sbp, rq->sense, len))
330 hdr->sb_len_wr = len;
333 if (blk_rq_unmap_user(bio, hdr->dxfer_len))
336 /* may not have succeeded, but output values written to control
337 * structure (struct sg_io_hdr). */
343 #define OMAX_SB_LEN 16 /* For backward compatibility */
345 static int sg_scsi_ioctl(struct file *file, request_queue_t *q,
346 struct gendisk *bd_disk, Scsi_Ioctl_Command __user *sic)
350 unsigned int in_len, out_len, bytes, opcode, cmdlen;
351 char *buffer = NULL, sense[SCSI_SENSE_BUFFERSIZE];
354 * get in an out lengths, verify they don't exceed a page worth of data
356 if (get_user(in_len, &sic->inlen))
358 if (get_user(out_len, &sic->outlen))
360 if (in_len > PAGE_SIZE || out_len > PAGE_SIZE)
362 if (get_user(opcode, sic->data))
365 bytes = max(in_len, out_len);
367 buffer = kmalloc(bytes, q->bounce_gfp | GFP_USER| __GFP_NOWARN);
371 memset(buffer, 0, bytes);
374 rq = blk_get_request(q, in_len ? WRITE : READ, __GFP_WAIT);
376 cmdlen = COMMAND_SIZE(opcode);
379 * get command and data to send to device, if any
382 rq->cmd_len = cmdlen;
383 if (copy_from_user(rq->cmd, sic->data, cmdlen))
386 if (copy_from_user(buffer, sic->data + cmdlen, in_len))
389 err = verify_command(file, rq->cmd);
394 case SEND_DIAGNOSTIC:
396 rq->timeout = FORMAT_UNIT_TIMEOUT;
399 rq->timeout = START_STOP_TIMEOUT;
402 rq->timeout = MOVE_MEDIUM_TIMEOUT;
404 case READ_ELEMENT_STATUS:
405 rq->timeout = READ_ELEMENT_STATUS_TIMEOUT;
407 case READ_DEFECT_DATA:
408 rq->timeout = READ_DEFECT_DATA_TIMEOUT;
411 rq->timeout = BLK_DEFAULT_TIMEOUT;
415 memset(sense, 0, sizeof(sense));
420 rq->data_len = bytes;
421 rq->flags |= REQ_BLOCK_PC;
423 blk_execute_rq(q, bd_disk, rq, 0);
424 err = rq->errors & 0xff; /* only 8 bit SCSI status */
426 if (rq->sense_len && rq->sense) {
427 bytes = (OMAX_SB_LEN > rq->sense_len) ?
428 rq->sense_len : OMAX_SB_LEN;
429 if (copy_to_user(sic->data, rq->sense, bytes))
433 if (copy_to_user(sic->data, buffer, out_len))
443 int scsi_cmd_ioctl(struct file *file, struct gendisk *bd_disk, unsigned int cmd, void __user *arg)
453 if (blk_get_queue(q))
460 case SG_GET_VERSION_NUM:
461 err = sg_get_version(arg);
463 case SCSI_IOCTL_GET_IDLUN:
464 err = scsi_get_idlun(q, arg);
466 case SCSI_IOCTL_GET_BUS_NUMBER:
467 err = scsi_get_bus(q, arg);
470 err = sg_set_timeout(q, arg);
473 err = sg_get_timeout(q);
475 case SG_GET_RESERVED_SIZE:
476 err = sg_get_reserved_size(q, arg);
478 case SG_SET_RESERVED_SIZE:
479 err = sg_set_reserved_size(q, arg);
481 case SG_EMULATED_HOST:
482 err = sg_emulated_host(q, arg);
485 struct sg_io_hdr hdr;
488 if (copy_from_user(&hdr, arg, sizeof(hdr)))
490 err = sg_io(file, q, bd_disk, &hdr);
494 if (copy_to_user(arg, &hdr, sizeof(hdr)))
498 case CDROM_SEND_PACKET: {
499 struct cdrom_generic_command cgc;
500 struct sg_io_hdr hdr;
503 if (copy_from_user(&cgc, arg, sizeof(cgc)))
505 cgc.timeout = clock_t_to_jiffies(cgc.timeout);
506 memset(&hdr, 0, sizeof(hdr));
507 hdr.interface_id = 'S';
508 hdr.cmd_len = sizeof(cgc.cmd);
509 hdr.dxfer_len = cgc.buflen;
511 switch (cgc.data_direction) {
512 case CGC_DATA_UNKNOWN:
513 hdr.dxfer_direction = SG_DXFER_UNKNOWN;
516 hdr.dxfer_direction = SG_DXFER_TO_DEV;
519 hdr.dxfer_direction = SG_DXFER_FROM_DEV;
522 hdr.dxfer_direction = SG_DXFER_NONE;
530 hdr.dxferp = cgc.buffer;
533 hdr.mx_sb_len = sizeof(struct request_sense);
534 hdr.timeout = cgc.timeout;
535 hdr.cmdp = ((struct cdrom_generic_command __user*) arg)->cmd;
536 hdr.cmd_len = sizeof(cgc.cmd);
538 err = sg_io(file, q, bd_disk, &hdr);
546 cgc.buflen = hdr.resid;
547 if (copy_to_user(arg, &cgc, sizeof(cgc)))
554 * old junk scsi send command ioctl
556 case SCSI_IOCTL_SEND_COMMAND:
557 printk(KERN_WARNING "program %s is using a deprecated SCSI ioctl, please convert it to SG_IO\n", current->comm);
562 err = sg_scsi_ioctl(file, q, bd_disk, arg);
567 rq = blk_get_request(q, WRITE, __GFP_WAIT);
568 rq->flags |= REQ_BLOCK_PC;
571 rq->timeout = BLK_DEFAULT_TIMEOUT;
572 memset(rq->cmd, 0, sizeof(rq->cmd));
573 rq->cmd[0] = GPCMD_START_STOP_UNIT;
574 rq->cmd[4] = 0x02 + (close != 0);
576 err = blk_execute_rq(q, bd_disk, rq, 0);
587 EXPORT_SYMBOL(scsi_cmd_ioctl);