nbd.c 22.1 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>
L
Linus Torvalds 已提交
36 37 38 39 40 41

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

#include <linux/nbd.h>

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
struct nbd_device {
	int flags;
	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 已提交
57
	loff_t bytesize;
58 59
	int xmit_timeout;
	int disconnect; /* a disconnect has been requested by user */
M
Markus Pargmann 已提交
60 61 62 63

	struct timer_list timeout_timer;
	struct task_struct *task_recv;
	struct task_struct *task_send;
64 65
};

66
#define NBD_MAGIC 0x68797548
L
Linus Torvalds 已提交
67

68
static unsigned int nbds_max = 16;
69
static struct nbd_device *nbd_dev;
L
Laurent Vivier 已提交
70
static int max_part;
L
Linus Torvalds 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83

/*
 * 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);

84
static inline struct device *nbd_to_dev(struct nbd_device *nbd)
L
Linus Torvalds 已提交
85
{
86
	return disk_to_dev(nbd->disk);
L
Linus Torvalds 已提交
87 88 89 90 91 92 93 94
}

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 已提交
95
	case NBD_CMD_FLUSH: return "flush";
P
Paul Clements 已提交
96
	case  NBD_CMD_TRIM: return "trim/discard";
L
Linus Torvalds 已提交
97 98 99 100
	}
	return "invalid";
}

101
static void nbd_end_request(struct nbd_device *nbd, struct request *req)
L
Linus Torvalds 已提交
102
{
103
	int error = req->errors ? -EIO : 0;
104
	struct request_queue *q = req->q;
L
Linus Torvalds 已提交
105 106
	unsigned long flags;

107 108
	dev_dbg(nbd_to_dev(nbd), "request %p: %s\n", req,
		error ? "failed" : "done");
L
Linus Torvalds 已提交
109 110

	spin_lock_irqsave(q->queue_lock, flags);
111
	__blk_end_request_all(req, error);
L
Linus Torvalds 已提交
112 113 114
	spin_unlock_irqrestore(q->queue_lock, flags);
}

115 116 117
/*
 * Forcibly shutdown the socket causing all listeners to error
 */
118
static void sock_shutdown(struct nbd_device *nbd)
119
{
M
Markus Pargmann 已提交
120 121 122 123 124 125 126
	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);
127 128 129 130
}

static void nbd_xmit_timeout(unsigned long arg)
{
M
Markus Pargmann 已提交
131 132 133 134 135 136 137 138 139 140 141
	struct nbd_device *nbd = (struct nbd_device *)arg;
	struct task_struct *task;

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

	nbd->disconnect = 1;

	task = READ_ONCE(nbd->task_recv);
	if (task)
		force_sig(SIGKILL, task);
142

M
Markus Pargmann 已提交
143 144 145 146 147
	task = READ_ONCE(nbd->task_send);
	if (task)
		force_sig(SIGKILL, nbd->task_send);

	dev_err(nbd_to_dev(nbd), "Connection timed out, killed receiver and sender, shutting down connection\n");
148 149
}

L
Linus Torvalds 已提交
150 151 152
/*
 *  Send or receive packet.
 */
153
static int sock_xmit(struct nbd_device *nbd, int send, void *buf, int size,
L
Linus Torvalds 已提交
154 155
		int msg_flags)
{
156
	struct socket *sock = nbd->sock;
L
Linus Torvalds 已提交
157 158 159
	int result;
	struct msghdr msg;
	struct kvec iov;
160
	sigset_t blocked, oldset;
161
	unsigned long pflags = current->flags;
L
Linus Torvalds 已提交
162

163
	if (unlikely(!sock)) {
164
		dev_err(disk_to_dev(nbd->disk),
165 166
			"Attempted %s on closed socket in sock_xmit\n",
			(send ? "send" : "recv"));
167 168 169
		return -EINVAL;
	}

L
Linus Torvalds 已提交
170 171
	/* Allow interception of SIGKILL only
	 * Don't allow other signals to interrupt the transmission */
172 173
	siginitsetinv(&blocked, sigmask(SIGKILL));
	sigprocmask(SIG_SETMASK, &blocked, &oldset);
L
Linus Torvalds 已提交
174

175
	current->flags |= PF_MEMALLOC;
L
Linus Torvalds 已提交
176
	do {
177
		sock->sk->sk_allocation = GFP_NOIO | __GFP_MEMALLOC;
L
Linus Torvalds 已提交
178 179 180 181 182 183 184 185
		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 已提交
186
		if (send)
L
Linus Torvalds 已提交
187
			result = kernel_sendmsg(sock, &msg, &iov, 1, size);
M
Markus Pargmann 已提交
188
		else
189 190
			result = kernel_recvmsg(sock, &msg, &iov, 1, size,
						msg.msg_flags);
L
Linus Torvalds 已提交
191 192 193 194 195 196 197 198 199 200

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

201
	sigprocmask(SIG_SETMASK, &oldset, NULL);
202
	tsk_restore_flags(current, pflags, PF_MEMALLOC);
L
Linus Torvalds 已提交
203

M
Markus Pargmann 已提交
204 205 206
	if (!send && nbd->xmit_timeout)
		mod_timer(&nbd->timeout_timer, jiffies + nbd->xmit_timeout);

L
Linus Torvalds 已提交
207 208 209
	return result;
}

210
static inline int sock_send_bvec(struct nbd_device *nbd, struct bio_vec *bvec,
L
Linus Torvalds 已提交
211 212 213 214
		int flags)
{
	int result;
	void *kaddr = kmap(bvec->bv_page);
215 216
	result = sock_xmit(nbd, 1, kaddr + bvec->bv_offset,
			   bvec->bv_len, flags);
L
Linus Torvalds 已提交
217 218 219 220
	kunmap(bvec->bv_page);
	return result;
}

221
/* always call with the tx_lock held */
222
static int nbd_send_req(struct nbd_device *nbd, struct request *req)
L
Linus Torvalds 已提交
223
{
224
	int result, flags;
L
Linus Torvalds 已提交
225
	struct nbd_request request;
226
	unsigned long size = blk_rq_bytes(req);
C
Christoph Hellwig 已提交
227 228 229 230 231 232 233 234 235 236 237 238
	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 已提交
239

240
	memset(&request, 0, sizeof(request));
L
Linus Torvalds 已提交
241
	request.magic = htonl(NBD_REQUEST_MAGIC);
C
Christoph Hellwig 已提交
242 243
	request.type = htonl(type);
	if (type != NBD_CMD_FLUSH && type != NBD_CMD_DISC) {
A
Alex Bligh 已提交
244 245 246
		request.from = cpu_to_be64((u64)blk_rq_pos(req) << 9);
		request.len = htonl(size);
	}
L
Linus Torvalds 已提交
247 248
	memcpy(request.handle, &req, sizeof(req));

249
	dev_dbg(nbd_to_dev(nbd), "request %p: sending control (%s@%llu,%uB)\n",
C
Christoph Hellwig 已提交
250
		req, nbdcmd_to_ascii(type),
251
		(unsigned long long)blk_rq_pos(req) << 9, blk_rq_bytes(req));
252
	result = sock_xmit(nbd, 1, &request, sizeof(request),
C
Christoph Hellwig 已提交
253
			(type == NBD_CMD_WRITE) ? MSG_MORE : 0);
L
Linus Torvalds 已提交
254
	if (result <= 0) {
255
		dev_err(disk_to_dev(nbd->disk),
256
			"Send control failed (result %d)\n", result);
257
		return -EIO;
L
Linus Torvalds 已提交
258 259
	}

C
Christoph Hellwig 已提交
260
	if (type == NBD_CMD_WRITE) {
261
		struct req_iterator iter;
262
		struct bio_vec bvec;
L
Linus Torvalds 已提交
263 264 265 266
		/*
		 * we are really probing at internals to determine
		 * whether to set MSG_MORE or not...
		 */
267
		rq_for_each_segment(bvec, req, iter) {
268
			flags = 0;
K
Kent Overstreet 已提交
269
			if (!rq_iter_last(bvec, iter))
270
				flags = MSG_MORE;
271 272
			dev_dbg(nbd_to_dev(nbd), "request %p: sending %d bytes data\n",
				req, bvec.bv_len);
273
			result = sock_send_bvec(nbd, &bvec, flags);
274
			if (result <= 0) {
275
				dev_err(disk_to_dev(nbd->disk),
276 277
					"Send data failed (result %d)\n",
					result);
278
				return -EIO;
279
			}
L
Linus Torvalds 已提交
280 281 282 283 284
		}
	}
	return 0;
}

285
static struct request *nbd_find_request(struct nbd_device *nbd,
286
					struct request *xreq)
L
Linus Torvalds 已提交
287
{
288
	struct request *req, *tmp;
289
	int err;
L
Linus Torvalds 已提交
290

291
	err = wait_event_interruptible(nbd->active_wq, nbd->active_req != xreq);
292
	if (unlikely(err))
293
		return ERR_PTR(err);
294

295 296
	spin_lock(&nbd->queue_lock);
	list_for_each_entry_safe(req, tmp, &nbd->queue_head, queuelist) {
L
Linus Torvalds 已提交
297 298 299
		if (req != xreq)
			continue;
		list_del_init(&req->queuelist);
300
		spin_unlock(&nbd->queue_lock);
L
Linus Torvalds 已提交
301 302
		return req;
	}
303
	spin_unlock(&nbd->queue_lock);
304

305
	return ERR_PTR(-ENOENT);
L
Linus Torvalds 已提交
306 307
}

308
static inline int sock_recv_bvec(struct nbd_device *nbd, struct bio_vec *bvec)
L
Linus Torvalds 已提交
309 310 311
{
	int result;
	void *kaddr = kmap(bvec->bv_page);
312
	result = sock_xmit(nbd, 0, kaddr + bvec->bv_offset, bvec->bv_len,
L
Linus Torvalds 已提交
313 314 315 316 317 318
			MSG_WAITALL);
	kunmap(bvec->bv_page);
	return result;
}

/* NULL returned = something went wrong, inform userspace */
319
static struct request *nbd_read_stat(struct nbd_device *nbd)
L
Linus Torvalds 已提交
320 321 322 323 324 325
{
	int result;
	struct nbd_reply reply;
	struct request *req;

	reply.magic = 0;
326
	result = sock_xmit(nbd, 0, &reply, sizeof(reply), MSG_WAITALL);
L
Linus Torvalds 已提交
327
	if (result <= 0) {
328
		dev_err(disk_to_dev(nbd->disk),
329
			"Receive control failed (result %d)\n", result);
330
		return ERR_PTR(result);
L
Linus Torvalds 已提交
331
	}
332 333

	if (ntohl(reply.magic) != NBD_REPLY_MAGIC) {
334
		dev_err(disk_to_dev(nbd->disk), "Wrong magic (0x%lx)\n",
335
				(unsigned long)ntohl(reply.magic));
336
		return ERR_PTR(-EPROTO);
337 338
	}

339
	req = nbd_find_request(nbd, *(struct request **)reply.handle);
340
	if (IS_ERR(req)) {
341 342
		result = PTR_ERR(req);
		if (result != -ENOENT)
343
			return ERR_PTR(result);
344

345
		dev_err(disk_to_dev(nbd->disk), "Unexpected reply (%p)\n",
346
			reply.handle);
347
		return ERR_PTR(-EBADR);
L
Linus Torvalds 已提交
348 349 350
	}

	if (ntohl(reply.error)) {
351
		dev_err(disk_to_dev(nbd->disk), "Other side returned error (%d)\n",
352
			ntohl(reply.error));
L
Linus Torvalds 已提交
353 354 355 356
		req->errors++;
		return req;
	}

357
	dev_dbg(nbd_to_dev(nbd), "request %p: got reply\n", req);
C
Christoph Hellwig 已提交
358
	if (rq_data_dir(req) != WRITE) {
359
		struct req_iterator iter;
360
		struct bio_vec bvec;
361 362

		rq_for_each_segment(bvec, req, iter) {
363
			result = sock_recv_bvec(nbd, &bvec);
364
			if (result <= 0) {
365
				dev_err(disk_to_dev(nbd->disk), "Receive data failed (result %d)\n",
366
					result);
367 368 369
				req->errors++;
				return req;
			}
370 371
			dev_dbg(nbd_to_dev(nbd), "request %p: got %d bytes data\n",
				req, bvec.bv_len);
L
Linus Torvalds 已提交
372 373 374 375 376
		}
	}
	return req;
}

377 378
static ssize_t pid_show(struct device *dev,
			struct device_attribute *attr, char *buf)
379
{
380
	struct gendisk *disk = dev_to_disk(dev);
M
Markus Pargmann 已提交
381
	struct nbd_device *nbd = (struct nbd_device *)disk->private_data;
382

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

386
static struct device_attribute pid_attr = {
387
	.attr = { .name = "pid", .mode = S_IRUGO},
388 389 390
	.show = pid_show,
};

391
static int nbd_do_it(struct nbd_device *nbd)
L
Linus Torvalds 已提交
392 393
{
	struct request *req;
394
	int ret;
L
Linus Torvalds 已提交
395

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

398
	sk_set_memalloc(nbd->sock->sk);
M
Markus Pargmann 已提交
399 400 401

	nbd->task_recv = current;

402
	ret = device_create_file(disk_to_dev(nbd->disk), &pid_attr);
403
	if (ret) {
404
		dev_err(disk_to_dev(nbd->disk), "device_create_file failed!\n");
M
Markus Pargmann 已提交
405
		nbd->task_recv = NULL;
406 407
		return ret;
	}
408

409 410 411 412 413 414 415
	while (1) {
		req = nbd_read_stat(nbd);
		if (IS_ERR(req)) {
			ret = PTR_ERR(req);
			break;
		}

416
		nbd_end_request(nbd, req);
417
	}
418

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

M
Markus Pargmann 已提交
421 422 423 424 425 426 427 428
	nbd->task_recv = NULL;

	if (signal_pending(current)) {
		siginfo_t info;

		ret = dequeue_signal_lock(current, &current->blocked, &info);
		dev_warn(nbd_to_dev(nbd), "pid %d, %s, got signal %d\n",
			 task_pid_nr(current), current->comm, ret);
429 430 431
		mutex_lock(&nbd->tx_lock);
		sock_shutdown(nbd);
		mutex_unlock(&nbd->tx_lock);
M
Markus Pargmann 已提交
432 433 434 435
		ret = -ETIMEDOUT;
	}

	return ret;
L
Linus Torvalds 已提交
436 437
}

438
static void nbd_clear_que(struct nbd_device *nbd)
L
Linus Torvalds 已提交
439 440 441
{
	struct request *req;

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

444
	/*
445
	 * Because we have set nbd->sock to NULL under the tx_lock, all
446 447 448 449 450 451
	 * 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.
	 */
452 453
	BUG_ON(nbd->sock);
	BUG_ON(nbd->active_req);
454

455 456
	while (!list_empty(&nbd->queue_head)) {
		req = list_entry(nbd->queue_head.next, struct request,
457 458 459
				 queuelist);
		list_del_init(&req->queuelist);
		req->errors++;
460
		nbd_end_request(nbd, req);
461
	}
462 463 464 465 466 467

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

473

474
static void nbd_handle_req(struct nbd_device *nbd, struct request *req)
475
{
476
	if (req->cmd_type != REQ_TYPE_FS)
477 478
		goto error_out;

C
Christoph Hellwig 已提交
479 480 481 482 483
	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 已提交
484 485
	}

486 487
	req->errors = 0;

488 489 490 491
	mutex_lock(&nbd->tx_lock);
	if (unlikely(!nbd->sock)) {
		mutex_unlock(&nbd->tx_lock);
		dev_err(disk_to_dev(nbd->disk),
492
			"Attempted send on closed socket\n");
P
Pavel Machek 已提交
493
		goto error_out;
494 495
	}

496
	nbd->active_req = req;
497

M
Markus Pargmann 已提交
498 499 500
	if (nbd->xmit_timeout && list_empty_careful(&nbd->queue_head))
		mod_timer(&nbd->timeout_timer, jiffies + nbd->xmit_timeout);

501 502
	if (nbd_send_req(nbd, req) != 0) {
		dev_err(disk_to_dev(nbd->disk), "Request send failed\n");
503
		req->errors++;
504
		nbd_end_request(nbd, req);
505
	} else {
506
		spin_lock(&nbd->queue_lock);
507
		list_add_tail(&req->queuelist, &nbd->queue_head);
508
		spin_unlock(&nbd->queue_lock);
509 510
	}

511 512 513
	nbd->active_req = NULL;
	mutex_unlock(&nbd->tx_lock);
	wake_up_all(&nbd->active_wq);
514 515 516 517 518

	return;

error_out:
	req->errors++;
519
	nbd_end_request(nbd, req);
520 521 522 523
}

static int nbd_thread(void *data)
{
524
	struct nbd_device *nbd = data;
525 526
	struct request *req;

M
Markus Pargmann 已提交
527 528
	nbd->task_send = current;

529
	set_user_nice(current, MIN_NICE);
530
	while (!kthread_should_stop() || !list_empty(&nbd->waiting_queue)) {
531
		/* wait for something to do */
532
		wait_event_interruptible(nbd->waiting_wq,
533
					 kthread_should_stop() ||
534
					 !list_empty(&nbd->waiting_queue));
535

M
Markus Pargmann 已提交
536 537 538 539 540 541 542 543
		if (signal_pending(current)) {
			siginfo_t info;
			int ret;

			ret = dequeue_signal_lock(current, &current->blocked,
						  &info);
			dev_warn(nbd_to_dev(nbd), "pid %d, %s, got signal %d\n",
				 task_pid_nr(current), current->comm, ret);
544 545 546
			mutex_lock(&nbd->tx_lock);
			sock_shutdown(nbd);
			mutex_unlock(&nbd->tx_lock);
M
Markus Pargmann 已提交
547 548 549
			break;
		}

550
		/* extract request */
551
		if (list_empty(&nbd->waiting_queue))
552 553
			continue;

554 555
		spin_lock_irq(&nbd->queue_lock);
		req = list_entry(nbd->waiting_queue.next, struct request,
556 557
				 queuelist);
		list_del_init(&req->queuelist);
558
		spin_unlock_irq(&nbd->queue_lock);
559 560

		/* handle request */
561
		nbd_handle_req(nbd, req);
562
	}
M
Markus Pargmann 已提交
563 564 565

	nbd->task_send = NULL;

566 567 568
	return 0;
}

L
Linus Torvalds 已提交
569 570 571
/*
 * We always wait for result of write, for now. It would be nice to make it optional
 * in future
572
 * if ((rq_data_dir(req) == WRITE) && (nbd->flags & NBD_WRITE_NOCHK))
L
Linus Torvalds 已提交
573 574 575
 *   { printk( "Warning: Ignoring result!\n"); nbd_end_request( req ); }
 */

P
Pavel Machek 已提交
576
static void do_nbd_request(struct request_queue *q)
A
Alex Elder 已提交
577
		__releases(q->queue_lock) __acquires(q->queue_lock)
L
Linus Torvalds 已提交
578 579 580
{
	struct request *req;
	
581
	while ((req = blk_fetch_request(q)) != NULL) {
582
		struct nbd_device *nbd;
L
Linus Torvalds 已提交
583

584 585
		spin_unlock_irq(q->queue_lock);

586
		nbd = req->rq_disk->private_data;
L
Linus Torvalds 已提交
587

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

590 591 592
		dev_dbg(nbd_to_dev(nbd), "request %p: dequeued (flags=%x)\n",
			req, req->cmd_type);

593 594
		if (unlikely(!nbd->sock)) {
			dev_err(disk_to_dev(nbd->disk),
595
				"Attempted send on closed socket\n");
596
			req->errors++;
597
			nbd_end_request(nbd, req);
598 599 600 601
			spin_lock_irq(q->queue_lock);
			continue;
		}

602 603 604
		spin_lock_irq(&nbd->queue_lock);
		list_add_tail(&req->queuelist, &nbd->waiting_queue);
		spin_unlock_irq(&nbd->queue_lock);
L
Linus Torvalds 已提交
605

606
		wake_up(&nbd->waiting_wq);
607

L
Linus Torvalds 已提交
608 609 610 611
		spin_lock_irq(q->queue_lock);
	}
}

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

614
static int __nbd_ioctl(struct block_device *bdev, struct nbd_device *nbd,
P
Pavel Machek 已提交
615 616
		       unsigned int cmd, unsigned long arg)
{
L
Linus Torvalds 已提交
617
	switch (cmd) {
P
Pavel Machek 已提交
618 619 620
	case NBD_DISCONNECT: {
		struct request sreq;

621
		dev_info(disk_to_dev(nbd->disk), "NBD_DISCONNECT\n");
622 623
		if (!nbd->sock)
			return -EINVAL;
P
Pavel Machek 已提交
624

625 626 627
		mutex_unlock(&nbd->tx_lock);
		fsync_bdev(bdev);
		mutex_lock(&nbd->tx_lock);
628
		blk_rq_init(NULL, &sreq);
629
		sreq.cmd_type = REQ_TYPE_DRV_PRIV;
630 631

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

P
Paul Clements 已提交
635 636
		nbd->disconnect = 1;

637
		nbd_send_req(nbd, &sreq);
P
Paul Clements 已提交
638
		return 0;
P
Pavel Machek 已提交
639
	}
L
Linus Torvalds 已提交
640
 
P
Pavel Machek 已提交
641
	case NBD_CLEAR_SOCK: {
A
Al Viro 已提交
642
		struct socket *sock = nbd->sock;
643 644 645
		nbd->sock = NULL;
		nbd_clear_que(nbd);
		BUG_ON(!list_empty(&nbd->queue_head));
646
		BUG_ON(!list_empty(&nbd->waiting_queue));
647
		kill_bdev(bdev);
A
Al Viro 已提交
648 649
		if (sock)
			sockfd_put(sock);
P
Pavel Machek 已提交
650 651 652 653
		return 0;
	}

	case NBD_SET_SOCK: {
A
Al Viro 已提交
654 655 656
		struct socket *sock;
		int err;
		if (nbd->sock)
L
Linus Torvalds 已提交
657
			return -EBUSY;
A
Al Viro 已提交
658 659 660 661 662 663 664
		sock = sockfd_lookup(arg, &err);
		if (sock) {
			nbd->sock = sock;
			if (max_part > 0)
				bdev->bd_invalidated = 1;
			nbd->disconnect = 0; /* we're connected now */
			return 0;
L
Linus Torvalds 已提交
665
		}
P
Pavel Machek 已提交
666 667 668
		return -EINVAL;
	}

L
Linus Torvalds 已提交
669
	case NBD_SET_BLKSIZE:
670 671 672 673 674
		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 已提交
675
		return 0;
P
Pavel Machek 已提交
676

L
Linus Torvalds 已提交
677
	case NBD_SET_SIZE:
678 679 680 681
		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 已提交
682
		return 0;
P
Pavel Machek 已提交
683

684
	case NBD_SET_TIMEOUT:
685
		nbd->xmit_timeout = arg * HZ;
M
Markus Pargmann 已提交
686 687 688 689 690 691
		if (arg)
			mod_timer(&nbd->timeout_timer,
				  jiffies + nbd->xmit_timeout);
		else
			del_timer_sync(&nbd->timeout_timer);

692
		return 0;
P
Pavel Machek 已提交
693

P
Paul Clements 已提交
694 695 696 697
	case NBD_SET_FLAGS:
		nbd->flags = arg;
		return 0;

L
Linus Torvalds 已提交
698
	case NBD_SET_SIZE_BLOCKS:
699 700 701 702
		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 已提交
703
		return 0;
P
Pavel Machek 已提交
704 705 706

	case NBD_DO_IT: {
		struct task_struct *thread;
A
Al Viro 已提交
707
		struct socket *sock;
P
Pavel Machek 已提交
708 709
		int error;

M
Markus Pargmann 已提交
710
		if (nbd->task_recv)
711
			return -EBUSY;
A
Al Viro 已提交
712
		if (!nbd->sock)
L
Linus Torvalds 已提交
713
			return -EINVAL;
P
Pavel Machek 已提交
714

715
		mutex_unlock(&nbd->tx_lock);
P
Pavel Machek 已提交
716

717 718
		if (nbd->flags & NBD_FLAG_READ_ONLY)
			set_device_ro(bdev, true);
P
Paul Clements 已提交
719 720 721
		if (nbd->flags & NBD_FLAG_SEND_TRIM)
			queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
				nbd->disk->queue);
A
Alex Bligh 已提交
722 723 724 725
		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 已提交
726

727 728
		thread = kthread_run(nbd_thread, nbd, "%s",
				     nbd->disk->disk_name);
P
Pavel Machek 已提交
729
		if (IS_ERR(thread)) {
730
			mutex_lock(&nbd->tx_lock);
731
			return PTR_ERR(thread);
P
Pavel Machek 已提交
732
		}
733

734
		error = nbd_do_it(nbd);
735
		kthread_stop(thread);
P
Pavel Machek 已提交
736

737
		mutex_lock(&nbd->tx_lock);
738

739
		sock_shutdown(nbd);
A
Al Viro 已提交
740 741
		sock = nbd->sock;
		nbd->sock = NULL;
742
		nbd_clear_que(nbd);
743
		kill_bdev(bdev);
P
Paul Clements 已提交
744
		queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD, nbd->disk->queue);
745
		set_device_ro(bdev, false);
A
Al Viro 已提交
746 747
		if (sock)
			sockfd_put(sock);
A
Alex Bligh 已提交
748
		nbd->flags = 0;
749
		nbd->bytesize = 0;
A
Al Viro 已提交
750
		bdev->bd_inode->i_size = 0;
751
		set_capacity(nbd->disk, 0);
L
Laurent Vivier 已提交
752
		if (max_part > 0)
753
			blkdev_reread_part(bdev);
P
Paul Clements 已提交
754 755
		if (nbd->disconnect) /* user requested, ignore socket errors */
			return 0;
756
		return error;
P
Pavel Machek 已提交
757 758
	}

L
Linus Torvalds 已提交
759
	case NBD_CLEAR_QUE:
760 761 762 763
		/*
		 * This is for compatibility only.  The queue is always cleared
		 * by NBD_DO_IT or NBD_CLEAR_SOCK.
		 */
L
Linus Torvalds 已提交
764
		return 0;
P
Pavel Machek 已提交
765

L
Linus Torvalds 已提交
766
	case NBD_PRINT_DEBUG:
767
		dev_info(disk_to_dev(nbd->disk),
768
			"next = %p, prev = %p, head = %p\n",
769 770
			nbd->queue_head.next, nbd->queue_head.prev,
			&nbd->queue_head);
L
Linus Torvalds 已提交
771 772
		return 0;
	}
P
Pavel Machek 已提交
773 774 775 776 777 778
	return -ENOTTY;
}

static int nbd_ioctl(struct block_device *bdev, fmode_t mode,
		     unsigned int cmd, unsigned long arg)
{
779
	struct nbd_device *nbd = bdev->bd_disk->private_data;
P
Pavel Machek 已提交
780 781 782 783 784
	int error;

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

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

787 788 789
	mutex_lock(&nbd->tx_lock);
	error = __nbd_ioctl(bdev, nbd, cmd, arg);
	mutex_unlock(&nbd->tx_lock);
P
Pavel Machek 已提交
790 791

	return error;
L
Linus Torvalds 已提交
792 793
}

794
static const struct block_device_operations nbd_fops =
L
Linus Torvalds 已提交
795 796
{
	.owner =	THIS_MODULE,
797
	.ioctl =	nbd_ioctl,
L
Linus Torvalds 已提交
798 799 800 801 802 803 804 805 806 807 808
};

/*
 * 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 已提交
809
	int part_shift;
L
Linus Torvalds 已提交
810

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

L
Laurent Vivier 已提交
813
	if (max_part < 0) {
814
		printk(KERN_ERR "nbd: max_part must be >= 0\n");
L
Laurent Vivier 已提交
815 816 817 818
		return -EINVAL;
	}

	part_shift = 0;
819
	if (max_part > 0) {
L
Laurent Vivier 已提交
820 821
		part_shift = fls(max_part);

822 823 824 825 826 827 828 829 830 831 832
		/*
		 * 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;
	}

833 834 835 836 837 838
	if ((1UL << part_shift) > DISK_MAX_PARTS)
		return -EINVAL;

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

S
Sudip Mukherjee 已提交
839 840 841 842
	nbd_dev = kcalloc(nbds_max, sizeof(*nbd_dev), GFP_KERNEL);
	if (!nbd_dev)
		return -ENOMEM;

843
	for (i = 0; i < nbds_max; i++) {
L
Laurent Vivier 已提交
844
		struct gendisk *disk = alloc_disk(1 << part_shift);
L
Linus Torvalds 已提交
845 846 847 848 849 850 851 852 853 854 855 856 857
		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.
		 */
		disk->queue = blk_init_queue(do_nbd_request, &nbd_lock);
		if (!disk->queue) {
			put_disk(disk);
			goto out;
		}
858 859 860 861
		/*
		 * Tell the block layer that we are not a rotational device
		 */
		queue_flag_set_unlocked(QUEUE_FLAG_NONROT, disk->queue);
862
		queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, disk->queue);
P
Paul Clements 已提交
863
		disk->queue->limits.discard_granularity = 512;
864
		blk_queue_max_discard_sectors(disk->queue, UINT_MAX);
P
Paul Clements 已提交
865
		disk->queue->limits.discard_zeroes_data = 0;
866 867
		blk_queue_max_hw_sectors(disk->queue, 65536);
		disk->queue->limits.max_sectors = 256;
L
Linus Torvalds 已提交
868 869 870 871 872 873 874 875 876
	}

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

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

877
	for (i = 0; i < nbds_max; i++) {
L
Linus Torvalds 已提交
878
		struct gendisk *disk = nbd_dev[i].disk;
879
		nbd_dev[i].magic = NBD_MAGIC;
880
		INIT_LIST_HEAD(&nbd_dev[i].waiting_queue);
L
Linus Torvalds 已提交
881 882
		spin_lock_init(&nbd_dev[i].queue_lock);
		INIT_LIST_HEAD(&nbd_dev[i].queue_head);
883
		mutex_init(&nbd_dev[i].tx_lock);
M
Markus Pargmann 已提交
884 885 886
		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];
887
		init_waitqueue_head(&nbd_dev[i].active_wq);
888
		init_waitqueue_head(&nbd_dev[i].waiting_wq);
L
Linus Torvalds 已提交
889
		nbd_dev[i].blksize = 1024;
890
		nbd_dev[i].bytesize = 0;
L
Linus Torvalds 已提交
891
		disk->major = NBD_MAJOR;
L
Laurent Vivier 已提交
892
		disk->first_minor = i << part_shift;
L
Linus Torvalds 已提交
893 894 895
		disk->fops = &nbd_fops;
		disk->private_data = &nbd_dev[i];
		sprintf(disk->disk_name, "nbd%d", i);
896
		set_capacity(disk, 0);
L
Linus Torvalds 已提交
897 898 899 900 901 902 903 904 905
		add_disk(disk);
	}

	return 0;
out:
	while (i--) {
		blk_cleanup_queue(nbd_dev[i].disk->queue);
		put_disk(nbd_dev[i].disk);
	}
906
	kfree(nbd_dev);
L
Linus Torvalds 已提交
907 908 909 910 911 912
	return err;
}

static void __exit nbd_cleanup(void)
{
	int i;
913
	for (i = 0; i < nbds_max; i++) {
L
Linus Torvalds 已提交
914
		struct gendisk *disk = nbd_dev[i].disk;
915
		nbd_dev[i].magic = 0;
L
Linus Torvalds 已提交
916 917 918 919 920 921 922
		if (disk) {
			del_gendisk(disk);
			blk_cleanup_queue(disk->queue);
			put_disk(disk);
		}
	}
	unregister_blkdev(NBD_MAJOR, "nbd");
923
	kfree(nbd_dev);
L
Linus Torvalds 已提交
924 925 926 927 928 929 930 931 932
	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");

933
module_param(nbds_max, int, 0444);
L
Laurent Vivier 已提交
934 935 936
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)");