2 FUSE: Filesystem in Userspace
5 This program can be distributed under the terms of the GNU GPL.
11 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/poll.h>
14 #include <linux/sched/signal.h>
15 #include <linux/uio.h>
16 #include <linux/miscdevice.h>
17 #include <linux/pagemap.h>
18 #include <linux/file.h>
19 #include <linux/slab.h>
20 #include <linux/pipe_fs_i.h>
21 #include <linux/swap.h>
22 #include <linux/splice.h>
23 #include <linux/sched.h>
25 MODULE_ALIAS_MISCDEV(FUSE_MINOR);
26 MODULE_ALIAS("devname:fuse");
28 static struct kmem_cache *fuse_req_cachep;
30 static struct fuse_dev *fuse_get_dev(struct file *file)
33 * Lockless access is OK, because file->private data is set
34 * once during mount and is valid until the file is released.
36 return READ_ONCE(file->private_data);
39 static void fuse_request_init(struct fuse_req *req, struct page **pages,
40 struct fuse_page_desc *page_descs,
43 memset(req, 0, sizeof(*req));
44 memset(pages, 0, sizeof(*pages) * npages);
45 memset(page_descs, 0, sizeof(*page_descs) * npages);
46 INIT_LIST_HEAD(&req->list);
47 INIT_LIST_HEAD(&req->intr_entry);
48 init_waitqueue_head(&req->waitq);
49 refcount_set(&req->count, 1);
51 req->page_descs = page_descs;
52 req->max_pages = npages;
53 __set_bit(FR_PENDING, &req->flags);
56 static struct fuse_req *__fuse_request_alloc(unsigned npages, gfp_t flags)
58 struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, flags);
61 struct fuse_page_desc *page_descs;
63 if (npages <= FUSE_REQ_INLINE_PAGES) {
64 pages = req->inline_pages;
65 page_descs = req->inline_page_descs;
67 pages = kmalloc_array(npages, sizeof(struct page *),
71 sizeof(struct fuse_page_desc),
75 if (!pages || !page_descs) {
78 kmem_cache_free(fuse_req_cachep, req);
82 fuse_request_init(req, pages, page_descs, npages);
87 struct fuse_req *fuse_request_alloc(unsigned npages)
89 return __fuse_request_alloc(npages, GFP_KERNEL);
91 EXPORT_SYMBOL_GPL(fuse_request_alloc);
93 struct fuse_req *fuse_request_alloc_nofs(unsigned npages)
95 return __fuse_request_alloc(npages, GFP_NOFS);
98 void fuse_request_free(struct fuse_req *req)
100 if (req->pages != req->inline_pages) {
102 kfree(req->page_descs);
104 kmem_cache_free(fuse_req_cachep, req);
107 void __fuse_get_request(struct fuse_req *req)
109 refcount_inc(&req->count);
112 /* Must be called with > 1 refcount */
113 static void __fuse_put_request(struct fuse_req *req)
115 refcount_dec(&req->count);
118 void fuse_set_initialized(struct fuse_conn *fc)
120 /* Make sure stores before this are seen on another CPU */
125 static bool fuse_block_alloc(struct fuse_conn *fc, bool for_background)
127 return !fc->initialized || (for_background && fc->blocked);
130 static struct fuse_req *__fuse_get_req(struct fuse_conn *fc, unsigned npages,
133 struct fuse_req *req;
135 atomic_inc(&fc->num_waiting);
137 if (fuse_block_alloc(fc, for_background)) {
139 if (wait_event_killable_exclusive(fc->blocked_waitq,
140 !fuse_block_alloc(fc, for_background)))
143 /* Matches smp_wmb() in fuse_set_initialized() */
154 req = fuse_request_alloc(npages);
158 wake_up(&fc->blocked_waitq);
162 req->in.h.uid = from_kuid(fc->user_ns, current_fsuid());
163 req->in.h.gid = from_kgid(fc->user_ns, current_fsgid());
164 req->in.h.pid = pid_nr_ns(task_pid(current), fc->pid_ns);
166 __set_bit(FR_WAITING, &req->flags);
168 __set_bit(FR_BACKGROUND, &req->flags);
170 if (unlikely(req->in.h.uid == ((uid_t)-1) ||
171 req->in.h.gid == ((gid_t)-1))) {
172 fuse_put_request(fc, req);
173 return ERR_PTR(-EOVERFLOW);
178 atomic_dec(&fc->num_waiting);
182 struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages)
184 return __fuse_get_req(fc, npages, false);
186 EXPORT_SYMBOL_GPL(fuse_get_req);
188 struct fuse_req *fuse_get_req_for_background(struct fuse_conn *fc,
191 return __fuse_get_req(fc, npages, true);
193 EXPORT_SYMBOL_GPL(fuse_get_req_for_background);
196 * Return request in fuse_file->reserved_req. However that may
197 * currently be in use. If that is the case, wait for it to become
200 static struct fuse_req *get_reserved_req(struct fuse_conn *fc,
203 struct fuse_req *req = NULL;
204 struct fuse_file *ff = file->private_data;
207 wait_event(fc->reserved_req_waitq, ff->reserved_req);
208 spin_lock(&fc->lock);
209 if (ff->reserved_req) {
210 req = ff->reserved_req;
211 ff->reserved_req = NULL;
212 req->stolen_file = get_file(file);
214 spin_unlock(&fc->lock);
221 * Put stolen request back into fuse_file->reserved_req
223 static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req)
225 struct file *file = req->stolen_file;
226 struct fuse_file *ff = file->private_data;
228 spin_lock(&fc->lock);
229 fuse_request_init(req, req->pages, req->page_descs, req->max_pages);
230 BUG_ON(ff->reserved_req);
231 ff->reserved_req = req;
232 wake_up_all(&fc->reserved_req_waitq);
233 spin_unlock(&fc->lock);
238 * Gets a requests for a file operation, always succeeds
240 * This is used for sending the FLUSH request, which must get to
241 * userspace, due to POSIX locks which may need to be unlocked.
243 * If allocation fails due to OOM, use the reserved request in
246 * This is very unlikely to deadlock accidentally, since the
247 * filesystem should not have it's own file open. If deadlock is
248 * intentional, it can still be broken by "aborting" the filesystem.
250 struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc,
253 struct fuse_req *req;
255 atomic_inc(&fc->num_waiting);
256 wait_event(fc->blocked_waitq, fc->initialized);
257 /* Matches smp_wmb() in fuse_set_initialized() */
259 req = fuse_request_alloc(0);
261 req = get_reserved_req(fc, file);
263 req->in.h.uid = from_kuid_munged(fc->user_ns, current_fsuid());
264 req->in.h.gid = from_kgid_munged(fc->user_ns, current_fsgid());
265 req->in.h.pid = pid_nr_ns(task_pid(current), fc->pid_ns);
267 __set_bit(FR_WAITING, &req->flags);
268 __clear_bit(FR_BACKGROUND, &req->flags);
272 void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req)
274 if (refcount_dec_and_test(&req->count)) {
275 if (test_bit(FR_BACKGROUND, &req->flags)) {
277 * We get here in the unlikely case that a background
278 * request was allocated but not sent
280 spin_lock(&fc->lock);
282 wake_up(&fc->blocked_waitq);
283 spin_unlock(&fc->lock);
286 if (test_bit(FR_WAITING, &req->flags)) {
287 __clear_bit(FR_WAITING, &req->flags);
288 atomic_dec(&fc->num_waiting);
291 if (req->stolen_file)
292 put_reserved_req(fc, req);
294 fuse_request_free(req);
297 EXPORT_SYMBOL_GPL(fuse_put_request);
299 static unsigned len_args(unsigned numargs, struct fuse_arg *args)
304 for (i = 0; i < numargs; i++)
305 nbytes += args[i].size;
310 static u64 fuse_get_unique(struct fuse_iqueue *fiq)
312 return ++fiq->reqctr;
315 static void queue_request(struct fuse_iqueue *fiq, struct fuse_req *req)
317 req->in.h.len = sizeof(struct fuse_in_header) +
318 len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
319 list_add_tail(&req->list, &fiq->pending);
320 wake_up_locked(&fiq->waitq);
321 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
324 void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
325 u64 nodeid, u64 nlookup)
327 struct fuse_iqueue *fiq = &fc->iq;
329 forget->forget_one.nodeid = nodeid;
330 forget->forget_one.nlookup = nlookup;
332 spin_lock(&fiq->waitq.lock);
333 if (fiq->connected) {
334 fiq->forget_list_tail->next = forget;
335 fiq->forget_list_tail = forget;
336 wake_up_locked(&fiq->waitq);
337 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
341 spin_unlock(&fiq->waitq.lock);
344 static void flush_bg_queue(struct fuse_conn *fc)
346 while (fc->active_background < fc->max_background &&
347 !list_empty(&fc->bg_queue)) {
348 struct fuse_req *req;
349 struct fuse_iqueue *fiq = &fc->iq;
351 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
352 list_del(&req->list);
353 fc->active_background++;
354 spin_lock(&fiq->waitq.lock);
355 req->in.h.unique = fuse_get_unique(fiq);
356 queue_request(fiq, req);
357 spin_unlock(&fiq->waitq.lock);
362 * This function is called when a request is finished. Either a reply
363 * has arrived or it was aborted (and not yet sent) or some error
364 * occurred during communication with userspace, or the device file
365 * was closed. The requester thread is woken up (if still waiting),
366 * the 'end' callback is called if given, else the reference to the
367 * request is released
369 static void request_end(struct fuse_conn *fc, struct fuse_req *req)
371 struct fuse_iqueue *fiq = &fc->iq;
373 if (test_and_set_bit(FR_FINISHED, &req->flags))
376 spin_lock(&fiq->waitq.lock);
377 list_del_init(&req->intr_entry);
378 spin_unlock(&fiq->waitq.lock);
379 WARN_ON(test_bit(FR_PENDING, &req->flags));
380 WARN_ON(test_bit(FR_SENT, &req->flags));
381 if (test_bit(FR_BACKGROUND, &req->flags)) {
382 spin_lock(&fc->lock);
383 clear_bit(FR_BACKGROUND, &req->flags);
384 if (fc->num_background == fc->max_background)
387 /* Wake up next waiter, if any */
388 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
389 wake_up(&fc->blocked_waitq);
391 if (fc->num_background == fc->congestion_threshold && fc->sb) {
392 clear_bdi_congested(fc->sb->s_bdi, BLK_RW_SYNC);
393 clear_bdi_congested(fc->sb->s_bdi, BLK_RW_ASYNC);
395 fc->num_background--;
396 fc->active_background--;
398 spin_unlock(&fc->lock);
400 wake_up(&req->waitq);
403 fuse_put_request(fc, req);
406 static void queue_interrupt(struct fuse_iqueue *fiq, struct fuse_req *req)
408 spin_lock(&fiq->waitq.lock);
409 if (test_bit(FR_FINISHED, &req->flags)) {
410 spin_unlock(&fiq->waitq.lock);
413 if (list_empty(&req->intr_entry)) {
414 list_add_tail(&req->intr_entry, &fiq->interrupts);
415 wake_up_locked(&fiq->waitq);
417 spin_unlock(&fiq->waitq.lock);
418 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
421 static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
423 struct fuse_iqueue *fiq = &fc->iq;
426 if (!fc->no_interrupt) {
427 /* Any signal may interrupt this */
428 err = wait_event_interruptible(req->waitq,
429 test_bit(FR_FINISHED, &req->flags));
433 set_bit(FR_INTERRUPTED, &req->flags);
434 /* matches barrier in fuse_dev_do_read() */
435 smp_mb__after_atomic();
436 if (test_bit(FR_SENT, &req->flags))
437 queue_interrupt(fiq, req);
440 if (!test_bit(FR_FORCE, &req->flags)) {
441 /* Only fatal signals may interrupt this */
442 err = wait_event_killable(req->waitq,
443 test_bit(FR_FINISHED, &req->flags));
447 spin_lock(&fiq->waitq.lock);
448 /* Request is not yet in userspace, bail out */
449 if (test_bit(FR_PENDING, &req->flags)) {
450 list_del(&req->list);
451 spin_unlock(&fiq->waitq.lock);
452 __fuse_put_request(req);
453 req->out.h.error = -EINTR;
456 spin_unlock(&fiq->waitq.lock);
460 * Either request is already in userspace, or it was forced.
463 wait_event(req->waitq, test_bit(FR_FINISHED, &req->flags));
466 static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
468 struct fuse_iqueue *fiq = &fc->iq;
470 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
471 spin_lock(&fiq->waitq.lock);
472 if (!fiq->connected) {
473 spin_unlock(&fiq->waitq.lock);
474 req->out.h.error = -ENOTCONN;
476 req->in.h.unique = fuse_get_unique(fiq);
477 queue_request(fiq, req);
478 /* acquire extra reference, since request is still needed
479 after request_end() */
480 __fuse_get_request(req);
481 spin_unlock(&fiq->waitq.lock);
483 request_wait_answer(fc, req);
484 /* Pairs with smp_wmb() in request_end() */
489 void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
491 __set_bit(FR_ISREPLY, &req->flags);
492 if (!test_bit(FR_WAITING, &req->flags)) {
493 __set_bit(FR_WAITING, &req->flags);
494 atomic_inc(&fc->num_waiting);
496 __fuse_request_send(fc, req);
498 EXPORT_SYMBOL_GPL(fuse_request_send);
500 static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
502 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
503 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
506 switch (args->in.h.opcode) {
513 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
517 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
521 if (fc->minor < 12) {
522 switch (args->in.h.opcode) {
524 args->in.args[0].size = sizeof(struct fuse_open_in);
527 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
533 ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
535 struct fuse_req *req;
538 req = fuse_get_req(fc, 0);
542 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
543 fuse_adjust_compat(fc, args);
545 req->in.h.opcode = args->in.h.opcode;
546 req->in.h.nodeid = args->in.h.nodeid;
547 req->in.numargs = args->in.numargs;
548 memcpy(req->in.args, args->in.args,
549 args->in.numargs * sizeof(struct fuse_in_arg));
550 req->out.argvar = args->out.argvar;
551 req->out.numargs = args->out.numargs;
552 memcpy(req->out.args, args->out.args,
553 args->out.numargs * sizeof(struct fuse_arg));
554 fuse_request_send(fc, req);
555 ret = req->out.h.error;
556 if (!ret && args->out.argvar) {
557 BUG_ON(args->out.numargs != 1);
558 ret = req->out.args[0].size;
560 fuse_put_request(fc, req);
566 * Called under fc->lock
568 * fc->connected must have been checked previously
570 void fuse_request_send_background_locked(struct fuse_conn *fc,
571 struct fuse_req *req)
573 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
574 if (!test_bit(FR_WAITING, &req->flags)) {
575 __set_bit(FR_WAITING, &req->flags);
576 atomic_inc(&fc->num_waiting);
578 __set_bit(FR_ISREPLY, &req->flags);
579 fc->num_background++;
580 if (fc->num_background == fc->max_background)
582 if (fc->num_background == fc->congestion_threshold && fc->sb) {
583 set_bdi_congested(fc->sb->s_bdi, BLK_RW_SYNC);
584 set_bdi_congested(fc->sb->s_bdi, BLK_RW_ASYNC);
586 list_add_tail(&req->list, &fc->bg_queue);
590 void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
593 spin_lock(&fc->lock);
595 fuse_request_send_background_locked(fc, req);
596 spin_unlock(&fc->lock);
598 spin_unlock(&fc->lock);
599 req->out.h.error = -ENOTCONN;
601 fuse_put_request(fc, req);
604 EXPORT_SYMBOL_GPL(fuse_request_send_background);
606 static int fuse_request_send_notify_reply(struct fuse_conn *fc,
607 struct fuse_req *req, u64 unique)
610 struct fuse_iqueue *fiq = &fc->iq;
612 __clear_bit(FR_ISREPLY, &req->flags);
613 req->in.h.unique = unique;
614 spin_lock(&fiq->waitq.lock);
615 if (fiq->connected) {
616 queue_request(fiq, req);
619 spin_unlock(&fiq->waitq.lock);
624 void fuse_force_forget(struct file *file, u64 nodeid)
626 struct inode *inode = file_inode(file);
627 struct fuse_conn *fc = get_fuse_conn(inode);
628 struct fuse_req *req;
629 struct fuse_forget_in inarg;
631 memset(&inarg, 0, sizeof(inarg));
633 req = fuse_get_req_nofail_nopages(fc, file);
634 req->in.h.opcode = FUSE_FORGET;
635 req->in.h.nodeid = nodeid;
637 req->in.args[0].size = sizeof(inarg);
638 req->in.args[0].value = &inarg;
639 __clear_bit(FR_ISREPLY, &req->flags);
640 __fuse_request_send(fc, req);
642 fuse_put_request(fc, req);
646 * Lock the request. Up to the next unlock_request() there mustn't be
647 * anything that could cause a page-fault. If the request was already
650 static int lock_request(struct fuse_req *req)
654 spin_lock(&req->waitq.lock);
655 if (test_bit(FR_ABORTED, &req->flags))
658 set_bit(FR_LOCKED, &req->flags);
659 spin_unlock(&req->waitq.lock);
665 * Unlock request. If it was aborted while locked, caller is responsible
666 * for unlocking and ending the request.
668 static int unlock_request(struct fuse_req *req)
672 spin_lock(&req->waitq.lock);
673 if (test_bit(FR_ABORTED, &req->flags))
676 clear_bit(FR_LOCKED, &req->flags);
677 spin_unlock(&req->waitq.lock);
682 struct fuse_copy_state {
684 struct fuse_req *req;
685 struct iov_iter *iter;
686 struct pipe_buffer *pipebufs;
687 struct pipe_buffer *currbuf;
688 struct pipe_inode_info *pipe;
689 unsigned long nr_segs;
693 unsigned move_pages:1;
696 static void fuse_copy_init(struct fuse_copy_state *cs, int write,
697 struct iov_iter *iter)
699 memset(cs, 0, sizeof(*cs));
704 /* Unmap and put previous page of userspace buffer */
705 static void fuse_copy_finish(struct fuse_copy_state *cs)
708 struct pipe_buffer *buf = cs->currbuf;
711 buf->len = PAGE_SIZE - cs->len;
715 flush_dcache_page(cs->pg);
716 set_page_dirty_lock(cs->pg);
724 * Get another pagefull of userspace buffer, and map it to kernel
725 * address space, and lock request
727 static int fuse_copy_fill(struct fuse_copy_state *cs)
732 err = unlock_request(cs->req);
736 fuse_copy_finish(cs);
738 struct pipe_buffer *buf = cs->pipebufs;
741 err = pipe_buf_confirm(cs->pipe, buf);
745 BUG_ON(!cs->nr_segs);
748 cs->offset = buf->offset;
753 if (cs->nr_segs == cs->pipe->buffers)
756 page = alloc_page(GFP_HIGHUSER);
773 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
780 iov_iter_advance(cs->iter, err);
783 return lock_request(cs->req);
786 /* Do as much copy to/from userspace buffer as we can */
787 static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
789 unsigned ncpy = min(*size, cs->len);
791 void *pgaddr = kmap_atomic(cs->pg);
792 void *buf = pgaddr + cs->offset;
795 memcpy(buf, *val, ncpy);
797 memcpy(*val, buf, ncpy);
799 kunmap_atomic(pgaddr);
808 static int fuse_check_page(struct page *page)
810 if (page_mapcount(page) ||
811 page->mapping != NULL ||
812 page_count(page) != 1 ||
813 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
820 printk(KERN_WARNING "fuse: trying to steal weird page\n");
821 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);
827 static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
830 struct page *oldpage = *pagep;
831 struct page *newpage;
832 struct pipe_buffer *buf = cs->pipebufs;
834 err = unlock_request(cs->req);
838 fuse_copy_finish(cs);
840 err = pipe_buf_confirm(cs->pipe, buf);
844 BUG_ON(!cs->nr_segs);
850 if (cs->len != PAGE_SIZE)
853 if (pipe_buf_steal(cs->pipe, buf) != 0)
858 if (!PageUptodate(newpage))
859 SetPageUptodate(newpage);
861 ClearPageMappedToDisk(newpage);
863 if (fuse_check_page(newpage) != 0)
864 goto out_fallback_unlock;
867 * This is a new and locked page, it shouldn't be mapped or
868 * have any special flags on it
870 if (WARN_ON(page_mapped(oldpage)))
871 goto out_fallback_unlock;
872 if (WARN_ON(page_has_private(oldpage)))
873 goto out_fallback_unlock;
874 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
875 goto out_fallback_unlock;
876 if (WARN_ON(PageMlocked(oldpage)))
877 goto out_fallback_unlock;
879 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
881 unlock_page(newpage);
887 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
888 lru_cache_add_file(newpage);
891 spin_lock(&cs->req->waitq.lock);
892 if (test_bit(FR_ABORTED, &cs->req->flags))
896 spin_unlock(&cs->req->waitq.lock);
899 unlock_page(newpage);
904 unlock_page(oldpage);
911 unlock_page(newpage);
914 cs->offset = buf->offset;
916 err = lock_request(cs->req);
923 static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
924 unsigned offset, unsigned count)
926 struct pipe_buffer *buf;
929 if (cs->nr_segs == cs->pipe->buffers)
932 err = unlock_request(cs->req);
936 fuse_copy_finish(cs);
941 buf->offset = offset;
952 * Copy a page in the request to/from the userspace buffer. Must be
955 static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
956 unsigned offset, unsigned count, int zeroing)
959 struct page *page = *pagep;
961 if (page && zeroing && count < PAGE_SIZE)
962 clear_highpage(page);
965 if (cs->write && cs->pipebufs && page) {
966 return fuse_ref_page(cs, page, offset, count);
967 } else if (!cs->len) {
968 if (cs->move_pages && page &&
969 offset == 0 && count == PAGE_SIZE) {
970 err = fuse_try_move_page(cs, pagep);
974 err = fuse_copy_fill(cs);
980 void *mapaddr = kmap_atomic(page);
981 void *buf = mapaddr + offset;
982 offset += fuse_copy_do(cs, &buf, &count);
983 kunmap_atomic(mapaddr);
985 offset += fuse_copy_do(cs, NULL, &count);
987 if (page && !cs->write)
988 flush_dcache_page(page);
992 /* Copy pages in the request to/from userspace buffer */
993 static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
997 struct fuse_req *req = cs->req;
999 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
1001 unsigned offset = req->page_descs[i].offset;
1002 unsigned count = min(nbytes, req->page_descs[i].length);
1004 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1014 /* Copy a single argument in the request to/from userspace buffer */
1015 static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1019 int err = fuse_copy_fill(cs);
1023 fuse_copy_do(cs, &val, &size);
1028 /* Copy request arguments to/from userspace buffer */
1029 static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1030 unsigned argpages, struct fuse_arg *args,
1036 for (i = 0; !err && i < numargs; i++) {
1037 struct fuse_arg *arg = &args[i];
1038 if (i == numargs - 1 && argpages)
1039 err = fuse_copy_pages(cs, arg->size, zeroing);
1041 err = fuse_copy_one(cs, arg->value, arg->size);
1046 static int forget_pending(struct fuse_iqueue *fiq)
1048 return fiq->forget_list_head.next != NULL;
1051 static int request_pending(struct fuse_iqueue *fiq)
1053 return !list_empty(&fiq->pending) || !list_empty(&fiq->interrupts) ||
1054 forget_pending(fiq);
1058 * Transfer an interrupt request to userspace
1060 * Unlike other requests this is assembled on demand, without a need
1061 * to allocate a separate fuse_req structure.
1063 * Called with fiq->waitq.lock held, releases it
1065 static int fuse_read_interrupt(struct fuse_iqueue *fiq,
1066 struct fuse_copy_state *cs,
1067 size_t nbytes, struct fuse_req *req)
1068 __releases(fiq->waitq.lock)
1070 struct fuse_in_header ih;
1071 struct fuse_interrupt_in arg;
1072 unsigned reqsize = sizeof(ih) + sizeof(arg);
1075 list_del_init(&req->intr_entry);
1076 req->intr_unique = fuse_get_unique(fiq);
1077 memset(&ih, 0, sizeof(ih));
1078 memset(&arg, 0, sizeof(arg));
1080 ih.opcode = FUSE_INTERRUPT;
1081 ih.unique = req->intr_unique;
1082 arg.unique = req->in.h.unique;
1084 spin_unlock(&fiq->waitq.lock);
1085 if (nbytes < reqsize)
1088 err = fuse_copy_one(cs, &ih, sizeof(ih));
1090 err = fuse_copy_one(cs, &arg, sizeof(arg));
1091 fuse_copy_finish(cs);
1093 return err ? err : reqsize;
1096 static struct fuse_forget_link *dequeue_forget(struct fuse_iqueue *fiq,
1100 struct fuse_forget_link *head = fiq->forget_list_head.next;
1101 struct fuse_forget_link **newhead = &head;
1104 for (count = 0; *newhead != NULL && count < max; count++)
1105 newhead = &(*newhead)->next;
1107 fiq->forget_list_head.next = *newhead;
1109 if (fiq->forget_list_head.next == NULL)
1110 fiq->forget_list_tail = &fiq->forget_list_head;
1118 static int fuse_read_single_forget(struct fuse_iqueue *fiq,
1119 struct fuse_copy_state *cs,
1121 __releases(fiq->waitq.lock)
1124 struct fuse_forget_link *forget = dequeue_forget(fiq, 1, NULL);
1125 struct fuse_forget_in arg = {
1126 .nlookup = forget->forget_one.nlookup,
1128 struct fuse_in_header ih = {
1129 .opcode = FUSE_FORGET,
1130 .nodeid = forget->forget_one.nodeid,
1131 .unique = fuse_get_unique(fiq),
1132 .len = sizeof(ih) + sizeof(arg),
1135 spin_unlock(&fiq->waitq.lock);
1137 if (nbytes < ih.len)
1140 err = fuse_copy_one(cs, &ih, sizeof(ih));
1142 err = fuse_copy_one(cs, &arg, sizeof(arg));
1143 fuse_copy_finish(cs);
1151 static int fuse_read_batch_forget(struct fuse_iqueue *fiq,
1152 struct fuse_copy_state *cs, size_t nbytes)
1153 __releases(fiq->waitq.lock)
1156 unsigned max_forgets;
1158 struct fuse_forget_link *head;
1159 struct fuse_batch_forget_in arg = { .count = 0 };
1160 struct fuse_in_header ih = {
1161 .opcode = FUSE_BATCH_FORGET,
1162 .unique = fuse_get_unique(fiq),
1163 .len = sizeof(ih) + sizeof(arg),
1166 if (nbytes < ih.len) {
1167 spin_unlock(&fiq->waitq.lock);
1171 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
1172 head = dequeue_forget(fiq, max_forgets, &count);
1173 spin_unlock(&fiq->waitq.lock);
1176 ih.len += count * sizeof(struct fuse_forget_one);
1177 err = fuse_copy_one(cs, &ih, sizeof(ih));
1179 err = fuse_copy_one(cs, &arg, sizeof(arg));
1182 struct fuse_forget_link *forget = head;
1185 err = fuse_copy_one(cs, &forget->forget_one,
1186 sizeof(forget->forget_one));
1188 head = forget->next;
1192 fuse_copy_finish(cs);
1200 static int fuse_read_forget(struct fuse_conn *fc, struct fuse_iqueue *fiq,
1201 struct fuse_copy_state *cs,
1203 __releases(fiq->waitq.lock)
1205 if (fc->minor < 16 || fiq->forget_list_head.next->next == NULL)
1206 return fuse_read_single_forget(fiq, cs, nbytes);
1208 return fuse_read_batch_forget(fiq, cs, nbytes);
1212 * Read a single request into the userspace filesystem's buffer. This
1213 * function waits until a request is available, then removes it from
1214 * the pending list and copies request data to userspace buffer. If
1215 * no reply is needed (FORGET) or request has been aborted or there
1216 * was an error during the copying then it's finished by calling
1217 * request_end(). Otherwise add it to the processing list, and set
1220 static ssize_t fuse_dev_do_read(struct fuse_dev *fud, struct file *file,
1221 struct fuse_copy_state *cs, size_t nbytes)
1224 struct fuse_conn *fc = fud->fc;
1225 struct fuse_iqueue *fiq = &fc->iq;
1226 struct fuse_pqueue *fpq = &fud->pq;
1227 struct fuse_req *req;
1232 spin_lock(&fiq->waitq.lock);
1234 if ((file->f_flags & O_NONBLOCK) && fiq->connected &&
1235 !request_pending(fiq))
1238 err = wait_event_interruptible_exclusive_locked(fiq->waitq,
1239 !fiq->connected || request_pending(fiq));
1243 if (!fiq->connected) {
1244 err = (fc->aborted && fc->abort_err) ? -ECONNABORTED : -ENODEV;
1248 if (!list_empty(&fiq->interrupts)) {
1249 req = list_entry(fiq->interrupts.next, struct fuse_req,
1251 return fuse_read_interrupt(fiq, cs, nbytes, req);
1254 if (forget_pending(fiq)) {
1255 if (list_empty(&fiq->pending) || fiq->forget_batch-- > 0)
1256 return fuse_read_forget(fc, fiq, cs, nbytes);
1258 if (fiq->forget_batch <= -8)
1259 fiq->forget_batch = 16;
1262 req = list_entry(fiq->pending.next, struct fuse_req, list);
1263 clear_bit(FR_PENDING, &req->flags);
1264 list_del_init(&req->list);
1265 spin_unlock(&fiq->waitq.lock);
1268 reqsize = in->h.len;
1270 /* If request is too large, reply with an error and restart the read */
1271 if (nbytes < reqsize) {
1272 req->out.h.error = -EIO;
1273 /* SETXATTR is special, since it may contain too large data */
1274 if (in->h.opcode == FUSE_SETXATTR)
1275 req->out.h.error = -E2BIG;
1276 request_end(fc, req);
1279 spin_lock(&fpq->lock);
1280 list_add(&req->list, &fpq->io);
1281 spin_unlock(&fpq->lock);
1283 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
1285 err = fuse_copy_args(cs, in->numargs, in->argpages,
1286 (struct fuse_arg *) in->args, 0);
1287 fuse_copy_finish(cs);
1288 spin_lock(&fpq->lock);
1289 clear_bit(FR_LOCKED, &req->flags);
1290 if (!fpq->connected) {
1291 err = (fc->aborted && fc->abort_err) ? -ECONNABORTED : -ENODEV;
1295 req->out.h.error = -EIO;
1298 if (!test_bit(FR_ISREPLY, &req->flags)) {
1302 list_move_tail(&req->list, &fpq->processing);
1303 spin_unlock(&fpq->lock);
1304 set_bit(FR_SENT, &req->flags);
1305 /* matches barrier in request_wait_answer() */
1306 smp_mb__after_atomic();
1307 if (test_bit(FR_INTERRUPTED, &req->flags))
1308 queue_interrupt(fiq, req);
1313 if (!test_bit(FR_PRIVATE, &req->flags))
1314 list_del_init(&req->list);
1315 spin_unlock(&fpq->lock);
1316 request_end(fc, req);
1320 spin_unlock(&fiq->waitq.lock);
1324 static int fuse_dev_open(struct inode *inode, struct file *file)
1327 * The fuse device's file's private_data is used to hold
1328 * the fuse_conn(ection) when it is mounted, and is used to
1329 * keep track of whether the file has been mounted already.
1331 file->private_data = NULL;
1335 static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
1337 struct fuse_copy_state cs;
1338 struct file *file = iocb->ki_filp;
1339 struct fuse_dev *fud = fuse_get_dev(file);
1344 if (!iter_is_iovec(to))
1347 fuse_copy_init(&cs, 1, to);
1349 return fuse_dev_do_read(fud, file, &cs, iov_iter_count(to));
1352 static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1353 struct pipe_inode_info *pipe,
1354 size_t len, unsigned int flags)
1358 struct pipe_buffer *bufs;
1359 struct fuse_copy_state cs;
1360 struct fuse_dev *fud = fuse_get_dev(in);
1365 bufs = kmalloc_array(pipe->buffers, sizeof(struct pipe_buffer),
1370 fuse_copy_init(&cs, 1, NULL);
1373 ret = fuse_dev_do_read(fud, in, &cs, len);
1377 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1382 for (ret = total = 0; page_nr < cs.nr_segs; total += ret) {
1384 * Need to be careful about this. Having buf->ops in module
1385 * code can Oops if the buffer persists after module unload.
1387 bufs[page_nr].ops = &nosteal_pipe_buf_ops;
1388 bufs[page_nr].flags = 0;
1389 ret = add_to_pipe(pipe, &bufs[page_nr++]);
1390 if (unlikely(ret < 0))
1396 for (; page_nr < cs.nr_segs; page_nr++)
1397 put_page(bufs[page_nr].page);
1403 static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1404 struct fuse_copy_state *cs)
1406 struct fuse_notify_poll_wakeup_out outarg;
1409 if (size != sizeof(outarg))
1412 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1416 fuse_copy_finish(cs);
1417 return fuse_notify_poll_wakeup(fc, &outarg);
1420 fuse_copy_finish(cs);
1424 static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1425 struct fuse_copy_state *cs)
1427 struct fuse_notify_inval_inode_out outarg;
1430 if (size != sizeof(outarg))
1433 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1436 fuse_copy_finish(cs);
1438 down_read(&fc->killsb);
1441 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1442 outarg.off, outarg.len);
1444 up_read(&fc->killsb);
1448 fuse_copy_finish(cs);
1452 static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1453 struct fuse_copy_state *cs)
1455 struct fuse_notify_inval_entry_out outarg;
1460 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1465 if (size < sizeof(outarg))
1468 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1472 err = -ENAMETOOLONG;
1473 if (outarg.namelen > FUSE_NAME_MAX)
1477 if (size != sizeof(outarg) + outarg.namelen + 1)
1481 name.len = outarg.namelen;
1482 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1485 fuse_copy_finish(cs);
1486 buf[outarg.namelen] = 0;
1488 down_read(&fc->killsb);
1491 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1492 up_read(&fc->killsb);
1498 fuse_copy_finish(cs);
1502 static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1503 struct fuse_copy_state *cs)
1505 struct fuse_notify_delete_out outarg;
1510 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1515 if (size < sizeof(outarg))
1518 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1522 err = -ENAMETOOLONG;
1523 if (outarg.namelen > FUSE_NAME_MAX)
1527 if (size != sizeof(outarg) + outarg.namelen + 1)
1531 name.len = outarg.namelen;
1532 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1535 fuse_copy_finish(cs);
1536 buf[outarg.namelen] = 0;
1538 down_read(&fc->killsb);
1541 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1542 outarg.child, &name);
1543 up_read(&fc->killsb);
1549 fuse_copy_finish(cs);
1553 static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1554 struct fuse_copy_state *cs)
1556 struct fuse_notify_store_out outarg;
1557 struct inode *inode;
1558 struct address_space *mapping;
1562 unsigned int offset;
1568 if (size < sizeof(outarg))
1571 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1576 if (size - sizeof(outarg) != outarg.size)
1579 nodeid = outarg.nodeid;
1581 down_read(&fc->killsb);
1587 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1591 mapping = inode->i_mapping;
1592 index = outarg.offset >> PAGE_SHIFT;
1593 offset = outarg.offset & ~PAGE_MASK;
1594 file_size = i_size_read(inode);
1595 end = outarg.offset + outarg.size;
1596 if (end > file_size) {
1598 fuse_write_update_size(inode, file_size);
1604 unsigned int this_num;
1607 page = find_or_create_page(mapping, index,
1608 mapping_gfp_mask(mapping));
1612 this_num = min_t(unsigned, num, PAGE_SIZE - offset);
1613 err = fuse_copy_page(cs, &page, offset, this_num, 0);
1614 if (!err && offset == 0 &&
1615 (this_num == PAGE_SIZE || file_size == end))
1616 SetPageUptodate(page);
1633 up_read(&fc->killsb);
1635 fuse_copy_finish(cs);
1639 static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1641 release_pages(req->pages, req->num_pages);
1644 static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1645 struct fuse_notify_retrieve_out *outarg)
1648 struct address_space *mapping = inode->i_mapping;
1649 struct fuse_req *req;
1653 unsigned int offset;
1654 size_t total_len = 0;
1657 offset = outarg->offset & ~PAGE_MASK;
1658 file_size = i_size_read(inode);
1661 if (outarg->offset > file_size)
1663 else if (outarg->offset + num > file_size)
1664 num = file_size - outarg->offset;
1666 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1667 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1669 req = fuse_get_req(fc, num_pages);
1671 return PTR_ERR(req);
1673 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1674 req->in.h.nodeid = outarg->nodeid;
1675 req->in.numargs = 2;
1676 req->in.argpages = 1;
1677 req->page_descs[0].offset = offset;
1678 req->end = fuse_retrieve_end;
1680 index = outarg->offset >> PAGE_SHIFT;
1682 while (num && req->num_pages < num_pages) {
1684 unsigned int this_num;
1686 page = find_get_page(mapping, index);
1690 this_num = min_t(unsigned, num, PAGE_SIZE - offset);
1691 req->pages[req->num_pages] = page;
1692 req->page_descs[req->num_pages].length = this_num;
1697 total_len += this_num;
1700 req->misc.retrieve_in.offset = outarg->offset;
1701 req->misc.retrieve_in.size = total_len;
1702 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1703 req->in.args[0].value = &req->misc.retrieve_in;
1704 req->in.args[1].size = total_len;
1706 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1708 fuse_retrieve_end(fc, req);
1713 static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1714 struct fuse_copy_state *cs)
1716 struct fuse_notify_retrieve_out outarg;
1717 struct inode *inode;
1721 if (size != sizeof(outarg))
1724 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1728 fuse_copy_finish(cs);
1730 down_read(&fc->killsb);
1733 u64 nodeid = outarg.nodeid;
1735 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1737 err = fuse_retrieve(fc, inode, &outarg);
1741 up_read(&fc->killsb);
1746 fuse_copy_finish(cs);
1750 static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1751 unsigned int size, struct fuse_copy_state *cs)
1753 /* Don't try to move pages (yet) */
1757 case FUSE_NOTIFY_POLL:
1758 return fuse_notify_poll(fc, size, cs);
1760 case FUSE_NOTIFY_INVAL_INODE:
1761 return fuse_notify_inval_inode(fc, size, cs);
1763 case FUSE_NOTIFY_INVAL_ENTRY:
1764 return fuse_notify_inval_entry(fc, size, cs);
1766 case FUSE_NOTIFY_STORE:
1767 return fuse_notify_store(fc, size, cs);
1769 case FUSE_NOTIFY_RETRIEVE:
1770 return fuse_notify_retrieve(fc, size, cs);
1772 case FUSE_NOTIFY_DELETE:
1773 return fuse_notify_delete(fc, size, cs);
1776 fuse_copy_finish(cs);
1781 /* Look up request on processing list by unique ID */
1782 static struct fuse_req *request_find(struct fuse_pqueue *fpq, u64 unique)
1784 struct fuse_req *req;
1786 list_for_each_entry(req, &fpq->processing, list) {
1787 if (req->in.h.unique == unique || req->intr_unique == unique)
1793 static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1796 unsigned reqsize = sizeof(struct fuse_out_header);
1799 return nbytes != reqsize ? -EINVAL : 0;
1801 reqsize += len_args(out->numargs, out->args);
1803 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1805 else if (reqsize > nbytes) {
1806 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1807 unsigned diffsize = reqsize - nbytes;
1808 if (diffsize > lastarg->size)
1810 lastarg->size -= diffsize;
1812 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1817 * Write a single reply to a request. First the header is copied from
1818 * the write buffer. The request is then searched on the processing
1819 * list by the unique ID found in the header. If found, then remove
1820 * it from the list and copy the rest of the buffer to the request.
1821 * The request is finished by calling request_end()
1823 static ssize_t fuse_dev_do_write(struct fuse_dev *fud,
1824 struct fuse_copy_state *cs, size_t nbytes)
1827 struct fuse_conn *fc = fud->fc;
1828 struct fuse_pqueue *fpq = &fud->pq;
1829 struct fuse_req *req;
1830 struct fuse_out_header oh;
1832 if (nbytes < sizeof(struct fuse_out_header))
1835 err = fuse_copy_one(cs, &oh, sizeof(oh));
1840 if (oh.len != nbytes)
1844 * Zero oh.unique indicates unsolicited notification message
1845 * and error contains notification code.
1848 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
1849 return err ? err : nbytes;
1853 if (oh.error <= -1000 || oh.error > 0)
1856 spin_lock(&fpq->lock);
1858 if (!fpq->connected)
1861 req = request_find(fpq, oh.unique);
1865 /* Is it an interrupt reply? */
1866 if (req->intr_unique == oh.unique) {
1867 spin_unlock(&fpq->lock);
1870 if (nbytes != sizeof(struct fuse_out_header))
1873 if (oh.error == -ENOSYS)
1874 fc->no_interrupt = 1;
1875 else if (oh.error == -EAGAIN)
1876 queue_interrupt(&fc->iq, req);
1878 fuse_copy_finish(cs);
1882 clear_bit(FR_SENT, &req->flags);
1883 list_move(&req->list, &fpq->io);
1885 set_bit(FR_LOCKED, &req->flags);
1886 spin_unlock(&fpq->lock);
1888 if (!req->out.page_replace)
1891 err = copy_out_args(cs, &req->out, nbytes);
1892 fuse_copy_finish(cs);
1894 spin_lock(&fpq->lock);
1895 clear_bit(FR_LOCKED, &req->flags);
1896 if (!fpq->connected)
1899 req->out.h.error = -EIO;
1900 if (!test_bit(FR_PRIVATE, &req->flags))
1901 list_del_init(&req->list);
1902 spin_unlock(&fpq->lock);
1904 request_end(fc, req);
1906 return err ? err : nbytes;
1909 spin_unlock(&fpq->lock);
1911 fuse_copy_finish(cs);
1915 static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
1917 struct fuse_copy_state cs;
1918 struct fuse_dev *fud = fuse_get_dev(iocb->ki_filp);
1923 if (!iter_is_iovec(from))
1926 fuse_copy_init(&cs, 0, from);
1928 return fuse_dev_do_write(fud, &cs, iov_iter_count(from));
1931 static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1932 struct file *out, loff_t *ppos,
1933 size_t len, unsigned int flags)
1937 struct pipe_buffer *bufs;
1938 struct fuse_copy_state cs;
1939 struct fuse_dev *fud;
1943 fud = fuse_get_dev(out);
1947 bufs = kmalloc_array(pipe->buffers, sizeof(struct pipe_buffer),
1955 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
1956 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
1966 struct pipe_buffer *ibuf;
1967 struct pipe_buffer *obuf;
1969 BUG_ON(nbuf >= pipe->buffers);
1970 BUG_ON(!pipe->nrbufs);
1971 ibuf = &pipe->bufs[pipe->curbuf];
1974 if (rem >= ibuf->len) {
1977 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
1980 pipe_buf_get(pipe, ibuf);
1982 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1984 ibuf->offset += obuf->len;
1985 ibuf->len -= obuf->len;
1992 fuse_copy_init(&cs, 0, NULL);
1997 if (flags & SPLICE_F_MOVE)
2000 ret = fuse_dev_do_write(fud, &cs, len);
2002 for (idx = 0; idx < nbuf; idx++)
2003 pipe_buf_release(pipe, &bufs[idx]);
2010 static __poll_t fuse_dev_poll(struct file *file, poll_table *wait)
2012 __poll_t mask = EPOLLOUT | EPOLLWRNORM;
2013 struct fuse_iqueue *fiq;
2014 struct fuse_dev *fud = fuse_get_dev(file);
2020 poll_wait(file, &fiq->waitq, wait);
2022 spin_lock(&fiq->waitq.lock);
2023 if (!fiq->connected)
2025 else if (request_pending(fiq))
2026 mask |= EPOLLIN | EPOLLRDNORM;
2027 spin_unlock(&fiq->waitq.lock);
2033 * Abort all requests on the given list (pending or processing)
2035 * This function releases and reacquires fc->lock
2037 static void end_requests(struct fuse_conn *fc, struct list_head *head)
2039 while (!list_empty(head)) {
2040 struct fuse_req *req;
2041 req = list_entry(head->next, struct fuse_req, list);
2042 req->out.h.error = -ECONNABORTED;
2043 clear_bit(FR_SENT, &req->flags);
2044 list_del_init(&req->list);
2045 request_end(fc, req);
2049 static void end_polls(struct fuse_conn *fc)
2053 p = rb_first(&fc->polled_files);
2056 struct fuse_file *ff;
2057 ff = rb_entry(p, struct fuse_file, polled_node);
2058 wake_up_interruptible_all(&ff->poll_wait);
2065 * Abort all requests.
2067 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2070 * The same effect is usually achievable through killing the filesystem daemon
2071 * and all users of the filesystem. The exception is the combination of an
2072 * asynchronous request and the tricky deadlock (see
2073 * Documentation/filesystems/fuse.txt).
2075 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2076 * requests, they should be finished off immediately. Locked requests will be
2077 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2078 * requests. It is possible that some request will finish before we can. This
2079 * is OK, the request will in that case be removed from the list before we touch
2082 void fuse_abort_conn(struct fuse_conn *fc, bool is_abort)
2084 struct fuse_iqueue *fiq = &fc->iq;
2086 spin_lock(&fc->lock);
2087 if (fc->connected) {
2088 struct fuse_dev *fud;
2089 struct fuse_req *req, *next;
2095 fc->aborted = is_abort;
2096 fuse_set_initialized(fc);
2097 list_for_each_entry(fud, &fc->devices, entry) {
2098 struct fuse_pqueue *fpq = &fud->pq;
2100 spin_lock(&fpq->lock);
2102 list_for_each_entry_safe(req, next, &fpq->io, list) {
2103 req->out.h.error = -ECONNABORTED;
2104 spin_lock(&req->waitq.lock);
2105 set_bit(FR_ABORTED, &req->flags);
2106 if (!test_bit(FR_LOCKED, &req->flags)) {
2107 set_bit(FR_PRIVATE, &req->flags);
2108 list_move(&req->list, &to_end1);
2110 spin_unlock(&req->waitq.lock);
2112 list_splice_init(&fpq->processing, &to_end2);
2113 spin_unlock(&fpq->lock);
2115 fc->max_background = UINT_MAX;
2118 spin_lock(&fiq->waitq.lock);
2120 list_splice_init(&fiq->pending, &to_end2);
2121 list_for_each_entry(req, &to_end2, list)
2122 clear_bit(FR_PENDING, &req->flags);
2123 while (forget_pending(fiq))
2124 kfree(dequeue_forget(fiq, 1, NULL));
2125 wake_up_all_locked(&fiq->waitq);
2126 spin_unlock(&fiq->waitq.lock);
2127 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
2129 wake_up_all(&fc->blocked_waitq);
2130 spin_unlock(&fc->lock);
2132 while (!list_empty(&to_end1)) {
2133 req = list_first_entry(&to_end1, struct fuse_req, list);
2134 __fuse_get_request(req);
2135 list_del_init(&req->list);
2136 request_end(fc, req);
2138 end_requests(fc, &to_end2);
2140 spin_unlock(&fc->lock);
2143 EXPORT_SYMBOL_GPL(fuse_abort_conn);
2145 int fuse_dev_release(struct inode *inode, struct file *file)
2147 struct fuse_dev *fud = fuse_get_dev(file);
2150 struct fuse_conn *fc = fud->fc;
2151 struct fuse_pqueue *fpq = &fud->pq;
2153 WARN_ON(!list_empty(&fpq->io));
2154 end_requests(fc, &fpq->processing);
2155 /* Are we the last open device? */
2156 if (atomic_dec_and_test(&fc->dev_count)) {
2157 WARN_ON(fc->iq.fasync != NULL);
2158 fuse_abort_conn(fc, false);
2164 EXPORT_SYMBOL_GPL(fuse_dev_release);
2166 static int fuse_dev_fasync(int fd, struct file *file, int on)
2168 struct fuse_dev *fud = fuse_get_dev(file);
2173 /* No locking - fasync_helper does its own locking */
2174 return fasync_helper(fd, file, on, &fud->fc->iq.fasync);
2177 static int fuse_device_clone(struct fuse_conn *fc, struct file *new)
2179 struct fuse_dev *fud;
2181 if (new->private_data)
2184 fud = fuse_dev_alloc(fc);
2188 new->private_data = fud;
2189 atomic_inc(&fc->dev_count);
2194 static long fuse_dev_ioctl(struct file *file, unsigned int cmd,
2199 if (cmd == FUSE_DEV_IOC_CLONE) {
2203 if (!get_user(oldfd, (__u32 __user *) arg)) {
2204 struct file *old = fget(oldfd);
2208 struct fuse_dev *fud = NULL;
2211 * Check against file->f_op because CUSE
2212 * uses the same ioctl handler.
2214 if (old->f_op == file->f_op &&
2215 old->f_cred->user_ns == file->f_cred->user_ns)
2216 fud = fuse_get_dev(old);
2219 mutex_lock(&fuse_mutex);
2220 err = fuse_device_clone(fud->fc, file);
2221 mutex_unlock(&fuse_mutex);
2230 const struct file_operations fuse_dev_operations = {
2231 .owner = THIS_MODULE,
2232 .open = fuse_dev_open,
2233 .llseek = no_llseek,
2234 .read_iter = fuse_dev_read,
2235 .splice_read = fuse_dev_splice_read,
2236 .write_iter = fuse_dev_write,
2237 .splice_write = fuse_dev_splice_write,
2238 .poll = fuse_dev_poll,
2239 .release = fuse_dev_release,
2240 .fasync = fuse_dev_fasync,
2241 .unlocked_ioctl = fuse_dev_ioctl,
2242 .compat_ioctl = fuse_dev_ioctl,
2244 EXPORT_SYMBOL_GPL(fuse_dev_operations);
2246 static struct miscdevice fuse_miscdevice = {
2247 .minor = FUSE_MINOR,
2249 .fops = &fuse_dev_operations,
2252 int __init fuse_dev_init(void)
2255 fuse_req_cachep = kmem_cache_create("fuse_request",
2256 sizeof(struct fuse_req),
2258 if (!fuse_req_cachep)
2261 err = misc_register(&fuse_miscdevice);
2263 goto out_cache_clean;
2268 kmem_cache_destroy(fuse_req_cachep);
2273 void fuse_dev_cleanup(void)
2275 misc_deregister(&fuse_miscdevice);
2276 kmem_cache_destroy(fuse_req_cachep);