2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
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>
23 MODULE_ALIAS_MISCDEV(FUSE_MINOR
);
24 MODULE_ALIAS("devname:fuse");
26 static struct kmem_cache
*fuse_req_cachep
;
28 static struct fuse_conn
*fuse_get_conn(struct file
*file
)
31 * Lockless access is OK, because file->private data is set
32 * once during mount and is valid until the file is released.
34 return file
->private_data
;
37 static void fuse_request_init(struct fuse_req
*req
)
39 memset(req
, 0, sizeof(*req
));
40 INIT_LIST_HEAD(&req
->list
);
41 INIT_LIST_HEAD(&req
->intr_entry
);
42 init_waitqueue_head(&req
->waitq
);
43 atomic_set(&req
->count
, 1);
46 struct fuse_req
*fuse_request_alloc(void)
48 struct fuse_req
*req
= kmem_cache_alloc(fuse_req_cachep
, GFP_KERNEL
);
50 fuse_request_init(req
);
53 EXPORT_SYMBOL_GPL(fuse_request_alloc
);
55 struct fuse_req
*fuse_request_alloc_nofs(void)
57 struct fuse_req
*req
= kmem_cache_alloc(fuse_req_cachep
, GFP_NOFS
);
59 fuse_request_init(req
);
63 void fuse_request_free(struct fuse_req
*req
)
65 kmem_cache_free(fuse_req_cachep
, req
);
68 static void block_sigs(sigset_t
*oldset
)
72 siginitsetinv(&mask
, sigmask(SIGKILL
));
73 sigprocmask(SIG_BLOCK
, &mask
, oldset
);
76 static void restore_sigs(sigset_t
*oldset
)
78 sigprocmask(SIG_SETMASK
, oldset
, NULL
);
81 static void __fuse_get_request(struct fuse_req
*req
)
83 atomic_inc(&req
->count
);
86 /* Must be called with > 1 refcount */
87 static void __fuse_put_request(struct fuse_req
*req
)
89 BUG_ON(atomic_read(&req
->count
) < 2);
90 atomic_dec(&req
->count
);
93 static void fuse_req_init_context(struct fuse_req
*req
)
95 req
->in
.h
.uid
= current_fsuid();
96 req
->in
.h
.gid
= current_fsgid();
97 req
->in
.h
.pid
= current
->pid
;
100 struct fuse_req
*fuse_get_req(struct fuse_conn
*fc
)
102 struct fuse_req
*req
;
107 atomic_inc(&fc
->num_waiting
);
109 intr
= wait_event_interruptible(fc
->blocked_waitq
, !fc
->blocked
);
110 restore_sigs(&oldset
);
119 req
= fuse_request_alloc();
124 fuse_req_init_context(req
);
129 atomic_dec(&fc
->num_waiting
);
132 EXPORT_SYMBOL_GPL(fuse_get_req
);
135 * Return request in fuse_file->reserved_req. However that may
136 * currently be in use. If that is the case, wait for it to become
139 static struct fuse_req
*get_reserved_req(struct fuse_conn
*fc
,
142 struct fuse_req
*req
= NULL
;
143 struct fuse_file
*ff
= file
->private_data
;
146 wait_event(fc
->reserved_req_waitq
, ff
->reserved_req
);
147 spin_lock(&fc
->lock
);
148 if (ff
->reserved_req
) {
149 req
= ff
->reserved_req
;
150 ff
->reserved_req
= NULL
;
152 req
->stolen_file
= file
;
154 spin_unlock(&fc
->lock
);
161 * Put stolen request back into fuse_file->reserved_req
163 static void put_reserved_req(struct fuse_conn
*fc
, struct fuse_req
*req
)
165 struct file
*file
= req
->stolen_file
;
166 struct fuse_file
*ff
= file
->private_data
;
168 spin_lock(&fc
->lock
);
169 fuse_request_init(req
);
170 BUG_ON(ff
->reserved_req
);
171 ff
->reserved_req
= req
;
172 wake_up_all(&fc
->reserved_req_waitq
);
173 spin_unlock(&fc
->lock
);
178 * Gets a requests for a file operation, always succeeds
180 * This is used for sending the FLUSH request, which must get to
181 * userspace, due to POSIX locks which may need to be unlocked.
183 * If allocation fails due to OOM, use the reserved request in
186 * This is very unlikely to deadlock accidentally, since the
187 * filesystem should not have it's own file open. If deadlock is
188 * intentional, it can still be broken by "aborting" the filesystem.
190 struct fuse_req
*fuse_get_req_nofail(struct fuse_conn
*fc
, struct file
*file
)
192 struct fuse_req
*req
;
194 atomic_inc(&fc
->num_waiting
);
195 wait_event(fc
->blocked_waitq
, !fc
->blocked
);
196 req
= fuse_request_alloc();
198 req
= get_reserved_req(fc
, file
);
200 fuse_req_init_context(req
);
205 void fuse_put_request(struct fuse_conn
*fc
, struct fuse_req
*req
)
207 if (atomic_dec_and_test(&req
->count
)) {
209 atomic_dec(&fc
->num_waiting
);
211 if (req
->stolen_file
)
212 put_reserved_req(fc
, req
);
214 fuse_request_free(req
);
217 EXPORT_SYMBOL_GPL(fuse_put_request
);
219 static unsigned len_args(unsigned numargs
, struct fuse_arg
*args
)
224 for (i
= 0; i
< numargs
; i
++)
225 nbytes
+= args
[i
].size
;
230 static u64
fuse_get_unique(struct fuse_conn
*fc
)
233 /* zero is special */
240 static void queue_request(struct fuse_conn
*fc
, struct fuse_req
*req
)
242 req
->in
.h
.len
= sizeof(struct fuse_in_header
) +
243 len_args(req
->in
.numargs
, (struct fuse_arg
*) req
->in
.args
);
244 list_add_tail(&req
->list
, &fc
->pending
);
245 req
->state
= FUSE_REQ_PENDING
;
248 atomic_inc(&fc
->num_waiting
);
251 kill_fasync(&fc
->fasync
, SIGIO
, POLL_IN
);
254 static void flush_bg_queue(struct fuse_conn
*fc
)
256 while (fc
->active_background
< fc
->max_background
&&
257 !list_empty(&fc
->bg_queue
)) {
258 struct fuse_req
*req
;
260 req
= list_entry(fc
->bg_queue
.next
, struct fuse_req
, list
);
261 list_del(&req
->list
);
262 fc
->active_background
++;
263 req
->in
.h
.unique
= fuse_get_unique(fc
);
264 queue_request(fc
, req
);
269 * This function is called when a request is finished. Either a reply
270 * has arrived or it was aborted (and not yet sent) or some error
271 * occurred during communication with userspace, or the device file
272 * was closed. The requester thread is woken up (if still waiting),
273 * the 'end' callback is called if given, else the reference to the
274 * request is released
276 * Called with fc->lock, unlocks it
278 static void request_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
281 void (*end
) (struct fuse_conn
*, struct fuse_req
*) = req
->end
;
283 list_del(&req
->list
);
284 list_del(&req
->intr_entry
);
285 req
->state
= FUSE_REQ_FINISHED
;
286 if (req
->background
) {
287 if (fc
->num_background
== fc
->max_background
) {
289 wake_up_all(&fc
->blocked_waitq
);
291 if (fc
->num_background
== fc
->congestion_threshold
&&
292 fc
->connected
&& fc
->bdi_initialized
) {
293 clear_bdi_congested(&fc
->bdi
, BLK_RW_SYNC
);
294 clear_bdi_congested(&fc
->bdi
, BLK_RW_ASYNC
);
296 fc
->num_background
--;
297 fc
->active_background
--;
300 spin_unlock(&fc
->lock
);
301 wake_up(&req
->waitq
);
304 fuse_put_request(fc
, req
);
307 static void wait_answer_interruptible(struct fuse_conn
*fc
,
308 struct fuse_req
*req
)
312 if (signal_pending(current
))
315 spin_unlock(&fc
->lock
);
316 wait_event_interruptible(req
->waitq
, req
->state
== FUSE_REQ_FINISHED
);
317 spin_lock(&fc
->lock
);
320 static void queue_interrupt(struct fuse_conn
*fc
, struct fuse_req
*req
)
322 list_add_tail(&req
->intr_entry
, &fc
->interrupts
);
324 kill_fasync(&fc
->fasync
, SIGIO
, POLL_IN
);
327 static void request_wait_answer(struct fuse_conn
*fc
, struct fuse_req
*req
)
331 if (!fc
->no_interrupt
) {
332 /* Any signal may interrupt this */
333 wait_answer_interruptible(fc
, req
);
337 if (req
->state
== FUSE_REQ_FINISHED
)
340 req
->interrupted
= 1;
341 if (req
->state
== FUSE_REQ_SENT
)
342 queue_interrupt(fc
, req
);
348 /* Only fatal signals may interrupt this */
350 wait_answer_interruptible(fc
, req
);
351 restore_sigs(&oldset
);
355 if (req
->state
== FUSE_REQ_FINISHED
)
358 /* Request is not yet in userspace, bail out */
359 if (req
->state
== FUSE_REQ_PENDING
) {
360 list_del(&req
->list
);
361 __fuse_put_request(req
);
362 req
->out
.h
.error
= -EINTR
;
368 * Either request is already in userspace, or it was forced.
371 spin_unlock(&fc
->lock
);
372 wait_event(req
->waitq
, req
->state
== FUSE_REQ_FINISHED
);
373 spin_lock(&fc
->lock
);
379 BUG_ON(req
->state
!= FUSE_REQ_FINISHED
);
381 /* This is uninterruptible sleep, because data is
382 being copied to/from the buffers of req. During
383 locked state, there mustn't be any filesystem
384 operation (e.g. page fault), since that could lead
386 spin_unlock(&fc
->lock
);
387 wait_event(req
->waitq
, !req
->locked
);
388 spin_lock(&fc
->lock
);
392 void fuse_request_send(struct fuse_conn
*fc
, struct fuse_req
*req
)
395 spin_lock(&fc
->lock
);
397 req
->out
.h
.error
= -ENOTCONN
;
398 else if (fc
->conn_error
)
399 req
->out
.h
.error
= -ECONNREFUSED
;
401 req
->in
.h
.unique
= fuse_get_unique(fc
);
402 queue_request(fc
, req
);
403 /* acquire extra reference, since request is still needed
404 after request_end() */
405 __fuse_get_request(req
);
407 request_wait_answer(fc
, req
);
409 spin_unlock(&fc
->lock
);
411 EXPORT_SYMBOL_GPL(fuse_request_send
);
413 static void fuse_request_send_nowait_locked(struct fuse_conn
*fc
,
414 struct fuse_req
*req
)
417 fc
->num_background
++;
418 if (fc
->num_background
== fc
->max_background
)
420 if (fc
->num_background
== fc
->congestion_threshold
&&
421 fc
->bdi_initialized
) {
422 set_bdi_congested(&fc
->bdi
, BLK_RW_SYNC
);
423 set_bdi_congested(&fc
->bdi
, BLK_RW_ASYNC
);
425 list_add_tail(&req
->list
, &fc
->bg_queue
);
429 static void fuse_request_send_nowait(struct fuse_conn
*fc
, struct fuse_req
*req
)
431 spin_lock(&fc
->lock
);
433 fuse_request_send_nowait_locked(fc
, req
);
434 spin_unlock(&fc
->lock
);
436 req
->out
.h
.error
= -ENOTCONN
;
437 request_end(fc
, req
);
441 void fuse_request_send_noreply(struct fuse_conn
*fc
, struct fuse_req
*req
)
444 fuse_request_send_nowait(fc
, req
);
447 void fuse_request_send_background(struct fuse_conn
*fc
, struct fuse_req
*req
)
450 fuse_request_send_nowait(fc
, req
);
452 EXPORT_SYMBOL_GPL(fuse_request_send_background
);
454 static int fuse_request_send_notify_reply(struct fuse_conn
*fc
,
455 struct fuse_req
*req
, u64 unique
)
460 req
->in
.h
.unique
= unique
;
461 spin_lock(&fc
->lock
);
463 queue_request(fc
, req
);
466 spin_unlock(&fc
->lock
);
472 * Called under fc->lock
474 * fc->connected must have been checked previously
476 void fuse_request_send_background_locked(struct fuse_conn
*fc
,
477 struct fuse_req
*req
)
480 fuse_request_send_nowait_locked(fc
, req
);
484 * Lock the request. Up to the next unlock_request() there mustn't be
485 * anything that could cause a page-fault. If the request was already
488 static int lock_request(struct fuse_conn
*fc
, struct fuse_req
*req
)
492 spin_lock(&fc
->lock
);
497 spin_unlock(&fc
->lock
);
503 * Unlock request. If it was aborted during being locked, the
504 * requester thread is currently waiting for it to be unlocked, so
507 static void unlock_request(struct fuse_conn
*fc
, struct fuse_req
*req
)
510 spin_lock(&fc
->lock
);
513 wake_up(&req
->waitq
);
514 spin_unlock(&fc
->lock
);
518 struct fuse_copy_state
{
519 struct fuse_conn
*fc
;
521 struct fuse_req
*req
;
522 const struct iovec
*iov
;
523 struct pipe_buffer
*pipebufs
;
524 struct pipe_buffer
*currbuf
;
525 struct pipe_inode_info
*pipe
;
526 unsigned long nr_segs
;
527 unsigned long seglen
;
533 unsigned move_pages
:1;
536 static void fuse_copy_init(struct fuse_copy_state
*cs
, struct fuse_conn
*fc
,
538 const struct iovec
*iov
, unsigned long nr_segs
)
540 memset(cs
, 0, sizeof(*cs
));
544 cs
->nr_segs
= nr_segs
;
547 /* Unmap and put previous page of userspace buffer */
548 static void fuse_copy_finish(struct fuse_copy_state
*cs
)
551 struct pipe_buffer
*buf
= cs
->currbuf
;
554 buf
->ops
->unmap(cs
->pipe
, buf
, cs
->mapaddr
);
557 buf
->len
= PAGE_SIZE
- cs
->len
;
561 } else if (cs
->mapaddr
) {
564 flush_dcache_page(cs
->pg
);
565 set_page_dirty_lock(cs
->pg
);
573 * Get another pagefull of userspace buffer, and map it to kernel
574 * address space, and lock request
576 static int fuse_copy_fill(struct fuse_copy_state
*cs
)
578 unsigned long offset
;
581 unlock_request(cs
->fc
, cs
->req
);
582 fuse_copy_finish(cs
);
584 struct pipe_buffer
*buf
= cs
->pipebufs
;
587 err
= buf
->ops
->confirm(cs
->pipe
, buf
);
591 BUG_ON(!cs
->nr_segs
);
593 cs
->mapaddr
= buf
->ops
->map(cs
->pipe
, buf
, 0);
595 cs
->buf
= cs
->mapaddr
+ buf
->offset
;
601 if (cs
->nr_segs
== cs
->pipe
->buffers
)
604 page
= alloc_page(GFP_HIGHUSER
);
613 cs
->mapaddr
= kmap(page
);
614 cs
->buf
= cs
->mapaddr
;
621 BUG_ON(!cs
->nr_segs
);
622 cs
->seglen
= cs
->iov
[0].iov_len
;
623 cs
->addr
= (unsigned long) cs
->iov
[0].iov_base
;
627 err
= get_user_pages_fast(cs
->addr
, 1, cs
->write
, &cs
->pg
);
631 offset
= cs
->addr
% PAGE_SIZE
;
632 cs
->mapaddr
= kmap(cs
->pg
);
633 cs
->buf
= cs
->mapaddr
+ offset
;
634 cs
->len
= min(PAGE_SIZE
- offset
, cs
->seglen
);
635 cs
->seglen
-= cs
->len
;
639 return lock_request(cs
->fc
, cs
->req
);
642 /* Do as much copy to/from userspace buffer as we can */
643 static int fuse_copy_do(struct fuse_copy_state
*cs
, void **val
, unsigned *size
)
645 unsigned ncpy
= min(*size
, cs
->len
);
648 memcpy(cs
->buf
, *val
, ncpy
);
650 memcpy(*val
, cs
->buf
, ncpy
);
659 static int fuse_check_page(struct page
*page
)
661 if (page_mapcount(page
) ||
662 page
->mapping
!= NULL
||
663 page_count(page
) != 1 ||
664 (page
->flags
& PAGE_FLAGS_CHECK_AT_PREP
&
671 printk(KERN_WARNING
"fuse: trying to steal weird page\n");
672 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
);
678 static int fuse_try_move_page(struct fuse_copy_state
*cs
, struct page
**pagep
)
681 struct page
*oldpage
= *pagep
;
682 struct page
*newpage
;
683 struct pipe_buffer
*buf
= cs
->pipebufs
;
684 struct address_space
*mapping
;
687 unlock_request(cs
->fc
, cs
->req
);
688 fuse_copy_finish(cs
);
690 err
= buf
->ops
->confirm(cs
->pipe
, buf
);
694 BUG_ON(!cs
->nr_segs
);
700 if (cs
->len
!= PAGE_SIZE
)
703 if (buf
->ops
->steal(cs
->pipe
, buf
) != 0)
708 if (WARN_ON(!PageUptodate(newpage
)))
711 ClearPageMappedToDisk(newpage
);
713 if (fuse_check_page(newpage
) != 0)
714 goto out_fallback_unlock
;
716 mapping
= oldpage
->mapping
;
717 index
= oldpage
->index
;
720 * This is a new and locked page, it shouldn't be mapped or
721 * have any special flags on it
723 if (WARN_ON(page_mapped(oldpage
)))
724 goto out_fallback_unlock
;
725 if (WARN_ON(page_has_private(oldpage
)))
726 goto out_fallback_unlock
;
727 if (WARN_ON(PageDirty(oldpage
) || PageWriteback(oldpage
)))
728 goto out_fallback_unlock
;
729 if (WARN_ON(PageMlocked(oldpage
)))
730 goto out_fallback_unlock
;
732 remove_from_page_cache(oldpage
);
733 page_cache_release(oldpage
);
735 err
= add_to_page_cache_locked(newpage
, mapping
, index
, GFP_KERNEL
);
737 printk(KERN_WARNING
"fuse_try_move_page: failed to add page");
738 goto out_fallback_unlock
;
740 page_cache_get(newpage
);
742 if (!(buf
->flags
& PIPE_BUF_FLAG_LRU
))
743 lru_cache_add_file(newpage
);
746 spin_lock(&cs
->fc
->lock
);
747 if (cs
->req
->aborted
)
751 spin_unlock(&cs
->fc
->lock
);
754 unlock_page(newpage
);
755 page_cache_release(newpage
);
759 unlock_page(oldpage
);
760 page_cache_release(oldpage
);
766 unlock_page(newpage
);
768 cs
->mapaddr
= buf
->ops
->map(cs
->pipe
, buf
, 1);
769 cs
->buf
= cs
->mapaddr
+ buf
->offset
;
771 err
= lock_request(cs
->fc
, cs
->req
);
778 static int fuse_ref_page(struct fuse_copy_state
*cs
, struct page
*page
,
779 unsigned offset
, unsigned count
)
781 struct pipe_buffer
*buf
;
783 if (cs
->nr_segs
== cs
->pipe
->buffers
)
786 unlock_request(cs
->fc
, cs
->req
);
787 fuse_copy_finish(cs
);
790 page_cache_get(page
);
792 buf
->offset
= offset
;
803 * Copy a page in the request to/from the userspace buffer. Must be
806 static int fuse_copy_page(struct fuse_copy_state
*cs
, struct page
**pagep
,
807 unsigned offset
, unsigned count
, int zeroing
)
810 struct page
*page
= *pagep
;
812 if (page
&& zeroing
&& count
< PAGE_SIZE
) {
813 void *mapaddr
= kmap_atomic(page
, KM_USER1
);
814 memset(mapaddr
, 0, PAGE_SIZE
);
815 kunmap_atomic(mapaddr
, KM_USER1
);
818 if (cs
->write
&& cs
->pipebufs
&& page
) {
819 return fuse_ref_page(cs
, page
, offset
, count
);
820 } else if (!cs
->len
) {
821 if (cs
->move_pages
&& page
&&
822 offset
== 0 && count
== PAGE_SIZE
) {
823 err
= fuse_try_move_page(cs
, pagep
);
827 err
= fuse_copy_fill(cs
);
833 void *mapaddr
= kmap_atomic(page
, KM_USER1
);
834 void *buf
= mapaddr
+ offset
;
835 offset
+= fuse_copy_do(cs
, &buf
, &count
);
836 kunmap_atomic(mapaddr
, KM_USER1
);
838 offset
+= fuse_copy_do(cs
, NULL
, &count
);
840 if (page
&& !cs
->write
)
841 flush_dcache_page(page
);
845 /* Copy pages in the request to/from userspace buffer */
846 static int fuse_copy_pages(struct fuse_copy_state
*cs
, unsigned nbytes
,
850 struct fuse_req
*req
= cs
->req
;
851 unsigned offset
= req
->page_offset
;
852 unsigned count
= min(nbytes
, (unsigned) PAGE_SIZE
- offset
);
854 for (i
= 0; i
< req
->num_pages
&& (nbytes
|| zeroing
); i
++) {
857 err
= fuse_copy_page(cs
, &req
->pages
[i
], offset
, count
,
863 count
= min(nbytes
, (unsigned) PAGE_SIZE
);
869 /* Copy a single argument in the request to/from userspace buffer */
870 static int fuse_copy_one(struct fuse_copy_state
*cs
, void *val
, unsigned size
)
874 int err
= fuse_copy_fill(cs
);
878 fuse_copy_do(cs
, &val
, &size
);
883 /* Copy request arguments to/from userspace buffer */
884 static int fuse_copy_args(struct fuse_copy_state
*cs
, unsigned numargs
,
885 unsigned argpages
, struct fuse_arg
*args
,
891 for (i
= 0; !err
&& i
< numargs
; i
++) {
892 struct fuse_arg
*arg
= &args
[i
];
893 if (i
== numargs
- 1 && argpages
)
894 err
= fuse_copy_pages(cs
, arg
->size
, zeroing
);
896 err
= fuse_copy_one(cs
, arg
->value
, arg
->size
);
901 static int request_pending(struct fuse_conn
*fc
)
903 return !list_empty(&fc
->pending
) || !list_empty(&fc
->interrupts
);
906 /* Wait until a request is available on the pending list */
907 static void request_wait(struct fuse_conn
*fc
)
911 DECLARE_WAITQUEUE(wait
, current
);
913 add_wait_queue_exclusive(&fc
->waitq
, &wait
);
914 while (fc
->connected
&& !request_pending(fc
)) {
915 set_current_state(TASK_INTERRUPTIBLE
);
916 if (signal_pending(current
))
919 spin_unlock(&fc
->lock
);
921 spin_lock(&fc
->lock
);
923 set_current_state(TASK_RUNNING
);
924 remove_wait_queue(&fc
->waitq
, &wait
);
928 * Transfer an interrupt request to userspace
930 * Unlike other requests this is assembled on demand, without a need
931 * to allocate a separate fuse_req structure.
933 * Called with fc->lock held, releases it
935 static int fuse_read_interrupt(struct fuse_conn
*fc
, struct fuse_copy_state
*cs
,
936 size_t nbytes
, struct fuse_req
*req
)
939 struct fuse_in_header ih
;
940 struct fuse_interrupt_in arg
;
941 unsigned reqsize
= sizeof(ih
) + sizeof(arg
);
944 list_del_init(&req
->intr_entry
);
945 req
->intr_unique
= fuse_get_unique(fc
);
946 memset(&ih
, 0, sizeof(ih
));
947 memset(&arg
, 0, sizeof(arg
));
949 ih
.opcode
= FUSE_INTERRUPT
;
950 ih
.unique
= req
->intr_unique
;
951 arg
.unique
= req
->in
.h
.unique
;
953 spin_unlock(&fc
->lock
);
954 if (nbytes
< reqsize
)
957 err
= fuse_copy_one(cs
, &ih
, sizeof(ih
));
959 err
= fuse_copy_one(cs
, &arg
, sizeof(arg
));
960 fuse_copy_finish(cs
);
962 return err
? err
: reqsize
;
966 * Read a single request into the userspace filesystem's buffer. This
967 * function waits until a request is available, then removes it from
968 * the pending list and copies request data to userspace buffer. If
969 * no reply is needed (FORGET) or request has been aborted or there
970 * was an error during the copying then it's finished by calling
971 * request_end(). Otherwise add it to the processing list, and set
974 static ssize_t
fuse_dev_do_read(struct fuse_conn
*fc
, struct file
*file
,
975 struct fuse_copy_state
*cs
, size_t nbytes
)
978 struct fuse_req
*req
;
983 spin_lock(&fc
->lock
);
985 if ((file
->f_flags
& O_NONBLOCK
) && fc
->connected
&&
986 !request_pending(fc
))
994 if (!request_pending(fc
))
997 if (!list_empty(&fc
->interrupts
)) {
998 req
= list_entry(fc
->interrupts
.next
, struct fuse_req
,
1000 return fuse_read_interrupt(fc
, cs
, nbytes
, req
);
1003 req
= list_entry(fc
->pending
.next
, struct fuse_req
, list
);
1004 req
->state
= FUSE_REQ_READING
;
1005 list_move(&req
->list
, &fc
->io
);
1008 reqsize
= in
->h
.len
;
1009 /* If request is too large, reply with an error and restart the read */
1010 if (nbytes
< reqsize
) {
1011 req
->out
.h
.error
= -EIO
;
1012 /* SETXATTR is special, since it may contain too large data */
1013 if (in
->h
.opcode
== FUSE_SETXATTR
)
1014 req
->out
.h
.error
= -E2BIG
;
1015 request_end(fc
, req
);
1018 spin_unlock(&fc
->lock
);
1020 err
= fuse_copy_one(cs
, &in
->h
, sizeof(in
->h
));
1022 err
= fuse_copy_args(cs
, in
->numargs
, in
->argpages
,
1023 (struct fuse_arg
*) in
->args
, 0);
1024 fuse_copy_finish(cs
);
1025 spin_lock(&fc
->lock
);
1028 request_end(fc
, req
);
1032 req
->out
.h
.error
= -EIO
;
1033 request_end(fc
, req
);
1037 request_end(fc
, req
);
1039 req
->state
= FUSE_REQ_SENT
;
1040 list_move_tail(&req
->list
, &fc
->processing
);
1041 if (req
->interrupted
)
1042 queue_interrupt(fc
, req
);
1043 spin_unlock(&fc
->lock
);
1048 spin_unlock(&fc
->lock
);
1052 static ssize_t
fuse_dev_read(struct kiocb
*iocb
, const struct iovec
*iov
,
1053 unsigned long nr_segs
, loff_t pos
)
1055 struct fuse_copy_state cs
;
1056 struct file
*file
= iocb
->ki_filp
;
1057 struct fuse_conn
*fc
= fuse_get_conn(file
);
1061 fuse_copy_init(&cs
, fc
, 1, iov
, nr_segs
);
1063 return fuse_dev_do_read(fc
, file
, &cs
, iov_length(iov
, nr_segs
));
1066 static int fuse_dev_pipe_buf_steal(struct pipe_inode_info
*pipe
,
1067 struct pipe_buffer
*buf
)
1072 static const struct pipe_buf_operations fuse_dev_pipe_buf_ops
= {
1074 .map
= generic_pipe_buf_map
,
1075 .unmap
= generic_pipe_buf_unmap
,
1076 .confirm
= generic_pipe_buf_confirm
,
1077 .release
= generic_pipe_buf_release
,
1078 .steal
= fuse_dev_pipe_buf_steal
,
1079 .get
= generic_pipe_buf_get
,
1082 static ssize_t
fuse_dev_splice_read(struct file
*in
, loff_t
*ppos
,
1083 struct pipe_inode_info
*pipe
,
1084 size_t len
, unsigned int flags
)
1089 struct pipe_buffer
*bufs
;
1090 struct fuse_copy_state cs
;
1091 struct fuse_conn
*fc
= fuse_get_conn(in
);
1095 bufs
= kmalloc(pipe
->buffers
* sizeof (struct pipe_buffer
), GFP_KERNEL
);
1099 fuse_copy_init(&cs
, fc
, 1, NULL
, 0);
1102 ret
= fuse_dev_do_read(fc
, in
, &cs
, len
);
1109 if (!pipe
->readers
) {
1110 send_sig(SIGPIPE
, current
, 0);
1116 if (pipe
->nrbufs
+ cs
.nr_segs
> pipe
->buffers
) {
1121 while (page_nr
< cs
.nr_segs
) {
1122 int newbuf
= (pipe
->curbuf
+ pipe
->nrbufs
) & (pipe
->buffers
- 1);
1123 struct pipe_buffer
*buf
= pipe
->bufs
+ newbuf
;
1125 buf
->page
= bufs
[page_nr
].page
;
1126 buf
->offset
= bufs
[page_nr
].offset
;
1127 buf
->len
= bufs
[page_nr
].len
;
1128 buf
->ops
= &fuse_dev_pipe_buf_ops
;
1143 if (waitqueue_active(&pipe
->wait
))
1144 wake_up_interruptible(&pipe
->wait
);
1145 kill_fasync(&pipe
->fasync_readers
, SIGIO
, POLL_IN
);
1149 for (; page_nr
< cs
.nr_segs
; page_nr
++)
1150 page_cache_release(bufs
[page_nr
].page
);
1156 static int fuse_notify_poll(struct fuse_conn
*fc
, unsigned int size
,
1157 struct fuse_copy_state
*cs
)
1159 struct fuse_notify_poll_wakeup_out outarg
;
1162 if (size
!= sizeof(outarg
))
1165 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1169 fuse_copy_finish(cs
);
1170 return fuse_notify_poll_wakeup(fc
, &outarg
);
1173 fuse_copy_finish(cs
);
1177 static int fuse_notify_inval_inode(struct fuse_conn
*fc
, unsigned int size
,
1178 struct fuse_copy_state
*cs
)
1180 struct fuse_notify_inval_inode_out outarg
;
1183 if (size
!= sizeof(outarg
))
1186 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1189 fuse_copy_finish(cs
);
1191 down_read(&fc
->killsb
);
1194 err
= fuse_reverse_inval_inode(fc
->sb
, outarg
.ino
,
1195 outarg
.off
, outarg
.len
);
1197 up_read(&fc
->killsb
);
1201 fuse_copy_finish(cs
);
1205 static int fuse_notify_inval_entry(struct fuse_conn
*fc
, unsigned int size
,
1206 struct fuse_copy_state
*cs
)
1208 struct fuse_notify_inval_entry_out outarg
;
1213 buf
= kzalloc(FUSE_NAME_MAX
+ 1, GFP_KERNEL
);
1218 if (size
< sizeof(outarg
))
1221 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1225 err
= -ENAMETOOLONG
;
1226 if (outarg
.namelen
> FUSE_NAME_MAX
)
1230 name
.len
= outarg
.namelen
;
1231 err
= fuse_copy_one(cs
, buf
, outarg
.namelen
+ 1);
1234 fuse_copy_finish(cs
);
1235 buf
[outarg
.namelen
] = 0;
1236 name
.hash
= full_name_hash(name
.name
, name
.len
);
1238 down_read(&fc
->killsb
);
1241 err
= fuse_reverse_inval_entry(fc
->sb
, outarg
.parent
, &name
);
1242 up_read(&fc
->killsb
);
1248 fuse_copy_finish(cs
);
1252 static int fuse_notify_store(struct fuse_conn
*fc
, unsigned int size
,
1253 struct fuse_copy_state
*cs
)
1255 struct fuse_notify_store_out outarg
;
1256 struct inode
*inode
;
1257 struct address_space
*mapping
;
1261 unsigned int offset
;
1267 if (size
< sizeof(outarg
))
1270 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1275 if (size
- sizeof(outarg
) != outarg
.size
)
1278 nodeid
= outarg
.nodeid
;
1280 down_read(&fc
->killsb
);
1286 inode
= ilookup5(fc
->sb
, nodeid
, fuse_inode_eq
, &nodeid
);
1290 mapping
= inode
->i_mapping
;
1291 index
= outarg
.offset
>> PAGE_CACHE_SHIFT
;
1292 offset
= outarg
.offset
& ~PAGE_CACHE_MASK
;
1293 file_size
= i_size_read(inode
);
1294 end
= outarg
.offset
+ outarg
.size
;
1295 if (end
> file_size
) {
1297 fuse_write_update_size(inode
, file_size
);
1303 unsigned int this_num
;
1306 page
= find_or_create_page(mapping
, index
,
1307 mapping_gfp_mask(mapping
));
1311 this_num
= min_t(unsigned, num
, PAGE_CACHE_SIZE
- offset
);
1312 err
= fuse_copy_page(cs
, &page
, offset
, this_num
, 0);
1313 if (!err
&& offset
== 0 && (num
!= 0 || file_size
== end
))
1314 SetPageUptodate(page
);
1316 page_cache_release(page
);
1331 up_read(&fc
->killsb
);
1333 fuse_copy_finish(cs
);
1337 static void fuse_retrieve_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
1341 for (i
= 0; i
< req
->num_pages
; i
++) {
1342 struct page
*page
= req
->pages
[i
];
1343 page_cache_release(page
);
1347 static int fuse_retrieve(struct fuse_conn
*fc
, struct inode
*inode
,
1348 struct fuse_notify_retrieve_out
*outarg
)
1351 struct address_space
*mapping
= inode
->i_mapping
;
1352 struct fuse_req
*req
;
1356 unsigned int offset
;
1357 size_t total_len
= 0;
1359 req
= fuse_get_req(fc
);
1361 return PTR_ERR(req
);
1363 offset
= outarg
->offset
& ~PAGE_CACHE_MASK
;
1365 req
->in
.h
.opcode
= FUSE_NOTIFY_REPLY
;
1366 req
->in
.h
.nodeid
= outarg
->nodeid
;
1367 req
->in
.numargs
= 2;
1368 req
->in
.argpages
= 1;
1369 req
->page_offset
= offset
;
1370 req
->end
= fuse_retrieve_end
;
1372 index
= outarg
->offset
>> PAGE_CACHE_SHIFT
;
1373 file_size
= i_size_read(inode
);
1375 if (outarg
->offset
> file_size
)
1377 else if (outarg
->offset
+ num
> file_size
)
1378 num
= file_size
- outarg
->offset
;
1382 unsigned int this_num
;
1384 page
= find_get_page(mapping
, index
);
1388 this_num
= min_t(unsigned, num
, PAGE_CACHE_SIZE
- offset
);
1389 req
->pages
[req
->num_pages
] = page
;
1393 total_len
+= this_num
;
1395 req
->misc
.retrieve_in
.offset
= outarg
->offset
;
1396 req
->misc
.retrieve_in
.size
= total_len
;
1397 req
->in
.args
[0].size
= sizeof(req
->misc
.retrieve_in
);
1398 req
->in
.args
[0].value
= &req
->misc
.retrieve_in
;
1399 req
->in
.args
[1].size
= total_len
;
1401 err
= fuse_request_send_notify_reply(fc
, req
, outarg
->notify_unique
);
1403 fuse_retrieve_end(fc
, req
);
1408 static int fuse_notify_retrieve(struct fuse_conn
*fc
, unsigned int size
,
1409 struct fuse_copy_state
*cs
)
1411 struct fuse_notify_retrieve_out outarg
;
1412 struct inode
*inode
;
1416 if (size
!= sizeof(outarg
))
1419 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1423 fuse_copy_finish(cs
);
1425 down_read(&fc
->killsb
);
1428 u64 nodeid
= outarg
.nodeid
;
1430 inode
= ilookup5(fc
->sb
, nodeid
, fuse_inode_eq
, &nodeid
);
1432 err
= fuse_retrieve(fc
, inode
, &outarg
);
1436 up_read(&fc
->killsb
);
1441 fuse_copy_finish(cs
);
1445 static int fuse_notify(struct fuse_conn
*fc
, enum fuse_notify_code code
,
1446 unsigned int size
, struct fuse_copy_state
*cs
)
1449 case FUSE_NOTIFY_POLL
:
1450 return fuse_notify_poll(fc
, size
, cs
);
1452 case FUSE_NOTIFY_INVAL_INODE
:
1453 return fuse_notify_inval_inode(fc
, size
, cs
);
1455 case FUSE_NOTIFY_INVAL_ENTRY
:
1456 return fuse_notify_inval_entry(fc
, size
, cs
);
1458 case FUSE_NOTIFY_STORE
:
1459 return fuse_notify_store(fc
, size
, cs
);
1461 case FUSE_NOTIFY_RETRIEVE
:
1462 return fuse_notify_retrieve(fc
, size
, cs
);
1465 fuse_copy_finish(cs
);
1470 /* Look up request on processing list by unique ID */
1471 static struct fuse_req
*request_find(struct fuse_conn
*fc
, u64 unique
)
1473 struct list_head
*entry
;
1475 list_for_each(entry
, &fc
->processing
) {
1476 struct fuse_req
*req
;
1477 req
= list_entry(entry
, struct fuse_req
, list
);
1478 if (req
->in
.h
.unique
== unique
|| req
->intr_unique
== unique
)
1484 static int copy_out_args(struct fuse_copy_state
*cs
, struct fuse_out
*out
,
1487 unsigned reqsize
= sizeof(struct fuse_out_header
);
1490 return nbytes
!= reqsize
? -EINVAL
: 0;
1492 reqsize
+= len_args(out
->numargs
, out
->args
);
1494 if (reqsize
< nbytes
|| (reqsize
> nbytes
&& !out
->argvar
))
1496 else if (reqsize
> nbytes
) {
1497 struct fuse_arg
*lastarg
= &out
->args
[out
->numargs
-1];
1498 unsigned diffsize
= reqsize
- nbytes
;
1499 if (diffsize
> lastarg
->size
)
1501 lastarg
->size
-= diffsize
;
1503 return fuse_copy_args(cs
, out
->numargs
, out
->argpages
, out
->args
,
1508 * Write a single reply to a request. First the header is copied from
1509 * the write buffer. The request is then searched on the processing
1510 * list by the unique ID found in the header. If found, then remove
1511 * it from the list and copy the rest of the buffer to the request.
1512 * The request is finished by calling request_end()
1514 static ssize_t
fuse_dev_do_write(struct fuse_conn
*fc
,
1515 struct fuse_copy_state
*cs
, size_t nbytes
)
1518 struct fuse_req
*req
;
1519 struct fuse_out_header oh
;
1521 if (nbytes
< sizeof(struct fuse_out_header
))
1524 err
= fuse_copy_one(cs
, &oh
, sizeof(oh
));
1529 if (oh
.len
!= nbytes
)
1533 * Zero oh.unique indicates unsolicited notification message
1534 * and error contains notification code.
1537 err
= fuse_notify(fc
, oh
.error
, nbytes
- sizeof(oh
), cs
);
1538 return err
? err
: nbytes
;
1542 if (oh
.error
<= -1000 || oh
.error
> 0)
1545 spin_lock(&fc
->lock
);
1550 req
= request_find(fc
, oh
.unique
);
1555 spin_unlock(&fc
->lock
);
1556 fuse_copy_finish(cs
);
1557 spin_lock(&fc
->lock
);
1558 request_end(fc
, req
);
1561 /* Is it an interrupt reply? */
1562 if (req
->intr_unique
== oh
.unique
) {
1564 if (nbytes
!= sizeof(struct fuse_out_header
))
1567 if (oh
.error
== -ENOSYS
)
1568 fc
->no_interrupt
= 1;
1569 else if (oh
.error
== -EAGAIN
)
1570 queue_interrupt(fc
, req
);
1572 spin_unlock(&fc
->lock
);
1573 fuse_copy_finish(cs
);
1577 req
->state
= FUSE_REQ_WRITING
;
1578 list_move(&req
->list
, &fc
->io
);
1582 if (!req
->out
.page_replace
)
1584 spin_unlock(&fc
->lock
);
1586 err
= copy_out_args(cs
, &req
->out
, nbytes
);
1587 fuse_copy_finish(cs
);
1589 spin_lock(&fc
->lock
);
1594 } else if (!req
->aborted
)
1595 req
->out
.h
.error
= -EIO
;
1596 request_end(fc
, req
);
1598 return err
? err
: nbytes
;
1601 spin_unlock(&fc
->lock
);
1603 fuse_copy_finish(cs
);
1607 static ssize_t
fuse_dev_write(struct kiocb
*iocb
, const struct iovec
*iov
,
1608 unsigned long nr_segs
, loff_t pos
)
1610 struct fuse_copy_state cs
;
1611 struct fuse_conn
*fc
= fuse_get_conn(iocb
->ki_filp
);
1615 fuse_copy_init(&cs
, fc
, 0, iov
, nr_segs
);
1617 return fuse_dev_do_write(fc
, &cs
, iov_length(iov
, nr_segs
));
1620 static ssize_t
fuse_dev_splice_write(struct pipe_inode_info
*pipe
,
1621 struct file
*out
, loff_t
*ppos
,
1622 size_t len
, unsigned int flags
)
1626 struct pipe_buffer
*bufs
;
1627 struct fuse_copy_state cs
;
1628 struct fuse_conn
*fc
;
1632 fc
= fuse_get_conn(out
);
1636 bufs
= kmalloc(pipe
->buffers
* sizeof (struct pipe_buffer
), GFP_KERNEL
);
1643 for (idx
= 0; idx
< pipe
->nrbufs
&& rem
< len
; idx
++)
1644 rem
+= pipe
->bufs
[(pipe
->curbuf
+ idx
) & (pipe
->buffers
- 1)].len
;
1654 struct pipe_buffer
*ibuf
;
1655 struct pipe_buffer
*obuf
;
1657 BUG_ON(nbuf
>= pipe
->buffers
);
1658 BUG_ON(!pipe
->nrbufs
);
1659 ibuf
= &pipe
->bufs
[pipe
->curbuf
];
1662 if (rem
>= ibuf
->len
) {
1665 pipe
->curbuf
= (pipe
->curbuf
+ 1) & (pipe
->buffers
- 1);
1668 ibuf
->ops
->get(pipe
, ibuf
);
1670 obuf
->flags
&= ~PIPE_BUF_FLAG_GIFT
;
1672 ibuf
->offset
+= obuf
->len
;
1673 ibuf
->len
-= obuf
->len
;
1680 fuse_copy_init(&cs
, fc
, 0, NULL
, nbuf
);
1684 if (flags
& SPLICE_F_MOVE
)
1687 ret
= fuse_dev_do_write(fc
, &cs
, len
);
1689 for (idx
= 0; idx
< nbuf
; idx
++) {
1690 struct pipe_buffer
*buf
= &bufs
[idx
];
1691 buf
->ops
->release(pipe
, buf
);
1698 static unsigned fuse_dev_poll(struct file
*file
, poll_table
*wait
)
1700 unsigned mask
= POLLOUT
| POLLWRNORM
;
1701 struct fuse_conn
*fc
= fuse_get_conn(file
);
1705 poll_wait(file
, &fc
->waitq
, wait
);
1707 spin_lock(&fc
->lock
);
1710 else if (request_pending(fc
))
1711 mask
|= POLLIN
| POLLRDNORM
;
1712 spin_unlock(&fc
->lock
);
1718 * Abort all requests on the given list (pending or processing)
1720 * This function releases and reacquires fc->lock
1722 static void end_requests(struct fuse_conn
*fc
, struct list_head
*head
)
1723 __releases(fc
->lock
)
1724 __acquires(fc
->lock
)
1726 while (!list_empty(head
)) {
1727 struct fuse_req
*req
;
1728 req
= list_entry(head
->next
, struct fuse_req
, list
);
1729 req
->out
.h
.error
= -ECONNABORTED
;
1730 request_end(fc
, req
);
1731 spin_lock(&fc
->lock
);
1736 * Abort requests under I/O
1738 * The requests are set to aborted and finished, and the request
1739 * waiter is woken up. This will make request_wait_answer() wait
1740 * until the request is unlocked and then return.
1742 * If the request is asynchronous, then the end function needs to be
1743 * called after waiting for the request to be unlocked (if it was
1746 static void end_io_requests(struct fuse_conn
*fc
)
1747 __releases(fc
->lock
)
1748 __acquires(fc
->lock
)
1750 while (!list_empty(&fc
->io
)) {
1751 struct fuse_req
*req
=
1752 list_entry(fc
->io
.next
, struct fuse_req
, list
);
1753 void (*end
) (struct fuse_conn
*, struct fuse_req
*) = req
->end
;
1756 req
->out
.h
.error
= -ECONNABORTED
;
1757 req
->state
= FUSE_REQ_FINISHED
;
1758 list_del_init(&req
->list
);
1759 wake_up(&req
->waitq
);
1762 __fuse_get_request(req
);
1763 spin_unlock(&fc
->lock
);
1764 wait_event(req
->waitq
, !req
->locked
);
1766 fuse_put_request(fc
, req
);
1767 spin_lock(&fc
->lock
);
1772 static void end_queued_requests(struct fuse_conn
*fc
)
1773 __releases(fc
->lock
)
1774 __acquires(fc
->lock
)
1776 fc
->max_background
= UINT_MAX
;
1778 end_requests(fc
, &fc
->pending
);
1779 end_requests(fc
, &fc
->processing
);
1783 * Abort all requests.
1785 * Emergency exit in case of a malicious or accidental deadlock, or
1786 * just a hung filesystem.
1788 * The same effect is usually achievable through killing the
1789 * filesystem daemon and all users of the filesystem. The exception
1790 * is the combination of an asynchronous request and the tricky
1791 * deadlock (see Documentation/filesystems/fuse.txt).
1793 * During the aborting, progression of requests from the pending and
1794 * processing lists onto the io list, and progression of new requests
1795 * onto the pending list is prevented by req->connected being false.
1797 * Progression of requests under I/O to the processing list is
1798 * prevented by the req->aborted flag being true for these requests.
1799 * For this reason requests on the io list must be aborted first.
1801 void fuse_abort_conn(struct fuse_conn
*fc
)
1803 spin_lock(&fc
->lock
);
1804 if (fc
->connected
) {
1807 end_io_requests(fc
);
1808 end_queued_requests(fc
);
1809 wake_up_all(&fc
->waitq
);
1810 wake_up_all(&fc
->blocked_waitq
);
1811 kill_fasync(&fc
->fasync
, SIGIO
, POLL_IN
);
1813 spin_unlock(&fc
->lock
);
1815 EXPORT_SYMBOL_GPL(fuse_abort_conn
);
1817 int fuse_dev_release(struct inode
*inode
, struct file
*file
)
1819 struct fuse_conn
*fc
= fuse_get_conn(file
);
1821 spin_lock(&fc
->lock
);
1824 end_queued_requests(fc
);
1825 wake_up_all(&fc
->blocked_waitq
);
1826 spin_unlock(&fc
->lock
);
1832 EXPORT_SYMBOL_GPL(fuse_dev_release
);
1834 static int fuse_dev_fasync(int fd
, struct file
*file
, int on
)
1836 struct fuse_conn
*fc
= fuse_get_conn(file
);
1840 /* No locking - fasync_helper does its own locking */
1841 return fasync_helper(fd
, file
, on
, &fc
->fasync
);
1844 const struct file_operations fuse_dev_operations
= {
1845 .owner
= THIS_MODULE
,
1846 .llseek
= no_llseek
,
1847 .read
= do_sync_read
,
1848 .aio_read
= fuse_dev_read
,
1849 .splice_read
= fuse_dev_splice_read
,
1850 .write
= do_sync_write
,
1851 .aio_write
= fuse_dev_write
,
1852 .splice_write
= fuse_dev_splice_write
,
1853 .poll
= fuse_dev_poll
,
1854 .release
= fuse_dev_release
,
1855 .fasync
= fuse_dev_fasync
,
1857 EXPORT_SYMBOL_GPL(fuse_dev_operations
);
1859 static struct miscdevice fuse_miscdevice
= {
1860 .minor
= FUSE_MINOR
,
1862 .fops
= &fuse_dev_operations
,
1865 int __init
fuse_dev_init(void)
1868 fuse_req_cachep
= kmem_cache_create("fuse_request",
1869 sizeof(struct fuse_req
),
1871 if (!fuse_req_cachep
)
1874 err
= misc_register(&fuse_miscdevice
);
1876 goto out_cache_clean
;
1881 kmem_cache_destroy(fuse_req_cachep
);
1886 void fuse_dev_cleanup(void)
1888 misc_deregister(&fuse_miscdevice
);
1889 kmem_cache_destroy(fuse_req_cachep
);