dev.c 47.4 KB
Newer Older
M
Miklos Szeredi 已提交
1 2
/*
  FUSE: Filesystem in Userspace
M
Miklos Szeredi 已提交
3
  Copyright (C) 2001-2008  Miklos Szeredi <miklos@szeredi.hu>
M
Miklos Szeredi 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

  This program can be distributed under the terms of the GNU GPL.
  See the file COPYING.
*/

#include "fuse_i.h"

#include <linux/init.h>
#include <linux/module.h>
#include <linux/poll.h>
#include <linux/uio.h>
#include <linux/miscdevice.h>
#include <linux/pagemap.h>
#include <linux/file.h>
#include <linux/slab.h>
19
#include <linux/pipe_fs_i.h>
20 21
#include <linux/swap.h>
#include <linux/splice.h>
M
Miklos Szeredi 已提交
22 23

MODULE_ALIAS_MISCDEV(FUSE_MINOR);
24
MODULE_ALIAS("devname:fuse");
M
Miklos Szeredi 已提交
25

26
static struct kmem_cache *fuse_req_cachep;
M
Miklos Szeredi 已提交
27

28
static struct fuse_conn *fuse_get_conn(struct file *file)
M
Miklos Szeredi 已提交
29
{
M
Miklos Szeredi 已提交
30 31 32 33 34
	/*
	 * Lockless access is OK, because file->private data is set
	 * once during mount and is valid until the file is released.
	 */
	return file->private_data;
M
Miklos Szeredi 已提交
35 36
}

37 38
static void fuse_request_init(struct fuse_req *req, struct page **pages,
			      unsigned npages)
M
Miklos Szeredi 已提交
39 40
{
	memset(req, 0, sizeof(*req));
41
	memset(pages, 0, sizeof(*pages) * npages);
M
Miklos Szeredi 已提交
42
	INIT_LIST_HEAD(&req->list);
43
	INIT_LIST_HEAD(&req->intr_entry);
M
Miklos Szeredi 已提交
44 45
	init_waitqueue_head(&req->waitq);
	atomic_set(&req->count, 1);
46 47
	req->pages = pages;
	req->max_pages = npages;
M
Miklos Szeredi 已提交
48 49
}

50
static struct fuse_req *__fuse_request_alloc(unsigned npages, gfp_t flags)
M
Miklos Szeredi 已提交
51
{
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
	struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, flags);
	if (req) {
		struct page **pages;

		if (npages <= FUSE_REQ_INLINE_PAGES)
			pages = req->inline_pages;
		else
			pages = kmalloc(sizeof(struct page *) * npages, flags);

		if (!pages) {
			kmem_cache_free(fuse_req_cachep, req);
			return NULL;
		}

		fuse_request_init(req, pages, npages);
	}
M
Miklos Szeredi 已提交
68 69
	return req;
}
70 71 72 73 74

struct fuse_req *fuse_request_alloc(unsigned npages)
{
	return __fuse_request_alloc(npages, GFP_KERNEL);
}
75
EXPORT_SYMBOL_GPL(fuse_request_alloc);
M
Miklos Szeredi 已提交
76

77
struct fuse_req *fuse_request_alloc_nofs(unsigned npages)
M
Miklos Szeredi 已提交
78
{
79
	return __fuse_request_alloc(npages, GFP_NOFS);
M
Miklos Szeredi 已提交
80 81
}

M
Miklos Szeredi 已提交
82 83
void fuse_request_free(struct fuse_req *req)
{
84 85
	if (req->pages != req->inline_pages)
		kfree(req->pages);
M
Miklos Szeredi 已提交
86 87 88
	kmem_cache_free(fuse_req_cachep, req);
}

89
static void block_sigs(sigset_t *oldset)
M
Miklos Szeredi 已提交
90 91 92 93 94 95 96
{
	sigset_t mask;

	siginitsetinv(&mask, sigmask(SIGKILL));
	sigprocmask(SIG_BLOCK, &mask, oldset);
}

97
static void restore_sigs(sigset_t *oldset)
M
Miklos Szeredi 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
{
	sigprocmask(SIG_SETMASK, oldset, NULL);
}

static void __fuse_get_request(struct fuse_req *req)
{
	atomic_inc(&req->count);
}

/* Must be called with > 1 refcount */
static void __fuse_put_request(struct fuse_req *req)
{
	BUG_ON(atomic_read(&req->count) < 2);
	atomic_dec(&req->count);
}

114 115
static void fuse_req_init_context(struct fuse_req *req)
{
116 117
	req->in.h.uid = from_kuid_munged(&init_user_ns, current_fsuid());
	req->in.h.gid = from_kgid_munged(&init_user_ns, current_fsgid());
118 119 120
	req->in.h.pid = current->pid;
}

121
struct fuse_req *fuse_get_req(struct fuse_conn *fc)
M
Miklos Szeredi 已提交
122
{
123 124
	struct fuse_req *req;
	sigset_t oldset;
125
	int intr;
126 127
	int err;

128
	atomic_inc(&fc->num_waiting);
129
	block_sigs(&oldset);
130
	intr = wait_event_interruptible(fc->blocked_waitq, !fc->blocked);
131
	restore_sigs(&oldset);
132 133 134
	err = -EINTR;
	if (intr)
		goto out;
135

136 137 138 139
	err = -ENOTCONN;
	if (!fc->connected)
		goto out;

140
	req = fuse_request_alloc(FUSE_MAX_PAGES_PER_REQ);
141
	err = -ENOMEM;
142
	if (!req)
143
		goto out;
M
Miklos Szeredi 已提交
144

145
	fuse_req_init_context(req);
146
	req->waiting = 1;
M
Miklos Szeredi 已提交
147
	return req;
148 149 150 151

 out:
	atomic_dec(&fc->num_waiting);
	return ERR_PTR(err);
M
Miklos Szeredi 已提交
152
}
153
EXPORT_SYMBOL_GPL(fuse_get_req);
M
Miklos Szeredi 已提交
154

155 156 157 158 159 160 161 162 163 164 165 166
/*
 * Return request in fuse_file->reserved_req.  However that may
 * currently be in use.  If that is the case, wait for it to become
 * available.
 */
static struct fuse_req *get_reserved_req(struct fuse_conn *fc,
					 struct file *file)
{
	struct fuse_req *req = NULL;
	struct fuse_file *ff = file->private_data;

	do {
167
		wait_event(fc->reserved_req_waitq, ff->reserved_req);
168 169 170 171
		spin_lock(&fc->lock);
		if (ff->reserved_req) {
			req = ff->reserved_req;
			ff->reserved_req = NULL;
A
Al Viro 已提交
172
			req->stolen_file = get_file(file);
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
		}
		spin_unlock(&fc->lock);
	} while (!req);

	return req;
}

/*
 * Put stolen request back into fuse_file->reserved_req
 */
static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req)
{
	struct file *file = req->stolen_file;
	struct fuse_file *ff = file->private_data;

	spin_lock(&fc->lock);
189
	fuse_request_init(req, req->pages, req->max_pages);
190 191
	BUG_ON(ff->reserved_req);
	ff->reserved_req = req;
192
	wake_up_all(&fc->reserved_req_waitq);
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
	spin_unlock(&fc->lock);
	fput(file);
}

/*
 * Gets a requests for a file operation, always succeeds
 *
 * This is used for sending the FLUSH request, which must get to
 * userspace, due to POSIX locks which may need to be unlocked.
 *
 * If allocation fails due to OOM, use the reserved request in
 * fuse_file.
 *
 * This is very unlikely to deadlock accidentally, since the
 * filesystem should not have it's own file open.  If deadlock is
 * intentional, it can still be broken by "aborting" the filesystem.
 */
struct fuse_req *fuse_get_req_nofail(struct fuse_conn *fc, struct file *file)
{
	struct fuse_req *req;

	atomic_inc(&fc->num_waiting);
	wait_event(fc->blocked_waitq, !fc->blocked);
216
	req = fuse_request_alloc(FUSE_MAX_PAGES_PER_REQ);
217 218 219 220 221 222 223 224
	if (!req)
		req = get_reserved_req(fc, file);

	fuse_req_init_context(req);
	req->waiting = 1;
	return req;
}

M
Miklos Szeredi 已提交
225
void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req)
226 227
{
	if (atomic_dec_and_test(&req->count)) {
228 229
		if (req->waiting)
			atomic_dec(&fc->num_waiting);
230 231 232 233 234

		if (req->stolen_file)
			put_reserved_req(fc, req);
		else
			fuse_request_free(req);
235 236
	}
}
237
EXPORT_SYMBOL_GPL(fuse_put_request);
238

239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
static unsigned len_args(unsigned numargs, struct fuse_arg *args)
{
	unsigned nbytes = 0;
	unsigned i;

	for (i = 0; i < numargs; i++)
		nbytes += args[i].size;

	return nbytes;
}

static u64 fuse_get_unique(struct fuse_conn *fc)
{
	fc->reqctr++;
	/* zero is special */
	if (fc->reqctr == 0)
		fc->reqctr = 1;

	return fc->reqctr;
}

static void queue_request(struct fuse_conn *fc, struct fuse_req *req)
{
	req->in.h.len = sizeof(struct fuse_in_header) +
		len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
	list_add_tail(&req->list, &fc->pending);
	req->state = FUSE_REQ_PENDING;
	if (!req->waiting) {
		req->waiting = 1;
		atomic_inc(&fc->num_waiting);
	}
	wake_up(&fc->waitq);
	kill_fasync(&fc->fasync, SIGIO, POLL_IN);
}

274 275 276
void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
		       u64 nodeid, u64 nlookup)
{
277 278
	forget->forget_one.nodeid = nodeid;
	forget->forget_one.nlookup = nlookup;
279 280

	spin_lock(&fc->lock);
M
Miklos Szeredi 已提交
281 282 283 284 285 286 287 288
	if (fc->connected) {
		fc->forget_list_tail->next = forget;
		fc->forget_list_tail = forget;
		wake_up(&fc->waitq);
		kill_fasync(&fc->fasync, SIGIO, POLL_IN);
	} else {
		kfree(forget);
	}
289 290 291
	spin_unlock(&fc->lock);
}

292 293
static void flush_bg_queue(struct fuse_conn *fc)
{
294
	while (fc->active_background < fc->max_background &&
295 296 297 298 299 300
	       !list_empty(&fc->bg_queue)) {
		struct fuse_req *req;

		req = list_entry(fc->bg_queue.next, struct fuse_req, list);
		list_del(&req->list);
		fc->active_background++;
M
Miklos Szeredi 已提交
301
		req->in.h.unique = fuse_get_unique(fc);
302 303 304 305
		queue_request(fc, req);
	}
}

M
Miklos Szeredi 已提交
306 307
/*
 * This function is called when a request is finished.  Either a reply
308
 * has arrived or it was aborted (and not yet sent) or some error
M
Miklos Szeredi 已提交
309
 * occurred during communication with userspace, or the device file
310 311 312
 * was closed.  The requester thread is woken up (if still waiting),
 * the 'end' callback is called if given, else the reference to the
 * request is released
313
 *
314
 * Called with fc->lock, unlocks it
M
Miklos Szeredi 已提交
315 316
 */
static void request_end(struct fuse_conn *fc, struct fuse_req *req)
M
Miklos Szeredi 已提交
317
__releases(fc->lock)
M
Miklos Szeredi 已提交
318
{
319 320
	void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
	req->end = NULL;
321
	list_del(&req->list);
322
	list_del(&req->intr_entry);
323
	req->state = FUSE_REQ_FINISHED;
324
	if (req->background) {
325
		if (fc->num_background == fc->max_background) {
326 327 328
			fc->blocked = 0;
			wake_up_all(&fc->blocked_waitq);
		}
329
		if (fc->num_background == fc->congestion_threshold &&
330
		    fc->connected && fc->bdi_initialized) {
331 332
			clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
			clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
333
		}
334
		fc->num_background--;
335 336
		fc->active_background--;
		flush_bg_queue(fc);
M
Miklos Szeredi 已提交
337
	}
338 339 340 341
	spin_unlock(&fc->lock);
	wake_up(&req->waitq);
	if (end)
		end(fc, req);
342
	fuse_put_request(fc, req);
M
Miklos Szeredi 已提交
343 344
}

345 346
static void wait_answer_interruptible(struct fuse_conn *fc,
				      struct fuse_req *req)
M
Miklos Szeredi 已提交
347 348
__releases(fc->lock)
__acquires(fc->lock)
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
{
	if (signal_pending(current))
		return;

	spin_unlock(&fc->lock);
	wait_event_interruptible(req->waitq, req->state == FUSE_REQ_FINISHED);
	spin_lock(&fc->lock);
}

static void queue_interrupt(struct fuse_conn *fc, struct fuse_req *req)
{
	list_add_tail(&req->intr_entry, &fc->interrupts);
	wake_up(&fc->waitq);
	kill_fasync(&fc->fasync, SIGIO, POLL_IN);
}

365
static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
M
Miklos Szeredi 已提交
366 367
__releases(fc->lock)
__acquires(fc->lock)
M
Miklos Szeredi 已提交
368
{
369 370 371
	if (!fc->no_interrupt) {
		/* Any signal may interrupt this */
		wait_answer_interruptible(fc, req);
M
Miklos Szeredi 已提交
372

373 374 375 376 377 378 379 380 381 382
		if (req->aborted)
			goto aborted;
		if (req->state == FUSE_REQ_FINISHED)
			return;

		req->interrupted = 1;
		if (req->state == FUSE_REQ_SENT)
			queue_interrupt(fc, req);
	}

M
Miklos Szeredi 已提交
383
	if (!req->force) {
384 385 386
		sigset_t oldset;

		/* Only fatal signals may interrupt this */
387
		block_sigs(&oldset);
388
		wait_answer_interruptible(fc, req);
389
		restore_sigs(&oldset);
M
Miklos Szeredi 已提交
390 391 392 393 394 395 396 397 398 399 400 401 402

		if (req->aborted)
			goto aborted;
		if (req->state == FUSE_REQ_FINISHED)
			return;

		/* Request is not yet in userspace, bail out */
		if (req->state == FUSE_REQ_PENDING) {
			list_del(&req->list);
			__fuse_put_request(req);
			req->out.h.error = -EINTR;
			return;
		}
403
	}
M
Miklos Szeredi 已提交
404

M
Miklos Szeredi 已提交
405 406 407 408 409 410 411
	/*
	 * Either request is already in userspace, or it was forced.
	 * Wait it out.
	 */
	spin_unlock(&fc->lock);
	wait_event(req->waitq, req->state == FUSE_REQ_FINISHED);
	spin_lock(&fc->lock);
412

M
Miklos Szeredi 已提交
413 414
	if (!req->aborted)
		return;
415 416

 aborted:
M
Miklos Szeredi 已提交
417
	BUG_ON(req->state != FUSE_REQ_FINISHED);
M
Miklos Szeredi 已提交
418 419 420 421 422 423
	if (req->locked) {
		/* This is uninterruptible sleep, because data is
		   being copied to/from the buffers of req.  During
		   locked state, there mustn't be any filesystem
		   operation (e.g. page fault), since that could lead
		   to deadlock */
424
		spin_unlock(&fc->lock);
M
Miklos Szeredi 已提交
425
		wait_event(req->waitq, !req->locked);
426
		spin_lock(&fc->lock);
M
Miklos Szeredi 已提交
427 428 429
	}
}

430
void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
M
Miklos Szeredi 已提交
431 432
{
	req->isreply = 1;
433
	spin_lock(&fc->lock);
M
Miklos Szeredi 已提交
434
	if (!fc->connected)
M
Miklos Szeredi 已提交
435 436 437 438
		req->out.h.error = -ENOTCONN;
	else if (fc->conn_error)
		req->out.h.error = -ECONNREFUSED;
	else {
M
Miklos Szeredi 已提交
439
		req->in.h.unique = fuse_get_unique(fc);
M
Miklos Szeredi 已提交
440 441 442 443 444
		queue_request(fc, req);
		/* acquire extra reference, since request is still needed
		   after request_end() */
		__fuse_get_request(req);

445
		request_wait_answer(fc, req);
M
Miklos Szeredi 已提交
446
	}
447
	spin_unlock(&fc->lock);
M
Miklos Szeredi 已提交
448
}
449
EXPORT_SYMBOL_GPL(fuse_request_send);
M
Miklos Szeredi 已提交
450

451 452
static void fuse_request_send_nowait_locked(struct fuse_conn *fc,
					    struct fuse_req *req)
453 454 455
{
	req->background = 1;
	fc->num_background++;
456
	if (fc->num_background == fc->max_background)
457
		fc->blocked = 1;
458
	if (fc->num_background == fc->congestion_threshold &&
459
	    fc->bdi_initialized) {
460 461
		set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
		set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
462 463 464 465 466
	}
	list_add_tail(&req->list, &fc->bg_queue);
	flush_bg_queue(fc);
}

467
static void fuse_request_send_nowait(struct fuse_conn *fc, struct fuse_req *req)
M
Miklos Szeredi 已提交
468
{
469
	spin_lock(&fc->lock);
M
Miklos Szeredi 已提交
470
	if (fc->connected) {
471
		fuse_request_send_nowait_locked(fc, req);
472
		spin_unlock(&fc->lock);
M
Miklos Szeredi 已提交
473 474 475 476 477 478
	} else {
		req->out.h.error = -ENOTCONN;
		request_end(fc, req);
	}
}

479
void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
M
Miklos Szeredi 已提交
480 481
{
	req->isreply = 1;
482
	fuse_request_send_nowait(fc, req);
M
Miklos Szeredi 已提交
483
}
484
EXPORT_SYMBOL_GPL(fuse_request_send_background);
M
Miklos Szeredi 已提交
485

M
Miklos Szeredi 已提交
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
static int fuse_request_send_notify_reply(struct fuse_conn *fc,
					  struct fuse_req *req, u64 unique)
{
	int err = -ENODEV;

	req->isreply = 0;
	req->in.h.unique = unique;
	spin_lock(&fc->lock);
	if (fc->connected) {
		queue_request(fc, req);
		err = 0;
	}
	spin_unlock(&fc->lock);

	return err;
}

M
Miklos Szeredi 已提交
503 504 505 506 507
/*
 * Called under fc->lock
 *
 * fc->connected must have been checked previously
 */
508 509
void fuse_request_send_background_locked(struct fuse_conn *fc,
					 struct fuse_req *req)
M
Miklos Szeredi 已提交
510 511
{
	req->isreply = 1;
512
	fuse_request_send_nowait_locked(fc, req);
M
Miklos Szeredi 已提交
513 514
}

515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533
void fuse_force_forget(struct file *file, u64 nodeid)
{
	struct inode *inode = file->f_path.dentry->d_inode;
	struct fuse_conn *fc = get_fuse_conn(inode);
	struct fuse_req *req;
	struct fuse_forget_in inarg;

	memset(&inarg, 0, sizeof(inarg));
	inarg.nlookup = 1;
	req = fuse_get_req_nofail(fc, file);
	req->in.h.opcode = FUSE_FORGET;
	req->in.h.nodeid = nodeid;
	req->in.numargs = 1;
	req->in.args[0].size = sizeof(inarg);
	req->in.args[0].value = &inarg;
	req->isreply = 0;
	fuse_request_send_nowait(fc, req);
}

M
Miklos Szeredi 已提交
534 535 536
/*
 * Lock the request.  Up to the next unlock_request() there mustn't be
 * anything that could cause a page-fault.  If the request was already
537
 * aborted bail out.
M
Miklos Szeredi 已提交
538
 */
539
static int lock_request(struct fuse_conn *fc, struct fuse_req *req)
M
Miklos Szeredi 已提交
540 541 542
{
	int err = 0;
	if (req) {
543
		spin_lock(&fc->lock);
544
		if (req->aborted)
M
Miklos Szeredi 已提交
545 546 547
			err = -ENOENT;
		else
			req->locked = 1;
548
		spin_unlock(&fc->lock);
M
Miklos Szeredi 已提交
549 550 551 552 553
	}
	return err;
}

/*
554
 * Unlock request.  If it was aborted during being locked, the
M
Miklos Szeredi 已提交
555 556 557
 * requester thread is currently waiting for it to be unlocked, so
 * wake it up.
 */
558
static void unlock_request(struct fuse_conn *fc, struct fuse_req *req)
M
Miklos Szeredi 已提交
559 560
{
	if (req) {
561
		spin_lock(&fc->lock);
M
Miklos Szeredi 已提交
562
		req->locked = 0;
563
		if (req->aborted)
M
Miklos Szeredi 已提交
564
			wake_up(&req->waitq);
565
		spin_unlock(&fc->lock);
M
Miklos Szeredi 已提交
566 567 568 569
	}
}

struct fuse_copy_state {
570
	struct fuse_conn *fc;
M
Miklos Szeredi 已提交
571 572 573
	int write;
	struct fuse_req *req;
	const struct iovec *iov;
574 575 576
	struct pipe_buffer *pipebufs;
	struct pipe_buffer *currbuf;
	struct pipe_inode_info *pipe;
M
Miklos Szeredi 已提交
577 578 579 580 581 582 583
	unsigned long nr_segs;
	unsigned long seglen;
	unsigned long addr;
	struct page *pg;
	void *mapaddr;
	void *buf;
	unsigned len;
584
	unsigned move_pages:1;
M
Miklos Szeredi 已提交
585 586
};

587
static void fuse_copy_init(struct fuse_copy_state *cs, struct fuse_conn *fc,
588
			   int write,
589
			   const struct iovec *iov, unsigned long nr_segs)
M
Miklos Szeredi 已提交
590 591
{
	memset(cs, 0, sizeof(*cs));
592
	cs->fc = fc;
M
Miklos Szeredi 已提交
593 594 595 596 597 598
	cs->write = write;
	cs->iov = iov;
	cs->nr_segs = nr_segs;
}

/* Unmap and put previous page of userspace buffer */
599
static void fuse_copy_finish(struct fuse_copy_state *cs)
M
Miklos Szeredi 已提交
600
{
601 602 603
	if (cs->currbuf) {
		struct pipe_buffer *buf = cs->currbuf;

604 605 606
		if (!cs->write) {
			buf->ops->unmap(cs->pipe, buf, cs->mapaddr);
		} else {
M
Miklos Szeredi 已提交
607
			kunmap(buf->page);
608 609
			buf->len = PAGE_SIZE - cs->len;
		}
610 611 612
		cs->currbuf = NULL;
		cs->mapaddr = NULL;
	} else if (cs->mapaddr) {
M
Miklos Szeredi 已提交
613
		kunmap(cs->pg);
M
Miklos Szeredi 已提交
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
		if (cs->write) {
			flush_dcache_page(cs->pg);
			set_page_dirty_lock(cs->pg);
		}
		put_page(cs->pg);
		cs->mapaddr = NULL;
	}
}

/*
 * Get another pagefull of userspace buffer, and map it to kernel
 * address space, and lock request
 */
static int fuse_copy_fill(struct fuse_copy_state *cs)
{
	unsigned long offset;
	int err;

632
	unlock_request(cs->fc, cs->req);
M
Miklos Szeredi 已提交
633
	fuse_copy_finish(cs);
634 635 636
	if (cs->pipebufs) {
		struct pipe_buffer *buf = cs->pipebufs;

637 638 639 640 641 642 643
		if (!cs->write) {
			err = buf->ops->confirm(cs->pipe, buf);
			if (err)
				return err;

			BUG_ON(!cs->nr_segs);
			cs->currbuf = buf;
M
Miklos Szeredi 已提交
644
			cs->mapaddr = buf->ops->map(cs->pipe, buf, 0);
645 646 647 648 649 650
			cs->len = buf->len;
			cs->buf = cs->mapaddr + buf->offset;
			cs->pipebufs++;
			cs->nr_segs--;
		} else {
			struct page *page;
651

652 653 654 655 656 657 658 659 660 661 662 663
			if (cs->nr_segs == cs->pipe->buffers)
				return -EIO;

			page = alloc_page(GFP_HIGHUSER);
			if (!page)
				return -ENOMEM;

			buf->page = page;
			buf->offset = 0;
			buf->len = 0;

			cs->currbuf = buf;
M
Miklos Szeredi 已提交
664
			cs->mapaddr = kmap(page);
665 666 667 668 669
			cs->buf = cs->mapaddr;
			cs->len = PAGE_SIZE;
			cs->pipebufs++;
			cs->nr_segs++;
		}
670 671 672 673 674 675 676 677 678 679 680 681 682
	} else {
		if (!cs->seglen) {
			BUG_ON(!cs->nr_segs);
			cs->seglen = cs->iov[0].iov_len;
			cs->addr = (unsigned long) cs->iov[0].iov_base;
			cs->iov++;
			cs->nr_segs--;
		}
		err = get_user_pages_fast(cs->addr, 1, cs->write, &cs->pg);
		if (err < 0)
			return err;
		BUG_ON(err != 1);
		offset = cs->addr % PAGE_SIZE;
M
Miklos Szeredi 已提交
683
		cs->mapaddr = kmap(cs->pg);
684 685 686 687
		cs->buf = cs->mapaddr + offset;
		cs->len = min(PAGE_SIZE - offset, cs->seglen);
		cs->seglen -= cs->len;
		cs->addr += cs->len;
M
Miklos Szeredi 已提交
688 689
	}

690
	return lock_request(cs->fc, cs->req);
M
Miklos Szeredi 已提交
691 692 693
}

/* Do as much copy to/from userspace buffer as we can */
694
static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
M
Miklos Szeredi 已提交
695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
{
	unsigned ncpy = min(*size, cs->len);
	if (val) {
		if (cs->write)
			memcpy(cs->buf, *val, ncpy);
		else
			memcpy(*val, cs->buf, ncpy);
		*val += ncpy;
	}
	*size -= ncpy;
	cs->len -= ncpy;
	cs->buf += ncpy;
	return ncpy;
}

710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777
static int fuse_check_page(struct page *page)
{
	if (page_mapcount(page) ||
	    page->mapping != NULL ||
	    page_count(page) != 1 ||
	    (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
	     ~(1 << PG_locked |
	       1 << PG_referenced |
	       1 << PG_uptodate |
	       1 << PG_lru |
	       1 << PG_active |
	       1 << PG_reclaim))) {
		printk(KERN_WARNING "fuse: trying to steal weird page\n");
		printk(KERN_WARNING "  page=%p index=%li flags=%08lx, count=%i, mapcount=%i, mapping=%p\n", page, page->index, page->flags, page_count(page), page_mapcount(page), page->mapping);
		return 1;
	}
	return 0;
}

static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
{
	int err;
	struct page *oldpage = *pagep;
	struct page *newpage;
	struct pipe_buffer *buf = cs->pipebufs;

	unlock_request(cs->fc, cs->req);
	fuse_copy_finish(cs);

	err = buf->ops->confirm(cs->pipe, buf);
	if (err)
		return err;

	BUG_ON(!cs->nr_segs);
	cs->currbuf = buf;
	cs->len = buf->len;
	cs->pipebufs++;
	cs->nr_segs--;

	if (cs->len != PAGE_SIZE)
		goto out_fallback;

	if (buf->ops->steal(cs->pipe, buf) != 0)
		goto out_fallback;

	newpage = buf->page;

	if (WARN_ON(!PageUptodate(newpage)))
		return -EIO;

	ClearPageMappedToDisk(newpage);

	if (fuse_check_page(newpage) != 0)
		goto out_fallback_unlock;

	/*
	 * This is a new and locked page, it shouldn't be mapped or
	 * have any special flags on it
	 */
	if (WARN_ON(page_mapped(oldpage)))
		goto out_fallback_unlock;
	if (WARN_ON(page_has_private(oldpage)))
		goto out_fallback_unlock;
	if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
		goto out_fallback_unlock;
	if (WARN_ON(PageMlocked(oldpage)))
		goto out_fallback_unlock;

778
	err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
779
	if (err) {
780 781
		unlock_page(newpage);
		return err;
782
	}
783

784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821
	page_cache_get(newpage);

	if (!(buf->flags & PIPE_BUF_FLAG_LRU))
		lru_cache_add_file(newpage);

	err = 0;
	spin_lock(&cs->fc->lock);
	if (cs->req->aborted)
		err = -ENOENT;
	else
		*pagep = newpage;
	spin_unlock(&cs->fc->lock);

	if (err) {
		unlock_page(newpage);
		page_cache_release(newpage);
		return err;
	}

	unlock_page(oldpage);
	page_cache_release(oldpage);
	cs->len = 0;

	return 0;

out_fallback_unlock:
	unlock_page(newpage);
out_fallback:
	cs->mapaddr = buf->ops->map(cs->pipe, buf, 1);
	cs->buf = cs->mapaddr + buf->offset;

	err = lock_request(cs->fc, cs->req);
	if (err)
		return err;

	return 1;
}

822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845
static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
			 unsigned offset, unsigned count)
{
	struct pipe_buffer *buf;

	if (cs->nr_segs == cs->pipe->buffers)
		return -EIO;

	unlock_request(cs->fc, cs->req);
	fuse_copy_finish(cs);

	buf = cs->pipebufs;
	page_cache_get(page);
	buf->page = page;
	buf->offset = offset;
	buf->len = count;

	cs->pipebufs++;
	cs->nr_segs++;
	cs->len = 0;

	return 0;
}

M
Miklos Szeredi 已提交
846 847 848 849
/*
 * Copy a page in the request to/from the userspace buffer.  Must be
 * done atomically
 */
850
static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
851
			  unsigned offset, unsigned count, int zeroing)
M
Miklos Szeredi 已提交
852
{
853 854 855
	int err;
	struct page *page = *pagep;

856 857 858
	if (page && zeroing && count < PAGE_SIZE)
		clear_highpage(page);

M
Miklos Szeredi 已提交
859
	while (count) {
860 861 862
		if (cs->write && cs->pipebufs && page) {
			return fuse_ref_page(cs, page, offset, count);
		} else if (!cs->len) {
863 864 865 866 867 868 869 870 871 872
			if (cs->move_pages && page &&
			    offset == 0 && count == PAGE_SIZE) {
				err = fuse_try_move_page(cs, pagep);
				if (err <= 0)
					return err;
			} else {
				err = fuse_copy_fill(cs);
				if (err)
					return err;
			}
M
Miklos Szeredi 已提交
873
		}
M
Miklos Szeredi 已提交
874
		if (page) {
875
			void *mapaddr = kmap_atomic(page);
M
Miklos Szeredi 已提交
876 877
			void *buf = mapaddr + offset;
			offset += fuse_copy_do(cs, &buf, &count);
878
			kunmap_atomic(mapaddr);
M
Miklos Szeredi 已提交
879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896
		} else
			offset += fuse_copy_do(cs, NULL, &count);
	}
	if (page && !cs->write)
		flush_dcache_page(page);
	return 0;
}

/* Copy pages in the request to/from userspace buffer */
static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
			   int zeroing)
{
	unsigned i;
	struct fuse_req *req = cs->req;
	unsigned offset = req->page_offset;
	unsigned count = min(nbytes, (unsigned) PAGE_SIZE - offset);

	for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
897 898 899 900
		int err;

		err = fuse_copy_page(cs, &req->pages[i], offset, count,
				     zeroing);
M
Miklos Szeredi 已提交
901 902 903 904 905 906 907 908 909 910 911 912 913 914
		if (err)
			return err;

		nbytes -= count;
		count = min(nbytes, (unsigned) PAGE_SIZE);
		offset = 0;
	}
	return 0;
}

/* Copy a single argument in the request to/from userspace buffer */
static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
{
	while (size) {
M
Miklos Szeredi 已提交
915 916 917 918 919
		if (!cs->len) {
			int err = fuse_copy_fill(cs);
			if (err)
				return err;
		}
M
Miklos Szeredi 已提交
920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942
		fuse_copy_do(cs, &val, &size);
	}
	return 0;
}

/* Copy request arguments to/from userspace buffer */
static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
			  unsigned argpages, struct fuse_arg *args,
			  int zeroing)
{
	int err = 0;
	unsigned i;

	for (i = 0; !err && i < numargs; i++)  {
		struct fuse_arg *arg = &args[i];
		if (i == numargs - 1 && argpages)
			err = fuse_copy_pages(cs, arg->size, zeroing);
		else
			err = fuse_copy_one(cs, arg->value, arg->size);
	}
	return err;
}

943 944 945 946 947
static int forget_pending(struct fuse_conn *fc)
{
	return fc->forget_list_head.next != NULL;
}

948 949
static int request_pending(struct fuse_conn *fc)
{
950 951
	return !list_empty(&fc->pending) || !list_empty(&fc->interrupts) ||
		forget_pending(fc);
952 953
}

M
Miklos Szeredi 已提交
954 955
/* Wait until a request is available on the pending list */
static void request_wait(struct fuse_conn *fc)
M
Miklos Szeredi 已提交
956 957
__releases(fc->lock)
__acquires(fc->lock)
M
Miklos Szeredi 已提交
958 959 960 961
{
	DECLARE_WAITQUEUE(wait, current);

	add_wait_queue_exclusive(&fc->waitq, &wait);
962
	while (fc->connected && !request_pending(fc)) {
M
Miklos Szeredi 已提交
963 964 965 966
		set_current_state(TASK_INTERRUPTIBLE);
		if (signal_pending(current))
			break;

967
		spin_unlock(&fc->lock);
M
Miklos Szeredi 已提交
968
		schedule();
969
		spin_lock(&fc->lock);
M
Miklos Szeredi 已提交
970 971 972 973 974
	}
	set_current_state(TASK_RUNNING);
	remove_wait_queue(&fc->waitq, &wait);
}

975 976 977 978 979 980 981 982
/*
 * Transfer an interrupt request to userspace
 *
 * Unlike other requests this is assembled on demand, without a need
 * to allocate a separate fuse_req structure.
 *
 * Called with fc->lock held, releases it
 */
983 984
static int fuse_read_interrupt(struct fuse_conn *fc, struct fuse_copy_state *cs,
			       size_t nbytes, struct fuse_req *req)
M
Miklos Szeredi 已提交
985
__releases(fc->lock)
986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001
{
	struct fuse_in_header ih;
	struct fuse_interrupt_in arg;
	unsigned reqsize = sizeof(ih) + sizeof(arg);
	int err;

	list_del_init(&req->intr_entry);
	req->intr_unique = fuse_get_unique(fc);
	memset(&ih, 0, sizeof(ih));
	memset(&arg, 0, sizeof(arg));
	ih.len = reqsize;
	ih.opcode = FUSE_INTERRUPT;
	ih.unique = req->intr_unique;
	arg.unique = req->in.h.unique;

	spin_unlock(&fc->lock);
1002
	if (nbytes < reqsize)
1003 1004
		return -EINVAL;

1005
	err = fuse_copy_one(cs, &ih, sizeof(ih));
1006
	if (!err)
1007 1008
		err = fuse_copy_one(cs, &arg, sizeof(arg));
	fuse_copy_finish(cs);
1009 1010 1011 1012

	return err ? err : reqsize;
}

1013 1014 1015
static struct fuse_forget_link *dequeue_forget(struct fuse_conn *fc,
					       unsigned max,
					       unsigned *countp)
1016
{
1017 1018 1019
	struct fuse_forget_link *head = fc->forget_list_head.next;
	struct fuse_forget_link **newhead = &head;
	unsigned count;
1020

1021 1022 1023 1024 1025
	for (count = 0; *newhead != NULL && count < max; count++)
		newhead = &(*newhead)->next;

	fc->forget_list_head.next = *newhead;
	*newhead = NULL;
1026 1027 1028
	if (fc->forget_list_head.next == NULL)
		fc->forget_list_tail = &fc->forget_list_head;

1029 1030 1031 1032
	if (countp != NULL)
		*countp = count;

	return head;
1033 1034 1035 1036 1037 1038 1039 1040
}

static int fuse_read_single_forget(struct fuse_conn *fc,
				   struct fuse_copy_state *cs,
				   size_t nbytes)
__releases(fc->lock)
{
	int err;
1041
	struct fuse_forget_link *forget = dequeue_forget(fc, 1, NULL);
1042
	struct fuse_forget_in arg = {
1043
		.nlookup = forget->forget_one.nlookup,
1044 1045 1046
	};
	struct fuse_in_header ih = {
		.opcode = FUSE_FORGET,
1047
		.nodeid = forget->forget_one.nodeid,
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
		.unique = fuse_get_unique(fc),
		.len = sizeof(ih) + sizeof(arg),
	};

	spin_unlock(&fc->lock);
	kfree(forget);
	if (nbytes < ih.len)
		return -EINVAL;

	err = fuse_copy_one(cs, &ih, sizeof(ih));
	if (!err)
		err = fuse_copy_one(cs, &arg, sizeof(arg));
	fuse_copy_finish(cs);

	if (err)
		return err;

	return ih.len;
}

1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
static int fuse_read_batch_forget(struct fuse_conn *fc,
				   struct fuse_copy_state *cs, size_t nbytes)
__releases(fc->lock)
{
	int err;
	unsigned max_forgets;
	unsigned count;
	struct fuse_forget_link *head;
	struct fuse_batch_forget_in arg = { .count = 0 };
	struct fuse_in_header ih = {
		.opcode = FUSE_BATCH_FORGET,
		.unique = fuse_get_unique(fc),
		.len = sizeof(ih) + sizeof(arg),
	};

	if (nbytes < ih.len) {
		spin_unlock(&fc->lock);
		return -EINVAL;
	}

	max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
	head = dequeue_forget(fc, max_forgets, &count);
	spin_unlock(&fc->lock);

	arg.count = count;
	ih.len += count * sizeof(struct fuse_forget_one);
	err = fuse_copy_one(cs, &ih, sizeof(ih));
	if (!err)
		err = fuse_copy_one(cs, &arg, sizeof(arg));

	while (head) {
		struct fuse_forget_link *forget = head;

		if (!err) {
			err = fuse_copy_one(cs, &forget->forget_one,
					    sizeof(forget->forget_one));
		}
		head = forget->next;
		kfree(forget);
	}

	fuse_copy_finish(cs);

	if (err)
		return err;

	return ih.len;
}

static int fuse_read_forget(struct fuse_conn *fc, struct fuse_copy_state *cs,
			    size_t nbytes)
__releases(fc->lock)
{
	if (fc->minor < 16 || fc->forget_list_head.next->next == NULL)
		return fuse_read_single_forget(fc, cs, nbytes);
	else
		return fuse_read_batch_forget(fc, cs, nbytes);
}

M
Miklos Szeredi 已提交
1127 1128 1129 1130
/*
 * Read a single request into the userspace filesystem's buffer.  This
 * function waits until a request is available, then removes it from
 * the pending list and copies request data to userspace buffer.  If
1131 1132
 * no reply is needed (FORGET) or request has been aborted or there
 * was an error during the copying then it's finished by calling
M
Miklos Szeredi 已提交
1133 1134 1135
 * request_end().  Otherwise add it to the processing list, and set
 * the 'sent' flag.
 */
1136 1137
static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
				struct fuse_copy_state *cs, size_t nbytes)
M
Miklos Szeredi 已提交
1138 1139 1140 1141 1142 1143
{
	int err;
	struct fuse_req *req;
	struct fuse_in *in;
	unsigned reqsize;

1144
 restart:
1145
	spin_lock(&fc->lock);
1146 1147
	err = -EAGAIN;
	if ((file->f_flags & O_NONBLOCK) && fc->connected &&
1148
	    !request_pending(fc))
1149 1150
		goto err_unlock;

M
Miklos Szeredi 已提交
1151 1152
	request_wait(fc);
	err = -ENODEV;
1153
	if (!fc->connected)
M
Miklos Szeredi 已提交
1154 1155
		goto err_unlock;
	err = -ERESTARTSYS;
1156
	if (!request_pending(fc))
M
Miklos Szeredi 已提交
1157 1158
		goto err_unlock;

1159 1160 1161
	if (!list_empty(&fc->interrupts)) {
		req = list_entry(fc->interrupts.next, struct fuse_req,
				 intr_entry);
1162
		return fuse_read_interrupt(fc, cs, nbytes, req);
1163 1164
	}

1165 1166
	if (forget_pending(fc)) {
		if (list_empty(&fc->pending) || fc->forget_batch-- > 0)
1167
			return fuse_read_forget(fc, cs, nbytes);
1168 1169 1170 1171 1172

		if (fc->forget_batch <= -8)
			fc->forget_batch = 16;
	}

M
Miklos Szeredi 已提交
1173
	req = list_entry(fc->pending.next, struct fuse_req, list);
1174
	req->state = FUSE_REQ_READING;
1175
	list_move(&req->list, &fc->io);
M
Miklos Szeredi 已提交
1176 1177

	in = &req->in;
1178 1179
	reqsize = in->h.len;
	/* If request is too large, reply with an error and restart the read */
1180
	if (nbytes < reqsize) {
1181 1182 1183 1184 1185 1186
		req->out.h.error = -EIO;
		/* SETXATTR is special, since it may contain too large data */
		if (in->h.opcode == FUSE_SETXATTR)
			req->out.h.error = -E2BIG;
		request_end(fc, req);
		goto restart;
M
Miklos Szeredi 已提交
1187
	}
1188
	spin_unlock(&fc->lock);
1189 1190
	cs->req = req;
	err = fuse_copy_one(cs, &in->h, sizeof(in->h));
1191
	if (!err)
1192
		err = fuse_copy_args(cs, in->numargs, in->argpages,
1193
				     (struct fuse_arg *) in->args, 0);
1194
	fuse_copy_finish(cs);
1195
	spin_lock(&fc->lock);
M
Miklos Szeredi 已提交
1196
	req->locked = 0;
1197 1198 1199 1200
	if (req->aborted) {
		request_end(fc, req);
		return -ENODEV;
	}
M
Miklos Szeredi 已提交
1201
	if (err) {
1202
		req->out.h.error = -EIO;
M
Miklos Szeredi 已提交
1203 1204 1205 1206 1207 1208
		request_end(fc, req);
		return err;
	}
	if (!req->isreply)
		request_end(fc, req);
	else {
1209
		req->state = FUSE_REQ_SENT;
1210
		list_move_tail(&req->list, &fc->processing);
1211 1212
		if (req->interrupted)
			queue_interrupt(fc, req);
1213
		spin_unlock(&fc->lock);
M
Miklos Szeredi 已提交
1214 1215 1216 1217
	}
	return reqsize;

 err_unlock:
1218
	spin_unlock(&fc->lock);
M
Miklos Szeredi 已提交
1219 1220 1221
	return err;
}

1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
static ssize_t fuse_dev_read(struct kiocb *iocb, const struct iovec *iov,
			      unsigned long nr_segs, loff_t pos)
{
	struct fuse_copy_state cs;
	struct file *file = iocb->ki_filp;
	struct fuse_conn *fc = fuse_get_conn(file);
	if (!fc)
		return -EPERM;

	fuse_copy_init(&cs, fc, 1, iov, nr_segs);

	return fuse_dev_do_read(fc, file, &cs, iov_length(iov, nr_segs));
}

static int fuse_dev_pipe_buf_steal(struct pipe_inode_info *pipe,
				   struct pipe_buffer *buf)
{
	return 1;
}

static const struct pipe_buf_operations fuse_dev_pipe_buf_ops = {
	.can_merge = 0,
	.map = generic_pipe_buf_map,
	.unmap = generic_pipe_buf_unmap,
	.confirm = generic_pipe_buf_confirm,
	.release = generic_pipe_buf_release,
	.steal = fuse_dev_pipe_buf_steal,
	.get = generic_pipe_buf_get,
};

static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
				    struct pipe_inode_info *pipe,
				    size_t len, unsigned int flags)
{
	int ret;
	int page_nr = 0;
	int do_wakeup = 0;
	struct pipe_buffer *bufs;
	struct fuse_copy_state cs;
	struct fuse_conn *fc = fuse_get_conn(in);
	if (!fc)
		return -EPERM;

1265
	bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325
	if (!bufs)
		return -ENOMEM;

	fuse_copy_init(&cs, fc, 1, NULL, 0);
	cs.pipebufs = bufs;
	cs.pipe = pipe;
	ret = fuse_dev_do_read(fc, in, &cs, len);
	if (ret < 0)
		goto out;

	ret = 0;
	pipe_lock(pipe);

	if (!pipe->readers) {
		send_sig(SIGPIPE, current, 0);
		if (!ret)
			ret = -EPIPE;
		goto out_unlock;
	}

	if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
		ret = -EIO;
		goto out_unlock;
	}

	while (page_nr < cs.nr_segs) {
		int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
		struct pipe_buffer *buf = pipe->bufs + newbuf;

		buf->page = bufs[page_nr].page;
		buf->offset = bufs[page_nr].offset;
		buf->len = bufs[page_nr].len;
		buf->ops = &fuse_dev_pipe_buf_ops;

		pipe->nrbufs++;
		page_nr++;
		ret += buf->len;

		if (pipe->inode)
			do_wakeup = 1;
	}

out_unlock:
	pipe_unlock(pipe);

	if (do_wakeup) {
		smp_mb();
		if (waitqueue_active(&pipe->wait))
			wake_up_interruptible(&pipe->wait);
		kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
	}

out:
	for (; page_nr < cs.nr_segs; page_nr++)
		page_cache_release(bufs[page_nr].page);

	kfree(bufs);
	return ret;
}

T
Tejun Heo 已提交
1326 1327 1328 1329
static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
			    struct fuse_copy_state *cs)
{
	struct fuse_notify_poll_wakeup_out outarg;
M
Miklos Szeredi 已提交
1330
	int err = -EINVAL;
T
Tejun Heo 已提交
1331 1332

	if (size != sizeof(outarg))
M
Miklos Szeredi 已提交
1333
		goto err;
T
Tejun Heo 已提交
1334 1335 1336

	err = fuse_copy_one(cs, &outarg, sizeof(outarg));
	if (err)
M
Miklos Szeredi 已提交
1337
		goto err;
T
Tejun Heo 已提交
1338

M
Miklos Szeredi 已提交
1339
	fuse_copy_finish(cs);
T
Tejun Heo 已提交
1340
	return fuse_notify_poll_wakeup(fc, &outarg);
M
Miklos Szeredi 已提交
1341 1342 1343 1344

err:
	fuse_copy_finish(cs);
	return err;
T
Tejun Heo 已提交
1345 1346
}

J
John Muir 已提交
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
				   struct fuse_copy_state *cs)
{
	struct fuse_notify_inval_inode_out outarg;
	int err = -EINVAL;

	if (size != sizeof(outarg))
		goto err;

	err = fuse_copy_one(cs, &outarg, sizeof(outarg));
	if (err)
		goto err;
	fuse_copy_finish(cs);

	down_read(&fc->killsb);
	err = -ENOENT;
1363 1364 1365 1366
	if (fc->sb) {
		err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
					       outarg.off, outarg.len);
	}
J
John Muir 已提交
1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378
	up_read(&fc->killsb);
	return err;

err:
	fuse_copy_finish(cs);
	return err;
}

static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
				   struct fuse_copy_state *cs)
{
	struct fuse_notify_inval_entry_out outarg;
F
Fang Wenqi 已提交
1379 1380
	int err = -ENOMEM;
	char *buf;
J
John Muir 已提交
1381 1382
	struct qstr name;

F
Fang Wenqi 已提交
1383 1384 1385 1386 1387
	buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
	if (!buf)
		goto err;

	err = -EINVAL;
J
John Muir 已提交
1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398
	if (size < sizeof(outarg))
		goto err;

	err = fuse_copy_one(cs, &outarg, sizeof(outarg));
	if (err)
		goto err;

	err = -ENAMETOOLONG;
	if (outarg.namelen > FUSE_NAME_MAX)
		goto err;

1399 1400 1401 1402
	err = -EINVAL;
	if (size != sizeof(outarg) + outarg.namelen + 1)
		goto err;

J
John Muir 已提交
1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
	name.name = buf;
	name.len = outarg.namelen;
	err = fuse_copy_one(cs, buf, outarg.namelen + 1);
	if (err)
		goto err;
	fuse_copy_finish(cs);
	buf[outarg.namelen] = 0;
	name.hash = full_name_hash(name.name, name.len);

	down_read(&fc->killsb);
	err = -ENOENT;
1414
	if (fc->sb)
1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
		err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
	up_read(&fc->killsb);
	kfree(buf);
	return err;

err:
	kfree(buf);
	fuse_copy_finish(cs);
	return err;
}

static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
			      struct fuse_copy_state *cs)
{
	struct fuse_notify_delete_out outarg;
	int err = -ENOMEM;
	char *buf;
	struct qstr name;

	buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
	if (!buf)
		goto err;

	err = -EINVAL;
	if (size < sizeof(outarg))
		goto err;

	err = fuse_copy_one(cs, &outarg, sizeof(outarg));
	if (err)
		goto err;

	err = -ENAMETOOLONG;
	if (outarg.namelen > FUSE_NAME_MAX)
		goto err;

	err = -EINVAL;
	if (size != sizeof(outarg) + outarg.namelen + 1)
		goto err;

	name.name = buf;
	name.len = outarg.namelen;
	err = fuse_copy_one(cs, buf, outarg.namelen + 1);
	if (err)
		goto err;
	fuse_copy_finish(cs);
	buf[outarg.namelen] = 0;
	name.hash = full_name_hash(name.name, name.len);

	down_read(&fc->killsb);
	err = -ENOENT;
	if (fc->sb)
		err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
					       outarg.child, &name);
J
John Muir 已提交
1468
	up_read(&fc->killsb);
F
Fang Wenqi 已提交
1469
	kfree(buf);
J
John Muir 已提交
1470 1471 1472
	return err;

err:
F
Fang Wenqi 已提交
1473
	kfree(buf);
J
John Muir 已提交
1474 1475 1476 1477
	fuse_copy_finish(cs);
	return err;
}

M
Miklos Szeredi 已提交
1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562
static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
			     struct fuse_copy_state *cs)
{
	struct fuse_notify_store_out outarg;
	struct inode *inode;
	struct address_space *mapping;
	u64 nodeid;
	int err;
	pgoff_t index;
	unsigned int offset;
	unsigned int num;
	loff_t file_size;
	loff_t end;

	err = -EINVAL;
	if (size < sizeof(outarg))
		goto out_finish;

	err = fuse_copy_one(cs, &outarg, sizeof(outarg));
	if (err)
		goto out_finish;

	err = -EINVAL;
	if (size - sizeof(outarg) != outarg.size)
		goto out_finish;

	nodeid = outarg.nodeid;

	down_read(&fc->killsb);

	err = -ENOENT;
	if (!fc->sb)
		goto out_up_killsb;

	inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
	if (!inode)
		goto out_up_killsb;

	mapping = inode->i_mapping;
	index = outarg.offset >> PAGE_CACHE_SHIFT;
	offset = outarg.offset & ~PAGE_CACHE_MASK;
	file_size = i_size_read(inode);
	end = outarg.offset + outarg.size;
	if (end > file_size) {
		file_size = end;
		fuse_write_update_size(inode, file_size);
	}

	num = outarg.size;
	while (num) {
		struct page *page;
		unsigned int this_num;

		err = -ENOMEM;
		page = find_or_create_page(mapping, index,
					   mapping_gfp_mask(mapping));
		if (!page)
			goto out_iput;

		this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
		err = fuse_copy_page(cs, &page, offset, this_num, 0);
		if (!err && offset == 0 && (num != 0 || file_size == end))
			SetPageUptodate(page);
		unlock_page(page);
		page_cache_release(page);

		if (err)
			goto out_iput;

		num -= this_num;
		offset = 0;
		index++;
	}

	err = 0;

out_iput:
	iput(inode);
out_up_killsb:
	up_read(&fc->killsb);
out_finish:
	fuse_copy_finish(cs);
	return err;
}

M
Miklos Szeredi 已提交
1563 1564
static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
{
M
Miklos Szeredi 已提交
1565
	release_pages(req->pages, req->num_pages, 0);
M
Miklos Szeredi 已提交
1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577
}

static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
			 struct fuse_notify_retrieve_out *outarg)
{
	int err;
	struct address_space *mapping = inode->i_mapping;
	struct fuse_req *req;
	pgoff_t index;
	loff_t file_size;
	unsigned int num;
	unsigned int offset;
1578
	size_t total_len = 0;
M
Miklos Szeredi 已提交
1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600

	req = fuse_get_req(fc);
	if (IS_ERR(req))
		return PTR_ERR(req);

	offset = outarg->offset & ~PAGE_CACHE_MASK;

	req->in.h.opcode = FUSE_NOTIFY_REPLY;
	req->in.h.nodeid = outarg->nodeid;
	req->in.numargs = 2;
	req->in.argpages = 1;
	req->page_offset = offset;
	req->end = fuse_retrieve_end;

	index = outarg->offset >> PAGE_CACHE_SHIFT;
	file_size = i_size_read(inode);
	num = outarg->size;
	if (outarg->offset > file_size)
		num = 0;
	else if (outarg->offset + num > file_size)
		num = file_size - outarg->offset;

M
Miklos Szeredi 已提交
1601
	while (num && req->num_pages < FUSE_MAX_PAGES_PER_REQ) {
M
Miklos Szeredi 已提交
1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612
		struct page *page;
		unsigned int this_num;

		page = find_get_page(mapping, index);
		if (!page)
			break;

		this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
		req->pages[req->num_pages] = page;
		req->num_pages++;

M
Miklos Szeredi 已提交
1613
		offset = 0;
M
Miklos Szeredi 已提交
1614 1615
		num -= this_num;
		total_len += this_num;
M
Miklos Szeredi 已提交
1616
		index++;
M
Miklos Szeredi 已提交
1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667
	}
	req->misc.retrieve_in.offset = outarg->offset;
	req->misc.retrieve_in.size = total_len;
	req->in.args[0].size = sizeof(req->misc.retrieve_in);
	req->in.args[0].value = &req->misc.retrieve_in;
	req->in.args[1].size = total_len;

	err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
	if (err)
		fuse_retrieve_end(fc, req);

	return err;
}

static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
				struct fuse_copy_state *cs)
{
	struct fuse_notify_retrieve_out outarg;
	struct inode *inode;
	int err;

	err = -EINVAL;
	if (size != sizeof(outarg))
		goto copy_finish;

	err = fuse_copy_one(cs, &outarg, sizeof(outarg));
	if (err)
		goto copy_finish;

	fuse_copy_finish(cs);

	down_read(&fc->killsb);
	err = -ENOENT;
	if (fc->sb) {
		u64 nodeid = outarg.nodeid;

		inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
		if (inode) {
			err = fuse_retrieve(fc, inode, &outarg);
			iput(inode);
		}
	}
	up_read(&fc->killsb);

	return err;

copy_finish:
	fuse_copy_finish(cs);
	return err;
}

1668 1669 1670 1671
static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
		       unsigned int size, struct fuse_copy_state *cs)
{
	switch (code) {
T
Tejun Heo 已提交
1672 1673 1674
	case FUSE_NOTIFY_POLL:
		return fuse_notify_poll(fc, size, cs);

J
John Muir 已提交
1675 1676 1677 1678 1679 1680
	case FUSE_NOTIFY_INVAL_INODE:
		return fuse_notify_inval_inode(fc, size, cs);

	case FUSE_NOTIFY_INVAL_ENTRY:
		return fuse_notify_inval_entry(fc, size, cs);

M
Miklos Szeredi 已提交
1681 1682 1683
	case FUSE_NOTIFY_STORE:
		return fuse_notify_store(fc, size, cs);

M
Miklos Szeredi 已提交
1684 1685 1686
	case FUSE_NOTIFY_RETRIEVE:
		return fuse_notify_retrieve(fc, size, cs);

1687 1688 1689
	case FUSE_NOTIFY_DELETE:
		return fuse_notify_delete(fc, size, cs);

1690
	default:
M
Miklos Szeredi 已提交
1691
		fuse_copy_finish(cs);
1692 1693 1694 1695
		return -EINVAL;
	}
}

M
Miklos Szeredi 已提交
1696 1697 1698 1699 1700 1701 1702 1703
/* Look up request on processing list by unique ID */
static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique)
{
	struct list_head *entry;

	list_for_each(entry, &fc->processing) {
		struct fuse_req *req;
		req = list_entry(entry, struct fuse_req, list);
1704
		if (req->in.h.unique == unique || req->intr_unique == unique)
M
Miklos Szeredi 已提交
1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739
			return req;
	}
	return NULL;
}

static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
			 unsigned nbytes)
{
	unsigned reqsize = sizeof(struct fuse_out_header);

	if (out->h.error)
		return nbytes != reqsize ? -EINVAL : 0;

	reqsize += len_args(out->numargs, out->args);

	if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
		return -EINVAL;
	else if (reqsize > nbytes) {
		struct fuse_arg *lastarg = &out->args[out->numargs-1];
		unsigned diffsize = reqsize - nbytes;
		if (diffsize > lastarg->size)
			return -EINVAL;
		lastarg->size -= diffsize;
	}
	return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
			      out->page_zeroing);
}

/*
 * Write a single reply to a request.  First the header is copied from
 * the write buffer.  The request is then searched on the processing
 * list by the unique ID found in the header.  If found, then remove
 * it from the list and copy the rest of the buffer to the request.
 * The request is finished by calling request_end()
 */
1740 1741
static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
				 struct fuse_copy_state *cs, size_t nbytes)
M
Miklos Szeredi 已提交
1742 1743 1744 1745 1746 1747 1748 1749
{
	int err;
	struct fuse_req *req;
	struct fuse_out_header oh;

	if (nbytes < sizeof(struct fuse_out_header))
		return -EINVAL;

1750
	err = fuse_copy_one(cs, &oh, sizeof(oh));
M
Miklos Szeredi 已提交
1751 1752
	if (err)
		goto err_finish;
1753 1754 1755 1756 1757 1758 1759 1760 1761 1762

	err = -EINVAL;
	if (oh.len != nbytes)
		goto err_finish;

	/*
	 * Zero oh.unique indicates unsolicited notification message
	 * and error contains notification code.
	 */
	if (!oh.unique) {
1763
		err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
1764 1765 1766
		return err ? err : nbytes;
	}

M
Miklos Szeredi 已提交
1767
	err = -EINVAL;
1768
	if (oh.error <= -1000 || oh.error > 0)
M
Miklos Szeredi 已提交
1769 1770
		goto err_finish;

1771
	spin_lock(&fc->lock);
1772 1773 1774 1775
	err = -ENOENT;
	if (!fc->connected)
		goto err_unlock;

M
Miklos Szeredi 已提交
1776 1777 1778 1779
	req = request_find(fc, oh.unique);
	if (!req)
		goto err_unlock;

1780
	if (req->aborted) {
1781
		spin_unlock(&fc->lock);
1782
		fuse_copy_finish(cs);
1783
		spin_lock(&fc->lock);
1784
		request_end(fc, req);
M
Miklos Szeredi 已提交
1785 1786
		return -ENOENT;
	}
1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798
	/* Is it an interrupt reply? */
	if (req->intr_unique == oh.unique) {
		err = -EINVAL;
		if (nbytes != sizeof(struct fuse_out_header))
			goto err_unlock;

		if (oh.error == -ENOSYS)
			fc->no_interrupt = 1;
		else if (oh.error == -EAGAIN)
			queue_interrupt(fc, req);

		spin_unlock(&fc->lock);
1799
		fuse_copy_finish(cs);
1800 1801 1802 1803
		return nbytes;
	}

	req->state = FUSE_REQ_WRITING;
1804
	list_move(&req->list, &fc->io);
M
Miklos Szeredi 已提交
1805 1806
	req->out.h = oh;
	req->locked = 1;
1807
	cs->req = req;
1808 1809
	if (!req->out.page_replace)
		cs->move_pages = 0;
1810
	spin_unlock(&fc->lock);
M
Miklos Szeredi 已提交
1811

1812 1813
	err = copy_out_args(cs, &req->out, nbytes);
	fuse_copy_finish(cs);
M
Miklos Szeredi 已提交
1814

1815
	spin_lock(&fc->lock);
M
Miklos Szeredi 已提交
1816 1817
	req->locked = 0;
	if (!err) {
1818
		if (req->aborted)
M
Miklos Szeredi 已提交
1819
			err = -ENOENT;
1820
	} else if (!req->aborted)
M
Miklos Szeredi 已提交
1821 1822 1823 1824 1825 1826
		req->out.h.error = -EIO;
	request_end(fc, req);

	return err ? err : nbytes;

 err_unlock:
1827
	spin_unlock(&fc->lock);
M
Miklos Szeredi 已提交
1828
 err_finish:
1829
	fuse_copy_finish(cs);
M
Miklos Szeredi 已提交
1830 1831 1832
	return err;
}

1833 1834 1835 1836 1837 1838 1839 1840
static ssize_t fuse_dev_write(struct kiocb *iocb, const struct iovec *iov,
			      unsigned long nr_segs, loff_t pos)
{
	struct fuse_copy_state cs;
	struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
	if (!fc)
		return -EPERM;

1841
	fuse_copy_init(&cs, fc, 0, iov, nr_segs);
1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861

	return fuse_dev_do_write(fc, &cs, iov_length(iov, nr_segs));
}

static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
				     struct file *out, loff_t *ppos,
				     size_t len, unsigned int flags)
{
	unsigned nbuf;
	unsigned idx;
	struct pipe_buffer *bufs;
	struct fuse_copy_state cs;
	struct fuse_conn *fc;
	size_t rem;
	ssize_t ret;

	fc = fuse_get_conn(out);
	if (!fc)
		return -EPERM;

1862
	bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905
	if (!bufs)
		return -ENOMEM;

	pipe_lock(pipe);
	nbuf = 0;
	rem = 0;
	for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
		rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;

	ret = -EINVAL;
	if (rem < len) {
		pipe_unlock(pipe);
		goto out;
	}

	rem = len;
	while (rem) {
		struct pipe_buffer *ibuf;
		struct pipe_buffer *obuf;

		BUG_ON(nbuf >= pipe->buffers);
		BUG_ON(!pipe->nrbufs);
		ibuf = &pipe->bufs[pipe->curbuf];
		obuf = &bufs[nbuf];

		if (rem >= ibuf->len) {
			*obuf = *ibuf;
			ibuf->ops = NULL;
			pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
			pipe->nrbufs--;
		} else {
			ibuf->ops->get(pipe, ibuf);
			*obuf = *ibuf;
			obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
			obuf->len = rem;
			ibuf->offset += obuf->len;
			ibuf->len -= obuf->len;
		}
		nbuf++;
		rem -= obuf->len;
	}
	pipe_unlock(pipe);

1906
	fuse_copy_init(&cs, fc, 0, NULL, nbuf);
1907 1908 1909
	cs.pipebufs = bufs;
	cs.pipe = pipe;

1910 1911 1912
	if (flags & SPLICE_F_MOVE)
		cs.move_pages = 1;

1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923
	ret = fuse_dev_do_write(fc, &cs, len);

	for (idx = 0; idx < nbuf; idx++) {
		struct pipe_buffer *buf = &bufs[idx];
		buf->ops->release(pipe, buf);
	}
out:
	kfree(bufs);
	return ret;
}

M
Miklos Szeredi 已提交
1924 1925 1926
static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
{
	unsigned mask = POLLOUT | POLLWRNORM;
1927
	struct fuse_conn *fc = fuse_get_conn(file);
M
Miklos Szeredi 已提交
1928
	if (!fc)
1929
		return POLLERR;
M
Miklos Szeredi 已提交
1930 1931 1932

	poll_wait(file, &fc->waitq, wait);

1933
	spin_lock(&fc->lock);
1934 1935
	if (!fc->connected)
		mask = POLLERR;
1936
	else if (request_pending(fc))
1937
		mask |= POLLIN | POLLRDNORM;
1938
	spin_unlock(&fc->lock);
M
Miklos Szeredi 已提交
1939 1940 1941 1942

	return mask;
}

1943 1944 1945
/*
 * Abort all requests on the given list (pending or processing)
 *
1946
 * This function releases and reacquires fc->lock
1947
 */
M
Miklos Szeredi 已提交
1948
static void end_requests(struct fuse_conn *fc, struct list_head *head)
M
Miklos Szeredi 已提交
1949 1950
__releases(fc->lock)
__acquires(fc->lock)
M
Miklos Szeredi 已提交
1951 1952 1953 1954 1955 1956
{
	while (!list_empty(head)) {
		struct fuse_req *req;
		req = list_entry(head->next, struct fuse_req, list);
		req->out.h.error = -ECONNABORTED;
		request_end(fc, req);
1957
		spin_lock(&fc->lock);
M
Miklos Szeredi 已提交
1958 1959 1960
	}
}

1961 1962 1963
/*
 * Abort requests under I/O
 *
1964
 * The requests are set to aborted and finished, and the request
1965 1966
 * waiter is woken up.  This will make request_wait_answer() wait
 * until the request is unlocked and then return.
1967 1968 1969 1970
 *
 * If the request is asynchronous, then the end function needs to be
 * called after waiting for the request to be unlocked (if it was
 * locked).
1971 1972
 */
static void end_io_requests(struct fuse_conn *fc)
M
Miklos Szeredi 已提交
1973 1974
__releases(fc->lock)
__acquires(fc->lock)
1975 1976
{
	while (!list_empty(&fc->io)) {
1977 1978 1979 1980
		struct fuse_req *req =
			list_entry(fc->io.next, struct fuse_req, list);
		void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;

1981
		req->aborted = 1;
1982 1983 1984 1985
		req->out.h.error = -ECONNABORTED;
		req->state = FUSE_REQ_FINISHED;
		list_del_init(&req->list);
		wake_up(&req->waitq);
1986 1987 1988
		if (end) {
			req->end = NULL;
			__fuse_get_request(req);
1989
			spin_unlock(&fc->lock);
1990 1991
			wait_event(req->waitq, !req->locked);
			end(fc, req);
1992
			fuse_put_request(fc, req);
1993
			spin_lock(&fc->lock);
1994
		}
1995 1996 1997
	}
}

1998
static void end_queued_requests(struct fuse_conn *fc)
M
Miklos Szeredi 已提交
1999 2000
__releases(fc->lock)
__acquires(fc->lock)
2001 2002 2003 2004 2005
{
	fc->max_background = UINT_MAX;
	flush_bg_queue(fc);
	end_requests(fc, &fc->pending);
	end_requests(fc, &fc->processing);
2006
	while (forget_pending(fc))
2007
		kfree(dequeue_forget(fc, 1, NULL));
2008 2009
}

2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024
static void end_polls(struct fuse_conn *fc)
{
	struct rb_node *p;

	p = rb_first(&fc->polled_files);

	while (p) {
		struct fuse_file *ff;
		ff = rb_entry(p, struct fuse_file, polled_node);
		wake_up_interruptible_all(&ff->poll_wait);

		p = rb_next(p);
	}
}

2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040
/*
 * Abort all requests.
 *
 * Emergency exit in case of a malicious or accidental deadlock, or
 * just a hung filesystem.
 *
 * The same effect is usually achievable through killing the
 * filesystem daemon and all users of the filesystem.  The exception
 * is the combination of an asynchronous request and the tricky
 * deadlock (see Documentation/filesystems/fuse.txt).
 *
 * During the aborting, progression of requests from the pending and
 * processing lists onto the io list, and progression of new requests
 * onto the pending list is prevented by req->connected being false.
 *
 * Progression of requests under I/O to the processing list is
2041 2042
 * prevented by the req->aborted flag being true for these requests.
 * For this reason requests on the io list must be aborted first.
2043 2044 2045
 */
void fuse_abort_conn(struct fuse_conn *fc)
{
2046
	spin_lock(&fc->lock);
2047 2048
	if (fc->connected) {
		fc->connected = 0;
2049
		fc->blocked = 0;
2050
		end_io_requests(fc);
2051
		end_queued_requests(fc);
2052
		end_polls(fc);
2053
		wake_up_all(&fc->waitq);
2054
		wake_up_all(&fc->blocked_waitq);
2055
		kill_fasync(&fc->fasync, SIGIO, POLL_IN);
2056
	}
2057
	spin_unlock(&fc->lock);
2058
}
2059
EXPORT_SYMBOL_GPL(fuse_abort_conn);
2060

2061
int fuse_dev_release(struct inode *inode, struct file *file)
M
Miklos Szeredi 已提交
2062
{
M
Miklos Szeredi 已提交
2063
	struct fuse_conn *fc = fuse_get_conn(file);
M
Miklos Szeredi 已提交
2064
	if (fc) {
2065
		spin_lock(&fc->lock);
M
Miklos Szeredi 已提交
2066
		fc->connected = 0;
2067 2068
		fc->blocked = 0;
		end_queued_requests(fc);
2069
		end_polls(fc);
2070
		wake_up_all(&fc->blocked_waitq);
2071
		spin_unlock(&fc->lock);
2072
		fuse_conn_put(fc);
2073
	}
2074

M
Miklos Szeredi 已提交
2075 2076
	return 0;
}
2077
EXPORT_SYMBOL_GPL(fuse_dev_release);
M
Miklos Szeredi 已提交
2078

2079 2080 2081 2082
static int fuse_dev_fasync(int fd, struct file *file, int on)
{
	struct fuse_conn *fc = fuse_get_conn(file);
	if (!fc)
2083
		return -EPERM;
2084 2085 2086 2087 2088

	/* No locking - fasync_helper does its own locking */
	return fasync_helper(fd, file, on, &fc->fasync);
}

2089
const struct file_operations fuse_dev_operations = {
M
Miklos Szeredi 已提交
2090 2091
	.owner		= THIS_MODULE,
	.llseek		= no_llseek,
2092 2093
	.read		= do_sync_read,
	.aio_read	= fuse_dev_read,
2094
	.splice_read	= fuse_dev_splice_read,
2095 2096
	.write		= do_sync_write,
	.aio_write	= fuse_dev_write,
2097
	.splice_write	= fuse_dev_splice_write,
M
Miklos Szeredi 已提交
2098 2099
	.poll		= fuse_dev_poll,
	.release	= fuse_dev_release,
2100
	.fasync		= fuse_dev_fasync,
M
Miklos Szeredi 已提交
2101
};
2102
EXPORT_SYMBOL_GPL(fuse_dev_operations);
M
Miklos Szeredi 已提交
2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114

static struct miscdevice fuse_miscdevice = {
	.minor = FUSE_MINOR,
	.name  = "fuse",
	.fops = &fuse_dev_operations,
};

int __init fuse_dev_init(void)
{
	int err = -ENOMEM;
	fuse_req_cachep = kmem_cache_create("fuse_request",
					    sizeof(struct fuse_req),
2115
					    0, 0, NULL);
M
Miklos Szeredi 已提交
2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135
	if (!fuse_req_cachep)
		goto out;

	err = misc_register(&fuse_miscdevice);
	if (err)
		goto out_cache_clean;

	return 0;

 out_cache_clean:
	kmem_cache_destroy(fuse_req_cachep);
 out:
	return err;
}

void fuse_dev_cleanup(void)
{
	misc_deregister(&fuse_miscdevice);
	kmem_cache_destroy(fuse_req_cachep);
}