aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--block/Kconfig8
-rw-r--r--block/Makefile1
-rw-r--r--block/bsg.c1114
-rw-r--r--block/ll_rw_blk.c1
-rw-r--r--block/scsi_ioctl.c163
-rw-r--r--drivers/block/ub.c2
-rw-r--r--drivers/cdrom/cdrom.c3
-rw-r--r--drivers/ide/ide-floppy.c29
-rw-r--r--drivers/ide/ide.c10
-rw-r--r--drivers/scsi/sd.c2
-rw-r--r--drivers/scsi/st.c3
-rw-r--r--include/linux/blkdev.h26
-rw-r--r--include/linux/bsg.h70
13 files changed, 1341 insertions, 91 deletions
diff --git a/block/Kconfig b/block/Kconfig
index 285935134bcd..1d16b08e1506 100644
--- a/block/Kconfig
+++ b/block/Kconfig
@@ -51,4 +51,12 @@ config LSF
51 51
52endif # BLOCK 52endif # BLOCK
53 53
54config BLK_DEV_BSG
55 bool "Block layer SG support"
56 depends on SCSI && EXPERIMENTAL
57 default y
58 ---help---
59 Saying Y here will enable generic SG (SCSI generic) v4
60 support for any block device.
61
54source block/Kconfig.iosched 62source block/Kconfig.iosched
diff --git a/block/Makefile b/block/Makefile
index 4b84d0d5947b..959feeb253be 100644
--- a/block/Makefile
+++ b/block/Makefile
@@ -4,6 +4,7 @@
4 4
5obj-$(CONFIG_BLOCK) := elevator.o ll_rw_blk.o ioctl.o genhd.o scsi_ioctl.o 5obj-$(CONFIG_BLOCK) := elevator.o ll_rw_blk.o ioctl.o genhd.o scsi_ioctl.o
6 6
7obj-$(CONFIG_BLK_DEV_BSG) += bsg.o
7obj-$(CONFIG_IOSCHED_NOOP) += noop-iosched.o 8obj-$(CONFIG_IOSCHED_NOOP) += noop-iosched.o
8obj-$(CONFIG_IOSCHED_AS) += as-iosched.o 9obj-$(CONFIG_IOSCHED_AS) += as-iosched.o
9obj-$(CONFIG_IOSCHED_DEADLINE) += deadline-iosched.o 10obj-$(CONFIG_IOSCHED_DEADLINE) += deadline-iosched.o
diff --git a/block/bsg.c b/block/bsg.c
new file mode 100644
index 000000000000..461c9f56f3ee
--- /dev/null
+++ b/block/bsg.c
@@ -0,0 +1,1114 @@
1/*
2 * bsg.c - block layer implementation of the sg v3 interface
3 *
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 */
12/*
13 * TODO
14 * - Should this get merged, block/scsi_ioctl.c will be migrated into
15 * this file. To keep maintenance down, it's easier to have them
16 * seperated right now.
17 *
18 */
19#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/file.h>
22#include <linux/blkdev.h>
23#include <linux/poll.h>
24#include <linux/cdev.h>
25#include <linux/percpu.h>
26#include <linux/uio.h>
27#include <linux/bsg.h>
28
29#include <scsi/scsi.h>
30#include <scsi/scsi_ioctl.h>
31#include <scsi/scsi_cmnd.h>
32#include <scsi/scsi_device.h>
33#include <scsi/scsi_driver.h>
34#include <scsi/sg.h>
35
36static char bsg_version[] = "block layer sg (bsg) 0.4";
37
38struct bsg_device {
39 request_queue_t *queue;
40 spinlock_t lock;
41 struct list_head busy_list;
42 struct list_head done_list;
43 struct hlist_node dev_list;
44 atomic_t ref_count;
45 int minor;
46 int queued_cmds;
47 int done_cmds;
48 wait_queue_head_t wq_done;
49 wait_queue_head_t wq_free;
50 char name[BUS_ID_SIZE];
51 int max_queue;
52 unsigned long flags;
53};
54
55enum {
56 BSG_F_BLOCK = 1,
57 BSG_F_WRITE_PERM = 2,
58};
59
60#define BSG_DEFAULT_CMDS 64
61#define BSG_MAX_DEVS 32768
62
63#undef BSG_DEBUG
64
65#ifdef BSG_DEBUG
66#define dprintk(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ##args)
67#else
68#define dprintk(fmt, args...)
69#endif
70
71#define list_entry_bc(entry) list_entry((entry), struct bsg_command, list)
72
73/*
74 * just for testing
75 */
76#define BSG_MAJOR (240)
77
78static DEFINE_MUTEX(bsg_mutex);
79static int bsg_device_nr, bsg_minor_idx;
80
81#define BSG_LIST_SIZE (8)
82#define bsg_list_idx(minor) ((minor) & (BSG_LIST_SIZE - 1))
83static struct hlist_head bsg_device_list[BSG_LIST_SIZE];
84
85static struct class *bsg_class;
86static LIST_HEAD(bsg_class_list);
87
88static struct kmem_cache *bsg_cmd_cachep;
89
90/*
91 * our internal command type
92 */
93struct bsg_command {
94 struct bsg_device *bd;
95 struct list_head list;
96 struct request *rq;
97 struct bio *bio;
98 struct bio *bidi_bio;
99 int err;
100 struct sg_io_v4 hdr;
101 struct sg_io_v4 __user *uhdr;
102 char sense[SCSI_SENSE_BUFFERSIZE];
103};
104
105static void bsg_free_command(struct bsg_command *bc)
106{
107 struct bsg_device *bd = bc->bd;
108 unsigned long flags;
109
110 kmem_cache_free(bsg_cmd_cachep, bc);
111
112 spin_lock_irqsave(&bd->lock, flags);
113 bd->queued_cmds--;
114 spin_unlock_irqrestore(&bd->lock, flags);
115
116 wake_up(&bd->wq_free);
117}
118
119static struct bsg_command *bsg_alloc_command(struct bsg_device *bd)
120{
121 struct bsg_command *bc = ERR_PTR(-EINVAL);
122
123 spin_lock_irq(&bd->lock);
124
125 if (bd->queued_cmds >= bd->max_queue)
126 goto out;
127
128 bd->queued_cmds++;
129 spin_unlock_irq(&bd->lock);
130
131 bc = kmem_cache_alloc(bsg_cmd_cachep, GFP_USER);
132 if (unlikely(!bc)) {
133 spin_lock_irq(&bd->lock);
134 bd->queued_cmds--;
135 bc = ERR_PTR(-ENOMEM);
136 goto out;
137 }
138
139 memset(bc, 0, sizeof(*bc));
140 bc->bd = bd;
141 INIT_LIST_HEAD(&bc->list);
142 dprintk("%s: returning free cmd %p\n", bd->name, bc);
143 return bc;
144out:
145 spin_unlock_irq(&bd->lock);
146 return bc;
147}
148
149static inline void
150bsg_del_done_cmd(struct bsg_device *bd, struct bsg_command *bc)
151{
152 bd->done_cmds--;
153 list_del(&bc->list);
154}
155
156static inline void
157bsg_add_done_cmd(struct bsg_device *bd, struct bsg_command *bc)
158{
159 bd->done_cmds++;
160 list_add_tail(&bc->list, &bd->done_list);
161 wake_up(&bd->wq_done);
162}
163
164static inline int bsg_io_schedule(struct bsg_device *bd, int state)
165{
166 DEFINE_WAIT(wait);
167 int ret = 0;
168
169 spin_lock_irq(&bd->lock);
170
171 BUG_ON(bd->done_cmds > bd->queued_cmds);
172
173 /*
174 * -ENOSPC or -ENODATA? I'm going for -ENODATA, meaning "I have no
175 * work to do", even though we return -ENOSPC after this same test
176 * during bsg_write() -- there, it means our buffer can't have more
177 * bsg_commands added to it, thus has no space left.
178 */
179 if (bd->done_cmds == bd->queued_cmds) {
180 ret = -ENODATA;
181 goto unlock;
182 }
183
184 if (!test_bit(BSG_F_BLOCK, &bd->flags)) {
185 ret = -EAGAIN;
186 goto unlock;
187 }
188
189 prepare_to_wait(&bd->wq_done, &wait, state);
190 spin_unlock_irq(&bd->lock);
191 io_schedule();
192 finish_wait(&bd->wq_done, &wait);
193
194 if ((state == TASK_INTERRUPTIBLE) && signal_pending(current))
195 ret = -ERESTARTSYS;
196
197 return ret;
198unlock:
199 spin_unlock_irq(&bd->lock);
200 return ret;
201}
202
203static int blk_fill_sgv4_hdr_rq(request_queue_t *q, struct request *rq,
204 struct sg_io_v4 *hdr, int has_write_perm)
205{
206 memset(rq->cmd, 0, BLK_MAX_CDB); /* ATAPI hates garbage after CDB */
207
208 if (copy_from_user(rq->cmd, (void *)(unsigned long)hdr->request,
209 hdr->request_len))
210 return -EFAULT;
211
212 if (hdr->subprotocol == BSG_SUB_PROTOCOL_SCSI_CMD) {
213 if (blk_verify_command(rq->cmd, has_write_perm))
214 return -EPERM;
215 } else if (!capable(CAP_SYS_RAWIO))
216 return -EPERM;
217
218 /*
219 * fill in request structure
220 */
221 rq->cmd_len = hdr->request_len;
222 rq->cmd_type = REQ_TYPE_BLOCK_PC;
223
224 rq->timeout = (hdr->timeout * HZ) / 1000;
225 if (!rq->timeout)
226 rq->timeout = q->sg_timeout;
227 if (!rq->timeout)
228 rq->timeout = BLK_DEFAULT_SG_TIMEOUT;
229
230 return 0;
231}
232
233/*
234 * Check if sg_io_v4 from user is allowed and valid
235 */
236static int
237bsg_validate_sgv4_hdr(request_queue_t *q, struct sg_io_v4 *hdr, int *rw)
238{
239 int ret = 0;
240
241 if (hdr->guard != 'Q')
242 return -EINVAL;
243 if (hdr->request_len > BLK_MAX_CDB)
244 return -EINVAL;
245 if (hdr->dout_xfer_len > (q->max_sectors << 9) ||
246 hdr->din_xfer_len > (q->max_sectors << 9))
247 return -EIO;
248
249 switch (hdr->protocol) {
250 case BSG_PROTOCOL_SCSI:
251 switch (hdr->subprotocol) {
252 case BSG_SUB_PROTOCOL_SCSI_CMD:
253 case BSG_SUB_PROTOCOL_SCSI_TRANSPORT:
254 break;
255 default:
256 ret = -EINVAL;
257 }
258 break;
259 default:
260 ret = -EINVAL;
261 }
262
263 *rw = hdr->dout_xfer_len ? WRITE : READ;
264 return ret;
265}
266
267/*
268 * map sg_io_v4 to a request.
269 */
270static struct request *
271bsg_map_hdr(struct bsg_device *bd, struct sg_io_v4 *hdr)
272{
273 request_queue_t *q = bd->queue;
274 struct request *rq, *next_rq = NULL;
275 int ret, rw = 0; /* shut up gcc */
276 unsigned int dxfer_len;
277 void *dxferp = NULL;
278
279 dprintk("map hdr %llx/%u %llx/%u\n", (unsigned long long) hdr->dout_xferp,
280 hdr->dout_xfer_len, (unsigned long long) hdr->din_xferp,
281 hdr->din_xfer_len);
282
283 ret = bsg_validate_sgv4_hdr(q, hdr, &rw);
284 if (ret)
285 return ERR_PTR(ret);
286
287 /*
288 * map scatter-gather elements seperately and string them to request
289 */
290 rq = blk_get_request(q, rw, GFP_KERNEL);
291 if (!rq)
292 return ERR_PTR(-ENOMEM);
293 ret = blk_fill_sgv4_hdr_rq(q, rq, hdr, test_bit(BSG_F_WRITE_PERM,
294 &bd->flags));
295 if (ret)
296 goto out;
297
298 if (rw == WRITE && hdr->din_xfer_len) {
299 if (!test_bit(QUEUE_FLAG_BIDI, &q->queue_flags)) {
300 ret = -EOPNOTSUPP;
301 goto out;
302 }
303
304 next_rq = blk_get_request(q, READ, GFP_KERNEL);
305 if (!next_rq) {
306 ret = -ENOMEM;
307 goto out;
308 }
309 rq->next_rq = next_rq;
310
311 dxferp = (void*)(unsigned long)hdr->din_xferp;
312 ret = blk_rq_map_user(q, next_rq, dxferp, hdr->din_xfer_len);
313 if (ret)
314 goto out;
315 }
316
317 if (hdr->dout_xfer_len) {
318 dxfer_len = hdr->dout_xfer_len;
319 dxferp = (void*)(unsigned long)hdr->dout_xferp;
320 } else if (hdr->din_xfer_len) {
321 dxfer_len = hdr->din_xfer_len;
322 dxferp = (void*)(unsigned long)hdr->din_xferp;
323 } else
324 dxfer_len = 0;
325
326 if (dxfer_len) {
327 ret = blk_rq_map_user(q, rq, dxferp, dxfer_len);
328 if (ret)
329 goto out;
330 }
331 return rq;
332out:
333 blk_put_request(rq);
334 if (next_rq) {
335 blk_rq_unmap_user(next_rq->bio);
336 blk_put_request(next_rq);
337 }
338 return ERR_PTR(ret);
339}
340
341/*
342 * async completion call-back from the block layer, when scsi/ide/whatever
343 * calls end_that_request_last() on a request
344 */
345static void bsg_rq_end_io(struct request *rq, int uptodate)
346{
347 struct bsg_command *bc = rq->end_io_data;
348 struct bsg_device *bd = bc->bd;
349 unsigned long flags;
350
351 dprintk("%s: finished rq %p bc %p, bio %p stat %d\n",
352 bd->name, rq, bc, bc->bio, uptodate);
353
354 bc->hdr.duration = jiffies_to_msecs(jiffies - bc->hdr.duration);
355
356 spin_lock_irqsave(&bd->lock, flags);
357 list_del(&bc->list);
358 bsg_add_done_cmd(bd, bc);
359 spin_unlock_irqrestore(&bd->lock, flags);
360}
361
362/*
363 * do final setup of a 'bc' and submit the matching 'rq' to the block
364 * layer for io
365 */
366static void bsg_add_command(struct bsg_device *bd, request_queue_t *q,
367 struct bsg_command *bc, struct request *rq)
368{
369 rq->sense = bc->sense;
370 rq->sense_len = 0;
371
372 /*
373 * add bc command to busy queue and submit rq for io
374 */
375 bc->rq = rq;
376 bc->bio = rq->bio;
377 if (rq->next_rq)
378 bc->bidi_bio = rq->next_rq->bio;
379 bc->hdr.duration = jiffies;
380 spin_lock_irq(&bd->lock);
381 list_add_tail(&bc->list, &bd->busy_list);
382 spin_unlock_irq(&bd->lock);
383
384 dprintk("%s: queueing rq %p, bc %p\n", bd->name, rq, bc);
385
386 rq->end_io_data = bc;
387 blk_execute_rq_nowait(q, NULL, rq, 1, bsg_rq_end_io);
388}
389
390static inline struct bsg_command *bsg_next_done_cmd(struct bsg_device *bd)
391{
392 struct bsg_command *bc = NULL;
393
394 spin_lock_irq(&bd->lock);
395 if (bd->done_cmds) {
396 bc = list_entry_bc(bd->done_list.next);
397 bsg_del_done_cmd(bd, bc);
398 }
399 spin_unlock_irq(&bd->lock);
400
401 return bc;
402}
403
404/*
405 * Get a finished command from the done list
406 */
407static struct bsg_command *bsg_get_done_cmd(struct bsg_device *bd)
408{
409 struct bsg_command *bc;
410 int ret;
411
412 do {
413 bc = bsg_next_done_cmd(bd);
414 if (bc)
415 break;
416
417 if (!test_bit(BSG_F_BLOCK, &bd->flags)) {
418 bc = ERR_PTR(-EAGAIN);
419 break;
420 }
421
422 ret = wait_event_interruptible(bd->wq_done, bd->done_cmds);
423 if (ret) {
424 bc = ERR_PTR(-ERESTARTSYS);
425 break;
426 }
427 } while (1);
428
429 dprintk("%s: returning done %p\n", bd->name, bc);
430
431 return bc;
432}
433
434static int blk_complete_sgv4_hdr_rq(struct request *rq, struct sg_io_v4 *hdr,
435 struct bio *bio, struct bio *bidi_bio)
436{
437 int ret = 0;
438
439 dprintk("rq %p bio %p %u\n", rq, bio, rq->errors);
440 /*
441 * fill in all the output members
442 */
443 hdr->device_status = status_byte(rq->errors);
444 hdr->transport_status = host_byte(rq->errors);
445 hdr->driver_status = driver_byte(rq->errors);
446 hdr->info = 0;
447 if (hdr->device_status || hdr->transport_status || hdr->driver_status)
448 hdr->info |= SG_INFO_CHECK;
449 hdr->din_resid = rq->data_len;
450 hdr->response_len = 0;
451
452 if (rq->sense_len && hdr->response) {
453 int len = min((unsigned int) hdr->max_response_len,
454 rq->sense_len);
455
456 ret = copy_to_user((void*)(unsigned long)hdr->response,
457 rq->sense, len);
458 if (!ret)
459 hdr->response_len = len;
460 else
461 ret = -EFAULT;
462 }
463
464 if (rq->next_rq) {
465 blk_rq_unmap_user(bidi_bio);
466 blk_put_request(rq->next_rq);
467 }
468
469 blk_rq_unmap_user(bio);
470 blk_put_request(rq);
471
472 return ret;
473}
474
475static int bsg_complete_all_commands(struct bsg_device *bd)
476{
477 struct bsg_command *bc;
478 int ret, tret;
479
480 dprintk("%s: entered\n", bd->name);
481
482 set_bit(BSG_F_BLOCK, &bd->flags);
483
484 /*
485 * wait for all commands to complete
486 */
487 ret = 0;
488 do {
489 ret = bsg_io_schedule(bd, TASK_UNINTERRUPTIBLE);
490 /*
491 * look for -ENODATA specifically -- we'll sometimes get
492 * -ERESTARTSYS when we've taken a signal, but we can't
493 * return until we're done freeing the queue, so ignore
494 * it. The signal will get handled when we're done freeing
495 * the bsg_device.
496 */
497 } while (ret != -ENODATA);
498
499 /*
500 * discard done commands
501 */
502 ret = 0;
503 do {
504 spin_lock_irq(&bd->lock);
505 if (!bd->queued_cmds) {
506 spin_unlock_irq(&bd->lock);
507 break;
508 }
509 spin_unlock_irq(&bd->lock);
510
511 bc = bsg_get_done_cmd(bd);
512 if (IS_ERR(bc))
513 break;
514
515 tret = blk_complete_sgv4_hdr_rq(bc->rq, &bc->hdr, bc->bio,
516 bc->bidi_bio);
517 if (!ret)
518 ret = tret;
519
520 bsg_free_command(bc);
521 } while (1);
522
523 return ret;
524}
525
526static ssize_t
527__bsg_read(char __user *buf, size_t count, struct bsg_device *bd,
528 const struct iovec *iov, ssize_t *bytes_read)
529{
530 struct bsg_command *bc;
531 int nr_commands, ret;
532
533 if (count % sizeof(struct sg_io_v4))
534 return -EINVAL;
535
536 ret = 0;
537 nr_commands = count / sizeof(struct sg_io_v4);
538 while (nr_commands) {
539 bc = bsg_get_done_cmd(bd);
540 if (IS_ERR(bc)) {
541 ret = PTR_ERR(bc);
542 break;
543 }
544
545 /*
546 * this is the only case where we need to copy data back
547 * after completing the request. so do that here,
548 * bsg_complete_work() cannot do that for us
549 */
550 ret = blk_complete_sgv4_hdr_rq(bc->rq, &bc->hdr, bc->bio,
551 bc->bidi_bio);
552
553 if (copy_to_user(buf, (char *) &bc->hdr, sizeof(bc->hdr)))
554 ret = -EFAULT;
555
556 bsg_free_command(bc);
557
558 if (ret)
559 break;
560
561 buf += sizeof(struct sg_io_v4);
562 *bytes_read += sizeof(struct sg_io_v4);
563 nr_commands--;
564 }
565
566 return ret;
567}
568
569static inline void bsg_set_block(struct bsg_device *bd, struct file *file)
570{
571 if (file->f_flags & O_NONBLOCK)
572 clear_bit(BSG_F_BLOCK, &bd->flags);
573 else
574 set_bit(BSG_F_BLOCK, &bd->flags);
575}
576
577static inline void bsg_set_write_perm(struct bsg_device *bd, struct file *file)
578{
579 if (file->f_mode & FMODE_WRITE)
580 set_bit(BSG_F_WRITE_PERM, &bd->flags);
581 else
582 clear_bit(BSG_F_WRITE_PERM, &bd->flags);
583}
584
585static inline int err_block_err(int ret)
586{
587 if (ret && ret != -ENOSPC && ret != -ENODATA && ret != -EAGAIN)
588 return 1;
589
590 return 0;
591}
592
593static ssize_t
594bsg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
595{
596 struct bsg_device *bd = file->private_data;
597 int ret;
598 ssize_t bytes_read;
599
600 dprintk("%s: read %Zd bytes\n", bd->name, count);
601
602 bsg_set_block(bd, file);
603 bytes_read = 0;
604 ret = __bsg_read(buf, count, bd, NULL, &bytes_read);
605 *ppos = bytes_read;
606
607 if (!bytes_read || (bytes_read && err_block_err(ret)))
608 bytes_read = ret;
609
610 return bytes_read;
611}
612
613static ssize_t __bsg_write(struct bsg_device *bd, const char __user *buf,
614 size_t count, ssize_t *bytes_read)
615{
616 struct bsg_command *bc;
617 struct request *rq;
618 int ret, nr_commands;
619
620 if (count % sizeof(struct sg_io_v4))
621 return -EINVAL;
622
623 nr_commands = count / sizeof(struct sg_io_v4);
624 rq = NULL;
625 bc = NULL;
626 ret = 0;
627 while (nr_commands) {
628 request_queue_t *q = bd->queue;
629
630 bc = bsg_alloc_command(bd);
631 if (IS_ERR(bc)) {
632 ret = PTR_ERR(bc);
633 bc = NULL;
634 break;
635 }
636
637 bc->uhdr = (struct sg_io_v4 __user *) buf;
638 if (copy_from_user(&bc->hdr, buf, sizeof(bc->hdr))) {
639 ret = -EFAULT;
640 break;
641 }
642
643 /*
644 * get a request, fill in the blanks, and add to request queue
645 */
646 rq = bsg_map_hdr(bd, &bc->hdr);
647 if (IS_ERR(rq)) {
648 ret = PTR_ERR(rq);
649 rq = NULL;
650 break;
651 }
652
653 bsg_add_command(bd, q, bc, rq);
654 bc = NULL;
655 rq = NULL;
656 nr_commands--;
657 buf += sizeof(struct sg_io_v4);
658 *bytes_read += sizeof(struct sg_io_v4);
659 }
660
661 if (bc)
662 bsg_free_command(bc);
663
664 return ret;
665}
666
667static ssize_t
668bsg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
669{
670 struct bsg_device *bd = file->private_data;
671 ssize_t bytes_read;
672 int ret;
673
674 dprintk("%s: write %Zd bytes\n", bd->name, count);
675
676 bsg_set_block(bd, file);
677 bsg_set_write_perm(bd, file);
678
679 bytes_read = 0;
680 ret = __bsg_write(bd, buf, count, &bytes_read);
681 *ppos = bytes_read;
682
683 /*
684 * return bytes written on non-fatal errors
685 */
686 if (!bytes_read || (bytes_read && err_block_err(ret)))
687 bytes_read = ret;
688
689 dprintk("%s: returning %Zd\n", bd->name, bytes_read);
690 return bytes_read;
691}
692
693static struct bsg_device *bsg_alloc_device(void)
694{
695 struct bsg_device *bd;
696
697 bd = kzalloc(sizeof(struct bsg_device), GFP_KERNEL);
698 if (unlikely(!bd))
699 return NULL;
700
701 spin_lock_init(&bd->lock);
702
703 bd->max_queue = BSG_DEFAULT_CMDS;
704
705 INIT_LIST_HEAD(&bd->busy_list);
706 INIT_LIST_HEAD(&bd->done_list);
707 INIT_HLIST_NODE(&bd->dev_list);
708
709 init_waitqueue_head(&bd->wq_free);
710 init_waitqueue_head(&bd->wq_done);
711 return bd;
712}
713
714static int bsg_put_device(struct bsg_device *bd)
715{
716 int ret = 0;
717
718 mutex_lock(&bsg_mutex);
719
720 if (!atomic_dec_and_test(&bd->ref_count))
721 goto out;
722
723 dprintk("%s: tearing down\n", bd->name);
724
725 /*
726 * close can always block
727 */
728 set_bit(BSG_F_BLOCK, &bd->flags);
729
730 /*
731 * correct error detection baddies here again. it's the responsibility
732 * of the app to properly reap commands before close() if it wants
733 * fool-proof error detection
734 */
735 ret = bsg_complete_all_commands(bd);
736
737 blk_put_queue(bd->queue);
738 hlist_del(&bd->dev_list);
739 kfree(bd);
740out:
741 mutex_unlock(&bsg_mutex);
742 return ret;
743}
744
745static struct bsg_device *bsg_add_device(struct inode *inode,
746 struct request_queue *rq,
747 struct file *file)
748{
749 struct bsg_device *bd = NULL;
750#ifdef BSG_DEBUG
751 unsigned char buf[32];
752#endif
753
754 bd = bsg_alloc_device();
755 if (!bd)
756 return ERR_PTR(-ENOMEM);
757
758 bd->queue = rq;
759 kobject_get(&rq->kobj);
760 bsg_set_block(bd, file);
761
762 atomic_set(&bd->ref_count, 1);
763 bd->minor = iminor(inode);
764 mutex_lock(&bsg_mutex);
765 hlist_add_head(&bd->dev_list, &bsg_device_list[bsg_list_idx(bd->minor)]);
766
767 strncpy(bd->name, rq->bsg_dev.class_dev->class_id, sizeof(bd->name) - 1);
768 dprintk("bound to <%s>, max queue %d\n",
769 format_dev_t(buf, inode->i_rdev), bd->max_queue);
770
771 mutex_unlock(&bsg_mutex);
772 return bd;
773}
774
775static struct bsg_device *__bsg_get_device(int minor)
776{
777 struct hlist_head *list = &bsg_device_list[bsg_list_idx(minor)];
778 struct bsg_device *bd = NULL;
779 struct hlist_node *entry;
780
781 mutex_lock(&bsg_mutex);
782
783 hlist_for_each(entry, list) {
784 bd = hlist_entry(entry, struct bsg_device, dev_list);
785 if (bd->minor == minor) {
786 atomic_inc(&bd->ref_count);
787 break;
788 }
789
790 bd = NULL;
791 }
792
793 mutex_unlock(&bsg_mutex);
794 return bd;
795}
796
797static struct bsg_device *bsg_get_device(struct inode *inode, struct file *file)
798{
799 struct bsg_device *bd = __bsg_get_device(iminor(inode));
800 struct bsg_class_device *bcd, *__bcd;
801
802 if (bd)
803 return bd;
804
805 /*
806 * find the class device
807 */
808 bcd = NULL;
809 mutex_lock(&bsg_mutex);
810 list_for_each_entry(__bcd, &bsg_class_list, list) {
811 if (__bcd->minor == iminor(inode)) {
812 bcd = __bcd;
813 break;
814 }
815 }
816 mutex_unlock(&bsg_mutex);
817
818 if (!bcd)
819 return ERR_PTR(-ENODEV);
820
821 return bsg_add_device(inode, bcd->queue, file);
822}
823
824static int bsg_open(struct inode *inode, struct file *file)
825{
826 struct bsg_device *bd = bsg_get_device(inode, file);
827
828 if (IS_ERR(bd))
829 return PTR_ERR(bd);
830
831 file->private_data = bd;
832 return 0;
833}
834
835static int bsg_release(struct inode *inode, struct file *file)
836{
837 struct bsg_device *bd = file->private_data;
838
839 file->private_data = NULL;
840 return bsg_put_device(bd);
841}
842
843static unsigned int bsg_poll(struct file *file, poll_table *wait)
844{
845 struct bsg_device *bd = file->private_data;
846 unsigned int mask = 0;
847
848 poll_wait(file, &bd->wq_done, wait);
849 poll_wait(file, &bd->wq_free, wait);
850
851 spin_lock_irq(&bd->lock);
852 if (!list_empty(&bd->done_list))
853 mask |= POLLIN | POLLRDNORM;
854 if (bd->queued_cmds >= bd->max_queue)
855 mask |= POLLOUT;
856 spin_unlock_irq(&bd->lock);
857
858 return mask;
859}
860
861static int
862bsg_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
863 unsigned long arg)
864{
865 struct bsg_device *bd = file->private_data;
866 int __user *uarg = (int __user *) arg;
867
868 if (!bd)
869 return -ENXIO;
870
871 switch (cmd) {
872 /*
873 * our own ioctls
874 */
875 case SG_GET_COMMAND_Q:
876 return put_user(bd->max_queue, uarg);
877 case SG_SET_COMMAND_Q: {
878 int queue;
879
880 if (get_user(queue, uarg))
881 return -EFAULT;
882 if (queue < 1)
883 return -EINVAL;
884
885 spin_lock_irq(&bd->lock);
886 bd->max_queue = queue;
887 spin_unlock_irq(&bd->lock);
888 return 0;
889 }
890
891 /*
892 * SCSI/sg ioctls
893 */
894 case SG_GET_VERSION_NUM:
895 case SCSI_IOCTL_GET_IDLUN:
896 case SCSI_IOCTL_GET_BUS_NUMBER:
897 case SG_SET_TIMEOUT:
898 case SG_GET_TIMEOUT:
899 case SG_GET_RESERVED_SIZE:
900 case SG_SET_RESERVED_SIZE:
901 case SG_EMULATED_HOST:
902 case SCSI_IOCTL_SEND_COMMAND: {
903 void __user *uarg = (void __user *) arg;
904 return scsi_cmd_ioctl(file, bd->queue, NULL, cmd, uarg);
905 }
906 case SG_IO: {
907 struct request *rq;
908 struct bio *bio, *bidi_bio = NULL;
909 struct sg_io_v4 hdr;
910
911 if (copy_from_user(&hdr, uarg, sizeof(hdr)))
912 return -EFAULT;
913
914 rq = bsg_map_hdr(bd, &hdr);
915 if (IS_ERR(rq))
916 return PTR_ERR(rq);
917
918 bio = rq->bio;
919 if (rq->next_rq)
920 bidi_bio = rq->next_rq->bio;
921 blk_execute_rq(bd->queue, NULL, rq, 0);
922 blk_complete_sgv4_hdr_rq(rq, &hdr, bio, bidi_bio);
923
924 if (copy_to_user(uarg, &hdr, sizeof(hdr)))
925 return -EFAULT;
926
927 return 0;
928 }
929 /*
930 * block device ioctls
931 */
932 default:
933#if 0
934 return ioctl_by_bdev(bd->bdev, cmd, arg);
935#else
936 return -ENOTTY;
937#endif
938 }
939}
940
941static struct file_operations bsg_fops = {
942 .read = bsg_read,
943 .write = bsg_write,
944 .poll = bsg_poll,
945 .open = bsg_open,
946 .release = bsg_release,
947 .ioctl = bsg_ioctl,
948 .owner = THIS_MODULE,
949};
950
951void bsg_unregister_queue(struct request_queue *q)
952{
953 struct bsg_class_device *bcd = &q->bsg_dev;
954
955 if (!bcd->class_dev)
956 return;
957
958 mutex_lock(&bsg_mutex);
959 sysfs_remove_link(&q->kobj, "bsg");
960 class_device_destroy(bsg_class, MKDEV(BSG_MAJOR, bcd->minor));
961 bcd->class_dev = NULL;
962 list_del_init(&bcd->list);
963 bsg_device_nr--;
964 mutex_unlock(&bsg_mutex);
965}
966EXPORT_SYMBOL_GPL(bsg_unregister_queue);
967
968int bsg_register_queue(struct request_queue *q, const char *name)
969{
970 struct bsg_class_device *bcd, *__bcd;
971 dev_t dev;
972 int ret = -EMFILE;
973 struct class_device *class_dev = NULL;
974
975 /*
976 * we need a proper transport to send commands, not a stacked device
977 */
978 if (!q->request_fn)
979 return 0;
980
981 bcd = &q->bsg_dev;
982 memset(bcd, 0, sizeof(*bcd));
983 INIT_LIST_HEAD(&bcd->list);
984
985 mutex_lock(&bsg_mutex);
986 if (bsg_device_nr == BSG_MAX_DEVS) {
987 printk(KERN_ERR "bsg: too many bsg devices\n");
988 goto err;
989 }
990
991retry:
992 list_for_each_entry(__bcd, &bsg_class_list, list) {
993 if (__bcd->minor == bsg_minor_idx) {
994 bsg_minor_idx++;
995 if (bsg_minor_idx == BSG_MAX_DEVS)
996 bsg_minor_idx = 0;
997 goto retry;
998 }
999 }
1000
1001 bcd->minor = bsg_minor_idx++;
1002 if (bsg_minor_idx == BSG_MAX_DEVS)
1003 bsg_minor_idx = 0;
1004
1005 bcd->queue = q;
1006 dev = MKDEV(BSG_MAJOR, bcd->minor);
1007 class_dev = class_device_create(bsg_class, NULL, dev, bcd->dev, "%s", name);
1008 if (IS_ERR(class_dev)) {
1009 ret = PTR_ERR(class_dev);
1010 goto err;
1011 }
1012 bcd->class_dev = class_dev;
1013
1014 if (q->kobj.dentry) {
1015 ret = sysfs_create_link(&q->kobj, &bcd->class_dev->kobj, "bsg");
1016 if (ret)
1017 goto err;
1018 }
1019
1020 list_add_tail(&bcd->list, &bsg_class_list);
1021 bsg_device_nr++;
1022
1023 mutex_unlock(&bsg_mutex);
1024 return 0;
1025err:
1026 if (class_dev)
1027 class_device_destroy(bsg_class, MKDEV(BSG_MAJOR, bcd->minor));
1028 mutex_unlock(&bsg_mutex);
1029 return ret;
1030}
1031EXPORT_SYMBOL_GPL(bsg_register_queue);
1032
1033static int bsg_add(struct class_device *cl_dev, struct class_interface *cl_intf)
1034{
1035 int ret;
1036 struct scsi_device *sdp = to_scsi_device(cl_dev->dev);
1037 struct request_queue *rq = sdp->request_queue;
1038
1039 if (rq->kobj.parent)
1040 ret = bsg_register_queue(rq, kobject_name(rq->kobj.parent));
1041 else
1042 ret = bsg_register_queue(rq, kobject_name(&sdp->sdev_gendev.kobj));
1043 return ret;
1044}
1045
1046static void bsg_remove(struct class_device *cl_dev, struct class_interface *cl_intf)
1047{
1048 bsg_unregister_queue(to_scsi_device(cl_dev->dev)->request_queue);
1049}
1050
1051static struct class_interface bsg_intf = {
1052 .add = bsg_add,
1053 .remove = bsg_remove,
1054};
1055
1056static struct cdev bsg_cdev = {
1057 .kobj = {.name = "bsg", },
1058 .owner = THIS_MODULE,
1059};
1060
1061static int __init bsg_init(void)
1062{
1063 int ret, i;
1064
1065 bsg_cmd_cachep = kmem_cache_create("bsg_cmd",
1066 sizeof(struct bsg_command), 0, 0, NULL, NULL);
1067 if (!bsg_cmd_cachep) {
1068 printk(KERN_ERR "bsg: failed creating slab cache\n");
1069 return -ENOMEM;
1070 }
1071
1072 for (i = 0; i < BSG_LIST_SIZE; i++)
1073 INIT_HLIST_HEAD(&bsg_device_list[i]);
1074
1075 bsg_class = class_create(THIS_MODULE, "bsg");
1076 if (IS_ERR(bsg_class)) {
1077 kmem_cache_destroy(bsg_cmd_cachep);
1078 return PTR_ERR(bsg_class);
1079 }
1080
1081 ret = register_chrdev_region(MKDEV(BSG_MAJOR, 0), BSG_MAX_DEVS, "bsg");
1082 if (ret) {
1083 kmem_cache_destroy(bsg_cmd_cachep);
1084 class_destroy(bsg_class);
1085 return ret;
1086 }
1087
1088 cdev_init(&bsg_cdev, &bsg_fops);
1089 ret = cdev_add(&bsg_cdev, MKDEV(BSG_MAJOR, 0), BSG_MAX_DEVS);
1090 if (ret) {
1091 kmem_cache_destroy(bsg_cmd_cachep);
1092 class_destroy(bsg_class);
1093 unregister_chrdev_region(MKDEV(BSG_MAJOR, 0), BSG_MAX_DEVS);
1094 return ret;
1095 }
1096
1097 ret = scsi_register_interface(&bsg_intf);
1098 if (ret) {
1099 printk(KERN_ERR "bsg: failed register scsi interface %d\n", ret);
1100 kmem_cache_destroy(bsg_cmd_cachep);
1101 class_destroy(bsg_class);
1102 unregister_chrdev(BSG_MAJOR, "bsg");
1103 return ret;
1104 }
1105
1106 printk(KERN_INFO "%s loaded\n", bsg_version);
1107 return 0;
1108}
1109
1110MODULE_AUTHOR("Jens Axboe");
1111MODULE_DESCRIPTION("Block layer SGSI generic (sg) driver");
1112MODULE_LICENSE("GPL");
1113
1114device_initcall(bsg_init);
diff --git a/block/ll_rw_blk.c b/block/ll_rw_blk.c
index ef42bb2b12b6..11e4235d0b0c 100644
--- a/block/ll_rw_blk.c
+++ b/block/ll_rw_blk.c
@@ -256,6 +256,7 @@ static void rq_init(request_queue_t *q, struct request *rq)
256 rq->end_io = NULL; 256 rq->end_io = NULL;
257 rq->end_io_data = NULL; 257 rq->end_io_data = NULL;
258 rq->completion_data = NULL; 258 rq->completion_data = NULL;
259 rq->next_rq = NULL;
259} 260}
260 261
261/** 262/**
diff --git a/block/scsi_ioctl.c b/block/scsi_ioctl.c
index e83f1dbf7c29..a26ba07955fe 100644
--- a/block/scsi_ioctl.c
+++ b/block/scsi_ioctl.c
@@ -41,8 +41,6 @@ const unsigned char scsi_command_size[8] =
41 41
42EXPORT_SYMBOL(scsi_command_size); 42EXPORT_SYMBOL(scsi_command_size);
43 43
44#define BLK_DEFAULT_TIMEOUT (60 * HZ)
45
46#include <scsi/sg.h> 44#include <scsi/sg.h>
47 45
48static int sg_get_version(int __user *p) 46static int sg_get_version(int __user *p)
@@ -114,7 +112,7 @@ static int sg_emulated_host(request_queue_t *q, int __user *p)
114#define safe_for_read(cmd) [cmd] = CMD_READ_SAFE 112#define safe_for_read(cmd) [cmd] = CMD_READ_SAFE
115#define safe_for_write(cmd) [cmd] = CMD_WRITE_SAFE 113#define safe_for_write(cmd) [cmd] = CMD_WRITE_SAFE
116 114
117static int verify_command(struct file *file, unsigned char *cmd) 115int blk_verify_command(unsigned char *cmd, int has_write_perm)
118{ 116{
119 static unsigned char cmd_type[256] = { 117 static unsigned char cmd_type[256] = {
120 118
@@ -193,18 +191,11 @@ static int verify_command(struct file *file, unsigned char *cmd)
193 safe_for_write(GPCMD_SET_STREAMING), 191 safe_for_write(GPCMD_SET_STREAMING),
194 }; 192 };
195 unsigned char type = cmd_type[cmd[0]]; 193 unsigned char type = cmd_type[cmd[0]];
196 int has_write_perm = 0;
197 194
198 /* Anybody who can open the device can do a read-safe command */ 195 /* Anybody who can open the device can do a read-safe command */
199 if (type & CMD_READ_SAFE) 196 if (type & CMD_READ_SAFE)
200 return 0; 197 return 0;
201 198
202 /*
203 * file can be NULL from ioctl_by_bdev()...
204 */
205 if (file)
206 has_write_perm = file->f_mode & FMODE_WRITE;
207
208 /* Write-safe commands just require a writable open.. */ 199 /* Write-safe commands just require a writable open.. */
209 if ((type & CMD_WRITE_SAFE) && has_write_perm) 200 if ((type & CMD_WRITE_SAFE) && has_write_perm)
210 return 0; 201 return 0;
@@ -221,25 +212,96 @@ static int verify_command(struct file *file, unsigned char *cmd)
221 /* Otherwise fail it with an "Operation not permitted" */ 212 /* Otherwise fail it with an "Operation not permitted" */
222 return -EPERM; 213 return -EPERM;
223} 214}
215EXPORT_SYMBOL_GPL(blk_verify_command);
216
217int blk_fill_sghdr_rq(request_queue_t *q, struct request *rq,
218 struct sg_io_hdr *hdr, int has_write_perm)
219{
220 memset(rq->cmd, 0, BLK_MAX_CDB); /* ATAPI hates garbage after CDB */
221
222 if (copy_from_user(rq->cmd, hdr->cmdp, hdr->cmd_len))
223 return -EFAULT;
224 if (blk_verify_command(rq->cmd, has_write_perm))
225 return -EPERM;
226
227 /*
228 * fill in request structure
229 */
230 rq->cmd_len = hdr->cmd_len;
231 rq->cmd_type = REQ_TYPE_BLOCK_PC;
232
233 rq->timeout = (hdr->timeout * HZ) / 1000;
234 if (!rq->timeout)
235 rq->timeout = q->sg_timeout;
236 if (!rq->timeout)
237 rq->timeout = BLK_DEFAULT_SG_TIMEOUT;
238
239 return 0;
240}
241EXPORT_SYMBOL_GPL(blk_fill_sghdr_rq);
242
243/*
244 * unmap a request that was previously mapped to this sg_io_hdr. handles
245 * both sg and non-sg sg_io_hdr.
246 */
247int blk_unmap_sghdr_rq(struct request *rq, struct sg_io_hdr *hdr)
248{
249 blk_rq_unmap_user(rq->bio);
250 blk_put_request(rq);
251 return 0;
252}
253EXPORT_SYMBOL_GPL(blk_unmap_sghdr_rq);
254
255int blk_complete_sghdr_rq(struct request *rq, struct sg_io_hdr *hdr,
256 struct bio *bio)
257{
258 int r, ret = 0;
259
260 /*
261 * fill in all the output members
262 */
263 hdr->status = rq->errors & 0xff;
264 hdr->masked_status = status_byte(rq->errors);
265 hdr->msg_status = msg_byte(rq->errors);
266 hdr->host_status = host_byte(rq->errors);
267 hdr->driver_status = driver_byte(rq->errors);
268 hdr->info = 0;
269 if (hdr->masked_status || hdr->host_status || hdr->driver_status)
270 hdr->info |= SG_INFO_CHECK;
271 hdr->resid = rq->data_len;
272 hdr->sb_len_wr = 0;
273
274 if (rq->sense_len && hdr->sbp) {
275 int len = min((unsigned int) hdr->mx_sb_len, rq->sense_len);
276
277 if (!copy_to_user(hdr->sbp, rq->sense, len))
278 hdr->sb_len_wr = len;
279 else
280 ret = -EFAULT;
281 }
282
283 rq->bio = bio;
284 r = blk_unmap_sghdr_rq(rq, hdr);
285 if (ret)
286 r = ret;
287
288 return r;
289}
290EXPORT_SYMBOL_GPL(blk_complete_sghdr_rq);
224 291
225static int sg_io(struct file *file, request_queue_t *q, 292static int sg_io(struct file *file, request_queue_t *q,
226 struct gendisk *bd_disk, struct sg_io_hdr *hdr) 293 struct gendisk *bd_disk, struct sg_io_hdr *hdr)
227{ 294{
228 unsigned long start_time, timeout; 295 unsigned long start_time;
229 int writing = 0, ret = 0; 296 int writing = 0, ret = 0, has_write_perm = 0;
230 struct request *rq; 297 struct request *rq;
231 char sense[SCSI_SENSE_BUFFERSIZE]; 298 char sense[SCSI_SENSE_BUFFERSIZE];
232 unsigned char cmd[BLK_MAX_CDB];
233 struct bio *bio; 299 struct bio *bio;
234 300
235 if (hdr->interface_id != 'S') 301 if (hdr->interface_id != 'S')
236 return -EINVAL; 302 return -EINVAL;
237 if (hdr->cmd_len > BLK_MAX_CDB) 303 if (hdr->cmd_len > BLK_MAX_CDB)
238 return -EINVAL; 304 return -EINVAL;
239 if (copy_from_user(cmd, hdr->cmdp, hdr->cmd_len))
240 return -EFAULT;
241 if (verify_command(file, cmd))
242 return -EPERM;
243 305
244 if (hdr->dxfer_len > (q->max_hw_sectors << 9)) 306 if (hdr->dxfer_len > (q->max_hw_sectors << 9))
245 return -EIO; 307 return -EIO;
@@ -260,25 +322,13 @@ static int sg_io(struct file *file, request_queue_t *q,
260 if (!rq) 322 if (!rq)
261 return -ENOMEM; 323 return -ENOMEM;
262 324
263 /* 325 if (file)
264 * fill in request structure 326 has_write_perm = file->f_mode & FMODE_WRITE;
265 */
266 rq->cmd_len = hdr->cmd_len;
267 memset(rq->cmd, 0, BLK_MAX_CDB); /* ATAPI hates garbage after CDB */
268 memcpy(rq->cmd, cmd, hdr->cmd_len);
269
270 memset(sense, 0, sizeof(sense));
271 rq->sense = sense;
272 rq->sense_len = 0;
273
274 rq->cmd_type = REQ_TYPE_BLOCK_PC;
275 327
276 timeout = msecs_to_jiffies(hdr->timeout); 328 if (blk_fill_sghdr_rq(q, rq, hdr, has_write_perm)) {
277 rq->timeout = (timeout < INT_MAX) ? timeout : INT_MAX; 329 blk_put_request(rq);
278 if (!rq->timeout) 330 return -EFAULT;
279 rq->timeout = q->sg_timeout; 331 }
280 if (!rq->timeout)
281 rq->timeout = BLK_DEFAULT_TIMEOUT;
282 332
283 if (hdr->iovec_count) { 333 if (hdr->iovec_count) {
284 const int size = sizeof(struct sg_iovec) * hdr->iovec_count; 334 const int size = sizeof(struct sg_iovec) * hdr->iovec_count;
@@ -306,6 +356,9 @@ static int sg_io(struct file *file, request_queue_t *q,
306 goto out; 356 goto out;
307 357
308 bio = rq->bio; 358 bio = rq->bio;
359 memset(sense, 0, sizeof(sense));
360 rq->sense = sense;
361 rq->sense_len = 0;
309 rq->retries = 0; 362 rq->retries = 0;
310 363
311 start_time = jiffies; 364 start_time = jiffies;
@@ -316,31 +369,9 @@ static int sg_io(struct file *file, request_queue_t *q,
316 */ 369 */
317 blk_execute_rq(q, bd_disk, rq, 0); 370 blk_execute_rq(q, bd_disk, rq, 0);
318 371
319 /* write to all output members */
320 hdr->status = 0xff & rq->errors;
321 hdr->masked_status = status_byte(rq->errors);
322 hdr->msg_status = msg_byte(rq->errors);
323 hdr->host_status = host_byte(rq->errors);
324 hdr->driver_status = driver_byte(rq->errors);
325 hdr->info = 0;
326 if (hdr->masked_status || hdr->host_status || hdr->driver_status)
327 hdr->info |= SG_INFO_CHECK;
328 hdr->resid = rq->data_len;
329 hdr->duration = ((jiffies - start_time) * 1000) / HZ; 372 hdr->duration = ((jiffies - start_time) * 1000) / HZ;
330 hdr->sb_len_wr = 0;
331
332 if (rq->sense_len && hdr->sbp) {
333 int len = min((unsigned int) hdr->mx_sb_len, rq->sense_len);
334
335 if (!copy_to_user(hdr->sbp, rq->sense, len))
336 hdr->sb_len_wr = len;
337 }
338 373
339 if (blk_rq_unmap_user(bio)) 374 return blk_complete_sghdr_rq(rq, hdr, bio);
340 ret = -EFAULT;
341
342 /* may not have succeeded, but output values written to control
343 * structure (struct sg_io_hdr). */
344out: 375out:
345 blk_put_request(rq); 376 blk_put_request(rq);
346 return ret; 377 return ret;
@@ -427,7 +458,7 @@ int sg_scsi_ioctl(struct file *file, struct request_queue *q,
427 if (in_len && copy_from_user(buffer, sic->data + cmdlen, in_len)) 458 if (in_len && copy_from_user(buffer, sic->data + cmdlen, in_len))
428 goto error; 459 goto error;
429 460
430 err = verify_command(file, rq->cmd); 461 err = blk_verify_command(rq->cmd, file->f_mode & FMODE_WRITE);
431 if (err) 462 if (err)
432 goto error; 463 goto error;
433 464
@@ -454,7 +485,7 @@ int sg_scsi_ioctl(struct file *file, struct request_queue *q,
454 rq->retries = 1; 485 rq->retries = 1;
455 break; 486 break;
456 default: 487 default:
457 rq->timeout = BLK_DEFAULT_TIMEOUT; 488 rq->timeout = BLK_DEFAULT_SG_TIMEOUT;
458 break; 489 break;
459 } 490 }
460 491
@@ -501,7 +532,7 @@ static int __blk_send_generic(request_queue_t *q, struct gendisk *bd_disk, int c
501 rq->cmd_type = REQ_TYPE_BLOCK_PC; 532 rq->cmd_type = REQ_TYPE_BLOCK_PC;
502 rq->data = NULL; 533 rq->data = NULL;
503 rq->data_len = 0; 534 rq->data_len = 0;
504 rq->timeout = BLK_DEFAULT_TIMEOUT; 535 rq->timeout = BLK_DEFAULT_SG_TIMEOUT;
505 memset(rq->cmd, 0, sizeof(rq->cmd)); 536 memset(rq->cmd, 0, sizeof(rq->cmd));
506 rq->cmd[0] = cmd; 537 rq->cmd[0] = cmd;
507 rq->cmd[4] = data; 538 rq->cmd[4] = data;
@@ -517,16 +548,12 @@ static inline int blk_send_start_stop(request_queue_t *q, struct gendisk *bd_dis
517 return __blk_send_generic(q, bd_disk, GPCMD_START_STOP_UNIT, data); 548 return __blk_send_generic(q, bd_disk, GPCMD_START_STOP_UNIT, data);
518} 549}
519 550
520int scsi_cmd_ioctl(struct file *file, struct gendisk *bd_disk, unsigned int cmd, void __user *arg) 551int scsi_cmd_ioctl(struct file *file, struct request_queue *q,
552 struct gendisk *bd_disk, unsigned int cmd, void __user *arg)
521{ 553{
522 request_queue_t *q;
523 int err; 554 int err;
524 555
525 q = bd_disk->queue; 556 if (!q || blk_get_queue(q))
526 if (!q)
527 return -ENXIO;
528
529 if (blk_get_queue(q))
530 return -ENXIO; 557 return -ENXIO;
531 558
532 switch (cmd) { 559 switch (cmd) {
diff --git a/drivers/block/ub.c b/drivers/block/ub.c
index 18c8b6c0db20..8b13d7d2cb63 100644
--- a/drivers/block/ub.c
+++ b/drivers/block/ub.c
@@ -1709,7 +1709,7 @@ static int ub_bd_ioctl(struct inode *inode, struct file *filp,
1709 struct gendisk *disk = inode->i_bdev->bd_disk; 1709 struct gendisk *disk = inode->i_bdev->bd_disk;
1710 void __user *usermem = (void __user *) arg; 1710 void __user *usermem = (void __user *) arg;
1711 1711
1712 return scsi_cmd_ioctl(filp, disk, cmd, usermem); 1712 return scsi_cmd_ioctl(filp, disk->queue, disk, cmd, usermem);
1713} 1713}
1714 1714
1715/* 1715/*
diff --git a/drivers/cdrom/cdrom.c b/drivers/cdrom/cdrom.c
index aa5468f487ba..499019bf8f40 100644
--- a/drivers/cdrom/cdrom.c
+++ b/drivers/cdrom/cdrom.c
@@ -2695,11 +2695,12 @@ int cdrom_ioctl(struct file * file, struct cdrom_device_info *cdi,
2695{ 2695{
2696 void __user *argp = (void __user *)arg; 2696 void __user *argp = (void __user *)arg;
2697 int ret; 2697 int ret;
2698 struct gendisk *disk = ip->i_bdev->bd_disk;
2698 2699
2699 /* 2700 /*
2700 * Try the generic SCSI command ioctl's first. 2701 * Try the generic SCSI command ioctl's first.
2701 */ 2702 */
2702 ret = scsi_cmd_ioctl(file, ip->i_bdev->bd_disk, cmd, argp); 2703 ret = scsi_cmd_ioctl(file, disk->queue, disk, cmd, argp);
2703 if (ret != -ENOTTY) 2704 if (ret != -ENOTTY)
2704 return ret; 2705 return ret;
2705 2706
diff --git a/drivers/ide/ide-floppy.c b/drivers/ide/ide-floppy.c
index f429be88c4f9..a21f585b1caa 100644
--- a/drivers/ide/ide-floppy.c
+++ b/drivers/ide/ide-floppy.c
@@ -1258,19 +1258,25 @@ static void idefloppy_create_rw_cmd (idefloppy_floppy_t *floppy, idefloppy_pc_t
1258 set_bit(PC_DMA_RECOMMENDED, &pc->flags); 1258 set_bit(PC_DMA_RECOMMENDED, &pc->flags);
1259} 1259}
1260 1260
1261static int 1261static void
1262idefloppy_blockpc_cmd(idefloppy_floppy_t *floppy, idefloppy_pc_t *pc, struct request *rq) 1262idefloppy_blockpc_cmd(idefloppy_floppy_t *floppy, idefloppy_pc_t *pc, struct request *rq)
1263{ 1263{
1264 /*
1265 * just support eject for now, it would not be hard to make the
1266 * REQ_BLOCK_PC support fully-featured
1267 */
1268 if (rq->cmd[0] != IDEFLOPPY_START_STOP_CMD)
1269 return 1;
1270
1271 idefloppy_init_pc(pc); 1264 idefloppy_init_pc(pc);
1265 pc->callback = &idefloppy_rw_callback;
1272 memcpy(pc->c, rq->cmd, sizeof(pc->c)); 1266 memcpy(pc->c, rq->cmd, sizeof(pc->c));
1273 return 0; 1267 pc->rq = rq;
1268 pc->b_count = rq->data_len;
1269 if (rq->data_len && rq_data_dir(rq) == WRITE)
1270 set_bit(PC_WRITING, &pc->flags);
1271 pc->buffer = rq->data;
1272 if (rq->bio)
1273 set_bit(PC_DMA_RECOMMENDED, &pc->flags);
1274
1275 /*
1276 * possibly problematic, doesn't look like ide-floppy correctly
1277 * handled scattered requests if dma fails...
1278 */
1279 pc->request_transfer = pc->buffer_size = rq->data_len;
1274} 1280}
1275 1281
1276/* 1282/*
@@ -1317,10 +1323,7 @@ static ide_startstop_t idefloppy_do_request (ide_drive_t *drive, struct request
1317 pc = (idefloppy_pc_t *) rq->buffer; 1323 pc = (idefloppy_pc_t *) rq->buffer;
1318 } else if (blk_pc_request(rq)) { 1324 } else if (blk_pc_request(rq)) {
1319 pc = idefloppy_next_pc_storage(drive); 1325 pc = idefloppy_next_pc_storage(drive);
1320 if (idefloppy_blockpc_cmd(floppy, pc, rq)) { 1326 idefloppy_blockpc_cmd(floppy, pc, rq);
1321 idefloppy_do_end_request(drive, 0, 0);
1322 return ide_stopped;
1323 }
1324 } else { 1327 } else {
1325 blk_dump_rq_flags(rq, 1328 blk_dump_rq_flags(rq,
1326 "ide-floppy: unsupported command in queue"); 1329 "ide-floppy: unsupported command in queue");
diff --git a/drivers/ide/ide.c b/drivers/ide/ide.c
index c948a5c17a5d..8cd7694593c9 100644
--- a/drivers/ide/ide.c
+++ b/drivers/ide/ide.c
@@ -1049,9 +1049,13 @@ int generic_ide_ioctl(ide_drive_t *drive, struct file *file, struct block_device
1049 unsigned long flags; 1049 unsigned long flags;
1050 ide_driver_t *drv; 1050 ide_driver_t *drv;
1051 void __user *p = (void __user *)arg; 1051 void __user *p = (void __user *)arg;
1052 int err = 0, (*setfunc)(ide_drive_t *, int); 1052 int err, (*setfunc)(ide_drive_t *, int);
1053 u8 *val; 1053 u8 *val;
1054 1054
1055 err = scsi_cmd_ioctl(file, bdev->bd_disk->queue, bdev->bd_disk, cmd, p);
1056 if (err != -ENOTTY)
1057 return err;
1058
1055 switch (cmd) { 1059 switch (cmd) {
1056 case HDIO_GET_32BIT: val = &drive->io_32bit; goto read_val; 1060 case HDIO_GET_32BIT: val = &drive->io_32bit; goto read_val;
1057 case HDIO_GET_KEEPSETTINGS: val = &drive->keep_settings; goto read_val; 1061 case HDIO_GET_KEEPSETTINGS: val = &drive->keep_settings; goto read_val;
@@ -1171,10 +1175,6 @@ int generic_ide_ioctl(ide_drive_t *drive, struct file *file, struct block_device
1171 return 0; 1175 return 0;
1172 } 1176 }
1173 1177
1174 case CDROMEJECT:
1175 case CDROMCLOSETRAY:
1176 return scsi_cmd_ioctl(file, bdev->bd_disk, cmd, p);
1177
1178 case HDIO_GET_BUSSTATE: 1178 case HDIO_GET_BUSSTATE:
1179 if (!capable(CAP_SYS_ADMIN)) 1179 if (!capable(CAP_SYS_ADMIN))
1180 return -EACCES; 1180 return -EACCES;
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
index 448d316f12d7..424d557284a9 100644
--- a/drivers/scsi/sd.c
+++ b/drivers/scsi/sd.c
@@ -684,7 +684,7 @@ static int sd_ioctl(struct inode * inode, struct file * filp,
684 case SCSI_IOCTL_GET_BUS_NUMBER: 684 case SCSI_IOCTL_GET_BUS_NUMBER:
685 return scsi_ioctl(sdp, cmd, p); 685 return scsi_ioctl(sdp, cmd, p);
686 default: 686 default:
687 error = scsi_cmd_ioctl(filp, disk, cmd, p); 687 error = scsi_cmd_ioctl(filp, disk->queue, disk, cmd, p);
688 if (error != -ENOTTY) 688 if (error != -ENOTTY)
689 return error; 689 return error;
690 } 690 }
diff --git a/drivers/scsi/st.c b/drivers/scsi/st.c
index 55bfeccf68a2..a4f7b8465773 100644
--- a/drivers/scsi/st.c
+++ b/drivers/scsi/st.c
@@ -3549,7 +3549,8 @@ static int st_ioctl(struct inode *inode, struct file *file,
3549 !capable(CAP_SYS_RAWIO)) 3549 !capable(CAP_SYS_RAWIO))
3550 i = -EPERM; 3550 i = -EPERM;
3551 else 3551 else
3552 i = scsi_cmd_ioctl(file, STp->disk, cmd_in, p); 3552 i = scsi_cmd_ioctl(file, STp->disk->queue,
3553 STp->disk, cmd_in, p);
3553 if (i != -ENOTTY) 3554 if (i != -ENOTTY)
3554 return i; 3555 return i;
3555 break; 3556 break;
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index fae138bd2207..b32564a1e105 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -14,6 +14,7 @@
14#include <linux/bio.h> 14#include <linux/bio.h>
15#include <linux/module.h> 15#include <linux/module.h>
16#include <linux/stringify.h> 16#include <linux/stringify.h>
17#include <linux/bsg.h>
17 18
18#include <asm/scatterlist.h> 19#include <asm/scatterlist.h>
19 20
@@ -41,6 +42,8 @@ struct elevator_queue;
41typedef struct elevator_queue elevator_t; 42typedef struct elevator_queue elevator_t;
42struct request_pm_state; 43struct request_pm_state;
43struct blk_trace; 44struct blk_trace;
45struct request;
46struct sg_io_hdr;
44 47
45#define BLKDEV_MIN_RQ 4 48#define BLKDEV_MIN_RQ 4
46#define BLKDEV_MAX_RQ 128 /* Default maximum */ 49#define BLKDEV_MAX_RQ 128 /* Default maximum */
@@ -314,6 +317,9 @@ struct request {
314 */ 317 */
315 rq_end_io_fn *end_io; 318 rq_end_io_fn *end_io;
316 void *end_io_data; 319 void *end_io_data;
320
321 /* for bidi */
322 struct request *next_rq;
317}; 323};
318 324
319/* 325/*
@@ -468,6 +474,10 @@ struct request_queue
468 unsigned int bi_size; 474 unsigned int bi_size;
469 475
470 struct mutex sysfs_lock; 476 struct mutex sysfs_lock;
477
478#if defined(CONFIG_BLK_DEV_BSG)
479 struct bsg_class_device bsg_dev;
480#endif
471}; 481};
472 482
473#define QUEUE_FLAG_CLUSTER 0 /* cluster several segments into 1 */ 483#define QUEUE_FLAG_CLUSTER 0 /* cluster several segments into 1 */
@@ -479,6 +489,7 @@ struct request_queue
479#define QUEUE_FLAG_REENTER 6 /* Re-entrancy avoidance */ 489#define QUEUE_FLAG_REENTER 6 /* Re-entrancy avoidance */
480#define QUEUE_FLAG_PLUGGED 7 /* queue is plugged */ 490#define QUEUE_FLAG_PLUGGED 7 /* queue is plugged */
481#define QUEUE_FLAG_ELVSWITCH 8 /* don't use elevator, just do FIFO */ 491#define QUEUE_FLAG_ELVSWITCH 8 /* don't use elevator, just do FIFO */
492#define QUEUE_FLAG_BIDI 9 /* queue supports bidi requests */
482 493
483enum { 494enum {
484 /* 495 /*
@@ -543,6 +554,7 @@ enum {
543#define blk_sorted_rq(rq) ((rq)->cmd_flags & REQ_SORTED) 554#define blk_sorted_rq(rq) ((rq)->cmd_flags & REQ_SORTED)
544#define blk_barrier_rq(rq) ((rq)->cmd_flags & REQ_HARDBARRIER) 555#define blk_barrier_rq(rq) ((rq)->cmd_flags & REQ_HARDBARRIER)
545#define blk_fua_rq(rq) ((rq)->cmd_flags & REQ_FUA) 556#define blk_fua_rq(rq) ((rq)->cmd_flags & REQ_FUA)
557#define blk_bidi_rq(rq) ((rq)->next_rq != NULL)
546 558
547#define list_entry_rq(ptr) list_entry((ptr), struct request, queuelist) 559#define list_entry_rq(ptr) list_entry((ptr), struct request, queuelist)
548 560
@@ -607,6 +619,11 @@ extern unsigned long blk_max_low_pfn, blk_max_pfn;
607#define BLK_BOUNCE_ANY ((u64)blk_max_pfn << PAGE_SHIFT) 619#define BLK_BOUNCE_ANY ((u64)blk_max_pfn << PAGE_SHIFT)
608#define BLK_BOUNCE_ISA (ISA_DMA_THRESHOLD) 620#define BLK_BOUNCE_ISA (ISA_DMA_THRESHOLD)
609 621
622/*
623 * default timeout for SG_IO if none specified
624 */
625#define BLK_DEFAULT_SG_TIMEOUT (60 * HZ)
626
610#ifdef CONFIG_MMU 627#ifdef CONFIG_MMU
611extern int init_emergency_isa_pool(void); 628extern int init_emergency_isa_pool(void);
612extern void blk_queue_bounce(request_queue_t *q, struct bio **bio); 629extern void blk_queue_bounce(request_queue_t *q, struct bio **bio);
@@ -637,7 +654,8 @@ extern void blk_requeue_request(request_queue_t *, struct request *);
637extern void blk_plug_device(request_queue_t *); 654extern void blk_plug_device(request_queue_t *);
638extern int blk_remove_plug(request_queue_t *); 655extern int blk_remove_plug(request_queue_t *);
639extern void blk_recount_segments(request_queue_t *, struct bio *); 656extern void blk_recount_segments(request_queue_t *, struct bio *);
640extern int scsi_cmd_ioctl(struct file *, struct gendisk *, unsigned int, void __user *); 657extern int scsi_cmd_ioctl(struct file *, struct request_queue *,
658 struct gendisk *, unsigned int, void __user *);
641extern int sg_scsi_ioctl(struct file *, struct request_queue *, 659extern int sg_scsi_ioctl(struct file *, struct request_queue *,
642 struct gendisk *, struct scsi_ioctl_command __user *); 660 struct gendisk *, struct scsi_ioctl_command __user *);
643 661
@@ -680,6 +698,12 @@ extern int blk_execute_rq(request_queue_t *, struct gendisk *,
680 struct request *, int); 698 struct request *, int);
681extern void blk_execute_rq_nowait(request_queue_t *, struct gendisk *, 699extern void blk_execute_rq_nowait(request_queue_t *, struct gendisk *,
682 struct request *, int, rq_end_io_fn *); 700 struct request *, int, rq_end_io_fn *);
701extern int blk_fill_sghdr_rq(request_queue_t *, struct request *,
702 struct sg_io_hdr *, int);
703extern int blk_unmap_sghdr_rq(struct request *, struct sg_io_hdr *);
704extern int blk_complete_sghdr_rq(struct request *, struct sg_io_hdr *,
705 struct bio *);
706extern int blk_verify_command(unsigned char *, int);
683 707
684static inline request_queue_t *bdev_get_queue(struct block_device *bdev) 708static inline request_queue_t *bdev_get_queue(struct block_device *bdev)
685{ 709{
diff --git a/include/linux/bsg.h b/include/linux/bsg.h
new file mode 100644
index 000000000000..bd998ca6cb2e
--- /dev/null
+++ b/include/linux/bsg.h
@@ -0,0 +1,70 @@
1#ifndef BSG_H
2#define BSG_H
3
4#define BSG_PROTOCOL_SCSI 0
5
6#define BSG_SUB_PROTOCOL_SCSI_CMD 0
7#define BSG_SUB_PROTOCOL_SCSI_TMF 1
8#define BSG_SUB_PROTOCOL_SCSI_TRANSPORT 2
9
10struct sg_io_v4 {
11 __s32 guard; /* [i] 'Q' to differentiate from v3 */
12 __u32 protocol; /* [i] 0 -> SCSI , .... */
13 __u32 subprotocol; /* [i] 0 -> SCSI command, 1 -> SCSI task
14 management function, .... */
15
16 __u32 request_len; /* [i] in bytes */
17 __u64 request; /* [i], [*i] {SCSI: cdb} */
18 __u32 request_attr; /* [i] {SCSI: task attribute} */
19 __u32 request_tag; /* [i] {SCSI: task tag (only if flagged)} */
20 __u32 request_priority; /* [i] {SCSI: task priority} */
21 __u32 max_response_len; /* [i] in bytes */
22 __u64 response; /* [i], [*o] {SCSI: (auto)sense data} */
23
24 /* "din_" for data in (from device); "dout_" for data out (to device) */
25 __u32 dout_xfer_len; /* [i] bytes to be transferred to device */
26 __u32 din_xfer_len; /* [i] bytes to be transferred from device */
27 __u64 dout_xferp; /* [i], [*i] */
28 __u64 din_xferp; /* [i], [*o] */
29
30 __u32 timeout; /* [i] units: millisecond */
31 __u32 flags; /* [i] bit mask */
32 __u64 usr_ptr; /* [i->o] unused internally */
33 __u32 spare_in; /* [i] */
34
35 __u32 driver_status; /* [o] 0 -> ok */
36 __u32 transport_status; /* [o] 0 -> ok */
37 __u32 device_status; /* [o] {SCSI: command completion status} */
38 __u32 retry_delay; /* [o] {SCSI: status auxiliary information} */
39 __u32 info; /* [o] additional information */
40 __u32 duration; /* [o] time to complete, in milliseconds */
41 __u32 response_len; /* [o] bytes of response actually written */
42 __s32 din_resid; /* [o] actual_din_xfer_len - din_xfer_len */
43 __u32 generated_tag; /* [o] {SCSI: task tag that transport chose} */
44 __u32 spare_out; /* [o] */
45
46 __u32 padding;
47};
48
49#ifdef __KERNEL__
50
51#if defined(CONFIG_BLK_DEV_BSG)
52struct bsg_class_device {
53 struct class_device *class_dev;
54 struct device *dev;
55 int minor;
56 struct list_head list;
57 struct request_queue *queue;
58};
59
60extern int bsg_register_queue(struct request_queue *, const char *);
61extern void bsg_unregister_queue(struct request_queue *);
62#else
63struct bsg_class_device { };
64#define bsg_register_queue(disk, name) (0)
65#define bsg_unregister_queue(disk) do { } while (0)
66#endif
67
68#endif /* __KERNEL__ */
69
70#endif