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/uio.h>
15 #include <linux/miscdevice.h>
16 #include <linux/pagemap.h>
17 #include <linux/file.h>
18 #include <linux/slab.h>
19 #include <linux/pipe_fs_i.h>
20 #include <linux/swap.h>
21 #include <linux/splice.h>
22 #include <linux/aio.h>
24 MODULE_ALIAS_MISCDEV(FUSE_MINOR);
25 MODULE_ALIAS("devname:fuse");
27 static struct kmem_cache *fuse_req_cachep;
29 static struct fuse_conn *fuse_get_conn(struct file *file)
32 * Lockless access is OK, because file->private data is set
33 * once during mount and is valid until the file is released.
35 return file->private_data;
38 static void fuse_request_init(struct fuse_req *req, struct page **pages,
39 struct fuse_page_desc *page_descs,
42 memset(req, 0, sizeof(*req));
43 memset(pages, 0, sizeof(*pages) * npages);
44 memset(page_descs, 0, sizeof(*page_descs) * npages);
45 INIT_LIST_HEAD(&req->list);
46 INIT_LIST_HEAD(&req->intr_entry);
47 init_waitqueue_head(&req->waitq);
48 atomic_set(&req->count, 1);
50 req->page_descs = page_descs;
51 req->max_pages = npages;
54 static struct fuse_req *__fuse_request_alloc(unsigned npages, gfp_t flags)
56 struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, flags);
59 struct fuse_page_desc *page_descs;
61 if (npages <= FUSE_REQ_INLINE_PAGES) {
62 pages = req->inline_pages;
63 page_descs = req->inline_page_descs;
65 pages = kmalloc(sizeof(struct page *) * npages, flags);
66 page_descs = kmalloc(sizeof(struct fuse_page_desc) *
70 if (!pages || !page_descs) {
73 kmem_cache_free(fuse_req_cachep, req);
77 fuse_request_init(req, pages, page_descs, npages);
82 struct fuse_req *fuse_request_alloc(unsigned npages)
84 return __fuse_request_alloc(npages, GFP_KERNEL);
86 EXPORT_SYMBOL_GPL(fuse_request_alloc);
88 struct fuse_req *fuse_request_alloc_nofs(unsigned npages)
90 return __fuse_request_alloc(npages, GFP_NOFS);
93 void fuse_request_free(struct fuse_req *req)
95 if (req->pages != req->inline_pages) {
97 kfree(req->page_descs);
99 kmem_cache_free(fuse_req_cachep, req);
102 static void block_sigs(sigset_t *oldset)
106 siginitsetinv(&mask, sigmask(SIGKILL));
107 sigprocmask(SIG_BLOCK, &mask, oldset);
110 static void restore_sigs(sigset_t *oldset)
112 sigprocmask(SIG_SETMASK, oldset, NULL);
115 void __fuse_get_request(struct fuse_req *req)
117 atomic_inc(&req->count);
120 /* Must be called with > 1 refcount */
121 static void __fuse_put_request(struct fuse_req *req)
123 BUG_ON(atomic_read(&req->count) < 2);
124 atomic_dec(&req->count);
127 static void fuse_req_init_context(struct fuse_req *req)
129 req->in.h.uid = from_kuid_munged(&init_user_ns, current_fsuid());
130 req->in.h.gid = from_kgid_munged(&init_user_ns, current_fsgid());
131 req->in.h.pid = current->pid;
134 static bool fuse_block_alloc(struct fuse_conn *fc, bool for_background)
136 return !fc->initialized || (for_background && fc->blocked);
139 static struct fuse_req *__fuse_get_req(struct fuse_conn *fc, unsigned npages,
142 struct fuse_req *req;
144 atomic_inc(&fc->num_waiting);
146 if (fuse_block_alloc(fc, for_background)) {
151 intr = wait_event_interruptible_exclusive(fc->blocked_waitq,
152 !fuse_block_alloc(fc, for_background));
153 restore_sigs(&oldset);
163 req = fuse_request_alloc(npages);
167 wake_up(&fc->blocked_waitq);
171 fuse_req_init_context(req);
173 req->background = for_background;
177 atomic_dec(&fc->num_waiting);
181 struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages)
183 return __fuse_get_req(fc, npages, false);
185 EXPORT_SYMBOL_GPL(fuse_get_req);
187 struct fuse_req *fuse_get_req_for_background(struct fuse_conn *fc,
190 return __fuse_get_req(fc, npages, true);
192 EXPORT_SYMBOL_GPL(fuse_get_req_for_background);
195 * Return request in fuse_file->reserved_req. However that may
196 * currently be in use. If that is the case, wait for it to become
199 static struct fuse_req *get_reserved_req(struct fuse_conn *fc,
202 struct fuse_req *req = NULL;
203 struct fuse_file *ff = file->private_data;
206 wait_event(fc->reserved_req_waitq, ff->reserved_req);
207 spin_lock(&fc->lock);
208 if (ff->reserved_req) {
209 req = ff->reserved_req;
210 ff->reserved_req = NULL;
211 req->stolen_file = get_file(file);
213 spin_unlock(&fc->lock);
220 * Put stolen request back into fuse_file->reserved_req
222 static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req)
224 struct file *file = req->stolen_file;
225 struct fuse_file *ff = file->private_data;
227 spin_lock(&fc->lock);
228 fuse_request_init(req, req->pages, req->page_descs, req->max_pages);
229 BUG_ON(ff->reserved_req);
230 ff->reserved_req = req;
231 wake_up_all(&fc->reserved_req_waitq);
232 spin_unlock(&fc->lock);
237 * Gets a requests for a file operation, always succeeds
239 * This is used for sending the FLUSH request, which must get to
240 * userspace, due to POSIX locks which may need to be unlocked.
242 * If allocation fails due to OOM, use the reserved request in
245 * This is very unlikely to deadlock accidentally, since the
246 * filesystem should not have it's own file open. If deadlock is
247 * intentional, it can still be broken by "aborting" the filesystem.
249 struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc,
252 struct fuse_req *req;
254 atomic_inc(&fc->num_waiting);
255 wait_event(fc->blocked_waitq, fc->initialized);
256 req = fuse_request_alloc(0);
258 req = get_reserved_req(fc, file);
260 fuse_req_init_context(req);
266 void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req)
268 if (atomic_dec_and_test(&req->count)) {
269 if (unlikely(req->background)) {
271 * We get here in the unlikely case that a background
272 * request was allocated but not sent
274 spin_lock(&fc->lock);
276 wake_up(&fc->blocked_waitq);
277 spin_unlock(&fc->lock);
281 atomic_dec(&fc->num_waiting);
283 if (req->stolen_file)
284 put_reserved_req(fc, req);
286 fuse_request_free(req);
289 EXPORT_SYMBOL_GPL(fuse_put_request);
291 static unsigned len_args(unsigned numargs, struct fuse_arg *args)
296 for (i = 0; i < numargs; i++)
297 nbytes += args[i].size;
302 static u64 fuse_get_unique(struct fuse_conn *fc)
305 /* zero is special */
312 static void queue_request(struct fuse_conn *fc, struct fuse_req *req)
314 req->in.h.len = sizeof(struct fuse_in_header) +
315 len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
316 list_add_tail(&req->list, &fc->pending);
317 req->state = FUSE_REQ_PENDING;
320 atomic_inc(&fc->num_waiting);
323 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
326 void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
327 u64 nodeid, u64 nlookup)
329 forget->forget_one.nodeid = nodeid;
330 forget->forget_one.nlookup = nlookup;
332 spin_lock(&fc->lock);
334 fc->forget_list_tail->next = forget;
335 fc->forget_list_tail = forget;
337 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
341 spin_unlock(&fc->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;
350 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
351 list_del(&req->list);
352 fc->active_background++;
353 req->in.h.unique = fuse_get_unique(fc);
354 queue_request(fc, req);
359 * This function is called when a request is finished. Either a reply
360 * has arrived or it was aborted (and not yet sent) or some error
361 * occurred during communication with userspace, or the device file
362 * was closed. The requester thread is woken up (if still waiting),
363 * the 'end' callback is called if given, else the reference to the
364 * request is released
366 * Called with fc->lock, unlocks it
368 static void request_end(struct fuse_conn *fc, struct fuse_req *req)
371 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
373 list_del(&req->list);
374 list_del(&req->intr_entry);
375 req->state = FUSE_REQ_FINISHED;
376 if (req->background) {
379 if (fc->num_background == fc->max_background)
382 /* Wake up next waiter, if any */
383 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
384 wake_up(&fc->blocked_waitq);
386 if (fc->num_background == fc->congestion_threshold &&
387 fc->connected && fc->bdi_initialized) {
388 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
389 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
391 fc->num_background--;
392 fc->active_background--;
395 spin_unlock(&fc->lock);
396 wake_up(&req->waitq);
399 fuse_put_request(fc, req);
402 static void wait_answer_interruptible(struct fuse_conn *fc,
403 struct fuse_req *req)
407 if (signal_pending(current))
410 spin_unlock(&fc->lock);
411 wait_event_interruptible(req->waitq, req->state == FUSE_REQ_FINISHED);
412 spin_lock(&fc->lock);
415 static void queue_interrupt(struct fuse_conn *fc, struct fuse_req *req)
417 list_add_tail(&req->intr_entry, &fc->interrupts);
419 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
422 static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
426 if (!fc->no_interrupt) {
427 /* Any signal may interrupt this */
428 wait_answer_interruptible(fc, req);
432 if (req->state == FUSE_REQ_FINISHED)
435 req->interrupted = 1;
436 if (req->state == FUSE_REQ_SENT)
437 queue_interrupt(fc, req);
443 /* Only fatal signals may interrupt this */
445 wait_answer_interruptible(fc, req);
446 restore_sigs(&oldset);
450 if (req->state == FUSE_REQ_FINISHED)
453 /* Request is not yet in userspace, bail out */
454 if (req->state == FUSE_REQ_PENDING) {
455 list_del(&req->list);
456 __fuse_put_request(req);
457 req->out.h.error = -EINTR;
463 * Either request is already in userspace, or it was forced.
466 spin_unlock(&fc->lock);
467 wait_event(req->waitq, req->state == FUSE_REQ_FINISHED);
468 spin_lock(&fc->lock);
474 BUG_ON(req->state != FUSE_REQ_FINISHED);
476 /* This is uninterruptible sleep, because data is
477 being copied to/from the buffers of req. During
478 locked state, there mustn't be any filesystem
479 operation (e.g. page fault), since that could lead
481 spin_unlock(&fc->lock);
482 wait_event(req->waitq, !req->locked);
483 spin_lock(&fc->lock);
487 static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
489 BUG_ON(req->background);
490 spin_lock(&fc->lock);
492 req->out.h.error = -ENOTCONN;
493 else if (fc->conn_error)
494 req->out.h.error = -ECONNREFUSED;
496 req->in.h.unique = fuse_get_unique(fc);
497 queue_request(fc, req);
498 /* acquire extra reference, since request is still needed
499 after request_end() */
500 __fuse_get_request(req);
502 request_wait_answer(fc, req);
504 spin_unlock(&fc->lock);
507 void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
510 __fuse_request_send(fc, req);
512 EXPORT_SYMBOL_GPL(fuse_request_send);
514 ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
516 struct fuse_req *req;
519 req = fuse_get_req(fc, 0);
523 req->in.h.opcode = args->in.h.opcode;
524 req->in.h.nodeid = args->in.h.nodeid;
525 req->in.numargs = args->in.numargs;
526 memcpy(req->in.args, args->in.args,
527 args->in.numargs * sizeof(struct fuse_in_arg));
528 req->out.argvar = args->out.argvar;
529 req->out.numargs = args->out.numargs;
530 memcpy(req->out.args, args->out.args,
531 args->out.numargs * sizeof(struct fuse_arg));
532 fuse_request_send(fc, req);
533 ret = req->out.h.error;
534 if (!ret && args->out.argvar) {
535 BUG_ON(args->out.numargs != 1);
536 ret = req->out.args[0].size;
538 fuse_put_request(fc, req);
543 static void fuse_request_send_nowait_locked(struct fuse_conn *fc,
544 struct fuse_req *req)
546 BUG_ON(!req->background);
547 fc->num_background++;
548 if (fc->num_background == fc->max_background)
550 if (fc->num_background == fc->congestion_threshold &&
551 fc->bdi_initialized) {
552 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
553 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
555 list_add_tail(&req->list, &fc->bg_queue);
559 static void fuse_request_send_nowait(struct fuse_conn *fc, struct fuse_req *req)
561 spin_lock(&fc->lock);
563 fuse_request_send_nowait_locked(fc, req);
564 spin_unlock(&fc->lock);
566 req->out.h.error = -ENOTCONN;
567 request_end(fc, req);
571 void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
574 fuse_request_send_nowait(fc, req);
576 EXPORT_SYMBOL_GPL(fuse_request_send_background);
578 static int fuse_request_send_notify_reply(struct fuse_conn *fc,
579 struct fuse_req *req, u64 unique)
584 req->in.h.unique = unique;
585 spin_lock(&fc->lock);
587 queue_request(fc, req);
590 spin_unlock(&fc->lock);
596 * Called under fc->lock
598 * fc->connected must have been checked previously
600 void fuse_request_send_background_locked(struct fuse_conn *fc,
601 struct fuse_req *req)
604 fuse_request_send_nowait_locked(fc, req);
607 void fuse_force_forget(struct file *file, u64 nodeid)
609 struct inode *inode = file_inode(file);
610 struct fuse_conn *fc = get_fuse_conn(inode);
611 struct fuse_req *req;
612 struct fuse_forget_in inarg;
614 memset(&inarg, 0, sizeof(inarg));
616 req = fuse_get_req_nofail_nopages(fc, file);
617 req->in.h.opcode = FUSE_FORGET;
618 req->in.h.nodeid = nodeid;
620 req->in.args[0].size = sizeof(inarg);
621 req->in.args[0].value = &inarg;
623 __fuse_request_send(fc, req);
625 fuse_put_request(fc, req);
629 * Lock the request. Up to the next unlock_request() there mustn't be
630 * anything that could cause a page-fault. If the request was already
633 static int lock_request(struct fuse_conn *fc, struct fuse_req *req)
637 spin_lock(&fc->lock);
642 spin_unlock(&fc->lock);
648 * Unlock request. If it was aborted during being locked, the
649 * requester thread is currently waiting for it to be unlocked, so
652 static void unlock_request(struct fuse_conn *fc, struct fuse_req *req)
655 spin_lock(&fc->lock);
658 wake_up(&req->waitq);
659 spin_unlock(&fc->lock);
663 struct fuse_copy_state {
664 struct fuse_conn *fc;
666 struct fuse_req *req;
667 const struct iovec *iov;
668 struct pipe_buffer *pipebufs;
669 struct pipe_buffer *currbuf;
670 struct pipe_inode_info *pipe;
671 unsigned long nr_segs;
672 unsigned long seglen;
677 unsigned move_pages:1;
680 static void fuse_copy_init(struct fuse_copy_state *cs, struct fuse_conn *fc,
682 const struct iovec *iov, unsigned long nr_segs)
684 memset(cs, 0, sizeof(*cs));
688 cs->nr_segs = nr_segs;
691 /* Unmap and put previous page of userspace buffer */
692 static void fuse_copy_finish(struct fuse_copy_state *cs)
695 struct pipe_buffer *buf = cs->currbuf;
698 buf->len = PAGE_SIZE - cs->len;
702 flush_dcache_page(cs->pg);
703 set_page_dirty_lock(cs->pg);
711 * Get another pagefull of userspace buffer, and map it to kernel
712 * address space, and lock request
714 static int fuse_copy_fill(struct fuse_copy_state *cs)
719 unlock_request(cs->fc, cs->req);
720 fuse_copy_finish(cs);
722 struct pipe_buffer *buf = cs->pipebufs;
725 err = buf->ops->confirm(cs->pipe, buf);
729 BUG_ON(!cs->nr_segs);
732 cs->offset = buf->offset;
737 if (cs->nr_segs == cs->pipe->buffers)
740 page = alloc_page(GFP_HIGHUSER);
757 BUG_ON(!cs->nr_segs);
758 cs->seglen = cs->iov[0].iov_len;
759 cs->addr = (unsigned long) cs->iov[0].iov_base;
763 err = get_user_pages_fast(cs->addr, 1, cs->write, &page);
768 cs->offset = cs->addr % PAGE_SIZE;
769 cs->len = min(PAGE_SIZE - cs->offset, cs->seglen);
770 cs->seglen -= cs->len;
774 return lock_request(cs->fc, cs->req);
777 /* Do as much copy to/from userspace buffer as we can */
778 static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
780 unsigned ncpy = min(*size, cs->len);
782 void *pgaddr = kmap_atomic(cs->pg);
783 void *buf = pgaddr + cs->offset;
786 memcpy(buf, *val, ncpy);
788 memcpy(*val, buf, ncpy);
790 kunmap_atomic(pgaddr);
799 static int fuse_check_page(struct page *page)
801 if (page_mapcount(page) ||
802 page->mapping != NULL ||
803 page_count(page) != 1 ||
804 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
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);
818 static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
821 struct page *oldpage = *pagep;
822 struct page *newpage;
823 struct pipe_buffer *buf = cs->pipebufs;
825 unlock_request(cs->fc, cs->req);
826 fuse_copy_finish(cs);
828 err = buf->ops->confirm(cs->pipe, buf);
832 BUG_ON(!cs->nr_segs);
838 if (cs->len != PAGE_SIZE)
841 if (buf->ops->steal(cs->pipe, buf) != 0)
846 if (WARN_ON(!PageUptodate(newpage)))
849 ClearPageMappedToDisk(newpage);
851 if (fuse_check_page(newpage) != 0)
852 goto out_fallback_unlock;
855 * This is a new and locked page, it shouldn't be mapped or
856 * have any special flags on it
858 if (WARN_ON(page_mapped(oldpage)))
859 goto out_fallback_unlock;
860 if (WARN_ON(page_has_private(oldpage)))
861 goto out_fallback_unlock;
862 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
863 goto out_fallback_unlock;
864 if (WARN_ON(PageMlocked(oldpage)))
865 goto out_fallback_unlock;
867 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
869 unlock_page(newpage);
873 page_cache_get(newpage);
875 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
876 lru_cache_add_file(newpage);
879 spin_lock(&cs->fc->lock);
880 if (cs->req->aborted)
884 spin_unlock(&cs->fc->lock);
887 unlock_page(newpage);
888 page_cache_release(newpage);
892 unlock_page(oldpage);
893 page_cache_release(oldpage);
899 unlock_page(newpage);
902 cs->offset = buf->offset;
904 err = lock_request(cs->fc, cs->req);
911 static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
912 unsigned offset, unsigned count)
914 struct pipe_buffer *buf;
916 if (cs->nr_segs == cs->pipe->buffers)
919 unlock_request(cs->fc, cs->req);
920 fuse_copy_finish(cs);
923 page_cache_get(page);
925 buf->offset = offset;
936 * Copy a page in the request to/from the userspace buffer. Must be
939 static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
940 unsigned offset, unsigned count, int zeroing)
943 struct page *page = *pagep;
945 if (page && zeroing && count < PAGE_SIZE)
946 clear_highpage(page);
949 if (cs->write && cs->pipebufs && page) {
950 return fuse_ref_page(cs, page, offset, count);
951 } else if (!cs->len) {
952 if (cs->move_pages && page &&
953 offset == 0 && count == PAGE_SIZE) {
954 err = fuse_try_move_page(cs, pagep);
958 err = fuse_copy_fill(cs);
964 void *mapaddr = kmap_atomic(page);
965 void *buf = mapaddr + offset;
966 offset += fuse_copy_do(cs, &buf, &count);
967 kunmap_atomic(mapaddr);
969 offset += fuse_copy_do(cs, NULL, &count);
971 if (page && !cs->write)
972 flush_dcache_page(page);
976 /* Copy pages in the request to/from userspace buffer */
977 static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
981 struct fuse_req *req = cs->req;
983 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
985 unsigned offset = req->page_descs[i].offset;
986 unsigned count = min(nbytes, req->page_descs[i].length);
988 err = fuse_copy_page(cs, &req->pages[i], offset, count,
998 /* Copy a single argument in the request to/from userspace buffer */
999 static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1003 int err = fuse_copy_fill(cs);
1007 fuse_copy_do(cs, &val, &size);
1012 /* Copy request arguments to/from userspace buffer */
1013 static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1014 unsigned argpages, struct fuse_arg *args,
1020 for (i = 0; !err && i < numargs; i++) {
1021 struct fuse_arg *arg = &args[i];
1022 if (i == numargs - 1 && argpages)
1023 err = fuse_copy_pages(cs, arg->size, zeroing);
1025 err = fuse_copy_one(cs, arg->value, arg->size);
1030 static int forget_pending(struct fuse_conn *fc)
1032 return fc->forget_list_head.next != NULL;
1035 static int request_pending(struct fuse_conn *fc)
1037 return !list_empty(&fc->pending) || !list_empty(&fc->interrupts) ||
1041 /* Wait until a request is available on the pending list */
1042 static void request_wait(struct fuse_conn *fc)
1043 __releases(fc->lock)
1044 __acquires(fc->lock)
1046 DECLARE_WAITQUEUE(wait, current);
1048 add_wait_queue_exclusive(&fc->waitq, &wait);
1049 while (fc->connected && !request_pending(fc)) {
1050 set_current_state(TASK_INTERRUPTIBLE);
1051 if (signal_pending(current))
1054 spin_unlock(&fc->lock);
1056 spin_lock(&fc->lock);
1058 set_current_state(TASK_RUNNING);
1059 remove_wait_queue(&fc->waitq, &wait);
1063 * Transfer an interrupt request to userspace
1065 * Unlike other requests this is assembled on demand, without a need
1066 * to allocate a separate fuse_req structure.
1068 * Called with fc->lock held, releases it
1070 static int fuse_read_interrupt(struct fuse_conn *fc, struct fuse_copy_state *cs,
1071 size_t nbytes, struct fuse_req *req)
1072 __releases(fc->lock)
1074 struct fuse_in_header ih;
1075 struct fuse_interrupt_in arg;
1076 unsigned reqsize = sizeof(ih) + sizeof(arg);
1079 list_del_init(&req->intr_entry);
1080 req->intr_unique = fuse_get_unique(fc);
1081 memset(&ih, 0, sizeof(ih));
1082 memset(&arg, 0, sizeof(arg));
1084 ih.opcode = FUSE_INTERRUPT;
1085 ih.unique = req->intr_unique;
1086 arg.unique = req->in.h.unique;
1088 spin_unlock(&fc->lock);
1089 if (nbytes < reqsize)
1092 err = fuse_copy_one(cs, &ih, sizeof(ih));
1094 err = fuse_copy_one(cs, &arg, sizeof(arg));
1095 fuse_copy_finish(cs);
1097 return err ? err : reqsize;
1100 static struct fuse_forget_link *dequeue_forget(struct fuse_conn *fc,
1104 struct fuse_forget_link *head = fc->forget_list_head.next;
1105 struct fuse_forget_link **newhead = &head;
1108 for (count = 0; *newhead != NULL && count < max; count++)
1109 newhead = &(*newhead)->next;
1111 fc->forget_list_head.next = *newhead;
1113 if (fc->forget_list_head.next == NULL)
1114 fc->forget_list_tail = &fc->forget_list_head;
1122 static int fuse_read_single_forget(struct fuse_conn *fc,
1123 struct fuse_copy_state *cs,
1125 __releases(fc->lock)
1128 struct fuse_forget_link *forget = dequeue_forget(fc, 1, NULL);
1129 struct fuse_forget_in arg = {
1130 .nlookup = forget->forget_one.nlookup,
1132 struct fuse_in_header ih = {
1133 .opcode = FUSE_FORGET,
1134 .nodeid = forget->forget_one.nodeid,
1135 .unique = fuse_get_unique(fc),
1136 .len = sizeof(ih) + sizeof(arg),
1139 spin_unlock(&fc->lock);
1141 if (nbytes < ih.len)
1144 err = fuse_copy_one(cs, &ih, sizeof(ih));
1146 err = fuse_copy_one(cs, &arg, sizeof(arg));
1147 fuse_copy_finish(cs);
1155 static int fuse_read_batch_forget(struct fuse_conn *fc,
1156 struct fuse_copy_state *cs, size_t nbytes)
1157 __releases(fc->lock)
1160 unsigned max_forgets;
1162 struct fuse_forget_link *head;
1163 struct fuse_batch_forget_in arg = { .count = 0 };
1164 struct fuse_in_header ih = {
1165 .opcode = FUSE_BATCH_FORGET,
1166 .unique = fuse_get_unique(fc),
1167 .len = sizeof(ih) + sizeof(arg),
1170 if (nbytes < ih.len) {
1171 spin_unlock(&fc->lock);
1175 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
1176 head = dequeue_forget(fc, max_forgets, &count);
1177 spin_unlock(&fc->lock);
1180 ih.len += count * sizeof(struct fuse_forget_one);
1181 err = fuse_copy_one(cs, &ih, sizeof(ih));
1183 err = fuse_copy_one(cs, &arg, sizeof(arg));
1186 struct fuse_forget_link *forget = head;
1189 err = fuse_copy_one(cs, &forget->forget_one,
1190 sizeof(forget->forget_one));
1192 head = forget->next;
1196 fuse_copy_finish(cs);
1204 static int fuse_read_forget(struct fuse_conn *fc, struct fuse_copy_state *cs,
1206 __releases(fc->lock)
1208 if (fc->minor < 16 || fc->forget_list_head.next->next == NULL)
1209 return fuse_read_single_forget(fc, cs, nbytes);
1211 return fuse_read_batch_forget(fc, cs, nbytes);
1215 * Read a single request into the userspace filesystem's buffer. This
1216 * function waits until a request is available, then removes it from
1217 * the pending list and copies request data to userspace buffer. If
1218 * no reply is needed (FORGET) or request has been aborted or there
1219 * was an error during the copying then it's finished by calling
1220 * request_end(). Otherwise add it to the processing list, and set
1223 static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1224 struct fuse_copy_state *cs, size_t nbytes)
1227 struct fuse_req *req;
1232 spin_lock(&fc->lock);
1234 if ((file->f_flags & O_NONBLOCK) && fc->connected &&
1235 !request_pending(fc))
1243 if (!request_pending(fc))
1246 if (!list_empty(&fc->interrupts)) {
1247 req = list_entry(fc->interrupts.next, struct fuse_req,
1249 return fuse_read_interrupt(fc, cs, nbytes, req);
1252 if (forget_pending(fc)) {
1253 if (list_empty(&fc->pending) || fc->forget_batch-- > 0)
1254 return fuse_read_forget(fc, cs, nbytes);
1256 if (fc->forget_batch <= -8)
1257 fc->forget_batch = 16;
1260 req = list_entry(fc->pending.next, struct fuse_req, list);
1261 req->state = FUSE_REQ_READING;
1262 list_move(&req->list, &fc->io);
1265 reqsize = in->h.len;
1266 /* If request is too large, reply with an error and restart the read */
1267 if (nbytes < reqsize) {
1268 req->out.h.error = -EIO;
1269 /* SETXATTR is special, since it may contain too large data */
1270 if (in->h.opcode == FUSE_SETXATTR)
1271 req->out.h.error = -E2BIG;
1272 request_end(fc, req);
1275 spin_unlock(&fc->lock);
1277 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
1279 err = fuse_copy_args(cs, in->numargs, in->argpages,
1280 (struct fuse_arg *) in->args, 0);
1281 fuse_copy_finish(cs);
1282 spin_lock(&fc->lock);
1285 request_end(fc, req);
1289 req->out.h.error = -EIO;
1290 request_end(fc, req);
1294 request_end(fc, req);
1296 req->state = FUSE_REQ_SENT;
1297 list_move_tail(&req->list, &fc->processing);
1298 if (req->interrupted)
1299 queue_interrupt(fc, req);
1300 spin_unlock(&fc->lock);
1305 spin_unlock(&fc->lock);
1309 static ssize_t fuse_dev_read(struct kiocb *iocb, const struct iovec *iov,
1310 unsigned long nr_segs, loff_t pos)
1312 struct fuse_copy_state cs;
1313 struct file *file = iocb->ki_filp;
1314 struct fuse_conn *fc = fuse_get_conn(file);
1318 fuse_copy_init(&cs, fc, 1, iov, nr_segs);
1320 return fuse_dev_do_read(fc, file, &cs, iov_length(iov, nr_segs));
1323 static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1324 struct pipe_inode_info *pipe,
1325 size_t len, unsigned int flags)
1330 struct pipe_buffer *bufs;
1331 struct fuse_copy_state cs;
1332 struct fuse_conn *fc = fuse_get_conn(in);
1336 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
1340 fuse_copy_init(&cs, fc, 1, NULL, 0);
1343 ret = fuse_dev_do_read(fc, in, &cs, len);
1350 if (!pipe->readers) {
1351 send_sig(SIGPIPE, current, 0);
1357 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1362 while (page_nr < cs.nr_segs) {
1363 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1364 struct pipe_buffer *buf = pipe->bufs + newbuf;
1366 buf->page = bufs[page_nr].page;
1367 buf->offset = bufs[page_nr].offset;
1368 buf->len = bufs[page_nr].len;
1370 * Need to be careful about this. Having buf->ops in module
1371 * code can Oops if the buffer persists after module unload.
1373 buf->ops = &nosteal_pipe_buf_ops;
1388 if (waitqueue_active(&pipe->wait))
1389 wake_up_interruptible(&pipe->wait);
1390 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1394 for (; page_nr < cs.nr_segs; page_nr++)
1395 page_cache_release(bufs[page_nr].page);
1401 static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1402 struct fuse_copy_state *cs)
1404 struct fuse_notify_poll_wakeup_out outarg;
1407 if (size != sizeof(outarg))
1410 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1414 fuse_copy_finish(cs);
1415 return fuse_notify_poll_wakeup(fc, &outarg);
1418 fuse_copy_finish(cs);
1422 static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1423 struct fuse_copy_state *cs)
1425 struct fuse_notify_inval_inode_out outarg;
1428 if (size != sizeof(outarg))
1431 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1434 fuse_copy_finish(cs);
1436 down_read(&fc->killsb);
1439 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1440 outarg.off, outarg.len);
1442 up_read(&fc->killsb);
1446 fuse_copy_finish(cs);
1450 static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1451 struct fuse_copy_state *cs)
1453 struct fuse_notify_inval_entry_out outarg;
1458 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1463 if (size < sizeof(outarg))
1466 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1470 err = -ENAMETOOLONG;
1471 if (outarg.namelen > FUSE_NAME_MAX)
1475 if (size != sizeof(outarg) + outarg.namelen + 1)
1479 name.len = outarg.namelen;
1480 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1483 fuse_copy_finish(cs);
1484 buf[outarg.namelen] = 0;
1485 name.hash = full_name_hash(name.name, name.len);
1487 down_read(&fc->killsb);
1490 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1491 up_read(&fc->killsb);
1497 fuse_copy_finish(cs);
1501 static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1502 struct fuse_copy_state *cs)
1504 struct fuse_notify_delete_out outarg;
1509 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1514 if (size < sizeof(outarg))
1517 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1521 err = -ENAMETOOLONG;
1522 if (outarg.namelen > FUSE_NAME_MAX)
1526 if (size != sizeof(outarg) + outarg.namelen + 1)
1530 name.len = outarg.namelen;
1531 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1534 fuse_copy_finish(cs);
1535 buf[outarg.namelen] = 0;
1536 name.hash = full_name_hash(name.name, name.len);
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_CACHE_SHIFT;
1593 offset = outarg.offset & ~PAGE_CACHE_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_CACHE_SIZE - offset);
1613 err = fuse_copy_page(cs, &page, offset, this_num, 0);
1614 if (!err && offset == 0 &&
1615 (this_num == PAGE_CACHE_SIZE || file_size == end))
1616 SetPageUptodate(page);
1618 page_cache_release(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, false);
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_CACHE_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_CACHE_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_CACHE_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)
1754 case FUSE_NOTIFY_POLL:
1755 return fuse_notify_poll(fc, size, cs);
1757 case FUSE_NOTIFY_INVAL_INODE:
1758 return fuse_notify_inval_inode(fc, size, cs);
1760 case FUSE_NOTIFY_INVAL_ENTRY:
1761 return fuse_notify_inval_entry(fc, size, cs);
1763 case FUSE_NOTIFY_STORE:
1764 return fuse_notify_store(fc, size, cs);
1766 case FUSE_NOTIFY_RETRIEVE:
1767 return fuse_notify_retrieve(fc, size, cs);
1769 case FUSE_NOTIFY_DELETE:
1770 return fuse_notify_delete(fc, size, cs);
1773 fuse_copy_finish(cs);
1778 /* Look up request on processing list by unique ID */
1779 static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique)
1781 struct fuse_req *req;
1783 list_for_each_entry(req, &fc->processing, list) {
1784 if (req->in.h.unique == unique || req->intr_unique == unique)
1790 static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1793 unsigned reqsize = sizeof(struct fuse_out_header);
1796 return nbytes != reqsize ? -EINVAL : 0;
1798 reqsize += len_args(out->numargs, out->args);
1800 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1802 else if (reqsize > nbytes) {
1803 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1804 unsigned diffsize = reqsize - nbytes;
1805 if (diffsize > lastarg->size)
1807 lastarg->size -= diffsize;
1809 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1814 * Write a single reply to a request. First the header is copied from
1815 * the write buffer. The request is then searched on the processing
1816 * list by the unique ID found in the header. If found, then remove
1817 * it from the list and copy the rest of the buffer to the request.
1818 * The request is finished by calling request_end()
1820 static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1821 struct fuse_copy_state *cs, size_t nbytes)
1824 struct fuse_req *req;
1825 struct fuse_out_header oh;
1827 if (nbytes < sizeof(struct fuse_out_header))
1830 err = fuse_copy_one(cs, &oh, sizeof(oh));
1835 if (oh.len != nbytes)
1839 * Zero oh.unique indicates unsolicited notification message
1840 * and error contains notification code.
1843 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
1844 return err ? err : nbytes;
1848 if (oh.error <= -1000 || oh.error > 0)
1851 spin_lock(&fc->lock);
1856 req = request_find(fc, oh.unique);
1861 spin_unlock(&fc->lock);
1862 fuse_copy_finish(cs);
1863 spin_lock(&fc->lock);
1864 request_end(fc, req);
1867 /* Is it an interrupt reply? */
1868 if (req->intr_unique == oh.unique) {
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, req);
1878 spin_unlock(&fc->lock);
1879 fuse_copy_finish(cs);
1883 req->state = FUSE_REQ_WRITING;
1884 list_move(&req->list, &fc->io);
1888 if (!req->out.page_replace)
1890 spin_unlock(&fc->lock);
1892 err = copy_out_args(cs, &req->out, nbytes);
1893 fuse_copy_finish(cs);
1895 spin_lock(&fc->lock);
1900 } else if (!req->aborted)
1901 req->out.h.error = -EIO;
1902 request_end(fc, req);
1904 return err ? err : nbytes;
1907 spin_unlock(&fc->lock);
1909 fuse_copy_finish(cs);
1913 static ssize_t fuse_dev_write(struct kiocb *iocb, const struct iovec *iov,
1914 unsigned long nr_segs, loff_t pos)
1916 struct fuse_copy_state cs;
1917 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1921 fuse_copy_init(&cs, fc, 0, iov, nr_segs);
1923 return fuse_dev_do_write(fc, &cs, iov_length(iov, nr_segs));
1926 static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1927 struct file *out, loff_t *ppos,
1928 size_t len, unsigned int flags)
1932 struct pipe_buffer *bufs;
1933 struct fuse_copy_state cs;
1934 struct fuse_conn *fc;
1938 fc = fuse_get_conn(out);
1942 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
1949 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
1950 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
1960 struct pipe_buffer *ibuf;
1961 struct pipe_buffer *obuf;
1963 BUG_ON(nbuf >= pipe->buffers);
1964 BUG_ON(!pipe->nrbufs);
1965 ibuf = &pipe->bufs[pipe->curbuf];
1968 if (rem >= ibuf->len) {
1971 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
1974 ibuf->ops->get(pipe, ibuf);
1976 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1978 ibuf->offset += obuf->len;
1979 ibuf->len -= obuf->len;
1986 fuse_copy_init(&cs, fc, 0, NULL, nbuf);
1990 if (flags & SPLICE_F_MOVE)
1993 ret = fuse_dev_do_write(fc, &cs, len);
1995 for (idx = 0; idx < nbuf; idx++) {
1996 struct pipe_buffer *buf = &bufs[idx];
1997 buf->ops->release(pipe, buf);
2004 static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
2006 unsigned mask = POLLOUT | POLLWRNORM;
2007 struct fuse_conn *fc = fuse_get_conn(file);
2011 poll_wait(file, &fc->waitq, wait);
2013 spin_lock(&fc->lock);
2016 else if (request_pending(fc))
2017 mask |= POLLIN | POLLRDNORM;
2018 spin_unlock(&fc->lock);
2024 * Abort all requests on the given list (pending or processing)
2026 * This function releases and reacquires fc->lock
2028 static void end_requests(struct fuse_conn *fc, struct list_head *head)
2029 __releases(fc->lock)
2030 __acquires(fc->lock)
2032 while (!list_empty(head)) {
2033 struct fuse_req *req;
2034 req = list_entry(head->next, struct fuse_req, list);
2035 req->out.h.error = -ECONNABORTED;
2036 request_end(fc, req);
2037 spin_lock(&fc->lock);
2042 * Abort requests under I/O
2044 * The requests are set to aborted and finished, and the request
2045 * waiter is woken up. This will make request_wait_answer() wait
2046 * until the request is unlocked and then return.
2048 * If the request is asynchronous, then the end function needs to be
2049 * called after waiting for the request to be unlocked (if it was
2052 static void end_io_requests(struct fuse_conn *fc)
2053 __releases(fc->lock)
2054 __acquires(fc->lock)
2056 while (!list_empty(&fc->io)) {
2057 struct fuse_req *req =
2058 list_entry(fc->io.next, struct fuse_req, list);
2059 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
2062 req->out.h.error = -ECONNABORTED;
2063 req->state = FUSE_REQ_FINISHED;
2064 list_del_init(&req->list);
2065 wake_up(&req->waitq);
2068 __fuse_get_request(req);
2069 spin_unlock(&fc->lock);
2070 wait_event(req->waitq, !req->locked);
2072 fuse_put_request(fc, req);
2073 spin_lock(&fc->lock);
2078 static void end_queued_requests(struct fuse_conn *fc)
2079 __releases(fc->lock)
2080 __acquires(fc->lock)
2082 fc->max_background = UINT_MAX;
2084 end_requests(fc, &fc->pending);
2085 end_requests(fc, &fc->processing);
2086 while (forget_pending(fc))
2087 kfree(dequeue_forget(fc, 1, NULL));
2090 static void end_polls(struct fuse_conn *fc)
2094 p = rb_first(&fc->polled_files);
2097 struct fuse_file *ff;
2098 ff = rb_entry(p, struct fuse_file, polled_node);
2099 wake_up_interruptible_all(&ff->poll_wait);
2106 * Abort all requests.
2108 * Emergency exit in case of a malicious or accidental deadlock, or
2109 * just a hung filesystem.
2111 * The same effect is usually achievable through killing the
2112 * filesystem daemon and all users of the filesystem. The exception
2113 * is the combination of an asynchronous request and the tricky
2114 * deadlock (see Documentation/filesystems/fuse.txt).
2116 * During the aborting, progression of requests from the pending and
2117 * processing lists onto the io list, and progression of new requests
2118 * onto the pending list is prevented by req->connected being false.
2120 * Progression of requests under I/O to the processing list is
2121 * prevented by the req->aborted flag being true for these requests.
2122 * For this reason requests on the io list must be aborted first.
2124 void fuse_abort_conn(struct fuse_conn *fc)
2126 spin_lock(&fc->lock);
2127 if (fc->connected) {
2130 fc->initialized = 1;
2131 end_io_requests(fc);
2132 end_queued_requests(fc);
2134 wake_up_all(&fc->waitq);
2135 wake_up_all(&fc->blocked_waitq);
2136 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
2138 spin_unlock(&fc->lock);
2140 EXPORT_SYMBOL_GPL(fuse_abort_conn);
2142 int fuse_dev_release(struct inode *inode, struct file *file)
2144 struct fuse_conn *fc = fuse_get_conn(file);
2146 spin_lock(&fc->lock);
2149 fc->initialized = 1;
2150 end_queued_requests(fc);
2152 wake_up_all(&fc->blocked_waitq);
2153 spin_unlock(&fc->lock);
2159 EXPORT_SYMBOL_GPL(fuse_dev_release);
2161 static int fuse_dev_fasync(int fd, struct file *file, int on)
2163 struct fuse_conn *fc = fuse_get_conn(file);
2167 /* No locking - fasync_helper does its own locking */
2168 return fasync_helper(fd, file, on, &fc->fasync);
2171 const struct file_operations fuse_dev_operations = {
2172 .owner = THIS_MODULE,
2173 .llseek = no_llseek,
2174 .read = do_sync_read,
2175 .aio_read = fuse_dev_read,
2176 .splice_read = fuse_dev_splice_read,
2177 .write = do_sync_write,
2178 .aio_write = fuse_dev_write,
2179 .splice_write = fuse_dev_splice_write,
2180 .poll = fuse_dev_poll,
2181 .release = fuse_dev_release,
2182 .fasync = fuse_dev_fasync,
2184 EXPORT_SYMBOL_GPL(fuse_dev_operations);
2186 static struct miscdevice fuse_miscdevice = {
2187 .minor = FUSE_MINOR,
2189 .fops = &fuse_dev_operations,
2192 int __init fuse_dev_init(void)
2195 fuse_req_cachep = kmem_cache_create("fuse_request",
2196 sizeof(struct fuse_req),
2198 if (!fuse_req_cachep)
2201 err = misc_register(&fuse_miscdevice);
2203 goto out_cache_clean;
2208 kmem_cache_destroy(fuse_req_cachep);
2213 void fuse_dev_cleanup(void)
2215 misc_deregister(&fuse_miscdevice);
2216 kmem_cache_destroy(fuse_req_cachep);