nbd.c 26.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/*
 * Network block device - make block devices work over TCP
 *
 * Note that you can not swap over this thing, yet. Seems to work but
 * deadlocks sometimes - you can not swap over TCP in general.
 * 
P
Pavel Machek 已提交
7
 * Copyright 1997-2000, 2008 Pavel Machek <pavel@ucw.cz>
L
Linus Torvalds 已提交
8 9
 * Parts copyright 2001 Steven Whitehouse <steve@chygwyn.com>
 *
10
 * This file is released under GPLv2 or later.
L
Linus Torvalds 已提交
11
 *
12
 * (part of code stolen from loop.c)
L
Linus Torvalds 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26
 */

#include <linux/major.h>

#include <linux/blkdev.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/sched.h>
#include <linux/fs.h>
#include <linux/bio.h>
#include <linux/stat.h>
#include <linux/errno.h>
#include <linux/file.h>
#include <linux/ioctl.h>
27
#include <linux/mutex.h>
28 29 30
#include <linux/compiler.h>
#include <linux/err.h>
#include <linux/kernel.h>
31
#include <linux/slab.h>
L
Linus Torvalds 已提交
32
#include <net/sock.h>
33
#include <linux/net.h>
34
#include <linux/kthread.h>
M
Markus Pargmann 已提交
35
#include <linux/types.h>
M
Markus Pargmann 已提交
36
#include <linux/debugfs.h>
L
Linus Torvalds 已提交
37 38 39 40 41 42

#include <asm/uaccess.h>
#include <asm/types.h>

#include <linux/nbd.h>

43
struct nbd_device {
M
Markus Pargmann 已提交
44
	u32 flags;
45 46 47 48 49 50 51 52 53 54 55 56 57
	struct socket * sock;	/* If == NULL, device is not ready, yet	*/
	int magic;

	spinlock_t queue_lock;
	struct list_head queue_head;	/* Requests waiting result */
	struct request *active_req;
	wait_queue_head_t active_wq;
	struct list_head waiting_queue;	/* Requests to be sent */
	wait_queue_head_t waiting_wq;

	struct mutex tx_lock;
	struct gendisk *disk;
	int blksize;
M
Markus Pargmann 已提交
58
	loff_t bytesize;
59
	int xmit_timeout;
60
	bool disconnect; /* a disconnect has been requested by user */
M
Markus Pargmann 已提交
61 62

	struct timer_list timeout_timer;
M
Markus Pargmann 已提交
63
	spinlock_t tasks_lock;
M
Markus Pargmann 已提交
64 65
	struct task_struct *task_recv;
	struct task_struct *task_send;
M
Markus Pargmann 已提交
66 67 68 69

#if IS_ENABLED(CONFIG_DEBUG_FS)
	struct dentry *dbg_dir;
#endif
70 71
};

M
Markus Pargmann 已提交
72 73 74 75 76 77
#if IS_ENABLED(CONFIG_DEBUG_FS)
static struct dentry *nbd_dbg_dir;
#endif

#define nbd_name(nbd) ((nbd)->disk->disk_name)

78
#define NBD_MAGIC 0x68797548
L
Linus Torvalds 已提交
79

80
static unsigned int nbds_max = 16;
81
static struct nbd_device *nbd_dev;
L
Laurent Vivier 已提交
82
static int max_part;
L
Linus Torvalds 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95

/*
 * Use just one lock (or at most 1 per NIC). Two arguments for this:
 * 1. Each NIC is essentially a synchronization point for all servers
 *    accessed through that NIC so there's no need to have more locks
 *    than NICs anyway.
 * 2. More locks lead to more "Dirty cache line bouncing" which will slow
 *    down each lock to the point where they're actually slower than just
 *    a single lock.
 * Thanks go to Jens Axboe and Al Viro for their LKML emails explaining this!
 */
static DEFINE_SPINLOCK(nbd_lock);

96
static inline struct device *nbd_to_dev(struct nbd_device *nbd)
L
Linus Torvalds 已提交
97
{
98
	return disk_to_dev(nbd->disk);
L
Linus Torvalds 已提交
99 100 101 102 103 104 105 106
}

static const char *nbdcmd_to_ascii(int cmd)
{
	switch (cmd) {
	case  NBD_CMD_READ: return "read";
	case NBD_CMD_WRITE: return "write";
	case  NBD_CMD_DISC: return "disconnect";
A
Alex Bligh 已提交
107
	case NBD_CMD_FLUSH: return "flush";
P
Paul Clements 已提交
108
	case  NBD_CMD_TRIM: return "trim/discard";
L
Linus Torvalds 已提交
109 110 111 112
	}
	return "invalid";
}

113
static void nbd_end_request(struct nbd_device *nbd, struct request *req)
L
Linus Torvalds 已提交
114
{
115
	int error = req->errors ? -EIO : 0;
116
	struct request_queue *q = req->q;
L
Linus Torvalds 已提交
117 118
	unsigned long flags;

119 120
	dev_dbg(nbd_to_dev(nbd), "request %p: %s\n", req,
		error ? "failed" : "done");
L
Linus Torvalds 已提交
121 122

	spin_lock_irqsave(q->queue_lock, flags);
123
	__blk_end_request_all(req, error);
L
Linus Torvalds 已提交
124 125 126
	spin_unlock_irqrestore(q->queue_lock, flags);
}

127 128 129
/*
 * Forcibly shutdown the socket causing all listeners to error
 */
130
static void sock_shutdown(struct nbd_device *nbd)
131
{
M
Markus Pargmann 已提交
132 133 134 135 136 137 138
	if (!nbd->sock)
		return;

	dev_warn(disk_to_dev(nbd->disk), "shutting down socket\n");
	kernel_sock_shutdown(nbd->sock, SHUT_RDWR);
	nbd->sock = NULL;
	del_timer_sync(&nbd->timeout_timer);
139 140 141 142
}

static void nbd_xmit_timeout(unsigned long arg)
{
M
Markus Pargmann 已提交
143
	struct nbd_device *nbd = (struct nbd_device *)arg;
M
Markus Pargmann 已提交
144
	unsigned long flags;
M
Markus Pargmann 已提交
145 146 147 148

	if (list_empty(&nbd->queue_head))
		return;

149
	nbd->disconnect = true;
M
Markus Pargmann 已提交
150

M
Markus Pargmann 已提交
151 152 153 154
	spin_lock_irqsave(&nbd->tasks_lock, flags);

	if (nbd->task_recv)
		force_sig(SIGKILL, nbd->task_recv);
155

M
Markus Pargmann 已提交
156
	if (nbd->task_send)
M
Markus Pargmann 已提交
157 158
		force_sig(SIGKILL, nbd->task_send);

M
Markus Pargmann 已提交
159 160
	spin_unlock_irqrestore(&nbd->tasks_lock, flags);

M
Markus Pargmann 已提交
161
	dev_err(nbd_to_dev(nbd), "Connection timed out, killed receiver and sender, shutting down connection\n");
162 163
}

L
Linus Torvalds 已提交
164 165 166
/*
 *  Send or receive packet.
 */
167
static int sock_xmit(struct nbd_device *nbd, int send, void *buf, int size,
L
Linus Torvalds 已提交
168 169
		int msg_flags)
{
170
	struct socket *sock = nbd->sock;
L
Linus Torvalds 已提交
171 172 173
	int result;
	struct msghdr msg;
	struct kvec iov;
174
	sigset_t blocked, oldset;
175
	unsigned long pflags = current->flags;
L
Linus Torvalds 已提交
176

177
	if (unlikely(!sock)) {
178
		dev_err(disk_to_dev(nbd->disk),
179 180
			"Attempted %s on closed socket in sock_xmit\n",
			(send ? "send" : "recv"));
181 182 183
		return -EINVAL;
	}

L
Linus Torvalds 已提交
184 185
	/* Allow interception of SIGKILL only
	 * Don't allow other signals to interrupt the transmission */
186 187
	siginitsetinv(&blocked, sigmask(SIGKILL));
	sigprocmask(SIG_SETMASK, &blocked, &oldset);
L
Linus Torvalds 已提交
188

189
	current->flags |= PF_MEMALLOC;
L
Linus Torvalds 已提交
190
	do {
191
		sock->sk->sk_allocation = GFP_NOIO | __GFP_MEMALLOC;
L
Linus Torvalds 已提交
192 193 194 195 196 197 198 199
		iov.iov_base = buf;
		iov.iov_len = size;
		msg.msg_name = NULL;
		msg.msg_namelen = 0;
		msg.msg_control = NULL;
		msg.msg_controllen = 0;
		msg.msg_flags = msg_flags | MSG_NOSIGNAL;

M
Markus Pargmann 已提交
200
		if (send)
L
Linus Torvalds 已提交
201
			result = kernel_sendmsg(sock, &msg, &iov, 1, size);
M
Markus Pargmann 已提交
202
		else
203 204
			result = kernel_recvmsg(sock, &msg, &iov, 1, size,
						msg.msg_flags);
L
Linus Torvalds 已提交
205 206 207 208 209 210 211 212 213 214

		if (result <= 0) {
			if (result == 0)
				result = -EPIPE; /* short read */
			break;
		}
		size -= result;
		buf += result;
	} while (size > 0);

215
	sigprocmask(SIG_SETMASK, &oldset, NULL);
216
	tsk_restore_flags(current, pflags, PF_MEMALLOC);
L
Linus Torvalds 已提交
217

M
Markus Pargmann 已提交
218 219 220
	if (!send && nbd->xmit_timeout)
		mod_timer(&nbd->timeout_timer, jiffies + nbd->xmit_timeout);

L
Linus Torvalds 已提交
221 222 223
	return result;
}

224
static inline int sock_send_bvec(struct nbd_device *nbd, struct bio_vec *bvec,
L
Linus Torvalds 已提交
225 226 227 228
		int flags)
{
	int result;
	void *kaddr = kmap(bvec->bv_page);
229 230
	result = sock_xmit(nbd, 1, kaddr + bvec->bv_offset,
			   bvec->bv_len, flags);
L
Linus Torvalds 已提交
231 232 233 234
	kunmap(bvec->bv_page);
	return result;
}

235
/* always call with the tx_lock held */
236
static int nbd_send_req(struct nbd_device *nbd, struct request *req)
L
Linus Torvalds 已提交
237
{
238
	int result, flags;
L
Linus Torvalds 已提交
239
	struct nbd_request request;
240
	unsigned long size = blk_rq_bytes(req);
C
Christoph Hellwig 已提交
241 242 243 244 245 246 247 248 249 250 251 252
	u32 type;

	if (req->cmd_type == REQ_TYPE_DRV_PRIV)
		type = NBD_CMD_DISC;
	else if (req->cmd_flags & REQ_DISCARD)
		type = NBD_CMD_TRIM;
	else if (req->cmd_flags & REQ_FLUSH)
		type = NBD_CMD_FLUSH;
	else if (rq_data_dir(req) == WRITE)
		type = NBD_CMD_WRITE;
	else
		type = NBD_CMD_READ;
L
Linus Torvalds 已提交
253

254
	memset(&request, 0, sizeof(request));
L
Linus Torvalds 已提交
255
	request.magic = htonl(NBD_REQUEST_MAGIC);
C
Christoph Hellwig 已提交
256 257
	request.type = htonl(type);
	if (type != NBD_CMD_FLUSH && type != NBD_CMD_DISC) {
A
Alex Bligh 已提交
258 259 260
		request.from = cpu_to_be64((u64)blk_rq_pos(req) << 9);
		request.len = htonl(size);
	}
L
Linus Torvalds 已提交
261 262
	memcpy(request.handle, &req, sizeof(req));

263
	dev_dbg(nbd_to_dev(nbd), "request %p: sending control (%s@%llu,%uB)\n",
C
Christoph Hellwig 已提交
264
		req, nbdcmd_to_ascii(type),
265
		(unsigned long long)blk_rq_pos(req) << 9, blk_rq_bytes(req));
266
	result = sock_xmit(nbd, 1, &request, sizeof(request),
C
Christoph Hellwig 已提交
267
			(type == NBD_CMD_WRITE) ? MSG_MORE : 0);
L
Linus Torvalds 已提交
268
	if (result <= 0) {
269
		dev_err(disk_to_dev(nbd->disk),
270
			"Send control failed (result %d)\n", result);
271
		return -EIO;
L
Linus Torvalds 已提交
272 273
	}

C
Christoph Hellwig 已提交
274
	if (type == NBD_CMD_WRITE) {
275
		struct req_iterator iter;
276
		struct bio_vec bvec;
L
Linus Torvalds 已提交
277 278 279 280
		/*
		 * we are really probing at internals to determine
		 * whether to set MSG_MORE or not...
		 */
281
		rq_for_each_segment(bvec, req, iter) {
282
			flags = 0;
K
Kent Overstreet 已提交
283
			if (!rq_iter_last(bvec, iter))
284
				flags = MSG_MORE;
285 286
			dev_dbg(nbd_to_dev(nbd), "request %p: sending %d bytes data\n",
				req, bvec.bv_len);
287
			result = sock_send_bvec(nbd, &bvec, flags);
288
			if (result <= 0) {
289
				dev_err(disk_to_dev(nbd->disk),
290 291
					"Send data failed (result %d)\n",
					result);
292
				return -EIO;
293
			}
L
Linus Torvalds 已提交
294 295 296 297 298
		}
	}
	return 0;
}

299
static struct request *nbd_find_request(struct nbd_device *nbd,
300
					struct request *xreq)
L
Linus Torvalds 已提交
301
{
302
	struct request *req, *tmp;
303
	int err;
L
Linus Torvalds 已提交
304

305
	err = wait_event_interruptible(nbd->active_wq, nbd->active_req != xreq);
306
	if (unlikely(err))
307
		return ERR_PTR(err);
308

309 310
	spin_lock(&nbd->queue_lock);
	list_for_each_entry_safe(req, tmp, &nbd->queue_head, queuelist) {
L
Linus Torvalds 已提交
311 312 313
		if (req != xreq)
			continue;
		list_del_init(&req->queuelist);
314
		spin_unlock(&nbd->queue_lock);
L
Linus Torvalds 已提交
315 316
		return req;
	}
317
	spin_unlock(&nbd->queue_lock);
318

319
	return ERR_PTR(-ENOENT);
L
Linus Torvalds 已提交
320 321
}

322
static inline int sock_recv_bvec(struct nbd_device *nbd, struct bio_vec *bvec)
L
Linus Torvalds 已提交
323 324 325
{
	int result;
	void *kaddr = kmap(bvec->bv_page);
326
	result = sock_xmit(nbd, 0, kaddr + bvec->bv_offset, bvec->bv_len,
L
Linus Torvalds 已提交
327 328 329 330 331 332
			MSG_WAITALL);
	kunmap(bvec->bv_page);
	return result;
}

/* NULL returned = something went wrong, inform userspace */
333
static struct request *nbd_read_stat(struct nbd_device *nbd)
L
Linus Torvalds 已提交
334 335 336 337 338 339
{
	int result;
	struct nbd_reply reply;
	struct request *req;

	reply.magic = 0;
340
	result = sock_xmit(nbd, 0, &reply, sizeof(reply), MSG_WAITALL);
L
Linus Torvalds 已提交
341
	if (result <= 0) {
342
		dev_err(disk_to_dev(nbd->disk),
343
			"Receive control failed (result %d)\n", result);
344
		return ERR_PTR(result);
L
Linus Torvalds 已提交
345
	}
346 347

	if (ntohl(reply.magic) != NBD_REPLY_MAGIC) {
348
		dev_err(disk_to_dev(nbd->disk), "Wrong magic (0x%lx)\n",
349
				(unsigned long)ntohl(reply.magic));
350
		return ERR_PTR(-EPROTO);
351 352
	}

353
	req = nbd_find_request(nbd, *(struct request **)reply.handle);
354
	if (IS_ERR(req)) {
355 356
		result = PTR_ERR(req);
		if (result != -ENOENT)
357
			return ERR_PTR(result);
358

359
		dev_err(disk_to_dev(nbd->disk), "Unexpected reply (%p)\n",
360
			reply.handle);
361
		return ERR_PTR(-EBADR);
L
Linus Torvalds 已提交
362 363 364
	}

	if (ntohl(reply.error)) {
365
		dev_err(disk_to_dev(nbd->disk), "Other side returned error (%d)\n",
366
			ntohl(reply.error));
L
Linus Torvalds 已提交
367 368 369 370
		req->errors++;
		return req;
	}

371
	dev_dbg(nbd_to_dev(nbd), "request %p: got reply\n", req);
C
Christoph Hellwig 已提交
372
	if (rq_data_dir(req) != WRITE) {
373
		struct req_iterator iter;
374
		struct bio_vec bvec;
375 376

		rq_for_each_segment(bvec, req, iter) {
377
			result = sock_recv_bvec(nbd, &bvec);
378
			if (result <= 0) {
379
				dev_err(disk_to_dev(nbd->disk), "Receive data failed (result %d)\n",
380
					result);
381 382 383
				req->errors++;
				return req;
			}
384 385
			dev_dbg(nbd_to_dev(nbd), "request %p: got %d bytes data\n",
				req, bvec.bv_len);
L
Linus Torvalds 已提交
386 387 388 389 390
		}
	}
	return req;
}

391 392
static ssize_t pid_show(struct device *dev,
			struct device_attribute *attr, char *buf)
393
{
394
	struct gendisk *disk = dev_to_disk(dev);
M
Markus Pargmann 已提交
395
	struct nbd_device *nbd = (struct nbd_device *)disk->private_data;
396

M
Markus Pargmann 已提交
397
	return sprintf(buf, "%d\n", task_pid_nr(nbd->task_recv));
398 399
}

400
static struct device_attribute pid_attr = {
401
	.attr = { .name = "pid", .mode = S_IRUGO},
402 403 404
	.show = pid_show,
};

405
static int nbd_thread_recv(struct nbd_device *nbd)
L
Linus Torvalds 已提交
406 407
{
	struct request *req;
408
	int ret;
M
Markus Pargmann 已提交
409
	unsigned long flags;
L
Linus Torvalds 已提交
410

411
	BUG_ON(nbd->magic != NBD_MAGIC);
L
Linus Torvalds 已提交
412

413
	sk_set_memalloc(nbd->sock->sk);
M
Markus Pargmann 已提交
414

M
Markus Pargmann 已提交
415
	spin_lock_irqsave(&nbd->tasks_lock, flags);
M
Markus Pargmann 已提交
416
	nbd->task_recv = current;
M
Markus Pargmann 已提交
417
	spin_unlock_irqrestore(&nbd->tasks_lock, flags);
M
Markus Pargmann 已提交
418

419
	ret = device_create_file(disk_to_dev(nbd->disk), &pid_attr);
420
	if (ret) {
421
		dev_err(disk_to_dev(nbd->disk), "device_create_file failed!\n");
M
Markus Pargmann 已提交
422 423

		spin_lock_irqsave(&nbd->tasks_lock, flags);
M
Markus Pargmann 已提交
424
		nbd->task_recv = NULL;
M
Markus Pargmann 已提交
425 426
		spin_unlock_irqrestore(&nbd->tasks_lock, flags);

427 428
		return ret;
	}
429

430 431 432 433 434 435 436
	while (1) {
		req = nbd_read_stat(nbd);
		if (IS_ERR(req)) {
			ret = PTR_ERR(req);
			break;
		}

437
		nbd_end_request(nbd, req);
438
	}
439

M
Markus Pargmann 已提交
440 441
	device_remove_file(disk_to_dev(nbd->disk), &pid_attr);

M
Markus Pargmann 已提交
442
	spin_lock_irqsave(&nbd->tasks_lock, flags);
M
Markus Pargmann 已提交
443
	nbd->task_recv = NULL;
M
Markus Pargmann 已提交
444
	spin_unlock_irqrestore(&nbd->tasks_lock, flags);
M
Markus Pargmann 已提交
445 446

	if (signal_pending(current)) {
447
		ret = kernel_dequeue_signal(NULL);
M
Markus Pargmann 已提交
448 449
		dev_warn(nbd_to_dev(nbd), "pid %d, %s, got signal %d\n",
			 task_pid_nr(current), current->comm, ret);
450 451 452
		mutex_lock(&nbd->tx_lock);
		sock_shutdown(nbd);
		mutex_unlock(&nbd->tx_lock);
M
Markus Pargmann 已提交
453 454 455 456
		ret = -ETIMEDOUT;
	}

	return ret;
L
Linus Torvalds 已提交
457 458
}

459
static void nbd_clear_que(struct nbd_device *nbd)
L
Linus Torvalds 已提交
460 461 462
{
	struct request *req;

463
	BUG_ON(nbd->magic != NBD_MAGIC);
L
Linus Torvalds 已提交
464

465
	/*
466
	 * Because we have set nbd->sock to NULL under the tx_lock, all
467 468 469 470 471 472
	 * modifications to the list must have completed by now.  For
	 * the same reason, the active_req must be NULL.
	 *
	 * As a consequence, we don't need to take the spin lock while
	 * purging the list here.
	 */
473 474
	BUG_ON(nbd->sock);
	BUG_ON(nbd->active_req);
475

476 477
	while (!list_empty(&nbd->queue_head)) {
		req = list_entry(nbd->queue_head.next, struct request,
478 479 480
				 queuelist);
		list_del_init(&req->queuelist);
		req->errors++;
481
		nbd_end_request(nbd, req);
482
	}
483 484 485 486 487 488

	while (!list_empty(&nbd->waiting_queue)) {
		req = list_entry(nbd->waiting_queue.next, struct request,
				 queuelist);
		list_del_init(&req->queuelist);
		req->errors++;
489
		nbd_end_request(nbd, req);
490
	}
491
	dev_dbg(disk_to_dev(nbd->disk), "queue cleared\n");
L
Linus Torvalds 已提交
492 493
}

494

495
static void nbd_handle_req(struct nbd_device *nbd, struct request *req)
496
{
497
	if (req->cmd_type != REQ_TYPE_FS)
498 499
		goto error_out;

C
Christoph Hellwig 已提交
500 501 502 503 504
	if (rq_data_dir(req) == WRITE &&
	    (nbd->flags & NBD_FLAG_READ_ONLY)) {
		dev_err(disk_to_dev(nbd->disk),
			"Write on read-only\n");
		goto error_out;
A
Alex Bligh 已提交
505 506
	}

507 508
	req->errors = 0;

509 510 511 512
	mutex_lock(&nbd->tx_lock);
	if (unlikely(!nbd->sock)) {
		mutex_unlock(&nbd->tx_lock);
		dev_err(disk_to_dev(nbd->disk),
513
			"Attempted send on closed socket\n");
P
Pavel Machek 已提交
514
		goto error_out;
515 516
	}

517
	nbd->active_req = req;
518

M
Markus Pargmann 已提交
519 520 521
	if (nbd->xmit_timeout && list_empty_careful(&nbd->queue_head))
		mod_timer(&nbd->timeout_timer, jiffies + nbd->xmit_timeout);

522 523
	if (nbd_send_req(nbd, req) != 0) {
		dev_err(disk_to_dev(nbd->disk), "Request send failed\n");
524
		req->errors++;
525
		nbd_end_request(nbd, req);
526
	} else {
527
		spin_lock(&nbd->queue_lock);
528
		list_add_tail(&req->queuelist, &nbd->queue_head);
529
		spin_unlock(&nbd->queue_lock);
530 531
	}

532 533 534
	nbd->active_req = NULL;
	mutex_unlock(&nbd->tx_lock);
	wake_up_all(&nbd->active_wq);
535 536 537 538 539

	return;

error_out:
	req->errors++;
540
	nbd_end_request(nbd, req);
541 542
}

543
static int nbd_thread_send(void *data)
544
{
545
	struct nbd_device *nbd = data;
546
	struct request *req;
M
Markus Pargmann 已提交
547
	unsigned long flags;
548

M
Markus Pargmann 已提交
549
	spin_lock_irqsave(&nbd->tasks_lock, flags);
M
Markus Pargmann 已提交
550
	nbd->task_send = current;
M
Markus Pargmann 已提交
551
	spin_unlock_irqrestore(&nbd->tasks_lock, flags);
M
Markus Pargmann 已提交
552

553
	set_user_nice(current, MIN_NICE);
554
	while (!kthread_should_stop() || !list_empty(&nbd->waiting_queue)) {
555
		/* wait for something to do */
556
		wait_event_interruptible(nbd->waiting_wq,
557
					 kthread_should_stop() ||
558
					 !list_empty(&nbd->waiting_queue));
559

M
Markus Pargmann 已提交
560
		if (signal_pending(current)) {
561
			int ret = kernel_dequeue_signal(NULL);
M
Markus Pargmann 已提交
562 563 564

			dev_warn(nbd_to_dev(nbd), "pid %d, %s, got signal %d\n",
				 task_pid_nr(current), current->comm, ret);
565 566 567
			mutex_lock(&nbd->tx_lock);
			sock_shutdown(nbd);
			mutex_unlock(&nbd->tx_lock);
M
Markus Pargmann 已提交
568 569 570
			break;
		}

571
		/* extract request */
572
		if (list_empty(&nbd->waiting_queue))
573 574
			continue;

575 576
		spin_lock_irq(&nbd->queue_lock);
		req = list_entry(nbd->waiting_queue.next, struct request,
577 578
				 queuelist);
		list_del_init(&req->queuelist);
579
		spin_unlock_irq(&nbd->queue_lock);
580 581

		/* handle request */
582
		nbd_handle_req(nbd, req);
583
	}
M
Markus Pargmann 已提交
584

M
Markus Pargmann 已提交
585
	spin_lock_irqsave(&nbd->tasks_lock, flags);
M
Markus Pargmann 已提交
586
	nbd->task_send = NULL;
M
Markus Pargmann 已提交
587 588 589
	spin_unlock_irqrestore(&nbd->tasks_lock, flags);

	/* Clear maybe pending signals */
590 591
	if (signal_pending(current))
		kernel_dequeue_signal(NULL);
M
Markus Pargmann 已提交
592

593 594 595
	return 0;
}

L
Linus Torvalds 已提交
596 597 598
/*
 * We always wait for result of write, for now. It would be nice to make it optional
 * in future
599
 * if ((rq_data_dir(req) == WRITE) && (nbd->flags & NBD_WRITE_NOCHK))
L
Linus Torvalds 已提交
600 601 602
 *   { printk( "Warning: Ignoring result!\n"); nbd_end_request( req ); }
 */

603
static void nbd_request_handler(struct request_queue *q)
A
Alex Elder 已提交
604
		__releases(q->queue_lock) __acquires(q->queue_lock)
L
Linus Torvalds 已提交
605 606 607
{
	struct request *req;
	
608
	while ((req = blk_fetch_request(q)) != NULL) {
609
		struct nbd_device *nbd;
L
Linus Torvalds 已提交
610

611 612
		spin_unlock_irq(q->queue_lock);

613
		nbd = req->rq_disk->private_data;
L
Linus Torvalds 已提交
614

615
		BUG_ON(nbd->magic != NBD_MAGIC);
L
Linus Torvalds 已提交
616

617 618 619
		dev_dbg(nbd_to_dev(nbd), "request %p: dequeued (flags=%x)\n",
			req, req->cmd_type);

620 621
		if (unlikely(!nbd->sock)) {
			dev_err(disk_to_dev(nbd->disk),
622
				"Attempted send on closed socket\n");
623
			req->errors++;
624
			nbd_end_request(nbd, req);
625 626 627 628
			spin_lock_irq(q->queue_lock);
			continue;
		}

629 630 631
		spin_lock_irq(&nbd->queue_lock);
		list_add_tail(&req->queuelist, &nbd->waiting_queue);
		spin_unlock_irq(&nbd->queue_lock);
L
Linus Torvalds 已提交
632

633
		wake_up(&nbd->waiting_wq);
634

L
Linus Torvalds 已提交
635 636 637 638
		spin_lock_irq(q->queue_lock);
	}
}

M
Markus Pargmann 已提交
639 640 641
static int nbd_dev_dbg_init(struct nbd_device *nbd);
static void nbd_dev_dbg_close(struct nbd_device *nbd);

P
Pavel Machek 已提交
642
/* Must be called with tx_lock held */
L
Linus Torvalds 已提交
643

644
static int __nbd_ioctl(struct block_device *bdev, struct nbd_device *nbd,
P
Pavel Machek 已提交
645 646
		       unsigned int cmd, unsigned long arg)
{
L
Linus Torvalds 已提交
647
	switch (cmd) {
P
Pavel Machek 已提交
648 649 650
	case NBD_DISCONNECT: {
		struct request sreq;

651
		dev_info(disk_to_dev(nbd->disk), "NBD_DISCONNECT\n");
652 653
		if (!nbd->sock)
			return -EINVAL;
P
Pavel Machek 已提交
654

655 656 657
		mutex_unlock(&nbd->tx_lock);
		fsync_bdev(bdev);
		mutex_lock(&nbd->tx_lock);
658
		blk_rq_init(NULL, &sreq);
659
		sreq.cmd_type = REQ_TYPE_DRV_PRIV;
660 661

		/* Check again after getting mutex back.  */
662
		if (!nbd->sock)
L
Linus Torvalds 已提交
663
			return -EINVAL;
664

665
		nbd->disconnect = true;
P
Paul Clements 已提交
666

667
		nbd_send_req(nbd, &sreq);
P
Paul Clements 已提交
668
		return 0;
P
Pavel Machek 已提交
669
	}
L
Linus Torvalds 已提交
670
 
P
Pavel Machek 已提交
671
	case NBD_CLEAR_SOCK: {
A
Al Viro 已提交
672
		struct socket *sock = nbd->sock;
673 674 675
		nbd->sock = NULL;
		nbd_clear_que(nbd);
		BUG_ON(!list_empty(&nbd->queue_head));
676
		BUG_ON(!list_empty(&nbd->waiting_queue));
677
		kill_bdev(bdev);
A
Al Viro 已提交
678 679
		if (sock)
			sockfd_put(sock);
P
Pavel Machek 已提交
680 681 682 683
		return 0;
	}

	case NBD_SET_SOCK: {
A
Al Viro 已提交
684 685 686
		struct socket *sock;
		int err;
		if (nbd->sock)
L
Linus Torvalds 已提交
687
			return -EBUSY;
A
Al Viro 已提交
688 689 690 691 692
		sock = sockfd_lookup(arg, &err);
		if (sock) {
			nbd->sock = sock;
			if (max_part > 0)
				bdev->bd_invalidated = 1;
693
			nbd->disconnect = false; /* we're connected now */
A
Al Viro 已提交
694
			return 0;
L
Linus Torvalds 已提交
695
		}
P
Pavel Machek 已提交
696 697 698
		return -EINVAL;
	}

L
Linus Torvalds 已提交
699
	case NBD_SET_BLKSIZE:
700 701 702 703 704
		nbd->blksize = arg;
		nbd->bytesize &= ~(nbd->blksize-1);
		bdev->bd_inode->i_size = nbd->bytesize;
		set_blocksize(bdev, nbd->blksize);
		set_capacity(nbd->disk, nbd->bytesize >> 9);
L
Linus Torvalds 已提交
705
		return 0;
P
Pavel Machek 已提交
706

L
Linus Torvalds 已提交
707
	case NBD_SET_SIZE:
708 709 710 711
		nbd->bytesize = arg & ~(nbd->blksize-1);
		bdev->bd_inode->i_size = nbd->bytesize;
		set_blocksize(bdev, nbd->blksize);
		set_capacity(nbd->disk, nbd->bytesize >> 9);
L
Linus Torvalds 已提交
712
		return 0;
P
Pavel Machek 已提交
713

714
	case NBD_SET_TIMEOUT:
715
		nbd->xmit_timeout = arg * HZ;
M
Markus Pargmann 已提交
716 717 718 719 720 721
		if (arg)
			mod_timer(&nbd->timeout_timer,
				  jiffies + nbd->xmit_timeout);
		else
			del_timer_sync(&nbd->timeout_timer);

722
		return 0;
P
Pavel Machek 已提交
723

P
Paul Clements 已提交
724 725 726 727
	case NBD_SET_FLAGS:
		nbd->flags = arg;
		return 0;

L
Linus Torvalds 已提交
728
	case NBD_SET_SIZE_BLOCKS:
729 730 731 732
		nbd->bytesize = ((u64) arg) * nbd->blksize;
		bdev->bd_inode->i_size = nbd->bytesize;
		set_blocksize(bdev, nbd->blksize);
		set_capacity(nbd->disk, nbd->bytesize >> 9);
L
Linus Torvalds 已提交
733
		return 0;
P
Pavel Machek 已提交
734 735 736

	case NBD_DO_IT: {
		struct task_struct *thread;
A
Al Viro 已提交
737
		struct socket *sock;
P
Pavel Machek 已提交
738 739
		int error;

M
Markus Pargmann 已提交
740
		if (nbd->task_recv)
741
			return -EBUSY;
A
Al Viro 已提交
742
		if (!nbd->sock)
L
Linus Torvalds 已提交
743
			return -EINVAL;
P
Pavel Machek 已提交
744

745
		mutex_unlock(&nbd->tx_lock);
P
Pavel Machek 已提交
746

747 748
		if (nbd->flags & NBD_FLAG_READ_ONLY)
			set_device_ro(bdev, true);
P
Paul Clements 已提交
749 750 751
		if (nbd->flags & NBD_FLAG_SEND_TRIM)
			queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
				nbd->disk->queue);
A
Alex Bligh 已提交
752 753 754 755
		if (nbd->flags & NBD_FLAG_SEND_FLUSH)
			blk_queue_flush(nbd->disk->queue, REQ_FLUSH);
		else
			blk_queue_flush(nbd->disk->queue, 0);
P
Paul Clements 已提交
756

757
		thread = kthread_run(nbd_thread_send, nbd, "%s",
M
Markus Pargmann 已提交
758
				     nbd_name(nbd));
P
Pavel Machek 已提交
759
		if (IS_ERR(thread)) {
760
			mutex_lock(&nbd->tx_lock);
761
			return PTR_ERR(thread);
P
Pavel Machek 已提交
762
		}
763

M
Markus Pargmann 已提交
764
		nbd_dev_dbg_init(nbd);
765
		error = nbd_thread_recv(nbd);
M
Markus Pargmann 已提交
766
		nbd_dev_dbg_close(nbd);
767
		kthread_stop(thread);
P
Pavel Machek 已提交
768

769
		mutex_lock(&nbd->tx_lock);
770

771
		sock_shutdown(nbd);
A
Al Viro 已提交
772 773
		sock = nbd->sock;
		nbd->sock = NULL;
774
		nbd_clear_que(nbd);
775
		kill_bdev(bdev);
P
Paul Clements 已提交
776
		queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD, nbd->disk->queue);
777
		set_device_ro(bdev, false);
A
Al Viro 已提交
778 779
		if (sock)
			sockfd_put(sock);
A
Alex Bligh 已提交
780
		nbd->flags = 0;
781
		nbd->bytesize = 0;
A
Al Viro 已提交
782
		bdev->bd_inode->i_size = 0;
783
		set_capacity(nbd->disk, 0);
L
Laurent Vivier 已提交
784
		if (max_part > 0)
785
			blkdev_reread_part(bdev);
P
Paul Clements 已提交
786 787
		if (nbd->disconnect) /* user requested, ignore socket errors */
			return 0;
788
		return error;
P
Pavel Machek 已提交
789 790
	}

L
Linus Torvalds 已提交
791
	case NBD_CLEAR_QUE:
792 793 794 795
		/*
		 * This is for compatibility only.  The queue is always cleared
		 * by NBD_DO_IT or NBD_CLEAR_SOCK.
		 */
L
Linus Torvalds 已提交
796
		return 0;
P
Pavel Machek 已提交
797

L
Linus Torvalds 已提交
798
	case NBD_PRINT_DEBUG:
799
		dev_info(disk_to_dev(nbd->disk),
800
			"next = %p, prev = %p, head = %p\n",
801 802
			nbd->queue_head.next, nbd->queue_head.prev,
			&nbd->queue_head);
L
Linus Torvalds 已提交
803 804
		return 0;
	}
P
Pavel Machek 已提交
805 806 807 808 809 810
	return -ENOTTY;
}

static int nbd_ioctl(struct block_device *bdev, fmode_t mode,
		     unsigned int cmd, unsigned long arg)
{
811
	struct nbd_device *nbd = bdev->bd_disk->private_data;
P
Pavel Machek 已提交
812 813 814 815 816
	int error;

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

817
	BUG_ON(nbd->magic != NBD_MAGIC);
P
Pavel Machek 已提交
818

819 820 821
	mutex_lock(&nbd->tx_lock);
	error = __nbd_ioctl(bdev, nbd, cmd, arg);
	mutex_unlock(&nbd->tx_lock);
P
Pavel Machek 已提交
822 823

	return error;
L
Linus Torvalds 已提交
824 825
}

826
static const struct block_device_operations nbd_fops =
L
Linus Torvalds 已提交
827 828
{
	.owner =	THIS_MODULE,
829
	.ioctl =	nbd_ioctl,
L
Linus Torvalds 已提交
830 831
};

M
Markus Pargmann 已提交
832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986
#if IS_ENABLED(CONFIG_DEBUG_FS)

static int nbd_dbg_tasks_show(struct seq_file *s, void *unused)
{
	struct nbd_device *nbd = s->private;

	if (nbd->task_recv)
		seq_printf(s, "recv: %d\n", task_pid_nr(nbd->task_recv));
	if (nbd->task_send)
		seq_printf(s, "send: %d\n", task_pid_nr(nbd->task_send));

	return 0;
}

static int nbd_dbg_tasks_open(struct inode *inode, struct file *file)
{
	return single_open(file, nbd_dbg_tasks_show, inode->i_private);
}

static const struct file_operations nbd_dbg_tasks_ops = {
	.open = nbd_dbg_tasks_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
};

static int nbd_dbg_flags_show(struct seq_file *s, void *unused)
{
	struct nbd_device *nbd = s->private;
	u32 flags = nbd->flags;

	seq_printf(s, "Hex: 0x%08x\n\n", flags);

	seq_puts(s, "Known flags:\n");

	if (flags & NBD_FLAG_HAS_FLAGS)
		seq_puts(s, "NBD_FLAG_HAS_FLAGS\n");
	if (flags & NBD_FLAG_READ_ONLY)
		seq_puts(s, "NBD_FLAG_READ_ONLY\n");
	if (flags & NBD_FLAG_SEND_FLUSH)
		seq_puts(s, "NBD_FLAG_SEND_FLUSH\n");
	if (flags & NBD_FLAG_SEND_TRIM)
		seq_puts(s, "NBD_FLAG_SEND_TRIM\n");

	return 0;
}

static int nbd_dbg_flags_open(struct inode *inode, struct file *file)
{
	return single_open(file, nbd_dbg_flags_show, inode->i_private);
}

static const struct file_operations nbd_dbg_flags_ops = {
	.open = nbd_dbg_flags_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
};

static int nbd_dev_dbg_init(struct nbd_device *nbd)
{
	struct dentry *dir;
	struct dentry *f;

	dir = debugfs_create_dir(nbd_name(nbd), nbd_dbg_dir);
	if (IS_ERR_OR_NULL(dir)) {
		dev_err(nbd_to_dev(nbd), "Failed to create debugfs dir for '%s' (%ld)\n",
			nbd_name(nbd), PTR_ERR(dir));
		return PTR_ERR(dir);
	}
	nbd->dbg_dir = dir;

	f = debugfs_create_file("tasks", 0444, dir, nbd, &nbd_dbg_tasks_ops);
	if (IS_ERR_OR_NULL(f)) {
		dev_err(nbd_to_dev(nbd), "Failed to create debugfs file 'tasks', %ld\n",
			PTR_ERR(f));
		return PTR_ERR(f);
	}

	f = debugfs_create_u64("size_bytes", 0444, dir, &nbd->bytesize);
	if (IS_ERR_OR_NULL(f)) {
		dev_err(nbd_to_dev(nbd), "Failed to create debugfs file 'size_bytes', %ld\n",
			PTR_ERR(f));
		return PTR_ERR(f);
	}

	f = debugfs_create_u32("timeout", 0444, dir, &nbd->xmit_timeout);
	if (IS_ERR_OR_NULL(f)) {
		dev_err(nbd_to_dev(nbd), "Failed to create debugfs file 'timeout', %ld\n",
			PTR_ERR(f));
		return PTR_ERR(f);
	}

	f = debugfs_create_u32("blocksize", 0444, dir, &nbd->blksize);
	if (IS_ERR_OR_NULL(f)) {
		dev_err(nbd_to_dev(nbd), "Failed to create debugfs file 'blocksize', %ld\n",
			PTR_ERR(f));
		return PTR_ERR(f);
	}

	f = debugfs_create_file("flags", 0444, dir, &nbd, &nbd_dbg_flags_ops);
	if (IS_ERR_OR_NULL(f)) {
		dev_err(nbd_to_dev(nbd), "Failed to create debugfs file 'flags', %ld\n",
			PTR_ERR(f));
		return PTR_ERR(f);
	}

	return 0;
}

static void nbd_dev_dbg_close(struct nbd_device *nbd)
{
	debugfs_remove_recursive(nbd->dbg_dir);
}

static int nbd_dbg_init(void)
{
	struct dentry *dbg_dir;

	dbg_dir = debugfs_create_dir("nbd", NULL);
	if (IS_ERR(dbg_dir))
		return PTR_ERR(dbg_dir);

	nbd_dbg_dir = dbg_dir;

	return 0;
}

static void nbd_dbg_close(void)
{
	debugfs_remove_recursive(nbd_dbg_dir);
}

#else  /* IS_ENABLED(CONFIG_DEBUG_FS) */

static int nbd_dev_dbg_init(struct nbd_device *nbd)
{
	return 0;
}

static void nbd_dev_dbg_close(struct nbd_device *nbd)
{
}

static int nbd_dbg_init(void)
{
	return 0;
}

static void nbd_dbg_close(void)
{
}

#endif

L
Linus Torvalds 已提交
987 988 989 990 991 992 993 994 995
/*
 * And here should be modules and kernel interface 
 *  (Just smiley confuses emacs :-)
 */

static int __init nbd_init(void)
{
	int err = -ENOMEM;
	int i;
L
Laurent Vivier 已提交
996
	int part_shift;
L
Linus Torvalds 已提交
997

998
	BUILD_BUG_ON(sizeof(struct nbd_request) != 28);
L
Linus Torvalds 已提交
999

L
Laurent Vivier 已提交
1000
	if (max_part < 0) {
1001
		printk(KERN_ERR "nbd: max_part must be >= 0\n");
L
Laurent Vivier 已提交
1002 1003 1004 1005
		return -EINVAL;
	}

	part_shift = 0;
1006
	if (max_part > 0) {
L
Laurent Vivier 已提交
1007 1008
		part_shift = fls(max_part);

1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
		/*
		 * Adjust max_part according to part_shift as it is exported
		 * to user space so that user can know the max number of
		 * partition kernel should be able to manage.
		 *
		 * Note that -1 is required because partition 0 is reserved
		 * for the whole disk.
		 */
		max_part = (1UL << part_shift) - 1;
	}

1020 1021 1022 1023 1024 1025
	if ((1UL << part_shift) > DISK_MAX_PARTS)
		return -EINVAL;

	if (nbds_max > 1UL << (MINORBITS - part_shift))
		return -EINVAL;

S
Sudip Mukherjee 已提交
1026 1027 1028 1029
	nbd_dev = kcalloc(nbds_max, sizeof(*nbd_dev), GFP_KERNEL);
	if (!nbd_dev)
		return -ENOMEM;

1030
	for (i = 0; i < nbds_max; i++) {
L
Laurent Vivier 已提交
1031
		struct gendisk *disk = alloc_disk(1 << part_shift);
L
Linus Torvalds 已提交
1032 1033 1034 1035 1036 1037 1038 1039
		if (!disk)
			goto out;
		nbd_dev[i].disk = disk;
		/*
		 * The new linux 2.5 block layer implementation requires
		 * every gendisk to have its very own request_queue struct.
		 * These structs are big so we dynamically allocate them.
		 */
1040
		disk->queue = blk_init_queue(nbd_request_handler, &nbd_lock);
L
Linus Torvalds 已提交
1041 1042 1043 1044
		if (!disk->queue) {
			put_disk(disk);
			goto out;
		}
1045 1046 1047 1048
		/*
		 * Tell the block layer that we are not a rotational device
		 */
		queue_flag_set_unlocked(QUEUE_FLAG_NONROT, disk->queue);
1049
		queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, disk->queue);
P
Paul Clements 已提交
1050
		disk->queue->limits.discard_granularity = 512;
1051
		blk_queue_max_discard_sectors(disk->queue, UINT_MAX);
P
Paul Clements 已提交
1052
		disk->queue->limits.discard_zeroes_data = 0;
1053 1054
		blk_queue_max_hw_sectors(disk->queue, 65536);
		disk->queue->limits.max_sectors = 256;
L
Linus Torvalds 已提交
1055 1056 1057 1058 1059 1060 1061 1062 1063
	}

	if (register_blkdev(NBD_MAJOR, "nbd")) {
		err = -EIO;
		goto out;
	}

	printk(KERN_INFO "nbd: registered device at major %d\n", NBD_MAJOR);

M
Markus Pargmann 已提交
1064 1065
	nbd_dbg_init();

1066
	for (i = 0; i < nbds_max; i++) {
L
Linus Torvalds 已提交
1067
		struct gendisk *disk = nbd_dev[i].disk;
1068
		nbd_dev[i].magic = NBD_MAGIC;
1069
		INIT_LIST_HEAD(&nbd_dev[i].waiting_queue);
L
Linus Torvalds 已提交
1070
		spin_lock_init(&nbd_dev[i].queue_lock);
M
Markus Pargmann 已提交
1071
		spin_lock_init(&nbd_dev[i].tasks_lock);
L
Linus Torvalds 已提交
1072
		INIT_LIST_HEAD(&nbd_dev[i].queue_head);
1073
		mutex_init(&nbd_dev[i].tx_lock);
M
Markus Pargmann 已提交
1074 1075 1076
		init_timer(&nbd_dev[i].timeout_timer);
		nbd_dev[i].timeout_timer.function = nbd_xmit_timeout;
		nbd_dev[i].timeout_timer.data = (unsigned long)&nbd_dev[i];
1077
		init_waitqueue_head(&nbd_dev[i].active_wq);
1078
		init_waitqueue_head(&nbd_dev[i].waiting_wq);
L
Linus Torvalds 已提交
1079
		nbd_dev[i].blksize = 1024;
1080
		nbd_dev[i].bytesize = 0;
L
Linus Torvalds 已提交
1081
		disk->major = NBD_MAJOR;
L
Laurent Vivier 已提交
1082
		disk->first_minor = i << part_shift;
L
Linus Torvalds 已提交
1083 1084 1085
		disk->fops = &nbd_fops;
		disk->private_data = &nbd_dev[i];
		sprintf(disk->disk_name, "nbd%d", i);
1086
		set_capacity(disk, 0);
L
Linus Torvalds 已提交
1087 1088 1089 1090 1091 1092 1093 1094 1095
		add_disk(disk);
	}

	return 0;
out:
	while (i--) {
		blk_cleanup_queue(nbd_dev[i].disk->queue);
		put_disk(nbd_dev[i].disk);
	}
1096
	kfree(nbd_dev);
L
Linus Torvalds 已提交
1097 1098 1099 1100 1101 1102
	return err;
}

static void __exit nbd_cleanup(void)
{
	int i;
M
Markus Pargmann 已提交
1103 1104 1105

	nbd_dbg_close();

1106
	for (i = 0; i < nbds_max; i++) {
L
Linus Torvalds 已提交
1107
		struct gendisk *disk = nbd_dev[i].disk;
1108
		nbd_dev[i].magic = 0;
L
Linus Torvalds 已提交
1109 1110 1111 1112 1113 1114 1115
		if (disk) {
			del_gendisk(disk);
			blk_cleanup_queue(disk->queue);
			put_disk(disk);
		}
	}
	unregister_blkdev(NBD_MAJOR, "nbd");
1116
	kfree(nbd_dev);
L
Linus Torvalds 已提交
1117 1118 1119 1120 1121 1122 1123 1124 1125
	printk(KERN_INFO "nbd: unregistered device at major %d\n", NBD_MAJOR);
}

module_init(nbd_init);
module_exit(nbd_cleanup);

MODULE_DESCRIPTION("Network Block Device");
MODULE_LICENSE("GPL");

1126
module_param(nbds_max, int, 0444);
L
Laurent Vivier 已提交
1127 1128 1129
MODULE_PARM_DESC(nbds_max, "number of network block devices to initialize (default: 16)");
module_param(max_part, int, 0444);
MODULE_PARM_DESC(max_part, "number of partitions per device (default: 0)");