Merge tag 'for-4.1' of git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux...
[deliverable/linux.git] / fs / fuse / dev.c
CommitLineData
334f485d
MS
1/*
2 FUSE: Filesystem in Userspace
1729a16c 3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
334f485d
MS
4
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
9#include "fuse_i.h"
10
11#include <linux/init.h>
12#include <linux/module.h>
13#include <linux/poll.h>
14#include <linux/uio.h>
15#include <linux/miscdevice.h>
16#include <linux/pagemap.h>
17#include <linux/file.h>
18#include <linux/slab.h>
dd3bb14f 19#include <linux/pipe_fs_i.h>
ce534fb0
MS
20#include <linux/swap.h>
21#include <linux/splice.h>
a27bb332 22#include <linux/aio.h>
334f485d
MS
23
24MODULE_ALIAS_MISCDEV(FUSE_MINOR);
578454ff 25MODULE_ALIAS("devname:fuse");
334f485d 26
e18b890b 27static struct kmem_cache *fuse_req_cachep;
334f485d 28
8bfc016d 29static struct fuse_conn *fuse_get_conn(struct file *file)
334f485d 30{
0720b315
MS
31 /*
32 * Lockless access is OK, because file->private data is set
33 * once during mount and is valid until the file is released.
34 */
35 return file->private_data;
334f485d
MS
36}
37
4250c066 38static void fuse_request_init(struct fuse_req *req, struct page **pages,
b2430d75 39 struct fuse_page_desc *page_descs,
4250c066 40 unsigned npages)
334f485d
MS
41{
42 memset(req, 0, sizeof(*req));
4250c066 43 memset(pages, 0, sizeof(*pages) * npages);
b2430d75 44 memset(page_descs, 0, sizeof(*page_descs) * npages);
334f485d 45 INIT_LIST_HEAD(&req->list);
a4d27e75 46 INIT_LIST_HEAD(&req->intr_entry);
334f485d
MS
47 init_waitqueue_head(&req->waitq);
48 atomic_set(&req->count, 1);
4250c066 49 req->pages = pages;
b2430d75 50 req->page_descs = page_descs;
4250c066 51 req->max_pages = npages;
334f485d
MS
52}
53
4250c066 54static struct fuse_req *__fuse_request_alloc(unsigned npages, gfp_t flags)
334f485d 55{
4250c066
MP
56 struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, flags);
57 if (req) {
58 struct page **pages;
b2430d75 59 struct fuse_page_desc *page_descs;
4250c066 60
b2430d75 61 if (npages <= FUSE_REQ_INLINE_PAGES) {
4250c066 62 pages = req->inline_pages;
b2430d75
MP
63 page_descs = req->inline_page_descs;
64 } else {
4250c066 65 pages = kmalloc(sizeof(struct page *) * npages, flags);
b2430d75
MP
66 page_descs = kmalloc(sizeof(struct fuse_page_desc) *
67 npages, flags);
68 }
4250c066 69
b2430d75
MP
70 if (!pages || !page_descs) {
71 kfree(pages);
72 kfree(page_descs);
4250c066
MP
73 kmem_cache_free(fuse_req_cachep, req);
74 return NULL;
75 }
76
b2430d75 77 fuse_request_init(req, pages, page_descs, npages);
4250c066 78 }
334f485d
MS
79 return req;
80}
4250c066
MP
81
82struct fuse_req *fuse_request_alloc(unsigned npages)
83{
84 return __fuse_request_alloc(npages, GFP_KERNEL);
85}
08cbf542 86EXPORT_SYMBOL_GPL(fuse_request_alloc);
334f485d 87
4250c066 88struct fuse_req *fuse_request_alloc_nofs(unsigned npages)
3be5a52b 89{
4250c066 90 return __fuse_request_alloc(npages, GFP_NOFS);
3be5a52b
MS
91}
92
334f485d
MS
93void fuse_request_free(struct fuse_req *req)
94{
b2430d75 95 if (req->pages != req->inline_pages) {
4250c066 96 kfree(req->pages);
b2430d75
MP
97 kfree(req->page_descs);
98 }
334f485d
MS
99 kmem_cache_free(fuse_req_cachep, req);
100}
101
8bfc016d 102static void block_sigs(sigset_t *oldset)
334f485d
MS
103{
104 sigset_t mask;
105
106 siginitsetinv(&mask, sigmask(SIGKILL));
107 sigprocmask(SIG_BLOCK, &mask, oldset);
108}
109
8bfc016d 110static void restore_sigs(sigset_t *oldset)
334f485d
MS
111{
112 sigprocmask(SIG_SETMASK, oldset, NULL);
113}
114
36cf66ed 115void __fuse_get_request(struct fuse_req *req)
334f485d
MS
116{
117 atomic_inc(&req->count);
118}
119
120/* Must be called with > 1 refcount */
121static void __fuse_put_request(struct fuse_req *req)
122{
123 BUG_ON(atomic_read(&req->count) < 2);
124 atomic_dec(&req->count);
125}
126
33649c91
MS
127static void fuse_req_init_context(struct fuse_req *req)
128{
499dcf20
EB
129 req->in.h.uid = from_kuid_munged(&init_user_ns, current_fsuid());
130 req->in.h.gid = from_kgid_munged(&init_user_ns, current_fsgid());
33649c91
MS
131 req->in.h.pid = current->pid;
132}
133
9759bd51
MS
134void fuse_set_initialized(struct fuse_conn *fc)
135{
136 /* Make sure stores before this are seen on another CPU */
137 smp_wmb();
138 fc->initialized = 1;
139}
140
0aada884
MP
141static bool fuse_block_alloc(struct fuse_conn *fc, bool for_background)
142{
143 return !fc->initialized || (for_background && fc->blocked);
144}
145
8b41e671
MP
146static struct fuse_req *__fuse_get_req(struct fuse_conn *fc, unsigned npages,
147 bool for_background)
334f485d 148{
08a53cdc 149 struct fuse_req *req;
08a53cdc 150 int err;
9bc5ddda 151 atomic_inc(&fc->num_waiting);
0aada884
MP
152
153 if (fuse_block_alloc(fc, for_background)) {
154 sigset_t oldset;
155 int intr;
156
157 block_sigs(&oldset);
722d2bea 158 intr = wait_event_interruptible_exclusive(fc->blocked_waitq,
0aada884
MP
159 !fuse_block_alloc(fc, for_background));
160 restore_sigs(&oldset);
161 err = -EINTR;
162 if (intr)
163 goto out;
164 }
9759bd51
MS
165 /* Matches smp_wmb() in fuse_set_initialized() */
166 smp_rmb();
08a53cdc 167
51eb01e7
MS
168 err = -ENOTCONN;
169 if (!fc->connected)
170 goto out;
171
b111c8c0 172 req = fuse_request_alloc(npages);
9bc5ddda 173 err = -ENOMEM;
722d2bea
MP
174 if (!req) {
175 if (for_background)
176 wake_up(&fc->blocked_waitq);
9bc5ddda 177 goto out;
722d2bea 178 }
334f485d 179
33649c91 180 fuse_req_init_context(req);
9bc5ddda 181 req->waiting = 1;
8b41e671 182 req->background = for_background;
334f485d 183 return req;
9bc5ddda
MS
184
185 out:
186 atomic_dec(&fc->num_waiting);
187 return ERR_PTR(err);
334f485d 188}
8b41e671
MP
189
190struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages)
191{
192 return __fuse_get_req(fc, npages, false);
193}
08cbf542 194EXPORT_SYMBOL_GPL(fuse_get_req);
334f485d 195
8b41e671
MP
196struct fuse_req *fuse_get_req_for_background(struct fuse_conn *fc,
197 unsigned npages)
198{
199 return __fuse_get_req(fc, npages, true);
200}
201EXPORT_SYMBOL_GPL(fuse_get_req_for_background);
202
33649c91
MS
203/*
204 * Return request in fuse_file->reserved_req. However that may
205 * currently be in use. If that is the case, wait for it to become
206 * available.
207 */
208static struct fuse_req *get_reserved_req(struct fuse_conn *fc,
209 struct file *file)
210{
211 struct fuse_req *req = NULL;
212 struct fuse_file *ff = file->private_data;
213
214 do {
de5e3dec 215 wait_event(fc->reserved_req_waitq, ff->reserved_req);
33649c91
MS
216 spin_lock(&fc->lock);
217 if (ff->reserved_req) {
218 req = ff->reserved_req;
219 ff->reserved_req = NULL;
cb0942b8 220 req->stolen_file = get_file(file);
33649c91
MS
221 }
222 spin_unlock(&fc->lock);
223 } while (!req);
224
225 return req;
226}
227
228/*
229 * Put stolen request back into fuse_file->reserved_req
230 */
231static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req)
232{
233 struct file *file = req->stolen_file;
234 struct fuse_file *ff = file->private_data;
235
236 spin_lock(&fc->lock);
b2430d75 237 fuse_request_init(req, req->pages, req->page_descs, req->max_pages);
33649c91
MS
238 BUG_ON(ff->reserved_req);
239 ff->reserved_req = req;
de5e3dec 240 wake_up_all(&fc->reserved_req_waitq);
33649c91
MS
241 spin_unlock(&fc->lock);
242 fput(file);
243}
244
245/*
246 * Gets a requests for a file operation, always succeeds
247 *
248 * This is used for sending the FLUSH request, which must get to
249 * userspace, due to POSIX locks which may need to be unlocked.
250 *
251 * If allocation fails due to OOM, use the reserved request in
252 * fuse_file.
253 *
254 * This is very unlikely to deadlock accidentally, since the
255 * filesystem should not have it's own file open. If deadlock is
256 * intentional, it can still be broken by "aborting" the filesystem.
257 */
b111c8c0
MP
258struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc,
259 struct file *file)
33649c91
MS
260{
261 struct fuse_req *req;
262
263 atomic_inc(&fc->num_waiting);
0aada884 264 wait_event(fc->blocked_waitq, fc->initialized);
9759bd51
MS
265 /* Matches smp_wmb() in fuse_set_initialized() */
266 smp_rmb();
b111c8c0 267 req = fuse_request_alloc(0);
33649c91
MS
268 if (!req)
269 req = get_reserved_req(fc, file);
270
271 fuse_req_init_context(req);
272 req->waiting = 1;
8b41e671 273 req->background = 0;
33649c91
MS
274 return req;
275}
276
334f485d 277void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req)
7128ec2a
MS
278{
279 if (atomic_dec_and_test(&req->count)) {
722d2bea
MP
280 if (unlikely(req->background)) {
281 /*
282 * We get here in the unlikely case that a background
283 * request was allocated but not sent
284 */
285 spin_lock(&fc->lock);
286 if (!fc->blocked)
287 wake_up(&fc->blocked_waitq);
288 spin_unlock(&fc->lock);
289 }
290
9bc5ddda
MS
291 if (req->waiting)
292 atomic_dec(&fc->num_waiting);
33649c91
MS
293
294 if (req->stolen_file)
295 put_reserved_req(fc, req);
296 else
297 fuse_request_free(req);
7128ec2a
MS
298 }
299}
08cbf542 300EXPORT_SYMBOL_GPL(fuse_put_request);
7128ec2a 301
d12def1b
MS
302static unsigned len_args(unsigned numargs, struct fuse_arg *args)
303{
304 unsigned nbytes = 0;
305 unsigned i;
306
307 for (i = 0; i < numargs; i++)
308 nbytes += args[i].size;
309
310 return nbytes;
311}
312
313static u64 fuse_get_unique(struct fuse_conn *fc)
314{
315 fc->reqctr++;
316 /* zero is special */
317 if (fc->reqctr == 0)
318 fc->reqctr = 1;
319
320 return fc->reqctr;
321}
322
323static void queue_request(struct fuse_conn *fc, struct fuse_req *req)
324{
d12def1b
MS
325 req->in.h.len = sizeof(struct fuse_in_header) +
326 len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
327 list_add_tail(&req->list, &fc->pending);
328 req->state = FUSE_REQ_PENDING;
329 if (!req->waiting) {
330 req->waiting = 1;
331 atomic_inc(&fc->num_waiting);
332 }
333 wake_up(&fc->waitq);
334 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
335}
336
07e77dca
MS
337void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
338 u64 nodeid, u64 nlookup)
339{
02c048b9
MS
340 forget->forget_one.nodeid = nodeid;
341 forget->forget_one.nlookup = nlookup;
07e77dca
MS
342
343 spin_lock(&fc->lock);
5dfcc87f
MS
344 if (fc->connected) {
345 fc->forget_list_tail->next = forget;
346 fc->forget_list_tail = forget;
347 wake_up(&fc->waitq);
348 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
349 } else {
350 kfree(forget);
351 }
07e77dca
MS
352 spin_unlock(&fc->lock);
353}
354
d12def1b
MS
355static void flush_bg_queue(struct fuse_conn *fc)
356{
7a6d3c8b 357 while (fc->active_background < fc->max_background &&
d12def1b
MS
358 !list_empty(&fc->bg_queue)) {
359 struct fuse_req *req;
360
361 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
362 list_del(&req->list);
363 fc->active_background++;
2d45ba38 364 req->in.h.unique = fuse_get_unique(fc);
d12def1b
MS
365 queue_request(fc, req);
366 }
367}
368
334f485d
MS
369/*
370 * This function is called when a request is finished. Either a reply
f9a2842e 371 * has arrived or it was aborted (and not yet sent) or some error
f43b155a 372 * occurred during communication with userspace, or the device file
51eb01e7
MS
373 * was closed. The requester thread is woken up (if still waiting),
374 * the 'end' callback is called if given, else the reference to the
375 * request is released
7128ec2a 376 *
d7133114 377 * Called with fc->lock, unlocks it
334f485d
MS
378 */
379static void request_end(struct fuse_conn *fc, struct fuse_req *req)
b9ca67b2 380__releases(fc->lock)
334f485d 381{
51eb01e7
MS
382 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
383 req->end = NULL;
d77a1d5b 384 list_del(&req->list);
a4d27e75 385 list_del(&req->intr_entry);
83cfd493 386 req->state = FUSE_REQ_FINISHED;
51eb01e7 387 if (req->background) {
722d2bea
MP
388 req->background = 0;
389
390 if (fc->num_background == fc->max_background)
51eb01e7 391 fc->blocked = 0;
722d2bea
MP
392
393 /* Wake up next waiter, if any */
3c18ef81 394 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
722d2bea
MP
395 wake_up(&fc->blocked_waitq);
396
7a6d3c8b 397 if (fc->num_background == fc->congestion_threshold &&
a325f9b9 398 fc->connected && fc->bdi_initialized) {
8aa7e847
JA
399 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
400 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
f92b99b9 401 }
51eb01e7 402 fc->num_background--;
d12def1b
MS
403 fc->active_background--;
404 flush_bg_queue(fc);
334f485d 405 }
51eb01e7 406 spin_unlock(&fc->lock);
51eb01e7
MS
407 wake_up(&req->waitq);
408 if (end)
409 end(fc, req);
e9bb09dd 410 fuse_put_request(fc, req);
334f485d
MS
411}
412
a4d27e75
MS
413static void wait_answer_interruptible(struct fuse_conn *fc,
414 struct fuse_req *req)
b9ca67b2
MS
415__releases(fc->lock)
416__acquires(fc->lock)
a4d27e75
MS
417{
418 if (signal_pending(current))
419 return;
420
421 spin_unlock(&fc->lock);
422 wait_event_interruptible(req->waitq, req->state == FUSE_REQ_FINISHED);
423 spin_lock(&fc->lock);
424}
425
426static void queue_interrupt(struct fuse_conn *fc, struct fuse_req *req)
427{
428 list_add_tail(&req->intr_entry, &fc->interrupts);
429 wake_up(&fc->waitq);
430 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
431}
432
7c352bdf 433static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
b9ca67b2
MS
434__releases(fc->lock)
435__acquires(fc->lock)
334f485d 436{
a4d27e75
MS
437 if (!fc->no_interrupt) {
438 /* Any signal may interrupt this */
439 wait_answer_interruptible(fc, req);
334f485d 440
a4d27e75
MS
441 if (req->aborted)
442 goto aborted;
443 if (req->state == FUSE_REQ_FINISHED)
444 return;
445
446 req->interrupted = 1;
447 if (req->state == FUSE_REQ_SENT)
448 queue_interrupt(fc, req);
449 }
450
a131de0a 451 if (!req->force) {
a4d27e75
MS
452 sigset_t oldset;
453
454 /* Only fatal signals may interrupt this */
51eb01e7 455 block_sigs(&oldset);
a4d27e75 456 wait_answer_interruptible(fc, req);
51eb01e7 457 restore_sigs(&oldset);
a131de0a
MS
458
459 if (req->aborted)
460 goto aborted;
461 if (req->state == FUSE_REQ_FINISHED)
462 return;
463
464 /* Request is not yet in userspace, bail out */
465 if (req->state == FUSE_REQ_PENDING) {
466 list_del(&req->list);
467 __fuse_put_request(req);
468 req->out.h.error = -EINTR;
469 return;
470 }
51eb01e7 471 }
334f485d 472
a131de0a
MS
473 /*
474 * Either request is already in userspace, or it was forced.
475 * Wait it out.
476 */
477 spin_unlock(&fc->lock);
478 wait_event(req->waitq, req->state == FUSE_REQ_FINISHED);
479 spin_lock(&fc->lock);
a4d27e75 480
a131de0a
MS
481 if (!req->aborted)
482 return;
a4d27e75
MS
483
484 aborted:
a131de0a 485 BUG_ON(req->state != FUSE_REQ_FINISHED);
334f485d
MS
486 if (req->locked) {
487 /* This is uninterruptible sleep, because data is
488 being copied to/from the buffers of req. During
489 locked state, there mustn't be any filesystem
490 operation (e.g. page fault), since that could lead
491 to deadlock */
d7133114 492 spin_unlock(&fc->lock);
334f485d 493 wait_event(req->waitq, !req->locked);
d7133114 494 spin_lock(&fc->lock);
334f485d 495 }
334f485d
MS
496}
497
6a4e922c 498static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
334f485d 499{
8b41e671 500 BUG_ON(req->background);
d7133114 501 spin_lock(&fc->lock);
1e9a4ed9 502 if (!fc->connected)
334f485d
MS
503 req->out.h.error = -ENOTCONN;
504 else if (fc->conn_error)
505 req->out.h.error = -ECONNREFUSED;
506 else {
2d45ba38 507 req->in.h.unique = fuse_get_unique(fc);
334f485d
MS
508 queue_request(fc, req);
509 /* acquire extra reference, since request is still needed
510 after request_end() */
511 __fuse_get_request(req);
512
7c352bdf 513 request_wait_answer(fc, req);
334f485d 514 }
d7133114 515 spin_unlock(&fc->lock);
334f485d 516}
6a4e922c
EW
517
518void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
519{
520 req->isreply = 1;
521 __fuse_request_send(fc, req);
522}
08cbf542 523EXPORT_SYMBOL_GPL(fuse_request_send);
334f485d 524
21f62174
MS
525static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
526{
527 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
528 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
529
530 if (fc->minor < 9) {
531 switch (args->in.h.opcode) {
532 case FUSE_LOOKUP:
533 case FUSE_CREATE:
534 case FUSE_MKNOD:
535 case FUSE_MKDIR:
536 case FUSE_SYMLINK:
537 case FUSE_LINK:
538 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
539 break;
540 case FUSE_GETATTR:
541 case FUSE_SETATTR:
542 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
543 break;
544 }
545 }
546 if (fc->minor < 12) {
547 switch (args->in.h.opcode) {
548 case FUSE_CREATE:
549 args->in.args[0].size = sizeof(struct fuse_open_in);
550 break;
551 case FUSE_MKNOD:
552 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
553 break;
554 }
555 }
556}
557
7078187a
MS
558ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
559{
560 struct fuse_req *req;
561 ssize_t ret;
562
563 req = fuse_get_req(fc, 0);
564 if (IS_ERR(req))
565 return PTR_ERR(req);
566
21f62174
MS
567 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
568 fuse_adjust_compat(fc, args);
569
7078187a
MS
570 req->in.h.opcode = args->in.h.opcode;
571 req->in.h.nodeid = args->in.h.nodeid;
572 req->in.numargs = args->in.numargs;
573 memcpy(req->in.args, args->in.args,
574 args->in.numargs * sizeof(struct fuse_in_arg));
575 req->out.argvar = args->out.argvar;
576 req->out.numargs = args->out.numargs;
577 memcpy(req->out.args, args->out.args,
578 args->out.numargs * sizeof(struct fuse_arg));
579 fuse_request_send(fc, req);
580 ret = req->out.h.error;
581 if (!ret && args->out.argvar) {
582 BUG_ON(args->out.numargs != 1);
583 ret = req->out.args[0].size;
584 }
585 fuse_put_request(fc, req);
586
587 return ret;
588}
589
b93f858a
TH
590static void fuse_request_send_nowait_locked(struct fuse_conn *fc,
591 struct fuse_req *req)
d12def1b 592{
8b41e671 593 BUG_ON(!req->background);
d12def1b 594 fc->num_background++;
7a6d3c8b 595 if (fc->num_background == fc->max_background)
d12def1b 596 fc->blocked = 1;
7a6d3c8b 597 if (fc->num_background == fc->congestion_threshold &&
a325f9b9 598 fc->bdi_initialized) {
8aa7e847
JA
599 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
600 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
d12def1b
MS
601 }
602 list_add_tail(&req->list, &fc->bg_queue);
603 flush_bg_queue(fc);
604}
605
b93f858a 606static void fuse_request_send_nowait(struct fuse_conn *fc, struct fuse_req *req)
334f485d 607{
d7133114 608 spin_lock(&fc->lock);
1e9a4ed9 609 if (fc->connected) {
b93f858a 610 fuse_request_send_nowait_locked(fc, req);
d7133114 611 spin_unlock(&fc->lock);
334f485d
MS
612 } else {
613 req->out.h.error = -ENOTCONN;
614 request_end(fc, req);
615 }
616}
617
b93f858a 618void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
334f485d
MS
619{
620 req->isreply = 1;
b93f858a 621 fuse_request_send_nowait(fc, req);
334f485d 622}
08cbf542 623EXPORT_SYMBOL_GPL(fuse_request_send_background);
334f485d 624
2d45ba38
MS
625static int fuse_request_send_notify_reply(struct fuse_conn *fc,
626 struct fuse_req *req, u64 unique)
627{
628 int err = -ENODEV;
629
630 req->isreply = 0;
631 req->in.h.unique = unique;
632 spin_lock(&fc->lock);
633 if (fc->connected) {
634 queue_request(fc, req);
635 err = 0;
636 }
637 spin_unlock(&fc->lock);
638
639 return err;
640}
641
3be5a52b
MS
642/*
643 * Called under fc->lock
644 *
645 * fc->connected must have been checked previously
646 */
b93f858a
TH
647void fuse_request_send_background_locked(struct fuse_conn *fc,
648 struct fuse_req *req)
3be5a52b
MS
649{
650 req->isreply = 1;
b93f858a 651 fuse_request_send_nowait_locked(fc, req);
3be5a52b
MS
652}
653
0b05b183
AA
654void fuse_force_forget(struct file *file, u64 nodeid)
655{
6131ffaa 656 struct inode *inode = file_inode(file);
0b05b183
AA
657 struct fuse_conn *fc = get_fuse_conn(inode);
658 struct fuse_req *req;
659 struct fuse_forget_in inarg;
660
661 memset(&inarg, 0, sizeof(inarg));
662 inarg.nlookup = 1;
b111c8c0 663 req = fuse_get_req_nofail_nopages(fc, file);
0b05b183
AA
664 req->in.h.opcode = FUSE_FORGET;
665 req->in.h.nodeid = nodeid;
666 req->in.numargs = 1;
667 req->in.args[0].size = sizeof(inarg);
668 req->in.args[0].value = &inarg;
669 req->isreply = 0;
6a4e922c
EW
670 __fuse_request_send(fc, req);
671 /* ignore errors */
672 fuse_put_request(fc, req);
0b05b183
AA
673}
674
334f485d
MS
675/*
676 * Lock the request. Up to the next unlock_request() there mustn't be
677 * anything that could cause a page-fault. If the request was already
f9a2842e 678 * aborted bail out.
334f485d 679 */
d7133114 680static int lock_request(struct fuse_conn *fc, struct fuse_req *req)
334f485d
MS
681{
682 int err = 0;
683 if (req) {
d7133114 684 spin_lock(&fc->lock);
f9a2842e 685 if (req->aborted)
334f485d
MS
686 err = -ENOENT;
687 else
688 req->locked = 1;
d7133114 689 spin_unlock(&fc->lock);
334f485d
MS
690 }
691 return err;
692}
693
694/*
f9a2842e 695 * Unlock request. If it was aborted during being locked, the
334f485d
MS
696 * requester thread is currently waiting for it to be unlocked, so
697 * wake it up.
698 */
d7133114 699static void unlock_request(struct fuse_conn *fc, struct fuse_req *req)
334f485d
MS
700{
701 if (req) {
d7133114 702 spin_lock(&fc->lock);
334f485d 703 req->locked = 0;
f9a2842e 704 if (req->aborted)
334f485d 705 wake_up(&req->waitq);
d7133114 706 spin_unlock(&fc->lock);
334f485d
MS
707 }
708}
709
710struct fuse_copy_state {
d7133114 711 struct fuse_conn *fc;
334f485d
MS
712 int write;
713 struct fuse_req *req;
714 const struct iovec *iov;
dd3bb14f
MS
715 struct pipe_buffer *pipebufs;
716 struct pipe_buffer *currbuf;
717 struct pipe_inode_info *pipe;
334f485d
MS
718 unsigned long nr_segs;
719 unsigned long seglen;
720 unsigned long addr;
721 struct page *pg;
334f485d 722 unsigned len;
c55a01d3 723 unsigned offset;
ce534fb0 724 unsigned move_pages:1;
334f485d
MS
725};
726
d7133114 727static void fuse_copy_init(struct fuse_copy_state *cs, struct fuse_conn *fc,
c3021629 728 int write,
d7133114 729 const struct iovec *iov, unsigned long nr_segs)
334f485d
MS
730{
731 memset(cs, 0, sizeof(*cs));
d7133114 732 cs->fc = fc;
334f485d 733 cs->write = write;
334f485d
MS
734 cs->iov = iov;
735 cs->nr_segs = nr_segs;
736}
737
738/* Unmap and put previous page of userspace buffer */
8bfc016d 739static void fuse_copy_finish(struct fuse_copy_state *cs)
334f485d 740{
dd3bb14f
MS
741 if (cs->currbuf) {
742 struct pipe_buffer *buf = cs->currbuf;
743
c55a01d3 744 if (cs->write)
c3021629 745 buf->len = PAGE_SIZE - cs->len;
dd3bb14f 746 cs->currbuf = NULL;
c55a01d3 747 } else if (cs->pg) {
334f485d
MS
748 if (cs->write) {
749 flush_dcache_page(cs->pg);
750 set_page_dirty_lock(cs->pg);
751 }
752 put_page(cs->pg);
334f485d 753 }
c55a01d3 754 cs->pg = NULL;
334f485d
MS
755}
756
757/*
758 * Get another pagefull of userspace buffer, and map it to kernel
759 * address space, and lock request
760 */
761static int fuse_copy_fill(struct fuse_copy_state *cs)
762{
c55a01d3 763 struct page *page;
334f485d
MS
764 int err;
765
d7133114 766 unlock_request(cs->fc, cs->req);
334f485d 767 fuse_copy_finish(cs);
dd3bb14f
MS
768 if (cs->pipebufs) {
769 struct pipe_buffer *buf = cs->pipebufs;
770
c3021629
MS
771 if (!cs->write) {
772 err = buf->ops->confirm(cs->pipe, buf);
773 if (err)
774 return err;
775
776 BUG_ON(!cs->nr_segs);
777 cs->currbuf = buf;
c55a01d3
MS
778 cs->pg = buf->page;
779 cs->offset = buf->offset;
c3021629 780 cs->len = buf->len;
c3021629
MS
781 cs->pipebufs++;
782 cs->nr_segs--;
783 } else {
c3021629
MS
784 if (cs->nr_segs == cs->pipe->buffers)
785 return -EIO;
786
787 page = alloc_page(GFP_HIGHUSER);
788 if (!page)
789 return -ENOMEM;
790
791 buf->page = page;
792 buf->offset = 0;
793 buf->len = 0;
794
795 cs->currbuf = buf;
c55a01d3
MS
796 cs->pg = page;
797 cs->offset = 0;
c3021629
MS
798 cs->len = PAGE_SIZE;
799 cs->pipebufs++;
800 cs->nr_segs++;
801 }
dd3bb14f
MS
802 } else {
803 if (!cs->seglen) {
804 BUG_ON(!cs->nr_segs);
805 cs->seglen = cs->iov[0].iov_len;
806 cs->addr = (unsigned long) cs->iov[0].iov_base;
807 cs->iov++;
808 cs->nr_segs--;
809 }
c55a01d3 810 err = get_user_pages_fast(cs->addr, 1, cs->write, &page);
dd3bb14f
MS
811 if (err < 0)
812 return err;
813 BUG_ON(err != 1);
c55a01d3
MS
814 cs->pg = page;
815 cs->offset = cs->addr % PAGE_SIZE;
816 cs->len = min(PAGE_SIZE - cs->offset, cs->seglen);
dd3bb14f
MS
817 cs->seglen -= cs->len;
818 cs->addr += cs->len;
334f485d 819 }
334f485d 820
d7133114 821 return lock_request(cs->fc, cs->req);
334f485d
MS
822}
823
824/* Do as much copy to/from userspace buffer as we can */
8bfc016d 825static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
334f485d
MS
826{
827 unsigned ncpy = min(*size, cs->len);
828 if (val) {
c55a01d3
MS
829 void *pgaddr = kmap_atomic(cs->pg);
830 void *buf = pgaddr + cs->offset;
831
334f485d 832 if (cs->write)
c55a01d3 833 memcpy(buf, *val, ncpy);
334f485d 834 else
c55a01d3
MS
835 memcpy(*val, buf, ncpy);
836
837 kunmap_atomic(pgaddr);
334f485d
MS
838 *val += ncpy;
839 }
840 *size -= ncpy;
841 cs->len -= ncpy;
c55a01d3 842 cs->offset += ncpy;
334f485d
MS
843 return ncpy;
844}
845
ce534fb0
MS
846static int fuse_check_page(struct page *page)
847{
848 if (page_mapcount(page) ||
849 page->mapping != NULL ||
850 page_count(page) != 1 ||
851 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
852 ~(1 << PG_locked |
853 1 << PG_referenced |
854 1 << PG_uptodate |
855 1 << PG_lru |
856 1 << PG_active |
857 1 << PG_reclaim))) {
858 printk(KERN_WARNING "fuse: trying to steal weird page\n");
859 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);
860 return 1;
861 }
862 return 0;
863}
864
865static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
866{
867 int err;
868 struct page *oldpage = *pagep;
869 struct page *newpage;
870 struct pipe_buffer *buf = cs->pipebufs;
ce534fb0
MS
871
872 unlock_request(cs->fc, cs->req);
873 fuse_copy_finish(cs);
874
875 err = buf->ops->confirm(cs->pipe, buf);
876 if (err)
877 return err;
878
879 BUG_ON(!cs->nr_segs);
880 cs->currbuf = buf;
881 cs->len = buf->len;
882 cs->pipebufs++;
883 cs->nr_segs--;
884
885 if (cs->len != PAGE_SIZE)
886 goto out_fallback;
887
888 if (buf->ops->steal(cs->pipe, buf) != 0)
889 goto out_fallback;
890
891 newpage = buf->page;
892
aa991b3b
MS
893 if (!PageUptodate(newpage))
894 SetPageUptodate(newpage);
ce534fb0
MS
895
896 ClearPageMappedToDisk(newpage);
897
898 if (fuse_check_page(newpage) != 0)
899 goto out_fallback_unlock;
900
ce534fb0
MS
901 /*
902 * This is a new and locked page, it shouldn't be mapped or
903 * have any special flags on it
904 */
905 if (WARN_ON(page_mapped(oldpage)))
906 goto out_fallback_unlock;
907 if (WARN_ON(page_has_private(oldpage)))
908 goto out_fallback_unlock;
909 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
910 goto out_fallback_unlock;
911 if (WARN_ON(PageMlocked(oldpage)))
912 goto out_fallback_unlock;
913
ef6a3c63 914 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
ce534fb0 915 if (err) {
ef6a3c63
MS
916 unlock_page(newpage);
917 return err;
ce534fb0 918 }
ef6a3c63 919
ce534fb0
MS
920 page_cache_get(newpage);
921
922 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
923 lru_cache_add_file(newpage);
924
925 err = 0;
926 spin_lock(&cs->fc->lock);
927 if (cs->req->aborted)
928 err = -ENOENT;
929 else
930 *pagep = newpage;
931 spin_unlock(&cs->fc->lock);
932
933 if (err) {
934 unlock_page(newpage);
935 page_cache_release(newpage);
936 return err;
937 }
938
939 unlock_page(oldpage);
940 page_cache_release(oldpage);
941 cs->len = 0;
942
943 return 0;
944
945out_fallback_unlock:
946 unlock_page(newpage);
947out_fallback:
c55a01d3
MS
948 cs->pg = buf->page;
949 cs->offset = buf->offset;
ce534fb0
MS
950
951 err = lock_request(cs->fc, cs->req);
952 if (err)
953 return err;
954
955 return 1;
956}
957
c3021629
MS
958static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
959 unsigned offset, unsigned count)
960{
961 struct pipe_buffer *buf;
962
963 if (cs->nr_segs == cs->pipe->buffers)
964 return -EIO;
965
966 unlock_request(cs->fc, cs->req);
967 fuse_copy_finish(cs);
968
969 buf = cs->pipebufs;
970 page_cache_get(page);
971 buf->page = page;
972 buf->offset = offset;
973 buf->len = count;
974
975 cs->pipebufs++;
976 cs->nr_segs++;
977 cs->len = 0;
978
979 return 0;
980}
981
334f485d
MS
982/*
983 * Copy a page in the request to/from the userspace buffer. Must be
984 * done atomically
985 */
ce534fb0 986static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
8bfc016d 987 unsigned offset, unsigned count, int zeroing)
334f485d 988{
ce534fb0
MS
989 int err;
990 struct page *page = *pagep;
991
b6777c40
MS
992 if (page && zeroing && count < PAGE_SIZE)
993 clear_highpage(page);
994
334f485d 995 while (count) {
c3021629
MS
996 if (cs->write && cs->pipebufs && page) {
997 return fuse_ref_page(cs, page, offset, count);
998 } else if (!cs->len) {
ce534fb0
MS
999 if (cs->move_pages && page &&
1000 offset == 0 && count == PAGE_SIZE) {
1001 err = fuse_try_move_page(cs, pagep);
1002 if (err <= 0)
1003 return err;
1004 } else {
1005 err = fuse_copy_fill(cs);
1006 if (err)
1007 return err;
1008 }
1729a16c 1009 }
334f485d 1010 if (page) {
2408f6ef 1011 void *mapaddr = kmap_atomic(page);
334f485d
MS
1012 void *buf = mapaddr + offset;
1013 offset += fuse_copy_do(cs, &buf, &count);
2408f6ef 1014 kunmap_atomic(mapaddr);
334f485d
MS
1015 } else
1016 offset += fuse_copy_do(cs, NULL, &count);
1017 }
1018 if (page && !cs->write)
1019 flush_dcache_page(page);
1020 return 0;
1021}
1022
1023/* Copy pages in the request to/from userspace buffer */
1024static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
1025 int zeroing)
1026{
1027 unsigned i;
1028 struct fuse_req *req = cs->req;
334f485d
MS
1029
1030 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
ce534fb0 1031 int err;
85f40aec
MP
1032 unsigned offset = req->page_descs[i].offset;
1033 unsigned count = min(nbytes, req->page_descs[i].length);
ce534fb0
MS
1034
1035 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1036 zeroing);
334f485d
MS
1037 if (err)
1038 return err;
1039
1040 nbytes -= count;
334f485d
MS
1041 }
1042 return 0;
1043}
1044
1045/* Copy a single argument in the request to/from userspace buffer */
1046static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1047{
1048 while (size) {
1729a16c
MS
1049 if (!cs->len) {
1050 int err = fuse_copy_fill(cs);
1051 if (err)
1052 return err;
1053 }
334f485d
MS
1054 fuse_copy_do(cs, &val, &size);
1055 }
1056 return 0;
1057}
1058
1059/* Copy request arguments to/from userspace buffer */
1060static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1061 unsigned argpages, struct fuse_arg *args,
1062 int zeroing)
1063{
1064 int err = 0;
1065 unsigned i;
1066
1067 for (i = 0; !err && i < numargs; i++) {
1068 struct fuse_arg *arg = &args[i];
1069 if (i == numargs - 1 && argpages)
1070 err = fuse_copy_pages(cs, arg->size, zeroing);
1071 else
1072 err = fuse_copy_one(cs, arg->value, arg->size);
1073 }
1074 return err;
1075}
1076
07e77dca
MS
1077static int forget_pending(struct fuse_conn *fc)
1078{
1079 return fc->forget_list_head.next != NULL;
1080}
1081
a4d27e75
MS
1082static int request_pending(struct fuse_conn *fc)
1083{
07e77dca
MS
1084 return !list_empty(&fc->pending) || !list_empty(&fc->interrupts) ||
1085 forget_pending(fc);
a4d27e75
MS
1086}
1087
334f485d
MS
1088/* Wait until a request is available on the pending list */
1089static void request_wait(struct fuse_conn *fc)
b9ca67b2
MS
1090__releases(fc->lock)
1091__acquires(fc->lock)
334f485d
MS
1092{
1093 DECLARE_WAITQUEUE(wait, current);
1094
1095 add_wait_queue_exclusive(&fc->waitq, &wait);
a4d27e75 1096 while (fc->connected && !request_pending(fc)) {
334f485d
MS
1097 set_current_state(TASK_INTERRUPTIBLE);
1098 if (signal_pending(current))
1099 break;
1100
d7133114 1101 spin_unlock(&fc->lock);
334f485d 1102 schedule();
d7133114 1103 spin_lock(&fc->lock);
334f485d
MS
1104 }
1105 set_current_state(TASK_RUNNING);
1106 remove_wait_queue(&fc->waitq, &wait);
1107}
1108
a4d27e75
MS
1109/*
1110 * Transfer an interrupt request to userspace
1111 *
1112 * Unlike other requests this is assembled on demand, without a need
1113 * to allocate a separate fuse_req structure.
1114 *
1115 * Called with fc->lock held, releases it
1116 */
c3021629
MS
1117static int fuse_read_interrupt(struct fuse_conn *fc, struct fuse_copy_state *cs,
1118 size_t nbytes, struct fuse_req *req)
b9ca67b2 1119__releases(fc->lock)
a4d27e75 1120{
a4d27e75
MS
1121 struct fuse_in_header ih;
1122 struct fuse_interrupt_in arg;
1123 unsigned reqsize = sizeof(ih) + sizeof(arg);
1124 int err;
1125
1126 list_del_init(&req->intr_entry);
1127 req->intr_unique = fuse_get_unique(fc);
1128 memset(&ih, 0, sizeof(ih));
1129 memset(&arg, 0, sizeof(arg));
1130 ih.len = reqsize;
1131 ih.opcode = FUSE_INTERRUPT;
1132 ih.unique = req->intr_unique;
1133 arg.unique = req->in.h.unique;
1134
1135 spin_unlock(&fc->lock);
c3021629 1136 if (nbytes < reqsize)
a4d27e75
MS
1137 return -EINVAL;
1138
c3021629 1139 err = fuse_copy_one(cs, &ih, sizeof(ih));
a4d27e75 1140 if (!err)
c3021629
MS
1141 err = fuse_copy_one(cs, &arg, sizeof(arg));
1142 fuse_copy_finish(cs);
a4d27e75
MS
1143
1144 return err ? err : reqsize;
1145}
1146
02c048b9
MS
1147static struct fuse_forget_link *dequeue_forget(struct fuse_conn *fc,
1148 unsigned max,
1149 unsigned *countp)
07e77dca 1150{
02c048b9
MS
1151 struct fuse_forget_link *head = fc->forget_list_head.next;
1152 struct fuse_forget_link **newhead = &head;
1153 unsigned count;
07e77dca 1154
02c048b9
MS
1155 for (count = 0; *newhead != NULL && count < max; count++)
1156 newhead = &(*newhead)->next;
1157
1158 fc->forget_list_head.next = *newhead;
1159 *newhead = NULL;
07e77dca
MS
1160 if (fc->forget_list_head.next == NULL)
1161 fc->forget_list_tail = &fc->forget_list_head;
1162
02c048b9
MS
1163 if (countp != NULL)
1164 *countp = count;
1165
1166 return head;
07e77dca
MS
1167}
1168
1169static int fuse_read_single_forget(struct fuse_conn *fc,
1170 struct fuse_copy_state *cs,
1171 size_t nbytes)
1172__releases(fc->lock)
1173{
1174 int err;
02c048b9 1175 struct fuse_forget_link *forget = dequeue_forget(fc, 1, NULL);
07e77dca 1176 struct fuse_forget_in arg = {
02c048b9 1177 .nlookup = forget->forget_one.nlookup,
07e77dca
MS
1178 };
1179 struct fuse_in_header ih = {
1180 .opcode = FUSE_FORGET,
02c048b9 1181 .nodeid = forget->forget_one.nodeid,
07e77dca
MS
1182 .unique = fuse_get_unique(fc),
1183 .len = sizeof(ih) + sizeof(arg),
1184 };
1185
1186 spin_unlock(&fc->lock);
1187 kfree(forget);
1188 if (nbytes < ih.len)
1189 return -EINVAL;
1190
1191 err = fuse_copy_one(cs, &ih, sizeof(ih));
1192 if (!err)
1193 err = fuse_copy_one(cs, &arg, sizeof(arg));
1194 fuse_copy_finish(cs);
1195
1196 if (err)
1197 return err;
1198
1199 return ih.len;
1200}
1201
02c048b9
MS
1202static int fuse_read_batch_forget(struct fuse_conn *fc,
1203 struct fuse_copy_state *cs, size_t nbytes)
1204__releases(fc->lock)
1205{
1206 int err;
1207 unsigned max_forgets;
1208 unsigned count;
1209 struct fuse_forget_link *head;
1210 struct fuse_batch_forget_in arg = { .count = 0 };
1211 struct fuse_in_header ih = {
1212 .opcode = FUSE_BATCH_FORGET,
1213 .unique = fuse_get_unique(fc),
1214 .len = sizeof(ih) + sizeof(arg),
1215 };
1216
1217 if (nbytes < ih.len) {
1218 spin_unlock(&fc->lock);
1219 return -EINVAL;
1220 }
1221
1222 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
1223 head = dequeue_forget(fc, max_forgets, &count);
1224 spin_unlock(&fc->lock);
1225
1226 arg.count = count;
1227 ih.len += count * sizeof(struct fuse_forget_one);
1228 err = fuse_copy_one(cs, &ih, sizeof(ih));
1229 if (!err)
1230 err = fuse_copy_one(cs, &arg, sizeof(arg));
1231
1232 while (head) {
1233 struct fuse_forget_link *forget = head;
1234
1235 if (!err) {
1236 err = fuse_copy_one(cs, &forget->forget_one,
1237 sizeof(forget->forget_one));
1238 }
1239 head = forget->next;
1240 kfree(forget);
1241 }
1242
1243 fuse_copy_finish(cs);
1244
1245 if (err)
1246 return err;
1247
1248 return ih.len;
1249}
1250
1251static int fuse_read_forget(struct fuse_conn *fc, struct fuse_copy_state *cs,
1252 size_t nbytes)
1253__releases(fc->lock)
1254{
1255 if (fc->minor < 16 || fc->forget_list_head.next->next == NULL)
1256 return fuse_read_single_forget(fc, cs, nbytes);
1257 else
1258 return fuse_read_batch_forget(fc, cs, nbytes);
1259}
1260
334f485d
MS
1261/*
1262 * Read a single request into the userspace filesystem's buffer. This
1263 * function waits until a request is available, then removes it from
1264 * the pending list and copies request data to userspace buffer. If
f9a2842e
MS
1265 * no reply is needed (FORGET) or request has been aborted or there
1266 * was an error during the copying then it's finished by calling
334f485d
MS
1267 * request_end(). Otherwise add it to the processing list, and set
1268 * the 'sent' flag.
1269 */
c3021629
MS
1270static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1271 struct fuse_copy_state *cs, size_t nbytes)
334f485d
MS
1272{
1273 int err;
334f485d
MS
1274 struct fuse_req *req;
1275 struct fuse_in *in;
334f485d
MS
1276 unsigned reqsize;
1277
1d3d752b 1278 restart:
d7133114 1279 spin_lock(&fc->lock);
e5ac1d1e
JD
1280 err = -EAGAIN;
1281 if ((file->f_flags & O_NONBLOCK) && fc->connected &&
a4d27e75 1282 !request_pending(fc))
e5ac1d1e
JD
1283 goto err_unlock;
1284
334f485d
MS
1285 request_wait(fc);
1286 err = -ENODEV;
9ba7cbba 1287 if (!fc->connected)
334f485d
MS
1288 goto err_unlock;
1289 err = -ERESTARTSYS;
a4d27e75 1290 if (!request_pending(fc))
334f485d
MS
1291 goto err_unlock;
1292
a4d27e75
MS
1293 if (!list_empty(&fc->interrupts)) {
1294 req = list_entry(fc->interrupts.next, struct fuse_req,
1295 intr_entry);
c3021629 1296 return fuse_read_interrupt(fc, cs, nbytes, req);
a4d27e75
MS
1297 }
1298
07e77dca
MS
1299 if (forget_pending(fc)) {
1300 if (list_empty(&fc->pending) || fc->forget_batch-- > 0)
02c048b9 1301 return fuse_read_forget(fc, cs, nbytes);
07e77dca
MS
1302
1303 if (fc->forget_batch <= -8)
1304 fc->forget_batch = 16;
1305 }
1306
334f485d 1307 req = list_entry(fc->pending.next, struct fuse_req, list);
83cfd493 1308 req->state = FUSE_REQ_READING;
d77a1d5b 1309 list_move(&req->list, &fc->io);
334f485d
MS
1310
1311 in = &req->in;
1d3d752b
MS
1312 reqsize = in->h.len;
1313 /* If request is too large, reply with an error and restart the read */
c3021629 1314 if (nbytes < reqsize) {
1d3d752b
MS
1315 req->out.h.error = -EIO;
1316 /* SETXATTR is special, since it may contain too large data */
1317 if (in->h.opcode == FUSE_SETXATTR)
1318 req->out.h.error = -E2BIG;
1319 request_end(fc, req);
1320 goto restart;
334f485d 1321 }
d7133114 1322 spin_unlock(&fc->lock);
c3021629
MS
1323 cs->req = req;
1324 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
1d3d752b 1325 if (!err)
c3021629 1326 err = fuse_copy_args(cs, in->numargs, in->argpages,
1d3d752b 1327 (struct fuse_arg *) in->args, 0);
c3021629 1328 fuse_copy_finish(cs);
d7133114 1329 spin_lock(&fc->lock);
334f485d 1330 req->locked = 0;
c9c9d7df
MS
1331 if (req->aborted) {
1332 request_end(fc, req);
1333 return -ENODEV;
1334 }
334f485d 1335 if (err) {
c9c9d7df 1336 req->out.h.error = -EIO;
334f485d
MS
1337 request_end(fc, req);
1338 return err;
1339 }
1340 if (!req->isreply)
1341 request_end(fc, req);
1342 else {
83cfd493 1343 req->state = FUSE_REQ_SENT;
d77a1d5b 1344 list_move_tail(&req->list, &fc->processing);
a4d27e75
MS
1345 if (req->interrupted)
1346 queue_interrupt(fc, req);
d7133114 1347 spin_unlock(&fc->lock);
334f485d
MS
1348 }
1349 return reqsize;
1350
1351 err_unlock:
d7133114 1352 spin_unlock(&fc->lock);
334f485d
MS
1353 return err;
1354}
1355
94e4fe2c
TVB
1356static int fuse_dev_open(struct inode *inode, struct file *file)
1357{
1358 /*
1359 * The fuse device's file's private_data is used to hold
1360 * the fuse_conn(ection) when it is mounted, and is used to
1361 * keep track of whether the file has been mounted already.
1362 */
1363 file->private_data = NULL;
1364 return 0;
1365}
1366
c3021629
MS
1367static ssize_t fuse_dev_read(struct kiocb *iocb, const struct iovec *iov,
1368 unsigned long nr_segs, loff_t pos)
1369{
1370 struct fuse_copy_state cs;
1371 struct file *file = iocb->ki_filp;
1372 struct fuse_conn *fc = fuse_get_conn(file);
1373 if (!fc)
1374 return -EPERM;
1375
1376 fuse_copy_init(&cs, fc, 1, iov, nr_segs);
1377
1378 return fuse_dev_do_read(fc, file, &cs, iov_length(iov, nr_segs));
1379}
1380
c3021629
MS
1381static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1382 struct pipe_inode_info *pipe,
1383 size_t len, unsigned int flags)
1384{
1385 int ret;
1386 int page_nr = 0;
1387 int do_wakeup = 0;
1388 struct pipe_buffer *bufs;
1389 struct fuse_copy_state cs;
1390 struct fuse_conn *fc = fuse_get_conn(in);
1391 if (!fc)
1392 return -EPERM;
1393
07e77dca 1394 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
c3021629
MS
1395 if (!bufs)
1396 return -ENOMEM;
1397
1398 fuse_copy_init(&cs, fc, 1, NULL, 0);
1399 cs.pipebufs = bufs;
1400 cs.pipe = pipe;
1401 ret = fuse_dev_do_read(fc, in, &cs, len);
1402 if (ret < 0)
1403 goto out;
1404
1405 ret = 0;
1406 pipe_lock(pipe);
1407
1408 if (!pipe->readers) {
1409 send_sig(SIGPIPE, current, 0);
1410 if (!ret)
1411 ret = -EPIPE;
1412 goto out_unlock;
1413 }
1414
1415 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1416 ret = -EIO;
1417 goto out_unlock;
1418 }
1419
1420 while (page_nr < cs.nr_segs) {
1421 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1422 struct pipe_buffer *buf = pipe->bufs + newbuf;
1423
1424 buf->page = bufs[page_nr].page;
1425 buf->offset = bufs[page_nr].offset;
1426 buf->len = bufs[page_nr].len;
28a625cb
MS
1427 /*
1428 * Need to be careful about this. Having buf->ops in module
1429 * code can Oops if the buffer persists after module unload.
1430 */
1431 buf->ops = &nosteal_pipe_buf_ops;
c3021629
MS
1432
1433 pipe->nrbufs++;
1434 page_nr++;
1435 ret += buf->len;
1436
6447a3cf 1437 if (pipe->files)
c3021629
MS
1438 do_wakeup = 1;
1439 }
1440
1441out_unlock:
1442 pipe_unlock(pipe);
1443
1444 if (do_wakeup) {
1445 smp_mb();
1446 if (waitqueue_active(&pipe->wait))
1447 wake_up_interruptible(&pipe->wait);
1448 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1449 }
1450
1451out:
1452 for (; page_nr < cs.nr_segs; page_nr++)
1453 page_cache_release(bufs[page_nr].page);
1454
1455 kfree(bufs);
1456 return ret;
1457}
1458
95668a69
TH
1459static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1460 struct fuse_copy_state *cs)
1461{
1462 struct fuse_notify_poll_wakeup_out outarg;
f6d47a17 1463 int err = -EINVAL;
95668a69
TH
1464
1465 if (size != sizeof(outarg))
f6d47a17 1466 goto err;
95668a69
TH
1467
1468 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1469 if (err)
f6d47a17 1470 goto err;
95668a69 1471
f6d47a17 1472 fuse_copy_finish(cs);
95668a69 1473 return fuse_notify_poll_wakeup(fc, &outarg);
f6d47a17
MS
1474
1475err:
1476 fuse_copy_finish(cs);
1477 return err;
95668a69
TH
1478}
1479
3b463ae0
JM
1480static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1481 struct fuse_copy_state *cs)
1482{
1483 struct fuse_notify_inval_inode_out outarg;
1484 int err = -EINVAL;
1485
1486 if (size != sizeof(outarg))
1487 goto err;
1488
1489 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1490 if (err)
1491 goto err;
1492 fuse_copy_finish(cs);
1493
1494 down_read(&fc->killsb);
1495 err = -ENOENT;
b21dda43
MS
1496 if (fc->sb) {
1497 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1498 outarg.off, outarg.len);
1499 }
3b463ae0
JM
1500 up_read(&fc->killsb);
1501 return err;
1502
1503err:
1504 fuse_copy_finish(cs);
1505 return err;
1506}
1507
1508static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1509 struct fuse_copy_state *cs)
1510{
1511 struct fuse_notify_inval_entry_out outarg;
b2d82ee3
FW
1512 int err = -ENOMEM;
1513 char *buf;
3b463ae0
JM
1514 struct qstr name;
1515
b2d82ee3
FW
1516 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1517 if (!buf)
1518 goto err;
1519
1520 err = -EINVAL;
3b463ae0
JM
1521 if (size < sizeof(outarg))
1522 goto err;
1523
1524 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1525 if (err)
1526 goto err;
1527
1528 err = -ENAMETOOLONG;
1529 if (outarg.namelen > FUSE_NAME_MAX)
1530 goto err;
1531
c2183d1e
MS
1532 err = -EINVAL;
1533 if (size != sizeof(outarg) + outarg.namelen + 1)
1534 goto err;
1535
3b463ae0
JM
1536 name.name = buf;
1537 name.len = outarg.namelen;
1538 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1539 if (err)
1540 goto err;
1541 fuse_copy_finish(cs);
1542 buf[outarg.namelen] = 0;
1543 name.hash = full_name_hash(name.name, name.len);
1544
1545 down_read(&fc->killsb);
1546 err = -ENOENT;
b21dda43 1547 if (fc->sb)
451d0f59
JM
1548 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1549 up_read(&fc->killsb);
1550 kfree(buf);
1551 return err;
1552
1553err:
1554 kfree(buf);
1555 fuse_copy_finish(cs);
1556 return err;
1557}
1558
1559static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1560 struct fuse_copy_state *cs)
1561{
1562 struct fuse_notify_delete_out outarg;
1563 int err = -ENOMEM;
1564 char *buf;
1565 struct qstr name;
1566
1567 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1568 if (!buf)
1569 goto err;
1570
1571 err = -EINVAL;
1572 if (size < sizeof(outarg))
1573 goto err;
1574
1575 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1576 if (err)
1577 goto err;
1578
1579 err = -ENAMETOOLONG;
1580 if (outarg.namelen > FUSE_NAME_MAX)
1581 goto err;
1582
1583 err = -EINVAL;
1584 if (size != sizeof(outarg) + outarg.namelen + 1)
1585 goto err;
1586
1587 name.name = buf;
1588 name.len = outarg.namelen;
1589 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1590 if (err)
1591 goto err;
1592 fuse_copy_finish(cs);
1593 buf[outarg.namelen] = 0;
1594 name.hash = full_name_hash(name.name, name.len);
1595
1596 down_read(&fc->killsb);
1597 err = -ENOENT;
1598 if (fc->sb)
1599 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1600 outarg.child, &name);
3b463ae0 1601 up_read(&fc->killsb);
b2d82ee3 1602 kfree(buf);
3b463ae0
JM
1603 return err;
1604
1605err:
b2d82ee3 1606 kfree(buf);
3b463ae0
JM
1607 fuse_copy_finish(cs);
1608 return err;
1609}
1610
a1d75f25
MS
1611static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1612 struct fuse_copy_state *cs)
1613{
1614 struct fuse_notify_store_out outarg;
1615 struct inode *inode;
1616 struct address_space *mapping;
1617 u64 nodeid;
1618 int err;
1619 pgoff_t index;
1620 unsigned int offset;
1621 unsigned int num;
1622 loff_t file_size;
1623 loff_t end;
1624
1625 err = -EINVAL;
1626 if (size < sizeof(outarg))
1627 goto out_finish;
1628
1629 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1630 if (err)
1631 goto out_finish;
1632
1633 err = -EINVAL;
1634 if (size - sizeof(outarg) != outarg.size)
1635 goto out_finish;
1636
1637 nodeid = outarg.nodeid;
1638
1639 down_read(&fc->killsb);
1640
1641 err = -ENOENT;
1642 if (!fc->sb)
1643 goto out_up_killsb;
1644
1645 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1646 if (!inode)
1647 goto out_up_killsb;
1648
1649 mapping = inode->i_mapping;
1650 index = outarg.offset >> PAGE_CACHE_SHIFT;
1651 offset = outarg.offset & ~PAGE_CACHE_MASK;
1652 file_size = i_size_read(inode);
1653 end = outarg.offset + outarg.size;
1654 if (end > file_size) {
1655 file_size = end;
1656 fuse_write_update_size(inode, file_size);
1657 }
1658
1659 num = outarg.size;
1660 while (num) {
1661 struct page *page;
1662 unsigned int this_num;
1663
1664 err = -ENOMEM;
1665 page = find_or_create_page(mapping, index,
1666 mapping_gfp_mask(mapping));
1667 if (!page)
1668 goto out_iput;
1669
1670 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1671 err = fuse_copy_page(cs, &page, offset, this_num, 0);
063ec1e5
MS
1672 if (!err && offset == 0 &&
1673 (this_num == PAGE_CACHE_SIZE || file_size == end))
a1d75f25
MS
1674 SetPageUptodate(page);
1675 unlock_page(page);
1676 page_cache_release(page);
1677
1678 if (err)
1679 goto out_iput;
1680
1681 num -= this_num;
1682 offset = 0;
1683 index++;
1684 }
1685
1686 err = 0;
1687
1688out_iput:
1689 iput(inode);
1690out_up_killsb:
1691 up_read(&fc->killsb);
1692out_finish:
1693 fuse_copy_finish(cs);
1694 return err;
1695}
1696
2d45ba38
MS
1697static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1698{
b745bc85 1699 release_pages(req->pages, req->num_pages, false);
2d45ba38
MS
1700}
1701
1702static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1703 struct fuse_notify_retrieve_out *outarg)
1704{
1705 int err;
1706 struct address_space *mapping = inode->i_mapping;
1707 struct fuse_req *req;
1708 pgoff_t index;
1709 loff_t file_size;
1710 unsigned int num;
1711 unsigned int offset;
0157443c 1712 size_t total_len = 0;
4d53dc99 1713 int num_pages;
2d45ba38 1714
4d53dc99
MP
1715 offset = outarg->offset & ~PAGE_CACHE_MASK;
1716 file_size = i_size_read(inode);
1717
1718 num = outarg->size;
1719 if (outarg->offset > file_size)
1720 num = 0;
1721 else if (outarg->offset + num > file_size)
1722 num = file_size - outarg->offset;
1723
1724 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1725 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1726
1727 req = fuse_get_req(fc, num_pages);
2d45ba38
MS
1728 if (IS_ERR(req))
1729 return PTR_ERR(req);
1730
2d45ba38
MS
1731 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1732 req->in.h.nodeid = outarg->nodeid;
1733 req->in.numargs = 2;
1734 req->in.argpages = 1;
b2430d75 1735 req->page_descs[0].offset = offset;
2d45ba38
MS
1736 req->end = fuse_retrieve_end;
1737
1738 index = outarg->offset >> PAGE_CACHE_SHIFT;
2d45ba38 1739
4d53dc99 1740 while (num && req->num_pages < num_pages) {
2d45ba38
MS
1741 struct page *page;
1742 unsigned int this_num;
1743
1744 page = find_get_page(mapping, index);
1745 if (!page)
1746 break;
1747
1748 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1749 req->pages[req->num_pages] = page;
85f40aec 1750 req->page_descs[req->num_pages].length = this_num;
2d45ba38
MS
1751 req->num_pages++;
1752
c9e67d48 1753 offset = 0;
2d45ba38
MS
1754 num -= this_num;
1755 total_len += this_num;
48706d0a 1756 index++;
2d45ba38
MS
1757 }
1758 req->misc.retrieve_in.offset = outarg->offset;
1759 req->misc.retrieve_in.size = total_len;
1760 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1761 req->in.args[0].value = &req->misc.retrieve_in;
1762 req->in.args[1].size = total_len;
1763
1764 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1765 if (err)
1766 fuse_retrieve_end(fc, req);
1767
1768 return err;
1769}
1770
1771static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1772 struct fuse_copy_state *cs)
1773{
1774 struct fuse_notify_retrieve_out outarg;
1775 struct inode *inode;
1776 int err;
1777
1778 err = -EINVAL;
1779 if (size != sizeof(outarg))
1780 goto copy_finish;
1781
1782 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1783 if (err)
1784 goto copy_finish;
1785
1786 fuse_copy_finish(cs);
1787
1788 down_read(&fc->killsb);
1789 err = -ENOENT;
1790 if (fc->sb) {
1791 u64 nodeid = outarg.nodeid;
1792
1793 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1794 if (inode) {
1795 err = fuse_retrieve(fc, inode, &outarg);
1796 iput(inode);
1797 }
1798 }
1799 up_read(&fc->killsb);
1800
1801 return err;
1802
1803copy_finish:
1804 fuse_copy_finish(cs);
1805 return err;
1806}
1807
8599396b
TH
1808static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1809 unsigned int size, struct fuse_copy_state *cs)
1810{
0d278362
MS
1811 /* Don't try to move pages (yet) */
1812 cs->move_pages = 0;
1813
8599396b 1814 switch (code) {
95668a69
TH
1815 case FUSE_NOTIFY_POLL:
1816 return fuse_notify_poll(fc, size, cs);
1817
3b463ae0
JM
1818 case FUSE_NOTIFY_INVAL_INODE:
1819 return fuse_notify_inval_inode(fc, size, cs);
1820
1821 case FUSE_NOTIFY_INVAL_ENTRY:
1822 return fuse_notify_inval_entry(fc, size, cs);
1823
a1d75f25
MS
1824 case FUSE_NOTIFY_STORE:
1825 return fuse_notify_store(fc, size, cs);
1826
2d45ba38
MS
1827 case FUSE_NOTIFY_RETRIEVE:
1828 return fuse_notify_retrieve(fc, size, cs);
1829
451d0f59
JM
1830 case FUSE_NOTIFY_DELETE:
1831 return fuse_notify_delete(fc, size, cs);
1832
8599396b 1833 default:
f6d47a17 1834 fuse_copy_finish(cs);
8599396b
TH
1835 return -EINVAL;
1836 }
1837}
1838
334f485d
MS
1839/* Look up request on processing list by unique ID */
1840static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique)
1841{
05726aca 1842 struct fuse_req *req;
334f485d 1843
05726aca 1844 list_for_each_entry(req, &fc->processing, list) {
a4d27e75 1845 if (req->in.h.unique == unique || req->intr_unique == unique)
334f485d
MS
1846 return req;
1847 }
1848 return NULL;
1849}
1850
1851static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1852 unsigned nbytes)
1853{
1854 unsigned reqsize = sizeof(struct fuse_out_header);
1855
1856 if (out->h.error)
1857 return nbytes != reqsize ? -EINVAL : 0;
1858
1859 reqsize += len_args(out->numargs, out->args);
1860
1861 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1862 return -EINVAL;
1863 else if (reqsize > nbytes) {
1864 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1865 unsigned diffsize = reqsize - nbytes;
1866 if (diffsize > lastarg->size)
1867 return -EINVAL;
1868 lastarg->size -= diffsize;
1869 }
1870 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1871 out->page_zeroing);
1872}
1873
1874/*
1875 * Write a single reply to a request. First the header is copied from
1876 * the write buffer. The request is then searched on the processing
1877 * list by the unique ID found in the header. If found, then remove
1878 * it from the list and copy the rest of the buffer to the request.
1879 * The request is finished by calling request_end()
1880 */
dd3bb14f
MS
1881static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1882 struct fuse_copy_state *cs, size_t nbytes)
334f485d
MS
1883{
1884 int err;
334f485d
MS
1885 struct fuse_req *req;
1886 struct fuse_out_header oh;
334f485d 1887
334f485d
MS
1888 if (nbytes < sizeof(struct fuse_out_header))
1889 return -EINVAL;
1890
dd3bb14f 1891 err = fuse_copy_one(cs, &oh, sizeof(oh));
334f485d
MS
1892 if (err)
1893 goto err_finish;
8599396b
TH
1894
1895 err = -EINVAL;
1896 if (oh.len != nbytes)
1897 goto err_finish;
1898
1899 /*
1900 * Zero oh.unique indicates unsolicited notification message
1901 * and error contains notification code.
1902 */
1903 if (!oh.unique) {
dd3bb14f 1904 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
8599396b
TH
1905 return err ? err : nbytes;
1906 }
1907
334f485d 1908 err = -EINVAL;
8599396b 1909 if (oh.error <= -1000 || oh.error > 0)
334f485d
MS
1910 goto err_finish;
1911
d7133114 1912 spin_lock(&fc->lock);
69a53bf2
MS
1913 err = -ENOENT;
1914 if (!fc->connected)
1915 goto err_unlock;
1916
334f485d 1917 req = request_find(fc, oh.unique);
334f485d
MS
1918 if (!req)
1919 goto err_unlock;
1920
f9a2842e 1921 if (req->aborted) {
d7133114 1922 spin_unlock(&fc->lock);
dd3bb14f 1923 fuse_copy_finish(cs);
d7133114 1924 spin_lock(&fc->lock);
222f1d69 1925 request_end(fc, req);
334f485d
MS
1926 return -ENOENT;
1927 }
a4d27e75
MS
1928 /* Is it an interrupt reply? */
1929 if (req->intr_unique == oh.unique) {
1930 err = -EINVAL;
1931 if (nbytes != sizeof(struct fuse_out_header))
1932 goto err_unlock;
1933
1934 if (oh.error == -ENOSYS)
1935 fc->no_interrupt = 1;
1936 else if (oh.error == -EAGAIN)
1937 queue_interrupt(fc, req);
1938
1939 spin_unlock(&fc->lock);
dd3bb14f 1940 fuse_copy_finish(cs);
a4d27e75
MS
1941 return nbytes;
1942 }
1943
1944 req->state = FUSE_REQ_WRITING;
d77a1d5b 1945 list_move(&req->list, &fc->io);
334f485d
MS
1946 req->out.h = oh;
1947 req->locked = 1;
dd3bb14f 1948 cs->req = req;
ce534fb0
MS
1949 if (!req->out.page_replace)
1950 cs->move_pages = 0;
d7133114 1951 spin_unlock(&fc->lock);
334f485d 1952
dd3bb14f
MS
1953 err = copy_out_args(cs, &req->out, nbytes);
1954 fuse_copy_finish(cs);
334f485d 1955
d7133114 1956 spin_lock(&fc->lock);
334f485d
MS
1957 req->locked = 0;
1958 if (!err) {
f9a2842e 1959 if (req->aborted)
334f485d 1960 err = -ENOENT;
f9a2842e 1961 } else if (!req->aborted)
334f485d
MS
1962 req->out.h.error = -EIO;
1963 request_end(fc, req);
1964
1965 return err ? err : nbytes;
1966
1967 err_unlock:
d7133114 1968 spin_unlock(&fc->lock);
334f485d 1969 err_finish:
dd3bb14f 1970 fuse_copy_finish(cs);
334f485d
MS
1971 return err;
1972}
1973
dd3bb14f
MS
1974static ssize_t fuse_dev_write(struct kiocb *iocb, const struct iovec *iov,
1975 unsigned long nr_segs, loff_t pos)
1976{
1977 struct fuse_copy_state cs;
1978 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1979 if (!fc)
1980 return -EPERM;
1981
c3021629 1982 fuse_copy_init(&cs, fc, 0, iov, nr_segs);
dd3bb14f
MS
1983
1984 return fuse_dev_do_write(fc, &cs, iov_length(iov, nr_segs));
1985}
1986
1987static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1988 struct file *out, loff_t *ppos,
1989 size_t len, unsigned int flags)
1990{
1991 unsigned nbuf;
1992 unsigned idx;
1993 struct pipe_buffer *bufs;
1994 struct fuse_copy_state cs;
1995 struct fuse_conn *fc;
1996 size_t rem;
1997 ssize_t ret;
1998
1999 fc = fuse_get_conn(out);
2000 if (!fc)
2001 return -EPERM;
2002
07e77dca 2003 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
dd3bb14f
MS
2004 if (!bufs)
2005 return -ENOMEM;
2006
2007 pipe_lock(pipe);
2008 nbuf = 0;
2009 rem = 0;
2010 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
2011 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
2012
2013 ret = -EINVAL;
2014 if (rem < len) {
2015 pipe_unlock(pipe);
2016 goto out;
2017 }
2018
2019 rem = len;
2020 while (rem) {
2021 struct pipe_buffer *ibuf;
2022 struct pipe_buffer *obuf;
2023
2024 BUG_ON(nbuf >= pipe->buffers);
2025 BUG_ON(!pipe->nrbufs);
2026 ibuf = &pipe->bufs[pipe->curbuf];
2027 obuf = &bufs[nbuf];
2028
2029 if (rem >= ibuf->len) {
2030 *obuf = *ibuf;
2031 ibuf->ops = NULL;
2032 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
2033 pipe->nrbufs--;
2034 } else {
2035 ibuf->ops->get(pipe, ibuf);
2036 *obuf = *ibuf;
2037 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
2038 obuf->len = rem;
2039 ibuf->offset += obuf->len;
2040 ibuf->len -= obuf->len;
2041 }
2042 nbuf++;
2043 rem -= obuf->len;
2044 }
2045 pipe_unlock(pipe);
2046
c3021629 2047 fuse_copy_init(&cs, fc, 0, NULL, nbuf);
dd3bb14f 2048 cs.pipebufs = bufs;
dd3bb14f
MS
2049 cs.pipe = pipe;
2050
ce534fb0
MS
2051 if (flags & SPLICE_F_MOVE)
2052 cs.move_pages = 1;
2053
dd3bb14f
MS
2054 ret = fuse_dev_do_write(fc, &cs, len);
2055
2056 for (idx = 0; idx < nbuf; idx++) {
2057 struct pipe_buffer *buf = &bufs[idx];
2058 buf->ops->release(pipe, buf);
2059 }
2060out:
2061 kfree(bufs);
2062 return ret;
2063}
2064
334f485d
MS
2065static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
2066{
334f485d 2067 unsigned mask = POLLOUT | POLLWRNORM;
7025d9ad 2068 struct fuse_conn *fc = fuse_get_conn(file);
334f485d 2069 if (!fc)
7025d9ad 2070 return POLLERR;
334f485d
MS
2071
2072 poll_wait(file, &fc->waitq, wait);
2073
d7133114 2074 spin_lock(&fc->lock);
7025d9ad
MS
2075 if (!fc->connected)
2076 mask = POLLERR;
a4d27e75 2077 else if (request_pending(fc))
7025d9ad 2078 mask |= POLLIN | POLLRDNORM;
d7133114 2079 spin_unlock(&fc->lock);
334f485d
MS
2080
2081 return mask;
2082}
2083
69a53bf2
MS
2084/*
2085 * Abort all requests on the given list (pending or processing)
2086 *
d7133114 2087 * This function releases and reacquires fc->lock
69a53bf2 2088 */
334f485d 2089static void end_requests(struct fuse_conn *fc, struct list_head *head)
b9ca67b2
MS
2090__releases(fc->lock)
2091__acquires(fc->lock)
334f485d
MS
2092{
2093 while (!list_empty(head)) {
2094 struct fuse_req *req;
2095 req = list_entry(head->next, struct fuse_req, list);
334f485d
MS
2096 req->out.h.error = -ECONNABORTED;
2097 request_end(fc, req);
d7133114 2098 spin_lock(&fc->lock);
334f485d
MS
2099 }
2100}
2101
69a53bf2
MS
2102/*
2103 * Abort requests under I/O
2104 *
f9a2842e 2105 * The requests are set to aborted and finished, and the request
69a53bf2
MS
2106 * waiter is woken up. This will make request_wait_answer() wait
2107 * until the request is unlocked and then return.
64c6d8ed
MS
2108 *
2109 * If the request is asynchronous, then the end function needs to be
2110 * called after waiting for the request to be unlocked (if it was
2111 * locked).
69a53bf2
MS
2112 */
2113static void end_io_requests(struct fuse_conn *fc)
b9ca67b2
MS
2114__releases(fc->lock)
2115__acquires(fc->lock)
69a53bf2
MS
2116{
2117 while (!list_empty(&fc->io)) {
64c6d8ed
MS
2118 struct fuse_req *req =
2119 list_entry(fc->io.next, struct fuse_req, list);
2120 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
2121
f9a2842e 2122 req->aborted = 1;
69a53bf2
MS
2123 req->out.h.error = -ECONNABORTED;
2124 req->state = FUSE_REQ_FINISHED;
2125 list_del_init(&req->list);
2126 wake_up(&req->waitq);
64c6d8ed
MS
2127 if (end) {
2128 req->end = NULL;
64c6d8ed 2129 __fuse_get_request(req);
d7133114 2130 spin_unlock(&fc->lock);
64c6d8ed
MS
2131 wait_event(req->waitq, !req->locked);
2132 end(fc, req);
e9bb09dd 2133 fuse_put_request(fc, req);
d7133114 2134 spin_lock(&fc->lock);
64c6d8ed 2135 }
69a53bf2
MS
2136 }
2137}
2138
595afaf9 2139static void end_queued_requests(struct fuse_conn *fc)
b9ca67b2
MS
2140__releases(fc->lock)
2141__acquires(fc->lock)
595afaf9
MS
2142{
2143 fc->max_background = UINT_MAX;
2144 flush_bg_queue(fc);
2145 end_requests(fc, &fc->pending);
2146 end_requests(fc, &fc->processing);
07e77dca 2147 while (forget_pending(fc))
02c048b9 2148 kfree(dequeue_forget(fc, 1, NULL));
595afaf9
MS
2149}
2150
357ccf2b
BG
2151static void end_polls(struct fuse_conn *fc)
2152{
2153 struct rb_node *p;
2154
2155 p = rb_first(&fc->polled_files);
2156
2157 while (p) {
2158 struct fuse_file *ff;
2159 ff = rb_entry(p, struct fuse_file, polled_node);
2160 wake_up_interruptible_all(&ff->poll_wait);
2161
2162 p = rb_next(p);
2163 }
2164}
2165
69a53bf2
MS
2166/*
2167 * Abort all requests.
2168 *
2169 * Emergency exit in case of a malicious or accidental deadlock, or
2170 * just a hung filesystem.
2171 *
2172 * The same effect is usually achievable through killing the
2173 * filesystem daemon and all users of the filesystem. The exception
2174 * is the combination of an asynchronous request and the tricky
2175 * deadlock (see Documentation/filesystems/fuse.txt).
2176 *
2177 * During the aborting, progression of requests from the pending and
2178 * processing lists onto the io list, and progression of new requests
2179 * onto the pending list is prevented by req->connected being false.
2180 *
2181 * Progression of requests under I/O to the processing list is
f9a2842e
MS
2182 * prevented by the req->aborted flag being true for these requests.
2183 * For this reason requests on the io list must be aborted first.
69a53bf2
MS
2184 */
2185void fuse_abort_conn(struct fuse_conn *fc)
2186{
d7133114 2187 spin_lock(&fc->lock);
69a53bf2
MS
2188 if (fc->connected) {
2189 fc->connected = 0;
51eb01e7 2190 fc->blocked = 0;
9759bd51 2191 fuse_set_initialized(fc);
69a53bf2 2192 end_io_requests(fc);
595afaf9 2193 end_queued_requests(fc);
357ccf2b 2194 end_polls(fc);
69a53bf2 2195 wake_up_all(&fc->waitq);
51eb01e7 2196 wake_up_all(&fc->blocked_waitq);
385a17bf 2197 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
69a53bf2 2198 }
d7133114 2199 spin_unlock(&fc->lock);
69a53bf2 2200}
08cbf542 2201EXPORT_SYMBOL_GPL(fuse_abort_conn);
69a53bf2 2202
08cbf542 2203int fuse_dev_release(struct inode *inode, struct file *file)
334f485d 2204{
0720b315 2205 struct fuse_conn *fc = fuse_get_conn(file);
334f485d 2206 if (fc) {
d7133114 2207 spin_lock(&fc->lock);
1e9a4ed9 2208 fc->connected = 0;
595afaf9 2209 fc->blocked = 0;
9759bd51 2210 fuse_set_initialized(fc);
595afaf9 2211 end_queued_requests(fc);
357ccf2b 2212 end_polls(fc);
595afaf9 2213 wake_up_all(&fc->blocked_waitq);
d7133114 2214 spin_unlock(&fc->lock);
bafa9654 2215 fuse_conn_put(fc);
385a17bf 2216 }
f543f253 2217
334f485d
MS
2218 return 0;
2219}
08cbf542 2220EXPORT_SYMBOL_GPL(fuse_dev_release);
334f485d 2221
385a17bf
JD
2222static int fuse_dev_fasync(int fd, struct file *file, int on)
2223{
2224 struct fuse_conn *fc = fuse_get_conn(file);
2225 if (!fc)
a87046d8 2226 return -EPERM;
385a17bf
JD
2227
2228 /* No locking - fasync_helper does its own locking */
2229 return fasync_helper(fd, file, on, &fc->fasync);
2230}
2231
4b6f5d20 2232const struct file_operations fuse_dev_operations = {
334f485d 2233 .owner = THIS_MODULE,
94e4fe2c 2234 .open = fuse_dev_open,
334f485d 2235 .llseek = no_llseek,
ee0b3e67
BP
2236 .read = do_sync_read,
2237 .aio_read = fuse_dev_read,
c3021629 2238 .splice_read = fuse_dev_splice_read,
ee0b3e67
BP
2239 .write = do_sync_write,
2240 .aio_write = fuse_dev_write,
dd3bb14f 2241 .splice_write = fuse_dev_splice_write,
334f485d
MS
2242 .poll = fuse_dev_poll,
2243 .release = fuse_dev_release,
385a17bf 2244 .fasync = fuse_dev_fasync,
334f485d 2245};
08cbf542 2246EXPORT_SYMBOL_GPL(fuse_dev_operations);
334f485d
MS
2247
2248static struct miscdevice fuse_miscdevice = {
2249 .minor = FUSE_MINOR,
2250 .name = "fuse",
2251 .fops = &fuse_dev_operations,
2252};
2253
2254int __init fuse_dev_init(void)
2255{
2256 int err = -ENOMEM;
2257 fuse_req_cachep = kmem_cache_create("fuse_request",
2258 sizeof(struct fuse_req),
20c2df83 2259 0, 0, NULL);
334f485d
MS
2260 if (!fuse_req_cachep)
2261 goto out;
2262
2263 err = misc_register(&fuse_miscdevice);
2264 if (err)
2265 goto out_cache_clean;
2266
2267 return 0;
2268
2269 out_cache_clean:
2270 kmem_cache_destroy(fuse_req_cachep);
2271 out:
2272 return err;
2273}
2274
2275void fuse_dev_cleanup(void)
2276{
2277 misc_deregister(&fuse_miscdevice);
2278 kmem_cache_destroy(fuse_req_cachep);
2279}
This page took 1.175513 seconds and 5 git commands to generate.