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