1 // SPDX-License-Identifier: GPL-2.0-only
4 * Arnaldo Carvalho de Melo <acme@conectiva.com.br> 08/23/2000
5 * - get rid of some verify_areas and use __copy*user and __get/put_user
6 * for the ones that remain
8 #include <linux/module.h>
9 #include <linux/blkdev.h>
10 #include <linux/interrupt.h>
11 #include <linux/errno.h>
12 #include <linux/kernel.h>
13 #include <linux/sched.h>
15 #include <linux/string.h>
16 #include <linux/uaccess.h>
17 #include <linux/cdrom.h>
19 #include <scsi/scsi.h>
20 #include <scsi/scsi_cmnd.h>
21 #include <scsi/scsi_device.h>
22 #include <scsi/scsi_eh.h>
23 #include <scsi/scsi_host.h>
24 #include <scsi/scsi_ioctl.h>
26 #include <scsi/scsi_dbg.h>
28 #include "scsi_logging.h"
30 #define NORMAL_RETRIES 5
31 #define IOCTL_NORMAL_TIMEOUT (10 * HZ)
33 #define MAX_BUF PAGE_SIZE
36 * ioctl_probe -- return host identification
37 * @host: host to identify
38 * @buffer: userspace buffer for identification
40 * Return an identifying string at @buffer, if @buffer is non-NULL, filling
41 * to the length stored at * (int *) @buffer.
43 static int ioctl_probe(struct Scsi_Host *host, void __user *buffer)
45 unsigned int len, slen;
49 if (get_user(len, (unsigned int __user *) buffer))
52 if (host->hostt->info)
53 string = host->hostt->info(host);
55 string = host->hostt->name;
57 slen = strlen(string);
60 if (copy_to_user(buffer, string, len))
67 static int ioctl_internal_command(struct scsi_device *sdev, char *cmd,
68 int timeout, int retries)
71 struct scsi_sense_hdr sshdr;
73 SCSI_LOG_IOCTL(1, sdev_printk(KERN_INFO, sdev,
74 "Trying ioctl with scsi command %d\n", *cmd));
76 result = scsi_execute_req(sdev, cmd, DMA_NONE, NULL, 0,
77 &sshdr, timeout, retries, NULL);
79 SCSI_LOG_IOCTL(2, sdev_printk(KERN_INFO, sdev,
80 "Ioctl returned 0x%x\n", result));
84 if (scsi_sense_valid(&sshdr)) {
85 switch (sshdr.sense_key) {
87 if (cmd[0] == ALLOW_MEDIUM_REMOVAL)
90 sdev_printk(KERN_INFO, sdev,
91 "ioctl_internal_command: "
93 "asc=0x%x ascq=0x%x\n",
94 sshdr.asc, sshdr.ascq);
96 case NOT_READY: /* This happens if there is no disc in drive */
101 if (sdev->removable) {
103 result = 0; /* This is no longer considered an error */
106 fallthrough; /* for non-removable media */
108 sdev_printk(KERN_INFO, sdev,
109 "ioctl_internal_command return code = %x\n",
111 scsi_print_sense_hdr(sdev, NULL, &sshdr);
116 SCSI_LOG_IOCTL(2, sdev_printk(KERN_INFO, sdev,
117 "IOCTL Releasing command\n"));
121 int scsi_set_medium_removal(struct scsi_device *sdev, char state)
123 char scsi_cmd[MAX_COMMAND_SIZE];
126 if (!sdev->removable || !sdev->lockable)
129 scsi_cmd[0] = ALLOW_MEDIUM_REMOVAL;
136 ret = ioctl_internal_command(sdev, scsi_cmd,
137 IOCTL_NORMAL_TIMEOUT, NORMAL_RETRIES);
139 sdev->locked = (state == SCSI_REMOVAL_PREVENT);
142 EXPORT_SYMBOL(scsi_set_medium_removal);
145 * The scsi_ioctl_get_pci() function places into arg the value
146 * pci_dev::slot_name (8 characters) for the PCI device (if any).
147 * Returns: 0 on success
148 * -ENXIO if there isn't a PCI device pointer
149 * (could be because the SCSI driver hasn't been
150 * updated yet, or because it isn't a SCSI
152 * any copy_to_user() error on failure there
154 static int scsi_ioctl_get_pci(struct scsi_device *sdev, void __user *arg)
156 struct device *dev = scsi_get_device(sdev->host);
162 name = dev_name(dev);
164 /* compatibility with old ioctl which only returned
166 return copy_to_user(arg, name, min(strlen(name), (size_t)20))
170 static int sg_get_version(int __user *p)
172 static const int sg_version_num = 30527;
173 return put_user(sg_version_num, p);
176 static int sg_set_timeout(struct scsi_device *sdev, int __user *p)
178 int timeout, err = get_user(timeout, p);
181 sdev->sg_timeout = clock_t_to_jiffies(timeout);
186 static int sg_get_reserved_size(struct scsi_device *sdev, int __user *p)
188 int val = min(sdev->sg_reserved_size,
189 queue_max_bytes(sdev->request_queue));
191 return put_user(val, p);
194 static int sg_set_reserved_size(struct scsi_device *sdev, int __user *p)
196 int size, err = get_user(size, p);
204 sdev->sg_reserved_size = min_t(unsigned int, size,
205 queue_max_bytes(sdev->request_queue));
210 * will always return that we are ATAPI even for a real SCSI drive, I'm not
211 * so sure this is worth doing anything about (why would you care??)
213 static int sg_emulated_host(struct request_queue *q, int __user *p)
215 return put_user(1, p);
218 static int scsi_get_idlun(struct scsi_device *sdev, void __user *argp)
220 struct scsi_idlun v = {
221 .dev_id = (sdev->id & 0xff) +
222 ((sdev->lun & 0xff) << 8) +
223 ((sdev->channel & 0xff) << 16) +
224 ((sdev->host->host_no & 0xff) << 24),
225 .host_unique_id = sdev->host->unique_id
227 if (copy_to_user(argp, &v, sizeof(struct scsi_idlun)))
232 static int scsi_send_start_stop(struct scsi_device *sdev, int data)
234 u8 cdb[MAX_COMMAND_SIZE] = { };
238 return ioctl_internal_command(sdev, cdb, START_STOP_TIMEOUT,
243 * Check if the given command is allowed.
245 * Only a subset of commands are allowed for unprivileged users. Commands used
246 * to format the media, update the firmware, etc. are not permitted.
248 bool scsi_cmd_allowed(unsigned char *cmd, fmode_t mode)
250 /* root can do any command. */
251 if (capable(CAP_SYS_RAWIO))
254 /* Anybody who can open the device can do a read-safe command */
256 /* Basic read-only commands */
257 case TEST_UNIT_READY:
264 case READ_DEFECT_DATA:
265 case READ_CAPACITY: /* also GPCMD_READ_CDVD_CAPACITY */
272 case GPCMD_VERIFY_10:
275 case SERVICE_ACTION_IN_16:
276 case RECEIVE_DIAGNOSTIC:
277 case MAINTENANCE_IN: /* also GPCMD_SEND_KEY, which is a write command */
278 case GPCMD_READ_BUFFER_CAPACITY:
279 /* Audio CD commands */
281 case GPCMD_PLAY_AUDIO_10:
282 case GPCMD_PLAY_AUDIO_MSF:
283 case GPCMD_PLAY_AUDIO_TI:
284 case GPCMD_PAUSE_RESUME:
285 /* CD/DVD data reading */
287 case GPCMD_READ_CD_MSF:
288 case GPCMD_READ_DISC_INFO:
289 case GPCMD_READ_DVD_STRUCTURE:
290 case GPCMD_READ_HEADER:
291 case GPCMD_READ_TRACK_RZONE_INFO:
292 case GPCMD_READ_SUBCHANNEL:
293 case GPCMD_READ_TOC_PMA_ATIP:
294 case GPCMD_REPORT_KEY:
296 case GPCMD_GET_CONFIGURATION:
297 case GPCMD_READ_FORMAT_CAPACITIES:
298 case GPCMD_GET_EVENT_STATUS_NOTIFICATION:
299 case GPCMD_GET_PERFORMANCE:
301 case GPCMD_STOP_PLAY_SCAN:
305 /* Basic writing commands */
310 case WRITE_VERIFY_12:
318 case GPCMD_MODE_SELECT_10:
322 case GPCMD_CLOSE_TRACK:
323 case GPCMD_FLUSH_CACHE:
324 case GPCMD_FORMAT_UNIT:
325 case GPCMD_REPAIR_RZONE_TRACK:
326 case GPCMD_RESERVE_RZONE_TRACK:
327 case GPCMD_SEND_DVD_STRUCTURE:
328 case GPCMD_SEND_EVENT:
330 case GPCMD_SEND_CUE_SHEET:
331 case GPCMD_SET_SPEED:
332 case GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL:
333 case GPCMD_LOAD_UNLOAD:
334 case GPCMD_SET_STREAMING:
335 case GPCMD_SET_READ_AHEAD:
338 return (mode & FMODE_WRITE);
343 EXPORT_SYMBOL(scsi_cmd_allowed);
345 static int scsi_fill_sghdr_rq(struct scsi_device *sdev, struct request *rq,
346 struct sg_io_hdr *hdr, fmode_t mode)
348 struct scsi_request *req = scsi_req(rq);
350 if (hdr->cmd_len < 6)
352 if (copy_from_user(req->cmd, hdr->cmdp, hdr->cmd_len))
354 if (!scsi_cmd_allowed(req->cmd, mode))
358 * fill in request structure
360 req->cmd_len = hdr->cmd_len;
362 rq->timeout = msecs_to_jiffies(hdr->timeout);
364 rq->timeout = sdev->sg_timeout;
366 rq->timeout = BLK_DEFAULT_SG_TIMEOUT;
367 if (rq->timeout < BLK_MIN_SG_TIMEOUT)
368 rq->timeout = BLK_MIN_SG_TIMEOUT;
373 static int scsi_complete_sghdr_rq(struct request *rq, struct sg_io_hdr *hdr,
376 struct scsi_request *req = scsi_req(rq);
380 * fill in all the output members
382 hdr->status = req->result & 0xff;
383 hdr->masked_status = status_byte(req->result);
384 hdr->msg_status = COMMAND_COMPLETE;
385 hdr->host_status = host_byte(req->result);
386 hdr->driver_status = 0;
387 if (scsi_status_is_check_condition(hdr->status))
388 hdr->driver_status = DRIVER_SENSE;
390 if (hdr->masked_status || hdr->host_status || hdr->driver_status)
391 hdr->info |= SG_INFO_CHECK;
392 hdr->resid = req->resid_len;
395 if (req->sense_len && hdr->sbp) {
396 int len = min((unsigned int) hdr->mx_sb_len, req->sense_len);
398 if (!copy_to_user(hdr->sbp, req->sense, len))
399 hdr->sb_len_wr = len;
404 r = blk_rq_unmap_user(bio);
411 static int sg_io(struct scsi_device *sdev, struct sg_io_hdr *hdr, fmode_t mode)
413 unsigned long start_time;
418 struct scsi_request *req;
421 if (hdr->interface_id != 'S')
424 if (hdr->dxfer_len > (queue_max_hw_sectors(sdev->request_queue) << 9))
428 switch (hdr->dxfer_direction) {
431 case SG_DXFER_TO_DEV:
434 case SG_DXFER_TO_FROM_DEV:
435 case SG_DXFER_FROM_DEV:
438 if (hdr->flags & SG_FLAG_Q_AT_HEAD)
442 rq = scsi_alloc_request(sdev->request_queue, writing ?
443 REQ_OP_DRV_OUT : REQ_OP_DRV_IN, 0);
448 if (hdr->cmd_len > BLK_MAX_CDB) {
449 req->cmd = kzalloc(hdr->cmd_len, GFP_KERNEL);
451 goto out_put_request;
454 ret = scsi_fill_sghdr_rq(sdev, rq, hdr, mode);
459 if (hdr->iovec_count) {
461 struct iovec *iov = NULL;
463 ret = import_iovec(rq_data_dir(rq), hdr->dxferp,
464 hdr->iovec_count, 0, &iov, &i);
468 /* SG_IO howto says that the shorter of the two wins */
469 iov_iter_truncate(&i, hdr->dxfer_len);
471 ret = blk_rq_map_user_iov(rq->q, rq, NULL, &i, GFP_KERNEL);
473 } else if (hdr->dxfer_len)
474 ret = blk_rq_map_user(rq->q, rq, NULL, hdr->dxferp,
475 hdr->dxfer_len, GFP_KERNEL);
483 start_time = jiffies;
485 blk_execute_rq(rq, at_head);
487 hdr->duration = jiffies_to_msecs(jiffies - start_time);
489 ret = scsi_complete_sghdr_rq(rq, hdr, bio);
492 scsi_req_free_cmd(req);
494 blk_mq_free_request(rq);
499 * sg_scsi_ioctl -- handle deprecated SCSI_IOCTL_SEND_COMMAND ioctl
500 * @q: request queue to send scsi commands down
501 * @mode: mode used to open the file through which the ioctl has been
503 * @sic: userspace structure describing the command to perform
505 * Send down the scsi command described by @sic to the device below
506 * the request queue @q.
509 * - This interface is deprecated - users should use the SG_IO
510 * interface instead, as this is a more flexible approach to
511 * performing SCSI commands on a device.
512 * - The SCSI command length is determined by examining the 1st byte
513 * of the given command. There is no way to override this.
514 * - Data transfers are limited to PAGE_SIZE
515 * - The length (x + y) must be at least OMAX_SB_LEN bytes long to
516 * accommodate the sense buffer when an error occurs.
517 * The sense buffer is truncated to OMAX_SB_LEN (16) bytes so that
518 * old code will not be surprised.
519 * - If a Unix error occurs (e.g. ENOMEM) then the user will receive
520 * a negative return and the Unix error code in 'errno'.
521 * If the SCSI command succeeds then 0 is returned.
522 * Positive numbers returned are the compacted SCSI error codes (4
523 * bytes in one int) where the lowest byte is the SCSI status.
525 static int sg_scsi_ioctl(struct request_queue *q, fmode_t mode,
526 struct scsi_ioctl_command __user *sic)
528 enum { OMAX_SB_LEN = 16 }; /* For backward compatibility */
530 struct scsi_request *req;
532 unsigned int in_len, out_len, bytes, opcode, cmdlen;
539 * get in an out lengths, verify they don't exceed a page worth of data
541 if (get_user(in_len, &sic->inlen))
543 if (get_user(out_len, &sic->outlen))
545 if (in_len > PAGE_SIZE || out_len > PAGE_SIZE)
547 if (get_user(opcode, sic->data))
550 bytes = max(in_len, out_len);
552 buffer = kzalloc(bytes, GFP_NOIO | GFP_USER | __GFP_NOWARN);
558 rq = scsi_alloc_request(q, in_len ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN, 0);
561 goto error_free_buffer;
565 cmdlen = COMMAND_SIZE(opcode);
568 * get command and data to send to device, if any
571 req->cmd_len = cmdlen;
572 if (copy_from_user(req->cmd, sic->data, cmdlen))
575 if (in_len && copy_from_user(buffer, sic->data + cmdlen, in_len))
579 if (!scsi_cmd_allowed(req->cmd, mode))
582 /* default. possible overridden later */
586 case SEND_DIAGNOSTIC:
588 rq->timeout = FORMAT_UNIT_TIMEOUT;
592 rq->timeout = START_STOP_TIMEOUT;
595 rq->timeout = MOVE_MEDIUM_TIMEOUT;
597 case READ_ELEMENT_STATUS:
598 rq->timeout = READ_ELEMENT_STATUS_TIMEOUT;
600 case READ_DEFECT_DATA:
601 rq->timeout = READ_DEFECT_DATA_TIMEOUT;
605 rq->timeout = BLK_DEFAULT_SG_TIMEOUT;
610 err = blk_rq_map_kern(q, rq, buffer, bytes, GFP_NOIO);
615 blk_execute_rq(rq, false);
617 err = req->result & 0xff; /* only 8 bit SCSI status */
619 if (req->sense_len && req->sense) {
620 bytes = (OMAX_SB_LEN > req->sense_len) ?
621 req->sense_len : OMAX_SB_LEN;
622 if (copy_to_user(sic->data, req->sense, bytes))
626 if (copy_to_user(sic->data, buffer, out_len))
631 blk_mq_free_request(rq);
639 int put_sg_io_hdr(const struct sg_io_hdr *hdr, void __user *argp)
642 if (in_compat_syscall()) {
643 struct compat_sg_io_hdr hdr32 = {
644 .interface_id = hdr->interface_id,
645 .dxfer_direction = hdr->dxfer_direction,
646 .cmd_len = hdr->cmd_len,
647 .mx_sb_len = hdr->mx_sb_len,
648 .iovec_count = hdr->iovec_count,
649 .dxfer_len = hdr->dxfer_len,
650 .dxferp = (uintptr_t)hdr->dxferp,
651 .cmdp = (uintptr_t)hdr->cmdp,
652 .sbp = (uintptr_t)hdr->sbp,
653 .timeout = hdr->timeout,
655 .pack_id = hdr->pack_id,
656 .usr_ptr = (uintptr_t)hdr->usr_ptr,
657 .status = hdr->status,
658 .masked_status = hdr->masked_status,
659 .msg_status = hdr->msg_status,
660 .sb_len_wr = hdr->sb_len_wr,
661 .host_status = hdr->host_status,
662 .driver_status = hdr->driver_status,
664 .duration = hdr->duration,
668 if (copy_to_user(argp, &hdr32, sizeof(hdr32)))
675 if (copy_to_user(argp, hdr, sizeof(*hdr)))
680 EXPORT_SYMBOL(put_sg_io_hdr);
682 int get_sg_io_hdr(struct sg_io_hdr *hdr, const void __user *argp)
685 struct compat_sg_io_hdr hdr32;
687 if (in_compat_syscall()) {
688 if (copy_from_user(&hdr32, argp, sizeof(hdr32)))
691 *hdr = (struct sg_io_hdr) {
692 .interface_id = hdr32.interface_id,
693 .dxfer_direction = hdr32.dxfer_direction,
694 .cmd_len = hdr32.cmd_len,
695 .mx_sb_len = hdr32.mx_sb_len,
696 .iovec_count = hdr32.iovec_count,
697 .dxfer_len = hdr32.dxfer_len,
698 .dxferp = compat_ptr(hdr32.dxferp),
699 .cmdp = compat_ptr(hdr32.cmdp),
700 .sbp = compat_ptr(hdr32.sbp),
701 .timeout = hdr32.timeout,
702 .flags = hdr32.flags,
703 .pack_id = hdr32.pack_id,
704 .usr_ptr = compat_ptr(hdr32.usr_ptr),
705 .status = hdr32.status,
706 .masked_status = hdr32.masked_status,
707 .msg_status = hdr32.msg_status,
708 .sb_len_wr = hdr32.sb_len_wr,
709 .host_status = hdr32.host_status,
710 .driver_status = hdr32.driver_status,
711 .resid = hdr32.resid,
712 .duration = hdr32.duration,
720 if (copy_from_user(hdr, argp, sizeof(*hdr)))
725 EXPORT_SYMBOL(get_sg_io_hdr);
728 struct compat_cdrom_generic_command {
729 unsigned char cmd[CDROM_PACKET_SIZE];
730 compat_caddr_t buffer;
731 compat_uint_t buflen;
733 compat_caddr_t sense;
734 unsigned char data_direction;
735 unsigned char pad[3];
737 compat_int_t timeout;
738 compat_caddr_t unused;
742 static int scsi_get_cdrom_generic_arg(struct cdrom_generic_command *cgc,
743 const void __user *arg)
746 if (in_compat_syscall()) {
747 struct compat_cdrom_generic_command cgc32;
749 if (copy_from_user(&cgc32, arg, sizeof(cgc32)))
752 *cgc = (struct cdrom_generic_command) {
753 .buffer = compat_ptr(cgc32.buffer),
754 .buflen = cgc32.buflen,
756 .sense = compat_ptr(cgc32.sense),
757 .data_direction = cgc32.data_direction,
758 .quiet = cgc32.quiet,
759 .timeout = cgc32.timeout,
760 .unused = compat_ptr(cgc32.unused),
762 memcpy(&cgc->cmd, &cgc32.cmd, CDROM_PACKET_SIZE);
766 if (copy_from_user(cgc, arg, sizeof(*cgc)))
772 static int scsi_put_cdrom_generic_arg(const struct cdrom_generic_command *cgc,
776 if (in_compat_syscall()) {
777 struct compat_cdrom_generic_command cgc32 = {
778 .buffer = (uintptr_t)(cgc->buffer),
779 .buflen = cgc->buflen,
781 .sense = (uintptr_t)(cgc->sense),
782 .data_direction = cgc->data_direction,
784 .timeout = cgc->timeout,
785 .unused = (uintptr_t)(cgc->unused),
787 memcpy(&cgc32.cmd, &cgc->cmd, CDROM_PACKET_SIZE);
789 if (copy_to_user(arg, &cgc32, sizeof(cgc32)))
795 if (copy_to_user(arg, cgc, sizeof(*cgc)))
801 static int scsi_cdrom_send_packet(struct scsi_device *sdev, fmode_t mode,
804 struct cdrom_generic_command cgc;
805 struct sg_io_hdr hdr;
808 err = scsi_get_cdrom_generic_arg(&cgc, arg);
812 cgc.timeout = clock_t_to_jiffies(cgc.timeout);
813 memset(&hdr, 0, sizeof(hdr));
814 hdr.interface_id = 'S';
815 hdr.cmd_len = sizeof(cgc.cmd);
816 hdr.dxfer_len = cgc.buflen;
817 switch (cgc.data_direction) {
818 case CGC_DATA_UNKNOWN:
819 hdr.dxfer_direction = SG_DXFER_UNKNOWN;
822 hdr.dxfer_direction = SG_DXFER_TO_DEV;
825 hdr.dxfer_direction = SG_DXFER_FROM_DEV;
828 hdr.dxfer_direction = SG_DXFER_NONE;
834 hdr.dxferp = cgc.buffer;
837 hdr.mx_sb_len = sizeof(struct request_sense);
838 hdr.timeout = jiffies_to_msecs(cgc.timeout);
839 hdr.cmdp = ((struct cdrom_generic_command __user *) arg)->cmd;
840 hdr.cmd_len = sizeof(cgc.cmd);
842 err = sg_io(sdev, &hdr, mode);
850 cgc.buflen = hdr.resid;
851 if (scsi_put_cdrom_generic_arg(&cgc, arg))
857 static int scsi_ioctl_sg_io(struct scsi_device *sdev, fmode_t mode,
860 struct sg_io_hdr hdr;
863 error = get_sg_io_hdr(&hdr, argp);
866 error = sg_io(sdev, &hdr, mode);
867 if (error == -EFAULT)
869 if (put_sg_io_hdr(&hdr, argp))
875 * scsi_ioctl - Dispatch ioctl to scsi device
876 * @sdev: scsi device receiving ioctl
877 * @mode: mode the block/char device is opened with
878 * @cmd: which ioctl is it
879 * @arg: data associated with ioctl
881 * Description: The scsi_ioctl() function differs from most ioctls in that it
882 * does not take a major/minor number as the dev field. Rather, it takes
883 * a pointer to a &struct scsi_device.
885 int scsi_ioctl(struct scsi_device *sdev, fmode_t mode, int cmd,
888 struct request_queue *q = sdev->request_queue;
889 struct scsi_sense_hdr sense_hdr;
891 /* Check for deprecated ioctls ... all the ioctls which don't
892 * follow the new unique numbering scheme are deprecated */
894 case SCSI_IOCTL_SEND_COMMAND:
895 case SCSI_IOCTL_TEST_UNIT_READY:
896 case SCSI_IOCTL_BENCHMARK_COMMAND:
897 case SCSI_IOCTL_SYNC:
898 case SCSI_IOCTL_START_UNIT:
899 case SCSI_IOCTL_STOP_UNIT:
900 printk(KERN_WARNING "program %s is using a deprecated SCSI "
901 "ioctl, please convert it to SG_IO\n", current->comm);
908 case SG_GET_VERSION_NUM:
909 return sg_get_version(arg);
911 return sg_set_timeout(sdev, arg);
913 return jiffies_to_clock_t(sdev->sg_timeout);
914 case SG_GET_RESERVED_SIZE:
915 return sg_get_reserved_size(sdev, arg);
916 case SG_SET_RESERVED_SIZE:
917 return sg_set_reserved_size(sdev, arg);
918 case SG_EMULATED_HOST:
919 return sg_emulated_host(q, arg);
921 return scsi_ioctl_sg_io(sdev, mode, arg);
922 case SCSI_IOCTL_SEND_COMMAND:
923 return sg_scsi_ioctl(q, mode, arg);
924 case CDROM_SEND_PACKET:
925 return scsi_cdrom_send_packet(sdev, mode, arg);
927 return scsi_send_start_stop(sdev, 3);
929 return scsi_send_start_stop(sdev, 2);
930 case SCSI_IOCTL_GET_IDLUN:
931 return scsi_get_idlun(sdev, arg);
932 case SCSI_IOCTL_GET_BUS_NUMBER:
933 return put_user(sdev->host->host_no, (int __user *)arg);
934 case SCSI_IOCTL_PROBE_HOST:
935 return ioctl_probe(sdev->host, arg);
936 case SCSI_IOCTL_DOORLOCK:
937 return scsi_set_medium_removal(sdev, SCSI_REMOVAL_PREVENT);
938 case SCSI_IOCTL_DOORUNLOCK:
939 return scsi_set_medium_removal(sdev, SCSI_REMOVAL_ALLOW);
940 case SCSI_IOCTL_TEST_UNIT_READY:
941 return scsi_test_unit_ready(sdev, IOCTL_NORMAL_TIMEOUT,
942 NORMAL_RETRIES, &sense_hdr);
943 case SCSI_IOCTL_START_UNIT:
944 return scsi_send_start_stop(sdev, 1);
945 case SCSI_IOCTL_STOP_UNIT:
946 return scsi_send_start_stop(sdev, 0);
947 case SCSI_IOCTL_GET_PCI:
948 return scsi_ioctl_get_pci(sdev, arg);
950 return scsi_ioctl_reset(sdev, arg);
954 if (in_compat_syscall()) {
955 if (!sdev->host->hostt->compat_ioctl)
957 return sdev->host->hostt->compat_ioctl(sdev, cmd, arg);
960 if (!sdev->host->hostt->ioctl)
962 return sdev->host->hostt->ioctl(sdev, cmd, arg);
964 EXPORT_SYMBOL(scsi_ioctl);
967 * We can process a reset even when a device isn't fully operable.
969 int scsi_ioctl_block_when_processing_errors(struct scsi_device *sdev, int cmd,
972 if (cmd == SG_SCSI_RESET && ndelay) {
973 if (scsi_host_in_recovery(sdev->host))
976 if (!scsi_block_when_processing_errors(sdev))
982 EXPORT_SYMBOL_GPL(scsi_ioctl_block_when_processing_errors);