blob: 13ecc951a4c0cc52ff0c63f624023bc619899150 [file] [log] [blame]
Jens Axboe3d6392c2007-07-09 12:38:05 +02001/*
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 */
Jens Axboe3d6392c2007-07-09 12:38:05 +020019#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>
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +020032#include <scsi/scsi_device.h>
33#include <scsi/scsi_driver.h>
Jens Axboe3d6392c2007-07-09 12:38:05 +020034#include <scsi/sg.h>
35
36static char bsg_version[] = "block layer sg (bsg) 0.4";
37
Jens Axboe3d6392c2007-07-09 12:38:05 +020038struct bsg_device {
Jens Axboe3d6392c2007-07-09 12:38:05 +020039 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;
Jens Axboe3d6392c2007-07-09 12:38:05 +020048 wait_queue_head_t wq_done;
49 wait_queue_head_t wq_free;
FUJITA Tomonorid351af02007-07-09 12:40:35 +020050 char name[BUS_ID_SIZE];
Jens Axboe3d6392c2007-07-09 12:38:05 +020051 int max_queue;
52 unsigned long flags;
53};
54
55enum {
56 BSG_F_BLOCK = 1,
57 BSG_F_WRITE_PERM = 2,
58};
59
Jens Axboe5309cb32007-01-23 16:24:41 +010060#define BSG_DEFAULT_CMDS 64
FUJITA Tomonori292b7f22007-03-28 13:29:58 +020061#define BSG_MAX_DEVS 32768
Jens Axboe3d6392c2007-07-09 12:38:05 +020062
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);
FUJITA Tomonori292b7f22007-03-28 13:29:58 +020079static int bsg_device_nr, bsg_minor_idx;
Jens Axboe3d6392c2007-07-09 12:38:05 +020080
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
Jens Axboe5309cb32007-01-23 16:24:41 +010088static struct kmem_cache *bsg_cmd_cachep;
89
Jens Axboe3d6392c2007-07-09 12:38:05 +020090/*
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;
FUJITA Tomonori2c9ecdf2007-07-16 08:52:15 +020098 struct bio *bidi_bio;
Jens Axboe3d6392c2007-07-09 12:38:05 +020099 int err;
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100100 struct sg_io_v4 hdr;
101 struct sg_io_v4 __user *uhdr;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200102 char sense[SCSI_SENSE_BUFFERSIZE];
103};
104
105static void bsg_free_command(struct bsg_command *bc)
106{
107 struct bsg_device *bd = bc->bd;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200108 unsigned long flags;
109
Jens Axboe5309cb32007-01-23 16:24:41 +0100110 kmem_cache_free(bsg_cmd_cachep, bc);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200111
112 spin_lock_irqsave(&bd->lock, flags);
113 bd->queued_cmds--;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200114 spin_unlock_irqrestore(&bd->lock, flags);
115
116 wake_up(&bd->wq_free);
117}
118
FUJITA Tomonorie7d72172007-05-08 15:32:03 +0200119static struct bsg_command *bsg_alloc_command(struct bsg_device *bd)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200120{
FUJITA Tomonorie7d72172007-05-08 15:32:03 +0200121 struct bsg_command *bc = ERR_PTR(-EINVAL);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200122
123 spin_lock_irq(&bd->lock);
124
125 if (bd->queued_cmds >= bd->max_queue)
126 goto out;
127
Jens Axboe3d6392c2007-07-09 12:38:05 +0200128 bd->queued_cmds++;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200129 spin_unlock_irq(&bd->lock);
130
Jens Axboe5309cb32007-01-23 16:24:41 +0100131 bc = kmem_cache_alloc(bsg_cmd_cachep, GFP_USER);
132 if (unlikely(!bc)) {
133 spin_lock_irq(&bd->lock);
FUJITA Tomonori7e75d732007-01-24 09:05:54 +0100134 bd->queued_cmds--;
FUJITA Tomonorie7d72172007-05-08 15:32:03 +0200135 bc = ERR_PTR(-ENOMEM);
FUJITA Tomonori7e75d732007-01-24 09:05:54 +0100136 goto out;
Jens Axboe5309cb32007-01-23 16:24:41 +0100137 }
138
Jens Axboe3d6392c2007-07-09 12:38:05 +0200139 memset(bc, 0, sizeof(*bc));
140 bc->bd = bd;
141 INIT_LIST_HEAD(&bc->list);
Jens Axboe5309cb32007-01-23 16:24:41 +0100142 dprintk("%s: returning free cmd %p\n", bd->name, bc);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200143 return bc;
144out:
Jens Axboe3d6392c2007-07-09 12:38:05 +0200145 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
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100203static int blk_fill_sgv4_hdr_rq(request_queue_t *q, struct request *rq,
204 struct sg_io_v4 *hdr, int has_write_perm)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200205{
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100206 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 if (blk_verify_command(rq->cmd, has_write_perm))
212 return -EPERM;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200213
214 /*
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100215 * fill in request structure
Jens Axboe3d6392c2007-07-09 12:38:05 +0200216 */
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100217 rq->cmd_len = hdr->request_len;
218 rq->cmd_type = REQ_TYPE_BLOCK_PC;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200219
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100220 rq->timeout = (hdr->timeout * HZ) / 1000;
221 if (!rq->timeout)
222 rq->timeout = q->sg_timeout;
223 if (!rq->timeout)
224 rq->timeout = BLK_DEFAULT_SG_TIMEOUT;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200225
226 return 0;
227}
228
229/*
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100230 * Check if sg_io_v4 from user is allowed and valid
231 */
232static int
233bsg_validate_sgv4_hdr(request_queue_t *q, struct sg_io_v4 *hdr, int *rw)
234{
235 if (hdr->guard != 'Q')
236 return -EINVAL;
237 if (hdr->request_len > BLK_MAX_CDB)
238 return -EINVAL;
239 if (hdr->dout_xfer_len > (q->max_sectors << 9) ||
240 hdr->din_xfer_len > (q->max_sectors << 9))
241 return -EIO;
242
243 /* not supported currently */
244 if (hdr->protocol || hdr->subprotocol)
245 return -EINVAL;
246
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100247 *rw = hdr->dout_xfer_len ? WRITE : READ;
248
249 return 0;
250}
251
252/*
253 * map sg_io_v4 to a request.
Jens Axboe3d6392c2007-07-09 12:38:05 +0200254 */
255static struct request *
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100256bsg_map_hdr(struct bsg_device *bd, struct sg_io_v4 *hdr)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200257{
258 request_queue_t *q = bd->queue;
FUJITA Tomonori2c9ecdf2007-07-16 08:52:15 +0200259 struct request *rq, *next_rq = NULL;
Jens Axboe2ef70862006-12-20 11:26:11 +0100260 int ret, rw = 0; /* shut up gcc */
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100261 unsigned int dxfer_len;
262 void *dxferp = NULL;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200263
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100264 dprintk("map hdr %llx/%u %llx/%u\n", (unsigned long long) hdr->dout_xferp,
265 hdr->dout_xfer_len, (unsigned long long) hdr->din_xferp,
266 hdr->din_xfer_len);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200267
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100268 ret = bsg_validate_sgv4_hdr(q, hdr, &rw);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200269 if (ret)
270 return ERR_PTR(ret);
271
272 /*
273 * map scatter-gather elements seperately and string them to request
274 */
275 rq = blk_get_request(q, rw, GFP_KERNEL);
FUJITA Tomonori2c9ecdf2007-07-16 08:52:15 +0200276 if (!rq)
277 return ERR_PTR(-ENOMEM);
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100278 ret = blk_fill_sgv4_hdr_rq(q, rq, hdr, test_bit(BSG_F_WRITE_PERM,
279 &bd->flags));
FUJITA Tomonori2c9ecdf2007-07-16 08:52:15 +0200280 if (ret)
281 goto out;
282
283 if (rw == WRITE && hdr->din_xfer_len) {
284 if (!test_bit(QUEUE_FLAG_BIDI, &q->queue_flags)) {
285 ret = -EOPNOTSUPP;
286 goto out;
287 }
288
289 next_rq = blk_get_request(q, READ, GFP_KERNEL);
290 if (!next_rq) {
291 ret = -ENOMEM;
292 goto out;
293 }
294 rq->next_rq = next_rq;
295
296 dxferp = (void*)(unsigned long)hdr->din_xferp;
297 ret = blk_rq_map_user(q, next_rq, dxferp, hdr->din_xfer_len);
298 if (ret)
299 goto out;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200300 }
301
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100302 if (hdr->dout_xfer_len) {
303 dxfer_len = hdr->dout_xfer_len;
304 dxferp = (void*)(unsigned long)hdr->dout_xferp;
305 } else if (hdr->din_xfer_len) {
306 dxfer_len = hdr->din_xfer_len;
307 dxferp = (void*)(unsigned long)hdr->din_xferp;
308 } else
309 dxfer_len = 0;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200310
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100311 if (dxfer_len) {
312 ret = blk_rq_map_user(q, rq, dxferp, dxfer_len);
FUJITA Tomonori2c9ecdf2007-07-16 08:52:15 +0200313 if (ret)
314 goto out;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200315 }
Jens Axboe3d6392c2007-07-09 12:38:05 +0200316 return rq;
FUJITA Tomonori2c9ecdf2007-07-16 08:52:15 +0200317out:
318 blk_put_request(rq);
319 if (next_rq) {
320 blk_rq_unmap_user(next_rq->bio);
321 blk_put_request(next_rq);
322 }
323 return ERR_PTR(ret);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200324}
325
326/*
327 * async completion call-back from the block layer, when scsi/ide/whatever
328 * calls end_that_request_last() on a request
329 */
330static void bsg_rq_end_io(struct request *rq, int uptodate)
331{
332 struct bsg_command *bc = rq->end_io_data;
333 struct bsg_device *bd = bc->bd;
334 unsigned long flags;
335
Jens Axboe5309cb32007-01-23 16:24:41 +0100336 dprintk("%s: finished rq %p bc %p, bio %p stat %d\n",
337 bd->name, rq, bc, bc->bio, uptodate);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200338
339 bc->hdr.duration = jiffies_to_msecs(jiffies - bc->hdr.duration);
340
341 spin_lock_irqsave(&bd->lock, flags);
342 list_del(&bc->list);
343 bsg_add_done_cmd(bd, bc);
344 spin_unlock_irqrestore(&bd->lock, flags);
345}
346
347/*
348 * do final setup of a 'bc' and submit the matching 'rq' to the block
349 * layer for io
350 */
351static void bsg_add_command(struct bsg_device *bd, request_queue_t *q,
352 struct bsg_command *bc, struct request *rq)
353{
354 rq->sense = bc->sense;
355 rq->sense_len = 0;
356
357 /*
358 * add bc command to busy queue and submit rq for io
359 */
360 bc->rq = rq;
361 bc->bio = rq->bio;
FUJITA Tomonori2c9ecdf2007-07-16 08:52:15 +0200362 if (rq->next_rq)
363 bc->bidi_bio = rq->next_rq->bio;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200364 bc->hdr.duration = jiffies;
365 spin_lock_irq(&bd->lock);
366 list_add_tail(&bc->list, &bd->busy_list);
367 spin_unlock_irq(&bd->lock);
368
369 dprintk("%s: queueing rq %p, bc %p\n", bd->name, rq, bc);
370
371 rq->end_io_data = bc;
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200372 blk_execute_rq_nowait(q, NULL, rq, 1, bsg_rq_end_io);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200373}
374
375static inline struct bsg_command *bsg_next_done_cmd(struct bsg_device *bd)
376{
377 struct bsg_command *bc = NULL;
378
379 spin_lock_irq(&bd->lock);
380 if (bd->done_cmds) {
381 bc = list_entry_bc(bd->done_list.next);
382 bsg_del_done_cmd(bd, bc);
383 }
384 spin_unlock_irq(&bd->lock);
385
386 return bc;
387}
388
389/*
390 * Get a finished command from the done list
391 */
FUJITA Tomonorie7d72172007-05-08 15:32:03 +0200392static struct bsg_command *bsg_get_done_cmd(struct bsg_device *bd)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200393{
394 struct bsg_command *bc;
395 int ret;
396
397 do {
398 bc = bsg_next_done_cmd(bd);
399 if (bc)
400 break;
401
FUJITA Tomonorie7d72172007-05-08 15:32:03 +0200402 if (!test_bit(BSG_F_BLOCK, &bd->flags)) {
403 bc = ERR_PTR(-EAGAIN);
404 break;
405 }
406
407 ret = wait_event_interruptible(bd->wq_done, bd->done_cmds);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200408 if (ret) {
FUJITA Tomonorie7d72172007-05-08 15:32:03 +0200409 bc = ERR_PTR(-ERESTARTSYS);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200410 break;
411 }
412 } while (1);
413
414 dprintk("%s: returning done %p\n", bd->name, bc);
415
416 return bc;
417}
418
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100419static int blk_complete_sgv4_hdr_rq(struct request *rq, struct sg_io_v4 *hdr,
FUJITA Tomonori2c9ecdf2007-07-16 08:52:15 +0200420 struct bio *bio, struct bio *bidi_bio)
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100421{
422 int ret = 0;
423
424 dprintk("rq %p bio %p %u\n", rq, bio, rq->errors);
425 /*
426 * fill in all the output members
427 */
428 hdr->device_status = status_byte(rq->errors);
429 hdr->transport_status = host_byte(rq->errors);
430 hdr->driver_status = driver_byte(rq->errors);
431 hdr->info = 0;
432 if (hdr->device_status || hdr->transport_status || hdr->driver_status)
433 hdr->info |= SG_INFO_CHECK;
434 hdr->din_resid = rq->data_len;
435 hdr->response_len = 0;
436
437 if (rq->sense_len && hdr->response) {
438 int len = min((unsigned int) hdr->max_response_len,
439 rq->sense_len);
440
441 ret = copy_to_user((void*)(unsigned long)hdr->response,
442 rq->sense, len);
443 if (!ret)
444 hdr->response_len = len;
445 else
446 ret = -EFAULT;
447 }
448
FUJITA Tomonori2c9ecdf2007-07-16 08:52:15 +0200449 if (rq->next_rq) {
450 blk_rq_unmap_user(bidi_bio);
451 blk_put_request(rq->next_rq);
452 }
453
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100454 blk_rq_unmap_user(bio);
455 blk_put_request(rq);
456
457 return ret;
458}
459
Jens Axboe3d6392c2007-07-09 12:38:05 +0200460static int bsg_complete_all_commands(struct bsg_device *bd)
461{
462 struct bsg_command *bc;
463 int ret, tret;
464
465 dprintk("%s: entered\n", bd->name);
466
467 set_bit(BSG_F_BLOCK, &bd->flags);
468
469 /*
470 * wait for all commands to complete
471 */
472 ret = 0;
473 do {
474 ret = bsg_io_schedule(bd, TASK_UNINTERRUPTIBLE);
475 /*
476 * look for -ENODATA specifically -- we'll sometimes get
477 * -ERESTARTSYS when we've taken a signal, but we can't
478 * return until we're done freeing the queue, so ignore
479 * it. The signal will get handled when we're done freeing
480 * the bsg_device.
481 */
482 } while (ret != -ENODATA);
483
484 /*
485 * discard done commands
486 */
487 ret = 0;
488 do {
FUJITA Tomonorie7d72172007-05-08 15:32:03 +0200489 spin_lock_irq(&bd->lock);
490 if (!bd->queued_cmds) {
491 spin_unlock_irq(&bd->lock);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200492 break;
493 }
FUJITA Tomonoriefba1a32007-06-07 13:24:06 +0200494 spin_unlock_irq(&bd->lock);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200495
FUJITA Tomonorie7d72172007-05-08 15:32:03 +0200496 bc = bsg_get_done_cmd(bd);
497 if (IS_ERR(bc))
498 break;
499
FUJITA Tomonori2c9ecdf2007-07-16 08:52:15 +0200500 tret = blk_complete_sgv4_hdr_rq(bc->rq, &bc->hdr, bc->bio,
501 bc->bidi_bio);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200502 if (!ret)
503 ret = tret;
504
505 bsg_free_command(bc);
506 } while (1);
507
508 return ret;
509}
510
Jens Axboe3d6392c2007-07-09 12:38:05 +0200511static ssize_t
FUJITA Tomonorie7d72172007-05-08 15:32:03 +0200512__bsg_read(char __user *buf, size_t count, struct bsg_device *bd,
513 const struct iovec *iov, ssize_t *bytes_read)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200514{
515 struct bsg_command *bc;
516 int nr_commands, ret;
517
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100518 if (count % sizeof(struct sg_io_v4))
Jens Axboe3d6392c2007-07-09 12:38:05 +0200519 return -EINVAL;
520
521 ret = 0;
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100522 nr_commands = count / sizeof(struct sg_io_v4);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200523 while (nr_commands) {
FUJITA Tomonorie7d72172007-05-08 15:32:03 +0200524 bc = bsg_get_done_cmd(bd);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200525 if (IS_ERR(bc)) {
526 ret = PTR_ERR(bc);
527 break;
528 }
529
530 /*
531 * this is the only case where we need to copy data back
532 * after completing the request. so do that here,
533 * bsg_complete_work() cannot do that for us
534 */
FUJITA Tomonori2c9ecdf2007-07-16 08:52:15 +0200535 ret = blk_complete_sgv4_hdr_rq(bc->rq, &bc->hdr, bc->bio,
536 bc->bidi_bio);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200537
538 if (copy_to_user(buf, (char *) &bc->hdr, sizeof(bc->hdr)))
539 ret = -EFAULT;
540
541 bsg_free_command(bc);
542
543 if (ret)
544 break;
545
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100546 buf += sizeof(struct sg_io_v4);
547 *bytes_read += sizeof(struct sg_io_v4);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200548 nr_commands--;
549 }
550
551 return ret;
552}
553
554static inline void bsg_set_block(struct bsg_device *bd, struct file *file)
555{
556 if (file->f_flags & O_NONBLOCK)
557 clear_bit(BSG_F_BLOCK, &bd->flags);
558 else
559 set_bit(BSG_F_BLOCK, &bd->flags);
560}
561
562static inline void bsg_set_write_perm(struct bsg_device *bd, struct file *file)
563{
564 if (file->f_mode & FMODE_WRITE)
565 set_bit(BSG_F_WRITE_PERM, &bd->flags);
566 else
567 clear_bit(BSG_F_WRITE_PERM, &bd->flags);
568}
569
570static inline int err_block_err(int ret)
571{
572 if (ret && ret != -ENOSPC && ret != -ENODATA && ret != -EAGAIN)
573 return 1;
574
575 return 0;
576}
577
578static ssize_t
579bsg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
580{
581 struct bsg_device *bd = file->private_data;
582 int ret;
583 ssize_t bytes_read;
584
FUJITA Tomonori9e69fbb2006-12-20 11:18:22 +0100585 dprintk("%s: read %Zd bytes\n", bd->name, count);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200586
587 bsg_set_block(bd, file);
588 bytes_read = 0;
FUJITA Tomonorie7d72172007-05-08 15:32:03 +0200589 ret = __bsg_read(buf, count, bd, NULL, &bytes_read);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200590 *ppos = bytes_read;
591
592 if (!bytes_read || (bytes_read && err_block_err(ret)))
593 bytes_read = ret;
594
595 return bytes_read;
596}
597
598static ssize_t __bsg_write(struct bsg_device *bd, const char __user *buf,
599 size_t count, ssize_t *bytes_read)
600{
601 struct bsg_command *bc;
602 struct request *rq;
603 int ret, nr_commands;
604
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100605 if (count % sizeof(struct sg_io_v4))
Jens Axboe3d6392c2007-07-09 12:38:05 +0200606 return -EINVAL;
607
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100608 nr_commands = count / sizeof(struct sg_io_v4);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200609 rq = NULL;
610 bc = NULL;
611 ret = 0;
612 while (nr_commands) {
613 request_queue_t *q = bd->queue;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200614
FUJITA Tomonorie7d72172007-05-08 15:32:03 +0200615 bc = bsg_alloc_command(bd);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200616 if (IS_ERR(bc)) {
617 ret = PTR_ERR(bc);
618 bc = NULL;
619 break;
620 }
621
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100622 bc->uhdr = (struct sg_io_v4 __user *) buf;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200623 if (copy_from_user(&bc->hdr, buf, sizeof(bc->hdr))) {
624 ret = -EFAULT;
625 break;
626 }
627
628 /*
629 * get a request, fill in the blanks, and add to request queue
630 */
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100631 rq = bsg_map_hdr(bd, &bc->hdr);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200632 if (IS_ERR(rq)) {
633 ret = PTR_ERR(rq);
634 rq = NULL;
635 break;
636 }
637
638 bsg_add_command(bd, q, bc, rq);
639 bc = NULL;
640 rq = NULL;
641 nr_commands--;
FUJITA Tomonori70e36ec2006-12-20 11:20:15 +0100642 buf += sizeof(struct sg_io_v4);
643 *bytes_read += sizeof(struct sg_io_v4);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200644 }
645
Jens Axboe3d6392c2007-07-09 12:38:05 +0200646 if (bc)
647 bsg_free_command(bc);
648
649 return ret;
650}
651
652static ssize_t
653bsg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
654{
655 struct bsg_device *bd = file->private_data;
656 ssize_t bytes_read;
657 int ret;
658
FUJITA Tomonori9e69fbb2006-12-20 11:18:22 +0100659 dprintk("%s: write %Zd bytes\n", bd->name, count);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200660
661 bsg_set_block(bd, file);
662 bsg_set_write_perm(bd, file);
663
664 bytes_read = 0;
665 ret = __bsg_write(bd, buf, count, &bytes_read);
666 *ppos = bytes_read;
667
668 /*
669 * return bytes written on non-fatal errors
670 */
671 if (!bytes_read || (bytes_read && err_block_err(ret)))
672 bytes_read = ret;
673
FUJITA Tomonori9e69fbb2006-12-20 11:18:22 +0100674 dprintk("%s: returning %Zd\n", bd->name, bytes_read);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200675 return bytes_read;
676}
677
Jens Axboe3d6392c2007-07-09 12:38:05 +0200678static struct bsg_device *bsg_alloc_device(void)
679{
Jens Axboe3d6392c2007-07-09 12:38:05 +0200680 struct bsg_device *bd;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200681
682 bd = kzalloc(sizeof(struct bsg_device), GFP_KERNEL);
683 if (unlikely(!bd))
684 return NULL;
685
686 spin_lock_init(&bd->lock);
687
Jens Axboe5309cb32007-01-23 16:24:41 +0100688 bd->max_queue = BSG_DEFAULT_CMDS;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200689
690 INIT_LIST_HEAD(&bd->busy_list);
691 INIT_LIST_HEAD(&bd->done_list);
692 INIT_HLIST_NODE(&bd->dev_list);
693
694 init_waitqueue_head(&bd->wq_free);
695 init_waitqueue_head(&bd->wq_done);
696 return bd;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200697}
698
699static int bsg_put_device(struct bsg_device *bd)
700{
701 int ret = 0;
702
703 mutex_lock(&bsg_mutex);
704
705 if (!atomic_dec_and_test(&bd->ref_count))
706 goto out;
707
708 dprintk("%s: tearing down\n", bd->name);
709
710 /*
711 * close can always block
712 */
713 set_bit(BSG_F_BLOCK, &bd->flags);
714
715 /*
716 * correct error detection baddies here again. it's the responsibility
717 * of the app to properly reap commands before close() if it wants
718 * fool-proof error detection
719 */
720 ret = bsg_complete_all_commands(bd);
721
722 blk_put_queue(bd->queue);
723 hlist_del(&bd->dev_list);
Jens Axboe5309cb32007-01-23 16:24:41 +0100724 kfree(bd);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200725out:
726 mutex_unlock(&bsg_mutex);
727 return ret;
728}
729
730static struct bsg_device *bsg_add_device(struct inode *inode,
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200731 struct request_queue *rq,
Jens Axboe3d6392c2007-07-09 12:38:05 +0200732 struct file *file)
733{
734 struct bsg_device *bd = NULL;
735#ifdef BSG_DEBUG
736 unsigned char buf[32];
737#endif
738
739 bd = bsg_alloc_device();
740 if (!bd)
741 return ERR_PTR(-ENOMEM);
742
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200743 bd->queue = rq;
744 kobject_get(&rq->kobj);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200745 bsg_set_block(bd, file);
746
747 atomic_set(&bd->ref_count, 1);
748 bd->minor = iminor(inode);
749 mutex_lock(&bsg_mutex);
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200750 hlist_add_head(&bd->dev_list, &bsg_device_list[bsg_list_idx(bd->minor)]);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200751
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200752 strncpy(bd->name, rq->bsg_dev.class_dev->class_id, sizeof(bd->name) - 1);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200753 dprintk("bound to <%s>, max queue %d\n",
FUJITA Tomonori9e69fbb2006-12-20 11:18:22 +0100754 format_dev_t(buf, inode->i_rdev), bd->max_queue);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200755
756 mutex_unlock(&bsg_mutex);
757 return bd;
758}
759
760static struct bsg_device *__bsg_get_device(int minor)
761{
762 struct hlist_head *list = &bsg_device_list[bsg_list_idx(minor)];
763 struct bsg_device *bd = NULL;
764 struct hlist_node *entry;
765
766 mutex_lock(&bsg_mutex);
767
768 hlist_for_each(entry, list) {
769 bd = hlist_entry(entry, struct bsg_device, dev_list);
770 if (bd->minor == minor) {
771 atomic_inc(&bd->ref_count);
772 break;
773 }
774
775 bd = NULL;
776 }
777
778 mutex_unlock(&bsg_mutex);
779 return bd;
780}
781
782static struct bsg_device *bsg_get_device(struct inode *inode, struct file *file)
783{
784 struct bsg_device *bd = __bsg_get_device(iminor(inode));
785 struct bsg_class_device *bcd, *__bcd;
786
787 if (bd)
788 return bd;
789
790 /*
791 * find the class device
792 */
793 bcd = NULL;
794 mutex_lock(&bsg_mutex);
795 list_for_each_entry(__bcd, &bsg_class_list, list) {
796 if (__bcd->minor == iminor(inode)) {
797 bcd = __bcd;
798 break;
799 }
800 }
801 mutex_unlock(&bsg_mutex);
802
803 if (!bcd)
804 return ERR_PTR(-ENODEV);
805
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200806 return bsg_add_device(inode, bcd->queue, file);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200807}
808
809static int bsg_open(struct inode *inode, struct file *file)
810{
811 struct bsg_device *bd = bsg_get_device(inode, file);
812
813 if (IS_ERR(bd))
814 return PTR_ERR(bd);
815
816 file->private_data = bd;
817 return 0;
818}
819
820static int bsg_release(struct inode *inode, struct file *file)
821{
822 struct bsg_device *bd = file->private_data;
823
824 file->private_data = NULL;
825 return bsg_put_device(bd);
826}
827
828static unsigned int bsg_poll(struct file *file, poll_table *wait)
829{
830 struct bsg_device *bd = file->private_data;
831 unsigned int mask = 0;
832
833 poll_wait(file, &bd->wq_done, wait);
834 poll_wait(file, &bd->wq_free, wait);
835
836 spin_lock_irq(&bd->lock);
837 if (!list_empty(&bd->done_list))
838 mask |= POLLIN | POLLRDNORM;
839 if (bd->queued_cmds >= bd->max_queue)
840 mask |= POLLOUT;
841 spin_unlock_irq(&bd->lock);
842
843 return mask;
844}
845
846static int
847bsg_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
848 unsigned long arg)
849{
850 struct bsg_device *bd = file->private_data;
851 int __user *uarg = (int __user *) arg;
852
853 if (!bd)
854 return -ENXIO;
855
856 switch (cmd) {
857 /*
858 * our own ioctls
859 */
860 case SG_GET_COMMAND_Q:
861 return put_user(bd->max_queue, uarg);
Jens Axboe5309cb32007-01-23 16:24:41 +0100862 case SG_SET_COMMAND_Q: {
Jens Axboe3d6392c2007-07-09 12:38:05 +0200863 int queue;
864
865 if (get_user(queue, uarg))
866 return -EFAULT;
Jens Axboe5309cb32007-01-23 16:24:41 +0100867 if (queue < 1)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200868 return -EINVAL;
869
Jens Axboe5309cb32007-01-23 16:24:41 +0100870 spin_lock_irq(&bd->lock);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200871 bd->max_queue = queue;
Jens Axboe5309cb32007-01-23 16:24:41 +0100872 spin_unlock_irq(&bd->lock);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200873 return 0;
874 }
875
876 /*
877 * SCSI/sg ioctls
878 */
879 case SG_GET_VERSION_NUM:
880 case SCSI_IOCTL_GET_IDLUN:
881 case SCSI_IOCTL_GET_BUS_NUMBER:
882 case SG_SET_TIMEOUT:
883 case SG_GET_TIMEOUT:
884 case SG_GET_RESERVED_SIZE:
885 case SG_SET_RESERVED_SIZE:
886 case SG_EMULATED_HOST:
Jens Axboe3d6392c2007-07-09 12:38:05 +0200887 case SCSI_IOCTL_SEND_COMMAND: {
888 void __user *uarg = (void __user *) arg;
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200889 return scsi_cmd_ioctl(file, bd->queue, NULL, cmd, uarg);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200890 }
FUJITA Tomonori10e88552006-12-20 11:20:57 +0100891 case SG_IO: {
892 struct request *rq;
FUJITA Tomonori2c9ecdf2007-07-16 08:52:15 +0200893 struct bio *bio, *bidi_bio = NULL;
FUJITA Tomonori10e88552006-12-20 11:20:57 +0100894 struct sg_io_v4 hdr;
895
896 if (copy_from_user(&hdr, uarg, sizeof(hdr)))
897 return -EFAULT;
898
899 rq = bsg_map_hdr(bd, &hdr);
900 if (IS_ERR(rq))
901 return PTR_ERR(rq);
902
903 bio = rq->bio;
FUJITA Tomonori2c9ecdf2007-07-16 08:52:15 +0200904 if (rq->next_rq)
905 bidi_bio = rq->next_rq->bio;
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200906 blk_execute_rq(bd->queue, NULL, rq, 0);
FUJITA Tomonori2c9ecdf2007-07-16 08:52:15 +0200907 blk_complete_sgv4_hdr_rq(rq, &hdr, bio, bidi_bio);
FUJITA Tomonori10e88552006-12-20 11:20:57 +0100908
909 if (copy_to_user(uarg, &hdr, sizeof(hdr)))
910 return -EFAULT;
Jens Axboeb711afa2006-12-20 11:25:23 +0100911
912 return 0;
FUJITA Tomonori10e88552006-12-20 11:20:57 +0100913 }
Jens Axboe3d6392c2007-07-09 12:38:05 +0200914 /*
915 * block device ioctls
916 */
917 default:
918#if 0
919 return ioctl_by_bdev(bd->bdev, cmd, arg);
920#else
921 return -ENOTTY;
922#endif
923 }
924}
925
926static struct file_operations bsg_fops = {
927 .read = bsg_read,
928 .write = bsg_write,
929 .poll = bsg_poll,
930 .open = bsg_open,
931 .release = bsg_release,
932 .ioctl = bsg_ioctl,
933 .owner = THIS_MODULE,
934};
935
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200936void bsg_unregister_queue(struct request_queue *q)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200937{
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200938 struct bsg_class_device *bcd = &q->bsg_dev;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200939
940 if (!bcd->class_dev)
941 return;
942
943 mutex_lock(&bsg_mutex);
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200944 sysfs_remove_link(&q->kobj, "bsg");
Jens Axboe3d6392c2007-07-09 12:38:05 +0200945 class_device_destroy(bsg_class, MKDEV(BSG_MAJOR, bcd->minor));
946 bcd->class_dev = NULL;
947 list_del_init(&bcd->list);
FUJITA Tomonori292b7f22007-03-28 13:29:58 +0200948 bsg_device_nr--;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200949 mutex_unlock(&bsg_mutex);
950}
FUJITA Tomonori4cf07232007-03-30 11:19:39 +0200951EXPORT_SYMBOL_GPL(bsg_unregister_queue);
Jens Axboe3d6392c2007-07-09 12:38:05 +0200952
FUJITA Tomonori4cf07232007-03-30 11:19:39 +0200953int bsg_register_queue(struct request_queue *q, const char *name)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200954{
FUJITA Tomonori292b7f22007-03-28 13:29:58 +0200955 struct bsg_class_device *bcd, *__bcd;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200956 dev_t dev;
FUJITA Tomonori292b7f22007-03-28 13:29:58 +0200957 int ret = -EMFILE;
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +0200958 struct class_device *class_dev = NULL;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200959
960 /*
961 * we need a proper transport to send commands, not a stacked device
962 */
963 if (!q->request_fn)
964 return 0;
965
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200966 bcd = &q->bsg_dev;
Jens Axboe3d6392c2007-07-09 12:38:05 +0200967 memset(bcd, 0, sizeof(*bcd));
968 INIT_LIST_HEAD(&bcd->list);
969
970 mutex_lock(&bsg_mutex);
FUJITA Tomonori292b7f22007-03-28 13:29:58 +0200971 if (bsg_device_nr == BSG_MAX_DEVS) {
972 printk(KERN_ERR "bsg: too many bsg devices\n");
973 goto err;
974 }
975
976retry:
977 list_for_each_entry(__bcd, &bsg_class_list, list) {
978 if (__bcd->minor == bsg_minor_idx) {
979 bsg_minor_idx++;
980 if (bsg_minor_idx == BSG_MAX_DEVS)
981 bsg_minor_idx = 0;
982 goto retry;
983 }
984 }
985
986 bcd->minor = bsg_minor_idx++;
987 if (bsg_minor_idx == BSG_MAX_DEVS)
988 bsg_minor_idx = 0;
989
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200990 bcd->queue = q;
FUJITA Tomonori292b7f22007-03-28 13:29:58 +0200991 dev = MKDEV(BSG_MAJOR, bcd->minor);
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +0200992 class_dev = class_device_create(bsg_class, NULL, dev, bcd->dev, "%s", name);
993 if (IS_ERR(class_dev)) {
994 ret = PTR_ERR(class_dev);
Jens Axboe264a0472007-01-23 16:30:17 +0100995 goto err;
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +0200996 }
997 bcd->class_dev = class_dev;
998
999 if (q->kobj.dentry) {
1000 ret = sysfs_create_link(&q->kobj, &bcd->class_dev->kobj, "bsg");
1001 if (ret)
1002 goto err;
1003 }
1004
Jens Axboe3d6392c2007-07-09 12:38:05 +02001005 list_add_tail(&bcd->list, &bsg_class_list);
FUJITA Tomonori292b7f22007-03-28 13:29:58 +02001006 bsg_device_nr++;
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +02001007
Jens Axboe3d6392c2007-07-09 12:38:05 +02001008 mutex_unlock(&bsg_mutex);
1009 return 0;
Jens Axboe264a0472007-01-23 16:30:17 +01001010err:
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +02001011 if (class_dev)
Jens Axboe264a0472007-01-23 16:30:17 +01001012 class_device_destroy(bsg_class, MKDEV(BSG_MAJOR, bcd->minor));
1013 mutex_unlock(&bsg_mutex);
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +02001014 return ret;
Jens Axboe3d6392c2007-07-09 12:38:05 +02001015}
FUJITA Tomonori4cf07232007-03-30 11:19:39 +02001016EXPORT_SYMBOL_GPL(bsg_register_queue);
Jens Axboe3d6392c2007-07-09 12:38:05 +02001017
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +02001018static int bsg_add(struct class_device *cl_dev, struct class_interface *cl_intf)
1019{
1020 int ret;
1021 struct scsi_device *sdp = to_scsi_device(cl_dev->dev);
1022 struct request_queue *rq = sdp->request_queue;
1023
1024 if (rq->kobj.parent)
1025 ret = bsg_register_queue(rq, kobject_name(rq->kobj.parent));
1026 else
1027 ret = bsg_register_queue(rq, kobject_name(&sdp->sdev_gendev.kobj));
1028 return ret;
1029}
1030
1031static void bsg_remove(struct class_device *cl_dev, struct class_interface *cl_intf)
1032{
1033 bsg_unregister_queue(to_scsi_device(cl_dev->dev)->request_queue);
1034}
1035
1036static struct class_interface bsg_intf = {
1037 .add = bsg_add,
1038 .remove = bsg_remove,
1039};
1040
FUJITA Tomonori292b7f22007-03-28 13:29:58 +02001041static struct cdev bsg_cdev = {
1042 .kobj = {.name = "bsg", },
1043 .owner = THIS_MODULE,
1044};
1045
Jens Axboe3d6392c2007-07-09 12:38:05 +02001046static int __init bsg_init(void)
1047{
1048 int ret, i;
1049
Jens Axboe5309cb32007-01-23 16:24:41 +01001050 bsg_cmd_cachep = kmem_cache_create("bsg_cmd",
1051 sizeof(struct bsg_command), 0, 0, NULL, NULL);
1052 if (!bsg_cmd_cachep) {
1053 printk(KERN_ERR "bsg: failed creating slab cache\n");
1054 return -ENOMEM;
1055 }
1056
Jens Axboe3d6392c2007-07-09 12:38:05 +02001057 for (i = 0; i < BSG_LIST_SIZE; i++)
1058 INIT_HLIST_HEAD(&bsg_device_list[i]);
1059
1060 bsg_class = class_create(THIS_MODULE, "bsg");
Jens Axboe5309cb32007-01-23 16:24:41 +01001061 if (IS_ERR(bsg_class)) {
1062 kmem_cache_destroy(bsg_cmd_cachep);
Jens Axboe3d6392c2007-07-09 12:38:05 +02001063 return PTR_ERR(bsg_class);
Jens Axboe5309cb32007-01-23 16:24:41 +01001064 }
Jens Axboe3d6392c2007-07-09 12:38:05 +02001065
FUJITA Tomonori292b7f22007-03-28 13:29:58 +02001066 ret = register_chrdev_region(MKDEV(BSG_MAJOR, 0), BSG_MAX_DEVS, "bsg");
Jens Axboe3d6392c2007-07-09 12:38:05 +02001067 if (ret) {
Jens Axboe5309cb32007-01-23 16:24:41 +01001068 kmem_cache_destroy(bsg_cmd_cachep);
Jens Axboe3d6392c2007-07-09 12:38:05 +02001069 class_destroy(bsg_class);
1070 return ret;
1071 }
1072
FUJITA Tomonori292b7f22007-03-28 13:29:58 +02001073 cdev_init(&bsg_cdev, &bsg_fops);
1074 ret = cdev_add(&bsg_cdev, MKDEV(BSG_MAJOR, 0), BSG_MAX_DEVS);
1075 if (ret) {
1076 kmem_cache_destroy(bsg_cmd_cachep);
1077 class_destroy(bsg_class);
1078 unregister_chrdev_region(MKDEV(BSG_MAJOR, 0), BSG_MAX_DEVS);
1079 return ret;
1080 }
1081
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +02001082 ret = scsi_register_interface(&bsg_intf);
1083 if (ret) {
1084 printk(KERN_ERR "bsg: failed register scsi interface %d\n", ret);
1085 kmem_cache_destroy(bsg_cmd_cachep);
1086 class_destroy(bsg_class);
1087 unregister_chrdev(BSG_MAJOR, "bsg");
1088 return ret;
1089 }
1090
Jens Axboe3d6392c2007-07-09 12:38:05 +02001091 printk(KERN_INFO "%s loaded\n", bsg_version);
1092 return 0;
1093}
1094
1095MODULE_AUTHOR("Jens Axboe");
1096MODULE_DESCRIPTION("Block layer SGSI generic (sg) driver");
1097MODULE_LICENSE("GPL");
1098
FUJITA Tomonori4e2872d2007-03-28 13:29:24 +02001099device_initcall(bsg_init);