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 void fuse_queue_forget(struct fuse_conn
*fc
, struct fuse_forget_link
*forget
,
255 u64 nodeid
, u64 nlookup
)
257 forget
->forget_one
.nodeid
= nodeid
;
258 forget
->forget_one
.nlookup
= nlookup
;
260 spin_lock(&fc
->lock
);
262 fc
->forget_list_tail
->next
= forget
;
263 fc
->forget_list_tail
= forget
;
265 kill_fasync(&fc
->fasync
, SIGIO
, POLL_IN
);
269 spin_unlock(&fc
->lock
);
272 static void flush_bg_queue(struct fuse_conn
*fc
)
274 while (fc
->active_background
< fc
->max_background
&&
275 !list_empty(&fc
->bg_queue
)) {
276 struct fuse_req
*req
;
278 req
= list_entry(fc
->bg_queue
.next
, struct fuse_req
, list
);
279 list_del(&req
->list
);
280 fc
->active_background
++;
281 req
->in
.h
.unique
= fuse_get_unique(fc
);
282 queue_request(fc
, req
);
287 * This function is called when a request is finished. Either a reply
288 * has arrived or it was aborted (and not yet sent) or some error
289 * occurred during communication with userspace, or the device file
290 * was closed. The requester thread is woken up (if still waiting),
291 * the 'end' callback is called if given, else the reference to the
292 * request is released
294 * Called with fc->lock, unlocks it
296 static void request_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
299 void (*end
) (struct fuse_conn
*, struct fuse_req
*) = req
->end
;
301 list_del(&req
->list
);
302 list_del(&req
->intr_entry
);
303 req
->state
= FUSE_REQ_FINISHED
;
304 if (req
->background
) {
305 if (fc
->num_background
== fc
->max_background
) {
307 wake_up_all(&fc
->blocked_waitq
);
309 if (fc
->num_background
== fc
->congestion_threshold
&&
310 fc
->connected
&& fc
->bdi_initialized
) {
311 clear_bdi_congested(&fc
->bdi
, BLK_RW_SYNC
);
312 clear_bdi_congested(&fc
->bdi
, BLK_RW_ASYNC
);
314 fc
->num_background
--;
315 fc
->active_background
--;
318 spin_unlock(&fc
->lock
);
319 wake_up(&req
->waitq
);
322 fuse_put_request(fc
, req
);
325 static void wait_answer_interruptible(struct fuse_conn
*fc
,
326 struct fuse_req
*req
)
330 if (signal_pending(current
))
333 spin_unlock(&fc
->lock
);
334 wait_event_interruptible(req
->waitq
, req
->state
== FUSE_REQ_FINISHED
);
335 spin_lock(&fc
->lock
);
338 static void queue_interrupt(struct fuse_conn
*fc
, struct fuse_req
*req
)
340 list_add_tail(&req
->intr_entry
, &fc
->interrupts
);
342 kill_fasync(&fc
->fasync
, SIGIO
, POLL_IN
);
345 static void request_wait_answer(struct fuse_conn
*fc
, struct fuse_req
*req
)
349 if (!fc
->no_interrupt
) {
350 /* Any signal may interrupt this */
351 wait_answer_interruptible(fc
, req
);
355 if (req
->state
== FUSE_REQ_FINISHED
)
358 req
->interrupted
= 1;
359 if (req
->state
== FUSE_REQ_SENT
)
360 queue_interrupt(fc
, req
);
366 /* Only fatal signals may interrupt this */
368 wait_answer_interruptible(fc
, req
);
369 restore_sigs(&oldset
);
373 if (req
->state
== FUSE_REQ_FINISHED
)
376 /* Request is not yet in userspace, bail out */
377 if (req
->state
== FUSE_REQ_PENDING
) {
378 list_del(&req
->list
);
379 __fuse_put_request(req
);
380 req
->out
.h
.error
= -EINTR
;
386 * Either request is already in userspace, or it was forced.
389 spin_unlock(&fc
->lock
);
390 wait_event(req
->waitq
, req
->state
== FUSE_REQ_FINISHED
);
391 spin_lock(&fc
->lock
);
397 BUG_ON(req
->state
!= FUSE_REQ_FINISHED
);
399 /* This is uninterruptible sleep, because data is
400 being copied to/from the buffers of req. During
401 locked state, there mustn't be any filesystem
402 operation (e.g. page fault), since that could lead
404 spin_unlock(&fc
->lock
);
405 wait_event(req
->waitq
, !req
->locked
);
406 spin_lock(&fc
->lock
);
410 void fuse_request_send(struct fuse_conn
*fc
, struct fuse_req
*req
)
413 spin_lock(&fc
->lock
);
415 req
->out
.h
.error
= -ENOTCONN
;
416 else if (fc
->conn_error
)
417 req
->out
.h
.error
= -ECONNREFUSED
;
419 req
->in
.h
.unique
= fuse_get_unique(fc
);
420 queue_request(fc
, req
);
421 /* acquire extra reference, since request is still needed
422 after request_end() */
423 __fuse_get_request(req
);
425 request_wait_answer(fc
, req
);
427 spin_unlock(&fc
->lock
);
429 EXPORT_SYMBOL_GPL(fuse_request_send
);
431 static void fuse_request_send_nowait_locked(struct fuse_conn
*fc
,
432 struct fuse_req
*req
)
435 fc
->num_background
++;
436 if (fc
->num_background
== fc
->max_background
)
438 if (fc
->num_background
== fc
->congestion_threshold
&&
439 fc
->bdi_initialized
) {
440 set_bdi_congested(&fc
->bdi
, BLK_RW_SYNC
);
441 set_bdi_congested(&fc
->bdi
, BLK_RW_ASYNC
);
443 list_add_tail(&req
->list
, &fc
->bg_queue
);
447 static void fuse_request_send_nowait(struct fuse_conn
*fc
, struct fuse_req
*req
)
449 spin_lock(&fc
->lock
);
451 fuse_request_send_nowait_locked(fc
, req
);
452 spin_unlock(&fc
->lock
);
454 req
->out
.h
.error
= -ENOTCONN
;
455 request_end(fc
, req
);
459 void fuse_request_send_background(struct fuse_conn
*fc
, struct fuse_req
*req
)
462 fuse_request_send_nowait(fc
, req
);
464 EXPORT_SYMBOL_GPL(fuse_request_send_background
);
466 static int fuse_request_send_notify_reply(struct fuse_conn
*fc
,
467 struct fuse_req
*req
, u64 unique
)
472 req
->in
.h
.unique
= unique
;
473 spin_lock(&fc
->lock
);
475 queue_request(fc
, req
);
478 spin_unlock(&fc
->lock
);
484 * Called under fc->lock
486 * fc->connected must have been checked previously
488 void fuse_request_send_background_locked(struct fuse_conn
*fc
,
489 struct fuse_req
*req
)
492 fuse_request_send_nowait_locked(fc
, req
);
496 * Lock the request. Up to the next unlock_request() there mustn't be
497 * anything that could cause a page-fault. If the request was already
500 static int lock_request(struct fuse_conn
*fc
, struct fuse_req
*req
)
504 spin_lock(&fc
->lock
);
509 spin_unlock(&fc
->lock
);
515 * Unlock request. If it was aborted during being locked, the
516 * requester thread is currently waiting for it to be unlocked, so
519 static void unlock_request(struct fuse_conn
*fc
, struct fuse_req
*req
)
522 spin_lock(&fc
->lock
);
525 wake_up(&req
->waitq
);
526 spin_unlock(&fc
->lock
);
530 struct fuse_copy_state
{
531 struct fuse_conn
*fc
;
533 struct fuse_req
*req
;
534 const struct iovec
*iov
;
535 struct pipe_buffer
*pipebufs
;
536 struct pipe_buffer
*currbuf
;
537 struct pipe_inode_info
*pipe
;
538 unsigned long nr_segs
;
539 unsigned long seglen
;
545 unsigned move_pages
:1;
548 static void fuse_copy_init(struct fuse_copy_state
*cs
, struct fuse_conn
*fc
,
550 const struct iovec
*iov
, unsigned long nr_segs
)
552 memset(cs
, 0, sizeof(*cs
));
556 cs
->nr_segs
= nr_segs
;
559 /* Unmap and put previous page of userspace buffer */
560 static void fuse_copy_finish(struct fuse_copy_state
*cs
)
563 struct pipe_buffer
*buf
= cs
->currbuf
;
566 buf
->ops
->unmap(cs
->pipe
, buf
, cs
->mapaddr
);
569 buf
->len
= PAGE_SIZE
- cs
->len
;
573 } else if (cs
->mapaddr
) {
576 flush_dcache_page(cs
->pg
);
577 set_page_dirty_lock(cs
->pg
);
585 * Get another pagefull of userspace buffer, and map it to kernel
586 * address space, and lock request
588 static int fuse_copy_fill(struct fuse_copy_state
*cs
)
590 unsigned long offset
;
593 unlock_request(cs
->fc
, cs
->req
);
594 fuse_copy_finish(cs
);
596 struct pipe_buffer
*buf
= cs
->pipebufs
;
599 err
= buf
->ops
->confirm(cs
->pipe
, buf
);
603 BUG_ON(!cs
->nr_segs
);
605 cs
->mapaddr
= buf
->ops
->map(cs
->pipe
, buf
, 0);
607 cs
->buf
= cs
->mapaddr
+ buf
->offset
;
613 if (cs
->nr_segs
== cs
->pipe
->buffers
)
616 page
= alloc_page(GFP_HIGHUSER
);
625 cs
->mapaddr
= kmap(page
);
626 cs
->buf
= cs
->mapaddr
;
633 BUG_ON(!cs
->nr_segs
);
634 cs
->seglen
= cs
->iov
[0].iov_len
;
635 cs
->addr
= (unsigned long) cs
->iov
[0].iov_base
;
639 err
= get_user_pages_fast(cs
->addr
, 1, cs
->write
, &cs
->pg
);
643 offset
= cs
->addr
% PAGE_SIZE
;
644 cs
->mapaddr
= kmap(cs
->pg
);
645 cs
->buf
= cs
->mapaddr
+ offset
;
646 cs
->len
= min(PAGE_SIZE
- offset
, cs
->seglen
);
647 cs
->seglen
-= cs
->len
;
651 return lock_request(cs
->fc
, cs
->req
);
654 /* Do as much copy to/from userspace buffer as we can */
655 static int fuse_copy_do(struct fuse_copy_state
*cs
, void **val
, unsigned *size
)
657 unsigned ncpy
= min(*size
, cs
->len
);
660 memcpy(cs
->buf
, *val
, ncpy
);
662 memcpy(*val
, cs
->buf
, ncpy
);
671 static int fuse_check_page(struct page
*page
)
673 if (page_mapcount(page
) ||
674 page
->mapping
!= NULL
||
675 page_count(page
) != 1 ||
676 (page
->flags
& PAGE_FLAGS_CHECK_AT_PREP
&
683 printk(KERN_WARNING
"fuse: trying to steal weird page\n");
684 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
);
690 static int fuse_try_move_page(struct fuse_copy_state
*cs
, struct page
**pagep
)
693 struct page
*oldpage
= *pagep
;
694 struct page
*newpage
;
695 struct pipe_buffer
*buf
= cs
->pipebufs
;
696 struct address_space
*mapping
;
699 unlock_request(cs
->fc
, cs
->req
);
700 fuse_copy_finish(cs
);
702 err
= buf
->ops
->confirm(cs
->pipe
, buf
);
706 BUG_ON(!cs
->nr_segs
);
712 if (cs
->len
!= PAGE_SIZE
)
715 if (buf
->ops
->steal(cs
->pipe
, buf
) != 0)
720 if (WARN_ON(!PageUptodate(newpage
)))
723 ClearPageMappedToDisk(newpage
);
725 if (fuse_check_page(newpage
) != 0)
726 goto out_fallback_unlock
;
728 mapping
= oldpage
->mapping
;
729 index
= oldpage
->index
;
732 * This is a new and locked page, it shouldn't be mapped or
733 * have any special flags on it
735 if (WARN_ON(page_mapped(oldpage
)))
736 goto out_fallback_unlock
;
737 if (WARN_ON(page_has_private(oldpage
)))
738 goto out_fallback_unlock
;
739 if (WARN_ON(PageDirty(oldpage
) || PageWriteback(oldpage
)))
740 goto out_fallback_unlock
;
741 if (WARN_ON(PageMlocked(oldpage
)))
742 goto out_fallback_unlock
;
744 err
= replace_page_cache_page(oldpage
, newpage
, GFP_KERNEL
);
746 unlock_page(newpage
);
750 page_cache_get(newpage
);
752 if (!(buf
->flags
& PIPE_BUF_FLAG_LRU
))
753 lru_cache_add_file(newpage
);
756 spin_lock(&cs
->fc
->lock
);
757 if (cs
->req
->aborted
)
761 spin_unlock(&cs
->fc
->lock
);
764 unlock_page(newpage
);
765 page_cache_release(newpage
);
769 unlock_page(oldpage
);
770 page_cache_release(oldpage
);
776 unlock_page(newpage
);
778 cs
->mapaddr
= buf
->ops
->map(cs
->pipe
, buf
, 1);
779 cs
->buf
= cs
->mapaddr
+ buf
->offset
;
781 err
= lock_request(cs
->fc
, cs
->req
);
788 static int fuse_ref_page(struct fuse_copy_state
*cs
, struct page
*page
,
789 unsigned offset
, unsigned count
)
791 struct pipe_buffer
*buf
;
793 if (cs
->nr_segs
== cs
->pipe
->buffers
)
796 unlock_request(cs
->fc
, cs
->req
);
797 fuse_copy_finish(cs
);
800 page_cache_get(page
);
802 buf
->offset
= offset
;
813 * Copy a page in the request to/from the userspace buffer. Must be
816 static int fuse_copy_page(struct fuse_copy_state
*cs
, struct page
**pagep
,
817 unsigned offset
, unsigned count
, int zeroing
)
820 struct page
*page
= *pagep
;
822 if (page
&& zeroing
&& count
< PAGE_SIZE
)
823 clear_highpage(page
);
826 if (cs
->write
&& cs
->pipebufs
&& page
) {
827 return fuse_ref_page(cs
, page
, offset
, count
);
828 } else if (!cs
->len
) {
829 if (cs
->move_pages
&& page
&&
830 offset
== 0 && count
== PAGE_SIZE
) {
831 err
= fuse_try_move_page(cs
, pagep
);
835 err
= fuse_copy_fill(cs
);
841 void *mapaddr
= kmap_atomic(page
, KM_USER0
);
842 void *buf
= mapaddr
+ offset
;
843 offset
+= fuse_copy_do(cs
, &buf
, &count
);
844 kunmap_atomic(mapaddr
, KM_USER0
);
846 offset
+= fuse_copy_do(cs
, NULL
, &count
);
848 if (page
&& !cs
->write
)
849 flush_dcache_page(page
);
853 /* Copy pages in the request to/from userspace buffer */
854 static int fuse_copy_pages(struct fuse_copy_state
*cs
, unsigned nbytes
,
858 struct fuse_req
*req
= cs
->req
;
859 unsigned offset
= req
->page_offset
;
860 unsigned count
= min(nbytes
, (unsigned) PAGE_SIZE
- offset
);
862 for (i
= 0; i
< req
->num_pages
&& (nbytes
|| zeroing
); i
++) {
865 err
= fuse_copy_page(cs
, &req
->pages
[i
], offset
, count
,
871 count
= min(nbytes
, (unsigned) PAGE_SIZE
);
877 /* Copy a single argument in the request to/from userspace buffer */
878 static int fuse_copy_one(struct fuse_copy_state
*cs
, void *val
, unsigned size
)
882 int err
= fuse_copy_fill(cs
);
886 fuse_copy_do(cs
, &val
, &size
);
891 /* Copy request arguments to/from userspace buffer */
892 static int fuse_copy_args(struct fuse_copy_state
*cs
, unsigned numargs
,
893 unsigned argpages
, struct fuse_arg
*args
,
899 for (i
= 0; !err
&& i
< numargs
; i
++) {
900 struct fuse_arg
*arg
= &args
[i
];
901 if (i
== numargs
- 1 && argpages
)
902 err
= fuse_copy_pages(cs
, arg
->size
, zeroing
);
904 err
= fuse_copy_one(cs
, arg
->value
, arg
->size
);
909 static int forget_pending(struct fuse_conn
*fc
)
911 return fc
->forget_list_head
.next
!= NULL
;
914 static int request_pending(struct fuse_conn
*fc
)
916 return !list_empty(&fc
->pending
) || !list_empty(&fc
->interrupts
) ||
920 /* Wait until a request is available on the pending list */
921 static void request_wait(struct fuse_conn
*fc
)
925 DECLARE_WAITQUEUE(wait
, current
);
927 add_wait_queue_exclusive(&fc
->waitq
, &wait
);
928 while (fc
->connected
&& !request_pending(fc
)) {
929 set_current_state(TASK_INTERRUPTIBLE
);
930 if (signal_pending(current
))
933 spin_unlock(&fc
->lock
);
935 spin_lock(&fc
->lock
);
937 set_current_state(TASK_RUNNING
);
938 remove_wait_queue(&fc
->waitq
, &wait
);
942 * Transfer an interrupt request to userspace
944 * Unlike other requests this is assembled on demand, without a need
945 * to allocate a separate fuse_req structure.
947 * Called with fc->lock held, releases it
949 static int fuse_read_interrupt(struct fuse_conn
*fc
, struct fuse_copy_state
*cs
,
950 size_t nbytes
, struct fuse_req
*req
)
953 struct fuse_in_header ih
;
954 struct fuse_interrupt_in arg
;
955 unsigned reqsize
= sizeof(ih
) + sizeof(arg
);
958 list_del_init(&req
->intr_entry
);
959 req
->intr_unique
= fuse_get_unique(fc
);
960 memset(&ih
, 0, sizeof(ih
));
961 memset(&arg
, 0, sizeof(arg
));
963 ih
.opcode
= FUSE_INTERRUPT
;
964 ih
.unique
= req
->intr_unique
;
965 arg
.unique
= req
->in
.h
.unique
;
967 spin_unlock(&fc
->lock
);
968 if (nbytes
< reqsize
)
971 err
= fuse_copy_one(cs
, &ih
, sizeof(ih
));
973 err
= fuse_copy_one(cs
, &arg
, sizeof(arg
));
974 fuse_copy_finish(cs
);
976 return err
? err
: reqsize
;
979 static struct fuse_forget_link
*dequeue_forget(struct fuse_conn
*fc
,
983 struct fuse_forget_link
*head
= fc
->forget_list_head
.next
;
984 struct fuse_forget_link
**newhead
= &head
;
987 for (count
= 0; *newhead
!= NULL
&& count
< max
; count
++)
988 newhead
= &(*newhead
)->next
;
990 fc
->forget_list_head
.next
= *newhead
;
992 if (fc
->forget_list_head
.next
== NULL
)
993 fc
->forget_list_tail
= &fc
->forget_list_head
;
1001 static int fuse_read_single_forget(struct fuse_conn
*fc
,
1002 struct fuse_copy_state
*cs
,
1004 __releases(fc
->lock
)
1007 struct fuse_forget_link
*forget
= dequeue_forget(fc
, 1, NULL
);
1008 struct fuse_forget_in arg
= {
1009 .nlookup
= forget
->forget_one
.nlookup
,
1011 struct fuse_in_header ih
= {
1012 .opcode
= FUSE_FORGET
,
1013 .nodeid
= forget
->forget_one
.nodeid
,
1014 .unique
= fuse_get_unique(fc
),
1015 .len
= sizeof(ih
) + sizeof(arg
),
1018 spin_unlock(&fc
->lock
);
1020 if (nbytes
< ih
.len
)
1023 err
= fuse_copy_one(cs
, &ih
, sizeof(ih
));
1025 err
= fuse_copy_one(cs
, &arg
, sizeof(arg
));
1026 fuse_copy_finish(cs
);
1034 static int fuse_read_batch_forget(struct fuse_conn
*fc
,
1035 struct fuse_copy_state
*cs
, size_t nbytes
)
1036 __releases(fc
->lock
)
1039 unsigned max_forgets
;
1041 struct fuse_forget_link
*head
;
1042 struct fuse_batch_forget_in arg
= { .count
= 0 };
1043 struct fuse_in_header ih
= {
1044 .opcode
= FUSE_BATCH_FORGET
,
1045 .unique
= fuse_get_unique(fc
),
1046 .len
= sizeof(ih
) + sizeof(arg
),
1049 if (nbytes
< ih
.len
) {
1050 spin_unlock(&fc
->lock
);
1054 max_forgets
= (nbytes
- ih
.len
) / sizeof(struct fuse_forget_one
);
1055 head
= dequeue_forget(fc
, max_forgets
, &count
);
1056 spin_unlock(&fc
->lock
);
1059 ih
.len
+= count
* sizeof(struct fuse_forget_one
);
1060 err
= fuse_copy_one(cs
, &ih
, sizeof(ih
));
1062 err
= fuse_copy_one(cs
, &arg
, sizeof(arg
));
1065 struct fuse_forget_link
*forget
= head
;
1068 err
= fuse_copy_one(cs
, &forget
->forget_one
,
1069 sizeof(forget
->forget_one
));
1071 head
= forget
->next
;
1075 fuse_copy_finish(cs
);
1083 static int fuse_read_forget(struct fuse_conn
*fc
, struct fuse_copy_state
*cs
,
1085 __releases(fc
->lock
)
1087 if (fc
->minor
< 16 || fc
->forget_list_head
.next
->next
== NULL
)
1088 return fuse_read_single_forget(fc
, cs
, nbytes
);
1090 return fuse_read_batch_forget(fc
, cs
, nbytes
);
1094 * Read a single request into the userspace filesystem's buffer. This
1095 * function waits until a request is available, then removes it from
1096 * the pending list and copies request data to userspace buffer. If
1097 * no reply is needed (FORGET) or request has been aborted or there
1098 * was an error during the copying then it's finished by calling
1099 * request_end(). Otherwise add it to the processing list, and set
1102 static ssize_t
fuse_dev_do_read(struct fuse_conn
*fc
, struct file
*file
,
1103 struct fuse_copy_state
*cs
, size_t nbytes
)
1106 struct fuse_req
*req
;
1111 spin_lock(&fc
->lock
);
1113 if ((file
->f_flags
& O_NONBLOCK
) && fc
->connected
&&
1114 !request_pending(fc
))
1122 if (!request_pending(fc
))
1125 if (!list_empty(&fc
->interrupts
)) {
1126 req
= list_entry(fc
->interrupts
.next
, struct fuse_req
,
1128 return fuse_read_interrupt(fc
, cs
, nbytes
, req
);
1131 if (forget_pending(fc
)) {
1132 if (list_empty(&fc
->pending
) || fc
->forget_batch
-- > 0)
1133 return fuse_read_forget(fc
, cs
, nbytes
);
1135 if (fc
->forget_batch
<= -8)
1136 fc
->forget_batch
= 16;
1139 req
= list_entry(fc
->pending
.next
, struct fuse_req
, list
);
1140 req
->state
= FUSE_REQ_READING
;
1141 list_move(&req
->list
, &fc
->io
);
1144 reqsize
= in
->h
.len
;
1145 /* If request is too large, reply with an error and restart the read */
1146 if (nbytes
< reqsize
) {
1147 req
->out
.h
.error
= -EIO
;
1148 /* SETXATTR is special, since it may contain too large data */
1149 if (in
->h
.opcode
== FUSE_SETXATTR
)
1150 req
->out
.h
.error
= -E2BIG
;
1151 request_end(fc
, req
);
1154 spin_unlock(&fc
->lock
);
1156 err
= fuse_copy_one(cs
, &in
->h
, sizeof(in
->h
));
1158 err
= fuse_copy_args(cs
, in
->numargs
, in
->argpages
,
1159 (struct fuse_arg
*) in
->args
, 0);
1160 fuse_copy_finish(cs
);
1161 spin_lock(&fc
->lock
);
1164 request_end(fc
, req
);
1168 req
->out
.h
.error
= -EIO
;
1169 request_end(fc
, req
);
1173 request_end(fc
, req
);
1175 req
->state
= FUSE_REQ_SENT
;
1176 list_move_tail(&req
->list
, &fc
->processing
);
1177 if (req
->interrupted
)
1178 queue_interrupt(fc
, req
);
1179 spin_unlock(&fc
->lock
);
1184 spin_unlock(&fc
->lock
);
1188 static ssize_t
fuse_dev_read(struct kiocb
*iocb
, const struct iovec
*iov
,
1189 unsigned long nr_segs
, loff_t pos
)
1191 struct fuse_copy_state cs
;
1192 struct file
*file
= iocb
->ki_filp
;
1193 struct fuse_conn
*fc
= fuse_get_conn(file
);
1197 fuse_copy_init(&cs
, fc
, 1, iov
, nr_segs
);
1199 return fuse_dev_do_read(fc
, file
, &cs
, iov_length(iov
, nr_segs
));
1202 static int fuse_dev_pipe_buf_steal(struct pipe_inode_info
*pipe
,
1203 struct pipe_buffer
*buf
)
1208 static const struct pipe_buf_operations fuse_dev_pipe_buf_ops
= {
1210 .map
= generic_pipe_buf_map
,
1211 .unmap
= generic_pipe_buf_unmap
,
1212 .confirm
= generic_pipe_buf_confirm
,
1213 .release
= generic_pipe_buf_release
,
1214 .steal
= fuse_dev_pipe_buf_steal
,
1215 .get
= generic_pipe_buf_get
,
1218 static ssize_t
fuse_dev_splice_read(struct file
*in
, loff_t
*ppos
,
1219 struct pipe_inode_info
*pipe
,
1220 size_t len
, unsigned int flags
)
1225 struct pipe_buffer
*bufs
;
1226 struct fuse_copy_state cs
;
1227 struct fuse_conn
*fc
= fuse_get_conn(in
);
1231 bufs
= kmalloc(pipe
->buffers
* sizeof(struct pipe_buffer
), GFP_KERNEL
);
1235 fuse_copy_init(&cs
, fc
, 1, NULL
, 0);
1238 ret
= fuse_dev_do_read(fc
, in
, &cs
, len
);
1245 if (!pipe
->readers
) {
1246 send_sig(SIGPIPE
, current
, 0);
1252 if (pipe
->nrbufs
+ cs
.nr_segs
> pipe
->buffers
) {
1257 while (page_nr
< cs
.nr_segs
) {
1258 int newbuf
= (pipe
->curbuf
+ pipe
->nrbufs
) & (pipe
->buffers
- 1);
1259 struct pipe_buffer
*buf
= pipe
->bufs
+ newbuf
;
1261 buf
->page
= bufs
[page_nr
].page
;
1262 buf
->offset
= bufs
[page_nr
].offset
;
1263 buf
->len
= bufs
[page_nr
].len
;
1264 buf
->ops
= &fuse_dev_pipe_buf_ops
;
1279 if (waitqueue_active(&pipe
->wait
))
1280 wake_up_interruptible(&pipe
->wait
);
1281 kill_fasync(&pipe
->fasync_readers
, SIGIO
, POLL_IN
);
1285 for (; page_nr
< cs
.nr_segs
; page_nr
++)
1286 page_cache_release(bufs
[page_nr
].page
);
1292 static int fuse_notify_poll(struct fuse_conn
*fc
, unsigned int size
,
1293 struct fuse_copy_state
*cs
)
1295 struct fuse_notify_poll_wakeup_out outarg
;
1298 if (size
!= sizeof(outarg
))
1301 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1305 fuse_copy_finish(cs
);
1306 return fuse_notify_poll_wakeup(fc
, &outarg
);
1309 fuse_copy_finish(cs
);
1313 static int fuse_notify_inval_inode(struct fuse_conn
*fc
, unsigned int size
,
1314 struct fuse_copy_state
*cs
)
1316 struct fuse_notify_inval_inode_out outarg
;
1319 if (size
!= sizeof(outarg
))
1322 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1325 fuse_copy_finish(cs
);
1327 down_read(&fc
->killsb
);
1330 err
= fuse_reverse_inval_inode(fc
->sb
, outarg
.ino
,
1331 outarg
.off
, outarg
.len
);
1333 up_read(&fc
->killsb
);
1337 fuse_copy_finish(cs
);
1341 static int fuse_notify_inval_entry(struct fuse_conn
*fc
, unsigned int size
,
1342 struct fuse_copy_state
*cs
)
1344 struct fuse_notify_inval_entry_out outarg
;
1349 buf
= kzalloc(FUSE_NAME_MAX
+ 1, GFP_KERNEL
);
1354 if (size
< sizeof(outarg
))
1357 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1361 err
= -ENAMETOOLONG
;
1362 if (outarg
.namelen
> FUSE_NAME_MAX
)
1366 if (size
!= sizeof(outarg
) + outarg
.namelen
+ 1)
1370 name
.len
= outarg
.namelen
;
1371 err
= fuse_copy_one(cs
, buf
, outarg
.namelen
+ 1);
1374 fuse_copy_finish(cs
);
1375 buf
[outarg
.namelen
] = 0;
1376 name
.hash
= full_name_hash(name
.name
, name
.len
);
1378 down_read(&fc
->killsb
);
1381 err
= fuse_reverse_inval_entry(fc
->sb
, outarg
.parent
, &name
);
1382 up_read(&fc
->killsb
);
1388 fuse_copy_finish(cs
);
1392 static int fuse_notify_store(struct fuse_conn
*fc
, unsigned int size
,
1393 struct fuse_copy_state
*cs
)
1395 struct fuse_notify_store_out outarg
;
1396 struct inode
*inode
;
1397 struct address_space
*mapping
;
1401 unsigned int offset
;
1407 if (size
< sizeof(outarg
))
1410 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1415 if (size
- sizeof(outarg
) != outarg
.size
)
1418 nodeid
= outarg
.nodeid
;
1420 down_read(&fc
->killsb
);
1426 inode
= ilookup5(fc
->sb
, nodeid
, fuse_inode_eq
, &nodeid
);
1430 mapping
= inode
->i_mapping
;
1431 index
= outarg
.offset
>> PAGE_CACHE_SHIFT
;
1432 offset
= outarg
.offset
& ~PAGE_CACHE_MASK
;
1433 file_size
= i_size_read(inode
);
1434 end
= outarg
.offset
+ outarg
.size
;
1435 if (end
> file_size
) {
1437 fuse_write_update_size(inode
, file_size
);
1443 unsigned int this_num
;
1446 page
= find_or_create_page(mapping
, index
,
1447 mapping_gfp_mask(mapping
));
1451 this_num
= min_t(unsigned, num
, PAGE_CACHE_SIZE
- offset
);
1452 err
= fuse_copy_page(cs
, &page
, offset
, this_num
, 0);
1453 if (!err
&& offset
== 0 && (num
!= 0 || file_size
== end
))
1454 SetPageUptodate(page
);
1456 page_cache_release(page
);
1471 up_read(&fc
->killsb
);
1473 fuse_copy_finish(cs
);
1477 static void fuse_retrieve_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
1479 release_pages(req
->pages
, req
->num_pages
, 0);
1482 static int fuse_retrieve(struct fuse_conn
*fc
, struct inode
*inode
,
1483 struct fuse_notify_retrieve_out
*outarg
)
1486 struct address_space
*mapping
= inode
->i_mapping
;
1487 struct fuse_req
*req
;
1491 unsigned int offset
;
1492 size_t total_len
= 0;
1494 req
= fuse_get_req(fc
);
1496 return PTR_ERR(req
);
1498 offset
= outarg
->offset
& ~PAGE_CACHE_MASK
;
1500 req
->in
.h
.opcode
= FUSE_NOTIFY_REPLY
;
1501 req
->in
.h
.nodeid
= outarg
->nodeid
;
1502 req
->in
.numargs
= 2;
1503 req
->in
.argpages
= 1;
1504 req
->page_offset
= offset
;
1505 req
->end
= fuse_retrieve_end
;
1507 index
= outarg
->offset
>> PAGE_CACHE_SHIFT
;
1508 file_size
= i_size_read(inode
);
1510 if (outarg
->offset
> file_size
)
1512 else if (outarg
->offset
+ num
> file_size
)
1513 num
= file_size
- outarg
->offset
;
1517 unsigned int this_num
;
1519 page
= find_get_page(mapping
, index
);
1523 this_num
= min_t(unsigned, num
, PAGE_CACHE_SIZE
- offset
);
1524 req
->pages
[req
->num_pages
] = page
;
1528 total_len
+= this_num
;
1530 req
->misc
.retrieve_in
.offset
= outarg
->offset
;
1531 req
->misc
.retrieve_in
.size
= total_len
;
1532 req
->in
.args
[0].size
= sizeof(req
->misc
.retrieve_in
);
1533 req
->in
.args
[0].value
= &req
->misc
.retrieve_in
;
1534 req
->in
.args
[1].size
= total_len
;
1536 err
= fuse_request_send_notify_reply(fc
, req
, outarg
->notify_unique
);
1538 fuse_retrieve_end(fc
, req
);
1543 static int fuse_notify_retrieve(struct fuse_conn
*fc
, unsigned int size
,
1544 struct fuse_copy_state
*cs
)
1546 struct fuse_notify_retrieve_out outarg
;
1547 struct inode
*inode
;
1551 if (size
!= sizeof(outarg
))
1554 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1558 fuse_copy_finish(cs
);
1560 down_read(&fc
->killsb
);
1563 u64 nodeid
= outarg
.nodeid
;
1565 inode
= ilookup5(fc
->sb
, nodeid
, fuse_inode_eq
, &nodeid
);
1567 err
= fuse_retrieve(fc
, inode
, &outarg
);
1571 up_read(&fc
->killsb
);
1576 fuse_copy_finish(cs
);
1580 static int fuse_notify(struct fuse_conn
*fc
, enum fuse_notify_code code
,
1581 unsigned int size
, struct fuse_copy_state
*cs
)
1584 case FUSE_NOTIFY_POLL
:
1585 return fuse_notify_poll(fc
, size
, cs
);
1587 case FUSE_NOTIFY_INVAL_INODE
:
1588 return fuse_notify_inval_inode(fc
, size
, cs
);
1590 case FUSE_NOTIFY_INVAL_ENTRY
:
1591 return fuse_notify_inval_entry(fc
, size
, cs
);
1593 case FUSE_NOTIFY_STORE
:
1594 return fuse_notify_store(fc
, size
, cs
);
1596 case FUSE_NOTIFY_RETRIEVE
:
1597 return fuse_notify_retrieve(fc
, size
, cs
);
1600 fuse_copy_finish(cs
);
1605 /* Look up request on processing list by unique ID */
1606 static struct fuse_req
*request_find(struct fuse_conn
*fc
, u64 unique
)
1608 struct list_head
*entry
;
1610 list_for_each(entry
, &fc
->processing
) {
1611 struct fuse_req
*req
;
1612 req
= list_entry(entry
, struct fuse_req
, list
);
1613 if (req
->in
.h
.unique
== unique
|| req
->intr_unique
== unique
)
1619 static int copy_out_args(struct fuse_copy_state
*cs
, struct fuse_out
*out
,
1622 unsigned reqsize
= sizeof(struct fuse_out_header
);
1625 return nbytes
!= reqsize
? -EINVAL
: 0;
1627 reqsize
+= len_args(out
->numargs
, out
->args
);
1629 if (reqsize
< nbytes
|| (reqsize
> nbytes
&& !out
->argvar
))
1631 else if (reqsize
> nbytes
) {
1632 struct fuse_arg
*lastarg
= &out
->args
[out
->numargs
-1];
1633 unsigned diffsize
= reqsize
- nbytes
;
1634 if (diffsize
> lastarg
->size
)
1636 lastarg
->size
-= diffsize
;
1638 return fuse_copy_args(cs
, out
->numargs
, out
->argpages
, out
->args
,
1643 * Write a single reply to a request. First the header is copied from
1644 * the write buffer. The request is then searched on the processing
1645 * list by the unique ID found in the header. If found, then remove
1646 * it from the list and copy the rest of the buffer to the request.
1647 * The request is finished by calling request_end()
1649 static ssize_t
fuse_dev_do_write(struct fuse_conn
*fc
,
1650 struct fuse_copy_state
*cs
, size_t nbytes
)
1653 struct fuse_req
*req
;
1654 struct fuse_out_header oh
;
1656 if (nbytes
< sizeof(struct fuse_out_header
))
1659 err
= fuse_copy_one(cs
, &oh
, sizeof(oh
));
1664 if (oh
.len
!= nbytes
)
1668 * Zero oh.unique indicates unsolicited notification message
1669 * and error contains notification code.
1672 err
= fuse_notify(fc
, oh
.error
, nbytes
- sizeof(oh
), cs
);
1673 return err
? err
: nbytes
;
1677 if (oh
.error
<= -1000 || oh
.error
> 0)
1680 spin_lock(&fc
->lock
);
1685 req
= request_find(fc
, oh
.unique
);
1690 spin_unlock(&fc
->lock
);
1691 fuse_copy_finish(cs
);
1692 spin_lock(&fc
->lock
);
1693 request_end(fc
, req
);
1696 /* Is it an interrupt reply? */
1697 if (req
->intr_unique
== oh
.unique
) {
1699 if (nbytes
!= sizeof(struct fuse_out_header
))
1702 if (oh
.error
== -ENOSYS
)
1703 fc
->no_interrupt
= 1;
1704 else if (oh
.error
== -EAGAIN
)
1705 queue_interrupt(fc
, req
);
1707 spin_unlock(&fc
->lock
);
1708 fuse_copy_finish(cs
);
1712 req
->state
= FUSE_REQ_WRITING
;
1713 list_move(&req
->list
, &fc
->io
);
1717 if (!req
->out
.page_replace
)
1719 spin_unlock(&fc
->lock
);
1721 err
= copy_out_args(cs
, &req
->out
, nbytes
);
1722 fuse_copy_finish(cs
);
1724 spin_lock(&fc
->lock
);
1729 } else if (!req
->aborted
)
1730 req
->out
.h
.error
= -EIO
;
1731 request_end(fc
, req
);
1733 return err
? err
: nbytes
;
1736 spin_unlock(&fc
->lock
);
1738 fuse_copy_finish(cs
);
1742 static ssize_t
fuse_dev_write(struct kiocb
*iocb
, const struct iovec
*iov
,
1743 unsigned long nr_segs
, loff_t pos
)
1745 struct fuse_copy_state cs
;
1746 struct fuse_conn
*fc
= fuse_get_conn(iocb
->ki_filp
);
1750 fuse_copy_init(&cs
, fc
, 0, iov
, nr_segs
);
1752 return fuse_dev_do_write(fc
, &cs
, iov_length(iov
, nr_segs
));
1755 static ssize_t
fuse_dev_splice_write(struct pipe_inode_info
*pipe
,
1756 struct file
*out
, loff_t
*ppos
,
1757 size_t len
, unsigned int flags
)
1761 struct pipe_buffer
*bufs
;
1762 struct fuse_copy_state cs
;
1763 struct fuse_conn
*fc
;
1767 fc
= fuse_get_conn(out
);
1771 bufs
= kmalloc(pipe
->buffers
* sizeof(struct pipe_buffer
), GFP_KERNEL
);
1778 for (idx
= 0; idx
< pipe
->nrbufs
&& rem
< len
; idx
++)
1779 rem
+= pipe
->bufs
[(pipe
->curbuf
+ idx
) & (pipe
->buffers
- 1)].len
;
1789 struct pipe_buffer
*ibuf
;
1790 struct pipe_buffer
*obuf
;
1792 BUG_ON(nbuf
>= pipe
->buffers
);
1793 BUG_ON(!pipe
->nrbufs
);
1794 ibuf
= &pipe
->bufs
[pipe
->curbuf
];
1797 if (rem
>= ibuf
->len
) {
1800 pipe
->curbuf
= (pipe
->curbuf
+ 1) & (pipe
->buffers
- 1);
1803 ibuf
->ops
->get(pipe
, ibuf
);
1805 obuf
->flags
&= ~PIPE_BUF_FLAG_GIFT
;
1807 ibuf
->offset
+= obuf
->len
;
1808 ibuf
->len
-= obuf
->len
;
1815 fuse_copy_init(&cs
, fc
, 0, NULL
, nbuf
);
1819 if (flags
& SPLICE_F_MOVE
)
1822 ret
= fuse_dev_do_write(fc
, &cs
, len
);
1824 for (idx
= 0; idx
< nbuf
; idx
++) {
1825 struct pipe_buffer
*buf
= &bufs
[idx
];
1826 buf
->ops
->release(pipe
, buf
);
1833 static unsigned fuse_dev_poll(struct file
*file
, poll_table
*wait
)
1835 unsigned mask
= POLLOUT
| POLLWRNORM
;
1836 struct fuse_conn
*fc
= fuse_get_conn(file
);
1840 poll_wait(file
, &fc
->waitq
, wait
);
1842 spin_lock(&fc
->lock
);
1845 else if (request_pending(fc
))
1846 mask
|= POLLIN
| POLLRDNORM
;
1847 spin_unlock(&fc
->lock
);
1853 * Abort all requests on the given list (pending or processing)
1855 * This function releases and reacquires fc->lock
1857 static void end_requests(struct fuse_conn
*fc
, struct list_head
*head
)
1858 __releases(fc
->lock
)
1859 __acquires(fc
->lock
)
1861 while (!list_empty(head
)) {
1862 struct fuse_req
*req
;
1863 req
= list_entry(head
->next
, struct fuse_req
, list
);
1864 req
->out
.h
.error
= -ECONNABORTED
;
1865 request_end(fc
, req
);
1866 spin_lock(&fc
->lock
);
1871 * Abort requests under I/O
1873 * The requests are set to aborted and finished, and the request
1874 * waiter is woken up. This will make request_wait_answer() wait
1875 * until the request is unlocked and then return.
1877 * If the request is asynchronous, then the end function needs to be
1878 * called after waiting for the request to be unlocked (if it was
1881 static void end_io_requests(struct fuse_conn
*fc
)
1882 __releases(fc
->lock
)
1883 __acquires(fc
->lock
)
1885 while (!list_empty(&fc
->io
)) {
1886 struct fuse_req
*req
=
1887 list_entry(fc
->io
.next
, struct fuse_req
, list
);
1888 void (*end
) (struct fuse_conn
*, struct fuse_req
*) = req
->end
;
1891 req
->out
.h
.error
= -ECONNABORTED
;
1892 req
->state
= FUSE_REQ_FINISHED
;
1893 list_del_init(&req
->list
);
1894 wake_up(&req
->waitq
);
1897 __fuse_get_request(req
);
1898 spin_unlock(&fc
->lock
);
1899 wait_event(req
->waitq
, !req
->locked
);
1901 fuse_put_request(fc
, req
);
1902 spin_lock(&fc
->lock
);
1907 static void end_queued_requests(struct fuse_conn
*fc
)
1908 __releases(fc
->lock
)
1909 __acquires(fc
->lock
)
1911 fc
->max_background
= UINT_MAX
;
1913 end_requests(fc
, &fc
->pending
);
1914 end_requests(fc
, &fc
->processing
);
1915 while (forget_pending(fc
))
1916 kfree(dequeue_forget(fc
, 1, NULL
));
1919 static void end_polls(struct fuse_conn
*fc
)
1923 p
= rb_first(&fc
->polled_files
);
1926 struct fuse_file
*ff
;
1927 ff
= rb_entry(p
, struct fuse_file
, polled_node
);
1928 wake_up_interruptible_all(&ff
->poll_wait
);
1935 * Abort all requests.
1937 * Emergency exit in case of a malicious or accidental deadlock, or
1938 * just a hung filesystem.
1940 * The same effect is usually achievable through killing the
1941 * filesystem daemon and all users of the filesystem. The exception
1942 * is the combination of an asynchronous request and the tricky
1943 * deadlock (see Documentation/filesystems/fuse.txt).
1945 * During the aborting, progression of requests from the pending and
1946 * processing lists onto the io list, and progression of new requests
1947 * onto the pending list is prevented by req->connected being false.
1949 * Progression of requests under I/O to the processing list is
1950 * prevented by the req->aborted flag being true for these requests.
1951 * For this reason requests on the io list must be aborted first.
1953 void fuse_abort_conn(struct fuse_conn
*fc
)
1955 spin_lock(&fc
->lock
);
1956 if (fc
->connected
) {
1959 end_io_requests(fc
);
1960 end_queued_requests(fc
);
1962 wake_up_all(&fc
->waitq
);
1963 wake_up_all(&fc
->blocked_waitq
);
1964 kill_fasync(&fc
->fasync
, SIGIO
, POLL_IN
);
1966 spin_unlock(&fc
->lock
);
1968 EXPORT_SYMBOL_GPL(fuse_abort_conn
);
1970 int fuse_dev_release(struct inode
*inode
, struct file
*file
)
1972 struct fuse_conn
*fc
= fuse_get_conn(file
);
1974 spin_lock(&fc
->lock
);
1977 end_queued_requests(fc
);
1979 wake_up_all(&fc
->blocked_waitq
);
1980 spin_unlock(&fc
->lock
);
1986 EXPORT_SYMBOL_GPL(fuse_dev_release
);
1988 static int fuse_dev_fasync(int fd
, struct file
*file
, int on
)
1990 struct fuse_conn
*fc
= fuse_get_conn(file
);
1994 /* No locking - fasync_helper does its own locking */
1995 return fasync_helper(fd
, file
, on
, &fc
->fasync
);
1998 const struct file_operations fuse_dev_operations
= {
1999 .owner
= THIS_MODULE
,
2000 .llseek
= no_llseek
,
2001 .read
= do_sync_read
,
2002 .aio_read
= fuse_dev_read
,
2003 .splice_read
= fuse_dev_splice_read
,
2004 .write
= do_sync_write
,
2005 .aio_write
= fuse_dev_write
,
2006 .splice_write
= fuse_dev_splice_write
,
2007 .poll
= fuse_dev_poll
,
2008 .release
= fuse_dev_release
,
2009 .fasync
= fuse_dev_fasync
,
2011 EXPORT_SYMBOL_GPL(fuse_dev_operations
);
2013 static struct miscdevice fuse_miscdevice
= {
2014 .minor
= FUSE_MINOR
,
2016 .fops
= &fuse_dev_operations
,
2019 int __init
fuse_dev_init(void)
2022 fuse_req_cachep
= kmem_cache_create("fuse_request",
2023 sizeof(struct fuse_req
),
2025 if (!fuse_req_cachep
)
2028 err
= misc_register(&fuse_miscdevice
);
2030 goto out_cache_clean
;
2035 kmem_cache_destroy(fuse_req_cachep
);
2040 void fuse_dev_cleanup(void)
2042 misc_deregister(&fuse_miscdevice
);
2043 kmem_cache_destroy(fuse_req_cachep
);