]>
Commit | Line | Data |
---|---|---|
3d6392cf | 1 | /* |
0c6a89ba | 2 | * bsg.c - block layer implementation of the sg v4 interface |
3d6392cf JA |
3 | * |
4 | * Copyright (C) 2004 Jens Axboe <[email protected]> SUSE Labs | |
5 | * Copyright (C) 2004 Peter M. Jones <[email protected]> | |
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 | */ | |
3d6392cf JA |
12 | #include <linux/module.h> |
13 | #include <linux/init.h> | |
14 | #include <linux/file.h> | |
15 | #include <linux/blkdev.h> | |
3d6392cf | 16 | #include <linux/cdev.h> |
ad5ebd2f | 17 | #include <linux/jiffies.h> |
3d6392cf | 18 | #include <linux/percpu.h> |
598443a2 | 19 | #include <linux/idr.h> |
3d6392cf | 20 | #include <linux/bsg.h> |
5a0e3ad6 | 21 | #include <linux/slab.h> |
3d6392cf JA |
22 | |
23 | #include <scsi/scsi.h> | |
24 | #include <scsi/scsi_ioctl.h> | |
25 | #include <scsi/scsi_cmnd.h> | |
4e2872d6 FT |
26 | #include <scsi/scsi_device.h> |
27 | #include <scsi/scsi_driver.h> | |
3d6392cf JA |
28 | #include <scsi/sg.h> |
29 | ||
0ed081ce FT |
30 | #define BSG_DESCRIPTION "Block layer SCSI generic (bsg) driver" |
31 | #define BSG_VERSION "0.4" | |
3d6392cf | 32 | |
3124b65d JT |
33 | #define bsg_dbg(bd, fmt, ...) \ |
34 | pr_debug("%s: " fmt, (bd)->name, ##__VA_ARGS__) | |
35 | ||
3d6392cf | 36 | struct bsg_device { |
165125e1 | 37 | struct request_queue *queue; |
3d6392cf | 38 | spinlock_t lock; |
3d6392cf | 39 | struct hlist_node dev_list; |
db193954 | 40 | refcount_t ref_count; |
3ada8b7e | 41 | char name[20]; |
3d6392cf | 42 | int max_queue; |
3d6392cf JA |
43 | }; |
44 | ||
5309cb38 | 45 | #define BSG_DEFAULT_CMDS 64 |
292b7f27 | 46 | #define BSG_MAX_DEVS 32768 |
3d6392cf | 47 | |
3d6392cf | 48 | static DEFINE_MUTEX(bsg_mutex); |
598443a2 | 49 | static DEFINE_IDR(bsg_minor_idr); |
3d6392cf | 50 | |
25fd1643 | 51 | #define BSG_LIST_ARRAY_SIZE 8 |
25fd1643 | 52 | static struct hlist_head bsg_device_list[BSG_LIST_ARRAY_SIZE]; |
3d6392cf JA |
53 | |
54 | static struct class *bsg_class; | |
46f6ef4a | 55 | static int bsg_major; |
3d6392cf | 56 | |
1c1133e1 | 57 | static inline struct hlist_head *bsg_dev_idx_hash(int index) |
3d6392cf | 58 | { |
1c1133e1 | 59 | return &bsg_device_list[index & (BSG_LIST_ARRAY_SIZE - 1)]; |
3d6392cf JA |
60 | } |
61 | ||
17cb960f CH |
62 | #define uptr64(val) ((void __user *)(uintptr_t)(val)) |
63 | ||
64 | static 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 | ||
72 | static int bsg_scsi_fill_hdr(struct request *rq, struct sg_io_v4 *hdr, | |
73 | fmode_t mode) | |
70e36ece | 74 | { |
17cb960f | 75 | struct scsi_request *sreq = scsi_req(rq); |
82ed4db4 | 76 | |
17cb960f CH |
77 | sreq->cmd_len = hdr->request_len; |
78 | if (sreq->cmd_len > BLK_MAX_CDB) { | |
79 | sreq->cmd = kzalloc(sreq->cmd_len, GFP_KERNEL); | |
80 | if (!sreq->cmd) | |
9f5de6b1 FT |
81 | return -ENOMEM; |
82 | } | |
70e36ece | 83 | |
17cb960f | 84 | if (copy_from_user(sreq->cmd, uptr64(hdr->request), sreq->cmd_len)) |
70e36ece | 85 | return -EFAULT; |
17cb960f | 86 | if (blk_verify_command(sreq->cmd, mode)) |
70e36ece | 87 | return -EPERM; |
70e36ece FT |
88 | return 0; |
89 | } | |
90 | ||
17cb960f | 91 | static int bsg_scsi_complete_rq(struct request *rq, struct sg_io_v4 *hdr) |
3d6392cf | 92 | { |
17cb960f | 93 | struct scsi_request *sreq = scsi_req(rq); |
15d10b61 FT |
94 | int ret = 0; |
95 | ||
17cb960f CH |
96 | /* |
97 | * fill in all the output members | |
98 | */ | |
99 | hdr->device_status = sreq->result & 0xff; | |
100 | hdr->transport_status = host_byte(sreq->result); | |
101 | hdr->driver_status = driver_byte(sreq->result); | |
102 | hdr->info = 0; | |
103 | if (hdr->device_status || hdr->transport_status || hdr->driver_status) | |
104 | hdr->info |= SG_INFO_CHECK; | |
105 | hdr->response_len = 0; | |
3d6392cf | 106 | |
17cb960f CH |
107 | if (sreq->sense_len && hdr->response) { |
108 | int len = min_t(unsigned int, hdr->max_response_len, | |
109 | sreq->sense_len); | |
110 | ||
111 | if (copy_to_user(uptr64(hdr->response), sreq->sense, len)) | |
112 | ret = -EFAULT; | |
113 | else | |
114 | hdr->response_len = len; | |
115 | } | |
116 | ||
117 | if (rq->next_rq) { | |
118 | hdr->dout_resid = sreq->resid_len; | |
119 | hdr->din_resid = scsi_req(rq->next_rq)->resid_len; | |
120 | } else if (rq_data_dir(rq) == READ) { | |
121 | hdr->din_resid = sreq->resid_len; | |
122 | } else { | |
123 | hdr->dout_resid = sreq->resid_len; | |
15d10b61 | 124 | } |
70e36ece | 125 | |
15d10b61 | 126 | return ret; |
3d6392cf JA |
127 | } |
128 | ||
17cb960f CH |
129 | static void bsg_scsi_free_rq(struct request *rq) |
130 | { | |
131 | scsi_req_free_cmd(scsi_req(rq)); | |
132 | } | |
133 | ||
134 | static const struct bsg_ops bsg_scsi_ops = { | |
135 | .check_proto = bsg_scsi_check_proto, | |
136 | .fill_hdr = bsg_scsi_fill_hdr, | |
137 | .complete_rq = bsg_scsi_complete_rq, | |
138 | .free_rq = bsg_scsi_free_rq, | |
139 | }; | |
140 | ||
3d6392cf | 141 | static struct request * |
17cb960f | 142 | bsg_map_hdr(struct request_queue *q, struct sg_io_v4 *hdr, fmode_t mode) |
3d6392cf | 143 | { |
2c9ecdf4 | 144 | struct request *rq, *next_rq = NULL; |
aebf526b | 145 | int ret; |
c7a841f3 | 146 | |
17cb960f | 147 | if (!q->bsg_dev.class_dev) |
c7a841f3 | 148 | return ERR_PTR(-ENXIO); |
3d6392cf | 149 | |
17cb960f CH |
150 | if (hdr->guard != 'Q') |
151 | return ERR_PTR(-EINVAL); | |
3d6392cf | 152 | |
17cb960f | 153 | ret = q->bsg_dev.ops->check_proto(hdr); |
3d6392cf JA |
154 | if (ret) |
155 | return ERR_PTR(ret); | |
156 | ||
17cb960f | 157 | rq = blk_get_request(q, hdr->dout_xfer_len ? |
ff005a06 | 158 | REQ_OP_SCSI_OUT : REQ_OP_SCSI_IN, 0); |
a492f075 JL |
159 | if (IS_ERR(rq)) |
160 | return rq; | |
f27b087b | 161 | |
17cb960f | 162 | ret = q->bsg_dev.ops->fill_hdr(rq, hdr, mode); |
2c9ecdf4 FT |
163 | if (ret) |
164 | goto out; | |
165 | ||
17cb960f CH |
166 | rq->timeout = msecs_to_jiffies(hdr->timeout); |
167 | if (!rq->timeout) | |
168 | rq->timeout = q->sg_timeout; | |
169 | if (!rq->timeout) | |
170 | rq->timeout = BLK_DEFAULT_SG_TIMEOUT; | |
171 | if (rq->timeout < BLK_MIN_SG_TIMEOUT) | |
172 | rq->timeout = BLK_MIN_SG_TIMEOUT; | |
173 | ||
174 | if (hdr->dout_xfer_len && hdr->din_xfer_len) { | |
2c9ecdf4 FT |
175 | if (!test_bit(QUEUE_FLAG_BIDI, &q->queue_flags)) { |
176 | ret = -EOPNOTSUPP; | |
177 | goto out; | |
178 | } | |
179 | ||
2e5b2d7c CH |
180 | pr_warn_once( |
181 | "BIDI support in bsg has been deprecated and might be removed. " | |
182 | "Please report your use case to [email protected]\n"); | |
183 | ||
ff005a06 | 184 | next_rq = blk_get_request(q, REQ_OP_SCSI_IN, 0); |
a492f075 JL |
185 | if (IS_ERR(next_rq)) { |
186 | ret = PTR_ERR(next_rq); | |
2c9ecdf4 FT |
187 | goto out; |
188 | } | |
2c9ecdf4 | 189 | |
17cb960f CH |
190 | rq->next_rq = next_rq; |
191 | ret = blk_rq_map_user(q, next_rq, NULL, uptr64(hdr->din_xferp), | |
152e283f | 192 | hdr->din_xfer_len, GFP_KERNEL); |
2c9ecdf4 | 193 | if (ret) |
17cb960f | 194 | goto out_free_nextrq; |
3d6392cf JA |
195 | } |
196 | ||
70e36ece | 197 | if (hdr->dout_xfer_len) { |
17cb960f CH |
198 | ret = blk_rq_map_user(q, rq, NULL, uptr64(hdr->dout_xferp), |
199 | hdr->dout_xfer_len, GFP_KERNEL); | |
70e36ece | 200 | } else if (hdr->din_xfer_len) { |
17cb960f CH |
201 | ret = blk_rq_map_user(q, rq, NULL, uptr64(hdr->din_xferp), |
202 | hdr->din_xfer_len, GFP_KERNEL); | |
3d6392cf | 203 | } |
c1c20120 | 204 | |
17cb960f CH |
205 | if (ret) |
206 | goto out_unmap_nextrq; | |
3d6392cf | 207 | return rq; |
17cb960f CH |
208 | |
209 | out_unmap_nextrq: | |
210 | if (rq->next_rq) | |
211 | blk_rq_unmap_user(rq->next_rq->bio); | |
212 | out_free_nextrq: | |
213 | if (rq->next_rq) | |
214 | blk_put_request(rq->next_rq); | |
2c9ecdf4 | 215 | out: |
17cb960f | 216 | q->bsg_dev.ops->free_rq(rq); |
2c9ecdf4 | 217 | blk_put_request(rq); |
2c9ecdf4 | 218 | return ERR_PTR(ret); |
3d6392cf JA |
219 | } |
220 | ||
70e36ece | 221 | static int blk_complete_sgv4_hdr_rq(struct request *rq, struct sg_io_v4 *hdr, |
2c9ecdf4 | 222 | struct bio *bio, struct bio *bidi_bio) |
70e36ece | 223 | { |
17cb960f | 224 | int ret; |
70e36ece | 225 | |
17cb960f | 226 | ret = rq->q->bsg_dev.ops->complete_rq(rq, hdr); |
70e36ece | 227 | |
2c9ecdf4 FT |
228 | if (rq->next_rq) { |
229 | blk_rq_unmap_user(bidi_bio); | |
230 | blk_put_request(rq->next_rq); | |
17cb960f | 231 | } |
2d507a01 | 232 | |
70e36ece | 233 | blk_rq_unmap_user(bio); |
17cb960f | 234 | rq->q->bsg_dev.ops->free_rq(rq); |
70e36ece | 235 | blk_put_request(rq); |
70e36ece FT |
236 | return ret; |
237 | } | |
238 | ||
3d6392cf JA |
239 | static struct bsg_device *bsg_alloc_device(void) |
240 | { | |
3d6392cf | 241 | struct bsg_device *bd; |
3d6392cf JA |
242 | |
243 | bd = kzalloc(sizeof(struct bsg_device), GFP_KERNEL); | |
244 | if (unlikely(!bd)) | |
245 | return NULL; | |
246 | ||
247 | spin_lock_init(&bd->lock); | |
5309cb38 | 248 | bd->max_queue = BSG_DEFAULT_CMDS; |
3d6392cf | 249 | INIT_HLIST_NODE(&bd->dev_list); |
3d6392cf | 250 | return bd; |
3d6392cf JA |
251 | } |
252 | ||
253 | static int bsg_put_device(struct bsg_device *bd) | |
254 | { | |
97f46ae4 | 255 | struct request_queue *q = bd->queue; |
3d6392cf JA |
256 | |
257 | mutex_lock(&bsg_mutex); | |
258 | ||
db193954 | 259 | if (!refcount_dec_and_test(&bd->ref_count)) { |
3f27e3ed | 260 | mutex_unlock(&bsg_mutex); |
28519c89 | 261 | return 0; |
3f27e3ed FT |
262 | } |
263 | ||
264 | hlist_del(&bd->dev_list); | |
265 | mutex_unlock(&bsg_mutex); | |
3d6392cf | 266 | |
3124b65d | 267 | bsg_dbg(bd, "tearing down\n"); |
3d6392cf JA |
268 | |
269 | /* | |
270 | * close can always block | |
271 | */ | |
5309cb38 | 272 | kfree(bd); |
28519c89 CH |
273 | blk_put_queue(q); |
274 | return 0; | |
3d6392cf JA |
275 | } |
276 | ||
277 | static struct bsg_device *bsg_add_device(struct inode *inode, | |
d351af01 | 278 | struct request_queue *rq, |
3d6392cf JA |
279 | struct file *file) |
280 | { | |
25fd1643 | 281 | struct bsg_device *bd; |
3d6392cf | 282 | unsigned char buf[32]; |
d9f97264 | 283 | |
d6c73964 AG |
284 | lockdep_assert_held(&bsg_mutex); |
285 | ||
09ac46c4 | 286 | if (!blk_get_queue(rq)) |
c3ff1b90 | 287 | return ERR_PTR(-ENXIO); |
3d6392cf JA |
288 | |
289 | bd = bsg_alloc_device(); | |
c3ff1b90 FT |
290 | if (!bd) { |
291 | blk_put_queue(rq); | |
3d6392cf | 292 | return ERR_PTR(-ENOMEM); |
c3ff1b90 | 293 | } |
3d6392cf | 294 | |
d351af01 | 295 | bd->queue = rq; |
0b07de85 | 296 | |
db193954 | 297 | refcount_set(&bd->ref_count, 1); |
842ea771 | 298 | hlist_add_head(&bd->dev_list, bsg_dev_idx_hash(iminor(inode))); |
3d6392cf | 299 | |
3ada8b7e | 300 | strncpy(bd->name, dev_name(rq->bsg_dev.class_dev), sizeof(bd->name) - 1); |
3124b65d | 301 | bsg_dbg(bd, "bound to <%s>, max queue %d\n", |
9e69fbb5 | 302 | format_dev_t(buf, inode->i_rdev), bd->max_queue); |
3d6392cf | 303 | |
3d6392cf JA |
304 | return bd; |
305 | } | |
306 | ||
842ea771 | 307 | static struct bsg_device *__bsg_get_device(int minor, struct request_queue *q) |
3d6392cf | 308 | { |
43ac9e62 | 309 | struct bsg_device *bd; |
3d6392cf | 310 | |
d6c73964 | 311 | lockdep_assert_held(&bsg_mutex); |
3d6392cf | 312 | |
b67bfe0d | 313 | hlist_for_each_entry(bd, bsg_dev_idx_hash(minor), dev_list) { |
842ea771 | 314 | if (bd->queue == q) { |
db193954 | 315 | refcount_inc(&bd->ref_count); |
43ac9e62 | 316 | goto found; |
3d6392cf | 317 | } |
3d6392cf | 318 | } |
43ac9e62 FT |
319 | bd = NULL; |
320 | found: | |
3d6392cf JA |
321 | return bd; |
322 | } | |
323 | ||
324 | static struct bsg_device *bsg_get_device(struct inode *inode, struct file *file) | |
325 | { | |
598443a2 FT |
326 | struct bsg_device *bd; |
327 | struct bsg_class_device *bcd; | |
3d6392cf | 328 | |
3d6392cf JA |
329 | /* |
330 | * find the class device | |
331 | */ | |
3d6392cf | 332 | mutex_lock(&bsg_mutex); |
598443a2 | 333 | bcd = idr_find(&bsg_minor_idr, iminor(inode)); |
3d6392cf | 334 | |
d6c73964 AG |
335 | if (!bcd) { |
336 | bd = ERR_PTR(-ENODEV); | |
337 | goto out_unlock; | |
338 | } | |
3d6392cf | 339 | |
842ea771 | 340 | bd = __bsg_get_device(iminor(inode), bcd->queue); |
d6c73964 AG |
341 | if (!bd) |
342 | bd = bsg_add_device(inode, bcd->queue, file); | |
d45ac4fa | 343 | |
d6c73964 AG |
344 | out_unlock: |
345 | mutex_unlock(&bsg_mutex); | |
d45ac4fa | 346 | return bd; |
3d6392cf JA |
347 | } |
348 | ||
349 | static int bsg_open(struct inode *inode, struct file *file) | |
350 | { | |
75bd2ef1 JC |
351 | struct bsg_device *bd; |
352 | ||
75bd2ef1 | 353 | bd = bsg_get_device(inode, file); |
3d6392cf JA |
354 | |
355 | if (IS_ERR(bd)) | |
356 | return PTR_ERR(bd); | |
357 | ||
358 | file->private_data = bd; | |
359 | return 0; | |
360 | } | |
361 | ||
362 | static int bsg_release(struct inode *inode, struct file *file) | |
363 | { | |
364 | struct bsg_device *bd = file->private_data; | |
365 | ||
366 | file->private_data = NULL; | |
367 | return bsg_put_device(bd); | |
368 | } | |
369 | ||
25fd1643 | 370 | static long bsg_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
3d6392cf JA |
371 | { |
372 | struct bsg_device *bd = file->private_data; | |
373 | int __user *uarg = (int __user *) arg; | |
2d507a01 | 374 | int ret; |
3d6392cf | 375 | |
3d6392cf JA |
376 | switch (cmd) { |
377 | /* | |
378 | * our own ioctls | |
379 | */ | |
380 | case SG_GET_COMMAND_Q: | |
381 | return put_user(bd->max_queue, uarg); | |
5309cb38 | 382 | case SG_SET_COMMAND_Q: { |
3d6392cf JA |
383 | int queue; |
384 | ||
385 | if (get_user(queue, uarg)) | |
386 | return -EFAULT; | |
5309cb38 | 387 | if (queue < 1) |
3d6392cf JA |
388 | return -EINVAL; |
389 | ||
5309cb38 | 390 | spin_lock_irq(&bd->lock); |
3d6392cf | 391 | bd->max_queue = queue; |
5309cb38 | 392 | spin_unlock_irq(&bd->lock); |
3d6392cf JA |
393 | return 0; |
394 | } | |
395 | ||
396 | /* | |
397 | * SCSI/sg ioctls | |
398 | */ | |
399 | case SG_GET_VERSION_NUM: | |
400 | case SCSI_IOCTL_GET_IDLUN: | |
401 | case SCSI_IOCTL_GET_BUS_NUMBER: | |
402 | case SG_SET_TIMEOUT: | |
403 | case SG_GET_TIMEOUT: | |
404 | case SG_GET_RESERVED_SIZE: | |
405 | case SG_SET_RESERVED_SIZE: | |
406 | case SG_EMULATED_HOST: | |
3d6392cf JA |
407 | case SCSI_IOCTL_SEND_COMMAND: { |
408 | void __user *uarg = (void __user *) arg; | |
74f3c8af | 409 | return scsi_cmd_ioctl(bd->queue, NULL, file->f_mode, cmd, uarg); |
3d6392cf | 410 | } |
10e8855b FT |
411 | case SG_IO: { |
412 | struct request *rq; | |
2c9ecdf4 | 413 | struct bio *bio, *bidi_bio = NULL; |
10e8855b | 414 | struct sg_io_v4 hdr; |
05378940 | 415 | int at_head; |
10e8855b FT |
416 | |
417 | if (copy_from_user(&hdr, uarg, sizeof(hdr))) | |
418 | return -EFAULT; | |
419 | ||
17cb960f | 420 | rq = bsg_map_hdr(bd->queue, &hdr, file->f_mode); |
10e8855b FT |
421 | if (IS_ERR(rq)) |
422 | return PTR_ERR(rq); | |
423 | ||
424 | bio = rq->bio; | |
2c9ecdf4 FT |
425 | if (rq->next_rq) |
426 | bidi_bio = rq->next_rq->bio; | |
05378940 BH |
427 | |
428 | at_head = (0 == (hdr.flags & BSG_FLAG_Q_AT_TAIL)); | |
429 | blk_execute_rq(bd->queue, NULL, rq, at_head); | |
2d507a01 | 430 | ret = blk_complete_sgv4_hdr_rq(rq, &hdr, bio, bidi_bio); |
10e8855b FT |
431 | |
432 | if (copy_to_user(uarg, &hdr, sizeof(hdr))) | |
433 | return -EFAULT; | |
b711afa6 | 434 | |
2d507a01 | 435 | return ret; |
10e8855b | 436 | } |
3d6392cf | 437 | default: |
3d6392cf | 438 | return -ENOTTY; |
3d6392cf JA |
439 | } |
440 | } | |
441 | ||
7344be05 | 442 | static const struct file_operations bsg_fops = { |
3d6392cf JA |
443 | .open = bsg_open, |
444 | .release = bsg_release, | |
25fd1643 | 445 | .unlocked_ioctl = bsg_ioctl, |
3d6392cf | 446 | .owner = THIS_MODULE, |
6038f373 | 447 | .llseek = default_llseek, |
3d6392cf JA |
448 | }; |
449 | ||
d351af01 | 450 | void bsg_unregister_queue(struct request_queue *q) |
3d6392cf | 451 | { |
d351af01 | 452 | struct bsg_class_device *bcd = &q->bsg_dev; |
3d6392cf | 453 | |
df468820 FT |
454 | if (!bcd->class_dev) |
455 | return; | |
3d6392cf JA |
456 | |
457 | mutex_lock(&bsg_mutex); | |
598443a2 | 458 | idr_remove(&bsg_minor_idr, bcd->minor); |
37b40adf SG |
459 | if (q->kobj.sd) |
460 | sysfs_remove_link(&q->kobj, "bsg"); | |
ee959b00 | 461 | device_unregister(bcd->class_dev); |
3d6392cf | 462 | bcd->class_dev = NULL; |
3d6392cf JA |
463 | mutex_unlock(&bsg_mutex); |
464 | } | |
4cf0723a | 465 | EXPORT_SYMBOL_GPL(bsg_unregister_queue); |
3d6392cf | 466 | |
97f46ae4 | 467 | int bsg_register_queue(struct request_queue *q, struct device *parent, |
5de815a7 | 468 | const char *name, const struct bsg_ops *ops) |
3d6392cf | 469 | { |
598443a2 | 470 | struct bsg_class_device *bcd; |
3d6392cf | 471 | dev_t dev; |
bab998d6 | 472 | int ret; |
ee959b00 | 473 | struct device *class_dev = NULL; |
3d6392cf JA |
474 | |
475 | /* | |
476 | * we need a proper transport to send commands, not a stacked device | |
477 | */ | |
344e9ffc | 478 | if (!queue_is_mq(q)) |
3d6392cf JA |
479 | return 0; |
480 | ||
d351af01 | 481 | bcd = &q->bsg_dev; |
3d6392cf | 482 | memset(bcd, 0, sizeof(*bcd)); |
3d6392cf JA |
483 | |
484 | mutex_lock(&bsg_mutex); | |
292b7f27 | 485 | |
bab998d6 TH |
486 | ret = idr_alloc(&bsg_minor_idr, bcd, 0, BSG_MAX_DEVS, GFP_KERNEL); |
487 | if (ret < 0) { | |
488 | if (ret == -ENOSPC) { | |
489 | printk(KERN_ERR "bsg: too many bsg devices\n"); | |
490 | ret = -EINVAL; | |
491 | } | |
598443a2 | 492 | goto unlock; |
598443a2 FT |
493 | } |
494 | ||
bab998d6 | 495 | bcd->minor = ret; |
d351af01 | 496 | bcd->queue = q; |
17cb960f | 497 | bcd->ops = ops; |
46f6ef4a | 498 | dev = MKDEV(bsg_major, bcd->minor); |
5de815a7 | 499 | class_dev = device_create(bsg_class, parent, dev, NULL, "%s", name); |
4e2872d6 FT |
500 | if (IS_ERR(class_dev)) { |
501 | ret = PTR_ERR(class_dev); | |
5de815a7 | 502 | goto idr_remove; |
4e2872d6 FT |
503 | } |
504 | bcd->class_dev = class_dev; | |
505 | ||
abce891a | 506 | if (q->kobj.sd) { |
4e2872d6 FT |
507 | ret = sysfs_create_link(&q->kobj, &bcd->class_dev->kobj, "bsg"); |
508 | if (ret) | |
598443a2 | 509 | goto unregister_class_dev; |
4e2872d6 FT |
510 | } |
511 | ||
3d6392cf JA |
512 | mutex_unlock(&bsg_mutex); |
513 | return 0; | |
6826ee4f | 514 | |
598443a2 | 515 | unregister_class_dev: |
ee959b00 | 516 | device_unregister(class_dev); |
5de815a7 | 517 | idr_remove: |
bab998d6 | 518 | idr_remove(&bsg_minor_idr, bcd->minor); |
598443a2 | 519 | unlock: |
264a0472 | 520 | mutex_unlock(&bsg_mutex); |
4e2872d6 FT |
521 | return ret; |
522 | } | |
17cb960f CH |
523 | |
524 | int bsg_scsi_register_queue(struct request_queue *q, struct device *parent) | |
525 | { | |
526 | if (!blk_queue_scsi_passthrough(q)) { | |
527 | WARN_ONCE(true, "Attempt to register a non-SCSI queue\n"); | |
528 | return -EINVAL; | |
529 | } | |
530 | ||
5de815a7 | 531 | return bsg_register_queue(q, parent, dev_name(parent), &bsg_scsi_ops); |
17cb960f CH |
532 | } |
533 | EXPORT_SYMBOL_GPL(bsg_scsi_register_queue); | |
4e2872d6 | 534 | |
7e7654a9 | 535 | static struct cdev bsg_cdev; |
292b7f27 | 536 | |
2c9ede55 | 537 | static char *bsg_devnode(struct device *dev, umode_t *mode) |
2bdf9149 KS |
538 | { |
539 | return kasprintf(GFP_KERNEL, "bsg/%s", dev_name(dev)); | |
540 | } | |
541 | ||
3d6392cf JA |
542 | static int __init bsg_init(void) |
543 | { | |
544 | int ret, i; | |
46f6ef4a | 545 | dev_t devid; |
3d6392cf | 546 | |
25fd1643 | 547 | for (i = 0; i < BSG_LIST_ARRAY_SIZE; i++) |
3d6392cf JA |
548 | INIT_HLIST_HEAD(&bsg_device_list[i]); |
549 | ||
550 | bsg_class = class_create(THIS_MODULE, "bsg"); | |
28519c89 CH |
551 | if (IS_ERR(bsg_class)) |
552 | return PTR_ERR(bsg_class); | |
e454cea2 | 553 | bsg_class->devnode = bsg_devnode; |
3d6392cf | 554 | |
46f6ef4a | 555 | ret = alloc_chrdev_region(&devid, 0, BSG_MAX_DEVS, "bsg"); |
9b9f770c FT |
556 | if (ret) |
557 | goto destroy_bsg_class; | |
292b7f27 | 558 | |
46f6ef4a JA |
559 | bsg_major = MAJOR(devid); |
560 | ||
292b7f27 | 561 | cdev_init(&bsg_cdev, &bsg_fops); |
46f6ef4a | 562 | ret = cdev_add(&bsg_cdev, MKDEV(bsg_major, 0), BSG_MAX_DEVS); |
9b9f770c FT |
563 | if (ret) |
564 | goto unregister_chrdev; | |
3d6392cf | 565 | |
5d3a8cd3 | 566 | printk(KERN_INFO BSG_DESCRIPTION " version " BSG_VERSION |
0ed081ce | 567 | " loaded (major %d)\n", bsg_major); |
3d6392cf | 568 | return 0; |
9b9f770c FT |
569 | unregister_chrdev: |
570 | unregister_chrdev_region(MKDEV(bsg_major, 0), BSG_MAX_DEVS); | |
571 | destroy_bsg_class: | |
572 | class_destroy(bsg_class); | |
9b9f770c | 573 | return ret; |
3d6392cf JA |
574 | } |
575 | ||
576 | MODULE_AUTHOR("Jens Axboe"); | |
0ed081ce | 577 | MODULE_DESCRIPTION(BSG_DESCRIPTION); |
3d6392cf JA |
578 | MODULE_LICENSE("GPL"); |
579 | ||
4e2872d6 | 580 | device_initcall(bsg_init); |