Merge master.kernel.org:/pub/scm/linux/kernel/git/davej/cpufreq
[sfrench/cifs-2.6.git] / block / scsi_ioctl.c
1 /*
2  * Copyright (C) 2001 Jens Axboe <axboe@suse.de>
3  *
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.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
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-
17  *
18  */
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/capability.h>
25 #include <linux/completion.h>
26 #include <linux/cdrom.h>
27 #include <linux/slab.h>
28 #include <linux/times.h>
29 #include <asm/uaccess.h>
30
31 #include <scsi/scsi.h>
32 #include <scsi/scsi_ioctl.h>
33 #include <scsi/scsi_cmnd.h>
34
35 /* Command group 3 is reserved and should never be used.  */
36 const unsigned char scsi_command_size[8] =
37 {
38         6, 10, 10, 12,
39         16, 12, 10, 10
40 };
41
42 EXPORT_SYMBOL(scsi_command_size);
43
44 #define BLK_DEFAULT_TIMEOUT     (60 * HZ)
45
46 #include <scsi/sg.h>
47
48 static int sg_get_version(int __user *p)
49 {
50         static const int sg_version_num = 30527;
51         return put_user(sg_version_num, p);
52 }
53
54 static int scsi_get_idlun(request_queue_t *q, int __user *p)
55 {
56         return put_user(0, p);
57 }
58
59 static int scsi_get_bus(request_queue_t *q, int __user *p)
60 {
61         return put_user(0, p);
62 }
63
64 static int sg_get_timeout(request_queue_t *q)
65 {
66         return q->sg_timeout / (HZ / USER_HZ);
67 }
68
69 static int sg_set_timeout(request_queue_t *q, int __user *p)
70 {
71         int timeout, err = get_user(timeout, p);
72
73         if (!err)
74                 q->sg_timeout = timeout * (HZ / USER_HZ);
75
76         return err;
77 }
78
79 static int sg_get_reserved_size(request_queue_t *q, int __user *p)
80 {
81         return put_user(q->sg_reserved_size, p);
82 }
83
84 static int sg_set_reserved_size(request_queue_t *q, int __user *p)
85 {
86         int size, err = get_user(size, p);
87
88         if (err)
89                 return err;
90
91         if (size < 0)
92                 return -EINVAL;
93         if (size > (q->max_sectors << 9))
94                 size = q->max_sectors << 9;
95
96         q->sg_reserved_size = size;
97         return 0;
98 }
99
100 /*
101  * will always return that we are ATAPI even for a real SCSI drive, I'm not
102  * so sure this is worth doing anything about (why would you care??)
103  */
104 static int sg_emulated_host(request_queue_t *q, int __user *p)
105 {
106         return put_user(1, p);
107 }
108
109 #define CMD_READ_SAFE   0x01
110 #define CMD_WRITE_SAFE  0x02
111 #define CMD_WARNED      0x04
112 #define safe_for_read(cmd)      [cmd] = CMD_READ_SAFE
113 #define safe_for_write(cmd)     [cmd] = CMD_WRITE_SAFE
114
115 static int verify_command(struct file *file, unsigned char *cmd)
116 {
117         static unsigned char cmd_type[256] = {
118
119                 /* Basic read-only commands */
120                 safe_for_read(TEST_UNIT_READY),
121                 safe_for_read(REQUEST_SENSE),
122                 safe_for_read(READ_6),
123                 safe_for_read(READ_10),
124                 safe_for_read(READ_12),
125                 safe_for_read(READ_16),
126                 safe_for_read(READ_BUFFER),
127                 safe_for_read(READ_DEFECT_DATA),
128                 safe_for_read(READ_LONG),
129                 safe_for_read(INQUIRY),
130                 safe_for_read(MODE_SENSE),
131                 safe_for_read(MODE_SENSE_10),
132                 safe_for_read(LOG_SENSE),
133                 safe_for_read(START_STOP),
134                 safe_for_read(GPCMD_VERIFY_10),
135                 safe_for_read(VERIFY_16),
136
137                 /* Audio CD commands */
138                 safe_for_read(GPCMD_PLAY_CD),
139                 safe_for_read(GPCMD_PLAY_AUDIO_10),
140                 safe_for_read(GPCMD_PLAY_AUDIO_MSF),
141                 safe_for_read(GPCMD_PLAY_AUDIO_TI),
142                 safe_for_read(GPCMD_PAUSE_RESUME),
143
144                 /* CD/DVD data reading */
145                 safe_for_read(GPCMD_READ_BUFFER_CAPACITY),
146                 safe_for_read(GPCMD_READ_CD),
147                 safe_for_read(GPCMD_READ_CD_MSF),
148                 safe_for_read(GPCMD_READ_DISC_INFO),
149                 safe_for_read(GPCMD_READ_CDVD_CAPACITY),
150                 safe_for_read(GPCMD_READ_DVD_STRUCTURE),
151                 safe_for_read(GPCMD_READ_HEADER),
152                 safe_for_read(GPCMD_READ_TRACK_RZONE_INFO),
153                 safe_for_read(GPCMD_READ_SUBCHANNEL),
154                 safe_for_read(GPCMD_READ_TOC_PMA_ATIP),
155                 safe_for_read(GPCMD_REPORT_KEY),
156                 safe_for_read(GPCMD_SCAN),
157                 safe_for_read(GPCMD_GET_CONFIGURATION),
158                 safe_for_read(GPCMD_READ_FORMAT_CAPACITIES),
159                 safe_for_read(GPCMD_GET_EVENT_STATUS_NOTIFICATION),
160                 safe_for_read(GPCMD_GET_PERFORMANCE),
161                 safe_for_read(GPCMD_SEEK),
162                 safe_for_read(GPCMD_STOP_PLAY_SCAN),
163
164                 /* Basic writing commands */
165                 safe_for_write(WRITE_6),
166                 safe_for_write(WRITE_10),
167                 safe_for_write(WRITE_VERIFY),
168                 safe_for_write(WRITE_12),
169                 safe_for_write(WRITE_VERIFY_12),
170                 safe_for_write(WRITE_16),
171                 safe_for_write(WRITE_LONG),
172                 safe_for_write(WRITE_LONG_2),
173                 safe_for_write(ERASE),
174                 safe_for_write(GPCMD_MODE_SELECT_10),
175                 safe_for_write(MODE_SELECT),
176                 safe_for_write(LOG_SELECT),
177                 safe_for_write(GPCMD_BLANK),
178                 safe_for_write(GPCMD_CLOSE_TRACK),
179                 safe_for_write(GPCMD_FLUSH_CACHE),
180                 safe_for_write(GPCMD_FORMAT_UNIT),
181                 safe_for_write(GPCMD_REPAIR_RZONE_TRACK),
182                 safe_for_write(GPCMD_RESERVE_RZONE_TRACK),
183                 safe_for_write(GPCMD_SEND_DVD_STRUCTURE),
184                 safe_for_write(GPCMD_SEND_EVENT),
185                 safe_for_write(GPCMD_SEND_KEY),
186                 safe_for_write(GPCMD_SEND_OPC),
187                 safe_for_write(GPCMD_SEND_CUE_SHEET),
188                 safe_for_write(GPCMD_SET_SPEED),
189                 safe_for_write(GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL),
190                 safe_for_write(GPCMD_LOAD_UNLOAD),
191                 safe_for_write(GPCMD_SET_STREAMING),
192         };
193         unsigned char type = cmd_type[cmd[0]];
194         int has_write_perm = 0;
195
196         /* Anybody who can open the device can do a read-safe command */
197         if (type & CMD_READ_SAFE)
198                 return 0;
199
200         /*
201          * file can be NULL from ioctl_by_bdev()...
202          */
203         if (file)
204                 has_write_perm = file->f_mode & FMODE_WRITE;
205
206         /* Write-safe commands just require a writable open.. */
207         if ((type & CMD_WRITE_SAFE) && has_write_perm)
208                 return 0;
209
210         /* And root can do any command.. */
211         if (capable(CAP_SYS_RAWIO))
212                 return 0;
213
214         if (!type) {
215                 cmd_type[cmd[0]] = CMD_WARNED;
216                 printk(KERN_WARNING "scsi: unknown opcode 0x%02x\n", cmd[0]);
217         }
218
219         /* Otherwise fail it with an "Operation not permitted" */
220         return -EPERM;
221 }
222
223 static int sg_io(struct file *file, request_queue_t *q,
224                 struct gendisk *bd_disk, struct sg_io_hdr *hdr)
225 {
226         unsigned long start_time;
227         int writing = 0, ret = 0;
228         struct request *rq;
229         char sense[SCSI_SENSE_BUFFERSIZE];
230         unsigned char cmd[BLK_MAX_CDB];
231         struct bio *bio;
232
233         if (hdr->interface_id != 'S')
234                 return -EINVAL;
235         if (hdr->cmd_len > BLK_MAX_CDB)
236                 return -EINVAL;
237         if (copy_from_user(cmd, hdr->cmdp, hdr->cmd_len))
238                 return -EFAULT;
239         if (verify_command(file, cmd))
240                 return -EPERM;
241
242         if (hdr->dxfer_len > (q->max_hw_sectors << 9))
243                 return -EIO;
244
245         if (hdr->dxfer_len)
246                 switch (hdr->dxfer_direction) {
247                 default:
248                         return -EINVAL;
249                 case SG_DXFER_TO_DEV:
250                         writing = 1;
251                         break;
252                 case SG_DXFER_TO_FROM_DEV:
253                 case SG_DXFER_FROM_DEV:
254                         break;
255                 }
256
257         rq = blk_get_request(q, writing ? WRITE : READ, GFP_KERNEL);
258         if (!rq)
259                 return -ENOMEM;
260
261         /*
262          * fill in request structure
263          */
264         rq->cmd_len = hdr->cmd_len;
265         memset(rq->cmd, 0, BLK_MAX_CDB); /* ATAPI hates garbage after CDB */
266         memcpy(rq->cmd, cmd, hdr->cmd_len);
267
268         memset(sense, 0, sizeof(sense));
269         rq->sense = sense;
270         rq->sense_len = 0;
271
272         rq->cmd_type = REQ_TYPE_BLOCK_PC;
273
274         rq->timeout = jiffies_to_msecs(hdr->timeout);
275         if (!rq->timeout)
276                 rq->timeout = q->sg_timeout;
277         if (!rq->timeout)
278                 rq->timeout = BLK_DEFAULT_TIMEOUT;
279
280         if (hdr->iovec_count) {
281                 const int size = sizeof(struct sg_iovec) * hdr->iovec_count;
282                 struct sg_iovec *iov;
283
284                 iov = kmalloc(size, GFP_KERNEL);
285                 if (!iov) {
286                         ret = -ENOMEM;
287                         goto out;
288                 }
289
290                 if (copy_from_user(iov, hdr->dxferp, size)) {
291                         kfree(iov);
292                         ret = -EFAULT;
293                         goto out;
294                 }
295
296                 ret = blk_rq_map_user_iov(q, rq, iov, hdr->iovec_count,
297                                           hdr->dxfer_len);
298                 kfree(iov);
299         } else if (hdr->dxfer_len)
300                 ret = blk_rq_map_user(q, rq, hdr->dxferp, hdr->dxfer_len);
301
302         if (ret)
303                 goto out;
304
305         bio = rq->bio;
306         rq->retries = 0;
307
308         start_time = jiffies;
309
310         /* ignore return value. All information is passed back to caller
311          * (if he doesn't check that is his problem).
312          * N.B. a non-zero SCSI status is _not_ necessarily an error.
313          */
314         blk_execute_rq(q, bd_disk, rq, 0);
315
316         /* write to all output members */
317         hdr->status = 0xff & rq->errors;
318         hdr->masked_status = status_byte(rq->errors);
319         hdr->msg_status = msg_byte(rq->errors);
320         hdr->host_status = host_byte(rq->errors);
321         hdr->driver_status = driver_byte(rq->errors);
322         hdr->info = 0;
323         if (hdr->masked_status || hdr->host_status || hdr->driver_status)
324                 hdr->info |= SG_INFO_CHECK;
325         hdr->resid = rq->data_len;
326         hdr->duration = ((jiffies - start_time) * 1000) / HZ;
327         hdr->sb_len_wr = 0;
328
329         if (rq->sense_len && hdr->sbp) {
330                 int len = min((unsigned int) hdr->mx_sb_len, rq->sense_len);
331
332                 if (!copy_to_user(hdr->sbp, rq->sense, len))
333                         hdr->sb_len_wr = len;
334         }
335
336         if (blk_rq_unmap_user(bio))
337                 ret = -EFAULT;
338
339         /* may not have succeeded, but output values written to control
340          * structure (struct sg_io_hdr).  */
341 out:
342         blk_put_request(rq);
343         return ret;
344 }
345
346 /**
347  * sg_scsi_ioctl  --  handle deprecated SCSI_IOCTL_SEND_COMMAND ioctl
348  * @file:       file this ioctl operates on (optional)
349  * @q:          request queue to send scsi commands down
350  * @disk:       gendisk to operate on (option)
351  * @sic:        userspace structure describing the command to perform
352  *
353  * Send down the scsi command described by @sic to the device below
354  * the request queue @q.  If @file is non-NULL it's used to perform
355  * fine-grained permission checks that allow users to send down
356  * non-destructive SCSI commands.  If the caller has a struct gendisk
357  * available it should be passed in as @disk to allow the low level
358  * driver to use the information contained in it.  A non-NULL @disk
359  * is only allowed if the caller knows that the low level driver doesn't
360  * need it (e.g. in the scsi subsystem).
361  *
362  * Notes:
363  *   -  This interface is deprecated - users should use the SG_IO
364  *      interface instead, as this is a more flexible approach to
365  *      performing SCSI commands on a device.
366  *   -  The SCSI command length is determined by examining the 1st byte
367  *      of the given command. There is no way to override this.
368  *   -  Data transfers are limited to PAGE_SIZE
369  *   -  The length (x + y) must be at least OMAX_SB_LEN bytes long to
370  *      accommodate the sense buffer when an error occurs.
371  *      The sense buffer is truncated to OMAX_SB_LEN (16) bytes so that
372  *      old code will not be surprised.
373  *   -  If a Unix error occurs (e.g. ENOMEM) then the user will receive
374  *      a negative return and the Unix error code in 'errno'.
375  *      If the SCSI command succeeds then 0 is returned.
376  *      Positive numbers returned are the compacted SCSI error codes (4
377  *      bytes in one int) where the lowest byte is the SCSI status.
378  */
379 #define OMAX_SB_LEN 16          /* For backward compatibility */
380 int sg_scsi_ioctl(struct file *file, struct request_queue *q,
381                   struct gendisk *disk, struct scsi_ioctl_command __user *sic)
382 {
383         struct request *rq;
384         int err;
385         unsigned int in_len, out_len, bytes, opcode, cmdlen;
386         char *buffer = NULL, sense[SCSI_SENSE_BUFFERSIZE];
387
388         if (!sic)
389                 return -EINVAL;
390
391         /*
392          * get in an out lengths, verify they don't exceed a page worth of data
393          */
394         if (get_user(in_len, &sic->inlen))
395                 return -EFAULT;
396         if (get_user(out_len, &sic->outlen))
397                 return -EFAULT;
398         if (in_len > PAGE_SIZE || out_len > PAGE_SIZE)
399                 return -EINVAL;
400         if (get_user(opcode, sic->data))
401                 return -EFAULT;
402
403         bytes = max(in_len, out_len);
404         if (bytes) {
405                 buffer = kmalloc(bytes, q->bounce_gfp | GFP_USER| __GFP_NOWARN);
406                 if (!buffer)
407                         return -ENOMEM;
408
409                 memset(buffer, 0, bytes);
410         }
411
412         rq = blk_get_request(q, in_len ? WRITE : READ, __GFP_WAIT);
413
414         cmdlen = COMMAND_SIZE(opcode);
415
416         /*
417          * get command and data to send to device, if any
418          */
419         err = -EFAULT;
420         rq->cmd_len = cmdlen;
421         if (copy_from_user(rq->cmd, sic->data, cmdlen))
422                 goto error;
423
424         if (in_len && copy_from_user(buffer, sic->data + cmdlen, in_len))
425                 goto error;
426
427         err = verify_command(file, rq->cmd);
428         if (err)
429                 goto error;
430
431         /* default.  possible overriden later */
432         rq->retries = 5;
433
434         switch (opcode) {
435         case SEND_DIAGNOSTIC:
436         case FORMAT_UNIT:
437                 rq->timeout = FORMAT_UNIT_TIMEOUT;
438                 rq->retries = 1;
439                 break;
440         case START_STOP:
441                 rq->timeout = START_STOP_TIMEOUT;
442                 break;
443         case MOVE_MEDIUM:
444                 rq->timeout = MOVE_MEDIUM_TIMEOUT;
445                 break;
446         case READ_ELEMENT_STATUS:
447                 rq->timeout = READ_ELEMENT_STATUS_TIMEOUT;
448                 break;
449         case READ_DEFECT_DATA:
450                 rq->timeout = READ_DEFECT_DATA_TIMEOUT;
451                 rq->retries = 1;
452                 break;
453         default:
454                 rq->timeout = BLK_DEFAULT_TIMEOUT;
455                 break;
456         }
457
458         if (bytes && blk_rq_map_kern(q, rq, buffer, bytes, __GFP_WAIT)) {
459                 err = DRIVER_ERROR << 24;
460                 goto out;
461         }
462
463         memset(sense, 0, sizeof(sense));
464         rq->sense = sense;
465         rq->sense_len = 0;
466         rq->cmd_type = REQ_TYPE_BLOCK_PC;
467
468         blk_execute_rq(q, disk, rq, 0);
469
470 out:
471         err = rq->errors & 0xff;        /* only 8 bit SCSI status */
472         if (err) {
473                 if (rq->sense_len && rq->sense) {
474                         bytes = (OMAX_SB_LEN > rq->sense_len) ?
475                                 rq->sense_len : OMAX_SB_LEN;
476                         if (copy_to_user(sic->data, rq->sense, bytes))
477                                 err = -EFAULT;
478                 }
479         } else {
480                 if (copy_to_user(sic->data, buffer, out_len))
481                         err = -EFAULT;
482         }
483         
484 error:
485         kfree(buffer);
486         blk_put_request(rq);
487         return err;
488 }
489 EXPORT_SYMBOL_GPL(sg_scsi_ioctl);
490
491 /* Send basic block requests */
492 static int __blk_send_generic(request_queue_t *q, struct gendisk *bd_disk, int cmd, int data)
493 {
494         struct request *rq;
495         int err;
496
497         rq = blk_get_request(q, WRITE, __GFP_WAIT);
498         rq->cmd_type = REQ_TYPE_BLOCK_PC;
499         rq->data = NULL;
500         rq->data_len = 0;
501         rq->timeout = BLK_DEFAULT_TIMEOUT;
502         memset(rq->cmd, 0, sizeof(rq->cmd));
503         rq->cmd[0] = cmd;
504         rq->cmd[4] = data;
505         rq->cmd_len = 6;
506         err = blk_execute_rq(q, bd_disk, rq, 0);
507         blk_put_request(rq);
508
509         return err;
510 }
511
512 static inline int blk_send_start_stop(request_queue_t *q, struct gendisk *bd_disk, int data)
513 {
514         return __blk_send_generic(q, bd_disk, GPCMD_START_STOP_UNIT, data);
515 }
516
517 int scsi_cmd_ioctl(struct file *file, struct gendisk *bd_disk, unsigned int cmd, void __user *arg)
518 {
519         request_queue_t *q;
520         int err;
521
522         q = bd_disk->queue;
523         if (!q)
524                 return -ENXIO;
525
526         if (blk_get_queue(q))
527                 return -ENXIO;
528
529         switch (cmd) {
530                 /*
531                  * new sgv3 interface
532                  */
533                 case SG_GET_VERSION_NUM:
534                         err = sg_get_version(arg);
535                         break;
536                 case SCSI_IOCTL_GET_IDLUN:
537                         err = scsi_get_idlun(q, arg);
538                         break;
539                 case SCSI_IOCTL_GET_BUS_NUMBER:
540                         err = scsi_get_bus(q, arg);
541                         break;
542                 case SG_SET_TIMEOUT:
543                         err = sg_set_timeout(q, arg);
544                         break;
545                 case SG_GET_TIMEOUT:
546                         err = sg_get_timeout(q);
547                         break;
548                 case SG_GET_RESERVED_SIZE:
549                         err = sg_get_reserved_size(q, arg);
550                         break;
551                 case SG_SET_RESERVED_SIZE:
552                         err = sg_set_reserved_size(q, arg);
553                         break;
554                 case SG_EMULATED_HOST:
555                         err = sg_emulated_host(q, arg);
556                         break;
557                 case SG_IO: {
558                         struct sg_io_hdr hdr;
559
560                         err = -EFAULT;
561                         if (copy_from_user(&hdr, arg, sizeof(hdr)))
562                                 break;
563                         err = sg_io(file, q, bd_disk, &hdr);
564                         if (err == -EFAULT)
565                                 break;
566
567                         if (copy_to_user(arg, &hdr, sizeof(hdr)))
568                                 err = -EFAULT;
569                         break;
570                 }
571                 case CDROM_SEND_PACKET: {
572                         struct cdrom_generic_command cgc;
573                         struct sg_io_hdr hdr;
574
575                         err = -EFAULT;
576                         if (copy_from_user(&cgc, arg, sizeof(cgc)))
577                                 break;
578                         cgc.timeout = clock_t_to_jiffies(cgc.timeout);
579                         memset(&hdr, 0, sizeof(hdr));
580                         hdr.interface_id = 'S';
581                         hdr.cmd_len = sizeof(cgc.cmd);
582                         hdr.dxfer_len = cgc.buflen;
583                         err = 0;
584                         switch (cgc.data_direction) {
585                                 case CGC_DATA_UNKNOWN:
586                                         hdr.dxfer_direction = SG_DXFER_UNKNOWN;
587                                         break;
588                                 case CGC_DATA_WRITE:
589                                         hdr.dxfer_direction = SG_DXFER_TO_DEV;
590                                         break;
591                                 case CGC_DATA_READ:
592                                         hdr.dxfer_direction = SG_DXFER_FROM_DEV;
593                                         break;
594                                 case CGC_DATA_NONE:
595                                         hdr.dxfer_direction = SG_DXFER_NONE;
596                                         break;
597                                 default:
598                                         err = -EINVAL;
599                         }
600                         if (err)
601                                 break;
602
603                         hdr.dxferp = cgc.buffer;
604                         hdr.sbp = cgc.sense;
605                         if (hdr.sbp)
606                                 hdr.mx_sb_len = sizeof(struct request_sense);
607                         hdr.timeout = cgc.timeout;
608                         hdr.cmdp = ((struct cdrom_generic_command __user*) arg)->cmd;
609                         hdr.cmd_len = sizeof(cgc.cmd);
610
611                         err = sg_io(file, q, bd_disk, &hdr);
612                         if (err == -EFAULT)
613                                 break;
614
615                         if (hdr.status)
616                                 err = -EIO;
617
618                         cgc.stat = err;
619                         cgc.buflen = hdr.resid;
620                         if (copy_to_user(arg, &cgc, sizeof(cgc)))
621                                 err = -EFAULT;
622
623                         break;
624                 }
625
626                 /*
627                  * old junk scsi send command ioctl
628                  */
629                 case SCSI_IOCTL_SEND_COMMAND:
630                         printk(KERN_WARNING "program %s is using a deprecated SCSI ioctl, please convert it to SG_IO\n", current->comm);
631                         err = -EINVAL;
632                         if (!arg)
633                                 break;
634
635                         err = sg_scsi_ioctl(file, q, bd_disk, arg);
636                         break;
637                 case CDROMCLOSETRAY:
638                         err = blk_send_start_stop(q, bd_disk, 0x03);
639                         break;
640                 case CDROMEJECT:
641                         err = blk_send_start_stop(q, bd_disk, 0x02);
642                         break;
643                 default:
644                         err = -ENOTTY;
645         }
646
647         blk_put_queue(q);
648         return err;
649 }
650
651 EXPORT_SYMBOL(scsi_cmd_ioctl);