blob: d7a421579908166881c9e7de928727d88ab8faa5 [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;
Jens Axboe165125e2007-07-24 09:28:11 +0200103 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 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;
Oleg Nesterovbe0ef952007-07-15 23:41:32 -0700125 sigset_t blocked, oldset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /* Allow interception of SIGKILL only
128 * Don't allow other signals to interrupt the transmission */
Oleg Nesterovbe0ef952007-07-15 23:41:32 -0700129 siginitsetinv(&blocked, sigmask(SIGKILL));
130 sigprocmask(SIG_SETMASK, &blocked, &oldset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 do {
133 sock->sk->sk_allocation = GFP_NOIO;
134 iov.iov_base = buf;
135 iov.iov_len = size;
136 msg.msg_name = NULL;
137 msg.msg_namelen = 0;
138 msg.msg_control = NULL;
139 msg.msg_controllen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 msg.msg_flags = msg_flags | MSG_NOSIGNAL;
141
142 if (send)
143 result = kernel_sendmsg(sock, &msg, &iov, 1, size);
144 else
145 result = kernel_recvmsg(sock, &msg, &iov, 1, size, 0);
146
147 if (signal_pending(current)) {
148 siginfo_t info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 printk(KERN_WARNING "nbd (pid %d: %s) got signal %d\n",
Oleg Nesterovbe0ef952007-07-15 23:41:32 -0700150 current->pid, current->comm,
151 dequeue_signal_lock(current, &current->blocked, &info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 result = -EINTR;
153 break;
154 }
155
156 if (result <= 0) {
157 if (result == 0)
158 result = -EPIPE; /* short read */
159 break;
160 }
161 size -= result;
162 buf += result;
163 } while (size > 0);
164
Oleg Nesterovbe0ef952007-07-15 23:41:32 -0700165 sigprocmask(SIG_SETMASK, &oldset, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 return result;
168}
169
170static inline int sock_send_bvec(struct socket *sock, struct bio_vec *bvec,
171 int flags)
172{
173 int result;
174 void *kaddr = kmap(bvec->bv_page);
175 result = sock_xmit(sock, 1, kaddr + bvec->bv_offset, bvec->bv_len,
176 flags);
177 kunmap(bvec->bv_page);
178 return result;
179}
180
181static int nbd_send_req(struct nbd_device *lo, struct request *req)
182{
NeilBrown5705f702007-09-25 12:35:59 +0200183 int result, flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct nbd_request request;
185 unsigned long size = req->nr_sectors << 9;
186 struct socket *sock = lo->sock;
187
188 request.magic = htonl(NBD_REQUEST_MAGIC);
189 request.type = htonl(nbd_cmd(req));
190 request.from = cpu_to_be64((u64) req->sector << 9);
191 request.len = htonl(size);
192 memcpy(request.handle, &req, sizeof(req));
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 dprintk(DBG_TX, "%s: request %p: sending control (%s@%llu,%luB)\n",
195 lo->disk->disk_name, req,
196 nbdcmd_to_ascii(nbd_cmd(req)),
197 (unsigned long long)req->sector << 9,
198 req->nr_sectors << 9);
199 result = sock_xmit(sock, 1, &request, sizeof(request),
200 (nbd_cmd(req) == NBD_CMD_WRITE)? MSG_MORE: 0);
201 if (result <= 0) {
202 printk(KERN_ERR "%s: Send control failed (result %d)\n",
203 lo->disk->disk_name, result);
204 goto error_out;
205 }
206
207 if (nbd_cmd(req) == NBD_CMD_WRITE) {
NeilBrown5705f702007-09-25 12:35:59 +0200208 struct req_iterator iter;
209 struct bio_vec *bvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /*
211 * we are really probing at internals to determine
212 * whether to set MSG_MORE or not...
213 */
NeilBrown5705f702007-09-25 12:35:59 +0200214 rq_for_each_segment(bvec, req, iter) {
Jens Axboe6c92e692007-08-16 13:43:12 +0200215 flags = 0;
216 if (!rq_iter_last(req, iter))
217 flags = MSG_MORE;
218 dprintk(DBG_TX, "%s: request %p: sending %d bytes data\n",
219 lo->disk->disk_name, req, bvec->bv_len);
220 result = sock_send_bvec(sock, bvec, flags);
221 if (result <= 0) {
222 printk(KERN_ERR "%s: Send data failed (result %d)\n",
223 lo->disk->disk_name, result);
224 goto error_out;
225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return 0;
229
230error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return 1;
232}
233
234static struct request *nbd_find_request(struct nbd_device *lo, char *handle)
235{
Denis Chengd2c97402007-10-16 23:26:14 -0700236 struct request *req, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 struct request *xreq;
Herbert Xu4b2f0262006-01-06 00:09:47 -0800238 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 memcpy(&xreq, handle, sizeof(xreq));
241
Herbert Xu4b2f0262006-01-06 00:09:47 -0800242 err = wait_event_interruptible(lo->active_wq, lo->active_req != xreq);
243 if (unlikely(err))
244 goto out;
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 spin_lock(&lo->queue_lock);
Denis Chengd2c97402007-10-16 23:26:14 -0700247 list_for_each_entry_safe(req, tmp, &lo->queue_head, queuelist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (req != xreq)
249 continue;
250 list_del_init(&req->queuelist);
251 spin_unlock(&lo->queue_lock);
252 return req;
253 }
254 spin_unlock(&lo->queue_lock);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800255
256 err = -ENOENT;
257
258out:
259 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262static inline int sock_recv_bvec(struct socket *sock, struct bio_vec *bvec)
263{
264 int result;
265 void *kaddr = kmap(bvec->bv_page);
266 result = sock_xmit(sock, 0, kaddr + bvec->bv_offset, bvec->bv_len,
267 MSG_WAITALL);
268 kunmap(bvec->bv_page);
269 return result;
270}
271
272/* NULL returned = something went wrong, inform userspace */
273static struct request *nbd_read_stat(struct nbd_device *lo)
274{
275 int result;
276 struct nbd_reply reply;
277 struct request *req;
278 struct socket *sock = lo->sock;
279
280 reply.magic = 0;
281 result = sock_xmit(sock, 0, &reply, sizeof(reply), MSG_WAITALL);
282 if (result <= 0) {
283 printk(KERN_ERR "%s: Receive control failed (result %d)\n",
284 lo->disk->disk_name, result);
285 goto harderror;
286 }
Michal Feixe4b57e02006-07-30 03:03:31 -0700287
288 if (ntohl(reply.magic) != NBD_REPLY_MAGIC) {
289 printk(KERN_ERR "%s: Wrong magic (0x%lx)\n",
290 lo->disk->disk_name,
291 (unsigned long)ntohl(reply.magic));
292 result = -EPROTO;
293 goto harderror;
294 }
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 req = nbd_find_request(lo, reply.handle);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800297 if (unlikely(IS_ERR(req))) {
298 result = PTR_ERR(req);
299 if (result != -ENOENT)
300 goto harderror;
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 printk(KERN_ERR "%s: Unexpected reply (%p)\n",
303 lo->disk->disk_name, reply.handle);
304 result = -EBADR;
305 goto harderror;
306 }
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (ntohl(reply.error)) {
309 printk(KERN_ERR "%s: Other side returned error (%d)\n",
310 lo->disk->disk_name, ntohl(reply.error));
311 req->errors++;
312 return req;
313 }
314
315 dprintk(DBG_RX, "%s: request %p: got reply\n",
316 lo->disk->disk_name, req);
317 if (nbd_cmd(req) == NBD_CMD_READ) {
NeilBrown5705f702007-09-25 12:35:59 +0200318 struct req_iterator iter;
319 struct bio_vec *bvec;
320
321 rq_for_each_segment(bvec, req, iter) {
Jens Axboe6c92e692007-08-16 13:43:12 +0200322 result = sock_recv_bvec(sock, bvec);
323 if (result <= 0) {
324 printk(KERN_ERR "%s: Receive data failed (result %d)\n",
325 lo->disk->disk_name, result);
326 req->errors++;
327 return req;
328 }
329 dprintk(DBG_RX, "%s: request %p: got %d bytes data\n",
330 lo->disk->disk_name, req, bvec->bv_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
332 }
333 return req;
334harderror:
335 lo->harderror = result;
336 return NULL;
337}
338
Paul Clements6b39bb62006-12-06 20:40:53 -0800339static ssize_t pid_show(struct gendisk *disk, char *page)
340{
341 return sprintf(page, "%ld\n",
342 (long) ((struct nbd_device *)disk->private_data)->pid);
343}
344
345static struct disk_attribute pid_attr = {
346 .attr = { .name = "pid", .mode = S_IRUGO },
347 .show = pid_show,
348};
349
WANG Cong84963042007-05-09 02:33:36 -0700350static int nbd_do_it(struct nbd_device *lo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 struct request *req;
WANG Cong84963042007-05-09 02:33:36 -0700353 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 BUG_ON(lo->magic != LO_MAGIC);
356
Paul Clements6b39bb62006-12-06 20:40:53 -0800357 lo->pid = current->pid;
WANG Cong84963042007-05-09 02:33:36 -0700358 ret = sysfs_create_file(&lo->disk->kobj, &pid_attr.attr);
359 if (ret) {
360 printk(KERN_ERR "nbd: sysfs_create_file failed!");
361 return ret;
362 }
Paul Clements6b39bb62006-12-06 20:40:53 -0800363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 while ((req = nbd_read_stat(lo)) != NULL)
365 nbd_end_request(req);
Paul Clements6b39bb62006-12-06 20:40:53 -0800366
367 sysfs_remove_file(&lo->disk->kobj, &pid_attr.attr);
WANG Cong84963042007-05-09 02:33:36 -0700368 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
371static void nbd_clear_que(struct nbd_device *lo)
372{
373 struct request *req;
374
375 BUG_ON(lo->magic != LO_MAGIC);
376
Herbert Xu4b2f0262006-01-06 00:09:47 -0800377 /*
378 * Because we have set lo->sock to NULL under the tx_lock, all
379 * modifications to the list must have completed by now. For
380 * the same reason, the active_req must be NULL.
381 *
382 * As a consequence, we don't need to take the spin lock while
383 * purging the list here.
384 */
385 BUG_ON(lo->sock);
386 BUG_ON(lo->active_req);
387
388 while (!list_empty(&lo->queue_head)) {
389 req = list_entry(lo->queue_head.next, struct request,
390 queuelist);
391 list_del_init(&req->queuelist);
392 req->errors++;
393 nbd_end_request(req);
394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
397/*
398 * We always wait for result of write, for now. It would be nice to make it optional
399 * in future
Boaz Harroshe654bc42007-06-20 13:53:23 +0200400 * if ((rq_data_dir(req) == WRITE) && (lo->flags & NBD_WRITE_NOCHK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 * { printk( "Warning: Ignoring result!\n"); nbd_end_request( req ); }
402 */
403
Jens Axboe165125e2007-07-24 09:28:11 +0200404static void do_nbd_request(struct request_queue * q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
406 struct request *req;
407
408 while ((req = elv_next_request(q)) != NULL) {
409 struct nbd_device *lo;
410
411 blkdev_dequeue_request(req);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200412 dprintk(DBG_BLKDEV, "%s: request %p: dequeued (flags=%x)\n",
413 req->rq_disk->disk_name, req, req->cmd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Jens Axboe4aff5e22006-08-10 08:44:47 +0200415 if (!blk_fs_request(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 goto error_out;
417
418 lo = req->rq_disk->private_data;
419
420 BUG_ON(lo->magic != LO_MAGIC);
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 nbd_cmd(req) = NBD_CMD_READ;
423 if (rq_data_dir(req) == WRITE) {
424 nbd_cmd(req) = NBD_CMD_WRITE;
425 if (lo->flags & NBD_READ_ONLY) {
426 printk(KERN_ERR "%s: Write on read-only\n",
427 lo->disk->disk_name);
428 goto error_out;
429 }
430 }
431
432 req->errors = 0;
433 spin_unlock_irq(q->queue_lock);
434
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800435 mutex_lock(&lo->tx_lock);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800436 if (unlikely(!lo->sock)) {
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800437 mutex_unlock(&lo->tx_lock);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800438 printk(KERN_ERR "%s: Attempted send on closed socket\n",
439 lo->disk->disk_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 req->errors++;
441 nbd_end_request(req);
442 spin_lock_irq(q->queue_lock);
443 continue;
444 }
445
Herbert Xu4b2f0262006-01-06 00:09:47 -0800446 lo->active_req = req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 if (nbd_send_req(lo, req) != 0) {
449 printk(KERN_ERR "%s: Request send failed\n",
450 lo->disk->disk_name);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800451 req->errors++;
452 nbd_end_request(req);
453 } else {
454 spin_lock(&lo->queue_lock);
455 list_add(&req->queuelist, &lo->queue_head);
456 spin_unlock(&lo->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458
Herbert Xu4b2f0262006-01-06 00:09:47 -0800459 lo->active_req = NULL;
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800460 mutex_unlock(&lo->tx_lock);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800461 wake_up_all(&lo->active_wq);
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 spin_lock_irq(q->queue_lock);
464 continue;
465
466error_out:
467 req->errors++;
468 spin_unlock(q->queue_lock);
469 nbd_end_request(req);
470 spin_lock(q->queue_lock);
471 }
472 return;
473}
474
475static int nbd_ioctl(struct inode *inode, struct file *file,
476 unsigned int cmd, unsigned long arg)
477{
478 struct nbd_device *lo = inode->i_bdev->bd_disk->private_data;
479 int error;
480 struct request sreq ;
481
482 if (!capable(CAP_SYS_ADMIN))
483 return -EPERM;
484
485 BUG_ON(lo->magic != LO_MAGIC);
486
487 /* Anyone capable of this syscall can do *real bad* things */
488 dprintk(DBG_IOCTL, "%s: nbd_ioctl cmd=%s(0x%x) arg=%lu\n",
489 lo->disk->disk_name, ioctl_cmd_to_ascii(cmd), cmd, arg);
490
491 switch (cmd) {
492 case NBD_DISCONNECT:
493 printk(KERN_INFO "%s: NBD_DISCONNECT\n", lo->disk->disk_name);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200494 sreq.cmd_type = REQ_TYPE_SPECIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 nbd_cmd(&sreq) = NBD_CMD_DISC;
496 /*
497 * Set these to sane values in case server implementation
498 * fails to check the request type first and also to keep
499 * debugging output cleaner.
500 */
501 sreq.sector = 0;
502 sreq.nr_sectors = 0;
503 if (!lo->sock)
504 return -EINVAL;
505 nbd_send_req(lo, &sreq);
506 return 0;
507
508 case NBD_CLEAR_SOCK:
509 error = 0;
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800510 mutex_lock(&lo->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 lo->sock = NULL;
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800512 mutex_unlock(&lo->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 file = lo->file;
514 lo->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 nbd_clear_que(lo);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800516 BUG_ON(!list_empty(&lo->queue_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (file)
518 fput(file);
519 return error;
520 case NBD_SET_SOCK:
521 if (lo->file)
522 return -EBUSY;
523 error = -EINVAL;
524 file = fget(arg);
525 if (file) {
Josef Sipek17506042006-12-08 02:37:22 -0800526 inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (S_ISSOCK(inode->i_mode)) {
528 lo->file = file;
529 lo->sock = SOCKET_I(inode);
530 error = 0;
531 } else {
532 fput(file);
533 }
534 }
535 return error;
536 case NBD_SET_BLKSIZE:
537 lo->blksize = arg;
538 lo->bytesize &= ~(lo->blksize-1);
539 inode->i_bdev->bd_inode->i_size = lo->bytesize;
540 set_blocksize(inode->i_bdev, lo->blksize);
541 set_capacity(lo->disk, lo->bytesize >> 9);
542 return 0;
543 case NBD_SET_SIZE:
544 lo->bytesize = arg & ~(lo->blksize-1);
545 inode->i_bdev->bd_inode->i_size = lo->bytesize;
546 set_blocksize(inode->i_bdev, lo->blksize);
547 set_capacity(lo->disk, lo->bytesize >> 9);
548 return 0;
549 case NBD_SET_SIZE_BLOCKS:
550 lo->bytesize = ((u64) arg) * lo->blksize;
551 inode->i_bdev->bd_inode->i_size = lo->bytesize;
552 set_blocksize(inode->i_bdev, lo->blksize);
553 set_capacity(lo->disk, lo->bytesize >> 9);
554 return 0;
555 case NBD_DO_IT:
556 if (!lo->file)
557 return -EINVAL;
WANG Cong84963042007-05-09 02:33:36 -0700558 error = nbd_do_it(lo);
559 if (error)
560 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 /* on return tidy up in case we have a signal */
562 /* Forcibly shutdown the socket causing all listeners
563 * to error
564 *
565 * FIXME: This code is duplicated from sys_shutdown, but
566 * there should be a more generic interface rather than
567 * calling socket ops directly here */
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800568 mutex_lock(&lo->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (lo->sock) {
570 printk(KERN_WARNING "%s: shutting down socket\n",
571 lo->disk->disk_name);
572 lo->sock->ops->shutdown(lo->sock,
573 SEND_SHUTDOWN|RCV_SHUTDOWN);
574 lo->sock = NULL;
575 }
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800576 mutex_unlock(&lo->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 file = lo->file;
578 lo->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 nbd_clear_que(lo);
580 printk(KERN_WARNING "%s: queue cleared\n", lo->disk->disk_name);
581 if (file)
582 fput(file);
583 return lo->harderror;
584 case NBD_CLEAR_QUE:
Herbert Xu4b2f0262006-01-06 00:09:47 -0800585 /*
586 * This is for compatibility only. The queue is always cleared
587 * by NBD_DO_IT or NBD_CLEAR_SOCK.
588 */
589 BUG_ON(!lo->sock && !list_empty(&lo->queue_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return 0;
591 case NBD_PRINT_DEBUG:
592 printk(KERN_INFO "%s: next = %p, prev = %p, head = %p\n",
593 inode->i_bdev->bd_disk->disk_name,
594 lo->queue_head.next, lo->queue_head.prev,
595 &lo->queue_head);
596 return 0;
597 }
598 return -EINVAL;
599}
600
601static struct block_device_operations nbd_fops =
602{
603 .owner = THIS_MODULE,
604 .ioctl = nbd_ioctl,
605};
606
607/*
608 * And here should be modules and kernel interface
609 * (Just smiley confuses emacs :-)
610 */
611
612static int __init nbd_init(void)
613{
614 int err = -ENOMEM;
615 int i;
616
Adrian Bunk5b7b18c2006-03-25 03:07:04 -0800617 BUILD_BUG_ON(sizeof(struct nbd_request) != 28);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Lars Marowsky-Bree40be0c22005-05-01 08:59:07 -0700619 if (nbds_max > MAX_NBD) {
620 printk(KERN_CRIT "nbd: cannot allocate more than %u nbds; %u requested.\n", MAX_NBD,
621 nbds_max);
622 return -EINVAL;
623 }
624
625 for (i = 0; i < nbds_max; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 struct gendisk *disk = alloc_disk(1);
627 if (!disk)
628 goto out;
629 nbd_dev[i].disk = disk;
630 /*
631 * The new linux 2.5 block layer implementation requires
632 * every gendisk to have its very own request_queue struct.
633 * These structs are big so we dynamically allocate them.
634 */
635 disk->queue = blk_init_queue(do_nbd_request, &nbd_lock);
636 if (!disk->queue) {
637 put_disk(disk);
638 goto out;
639 }
640 }
641
642 if (register_blkdev(NBD_MAJOR, "nbd")) {
643 err = -EIO;
644 goto out;
645 }
646
647 printk(KERN_INFO "nbd: registered device at major %d\n", NBD_MAJOR);
648 dprintk(DBG_INIT, "nbd: debugflags=0x%x\n", debugflags);
649
Lars Marowsky-Bree40be0c22005-05-01 08:59:07 -0700650 for (i = 0; i < nbds_max; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 struct gendisk *disk = nbd_dev[i].disk;
652 nbd_dev[i].file = NULL;
653 nbd_dev[i].magic = LO_MAGIC;
654 nbd_dev[i].flags = 0;
655 spin_lock_init(&nbd_dev[i].queue_lock);
656 INIT_LIST_HEAD(&nbd_dev[i].queue_head);
Ingo Molnar82d4dc52006-03-23 03:00:38 -0800657 mutex_init(&nbd_dev[i].tx_lock);
Herbert Xu4b2f0262006-01-06 00:09:47 -0800658 init_waitqueue_head(&nbd_dev[i].active_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 nbd_dev[i].blksize = 1024;
660 nbd_dev[i].bytesize = 0x7ffffc00ULL << 10; /* 2TB */
661 disk->major = NBD_MAJOR;
662 disk->first_minor = i;
663 disk->fops = &nbd_fops;
664 disk->private_data = &nbd_dev[i];
665 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
666 sprintf(disk->disk_name, "nbd%d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 set_capacity(disk, 0x7ffffc00ULL << 1); /* 2 TB */
668 add_disk(disk);
669 }
670
671 return 0;
672out:
673 while (i--) {
674 blk_cleanup_queue(nbd_dev[i].disk->queue);
675 put_disk(nbd_dev[i].disk);
676 }
677 return err;
678}
679
680static void __exit nbd_cleanup(void)
681{
682 int i;
Lars Marowsky-Bree40be0c22005-05-01 08:59:07 -0700683 for (i = 0; i < nbds_max; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 struct gendisk *disk = nbd_dev[i].disk;
Lars Marowsky-Bree40be0c22005-05-01 08:59:07 -0700685 nbd_dev[i].magic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (disk) {
687 del_gendisk(disk);
688 blk_cleanup_queue(disk->queue);
689 put_disk(disk);
690 }
691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 unregister_blkdev(NBD_MAJOR, "nbd");
693 printk(KERN_INFO "nbd: unregistered device at major %d\n", NBD_MAJOR);
694}
695
696module_init(nbd_init);
697module_exit(nbd_cleanup);
698
699MODULE_DESCRIPTION("Network Block Device");
700MODULE_LICENSE("GPL");
701
Lars Marowsky-Bree40be0c22005-05-01 08:59:07 -0700702module_param(nbds_max, int, 0444);
703MODULE_PARM_DESC(nbds_max, "How many network block devices to initialize.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704#ifndef NDEBUG
705module_param(debugflags, int, 0644);
706MODULE_PARM_DESC(debugflags, "flags for controlling debug output");
707#endif