blob: 650bade5ea5a37860d3442b4efb5814ab9f25ada [file] [log] [blame]
Christoph Hellwig8c165672019-04-30 14:42:39 -04001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Copyright (C) 2001 Jens Axboe <axboe@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
Arnd Bergmann98aaaec2019-03-14 17:45:18 +01005#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/kernel.h>
7#include <linux/errno.h>
8#include <linux/string.h>
9#include <linux/module.h>
10#include <linux/blkdev.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080011#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/completion.h>
13#include <linux/cdrom.h>
Paolo Bonzini0bfc96c2012-01-12 16:01:28 +010014#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/slab.h>
16#include <linux/times.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070017#include <linux/uio.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080018#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <scsi/scsi.h>
21#include <scsi/scsi_ioctl.h>
22#include <scsi/scsi_cmnd.h>
23
Jens Axboe018e0442009-06-26 16:27:10 +020024struct blk_cmd_filter {
25 unsigned long read_ok[BLK_SCSI_CMD_PER_LONG];
26 unsigned long write_ok[BLK_SCSI_CMD_PER_LONG];
H Hartley Sweeten476d42f2009-11-04 09:10:33 +010027};
28
29static struct blk_cmd_filter blk_default_cmd_filter;
Jens Axboe018e0442009-06-26 16:27:10 +020030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/* Command group 3 is reserved and should never be used. */
Boaz Harroshdb4742d2008-04-30 11:27:26 +030032const unsigned char scsi_command_size_tbl[8] =
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
34 6, 10, 10, 12,
35 16, 12, 10, 10
36};
Boaz Harroshdb4742d2008-04-30 11:27:26 +030037EXPORT_SYMBOL(scsi_command_size_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <scsi/sg.h>
40
41static int sg_get_version(int __user *p)
42{
Arjan van de Ven64100092006-01-06 09:46:02 +010043 static const int sg_version_num = 30527;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 return put_user(sg_version_num, p);
45}
46
Jens Axboe165125e2007-07-24 09:28:11 +020047static int scsi_get_idlun(struct request_queue *q, int __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 return put_user(0, p);
50}
51
Jens Axboe165125e2007-07-24 09:28:11 +020052static int scsi_get_bus(struct request_queue *q, int __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
54 return put_user(0, p);
55}
56
Jens Axboe165125e2007-07-24 09:28:11 +020057static int sg_get_timeout(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Milton Miller2b91baf2008-11-17 13:10:34 +010059 return jiffies_to_clock_t(q->sg_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060}
61
Jens Axboe165125e2007-07-24 09:28:11 +020062static int sg_set_timeout(struct request_queue *q, int __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
64 int timeout, err = get_user(timeout, p);
65
66 if (!err)
Milton Miller2b91baf2008-11-17 13:10:34 +010067 q->sg_timeout = clock_t_to_jiffies(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 return err;
70}
71
Akinobu Mita9b4231b2014-05-25 21:43:34 +090072static int max_sectors_bytes(struct request_queue *q)
73{
74 unsigned int max_sectors = queue_max_sectors(q);
75
76 max_sectors = min_t(unsigned int, max_sectors, INT_MAX >> 9);
77
78 return max_sectors << 9;
79}
80
Jens Axboe165125e2007-07-24 09:28:11 +020081static int sg_get_reserved_size(struct request_queue *q, int __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Akinobu Mita9b4231b2014-05-25 21:43:34 +090083 int val = min_t(int, q->sg_reserved_size, max_sectors_bytes(q));
Alan Stern44ec9542007-02-20 11:01:57 -050084
85 return put_user(val, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
Jens Axboe165125e2007-07-24 09:28:11 +020088static int sg_set_reserved_size(struct request_queue *q, int __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 int size, err = get_user(size, p);
91
92 if (err)
93 return err;
94
95 if (size < 0)
96 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Akinobu Mita9b4231b2014-05-25 21:43:34 +090098 q->sg_reserved_size = min(size, max_sectors_bytes(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return 0;
100}
101
102/*
103 * will always return that we are ATAPI even for a real SCSI drive, I'm not
104 * so sure this is worth doing anything about (why would you care??)
105 */
Jens Axboe165125e2007-07-24 09:28:11 +0200106static int sg_emulated_host(struct request_queue *q, int __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 return put_user(1, p);
109}
110
Jens Axboe018e0442009-06-26 16:27:10 +0200111static void blk_set_cmd_filter_defaults(struct blk_cmd_filter *filter)
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900112{
113 /* Basic read-only commands */
114 __set_bit(TEST_UNIT_READY, filter->read_ok);
115 __set_bit(REQUEST_SENSE, filter->read_ok);
116 __set_bit(READ_6, filter->read_ok);
117 __set_bit(READ_10, filter->read_ok);
118 __set_bit(READ_12, filter->read_ok);
119 __set_bit(READ_16, filter->read_ok);
120 __set_bit(READ_BUFFER, filter->read_ok);
121 __set_bit(READ_DEFECT_DATA, filter->read_ok);
122 __set_bit(READ_CAPACITY, filter->read_ok);
123 __set_bit(READ_LONG, filter->read_ok);
124 __set_bit(INQUIRY, filter->read_ok);
125 __set_bit(MODE_SENSE, filter->read_ok);
126 __set_bit(MODE_SENSE_10, filter->read_ok);
127 __set_bit(LOG_SENSE, filter->read_ok);
128 __set_bit(START_STOP, filter->read_ok);
129 __set_bit(GPCMD_VERIFY_10, filter->read_ok);
130 __set_bit(VERIFY_16, filter->read_ok);
131 __set_bit(REPORT_LUNS, filter->read_ok);
Hannes Reineckeeb846d92014-11-17 14:25:19 +0100132 __set_bit(SERVICE_ACTION_IN_16, filter->read_ok);
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900133 __set_bit(RECEIVE_DIAGNOSTIC, filter->read_ok);
134 __set_bit(MAINTENANCE_IN, filter->read_ok);
135 __set_bit(GPCMD_READ_BUFFER_CAPACITY, filter->read_ok);
136
137 /* Audio CD commands */
138 __set_bit(GPCMD_PLAY_CD, filter->read_ok);
139 __set_bit(GPCMD_PLAY_AUDIO_10, filter->read_ok);
140 __set_bit(GPCMD_PLAY_AUDIO_MSF, filter->read_ok);
141 __set_bit(GPCMD_PLAY_AUDIO_TI, filter->read_ok);
142 __set_bit(GPCMD_PAUSE_RESUME, filter->read_ok);
143
144 /* CD/DVD data reading */
145 __set_bit(GPCMD_READ_CD, filter->read_ok);
146 __set_bit(GPCMD_READ_CD_MSF, filter->read_ok);
147 __set_bit(GPCMD_READ_DISC_INFO, filter->read_ok);
148 __set_bit(GPCMD_READ_CDVD_CAPACITY, filter->read_ok);
149 __set_bit(GPCMD_READ_DVD_STRUCTURE, filter->read_ok);
150 __set_bit(GPCMD_READ_HEADER, filter->read_ok);
151 __set_bit(GPCMD_READ_TRACK_RZONE_INFO, filter->read_ok);
152 __set_bit(GPCMD_READ_SUBCHANNEL, filter->read_ok);
153 __set_bit(GPCMD_READ_TOC_PMA_ATIP, filter->read_ok);
154 __set_bit(GPCMD_REPORT_KEY, filter->read_ok);
155 __set_bit(GPCMD_SCAN, filter->read_ok);
156 __set_bit(GPCMD_GET_CONFIGURATION, filter->read_ok);
157 __set_bit(GPCMD_READ_FORMAT_CAPACITIES, filter->read_ok);
158 __set_bit(GPCMD_GET_EVENT_STATUS_NOTIFICATION, filter->read_ok);
159 __set_bit(GPCMD_GET_PERFORMANCE, filter->read_ok);
160 __set_bit(GPCMD_SEEK, filter->read_ok);
161 __set_bit(GPCMD_STOP_PLAY_SCAN, filter->read_ok);
162
163 /* Basic writing commands */
164 __set_bit(WRITE_6, filter->write_ok);
165 __set_bit(WRITE_10, filter->write_ok);
166 __set_bit(WRITE_VERIFY, filter->write_ok);
167 __set_bit(WRITE_12, filter->write_ok);
168 __set_bit(WRITE_VERIFY_12, filter->write_ok);
169 __set_bit(WRITE_16, filter->write_ok);
170 __set_bit(WRITE_LONG, filter->write_ok);
171 __set_bit(WRITE_LONG_2, filter->write_ok);
Mauricio Faria de Oliveira25cdb642016-12-15 11:48:18 -0600172 __set_bit(WRITE_SAME, filter->write_ok);
173 __set_bit(WRITE_SAME_16, filter->write_ok);
174 __set_bit(WRITE_SAME_32, filter->write_ok);
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900175 __set_bit(ERASE, filter->write_ok);
176 __set_bit(GPCMD_MODE_SELECT_10, filter->write_ok);
177 __set_bit(MODE_SELECT, filter->write_ok);
178 __set_bit(LOG_SELECT, filter->write_ok);
179 __set_bit(GPCMD_BLANK, filter->write_ok);
180 __set_bit(GPCMD_CLOSE_TRACK, filter->write_ok);
181 __set_bit(GPCMD_FLUSH_CACHE, filter->write_ok);
182 __set_bit(GPCMD_FORMAT_UNIT, filter->write_ok);
183 __set_bit(GPCMD_REPAIR_RZONE_TRACK, filter->write_ok);
184 __set_bit(GPCMD_RESERVE_RZONE_TRACK, filter->write_ok);
185 __set_bit(GPCMD_SEND_DVD_STRUCTURE, filter->write_ok);
186 __set_bit(GPCMD_SEND_EVENT, filter->write_ok);
187 __set_bit(GPCMD_SEND_KEY, filter->write_ok);
188 __set_bit(GPCMD_SEND_OPC, filter->write_ok);
189 __set_bit(GPCMD_SEND_CUE_SHEET, filter->write_ok);
190 __set_bit(GPCMD_SET_SPEED, filter->write_ok);
191 __set_bit(GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL, filter->write_ok);
192 __set_bit(GPCMD_LOAD_UNLOAD, filter->write_ok);
193 __set_bit(GPCMD_SET_STREAMING, filter->write_ok);
xiphmont@xiph.org35e396c2008-08-22 11:12:21 +0200194 __set_bit(GPCMD_SET_READ_AHEAD, filter->write_ok);
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900195}
Jens Axboe018e0442009-06-26 16:27:10 +0200196
Christoph Hellwigf00c4d82017-11-05 10:36:31 +0300197int blk_verify_command(unsigned char *cmd, fmode_t mode)
Jens Axboe018e0442009-06-26 16:27:10 +0200198{
199 struct blk_cmd_filter *filter = &blk_default_cmd_filter;
200
201 /* root can do any command. */
202 if (capable(CAP_SYS_RAWIO))
203 return 0;
204
Jens Axboe018e0442009-06-26 16:27:10 +0200205 /* Anybody who can open the device can do a read-safe command */
206 if (test_bit(cmd[0], filter->read_ok))
207 return 0;
208
209 /* Write-safe commands require a writable open */
Christoph Hellwigf00c4d82017-11-05 10:36:31 +0300210 if (test_bit(cmd[0], filter->write_ok) && (mode & FMODE_WRITE))
Jens Axboe018e0442009-06-26 16:27:10 +0200211 return 0;
212
213 return -EPERM;
214}
215EXPORT_SYMBOL(blk_verify_command);
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900216
Jens Axboe165125e2007-07-24 09:28:11 +0200217static int blk_fill_sghdr_rq(struct request_queue *q, struct request *rq,
Al Viro5842e512008-09-02 16:35:55 -0400218 struct sg_io_hdr *hdr, fmode_t mode)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200219{
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100220 struct scsi_request *req = scsi_req(rq);
221
222 if (copy_from_user(req->cmd, hdr->cmdp, hdr->cmd_len))
Jens Axboe3d6392c2007-07-09 12:38:05 +0200223 return -EFAULT;
Christoph Hellwigf00c4d82017-11-05 10:36:31 +0300224 if (blk_verify_command(req->cmd, mode))
Jens Axboe3d6392c2007-07-09 12:38:05 +0200225 return -EPERM;
226
227 /*
228 * fill in request structure
229 */
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100230 req->cmd_len = hdr->cmd_len;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200231
Tejun Heo24bb8fb2007-12-05 21:28:24 +0100232 rq->timeout = msecs_to_jiffies(hdr->timeout);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200233 if (!rq->timeout)
234 rq->timeout = q->sg_timeout;
235 if (!rq->timeout)
236 rq->timeout = BLK_DEFAULT_SG_TIMEOUT;
Linus Torvaldsf2f1fa72008-12-05 14:49:18 -0800237 if (rq->timeout < BLK_MIN_SG_TIMEOUT)
238 rq->timeout = BLK_MIN_SG_TIMEOUT;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200239
240 return 0;
241}
Jens Axboe3d6392c2007-07-09 12:38:05 +0200242
FUJITA Tomonori41e17032007-07-22 10:06:50 +0900243static int blk_complete_sghdr_rq(struct request *rq, struct sg_io_hdr *hdr,
244 struct bio *bio)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200245{
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100246 struct scsi_request *req = scsi_req(rq);
FUJITA Tomonori91e463c2009-04-13 20:03:10 +0200247 int r, ret = 0;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200248
249 /*
250 * fill in all the output members
251 */
Christoph Hellwig17d53632017-04-20 16:03:01 +0200252 hdr->status = req->result & 0xff;
253 hdr->masked_status = status_byte(req->result);
254 hdr->msg_status = msg_byte(req->result);
255 hdr->host_status = host_byte(req->result);
256 hdr->driver_status = driver_byte(req->result);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200257 hdr->info = 0;
258 if (hdr->masked_status || hdr->host_status || hdr->driver_status)
259 hdr->info |= SG_INFO_CHECK;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100260 hdr->resid = req->resid_len;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200261 hdr->sb_len_wr = 0;
262
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100263 if (req->sense_len && hdr->sbp) {
264 int len = min((unsigned int) hdr->mx_sb_len, req->sense_len);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200265
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100266 if (!copy_to_user(hdr->sbp, req->sense, len))
Jens Axboe3d6392c2007-07-09 12:38:05 +0200267 hdr->sb_len_wr = len;
268 else
269 ret = -EFAULT;
270 }
271
FUJITA Tomonori91e463c2009-04-13 20:03:10 +0200272 r = blk_rq_unmap_user(bio);
273 if (!ret)
274 ret = r;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200275
Boaz Harrosh1cd96c22009-03-24 12:35:07 +0100276 return ret;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200277}
Jens Axboe3d6392c2007-07-09 12:38:05 +0200278
Al Viro5842e512008-09-02 16:35:55 -0400279static int sg_io(struct request_queue *q, struct gendisk *bd_disk,
280 struct sg_io_hdr *hdr, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Jens Axboe3d6392c2007-07-09 12:38:05 +0200282 unsigned long start_time;
Kent Overstreete0ce0ea2013-08-07 14:20:17 -0700283 ssize_t ret = 0;
284 int writing = 0;
Douglas Gilbertd1515612014-07-01 10:48:05 -0600285 int at_head = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 struct request *rq;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100287 struct scsi_request *req;
FUJITA Tomonori77d172c2006-12-11 10:01:34 +0100288 struct bio *bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 if (hdr->interface_id != 'S')
291 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400293 if (hdr->dxfer_len > (queue_max_hw_sectors(q) << 9))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return -EIO;
295
James Bottomley f1970ba2005-06-20 14:06:52 +0200296 if (hdr->dxfer_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 switch (hdr->dxfer_direction) {
298 default:
299 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 case SG_DXFER_TO_DEV:
301 writing = 1;
302 break;
Jens Axboe616e8a02006-11-13 18:04:59 +0100303 case SG_DXFER_TO_FROM_DEV:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 case SG_DXFER_FROM_DEV:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 break;
306 }
Douglas Gilbertd1515612014-07-01 10:48:05 -0600307 if (hdr->flags & SG_FLAG_Q_AT_HEAD)
308 at_head = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Christoph Hellwiga57821c2014-08-21 20:39:53 -0500310 ret = -ENOMEM;
Christoph Hellwigff005a02018-05-09 09:54:05 +0200311 rq = blk_get_request(q, writing ? REQ_OP_SCSI_OUT : REQ_OP_SCSI_IN, 0);
Joe Lawrencea492f072014-08-28 08:15:21 -0600312 if (IS_ERR(rq))
313 return PTR_ERR(rq);
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100314 req = scsi_req(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Christoph Hellwiga57821c2014-08-21 20:39:53 -0500316 if (hdr->cmd_len > BLK_MAX_CDB) {
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100317 req->cmd = kzalloc(hdr->cmd_len, GFP_KERNEL);
318 if (!req->cmd)
Christoph Hellwiga57821c2014-08-21 20:39:53 -0500319 goto out_put_request;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200320 }
Mike Christie0e75f902006-12-01 10:40:55 +0100321
Paolo Bonzini2c4cffe2015-06-26 11:44:46 +0200322 ret = blk_fill_sghdr_rq(q, rq, hdr, mode);
323 if (ret < 0)
Christoph Hellwiga57821c2014-08-21 20:39:53 -0500324 goto out_free_cdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Sabrina Dubrocad19d7442014-08-26 16:14:02 +0200326 ret = 0;
James Bottomley f1970ba2005-06-20 14:06:52 +0200327 if (hdr->iovec_count) {
Kent Overstreet26e49cf2015-01-18 16:16:31 +0100328 struct iov_iter i;
Christian Engelmayer17a05cc2014-01-19 02:08:49 +0100329 struct iovec *iov = NULL;
James Bottomley f1970ba2005-06-20 14:06:52 +0200330
Arnd Bergmann98aaaec2019-03-14 17:45:18 +0100331#ifdef CONFIG_COMPAT
332 if (in_compat_syscall())
333 ret = compat_import_iovec(rq_data_dir(rq),
334 hdr->dxferp, hdr->iovec_count,
335 0, &iov, &i);
336 else
337#endif
338 ret = import_iovec(rq_data_dir(rq),
Al Viroe272b892015-03-21 20:02:55 -0400339 hdr->dxferp, hdr->iovec_count,
340 0, &iov, &i);
341 if (ret < 0)
Christoph Hellwiga57821c2014-08-21 20:39:53 -0500342 goto out_free_cdb;
James Bottomley f1970ba2005-06-20 14:06:52 +0200343
Tejun Heo25636e22009-04-15 22:10:24 +0900344 /* SG_IO howto says that the shorter of the two wins */
Al Viroe272b892015-03-21 20:02:55 -0400345 iov_iter_truncate(&i, hdr->dxfer_len);
Tejun Heo25636e22009-04-15 22:10:24 +0900346
Kent Overstreet26e49cf2015-01-18 16:16:31 +0100347 ret = blk_rq_map_user_iov(q, rq, NULL, &i, GFP_KERNEL);
Kent Overstreete0ce0ea2013-08-07 14:20:17 -0700348 kfree(iov);
James Bottomley f1970ba2005-06-20 14:06:52 +0200349 } else if (hdr->dxfer_len)
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900350 ret = blk_rq_map_user(q, rq, NULL, hdr->dxferp, hdr->dxfer_len,
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900351 GFP_KERNEL);
James Bottomley f1970ba2005-06-20 14:06:52 +0200352
353 if (ret)
Christoph Hellwiga57821c2014-08-21 20:39:53 -0500354 goto out_free_cdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
FUJITA Tomonori77d172c2006-12-11 10:01:34 +0100356 bio = rq->bio;
Christoph Hellwig64c7f1d2017-04-05 19:18:12 +0200357 req->retries = 0;
Jens Axboe01840f92006-02-03 08:37:08 +0100358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 start_time = jiffies;
360
361 /* ignore return value. All information is passed back to caller
362 * (if he doesn't check that is his problem).
363 * N.B. a non-zero SCSI status is _not_ necessarily an error.
364 */
Douglas Gilbertd1515612014-07-01 10:48:05 -0600365 blk_execute_rq(q, bd_disk, rq, at_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Tejun Heo24bb8fb2007-12-05 21:28:24 +0100367 hdr->duration = jiffies_to_msecs(jiffies - start_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Christoph Hellwig2cada582014-08-21 20:38:27 -0500369 ret = blk_complete_sghdr_rq(rq, hdr, bio);
Christoph Hellwiga57821c2014-08-21 20:39:53 -0500370
371out_free_cdb:
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100372 scsi_req_free_cmd(req);
Christoph Hellwiga57821c2014-08-21 20:39:53 -0500373out_put_request:
Jens Axboedd1cab92005-06-20 14:06:01 +0200374 blk_put_request(rq);
375 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100378/**
379 * sg_scsi_ioctl -- handle deprecated SCSI_IOCTL_SEND_COMMAND ioctl
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100380 * @q: request queue to send scsi commands down
381 * @disk: gendisk to operate on (option)
Bart Van Asscheaa981922018-01-09 10:11:00 -0800382 * @mode: mode used to open the file through which the ioctl has been
383 * submitted
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100384 * @sic: userspace structure describing the command to perform
385 *
386 * Send down the scsi command described by @sic to the device below
387 * the request queue @q. If @file is non-NULL it's used to perform
388 * fine-grained permission checks that allow users to send down
389 * non-destructive SCSI commands. If the caller has a struct gendisk
390 * available it should be passed in as @disk to allow the low level
391 * driver to use the information contained in it. A non-NULL @disk
392 * is only allowed if the caller knows that the low level driver doesn't
393 * need it (e.g. in the scsi subsystem).
394 *
395 * Notes:
396 * - This interface is deprecated - users should use the SG_IO
397 * interface instead, as this is a more flexible approach to
398 * performing SCSI commands on a device.
399 * - The SCSI command length is determined by examining the 1st byte
400 * of the given command. There is no way to override this.
401 * - Data transfers are limited to PAGE_SIZE
402 * - The length (x + y) must be at least OMAX_SB_LEN bytes long to
403 * accommodate the sense buffer when an error occurs.
404 * The sense buffer is truncated to OMAX_SB_LEN (16) bytes so that
405 * old code will not be surprised.
406 * - If a Unix error occurs (e.g. ENOMEM) then the user will receive
407 * a negative return and the Unix error code in 'errno'.
408 * If the SCSI command succeeds then 0 is returned.
409 * Positive numbers returned are the compacted SCSI error codes (4
410 * bytes in one int) where the lowest byte is the SCSI status.
411 */
Al Viroe915e872008-09-02 17:16:41 -0400412int sg_scsi_ioctl(struct request_queue *q, struct gendisk *disk, fmode_t mode,
413 struct scsi_ioctl_command __user *sic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Bart Van Asscheaa981922018-01-09 10:11:00 -0800415 enum { OMAX_SB_LEN = 16 }; /* For backward compatibility */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 struct request *rq;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100417 struct scsi_request *req;
Al Viroaeb5d722008-09-02 15:28:45 -0400418 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 unsigned int in_len, out_len, bytes, opcode, cmdlen;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100420 char *buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100422 if (!sic)
423 return -EINVAL;
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /*
426 * get in an out lengths, verify they don't exceed a page worth of data
427 */
428 if (get_user(in_len, &sic->inlen))
429 return -EFAULT;
430 if (get_user(out_len, &sic->outlen))
431 return -EFAULT;
432 if (in_len > PAGE_SIZE || out_len > PAGE_SIZE)
433 return -EINVAL;
434 if (get_user(opcode, sic->data))
435 return -EFAULT;
436
437 bytes = max(in_len, out_len);
438 if (bytes) {
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700439 buffer = kzalloc(bytes, q->bounce_gfp | GFP_USER| __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (!buffer)
441 return -ENOMEM;
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444
Christoph Hellwigff005a02018-05-09 09:54:05 +0200445 rq = blk_get_request(q, in_len ? REQ_OP_SCSI_OUT : REQ_OP_SCSI_IN, 0);
Joe Lawrencea492f072014-08-28 08:15:21 -0600446 if (IS_ERR(rq)) {
447 err = PTR_ERR(rq);
Tony Battersby92697dc2014-11-10 17:40:02 -0500448 goto error_free_buffer;
Joe Lawrenceeb571ee2014-07-02 15:35:16 -0400449 }
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100450 req = scsi_req(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 cmdlen = COMMAND_SIZE(opcode);
453
454 /*
455 * get command and data to send to device, if any
456 */
457 err = -EFAULT;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100458 req->cmd_len = cmdlen;
459 if (copy_from_user(req->cmd, sic->data, cmdlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 goto error;
461
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100462 if (in_len && copy_from_user(buffer, sic->data + cmdlen, in_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 goto error;
464
Christoph Hellwigf00c4d82017-11-05 10:36:31 +0300465 err = blk_verify_command(req->cmd, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (err)
467 goto error;
468
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100469 /* default. possible overriden later */
Christoph Hellwig64c7f1d2017-04-05 19:18:12 +0200470 req->retries = 5;
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 switch (opcode) {
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100473 case SEND_DIAGNOSTIC:
474 case FORMAT_UNIT:
475 rq->timeout = FORMAT_UNIT_TIMEOUT;
Christoph Hellwig64c7f1d2017-04-05 19:18:12 +0200476 req->retries = 1;
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100477 break;
478 case START_STOP:
479 rq->timeout = START_STOP_TIMEOUT;
480 break;
481 case MOVE_MEDIUM:
482 rq->timeout = MOVE_MEDIUM_TIMEOUT;
483 break;
484 case READ_ELEMENT_STATUS:
485 rq->timeout = READ_ELEMENT_STATUS_TIMEOUT;
486 break;
487 case READ_DEFECT_DATA:
488 rq->timeout = READ_DEFECT_DATA_TIMEOUT;
Christoph Hellwig64c7f1d2017-04-05 19:18:12 +0200489 req->retries = 1;
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100490 break;
491 default:
Jens Axboe3d6392c2007-07-09 12:38:05 +0200492 rq->timeout = BLK_DEFAULT_SG_TIMEOUT;
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100493 break;
494 }
495
Christoph Hellwig0eb0b632018-05-09 09:54:08 +0200496 if (bytes && blk_rq_map_kern(q, rq, buffer, bytes, GFP_NOIO)) {
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100497 err = DRIVER_ERROR << 24;
Jan Kara84ce0f02014-10-22 20:13:39 -0600498 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100501 blk_execute_rq(q, disk, rq, 0);
502
Christoph Hellwig17d53632017-04-20 16:03:01 +0200503 err = req->result & 0xff; /* only 8 bit SCSI status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (err) {
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100505 if (req->sense_len && req->sense) {
506 bytes = (OMAX_SB_LEN > req->sense_len) ?
507 req->sense_len : OMAX_SB_LEN;
508 if (copy_to_user(sic->data, req->sense, bytes))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 err = -EFAULT;
510 }
511 } else {
512 if (copy_to_user(sic->data, buffer, out_len))
513 err = -EFAULT;
514 }
515
516error:
Tony Battersby92697dc2014-11-10 17:40:02 -0500517 blk_put_request(rq);
518
519error_free_buffer:
Joe Lawrenceeb571ee2014-07-02 15:35:16 -0400520 kfree(buffer);
Tony Battersby92697dc2014-11-10 17:40:02 -0500521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 return err;
523}
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100524EXPORT_SYMBOL_GPL(sg_scsi_ioctl);
Ben Collinsf98d2df2005-12-19 11:49:24 -0800525
526/* Send basic block requests */
Jens Axboe165125e2007-07-24 09:28:11 +0200527static int __blk_send_generic(struct request_queue *q, struct gendisk *bd_disk,
528 int cmd, int data)
Ben Collinsf98d2df2005-12-19 11:49:24 -0800529{
530 struct request *rq;
531 int err;
532
Christoph Hellwigff005a02018-05-09 09:54:05 +0200533 rq = blk_get_request(q, REQ_OP_SCSI_OUT, 0);
Joe Lawrencea492f072014-08-28 08:15:21 -0600534 if (IS_ERR(rq))
535 return PTR_ERR(rq);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200536 rq->timeout = BLK_DEFAULT_SG_TIMEOUT;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100537 scsi_req(rq)->cmd[0] = cmd;
538 scsi_req(rq)->cmd[4] = data;
539 scsi_req(rq)->cmd_len = 6;
Christoph Hellwigb7819b92017-04-20 16:02:55 +0200540 blk_execute_rq(q, bd_disk, rq, 0);
Christoph Hellwig17d53632017-04-20 16:03:01 +0200541 err = scsi_req(rq)->result ? -EIO : 0;
Ben Collinsf98d2df2005-12-19 11:49:24 -0800542 blk_put_request(rq);
543
544 return err;
545}
546
Jens Axboe165125e2007-07-24 09:28:11 +0200547static inline int blk_send_start_stop(struct request_queue *q,
548 struct gendisk *bd_disk, int data)
Ben Collinsf98d2df2005-12-19 11:49:24 -0800549{
550 return __blk_send_generic(q, bd_disk, GPCMD_START_STOP_UNIT, data);
551}
552
Arnd Bergmann98aaaec2019-03-14 17:45:18 +0100553#ifdef CONFIG_COMPAT
554struct compat_sg_io_hdr {
555 compat_int_t interface_id; /* [i] 'S' for SCSI generic (required) */
556 compat_int_t dxfer_direction; /* [i] data transfer direction */
557 unsigned char cmd_len; /* [i] SCSI command length ( <= 16 bytes) */
558 unsigned char mx_sb_len; /* [i] max length to write to sbp */
559 unsigned short iovec_count; /* [i] 0 implies no scatter gather */
560 compat_uint_t dxfer_len; /* [i] byte count of data transfer */
561 compat_uint_t dxferp; /* [i], [*io] points to data transfer memory
562 or scatter gather list */
563 compat_uptr_t cmdp; /* [i], [*i] points to command to perform */
564 compat_uptr_t sbp; /* [i], [*o] points to sense_buffer memory */
565 compat_uint_t timeout; /* [i] MAX_UINT->no timeout (unit: millisec) */
566 compat_uint_t flags; /* [i] 0 -> default, see SG_FLAG... */
567 compat_int_t pack_id; /* [i->o] unused internally (normally) */
568 compat_uptr_t usr_ptr; /* [i->o] unused internally */
569 unsigned char status; /* [o] scsi status */
570 unsigned char masked_status; /* [o] shifted, masked scsi status */
571 unsigned char msg_status; /* [o] messaging level data (optional) */
572 unsigned char sb_len_wr; /* [o] byte count actually written to sbp */
573 unsigned short host_status; /* [o] errors from host adapter */
574 unsigned short driver_status; /* [o] errors from software driver */
575 compat_int_t resid; /* [o] dxfer_len - actual_transferred */
576 compat_uint_t duration; /* [o] time taken by cmd (unit: millisec) */
577 compat_uint_t info; /* [o] auxiliary information */
578};
579#endif
580
581int put_sg_io_hdr(const struct sg_io_hdr *hdr, void __user *argp)
582{
583#ifdef CONFIG_COMPAT
584 if (in_compat_syscall()) {
585 struct compat_sg_io_hdr hdr32 = {
586 .interface_id = hdr->interface_id,
587 .dxfer_direction = hdr->dxfer_direction,
588 .cmd_len = hdr->cmd_len,
589 .mx_sb_len = hdr->mx_sb_len,
590 .iovec_count = hdr->iovec_count,
591 .dxfer_len = hdr->dxfer_len,
592 .dxferp = (uintptr_t)hdr->dxferp,
593 .cmdp = (uintptr_t)hdr->cmdp,
594 .sbp = (uintptr_t)hdr->sbp,
595 .timeout = hdr->timeout,
596 .flags = hdr->flags,
597 .pack_id = hdr->pack_id,
598 .usr_ptr = (uintptr_t)hdr->usr_ptr,
599 .status = hdr->status,
600 .masked_status = hdr->masked_status,
601 .msg_status = hdr->msg_status,
602 .sb_len_wr = hdr->sb_len_wr,
603 .host_status = hdr->host_status,
604 .driver_status = hdr->driver_status,
605 .resid = hdr->resid,
606 .duration = hdr->duration,
607 .info = hdr->info,
608 };
609
610 if (copy_to_user(argp, &hdr32, sizeof(hdr32)))
611 return -EFAULT;
612
613 return 0;
614 }
615#endif
616
617 if (copy_to_user(argp, hdr, sizeof(*hdr)))
618 return -EFAULT;
619
620 return 0;
621}
622EXPORT_SYMBOL(put_sg_io_hdr);
623
624int get_sg_io_hdr(struct sg_io_hdr *hdr, const void __user *argp)
625{
626#ifdef CONFIG_COMPAT
627 struct compat_sg_io_hdr hdr32;
628
629 if (in_compat_syscall()) {
630 if (copy_from_user(&hdr32, argp, sizeof(hdr32)))
631 return -EFAULT;
632
633 *hdr = (struct sg_io_hdr) {
634 .interface_id = hdr32.interface_id,
635 .dxfer_direction = hdr32.dxfer_direction,
636 .cmd_len = hdr32.cmd_len,
637 .mx_sb_len = hdr32.mx_sb_len,
638 .iovec_count = hdr32.iovec_count,
639 .dxfer_len = hdr32.dxfer_len,
640 .dxferp = compat_ptr(hdr32.dxferp),
641 .cmdp = compat_ptr(hdr32.cmdp),
642 .sbp = compat_ptr(hdr32.sbp),
643 .timeout = hdr32.timeout,
644 .flags = hdr32.flags,
645 .pack_id = hdr32.pack_id,
646 .usr_ptr = compat_ptr(hdr32.usr_ptr),
647 .status = hdr32.status,
648 .masked_status = hdr32.masked_status,
649 .msg_status = hdr32.msg_status,
650 .sb_len_wr = hdr32.sb_len_wr,
651 .host_status = hdr32.host_status,
652 .driver_status = hdr32.driver_status,
653 .resid = hdr32.resid,
654 .duration = hdr32.duration,
655 .info = hdr32.info,
656 };
657
658 return 0;
659 }
660#endif
661
662 if (copy_from_user(hdr, argp, sizeof(*hdr)))
663 return -EFAULT;
664
665 return 0;
666}
667EXPORT_SYMBOL(get_sg_io_hdr);
668
Al Viro74f3c8a2007-08-27 15:38:10 -0400669int scsi_cmd_ioctl(struct request_queue *q, struct gendisk *bd_disk, fmode_t mode,
670 unsigned int cmd, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Ben Collinsf98d2df2005-12-19 11:49:24 -0800672 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Tejun Heo315fcee2011-10-19 14:31:25 +0200674 if (!q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return -ENXIO;
676
677 switch (cmd) {
678 /*
679 * new sgv3 interface
680 */
681 case SG_GET_VERSION_NUM:
682 err = sg_get_version(arg);
683 break;
684 case SCSI_IOCTL_GET_IDLUN:
685 err = scsi_get_idlun(q, arg);
686 break;
687 case SCSI_IOCTL_GET_BUS_NUMBER:
688 err = scsi_get_bus(q, arg);
689 break;
690 case SG_SET_TIMEOUT:
691 err = sg_set_timeout(q, arg);
692 break;
693 case SG_GET_TIMEOUT:
694 err = sg_get_timeout(q);
695 break;
696 case SG_GET_RESERVED_SIZE:
697 err = sg_get_reserved_size(q, arg);
698 break;
699 case SG_SET_RESERVED_SIZE:
700 err = sg_set_reserved_size(q, arg);
701 break;
702 case SG_EMULATED_HOST:
703 err = sg_emulated_host(q, arg);
704 break;
705 case SG_IO: {
706 struct sg_io_hdr hdr;
707
Arnd Bergmann98aaaec2019-03-14 17:45:18 +0100708 err = get_sg_io_hdr(&hdr, arg);
709 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 break;
Al Viro74f3c8a2007-08-27 15:38:10 -0400711 err = sg_io(q, bd_disk, &hdr, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (err == -EFAULT)
713 break;
714
Arnd Bergmann98aaaec2019-03-14 17:45:18 +0100715 if (put_sg_io_hdr(&hdr, arg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 err = -EFAULT;
717 break;
718 }
719 case CDROM_SEND_PACKET: {
720 struct cdrom_generic_command cgc;
721 struct sg_io_hdr hdr;
722
723 err = -EFAULT;
724 if (copy_from_user(&cgc, arg, sizeof(cgc)))
725 break;
726 cgc.timeout = clock_t_to_jiffies(cgc.timeout);
727 memset(&hdr, 0, sizeof(hdr));
728 hdr.interface_id = 'S';
729 hdr.cmd_len = sizeof(cgc.cmd);
730 hdr.dxfer_len = cgc.buflen;
731 err = 0;
732 switch (cgc.data_direction) {
733 case CGC_DATA_UNKNOWN:
734 hdr.dxfer_direction = SG_DXFER_UNKNOWN;
735 break;
736 case CGC_DATA_WRITE:
737 hdr.dxfer_direction = SG_DXFER_TO_DEV;
738 break;
739 case CGC_DATA_READ:
740 hdr.dxfer_direction = SG_DXFER_FROM_DEV;
741 break;
742 case CGC_DATA_NONE:
743 hdr.dxfer_direction = SG_DXFER_NONE;
744 break;
745 default:
746 err = -EINVAL;
747 }
748 if (err)
749 break;
750
751 hdr.dxferp = cgc.buffer;
752 hdr.sbp = cgc.sense;
753 if (hdr.sbp)
754 hdr.mx_sb_len = sizeof(struct request_sense);
Tim Wrightad337592008-07-27 17:50:38 -0700755 hdr.timeout = jiffies_to_msecs(cgc.timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 hdr.cmdp = ((struct cdrom_generic_command __user*) arg)->cmd;
757 hdr.cmd_len = sizeof(cgc.cmd);
758
Al Viro74f3c8a2007-08-27 15:38:10 -0400759 err = sg_io(q, bd_disk, &hdr, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (err == -EFAULT)
761 break;
762
763 if (hdr.status)
764 err = -EIO;
765
766 cgc.stat = err;
767 cgc.buflen = hdr.resid;
768 if (copy_to_user(arg, &cgc, sizeof(cgc)))
769 err = -EFAULT;
770
771 break;
772 }
773
774 /*
775 * old junk scsi send command ioctl
776 */
777 case SCSI_IOCTL_SEND_COMMAND:
778 printk(KERN_WARNING "program %s is using a deprecated SCSI ioctl, please convert it to SG_IO\n", current->comm);
779 err = -EINVAL;
780 if (!arg)
781 break;
782
Al Viro74f3c8a2007-08-27 15:38:10 -0400783 err = sg_scsi_ioctl(q, bd_disk, mode, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 break;
785 case CDROMCLOSETRAY:
Ben Collinsf98d2df2005-12-19 11:49:24 -0800786 err = blk_send_start_stop(q, bd_disk, 0x03);
787 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 case CDROMEJECT:
Ben Collinsf98d2df2005-12-19 11:49:24 -0800789 err = blk_send_start_stop(q, bd_disk, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 break;
791 default:
792 err = -ENOTTY;
793 }
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return err;
796}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797EXPORT_SYMBOL(scsi_cmd_ioctl);
Jens Axboe018e0442009-06-26 16:27:10 +0200798
Paolo Bonzini0bfc96c2012-01-12 16:01:28 +0100799int scsi_verify_blk_ioctl(struct block_device *bd, unsigned int cmd)
800{
801 if (bd && bd == bd->bd_contains)
802 return 0;
803
Jan Kara6d935922012-06-15 12:52:46 +0200804 if (capable(CAP_SYS_RAWIO))
805 return 0;
806
Jan Kara6d935922012-06-15 12:52:46 +0200807 return -ENOIOCTLCMD;
Paolo Bonzini0bfc96c2012-01-12 16:01:28 +0100808}
809EXPORT_SYMBOL(scsi_verify_blk_ioctl);
810
Paolo Bonzini577ebb32012-01-12 16:01:27 +0100811int scsi_cmd_blk_ioctl(struct block_device *bd, fmode_t mode,
812 unsigned int cmd, void __user *arg)
813{
Paolo Bonzini0bfc96c2012-01-12 16:01:28 +0100814 int ret;
815
816 ret = scsi_verify_blk_ioctl(bd, cmd);
817 if (ret < 0)
818 return ret;
819
Paolo Bonzini577ebb32012-01-12 16:01:27 +0100820 return scsi_cmd_ioctl(bd->bd_disk->queue, bd->bd_disk, mode, cmd, arg);
821}
822EXPORT_SYMBOL(scsi_cmd_blk_ioctl);
823
Bart Van Asschec8d9cf22017-06-20 11:15:42 -0700824/**
825 * scsi_req_init - initialize certain fields of a scsi_request structure
826 * @req: Pointer to a scsi_request structure.
827 * Initializes .__cmd[], .cmd, .cmd_len and .sense_len but no other members
828 * of struct scsi_request.
829 */
830void scsi_req_init(struct scsi_request *req)
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100831{
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100832 memset(req->__cmd, 0, sizeof(req->__cmd));
833 req->cmd = req->__cmd;
834 req->cmd_len = BLK_MAX_CDB;
835 req->sense_len = 0;
836}
837EXPORT_SYMBOL(scsi_req_init);
838
H Hartley Sweeten476d42f2009-11-04 09:10:33 +0100839static int __init blk_scsi_ioctl_init(void)
Jens Axboe018e0442009-06-26 16:27:10 +0200840{
841 blk_set_cmd_filter_defaults(&blk_default_cmd_filter);
842 return 0;
843}
FUJITA Tomonori76da0342009-07-09 09:48:28 +0200844fs_initcall(blk_scsi_ioctl_init);