blob: f306853c6b0891a1f59a4643b448b4a03ebb265e [file] [log] [blame]
Jens Axboe3d6392c2007-07-09 12:38:05 +02001/*
FUJITA Tomonori0c6a89b2007-07-29 23:00:46 +09002 * bsg.c - block layer implementation of the sg v4 interface
Jens Axboe3d6392c2007-07-09 12:38:05 +02003 *
4 * Copyright (C) 2004 Jens Axboe <axboe@suse.de> SUSE Labs
5 * Copyright (C) 2004 Peter M. Jones <pjones@redhat.com>
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License version 2. See the file "COPYING" in the main directory of this
9 * archive for more details.
10 *
11 */
Jens Axboe3d6392c2007-07-09 12:38:05 +020012#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/file.h>
15#include <linux/blkdev.h>
Jens Axboe3d6392c2007-07-09 12:38:05 +020016#include <linux/cdev.h>
Randy Dunlapad5ebd22009-11-11 13:47:45 +010017#include <linux/jiffies.h>
Jens Axboe3d6392c2007-07-09 12:38:05 +020018#include <linux/percpu.h>
FUJITA Tomonori598443a2007-07-23 09:33:26 +090019#include <linux/idr.h>
Jens Axboe3d6392c2007-07-09 12:38:05 +020020#include <linux/bsg.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Jens Axboe3d6392c2007-07-09 12:38:05 +020022
23#include <scsi/scsi.h>
24#include <scsi/scsi_ioctl.h>
25#include <scsi/scsi_cmnd.h>
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +020026#include <scsi/scsi_device.h>
27#include <scsi/scsi_driver.h>
Jens Axboe3d6392c2007-07-09 12:38:05 +020028#include <scsi/sg.h>
29
FUJITA Tomonori0ed081c2007-07-17 12:21:35 +020030#define BSG_DESCRIPTION "Block layer SCSI generic (bsg) driver"
31#define BSG_VERSION "0.4"
Jens Axboe3d6392c2007-07-09 12:38:05 +020032
Johannes Thumshirn3124b652018-01-24 09:50:06 -070033#define bsg_dbg(bd, fmt, ...) \
34 pr_debug("%s: " fmt, (bd)->name, ##__VA_ARGS__)
35
Jens Axboe3d6392c2007-07-09 12:38:05 +020036struct bsg_device {
Jens Axboe165125e2007-07-24 09:28:11 +020037 struct request_queue *queue;
Jens Axboe3d6392c2007-07-09 12:38:05 +020038 spinlock_t lock;
Jens Axboe3d6392c2007-07-09 12:38:05 +020039 struct hlist_node dev_list;
John Pittmandb193952018-08-27 14:33:05 -040040 refcount_t ref_count;
Kay Sievers3ada8b72009-01-06 10:44:43 -080041 char name[20];
Jens Axboe3d6392c2007-07-09 12:38:05 +020042 int max_queue;
Jens Axboe3d6392c2007-07-09 12:38:05 +020043};
44
Jens Axboe5309cb32007-01-23 16:24:41 +010045#define BSG_DEFAULT_CMDS 64
FUJITA Tomonori292b7f22007-03-28 13:29:58 +020046#define BSG_MAX_DEVS 32768
Jens Axboe3d6392c2007-07-09 12:38:05 +020047
Jens Axboe3d6392c2007-07-09 12:38:05 +020048static DEFINE_MUTEX(bsg_mutex);
FUJITA Tomonori598443a2007-07-23 09:33:26 +090049static DEFINE_IDR(bsg_minor_idr);
Jens Axboe3d6392c2007-07-09 12:38:05 +020050
Jens Axboe25fd1642007-07-17 08:52:29 +020051#define BSG_LIST_ARRAY_SIZE 8
Jens Axboe25fd1642007-07-17 08:52:29 +020052static struct hlist_head bsg_device_list[BSG_LIST_ARRAY_SIZE];
Jens Axboe3d6392c2007-07-09 12:38:05 +020053
54static struct class *bsg_class;
Jens Axboe46f6ef42007-07-17 08:56:10 +020055static int bsg_major;
Jens Axboe3d6392c2007-07-09 12:38:05 +020056
FUJITA Tomonori1c1133e2007-07-17 12:21:15 +020057static inline struct hlist_head *bsg_dev_idx_hash(int index)
Jens Axboe3d6392c2007-07-09 12:38:05 +020058{
FUJITA Tomonori1c1133e2007-07-17 12:21:15 +020059 return &bsg_device_list[index & (BSG_LIST_ARRAY_SIZE - 1)];
Jens Axboe3d6392c2007-07-09 12:38:05 +020060}
61
Christoph Hellwig17cb9602018-03-13 17:28:41 +010062#define uptr64(val) ((void __user *)(uintptr_t)(val))
Christoph Hellwig82ed4db2017-01-27 09:46:29 +010063
Christoph Hellwig17cb9602018-03-13 17:28:41 +010064static int bsg_scsi_check_proto(struct sg_io_v4 *hdr)
65{
66 if (hdr->protocol != BSG_PROTOCOL_SCSI ||
67 hdr->subprotocol != BSG_SUB_PROTOCOL_SCSI_CMD)
68 return -EINVAL;
69 return 0;
70}
71
72static int bsg_scsi_fill_hdr(struct request *rq, struct sg_io_v4 *hdr,
73 fmode_t mode)
74{
75 struct scsi_request *sreq = scsi_req(rq);
76
Christoph Hellwig972248e2019-01-29 09:32:03 +010077 if (hdr->dout_xfer_len && hdr->din_xfer_len) {
78 pr_warn_once("BIDI support in bsg has been removed.\n");
79 return -EOPNOTSUPP;
80 }
81
Christoph Hellwig17cb9602018-03-13 17:28:41 +010082 sreq->cmd_len = hdr->request_len;
83 if (sreq->cmd_len > BLK_MAX_CDB) {
84 sreq->cmd = kzalloc(sreq->cmd_len, GFP_KERNEL);
85 if (!sreq->cmd)
FUJITA Tomonori9f5de6b2008-04-30 13:16:21 +090086 return -ENOMEM;
87 }
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +010088
Christoph Hellwig17cb9602018-03-13 17:28:41 +010089 if (copy_from_user(sreq->cmd, uptr64(hdr->request), sreq->cmd_len))
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +010090 return -EFAULT;
Christoph Hellwig17cb9602018-03-13 17:28:41 +010091 if (blk_verify_command(sreq->cmd, mode))
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +010092 return -EPERM;
Christoph Hellwig17cb9602018-03-13 17:28:41 +010093 return 0;
94}
95
96static int bsg_scsi_complete_rq(struct request *rq, struct sg_io_v4 *hdr)
97{
98 struct scsi_request *sreq = scsi_req(rq);
99 int ret = 0;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200100
101 /*
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100102 * fill in all the output members
Jens Axboe3d6392c2007-07-09 12:38:05 +0200103 */
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100104 hdr->device_status = sreq->result & 0xff;
105 hdr->transport_status = host_byte(sreq->result);
106 hdr->driver_status = driver_byte(sreq->result);
107 hdr->info = 0;
108 if (hdr->device_status || hdr->transport_status || hdr->driver_status)
109 hdr->info |= SG_INFO_CHECK;
110 hdr->response_len = 0;
111
112 if (sreq->sense_len && hdr->response) {
113 int len = min_t(unsigned int, hdr->max_response_len,
114 sreq->sense_len);
115
116 if (copy_to_user(uptr64(hdr->response), sreq->sense, len))
117 ret = -EFAULT;
118 else
119 hdr->response_len = len;
120 }
121
Christoph Hellwig972248e2019-01-29 09:32:03 +0100122 if (rq_data_dir(rq) == READ)
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100123 hdr->din_resid = sreq->resid_len;
Christoph Hellwig972248e2019-01-29 09:32:03 +0100124 else
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100125 hdr->dout_resid = sreq->resid_len;
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100126
127 return ret;
128}
129
130static void bsg_scsi_free_rq(struct request *rq)
131{
132 scsi_req_free_cmd(scsi_req(rq));
133}
134
135static const struct bsg_ops bsg_scsi_ops = {
136 .check_proto = bsg_scsi_check_proto,
137 .fill_hdr = bsg_scsi_fill_hdr,
138 .complete_rq = bsg_scsi_complete_rq,
139 .free_rq = bsg_scsi_free_rq,
140};
141
Christoph Hellwigccf32092018-11-09 20:12:25 +0100142static int bsg_sg_io(struct request_queue *q, fmode_t mode, void __user *uarg)
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100143{
Christoph Hellwig972248e2019-01-29 09:32:03 +0100144 struct request *rq;
145 struct bio *bio;
Christoph Hellwigccf32092018-11-09 20:12:25 +0100146 struct sg_io_v4 hdr;
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100147 int ret;
148
Christoph Hellwigccf32092018-11-09 20:12:25 +0100149 if (copy_from_user(&hdr, uarg, sizeof(hdr)))
150 return -EFAULT;
151
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100152 if (!q->bsg_dev.class_dev)
Christoph Hellwigccf32092018-11-09 20:12:25 +0100153 return -ENXIO;
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100154
Christoph Hellwigccf32092018-11-09 20:12:25 +0100155 if (hdr.guard != 'Q')
156 return -EINVAL;
157 ret = q->bsg_dev.ops->check_proto(&hdr);
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100158 if (ret)
Christoph Hellwigccf32092018-11-09 20:12:25 +0100159 return ret;
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100160
Christoph Hellwigccf32092018-11-09 20:12:25 +0100161 rq = blk_get_request(q, hdr.dout_xfer_len ?
Christoph Hellwigff005a02018-05-09 09:54:05 +0200162 REQ_OP_SCSI_OUT : REQ_OP_SCSI_IN, 0);
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100163 if (IS_ERR(rq))
Christoph Hellwigccf32092018-11-09 20:12:25 +0100164 return PTR_ERR(rq);
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100165
Christoph Hellwigccf32092018-11-09 20:12:25 +0100166 ret = q->bsg_dev.ops->fill_hdr(rq, &hdr, mode);
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100167 if (ret)
Christoph Hellwig972248e2019-01-29 09:32:03 +0100168 return ret;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200169
Christoph Hellwigccf32092018-11-09 20:12:25 +0100170 rq->timeout = msecs_to_jiffies(hdr.timeout);
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100171 if (!rq->timeout)
172 rq->timeout = q->sg_timeout;
173 if (!rq->timeout)
174 rq->timeout = BLK_DEFAULT_SG_TIMEOUT;
Linus Torvaldsf2f1fa72008-12-05 14:49:18 -0800175 if (rq->timeout < BLK_MIN_SG_TIMEOUT)
176 rq->timeout = BLK_MIN_SG_TIMEOUT;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200177
Christoph Hellwigccf32092018-11-09 20:12:25 +0100178 if (hdr.dout_xfer_len) {
179 ret = blk_rq_map_user(q, rq, NULL, uptr64(hdr.dout_xferp),
180 hdr.dout_xfer_len, GFP_KERNEL);
181 } else if (hdr.din_xfer_len) {
182 ret = blk_rq_map_user(q, rq, NULL, uptr64(hdr.din_xferp),
183 hdr.din_xfer_len, GFP_KERNEL);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200184 }
Boaz Harroshc1c20122009-02-03 07:47:29 +0100185
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100186 if (ret)
Christoph Hellwig972248e2019-01-29 09:32:03 +0100187 goto out_free_rq;
Christoph Hellwigccf32092018-11-09 20:12:25 +0100188
189 bio = rq->bio;
Christoph Hellwigccf32092018-11-09 20:12:25 +0100190
191 blk_execute_rq(q, NULL, rq, !(hdr.flags & BSG_FLAG_Q_AT_TAIL));
192 ret = rq->q->bsg_dev.ops->complete_rq(rq, &hdr);
Christoph Hellwigccf32092018-11-09 20:12:25 +0100193 blk_rq_unmap_user(bio);
Christoph Hellwig972248e2019-01-29 09:32:03 +0100194
195out_free_rq:
Christoph Hellwigccf32092018-11-09 20:12:25 +0100196 rq->q->bsg_dev.ops->free_rq(rq);
197 blk_put_request(rq);
Christoph Hellwig972248e2019-01-29 09:32:03 +0100198 if (!ret && copy_to_user(uarg, &hdr, sizeof(hdr)))
Christoph Hellwigccf32092018-11-09 20:12:25 +0100199 return -EFAULT;
200 return ret;
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100201}
202
Jens Axboe3d6392c2007-07-09 12:38:05 +0200203static struct bsg_device *bsg_alloc_device(void)
204{
Jens Axboe3d6392c2007-07-09 12:38:05 +0200205 struct bsg_device *bd;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200206
207 bd = kzalloc(sizeof(struct bsg_device), GFP_KERNEL);
208 if (unlikely(!bd))
209 return NULL;
210
211 spin_lock_init(&bd->lock);
Jens Axboe5309cb32007-01-23 16:24:41 +0100212 bd->max_queue = BSG_DEFAULT_CMDS;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200213 INIT_HLIST_NODE(&bd->dev_list);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200214 return bd;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200215}
216
217static int bsg_put_device(struct bsg_device *bd)
218{
FUJITA Tomonori97f46ae2008-04-19 00:43:14 +0900219 struct request_queue *q = bd->queue;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200220
221 mutex_lock(&bsg_mutex);
222
John Pittmandb193952018-08-27 14:33:05 -0400223 if (!refcount_dec_and_test(&bd->ref_count)) {
FUJITA Tomonori3f27e3e2008-05-29 07:56:55 +0900224 mutex_unlock(&bsg_mutex);
Christoph Hellwig28519c82018-07-12 10:09:59 +0200225 return 0;
FUJITA Tomonori3f27e3e2008-05-29 07:56:55 +0900226 }
227
228 hlist_del(&bd->dev_list);
229 mutex_unlock(&bsg_mutex);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200230
Johannes Thumshirn3124b652018-01-24 09:50:06 -0700231 bsg_dbg(bd, "tearing down\n");
Jens Axboe3d6392c2007-07-09 12:38:05 +0200232
233 /*
234 * close can always block
235 */
Jens Axboe5309cb32007-01-23 16:24:41 +0100236 kfree(bd);
Christoph Hellwig28519c82018-07-12 10:09:59 +0200237 blk_put_queue(q);
238 return 0;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200239}
240
241static struct bsg_device *bsg_add_device(struct inode *inode,
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200242 struct request_queue *rq,
Jens Axboe3d6392c2007-07-09 12:38:05 +0200243 struct file *file)
244{
Jens Axboe25fd1642007-07-17 08:52:29 +0200245 struct bsg_device *bd;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200246 unsigned char buf[32];
Bart Van Assched9f97262017-05-31 14:43:47 -0700247
Anatoliy Glagolevd6c73962018-06-13 15:38:51 -0600248 lockdep_assert_held(&bsg_mutex);
249
Tejun Heo09ac46c2011-12-14 00:33:38 +0100250 if (!blk_get_queue(rq))
FUJITA Tomonoric3ff1b92008-03-31 10:03:39 +0900251 return ERR_PTR(-ENXIO);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200252
253 bd = bsg_alloc_device();
FUJITA Tomonoric3ff1b92008-03-31 10:03:39 +0900254 if (!bd) {
255 blk_put_queue(rq);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200256 return ERR_PTR(-ENOMEM);
FUJITA Tomonoric3ff1b92008-03-31 10:03:39 +0900257 }
Jens Axboe3d6392c2007-07-09 12:38:05 +0200258
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200259 bd->queue = rq;
Adel Gadllah0b07de82008-06-26 13:48:27 +0200260
John Pittmandb193952018-08-27 14:33:05 -0400261 refcount_set(&bd->ref_count, 1);
FUJITA Tomonori842ea772008-03-31 10:03:41 +0900262 hlist_add_head(&bd->dev_list, bsg_dev_idx_hash(iminor(inode)));
Jens Axboe3d6392c2007-07-09 12:38:05 +0200263
Kay Sievers3ada8b72009-01-06 10:44:43 -0800264 strncpy(bd->name, dev_name(rq->bsg_dev.class_dev), sizeof(bd->name) - 1);
Johannes Thumshirn3124b652018-01-24 09:50:06 -0700265 bsg_dbg(bd, "bound to <%s>, max queue %d\n",
FUJITA Tomonori9e69fbb2006-12-20 11:18:22 +0100266 format_dev_t(buf, inode->i_rdev), bd->max_queue);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200267
Jens Axboe3d6392c2007-07-09 12:38:05 +0200268 return bd;
269}
270
FUJITA Tomonori842ea772008-03-31 10:03:41 +0900271static struct bsg_device *__bsg_get_device(int minor, struct request_queue *q)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200272{
FUJITA Tomonori43ac9e62008-03-31 10:03:40 +0900273 struct bsg_device *bd;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200274
Anatoliy Glagolevd6c73962018-06-13 15:38:51 -0600275 lockdep_assert_held(&bsg_mutex);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200276
Sasha Levinb67bfe02013-02-27 17:06:00 -0800277 hlist_for_each_entry(bd, bsg_dev_idx_hash(minor), dev_list) {
FUJITA Tomonori842ea772008-03-31 10:03:41 +0900278 if (bd->queue == q) {
John Pittmandb193952018-08-27 14:33:05 -0400279 refcount_inc(&bd->ref_count);
FUJITA Tomonori43ac9e62008-03-31 10:03:40 +0900280 goto found;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200281 }
Jens Axboe3d6392c2007-07-09 12:38:05 +0200282 }
FUJITA Tomonori43ac9e62008-03-31 10:03:40 +0900283 bd = NULL;
284found:
Jens Axboe3d6392c2007-07-09 12:38:05 +0200285 return bd;
286}
287
288static struct bsg_device *bsg_get_device(struct inode *inode, struct file *file)
289{
FUJITA Tomonori598443a2007-07-23 09:33:26 +0900290 struct bsg_device *bd;
291 struct bsg_class_device *bcd;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200292
Jens Axboe3d6392c2007-07-09 12:38:05 +0200293 /*
294 * find the class device
295 */
Jens Axboe3d6392c2007-07-09 12:38:05 +0200296 mutex_lock(&bsg_mutex);
FUJITA Tomonori598443a2007-07-23 09:33:26 +0900297 bcd = idr_find(&bsg_minor_idr, iminor(inode));
Jens Axboe3d6392c2007-07-09 12:38:05 +0200298
Anatoliy Glagolevd6c73962018-06-13 15:38:51 -0600299 if (!bcd) {
300 bd = ERR_PTR(-ENODEV);
301 goto out_unlock;
302 }
Jens Axboe3d6392c2007-07-09 12:38:05 +0200303
FUJITA Tomonori842ea772008-03-31 10:03:41 +0900304 bd = __bsg_get_device(iminor(inode), bcd->queue);
Anatoliy Glagolevd6c73962018-06-13 15:38:51 -0600305 if (!bd)
306 bd = bsg_add_device(inode, bcd->queue, file);
FUJITA Tomonorid45ac4f2008-03-31 10:03:38 +0900307
Anatoliy Glagolevd6c73962018-06-13 15:38:51 -0600308out_unlock:
309 mutex_unlock(&bsg_mutex);
FUJITA Tomonorid45ac4f2008-03-31 10:03:38 +0900310 return bd;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200311}
312
313static int bsg_open(struct inode *inode, struct file *file)
314{
Jonathan Corbet75bd2ef2008-05-15 09:09:23 -0600315 struct bsg_device *bd;
316
Jonathan Corbet75bd2ef2008-05-15 09:09:23 -0600317 bd = bsg_get_device(inode, file);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200318
319 if (IS_ERR(bd))
320 return PTR_ERR(bd);
321
322 file->private_data = bd;
323 return 0;
324}
325
326static int bsg_release(struct inode *inode, struct file *file)
327{
328 struct bsg_device *bd = file->private_data;
329
330 file->private_data = NULL;
331 return bsg_put_device(bd);
332}
333
Christoph Hellwigccf32092018-11-09 20:12:25 +0100334static int bsg_get_command_q(struct bsg_device *bd, int __user *uarg)
335{
336 return put_user(bd->max_queue, uarg);
337}
338
339static int bsg_set_command_q(struct bsg_device *bd, int __user *uarg)
340{
341 int queue;
342
343 if (get_user(queue, uarg))
344 return -EFAULT;
345 if (queue < 1)
346 return -EINVAL;
347
348 spin_lock_irq(&bd->lock);
349 bd->max_queue = queue;
350 spin_unlock_irq(&bd->lock);
351 return 0;
352}
353
Jens Axboe25fd1642007-07-17 08:52:29 +0200354static long bsg_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200355{
356 struct bsg_device *bd = file->private_data;
Christoph Hellwigccf32092018-11-09 20:12:25 +0100357 void __user *uarg = (void __user *) arg;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200358
Jens Axboe3d6392c2007-07-09 12:38:05 +0200359 switch (cmd) {
Christoph Hellwigccf32092018-11-09 20:12:25 +0100360 /*
361 * Our own ioctls
362 */
Jens Axboe3d6392c2007-07-09 12:38:05 +0200363 case SG_GET_COMMAND_Q:
Christoph Hellwigccf32092018-11-09 20:12:25 +0100364 return bsg_get_command_q(bd, uarg);
365 case SG_SET_COMMAND_Q:
366 return bsg_set_command_q(bd, uarg);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200367
368 /*
369 * SCSI/sg ioctls
370 */
371 case SG_GET_VERSION_NUM:
372 case SCSI_IOCTL_GET_IDLUN:
373 case SCSI_IOCTL_GET_BUS_NUMBER:
374 case SG_SET_TIMEOUT:
375 case SG_GET_TIMEOUT:
376 case SG_GET_RESERVED_SIZE:
377 case SG_SET_RESERVED_SIZE:
378 case SG_EMULATED_HOST:
Christoph Hellwigccf32092018-11-09 20:12:25 +0100379 case SCSI_IOCTL_SEND_COMMAND:
Al Viro74f3c8a2007-08-27 15:38:10 -0400380 return scsi_cmd_ioctl(bd->queue, NULL, file->f_mode, cmd, uarg);
Christoph Hellwigccf32092018-11-09 20:12:25 +0100381 case SG_IO:
382 return bsg_sg_io(bd->queue, file->f_mode, uarg);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200383 default:
Jens Axboe3d6392c2007-07-09 12:38:05 +0200384 return -ENOTTY;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200385 }
386}
387
Arjan van de Ven7344be02007-10-15 11:01:53 +0200388static const struct file_operations bsg_fops = {
Jens Axboe3d6392c2007-07-09 12:38:05 +0200389 .open = bsg_open,
390 .release = bsg_release,
Jens Axboe25fd1642007-07-17 08:52:29 +0200391 .unlocked_ioctl = bsg_ioctl,
Jens Axboe3d6392c2007-07-09 12:38:05 +0200392 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200393 .llseek = default_llseek,
Jens Axboe3d6392c2007-07-09 12:38:05 +0200394};
395
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200396void bsg_unregister_queue(struct request_queue *q)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200397{
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200398 struct bsg_class_device *bcd = &q->bsg_dev;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200399
FUJITA Tomonoridf468822007-07-21 13:23:25 +0900400 if (!bcd->class_dev)
401 return;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200402
403 mutex_lock(&bsg_mutex);
FUJITA Tomonori598443a2007-07-23 09:33:26 +0900404 idr_remove(&bsg_minor_idr, bcd->minor);
Stanislaw Gruszka37b40ad2012-02-08 20:02:03 +0100405 if (q->kobj.sd)
406 sysfs_remove_link(&q->kobj, "bsg");
Tony Jonesee959b02008-02-22 00:13:36 +0100407 device_unregister(bcd->class_dev);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200408 bcd->class_dev = NULL;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200409 mutex_unlock(&bsg_mutex);
410}
FUJITA Tomonori4cf07232007-03-30 11:19:39 +0200411EXPORT_SYMBOL_GPL(bsg_unregister_queue);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200412
FUJITA Tomonori97f46ae2008-04-19 00:43:14 +0900413int bsg_register_queue(struct request_queue *q, struct device *parent,
Christoph Hellwig5de815a2018-05-29 08:40:23 +0200414 const char *name, const struct bsg_ops *ops)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200415{
FUJITA Tomonori598443a2007-07-23 09:33:26 +0900416 struct bsg_class_device *bcd;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200417 dev_t dev;
Tejun Heobab998d2013-02-27 17:03:57 -0800418 int ret;
Tony Jonesee959b02008-02-22 00:13:36 +0100419 struct device *class_dev = NULL;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200420
421 /*
422 * we need a proper transport to send commands, not a stacked device
423 */
Jens Axboe344e9ff2018-11-15 12:22:51 -0700424 if (!queue_is_mq(q))
Jens Axboe3d6392c2007-07-09 12:38:05 +0200425 return 0;
426
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200427 bcd = &q->bsg_dev;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200428 memset(bcd, 0, sizeof(*bcd));
Jens Axboe3d6392c2007-07-09 12:38:05 +0200429
430 mutex_lock(&bsg_mutex);
FUJITA Tomonori598443a2007-07-23 09:33:26 +0900431
Tejun Heobab998d2013-02-27 17:03:57 -0800432 ret = idr_alloc(&bsg_minor_idr, bcd, 0, BSG_MAX_DEVS, GFP_KERNEL);
433 if (ret < 0) {
434 if (ret == -ENOSPC) {
435 printk(KERN_ERR "bsg: too many bsg devices\n");
436 ret = -EINVAL;
437 }
FUJITA Tomonori598443a2007-07-23 09:33:26 +0900438 goto unlock;
439 }
440
Tejun Heobab998d2013-02-27 17:03:57 -0800441 bcd->minor = ret;
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200442 bcd->queue = q;
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100443 bcd->ops = ops;
Jens Axboe46f6ef42007-07-17 08:56:10 +0200444 dev = MKDEV(bsg_major, bcd->minor);
Christoph Hellwig5de815a2018-05-29 08:40:23 +0200445 class_dev = device_create(bsg_class, parent, dev, NULL, "%s", name);
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +0200446 if (IS_ERR(class_dev)) {
447 ret = PTR_ERR(class_dev);
Christoph Hellwig5de815a2018-05-29 08:40:23 +0200448 goto idr_remove;
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +0200449 }
450 bcd->class_dev = class_dev;
451
Linus Torvaldsabce8912007-07-16 11:18:23 -0700452 if (q->kobj.sd) {
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +0200453 ret = sysfs_create_link(&q->kobj, &bcd->class_dev->kobj, "bsg");
454 if (ret)
FUJITA Tomonori598443a2007-07-23 09:33:26 +0900455 goto unregister_class_dev;
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +0200456 }
457
Jens Axboe3d6392c2007-07-09 12:38:05 +0200458 mutex_unlock(&bsg_mutex);
459 return 0;
James Bottomley6826ee42007-07-20 16:50:10 -0500460
FUJITA Tomonori598443a2007-07-23 09:33:26 +0900461unregister_class_dev:
Tony Jonesee959b02008-02-22 00:13:36 +0100462 device_unregister(class_dev);
Christoph Hellwig5de815a2018-05-29 08:40:23 +0200463idr_remove:
Tejun Heobab998d2013-02-27 17:03:57 -0800464 idr_remove(&bsg_minor_idr, bcd->minor);
FUJITA Tomonori598443a2007-07-23 09:33:26 +0900465unlock:
Jens Axboe264a0472007-01-23 16:30:17 +0100466 mutex_unlock(&bsg_mutex);
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +0200467 return ret;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200468}
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100469
470int bsg_scsi_register_queue(struct request_queue *q, struct device *parent)
471{
472 if (!blk_queue_scsi_passthrough(q)) {
473 WARN_ONCE(true, "Attempt to register a non-SCSI queue\n");
474 return -EINVAL;
475 }
476
Christoph Hellwig5de815a2018-05-29 08:40:23 +0200477 return bsg_register_queue(q, parent, dev_name(parent), &bsg_scsi_ops);
Christoph Hellwig17cb9602018-03-13 17:28:41 +0100478}
479EXPORT_SYMBOL_GPL(bsg_scsi_register_queue);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200480
Greg Kroah-Hartman7e7654a2007-09-12 15:06:57 -0700481static struct cdev bsg_cdev;
FUJITA Tomonori292b7f22007-03-28 13:29:58 +0200482
Al Viro2c9ede52011-07-23 20:24:48 -0400483static char *bsg_devnode(struct device *dev, umode_t *mode)
Kay Sievers2bdf9142009-04-30 15:23:42 +0200484{
485 return kasprintf(GFP_KERNEL, "bsg/%s", dev_name(dev));
486}
487
Jens Axboe3d6392c2007-07-09 12:38:05 +0200488static int __init bsg_init(void)
489{
490 int ret, i;
Jens Axboe46f6ef42007-07-17 08:56:10 +0200491 dev_t devid;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200492
Jens Axboe25fd1642007-07-17 08:52:29 +0200493 for (i = 0; i < BSG_LIST_ARRAY_SIZE; i++)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200494 INIT_HLIST_HEAD(&bsg_device_list[i]);
495
496 bsg_class = class_create(THIS_MODULE, "bsg");
Christoph Hellwig28519c82018-07-12 10:09:59 +0200497 if (IS_ERR(bsg_class))
498 return PTR_ERR(bsg_class);
Kay Sieverse454cea2009-09-18 23:01:12 +0200499 bsg_class->devnode = bsg_devnode;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200500
Jens Axboe46f6ef42007-07-17 08:56:10 +0200501 ret = alloc_chrdev_region(&devid, 0, BSG_MAX_DEVS, "bsg");
FUJITA Tomonori9b9f7702007-07-17 12:20:46 +0200502 if (ret)
503 goto destroy_bsg_class;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200504
Jens Axboe46f6ef42007-07-17 08:56:10 +0200505 bsg_major = MAJOR(devid);
506
FUJITA Tomonori292b7f22007-03-28 13:29:58 +0200507 cdev_init(&bsg_cdev, &bsg_fops);
Jens Axboe46f6ef42007-07-17 08:56:10 +0200508 ret = cdev_add(&bsg_cdev, MKDEV(bsg_major, 0), BSG_MAX_DEVS);
FUJITA Tomonori9b9f7702007-07-17 12:20:46 +0200509 if (ret)
510 goto unregister_chrdev;
FUJITA Tomonori292b7f22007-03-28 13:29:58 +0200511
Jens Axboe5d3a8cd2007-07-17 15:10:09 +0200512 printk(KERN_INFO BSG_DESCRIPTION " version " BSG_VERSION
FUJITA Tomonori0ed081c2007-07-17 12:21:35 +0200513 " loaded (major %d)\n", bsg_major);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200514 return 0;
FUJITA Tomonori9b9f7702007-07-17 12:20:46 +0200515unregister_chrdev:
516 unregister_chrdev_region(MKDEV(bsg_major, 0), BSG_MAX_DEVS);
517destroy_bsg_class:
518 class_destroy(bsg_class);
FUJITA Tomonori9b9f7702007-07-17 12:20:46 +0200519 return ret;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200520}
521
522MODULE_AUTHOR("Jens Axboe");
FUJITA Tomonori0ed081c2007-07-17 12:21:35 +0200523MODULE_DESCRIPTION(BSG_DESCRIPTION);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200524MODULE_LICENSE("GPL");
525
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +0200526device_initcall(bsg_init);