3 * Arnaldo Carvalho de Melo <acme@conectiva.com.br> 08/23/2000
4 * - get rid of some verify_areas and use __copy*user and __get/put_user
5 * for the ones that remain
7 #include <linux/module.h>
8 #include <linux/blkdev.h>
9 #include <linux/interrupt.h>
10 #include <linux/errno.h>
11 #include <linux/kernel.h>
12 #include <linux/sched.h>
14 #include <linux/string.h>
15 #include <asm/uaccess.h>
17 #include <scsi/scsi.h>
18 #include <scsi/scsi_cmnd.h>
19 #include <scsi/scsi_device.h>
20 #include <scsi/scsi_eh.h>
21 #include <scsi/scsi_host.h>
22 #include <scsi/scsi_ioctl.h>
24 #include <scsi/scsi_dbg.h>
26 #include "scsi_logging.h"
28 #define NORMAL_RETRIES 5
29 #define IOCTL_NORMAL_TIMEOUT (10 * HZ)
31 #define MAX_BUF PAGE_SIZE
34 * ioctl_probe -- return host identification
35 * @host: host to identify
36 * @buffer: userspace buffer for identification
38 * Return an identifying string at @buffer, if @buffer is non-NULL, filling
39 * to the length stored at * (int *) @buffer.
41 static int ioctl_probe(struct Scsi_Host
*host
, void __user
*buffer
)
43 unsigned int len
, slen
;
47 if (get_user(len
, (unsigned int __user
*) buffer
))
50 if (host
->hostt
->info
)
51 string
= host
->hostt
->info(host
);
53 string
= host
->hostt
->name
;
55 slen
= strlen(string
);
58 if (copy_to_user(buffer
, string
, len
))
67 * The SCSI_IOCTL_SEND_COMMAND ioctl sends a command out to the SCSI host.
68 * The IOCTL_NORMAL_TIMEOUT and NORMAL_RETRIES variables are used.
70 * dev is the SCSI device struct ptr, *(int *) arg is the length of the
71 * input data, if any, not including the command string & counts,
72 * *((int *)arg + 1) is the output buffer size in bytes.
74 * *(char *) ((int *) arg)[2] the actual command byte.
76 * Note that if more than MAX_BUF bytes are requested to be transferred,
77 * the ioctl will fail with error EINVAL.
79 * This size *does not* include the initial lengths that were passed.
81 * The SCSI command is read from the memory location immediately after the
82 * length words, and the input data is right after the command. The SCSI
83 * routines know the command size based on the opcode decode.
85 * The output area is then filled in starting from the command byte.
88 static int ioctl_internal_command(struct scsi_device
*sdev
, char *cmd
,
89 int timeout
, int retries
)
92 struct scsi_sense_hdr sshdr
;
94 SCSI_LOG_IOCTL(1, sdev_printk(KERN_INFO
, sdev
,
95 "Trying ioctl with scsi command %d\n", *cmd
));
97 result
= scsi_execute_req(sdev
, cmd
, DMA_NONE
, NULL
, 0,
98 &sshdr
, timeout
, retries
, NULL
);
100 SCSI_LOG_IOCTL(2, sdev_printk(KERN_INFO
, sdev
,
101 "Ioctl returned 0x%x\n", result
));
103 if ((driver_byte(result
) & DRIVER_SENSE
) &&
104 (scsi_sense_valid(&sshdr
))) {
105 switch (sshdr
.sense_key
) {
106 case ILLEGAL_REQUEST
:
107 if (cmd
[0] == ALLOW_MEDIUM_REMOVAL
)
110 sdev_printk(KERN_INFO
, sdev
,
111 "ioctl_internal_command: "
113 "asc=0x%x ascq=0x%x\n",
114 sshdr
.asc
, sshdr
.ascq
);
116 case NOT_READY
: /* This happens if there is no disc in drive */
120 if (sdev
->removable
) {
122 result
= 0; /* This is no longer considered an error */
125 default: /* Fall through for non-removable media */
126 sdev_printk(KERN_INFO
, sdev
,
127 "ioctl_internal_command return code = %x\n",
129 scsi_print_sense_hdr(sdev
, NULL
, &sshdr
);
134 SCSI_LOG_IOCTL(2, sdev_printk(KERN_INFO
, sdev
,
135 "IOCTL Releasing command\n"));
139 int scsi_set_medium_removal(struct scsi_device
*sdev
, char state
)
141 char scsi_cmd
[MAX_COMMAND_SIZE
];
144 if (!sdev
->removable
|| !sdev
->lockable
)
147 scsi_cmd
[0] = ALLOW_MEDIUM_REMOVAL
;
154 ret
= ioctl_internal_command(sdev
, scsi_cmd
,
155 IOCTL_NORMAL_TIMEOUT
, NORMAL_RETRIES
);
157 sdev
->locked
= (state
== SCSI_REMOVAL_PREVENT
);
160 EXPORT_SYMBOL(scsi_set_medium_removal
);
163 * The scsi_ioctl_get_pci() function places into arg the value
164 * pci_dev::slot_name (8 characters) for the PCI device (if any).
165 * Returns: 0 on success
166 * -ENXIO if there isn't a PCI device pointer
167 * (could be because the SCSI driver hasn't been
168 * updated yet, or because it isn't a SCSI
170 * any copy_to_user() error on failure there
172 static int scsi_ioctl_get_pci(struct scsi_device
*sdev
, void __user
*arg
)
174 struct device
*dev
= scsi_get_device(sdev
->host
);
180 name
= dev_name(dev
);
182 /* compatibility with old ioctl which only returned
184 return copy_to_user(arg
, name
, min(strlen(name
), (size_t)20))
190 * scsi_ioctl - Dispatch ioctl to scsi device
191 * @sdev: scsi device receiving ioctl
192 * @cmd: which ioctl is it
193 * @arg: data associated with ioctl
195 * Description: The scsi_ioctl() function differs from most ioctls in that it
196 * does not take a major/minor number as the dev field. Rather, it takes
197 * a pointer to a &struct scsi_device.
199 int scsi_ioctl(struct scsi_device
*sdev
, int cmd
, void __user
*arg
)
201 char scsi_cmd
[MAX_COMMAND_SIZE
];
203 /* Check for deprecated ioctls ... all the ioctls which don't
204 * follow the new unique numbering scheme are deprecated */
206 case SCSI_IOCTL_SEND_COMMAND
:
207 case SCSI_IOCTL_TEST_UNIT_READY
:
208 case SCSI_IOCTL_BENCHMARK_COMMAND
:
209 case SCSI_IOCTL_SYNC
:
210 case SCSI_IOCTL_START_UNIT
:
211 case SCSI_IOCTL_STOP_UNIT
:
212 printk(KERN_WARNING
"program %s is using a deprecated SCSI "
213 "ioctl, please convert it to SG_IO\n", current
->comm
);
220 case SCSI_IOCTL_GET_IDLUN
:
221 if (!access_ok(VERIFY_WRITE
, arg
, sizeof(struct scsi_idlun
)))
224 __put_user((sdev
->id
& 0xff)
225 + ((sdev
->lun
& 0xff) << 8)
226 + ((sdev
->channel
& 0xff) << 16)
227 + ((sdev
->host
->host_no
& 0xff) << 24),
228 &((struct scsi_idlun __user
*)arg
)->dev_id
);
229 __put_user(sdev
->host
->unique_id
,
230 &((struct scsi_idlun __user
*)arg
)->host_unique_id
);
232 case SCSI_IOCTL_GET_BUS_NUMBER
:
233 return put_user(sdev
->host
->host_no
, (int __user
*)arg
);
234 case SCSI_IOCTL_PROBE_HOST
:
235 return ioctl_probe(sdev
->host
, arg
);
236 case SCSI_IOCTL_SEND_COMMAND
:
237 if (!capable(CAP_SYS_ADMIN
) || !capable(CAP_SYS_RAWIO
))
239 return sg_scsi_ioctl(sdev
->request_queue
, NULL
, 0, arg
);
240 case SCSI_IOCTL_DOORLOCK
:
241 return scsi_set_medium_removal(sdev
, SCSI_REMOVAL_PREVENT
);
242 case SCSI_IOCTL_DOORUNLOCK
:
243 return scsi_set_medium_removal(sdev
, SCSI_REMOVAL_ALLOW
);
244 case SCSI_IOCTL_TEST_UNIT_READY
:
245 return scsi_test_unit_ready(sdev
, IOCTL_NORMAL_TIMEOUT
,
246 NORMAL_RETRIES
, NULL
);
247 case SCSI_IOCTL_START_UNIT
:
248 scsi_cmd
[0] = START_STOP
;
250 scsi_cmd
[2] = scsi_cmd
[3] = scsi_cmd
[5] = 0;
252 return ioctl_internal_command(sdev
, scsi_cmd
,
253 START_STOP_TIMEOUT
, NORMAL_RETRIES
);
254 case SCSI_IOCTL_STOP_UNIT
:
255 scsi_cmd
[0] = START_STOP
;
257 scsi_cmd
[2] = scsi_cmd
[3] = scsi_cmd
[5] = 0;
259 return ioctl_internal_command(sdev
, scsi_cmd
,
260 START_STOP_TIMEOUT
, NORMAL_RETRIES
);
261 case SCSI_IOCTL_GET_PCI
:
262 return scsi_ioctl_get_pci(sdev
, arg
);
264 return scsi_ioctl_reset(sdev
, arg
);
266 if (sdev
->host
->hostt
->ioctl
)
267 return sdev
->host
->hostt
->ioctl(sdev
, cmd
, arg
);
271 EXPORT_SYMBOL(scsi_ioctl
);
274 * We can process a reset even when a device isn't fully operable.
276 int scsi_ioctl_block_when_processing_errors(struct scsi_device
*sdev
, int cmd
,
279 if (cmd
== SG_SCSI_RESET
&& ndelay
) {
280 if (scsi_host_in_recovery(sdev
->host
))
283 if (!scsi_block_when_processing_errors(sdev
))
289 EXPORT_SYMBOL_GPL(scsi_ioctl_block_when_processing_errors
);