Blame view
block/bsg.c
23.4 KB
3d6392cfb
|
1 |
/* |
0c6a89ba6
|
2 |
* bsg.c - block layer implementation of the sg v4 interface |
3d6392cfb
|
3 4 5 6 7 8 9 10 11 |
* * Copyright (C) 2004 Jens Axboe <axboe@suse.de> SUSE Labs * Copyright (C) 2004 Peter M. Jones <pjones@redhat.com> * * This file is subject to the terms and conditions of the GNU General Public * License version 2. See the file "COPYING" in the main directory of this * archive for more details. * */ |
3d6392cfb
|
12 13 14 15 16 17 18 19 |
#include <linux/module.h> #include <linux/init.h> #include <linux/file.h> #include <linux/blkdev.h> #include <linux/poll.h> #include <linux/cdev.h> #include <linux/percpu.h> #include <linux/uio.h> |
598443a21
|
20 |
#include <linux/idr.h> |
3d6392cfb
|
21 |
#include <linux/bsg.h> |
75bd2ef14
|
22 |
#include <linux/smp_lock.h> |
3d6392cfb
|
23 24 25 26 |
#include <scsi/scsi.h> #include <scsi/scsi_ioctl.h> #include <scsi/scsi_cmnd.h> |
4e2872d6b
|
27 28 |
#include <scsi/scsi_device.h> #include <scsi/scsi_driver.h> |
3d6392cfb
|
29 |
#include <scsi/sg.h> |
0ed081ce2
|
30 31 |
#define BSG_DESCRIPTION "Block layer SCSI generic (bsg) driver" #define BSG_VERSION "0.4" |
3d6392cfb
|
32 |
|
3d6392cfb
|
33 |
struct bsg_device { |
165125e1e
|
34 |
struct request_queue *queue; |
3d6392cfb
|
35 36 37 38 39 |
spinlock_t lock; struct list_head busy_list; struct list_head done_list; struct hlist_node dev_list; atomic_t ref_count; |
3d6392cfb
|
40 41 |
int queued_cmds; int done_cmds; |
3d6392cfb
|
42 43 |
wait_queue_head_t wq_done; wait_queue_head_t wq_free; |
3ada8b7e9
|
44 |
char name[20]; |
3d6392cfb
|
45 46 47 48 49 50 |
int max_queue; unsigned long flags; }; enum { BSG_F_BLOCK = 1, |
3d6392cfb
|
51 |
}; |
5309cb38d
|
52 |
#define BSG_DEFAULT_CMDS 64 |
292b7f271
|
53 |
#define BSG_MAX_DEVS 32768 |
3d6392cfb
|
54 55 56 57 |
#undef BSG_DEBUG #ifdef BSG_DEBUG |
24c03d47d
|
58 |
#define dprintk(fmt, args...) printk(KERN_ERR "%s: " fmt, __func__, ##args) |
3d6392cfb
|
59 60 61 |
#else #define dprintk(fmt, args...) #endif |
3d6392cfb
|
62 |
static DEFINE_MUTEX(bsg_mutex); |
598443a21
|
63 |
static DEFINE_IDR(bsg_minor_idr); |
3d6392cfb
|
64 |
|
25fd16430
|
65 |
#define BSG_LIST_ARRAY_SIZE 8 |
25fd16430
|
66 |
static struct hlist_head bsg_device_list[BSG_LIST_ARRAY_SIZE]; |
3d6392cfb
|
67 68 |
static struct class *bsg_class; |
46f6ef4af
|
69 |
static int bsg_major; |
3d6392cfb
|
70 |
|
5309cb38d
|
71 |
static struct kmem_cache *bsg_cmd_cachep; |
3d6392cfb
|
72 73 74 75 76 77 78 79 |
/* * our internal command type */ struct bsg_command { struct bsg_device *bd; struct list_head list; struct request *rq; struct bio *bio; |
2c9ecdf40
|
80 |
struct bio *bidi_bio; |
3d6392cfb
|
81 |
int err; |
70e36ecea
|
82 |
struct sg_io_v4 hdr; |
3d6392cfb
|
83 84 85 86 87 88 |
char sense[SCSI_SENSE_BUFFERSIZE]; }; static void bsg_free_command(struct bsg_command *bc) { struct bsg_device *bd = bc->bd; |
3d6392cfb
|
89 |
unsigned long flags; |
5309cb38d
|
90 |
kmem_cache_free(bsg_cmd_cachep, bc); |
3d6392cfb
|
91 92 93 |
spin_lock_irqsave(&bd->lock, flags); bd->queued_cmds--; |
3d6392cfb
|
94 95 96 97 |
spin_unlock_irqrestore(&bd->lock, flags); wake_up(&bd->wq_free); } |
e7d721732
|
98 |
static struct bsg_command *bsg_alloc_command(struct bsg_device *bd) |
3d6392cfb
|
99 |
{ |
e7d721732
|
100 |
struct bsg_command *bc = ERR_PTR(-EINVAL); |
3d6392cfb
|
101 102 103 104 105 |
spin_lock_irq(&bd->lock); if (bd->queued_cmds >= bd->max_queue) goto out; |
3d6392cfb
|
106 |
bd->queued_cmds++; |
3d6392cfb
|
107 |
spin_unlock_irq(&bd->lock); |
25fd16430
|
108 |
bc = kmem_cache_zalloc(bsg_cmd_cachep, GFP_KERNEL); |
5309cb38d
|
109 110 |
if (unlikely(!bc)) { spin_lock_irq(&bd->lock); |
7e75d7308
|
111 |
bd->queued_cmds--; |
e7d721732
|
112 |
bc = ERR_PTR(-ENOMEM); |
7e75d7308
|
113 |
goto out; |
5309cb38d
|
114 |
} |
3d6392cfb
|
115 116 |
bc->bd = bd; INIT_LIST_HEAD(&bc->list); |
5309cb38d
|
117 118 |
dprintk("%s: returning free cmd %p ", bd->name, bc); |
3d6392cfb
|
119 120 |
return bc; out: |
3d6392cfb
|
121 122 123 |
spin_unlock_irq(&bd->lock); return bc; } |
1c1133e1f
|
124 |
static inline struct hlist_head *bsg_dev_idx_hash(int index) |
3d6392cfb
|
125 |
{ |
1c1133e1f
|
126 |
return &bsg_device_list[index & (BSG_LIST_ARRAY_SIZE - 1)]; |
3d6392cfb
|
127 |
} |
25fd16430
|
128 |
static int bsg_io_schedule(struct bsg_device *bd) |
3d6392cfb
|
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
{ DEFINE_WAIT(wait); int ret = 0; spin_lock_irq(&bd->lock); BUG_ON(bd->done_cmds > bd->queued_cmds); /* * -ENOSPC or -ENODATA? I'm going for -ENODATA, meaning "I have no * work to do", even though we return -ENOSPC after this same test * during bsg_write() -- there, it means our buffer can't have more * bsg_commands added to it, thus has no space left. */ if (bd->done_cmds == bd->queued_cmds) { ret = -ENODATA; goto unlock; } if (!test_bit(BSG_F_BLOCK, &bd->flags)) { ret = -EAGAIN; goto unlock; } |
25fd16430
|
152 |
prepare_to_wait(&bd->wq_done, &wait, TASK_UNINTERRUPTIBLE); |
3d6392cfb
|
153 154 155 |
spin_unlock_irq(&bd->lock); io_schedule(); finish_wait(&bd->wq_done, &wait); |
3d6392cfb
|
156 157 158 159 160 |
return ret; unlock: spin_unlock_irq(&bd->lock); return ret; } |
165125e1e
|
161 |
static int blk_fill_sgv4_hdr_rq(struct request_queue *q, struct request *rq, |
abf543937
|
162 |
struct sg_io_v4 *hdr, struct bsg_device *bd, |
aeb5d7270
|
163 |
fmode_t has_write_perm) |
70e36ecea
|
164 |
{ |
9f5de6b10
|
165 166 167 168 169 |
if (hdr->request_len > BLK_MAX_CDB) { rq->cmd = kzalloc(hdr->request_len, GFP_KERNEL); if (!rq->cmd) return -ENOMEM; } |
70e36ecea
|
170 171 172 173 |
if (copy_from_user(rq->cmd, (void *)(unsigned long)hdr->request, hdr->request_len)) return -EFAULT; |
15d10b611
|
174 175 |
if (hdr->subprotocol == BSG_SUB_PROTOCOL_SCSI_CMD) { |
018e04468
|
176 |
if (blk_verify_command(rq->cmd, has_write_perm)) |
15d10b611
|
177 178 |
return -EPERM; } else if (!capable(CAP_SYS_RAWIO)) |
70e36ecea
|
179 180 181 182 183 184 185 186 187 188 189 190 191 |
return -EPERM; /* * fill in request structure */ rq->cmd_len = hdr->request_len; rq->cmd_type = REQ_TYPE_BLOCK_PC; rq->timeout = (hdr->timeout * HZ) / 1000; if (!rq->timeout) rq->timeout = q->sg_timeout; if (!rq->timeout) rq->timeout = BLK_DEFAULT_SG_TIMEOUT; |
f2f1fa78a
|
192 193 |
if (rq->timeout < BLK_MIN_SG_TIMEOUT) rq->timeout = BLK_MIN_SG_TIMEOUT; |
70e36ecea
|
194 195 196 |
return 0; } |
3d6392cfb
|
197 |
/* |
70e36ecea
|
198 |
* Check if sg_io_v4 from user is allowed and valid |
3d6392cfb
|
199 200 |
*/ static int |
165125e1e
|
201 |
bsg_validate_sgv4_hdr(struct request_queue *q, struct sg_io_v4 *hdr, int *rw) |
3d6392cfb
|
202 |
{ |
15d10b611
|
203 |
int ret = 0; |
70e36ecea
|
204 |
if (hdr->guard != 'Q') |
3d6392cfb
|
205 |
return -EINVAL; |
3d6392cfb
|
206 |
|
15d10b611
|
207 208 209 210 211 212 213 214 215 216 217 218 219 |
switch (hdr->protocol) { case BSG_PROTOCOL_SCSI: switch (hdr->subprotocol) { case BSG_SUB_PROTOCOL_SCSI_CMD: case BSG_SUB_PROTOCOL_SCSI_TRANSPORT: break; default: ret = -EINVAL; } break; default: ret = -EINVAL; } |
70e36ecea
|
220 |
|
70e36ecea
|
221 |
*rw = hdr->dout_xfer_len ? WRITE : READ; |
15d10b611
|
222 |
return ret; |
3d6392cfb
|
223 224 225 |
} /* |
70e36ecea
|
226 |
* map sg_io_v4 to a request. |
3d6392cfb
|
227 228 |
*/ static struct request * |
c1c201200
|
229 230 |
bsg_map_hdr(struct bsg_device *bd, struct sg_io_v4 *hdr, fmode_t has_write_perm, u8 *sense) |
3d6392cfb
|
231 |
{ |
165125e1e
|
232 |
struct request_queue *q = bd->queue; |
2c9ecdf40
|
233 |
struct request *rq, *next_rq = NULL; |
25fd16430
|
234 |
int ret, rw; |
70e36ecea
|
235 236 |
unsigned int dxfer_len; void *dxferp = NULL; |
3d6392cfb
|
237 |
|
70e36ecea
|
238 239 240 241 |
dprintk("map hdr %llx/%u %llx/%u ", (unsigned long long) hdr->dout_xferp, hdr->dout_xfer_len, (unsigned long long) hdr->din_xferp, hdr->din_xfer_len); |
3d6392cfb
|
242 |
|
70e36ecea
|
243 |
ret = bsg_validate_sgv4_hdr(q, hdr, &rw); |
3d6392cfb
|
244 245 246 247 248 249 250 |
if (ret) return ERR_PTR(ret); /* * map scatter-gather elements seperately and string them to request */ rq = blk_get_request(q, rw, GFP_KERNEL); |
2c9ecdf40
|
251 252 |
if (!rq) return ERR_PTR(-ENOMEM); |
abf543937
|
253 |
ret = blk_fill_sgv4_hdr_rq(q, rq, hdr, bd, has_write_perm); |
2c9ecdf40
|
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
if (ret) goto out; if (rw == WRITE && hdr->din_xfer_len) { if (!test_bit(QUEUE_FLAG_BIDI, &q->queue_flags)) { ret = -EOPNOTSUPP; goto out; } next_rq = blk_get_request(q, READ, GFP_KERNEL); if (!next_rq) { ret = -ENOMEM; goto out; } rq->next_rq = next_rq; |
40f620286
|
269 |
next_rq->cmd_type = rq->cmd_type; |
2c9ecdf40
|
270 271 |
dxferp = (void*)(unsigned long)hdr->din_xferp; |
152e283fd
|
272 273 |
ret = blk_rq_map_user(q, next_rq, NULL, dxferp, hdr->din_xfer_len, GFP_KERNEL); |
2c9ecdf40
|
274 275 |
if (ret) goto out; |
3d6392cfb
|
276 |
} |
70e36ecea
|
277 278 279 280 281 282 283 284 285 286 |
if (hdr->dout_xfer_len) { dxfer_len = hdr->dout_xfer_len; dxferp = (void*)(unsigned long)hdr->dout_xferp; } else if (hdr->din_xfer_len) { dxfer_len = hdr->din_xfer_len; dxferp = (void*)(unsigned long)hdr->din_xferp; } else dxfer_len = 0; if (dxfer_len) { |
152e283fd
|
287 288 |
ret = blk_rq_map_user(q, rq, NULL, dxferp, dxfer_len, GFP_KERNEL); |
2c9ecdf40
|
289 290 |
if (ret) goto out; |
3d6392cfb
|
291 |
} |
c1c201200
|
292 293 294 |
rq->sense = sense; rq->sense_len = 0; |
3d6392cfb
|
295 |
return rq; |
2c9ecdf40
|
296 |
out: |
9f5de6b10
|
297 298 |
if (rq->cmd != rq->__cmd) kfree(rq->cmd); |
2c9ecdf40
|
299 300 301 302 303 304 |
blk_put_request(rq); if (next_rq) { blk_rq_unmap_user(next_rq->bio); blk_put_request(next_rq); } return ERR_PTR(ret); |
3d6392cfb
|
305 306 307 308 309 310 311 312 313 314 315 |
} /* * async completion call-back from the block layer, when scsi/ide/whatever * calls end_that_request_last() on a request */ static void bsg_rq_end_io(struct request *rq, int uptodate) { struct bsg_command *bc = rq->end_io_data; struct bsg_device *bd = bc->bd; unsigned long flags; |
5309cb38d
|
316 317 318 |
dprintk("%s: finished rq %p bc %p, bio %p stat %d ", bd->name, rq, bc, bc->bio, uptodate); |
3d6392cfb
|
319 320 321 322 |
bc->hdr.duration = jiffies_to_msecs(jiffies - bc->hdr.duration); spin_lock_irqsave(&bd->lock, flags); |
25fd16430
|
323 324 |
list_move_tail(&bc->list, &bd->done_list); bd->done_cmds++; |
3d6392cfb
|
325 |
spin_unlock_irqrestore(&bd->lock, flags); |
25fd16430
|
326 327 |
wake_up(&bd->wq_done); |
3d6392cfb
|
328 329 330 331 332 333 |
} /* * do final setup of a 'bc' and submit the matching 'rq' to the block * layer for io */ |
165125e1e
|
334 |
static void bsg_add_command(struct bsg_device *bd, struct request_queue *q, |
3d6392cfb
|
335 336 |
struct bsg_command *bc, struct request *rq) { |
05378940c
|
337 |
int at_head = (0 == (bc->hdr.flags & BSG_FLAG_Q_AT_TAIL)); |
3d6392cfb
|
338 339 340 341 342 |
/* * add bc command to busy queue and submit rq for io */ bc->rq = rq; bc->bio = rq->bio; |
2c9ecdf40
|
343 344 |
if (rq->next_rq) bc->bidi_bio = rq->next_rq->bio; |
3d6392cfb
|
345 346 347 348 349 350 351 352 353 |
bc->hdr.duration = jiffies; spin_lock_irq(&bd->lock); list_add_tail(&bc->list, &bd->busy_list); spin_unlock_irq(&bd->lock); dprintk("%s: queueing rq %p, bc %p ", bd->name, rq, bc); rq->end_io_data = bc; |
05378940c
|
354 |
blk_execute_rq_nowait(q, NULL, rq, at_head, bsg_rq_end_io); |
3d6392cfb
|
355 |
} |
25fd16430
|
356 |
static struct bsg_command *bsg_next_done_cmd(struct bsg_device *bd) |
3d6392cfb
|
357 358 359 360 361 |
{ struct bsg_command *bc = NULL; spin_lock_irq(&bd->lock); if (bd->done_cmds) { |
43ac9e62c
|
362 |
bc = list_first_entry(&bd->done_list, struct bsg_command, list); |
25fd16430
|
363 364 |
list_del(&bc->list); bd->done_cmds--; |
3d6392cfb
|
365 366 367 368 369 370 371 372 373 |
} spin_unlock_irq(&bd->lock); return bc; } /* * Get a finished command from the done list */ |
e7d721732
|
374 |
static struct bsg_command *bsg_get_done_cmd(struct bsg_device *bd) |
3d6392cfb
|
375 376 377 378 379 380 381 382 |
{ struct bsg_command *bc; int ret; do { bc = bsg_next_done_cmd(bd); if (bc) break; |
e7d721732
|
383 384 385 386 387 388 |
if (!test_bit(BSG_F_BLOCK, &bd->flags)) { bc = ERR_PTR(-EAGAIN); break; } ret = wait_event_interruptible(bd->wq_done, bd->done_cmds); |
3d6392cfb
|
389 |
if (ret) { |
e7d721732
|
390 |
bc = ERR_PTR(-ERESTARTSYS); |
3d6392cfb
|
391 392 393 394 395 396 397 398 399 |
break; } } while (1); dprintk("%s: returning done %p ", bd->name, bc); return bc; } |
70e36ecea
|
400 |
static int blk_complete_sgv4_hdr_rq(struct request *rq, struct sg_io_v4 *hdr, |
2c9ecdf40
|
401 |
struct bio *bio, struct bio *bidi_bio) |
70e36ecea
|
402 403 |
{ int ret = 0; |
c1c201200
|
404 405 |
dprintk("rq %p bio %p 0x%x ", rq, bio, rq->errors); |
70e36ecea
|
406 407 408 409 410 411 412 413 414 |
/* * fill in all the output members */ hdr->device_status = status_byte(rq->errors); hdr->transport_status = host_byte(rq->errors); hdr->driver_status = driver_byte(rq->errors); hdr->info = 0; if (hdr->device_status || hdr->transport_status || hdr->driver_status) hdr->info |= SG_INFO_CHECK; |
70e36ecea
|
415 416 417 |
hdr->response_len = 0; if (rq->sense_len && hdr->response) { |
25fd16430
|
418 419 |
int len = min_t(unsigned int, hdr->max_response_len, rq->sense_len); |
70e36ecea
|
420 421 422 423 424 425 426 427 |
ret = copy_to_user((void*)(unsigned long)hdr->response, rq->sense, len); if (!ret) hdr->response_len = len; else ret = -EFAULT; } |
2c9ecdf40
|
428 |
if (rq->next_rq) { |
c3a4d78c5
|
429 430 |
hdr->dout_resid = rq->resid_len; hdr->din_resid = rq->next_rq->resid_len; |
2c9ecdf40
|
431 432 |
blk_rq_unmap_user(bidi_bio); blk_put_request(rq->next_rq); |
0c6a89ba6
|
433 |
} else if (rq_data_dir(rq) == READ) |
c3a4d78c5
|
434 |
hdr->din_resid = rq->resid_len; |
0c6a89ba6
|
435 |
else |
c3a4d78c5
|
436 |
hdr->dout_resid = rq->resid_len; |
2c9ecdf40
|
437 |
|
2d507a01d
|
438 439 440 441 442 443 444 445 |
/* * If the request generated a negative error number, return it * (providing we aren't already returning an error); if it's * just a protocol response (i.e. non negative), that gets * processed above. */ if (!ret && rq->errors < 0) ret = rq->errors; |
70e36ecea
|
446 |
blk_rq_unmap_user(bio); |
9f5de6b10
|
447 448 |
if (rq->cmd != rq->__cmd) kfree(rq->cmd); |
70e36ecea
|
449 450 451 452 |
blk_put_request(rq); return ret; } |
3d6392cfb
|
453 454 455 456 457 458 459 |
static int bsg_complete_all_commands(struct bsg_device *bd) { struct bsg_command *bc; int ret, tret; dprintk("%s: entered ", bd->name); |
3d6392cfb
|
460 461 462 463 464 |
/* * wait for all commands to complete */ ret = 0; do { |
25fd16430
|
465 |
ret = bsg_io_schedule(bd); |
3d6392cfb
|
466 467 468 469 470 471 472 473 474 475 476 477 478 479 |
/* * look for -ENODATA specifically -- we'll sometimes get * -ERESTARTSYS when we've taken a signal, but we can't * return until we're done freeing the queue, so ignore * it. The signal will get handled when we're done freeing * the bsg_device. */ } while (ret != -ENODATA); /* * discard done commands */ ret = 0; do { |
e7d721732
|
480 481 482 |
spin_lock_irq(&bd->lock); if (!bd->queued_cmds) { spin_unlock_irq(&bd->lock); |
3d6392cfb
|
483 484 |
break; } |
efba1a31f
|
485 |
spin_unlock_irq(&bd->lock); |
3d6392cfb
|
486 |
|
e7d721732
|
487 488 489 |
bc = bsg_get_done_cmd(bd); if (IS_ERR(bc)) break; |
2c9ecdf40
|
490 491 |
tret = blk_complete_sgv4_hdr_rq(bc->rq, &bc->hdr, bc->bio, bc->bidi_bio); |
3d6392cfb
|
492 493 494 495 496 497 498 499 |
if (!ret) ret = tret; bsg_free_command(bc); } while (1); return ret; } |
25fd16430
|
500 |
static int |
e7d721732
|
501 502 |
__bsg_read(char __user *buf, size_t count, struct bsg_device *bd, const struct iovec *iov, ssize_t *bytes_read) |
3d6392cfb
|
503 504 505 |
{ struct bsg_command *bc; int nr_commands, ret; |
70e36ecea
|
506 |
if (count % sizeof(struct sg_io_v4)) |
3d6392cfb
|
507 508 509 |
return -EINVAL; ret = 0; |
70e36ecea
|
510 |
nr_commands = count / sizeof(struct sg_io_v4); |
3d6392cfb
|
511 |
while (nr_commands) { |
e7d721732
|
512 |
bc = bsg_get_done_cmd(bd); |
3d6392cfb
|
513 514 515 516 517 518 519 520 521 522 |
if (IS_ERR(bc)) { ret = PTR_ERR(bc); break; } /* * this is the only case where we need to copy data back * after completing the request. so do that here, * bsg_complete_work() cannot do that for us */ |
2c9ecdf40
|
523 524 |
ret = blk_complete_sgv4_hdr_rq(bc->rq, &bc->hdr, bc->bio, bc->bidi_bio); |
3d6392cfb
|
525 |
|
25fd16430
|
526 |
if (copy_to_user(buf, &bc->hdr, sizeof(bc->hdr))) |
3d6392cfb
|
527 528 529 530 531 532 |
ret = -EFAULT; bsg_free_command(bc); if (ret) break; |
70e36ecea
|
533 534 |
buf += sizeof(struct sg_io_v4); *bytes_read += sizeof(struct sg_io_v4); |
3d6392cfb
|
535 536 537 538 539 540 541 542 543 544 545 546 547 |
nr_commands--; } return ret; } static inline void bsg_set_block(struct bsg_device *bd, struct file *file) { if (file->f_flags & O_NONBLOCK) clear_bit(BSG_F_BLOCK, &bd->flags); else set_bit(BSG_F_BLOCK, &bd->flags); } |
25fd16430
|
548 549 550 |
/* * Check if the error is a "real" error that we should return. */ |
3d6392cfb
|
551 552 553 554 555 556 557 558 559 560 561 562 563 564 |
static inline int err_block_err(int ret) { if (ret && ret != -ENOSPC && ret != -ENODATA && ret != -EAGAIN) return 1; return 0; } static ssize_t bsg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) { struct bsg_device *bd = file->private_data; int ret; ssize_t bytes_read; |
9e69fbb53
|
565 566 |
dprintk("%s: read %Zd bytes ", bd->name, count); |
3d6392cfb
|
567 568 |
bsg_set_block(bd, file); |
0b07de85a
|
569 |
|
3d6392cfb
|
570 |
bytes_read = 0; |
e7d721732
|
571 |
ret = __bsg_read(buf, count, bd, NULL, &bytes_read); |
3d6392cfb
|
572 573 574 575 576 577 578 |
*ppos = bytes_read; if (!bytes_read || (bytes_read && err_block_err(ret))) bytes_read = ret; return bytes_read; } |
25fd16430
|
579 |
static int __bsg_write(struct bsg_device *bd, const char __user *buf, |
aeb5d7270
|
580 581 |
size_t count, ssize_t *bytes_written, fmode_t has_write_perm) |
3d6392cfb
|
582 583 584 585 |
{ struct bsg_command *bc; struct request *rq; int ret, nr_commands; |
70e36ecea
|
586 |
if (count % sizeof(struct sg_io_v4)) |
3d6392cfb
|
587 |
return -EINVAL; |
70e36ecea
|
588 |
nr_commands = count / sizeof(struct sg_io_v4); |
3d6392cfb
|
589 590 591 592 |
rq = NULL; bc = NULL; ret = 0; while (nr_commands) { |
165125e1e
|
593 |
struct request_queue *q = bd->queue; |
3d6392cfb
|
594 |
|
e7d721732
|
595 |
bc = bsg_alloc_command(bd); |
3d6392cfb
|
596 597 598 599 600 |
if (IS_ERR(bc)) { ret = PTR_ERR(bc); bc = NULL; break; } |
3d6392cfb
|
601 602 603 604 605 606 607 608 |
if (copy_from_user(&bc->hdr, buf, sizeof(bc->hdr))) { ret = -EFAULT; break; } /* * get a request, fill in the blanks, and add to request queue */ |
c1c201200
|
609 |
rq = bsg_map_hdr(bd, &bc->hdr, has_write_perm, bc->sense); |
3d6392cfb
|
610 611 612 613 614 615 616 617 618 619 |
if (IS_ERR(rq)) { ret = PTR_ERR(rq); rq = NULL; break; } bsg_add_command(bd, q, bc, rq); bc = NULL; rq = NULL; nr_commands--; |
70e36ecea
|
620 |
buf += sizeof(struct sg_io_v4); |
25fd16430
|
621 |
*bytes_written += sizeof(struct sg_io_v4); |
3d6392cfb
|
622 |
} |
3d6392cfb
|
623 624 625 626 627 628 629 630 631 632 |
if (bc) bsg_free_command(bc); return ret; } static ssize_t bsg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos) { struct bsg_device *bd = file->private_data; |
25fd16430
|
633 |
ssize_t bytes_written; |
3d6392cfb
|
634 |
int ret; |
9e69fbb53
|
635 636 |
dprintk("%s: write %Zd bytes ", bd->name, count); |
3d6392cfb
|
637 638 |
bsg_set_block(bd, file); |
3d6392cfb
|
639 |
|
25fd16430
|
640 |
bytes_written = 0; |
abf543937
|
641 642 |
ret = __bsg_write(bd, buf, count, &bytes_written, file->f_mode & FMODE_WRITE); |
25fd16430
|
643 |
*ppos = bytes_written; |
3d6392cfb
|
644 645 646 647 |
/* * return bytes written on non-fatal errors */ |
25fd16430
|
648 649 |
if (!bytes_written || (bytes_written && err_block_err(ret))) bytes_written = ret; |
3d6392cfb
|
650 |
|
25fd16430
|
651 652 653 |
dprintk("%s: returning %Zd ", bd->name, bytes_written); return bytes_written; |
3d6392cfb
|
654 |
} |
3d6392cfb
|
655 656 |
static struct bsg_device *bsg_alloc_device(void) { |
3d6392cfb
|
657 |
struct bsg_device *bd; |
3d6392cfb
|
658 659 660 661 662 663 |
bd = kzalloc(sizeof(struct bsg_device), GFP_KERNEL); if (unlikely(!bd)) return NULL; spin_lock_init(&bd->lock); |
5309cb38d
|
664 |
bd->max_queue = BSG_DEFAULT_CMDS; |
3d6392cfb
|
665 666 667 668 669 670 671 672 |
INIT_LIST_HEAD(&bd->busy_list); INIT_LIST_HEAD(&bd->done_list); INIT_HLIST_NODE(&bd->dev_list); init_waitqueue_head(&bd->wq_free); init_waitqueue_head(&bd->wq_done); return bd; |
3d6392cfb
|
673 |
} |
97f46ae45
|
674 675 676 677 |
static void bsg_kref_release_function(struct kref *kref) { struct bsg_class_device *bcd = container_of(kref, struct bsg_class_device, ref); |
8df5fc042
|
678 |
struct device *parent = bcd->parent; |
97f46ae45
|
679 680 681 |
if (bcd->release) bcd->release(bcd->parent); |
8df5fc042
|
682 |
put_device(parent); |
97f46ae45
|
683 |
} |
3d6392cfb
|
684 685 |
static int bsg_put_device(struct bsg_device *bd) { |
97f46ae45
|
686 687 |
int ret = 0, do_free; struct request_queue *q = bd->queue; |
3d6392cfb
|
688 689 |
mutex_lock(&bsg_mutex); |
97f46ae45
|
690 |
do_free = atomic_dec_and_test(&bd->ref_count); |
3f27e3ed1
|
691 692 |
if (!do_free) { mutex_unlock(&bsg_mutex); |
3d6392cfb
|
693 |
goto out; |
3f27e3ed1
|
694 695 696 697 |
} hlist_del(&bd->dev_list); mutex_unlock(&bsg_mutex); |
3d6392cfb
|
698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 |
dprintk("%s: tearing down ", bd->name); /* * close can always block */ set_bit(BSG_F_BLOCK, &bd->flags); /* * correct error detection baddies here again. it's the responsibility * of the app to properly reap commands before close() if it wants * fool-proof error detection */ ret = bsg_complete_all_commands(bd); |
5309cb38d
|
713 |
kfree(bd); |
3d6392cfb
|
714 |
out: |
97f46ae45
|
715 716 717 |
kref_put(&q->bsg_dev.ref, bsg_kref_release_function); if (do_free) blk_put_queue(q); |
3d6392cfb
|
718 719 720 721 |
return ret; } static struct bsg_device *bsg_add_device(struct inode *inode, |
d351af01b
|
722 |
struct request_queue *rq, |
3d6392cfb
|
723 724 |
struct file *file) { |
25fd16430
|
725 |
struct bsg_device *bd; |
c3ff1b90d
|
726 |
int ret; |
3d6392cfb
|
727 728 729 |
#ifdef BSG_DEBUG unsigned char buf[32]; #endif |
c3ff1b90d
|
730 731 732 |
ret = blk_get_queue(rq); if (ret) return ERR_PTR(-ENXIO); |
3d6392cfb
|
733 734 |
bd = bsg_alloc_device(); |
c3ff1b90d
|
735 736 |
if (!bd) { blk_put_queue(rq); |
3d6392cfb
|
737 |
return ERR_PTR(-ENOMEM); |
c3ff1b90d
|
738 |
} |
3d6392cfb
|
739 |
|
d351af01b
|
740 |
bd->queue = rq; |
0b07de85a
|
741 |
|
3d6392cfb
|
742 743 744 |
bsg_set_block(bd, file); atomic_set(&bd->ref_count, 1); |
3d6392cfb
|
745 |
mutex_lock(&bsg_mutex); |
842ea771c
|
746 |
hlist_add_head(&bd->dev_list, bsg_dev_idx_hash(iminor(inode))); |
3d6392cfb
|
747 |
|
3ada8b7e9
|
748 |
strncpy(bd->name, dev_name(rq->bsg_dev.class_dev), sizeof(bd->name) - 1); |
3d6392cfb
|
749 750 |
dprintk("bound to <%s>, max queue %d ", |
9e69fbb53
|
751 |
format_dev_t(buf, inode->i_rdev), bd->max_queue); |
3d6392cfb
|
752 753 754 755 |
mutex_unlock(&bsg_mutex); return bd; } |
842ea771c
|
756 |
static struct bsg_device *__bsg_get_device(int minor, struct request_queue *q) |
3d6392cfb
|
757 |
{ |
43ac9e62c
|
758 |
struct bsg_device *bd; |
3d6392cfb
|
759 760 761 |
struct hlist_node *entry; mutex_lock(&bsg_mutex); |
43ac9e62c
|
762 |
hlist_for_each_entry(bd, entry, bsg_dev_idx_hash(minor), dev_list) { |
842ea771c
|
763 |
if (bd->queue == q) { |
3d6392cfb
|
764 |
atomic_inc(&bd->ref_count); |
43ac9e62c
|
765 |
goto found; |
3d6392cfb
|
766 |
} |
3d6392cfb
|
767 |
} |
43ac9e62c
|
768 769 |
bd = NULL; found: |
3d6392cfb
|
770 771 772 773 774 775 |
mutex_unlock(&bsg_mutex); return bd; } static struct bsg_device *bsg_get_device(struct inode *inode, struct file *file) { |
598443a21
|
776 777 |
struct bsg_device *bd; struct bsg_class_device *bcd; |
3d6392cfb
|
778 |
|
3d6392cfb
|
779 780 781 |
/* * find the class device */ |
3d6392cfb
|
782 |
mutex_lock(&bsg_mutex); |
598443a21
|
783 |
bcd = idr_find(&bsg_minor_idr, iminor(inode)); |
d45ac4fa8
|
784 |
if (bcd) |
97f46ae45
|
785 |
kref_get(&bcd->ref); |
3d6392cfb
|
786 787 788 789 |
mutex_unlock(&bsg_mutex); if (!bcd) return ERR_PTR(-ENODEV); |
842ea771c
|
790 |
bd = __bsg_get_device(iminor(inode), bcd->queue); |
d45ac4fa8
|
791 792 793 794 795 |
if (bd) return bd; bd = bsg_add_device(inode, bcd->queue, file); if (IS_ERR(bd)) |
97f46ae45
|
796 |
kref_put(&bcd->ref, bsg_kref_release_function); |
d45ac4fa8
|
797 798 |
return bd; |
3d6392cfb
|
799 800 801 802 |
} static int bsg_open(struct inode *inode, struct file *file) { |
75bd2ef14
|
803 804 805 806 807 |
struct bsg_device *bd; lock_kernel(); bd = bsg_get_device(inode, file); unlock_kernel(); |
3d6392cfb
|
808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 |
if (IS_ERR(bd)) return PTR_ERR(bd); file->private_data = bd; return 0; } static int bsg_release(struct inode *inode, struct file *file) { struct bsg_device *bd = file->private_data; file->private_data = NULL; return bsg_put_device(bd); } static unsigned int bsg_poll(struct file *file, poll_table *wait) { struct bsg_device *bd = file->private_data; unsigned int mask = 0; poll_wait(file, &bd->wq_done, wait); poll_wait(file, &bd->wq_free, wait); spin_lock_irq(&bd->lock); if (!list_empty(&bd->done_list)) mask |= POLLIN | POLLRDNORM; if (bd->queued_cmds >= bd->max_queue) mask |= POLLOUT; spin_unlock_irq(&bd->lock); return mask; } |
25fd16430
|
841 |
static long bsg_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
3d6392cfb
|
842 843 844 |
{ struct bsg_device *bd = file->private_data; int __user *uarg = (int __user *) arg; |
2d507a01d
|
845 |
int ret; |
3d6392cfb
|
846 |
|
3d6392cfb
|
847 848 849 850 851 852 |
switch (cmd) { /* * our own ioctls */ case SG_GET_COMMAND_Q: return put_user(bd->max_queue, uarg); |
5309cb38d
|
853 |
case SG_SET_COMMAND_Q: { |
3d6392cfb
|
854 855 856 857 |
int queue; if (get_user(queue, uarg)) return -EFAULT; |
5309cb38d
|
858 |
if (queue < 1) |
3d6392cfb
|
859 |
return -EINVAL; |
5309cb38d
|
860 |
spin_lock_irq(&bd->lock); |
3d6392cfb
|
861 |
bd->max_queue = queue; |
5309cb38d
|
862 |
spin_unlock_irq(&bd->lock); |
3d6392cfb
|
863 864 865 866 867 868 869 870 871 872 873 874 875 876 |
return 0; } /* * SCSI/sg ioctls */ case SG_GET_VERSION_NUM: case SCSI_IOCTL_GET_IDLUN: case SCSI_IOCTL_GET_BUS_NUMBER: case SG_SET_TIMEOUT: case SG_GET_TIMEOUT: case SG_GET_RESERVED_SIZE: case SG_SET_RESERVED_SIZE: case SG_EMULATED_HOST: |
3d6392cfb
|
877 878 |
case SCSI_IOCTL_SEND_COMMAND: { void __user *uarg = (void __user *) arg; |
74f3c8aff
|
879 |
return scsi_cmd_ioctl(bd->queue, NULL, file->f_mode, cmd, uarg); |
3d6392cfb
|
880 |
} |
10e8855b9
|
881 882 |
case SG_IO: { struct request *rq; |
2c9ecdf40
|
883 |
struct bio *bio, *bidi_bio = NULL; |
10e8855b9
|
884 |
struct sg_io_v4 hdr; |
05378940c
|
885 |
int at_head; |
c1c201200
|
886 |
u8 sense[SCSI_SENSE_BUFFERSIZE]; |
10e8855b9
|
887 888 889 |
if (copy_from_user(&hdr, uarg, sizeof(hdr))) return -EFAULT; |
c1c201200
|
890 |
rq = bsg_map_hdr(bd, &hdr, file->f_mode & FMODE_WRITE, sense); |
10e8855b9
|
891 892 893 894 |
if (IS_ERR(rq)) return PTR_ERR(rq); bio = rq->bio; |
2c9ecdf40
|
895 896 |
if (rq->next_rq) bidi_bio = rq->next_rq->bio; |
05378940c
|
897 898 899 |
at_head = (0 == (hdr.flags & BSG_FLAG_Q_AT_TAIL)); blk_execute_rq(bd->queue, NULL, rq, at_head); |
2d507a01d
|
900 |
ret = blk_complete_sgv4_hdr_rq(rq, &hdr, bio, bidi_bio); |
10e8855b9
|
901 902 903 |
if (copy_to_user(uarg, &hdr, sizeof(hdr))) return -EFAULT; |
b711afa69
|
904 |
|
2d507a01d
|
905 |
return ret; |
10e8855b9
|
906 |
} |
3d6392cfb
|
907 908 909 910 911 912 913 914 915 916 917 |
/* * block device ioctls */ default: #if 0 return ioctl_by_bdev(bd->bdev, cmd, arg); #else return -ENOTTY; #endif } } |
7344be053
|
918 |
static const struct file_operations bsg_fops = { |
3d6392cfb
|
919 920 921 922 923 |
.read = bsg_read, .write = bsg_write, .poll = bsg_poll, .open = bsg_open, .release = bsg_release, |
25fd16430
|
924 |
.unlocked_ioctl = bsg_ioctl, |
3d6392cfb
|
925 926 |
.owner = THIS_MODULE, }; |
d351af01b
|
927 |
void bsg_unregister_queue(struct request_queue *q) |
3d6392cfb
|
928 |
{ |
d351af01b
|
929 |
struct bsg_class_device *bcd = &q->bsg_dev; |
3d6392cfb
|
930 |
|
df468820b
|
931 932 |
if (!bcd->class_dev) return; |
3d6392cfb
|
933 934 |
mutex_lock(&bsg_mutex); |
598443a21
|
935 |
idr_remove(&bsg_minor_idr, bcd->minor); |
d351af01b
|
936 |
sysfs_remove_link(&q->kobj, "bsg"); |
ee959b00c
|
937 |
device_unregister(bcd->class_dev); |
3d6392cfb
|
938 |
bcd->class_dev = NULL; |
97f46ae45
|
939 |
kref_put(&bcd->ref, bsg_kref_release_function); |
3d6392cfb
|
940 941 |
mutex_unlock(&bsg_mutex); } |
4cf0723ac
|
942 |
EXPORT_SYMBOL_GPL(bsg_unregister_queue); |
3d6392cfb
|
943 |
|
97f46ae45
|
944 945 |
int bsg_register_queue(struct request_queue *q, struct device *parent, const char *name, void (*release)(struct device *)) |
3d6392cfb
|
946 |
{ |
598443a21
|
947 |
struct bsg_class_device *bcd; |
3d6392cfb
|
948 |
dev_t dev; |
598443a21
|
949 |
int ret, minor; |
ee959b00c
|
950 |
struct device *class_dev = NULL; |
39dca558a
|
951 952 953 954 955 |
const char *devname; if (name) devname = name; else |
3ada8b7e9
|
956 |
devname = dev_name(parent); |
3d6392cfb
|
957 958 959 960 961 962 |
/* * we need a proper transport to send commands, not a stacked device */ if (!q->request_fn) return 0; |
d351af01b
|
963 |
bcd = &q->bsg_dev; |
3d6392cfb
|
964 |
memset(bcd, 0, sizeof(*bcd)); |
3d6392cfb
|
965 966 |
mutex_lock(&bsg_mutex); |
292b7f271
|
967 |
|
598443a21
|
968 969 970 971 |
ret = idr_pre_get(&bsg_minor_idr, GFP_KERNEL); if (!ret) { ret = -ENOMEM; goto unlock; |
292b7f271
|
972 |
} |
598443a21
|
973 974 975 |
ret = idr_get_new(&bsg_minor_idr, bcd, &minor); if (ret < 0) goto unlock; |
292b7f271
|
976 |
|
598443a21
|
977 978 979 980 981 982 983 984 |
if (minor >= BSG_MAX_DEVS) { printk(KERN_ERR "bsg: too many bsg devices "); ret = -EINVAL; goto remove_idr; } bcd->minor = minor; |
d351af01b
|
985 |
bcd->queue = q; |
97f46ae45
|
986 987 988 |
bcd->parent = get_device(parent); bcd->release = release; kref_init(&bcd->ref); |
46f6ef4af
|
989 |
dev = MKDEV(bsg_major, bcd->minor); |
1ff9f542e
|
990 |
class_dev = device_create(bsg_class, parent, dev, NULL, "%s", devname); |
4e2872d6b
|
991 992 |
if (IS_ERR(class_dev)) { ret = PTR_ERR(class_dev); |
598443a21
|
993 |
goto put_dev; |
4e2872d6b
|
994 995 |
} bcd->class_dev = class_dev; |
abce891a1
|
996 |
if (q->kobj.sd) { |
4e2872d6b
|
997 998 |
ret = sysfs_create_link(&q->kobj, &bcd->class_dev->kobj, "bsg"); if (ret) |
598443a21
|
999 |
goto unregister_class_dev; |
4e2872d6b
|
1000 |
} |
3d6392cfb
|
1001 1002 |
mutex_unlock(&bsg_mutex); return 0; |
6826ee4fd
|
1003 |
|
598443a21
|
1004 |
unregister_class_dev: |
ee959b00c
|
1005 |
device_unregister(class_dev); |
598443a21
|
1006 |
put_dev: |
97f46ae45
|
1007 |
put_device(parent); |
598443a21
|
1008 1009 1010 |
remove_idr: idr_remove(&bsg_minor_idr, minor); unlock: |
264a04721
|
1011 |
mutex_unlock(&bsg_mutex); |
4e2872d6b
|
1012 1013 |
return ret; } |
4cf0723ac
|
1014 |
EXPORT_SYMBOL_GPL(bsg_register_queue); |
4e2872d6b
|
1015 |
|
7e7654a92
|
1016 |
static struct cdev bsg_cdev; |
292b7f271
|
1017 |
|
2bdf91491
|
1018 1019 1020 1021 |
static char *bsg_nodename(struct device *dev) { return kasprintf(GFP_KERNEL, "bsg/%s", dev_name(dev)); } |
3d6392cfb
|
1022 1023 1024 |
static int __init bsg_init(void) { int ret, i; |
46f6ef4af
|
1025 |
dev_t devid; |
3d6392cfb
|
1026 |
|
5309cb38d
|
1027 |
bsg_cmd_cachep = kmem_cache_create("bsg_cmd", |
20c2df83d
|
1028 |
sizeof(struct bsg_command), 0, 0, NULL); |
5309cb38d
|
1029 1030 1031 1032 1033 |
if (!bsg_cmd_cachep) { printk(KERN_ERR "bsg: failed creating slab cache "); return -ENOMEM; } |
25fd16430
|
1034 |
for (i = 0; i < BSG_LIST_ARRAY_SIZE; i++) |
3d6392cfb
|
1035 1036 1037 |
INIT_HLIST_HEAD(&bsg_device_list[i]); bsg_class = class_create(THIS_MODULE, "bsg"); |
5309cb38d
|
1038 |
if (IS_ERR(bsg_class)) { |
9b9f770ce
|
1039 1040 |
ret = PTR_ERR(bsg_class); goto destroy_kmemcache; |
5309cb38d
|
1041 |
} |
2bdf91491
|
1042 |
bsg_class->nodename = bsg_nodename; |
3d6392cfb
|
1043 |
|
46f6ef4af
|
1044 |
ret = alloc_chrdev_region(&devid, 0, BSG_MAX_DEVS, "bsg"); |
9b9f770ce
|
1045 1046 |
if (ret) goto destroy_bsg_class; |
292b7f271
|
1047 |
|
46f6ef4af
|
1048 |
bsg_major = MAJOR(devid); |
292b7f271
|
1049 |
cdev_init(&bsg_cdev, &bsg_fops); |
46f6ef4af
|
1050 |
ret = cdev_add(&bsg_cdev, MKDEV(bsg_major, 0), BSG_MAX_DEVS); |
9b9f770ce
|
1051 1052 |
if (ret) goto unregister_chrdev; |
3d6392cfb
|
1053 |
|
5d3a8cd34
|
1054 |
printk(KERN_INFO BSG_DESCRIPTION " version " BSG_VERSION |
0ed081ce2
|
1055 1056 |
" loaded (major %d) ", bsg_major); |
3d6392cfb
|
1057 |
return 0; |
9b9f770ce
|
1058 1059 1060 1061 1062 1063 1064 |
unregister_chrdev: unregister_chrdev_region(MKDEV(bsg_major, 0), BSG_MAX_DEVS); destroy_bsg_class: class_destroy(bsg_class); destroy_kmemcache: kmem_cache_destroy(bsg_cmd_cachep); return ret; |
3d6392cfb
|
1065 1066 1067 |
} MODULE_AUTHOR("Jens Axboe"); |
0ed081ce2
|
1068 |
MODULE_DESCRIPTION(BSG_DESCRIPTION); |
3d6392cfb
|
1069 |
MODULE_LICENSE("GPL"); |
4e2872d6b
|
1070 |
device_initcall(bsg_init); |