blob: 31a0b605f261457f9d07c0c49c04d0b16e958796 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Network block device - make block devices work over TCP
3 *
4 * Note that you can not swap over this thing, yet. Seems to work but
5 * deadlocks sometimes - you can not swap over TCP in general.
6 *
7 * Copyright 1997-2000 Pavel Machek <pavel@ucw.cz>
8 * Parts copyright 2001 Steven Whitehouse <steve@chygwyn.com>
9 *
Pavel Machekdbf492d2006-06-25 05:47:42 -070010 * This file is released under GPLv2 or later.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
Pavel Machekdbf492d2006-06-25 05:47:42 -070012 * (part of code stolen from loop.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
15#include <linux/major.h>
16
17#include <linux/blkdev.h>
18#include <linux/module.h>
19#include <linux/init.h>
20#include <linux/sched.h>
21#include <linux/fs.h>
22#include <linux/bio.h>
23#include <linux/stat.h>
24#include <linux/errno.h>
25#include <linux/file.h>
26#include <linux/ioctl.h>
Herbert Xu4b2f0262006-01-06 00:09:47 -080027#include <linux/compiler.h>
28#include <linux/err.h>
29#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <net/sock.h>
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/uaccess.h>
Herbert Xu4b2f0262006-01-06 00:09:47 -080033#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/types.h>
35
36#include <linux/nbd.h>
37
38#define LO_MAGIC 0x68797548
39
40#ifdef NDEBUG
41#define dprintk(flags, fmt...)
42#else /* NDEBUG */
43#define dprintk(flags, fmt...) do { \
44 if (debugflags & (flags)) printk(KERN_DEBUG fmt); \
45} while (0)
46#define DBG_IOCTL 0x0004
47#define DBG_INIT 0x0010
48#define DBG_EXIT 0x0020
49#define DBG_BLKDEV 0x0100
50#define DBG_RX 0x0200
51#define DBG_TX 0x0400
52static unsigned int debugflags;
53#endif /* NDEBUG */
54
Ingo van Lil9c7a4162006-07-01 04:36:36 -070055static unsigned int nbds_max = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static struct nbd_device nbd_dev[MAX_NBD];
57
58/*
59 * Use just one lock (or at most 1 per NIC). Two arguments for this:
60 * 1. Each NIC is essentially a synchronization point for all servers
61 * accessed through that NIC so there's no need to have more locks
62 * than NICs anyway.
63 * 2. More locks lead to more "Dirty cache line bouncing" which will slow
64 * down each lock to the point where they're actually slower than just
65 * a single lock.
66 * Thanks go to Jens Axboe and Al Viro for their LKML emails explaining this!
67 */
68static DEFINE_SPINLOCK(nbd_lock);
69
70#ifndef NDEBUG
71static const char *ioctl_cmd_to_ascii(int cmd)
72{
73 switch (cmd) {
74 case NBD_SET_SOCK: return "set-sock";
75 case NBD_SET_BLKSIZE: return "set-blksize";
76 case NBD_SET_SIZE: return "set-size";
77 case NBD_DO_IT: return "do-it";
78 case NBD_CLEAR_SOCK: return "clear-sock";
79 case NBD_CLEAR_QUE: return "clear-que";
80 case NBD_PRINT_DEBUG: return "print-debug";
81 case NBD_SET_SIZE_BLOCKS: return "set-size-blocks";
82 case NBD_DISCONNECT: return "disconnect";
83 case BLKROSET: return "set-read-only";
84 case BLKFLSBUF: return "flush-buffer-cache";
85 }
86 return "unknown";
87}
88
89static const char *nbdcmd_to_ascii(int cmd)
90{
91 switch (cmd) {
92 case NBD_CMD_READ: return "read";
93 case NBD_CMD_WRITE: return "write";
94 case NBD_CMD_DISC: return "disconnect";
95 }
96 return "invalid";
97}
98#endif /* NDEBUG */
99
100static void nbd_end_request(struct request *req)
101{
102 int uptodate = (req->errors == 0) ? 1 : 0;
103 request_queue_t *q = req->q;
104 unsigned long flags;
105
106 dprintk(DBG_BLKDEV, "%s: request %p: %s\n", req->rq_disk->disk_name,
107 req, uptodate? "done": "failed");
108
109 spin_lock_irqsave(q->queue_lock, flags);
110 if (!end_that_request_first(req, uptodate, req->nr_sectors)) {
Tejun Heo8ffdc652006-01-06 09:49:03 +0100111 end_that_request_last(req, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113 spin_unlock_irqrestore(q->queue_lock, flags);
114}
115
116/*
117 * Send or receive packet.
118 */
119static int sock_xmit(struct socket *sock, int send, void *buf, int size,
120 int msg_flags)
121{
122 int result;
123 struct msghdr msg;
124 struct kvec iov;
125 unsigned long flags;
126 sigset_t oldset;
127
128 /* Allow interception of SIGKILL only
129 * Don't allow other signals to interrupt the transmission */
130 spin_lock_irqsave(&current->sighand->siglock, flags);
131 oldset = current->blocked;
132 sigfillset(&current->blocked);
133 sigdelsetmask(&current->blocked, sigmask(SIGKILL));
134 recalc_sigpending();
135 spin_unlock_irqrestore(&current->sighand->siglock, flags);
136
137 do {
138 sock->sk->sk_allocation = GFP_NOIO;
139 iov.iov_base = buf;
140 iov.iov_len = size;
141 msg.msg_name = NULL;
142 msg.msg_namelen = 0;
143 msg.msg_control = NULL;
144 msg.msg_controllen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 msg.msg_flags = msg_flags | MSG_NOSIGNAL;
146
147 if (send)
148 result = kernel_sendmsg(sock, &msg, &iov, 1, size);
149 else
150 result = kernel_recvmsg(sock, &msg, &iov, 1, size, 0);
151
152 if (signal_pending(current)) {
153 siginfo_t info;
154 spin_lock_irqsave(&current->sighand->siglock, flags);
155 printk(KERN_WARNING "nbd (pid %d: %s) got signal %d\n",
156 current->pid, current->comm,
157 dequeue_signal(current, &current->blocked, &info));
158 spin_unlock_irqrestore(&current->sighand->siglock, flags);
159 result = -EINTR;
160 break;
161 }
162
163 if (result <= 0) {
164 if (result == 0)
165 result = -EPIPE; /* short read */
166 break;
167 }
168 size -= result;
169 buf += result;
170 } while (size > 0);
171
172 spin_lock_irqsave(&current->sighand->siglock, flags);
173 current->blocked = oldset;
174 recalc_sigpending();
175 spin_unlock_irqrestore(&current->sighand->siglock, flags);
176
177 return result;
178}
179
180static inline int sock_send_bvec(struct socket *sock, struct bio_vec *bvec,
181 int flags)
182{
183 int result;
184 void *kaddr = kmap(bvec->bv_page);
185 result = sock_xmit(sock, 1, kaddr + bvec->bv_offset, bvec->bv_len,
186 flags);
187 kunmap(bvec->bv_page);
188 return result;
189}
190
191static int nbd_send_req(struct nbd_device *lo, struct request *req)
192{
193 int result, i, flags;
194 struct nbd_request request;
195 unsigned long size = req->nr_sectors << 9;
196 struct socket *sock = lo->sock;
197
198 request.magic = htonl(NBD_REQUEST_MAGIC);
199 request.type = htonl(nbd_cmd(req));
200 request.from = cpu_to_be64((u64) req->sector << 9);
201 request.len = htonl(size);
202 memcpy(request.handle, &req, sizeof(req));
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 dprintk(DBG_TX, "%s: request %p: sending control (%s@%llu,%luB)\n",
205 lo->disk->disk_name, req,
206 nbdcmd_to_ascii(nbd_cmd(req)),
207 (unsigned long long)req->sector << 9,
208 req->nr_sectors << 9);
209 result = sock_xmit(sock, 1, &request, sizeof(request),
210 (nbd_cmd(req) == NBD_CMD_WRITE)? MSG_MORE: 0);
211 if (result <= 0) {
212 printk(KERN_ERR "%s: Send control failed (result %d)\n",
213 lo->disk->disk_name, result);
214 goto error_out;
215 }
216
217 if (nbd_cmd(req) == NBD_CMD_WRITE) {
218 struct bio *bio;
219 /*
220 * we are really probing at internals to determine
221 * whether to set MSG_MORE or not...
222 */
223 rq_for_each_bio(bio, req) {
224 struct bio_vec *bvec;
225 bio_for_each_segment(bvec, bio, i) {
226 flags = 0;
227 if ((i < (bio->bi_vcnt - 1)) || bio->bi_next)
228 flags = MSG_MORE;
229 dprintk(DBG_TX, "%s: request %p: sending %d bytes data\n",
230 lo->disk->disk_name, req,
231 bvec->bv_len);
232 result = sock_send_bvec(sock, bvec, flags);
233 if (result <= 0) {
234 printk(KERN_ERR "%s: Send data failed (result %d)\n",
235 lo->disk->disk_name,
236 result);
237 goto error_out;
238 }
239 }
240 }
241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return 0;
243
244error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return 1;
246}
247
248static struct request *nbd_find_request(struct nbd_device *lo, char *handle)
249{
250 struct request *req;
251 struct list_head *tmp;
252 struct request *xreq;
Herbert Xu4b2f0262006-01-06 00:09:47 -0800253 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 memcpy(&xreq, handle, sizeof(xreq));
256
Herbert Xu4b2f0262006-01-06 00:09:47 -0800257 err = wait_event_interruptible(lo->active_wq, lo->active_req != xreq);
258 if (unlikely(err))
259 goto out;
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 spin_lock(&lo->queue_lock);
262 list_for_each(tmp, &lo->queue_head) {
263 req = list_entry(tmp, struct request, queuelist);
264 if (req != xreq)
265 continue;
266 list_del_init(&req->queuelist);
267 spin_unlock(&lo->queue_lock);
268 return req;
269 }
270 spin_unlock(&lo->queue_lock);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800271
272 err = -ENOENT;
273
274out:
275 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278static inline int sock_recv_bvec(struct socket *sock, struct bio_vec *bvec)
279{
280 int result;
281 void *kaddr = kmap(bvec->bv_page);
282 result = sock_xmit(sock, 0, kaddr + bvec->bv_offset, bvec->bv_len,
283 MSG_WAITALL);
284 kunmap(bvec->bv_page);
285 return result;
286}
287
288/* NULL returned = something went wrong, inform userspace */
289static struct request *nbd_read_stat(struct nbd_device *lo)
290{
291 int result;
292 struct nbd_reply reply;
293 struct request *req;
294 struct socket *sock = lo->sock;
295
296 reply.magic = 0;
297 result = sock_xmit(sock, 0, &reply, sizeof(reply), MSG_WAITALL);
298 if (result <= 0) {
299 printk(KERN_ERR "%s: Receive control failed (result %d)\n",
300 lo->disk->disk_name, result);
301 goto harderror;
302 }
Michal Feixe4b57e02006-07-30 03:03:31 -0700303
304 if (ntohl(reply.magic) != NBD_REPLY_MAGIC) {
305 printk(KERN_ERR "%s: Wrong magic (0x%lx)\n",
306 lo->disk->disk_name,
307 (unsigned long)ntohl(reply.magic));
308 result = -EPROTO;
309 goto harderror;
310 }
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 req = nbd_find_request(lo, reply.handle);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800313 if (unlikely(IS_ERR(req))) {
314 result = PTR_ERR(req);
315 if (result != -ENOENT)
316 goto harderror;
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 printk(KERN_ERR "%s: Unexpected reply (%p)\n",
319 lo->disk->disk_name, reply.handle);
320 result = -EBADR;
321 goto harderror;
322 }
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (ntohl(reply.error)) {
325 printk(KERN_ERR "%s: Other side returned error (%d)\n",
326 lo->disk->disk_name, ntohl(reply.error));
327 req->errors++;
328 return req;
329 }
330
331 dprintk(DBG_RX, "%s: request %p: got reply\n",
332 lo->disk->disk_name, req);
333 if (nbd_cmd(req) == NBD_CMD_READ) {
334 int i;
335 struct bio *bio;
336 rq_for_each_bio(bio, req) {
337 struct bio_vec *bvec;
338 bio_for_each_segment(bvec, bio, i) {
339 result = sock_recv_bvec(sock, bvec);
340 if (result <= 0) {
341 printk(KERN_ERR "%s: Receive data failed (result %d)\n",
342 lo->disk->disk_name,
343 result);
344 goto harderror;
345 }
346 dprintk(DBG_RX, "%s: request %p: got %d bytes data\n",
347 lo->disk->disk_name, req, bvec->bv_len);
348 }
349 }
350 }
351 return req;
352harderror:
353 lo->harderror = result;
354 return NULL;
355}
356
357static void nbd_do_it(struct nbd_device *lo)
358{
359 struct request *req;
360
361 BUG_ON(lo->magic != LO_MAGIC);
362
363 while ((req = nbd_read_stat(lo)) != NULL)
364 nbd_end_request(req);
365 return;
366}
367
368static void nbd_clear_que(struct nbd_device *lo)
369{
370 struct request *req;
371
372 BUG_ON(lo->magic != LO_MAGIC);
373
Herbert Xu4b2f0262006-01-06 00:09:47 -0800374 /*
375 * Because we have set lo->sock to NULL under the tx_lock, all
376 * modifications to the list must have completed by now. For
377 * the same reason, the active_req must be NULL.
378 *
379 * As a consequence, we don't need to take the spin lock while
380 * purging the list here.
381 */
382 BUG_ON(lo->sock);
383 BUG_ON(lo->active_req);
384
385 while (!list_empty(&lo->queue_head)) {
386 req = list_entry(lo->queue_head.next, struct request,
387 queuelist);
388 list_del_init(&req->queuelist);
389 req->errors++;
390 nbd_end_request(req);
391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
394/*
395 * We always wait for result of write, for now. It would be nice to make it optional
396 * in future
397 * if ((req->cmd == WRITE) && (lo->flags & NBD_WRITE_NOCHK))
398 * { printk( "Warning: Ignoring result!\n"); nbd_end_request( req ); }
399 */
400
401static void do_nbd_request(request_queue_t * q)
402{
403 struct request *req;
404
405 while ((req = elv_next_request(q)) != NULL) {
406 struct nbd_device *lo;
407
408 blkdev_dequeue_request(req);
409 dprintk(DBG_BLKDEV, "%s: request %p: dequeued (flags=%lx)\n",
410 req->rq_disk->disk_name, req, req->flags);
411
412 if (!(req->flags & REQ_CMD))
413 goto error_out;
414
415 lo = req->rq_disk->private_data;
416
417 BUG_ON(lo->magic != LO_MAGIC);
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 nbd_cmd(req) = NBD_CMD_READ;
420 if (rq_data_dir(req) == WRITE) {
421 nbd_cmd(req) = NBD_CMD_WRITE;
422 if (lo->flags & NBD_READ_ONLY) {
423 printk(KERN_ERR "%s: Write on read-only\n",
424 lo->disk->disk_name);
425 goto error_out;
426 }
427 }
428
429 req->errors = 0;
430 spin_unlock_irq(q->queue_lock);
431
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800432 mutex_lock(&lo->tx_lock);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800433 if (unlikely(!lo->sock)) {
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800434 mutex_unlock(&lo->tx_lock);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800435 printk(KERN_ERR "%s: Attempted send on closed socket\n",
436 lo->disk->disk_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 req->errors++;
438 nbd_end_request(req);
439 spin_lock_irq(q->queue_lock);
440 continue;
441 }
442
Herbert Xu4b2f0262006-01-06 00:09:47 -0800443 lo->active_req = req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 if (nbd_send_req(lo, req) != 0) {
446 printk(KERN_ERR "%s: Request send failed\n",
447 lo->disk->disk_name);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800448 req->errors++;
449 nbd_end_request(req);
450 } else {
451 spin_lock(&lo->queue_lock);
452 list_add(&req->queuelist, &lo->queue_head);
453 spin_unlock(&lo->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455
Herbert Xu4b2f0262006-01-06 00:09:47 -0800456 lo->active_req = NULL;
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800457 mutex_unlock(&lo->tx_lock);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800458 wake_up_all(&lo->active_wq);
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 spin_lock_irq(q->queue_lock);
461 continue;
462
463error_out:
464 req->errors++;
465 spin_unlock(q->queue_lock);
466 nbd_end_request(req);
467 spin_lock(q->queue_lock);
468 }
469 return;
470}
471
472static int nbd_ioctl(struct inode *inode, struct file *file,
473 unsigned int cmd, unsigned long arg)
474{
475 struct nbd_device *lo = inode->i_bdev->bd_disk->private_data;
476 int error;
477 struct request sreq ;
478
479 if (!capable(CAP_SYS_ADMIN))
480 return -EPERM;
481
482 BUG_ON(lo->magic != LO_MAGIC);
483
484 /* Anyone capable of this syscall can do *real bad* things */
485 dprintk(DBG_IOCTL, "%s: nbd_ioctl cmd=%s(0x%x) arg=%lu\n",
486 lo->disk->disk_name, ioctl_cmd_to_ascii(cmd), cmd, arg);
487
488 switch (cmd) {
489 case NBD_DISCONNECT:
490 printk(KERN_INFO "%s: NBD_DISCONNECT\n", lo->disk->disk_name);
491 sreq.flags = REQ_SPECIAL;
492 nbd_cmd(&sreq) = NBD_CMD_DISC;
493 /*
494 * Set these to sane values in case server implementation
495 * fails to check the request type first and also to keep
496 * debugging output cleaner.
497 */
498 sreq.sector = 0;
499 sreq.nr_sectors = 0;
500 if (!lo->sock)
501 return -EINVAL;
502 nbd_send_req(lo, &sreq);
503 return 0;
504
505 case NBD_CLEAR_SOCK:
506 error = 0;
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800507 mutex_lock(&lo->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 lo->sock = NULL;
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800509 mutex_unlock(&lo->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 file = lo->file;
511 lo->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 nbd_clear_que(lo);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800513 BUG_ON(!list_empty(&lo->queue_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (file)
515 fput(file);
516 return error;
517 case NBD_SET_SOCK:
518 if (lo->file)
519 return -EBUSY;
520 error = -EINVAL;
521 file = fget(arg);
522 if (file) {
523 inode = file->f_dentry->d_inode;
524 if (S_ISSOCK(inode->i_mode)) {
525 lo->file = file;
526 lo->sock = SOCKET_I(inode);
527 error = 0;
528 } else {
529 fput(file);
530 }
531 }
532 return error;
533 case NBD_SET_BLKSIZE:
534 lo->blksize = arg;
535 lo->bytesize &= ~(lo->blksize-1);
536 inode->i_bdev->bd_inode->i_size = lo->bytesize;
537 set_blocksize(inode->i_bdev, lo->blksize);
538 set_capacity(lo->disk, lo->bytesize >> 9);
539 return 0;
540 case NBD_SET_SIZE:
541 lo->bytesize = arg & ~(lo->blksize-1);
542 inode->i_bdev->bd_inode->i_size = lo->bytesize;
543 set_blocksize(inode->i_bdev, lo->blksize);
544 set_capacity(lo->disk, lo->bytesize >> 9);
545 return 0;
546 case NBD_SET_SIZE_BLOCKS:
547 lo->bytesize = ((u64) arg) * lo->blksize;
548 inode->i_bdev->bd_inode->i_size = lo->bytesize;
549 set_blocksize(inode->i_bdev, lo->blksize);
550 set_capacity(lo->disk, lo->bytesize >> 9);
551 return 0;
552 case NBD_DO_IT:
553 if (!lo->file)
554 return -EINVAL;
555 nbd_do_it(lo);
556 /* on return tidy up in case we have a signal */
557 /* Forcibly shutdown the socket causing all listeners
558 * to error
559 *
560 * FIXME: This code is duplicated from sys_shutdown, but
561 * there should be a more generic interface rather than
562 * calling socket ops directly here */
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800563 mutex_lock(&lo->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (lo->sock) {
565 printk(KERN_WARNING "%s: shutting down socket\n",
566 lo->disk->disk_name);
567 lo->sock->ops->shutdown(lo->sock,
568 SEND_SHUTDOWN|RCV_SHUTDOWN);
569 lo->sock = NULL;
570 }
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800571 mutex_unlock(&lo->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 file = lo->file;
573 lo->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 nbd_clear_que(lo);
575 printk(KERN_WARNING "%s: queue cleared\n", lo->disk->disk_name);
576 if (file)
577 fput(file);
578 return lo->harderror;
579 case NBD_CLEAR_QUE:
Herbert Xu4b2f0262006-01-06 00:09:47 -0800580 /*
581 * This is for compatibility only. The queue is always cleared
582 * by NBD_DO_IT or NBD_CLEAR_SOCK.
583 */
584 BUG_ON(!lo->sock && !list_empty(&lo->queue_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return 0;
586 case NBD_PRINT_DEBUG:
587 printk(KERN_INFO "%s: next = %p, prev = %p, head = %p\n",
588 inode->i_bdev->bd_disk->disk_name,
589 lo->queue_head.next, lo->queue_head.prev,
590 &lo->queue_head);
591 return 0;
592 }
593 return -EINVAL;
594}
595
596static struct block_device_operations nbd_fops =
597{
598 .owner = THIS_MODULE,
599 .ioctl = nbd_ioctl,
600};
601
602/*
603 * And here should be modules and kernel interface
604 * (Just smiley confuses emacs :-)
605 */
606
607static int __init nbd_init(void)
608{
609 int err = -ENOMEM;
610 int i;
611
Adrian Bunk5b7b18c2006-03-25 03:07:04 -0800612 BUILD_BUG_ON(sizeof(struct nbd_request) != 28);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Lars Marowsky-Bree40be0c22005-05-01 08:59:07 -0700614 if (nbds_max > MAX_NBD) {
615 printk(KERN_CRIT "nbd: cannot allocate more than %u nbds; %u requested.\n", MAX_NBD,
616 nbds_max);
617 return -EINVAL;
618 }
619
620 for (i = 0; i < nbds_max; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 struct gendisk *disk = alloc_disk(1);
622 if (!disk)
623 goto out;
624 nbd_dev[i].disk = disk;
625 /*
626 * The new linux 2.5 block layer implementation requires
627 * every gendisk to have its very own request_queue struct.
628 * These structs are big so we dynamically allocate them.
629 */
630 disk->queue = blk_init_queue(do_nbd_request, &nbd_lock);
631 if (!disk->queue) {
632 put_disk(disk);
633 goto out;
634 }
635 }
636
637 if (register_blkdev(NBD_MAJOR, "nbd")) {
638 err = -EIO;
639 goto out;
640 }
641
642 printk(KERN_INFO "nbd: registered device at major %d\n", NBD_MAJOR);
643 dprintk(DBG_INIT, "nbd: debugflags=0x%x\n", debugflags);
644
Lars Marowsky-Bree40be0c22005-05-01 08:59:07 -0700645 for (i = 0; i < nbds_max; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 struct gendisk *disk = nbd_dev[i].disk;
647 nbd_dev[i].file = NULL;
648 nbd_dev[i].magic = LO_MAGIC;
649 nbd_dev[i].flags = 0;
650 spin_lock_init(&nbd_dev[i].queue_lock);
651 INIT_LIST_HEAD(&nbd_dev[i].queue_head);
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800652 mutex_init(&nbd_dev[i].tx_lock);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800653 init_waitqueue_head(&nbd_dev[i].active_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 nbd_dev[i].blksize = 1024;
655 nbd_dev[i].bytesize = 0x7ffffc00ULL << 10; /* 2TB */
656 disk->major = NBD_MAJOR;
657 disk->first_minor = i;
658 disk->fops = &nbd_fops;
659 disk->private_data = &nbd_dev[i];
660 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
661 sprintf(disk->disk_name, "nbd%d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 set_capacity(disk, 0x7ffffc00ULL << 1); /* 2 TB */
663 add_disk(disk);
664 }
665
666 return 0;
667out:
668 while (i--) {
669 blk_cleanup_queue(nbd_dev[i].disk->queue);
670 put_disk(nbd_dev[i].disk);
671 }
672 return err;
673}
674
675static void __exit nbd_cleanup(void)
676{
677 int i;
Lars Marowsky-Bree40be0c22005-05-01 08:59:07 -0700678 for (i = 0; i < nbds_max; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 struct gendisk *disk = nbd_dev[i].disk;
Lars Marowsky-Bree40be0c22005-05-01 08:59:07 -0700680 nbd_dev[i].magic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (disk) {
682 del_gendisk(disk);
683 blk_cleanup_queue(disk->queue);
684 put_disk(disk);
685 }
686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 unregister_blkdev(NBD_MAJOR, "nbd");
688 printk(KERN_INFO "nbd: unregistered device at major %d\n", NBD_MAJOR);
689}
690
691module_init(nbd_init);
692module_exit(nbd_cleanup);
693
694MODULE_DESCRIPTION("Network Block Device");
695MODULE_LICENSE("GPL");
696
Lars Marowsky-Bree40be0c22005-05-01 08:59:07 -0700697module_param(nbds_max, int, 0444);
698MODULE_PARM_DESC(nbds_max, "How many network block devices to initialize.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699#ifndef NDEBUG
700module_param(debugflags, int, 0644);
701MODULE_PARM_DESC(debugflags, "flags for controlling debug output");
702#endif