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>
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 static void fuse_request_send_nowait_locked(struct fuse_conn
*fc
,
515 struct fuse_req
*req
)
517 BUG_ON(!req
->background
);
518 fc
->num_background
++;
519 if (fc
->num_background
== fc
->max_background
)
521 if (fc
->num_background
== fc
->congestion_threshold
&&
522 fc
->bdi_initialized
) {
523 set_bdi_congested(&fc
->bdi
, BLK_RW_SYNC
);
524 set_bdi_congested(&fc
->bdi
, BLK_RW_ASYNC
);
526 list_add_tail(&req
->list
, &fc
->bg_queue
);
530 static void fuse_request_send_nowait(struct fuse_conn
*fc
, struct fuse_req
*req
)
532 spin_lock(&fc
->lock
);
534 fuse_request_send_nowait_locked(fc
, req
);
535 spin_unlock(&fc
->lock
);
537 req
->out
.h
.error
= -ENOTCONN
;
538 request_end(fc
, req
);
542 void fuse_request_send_background(struct fuse_conn
*fc
, struct fuse_req
*req
)
545 fuse_request_send_nowait(fc
, req
);
547 EXPORT_SYMBOL_GPL(fuse_request_send_background
);
549 static int fuse_request_send_notify_reply(struct fuse_conn
*fc
,
550 struct fuse_req
*req
, u64 unique
)
555 req
->in
.h
.unique
= unique
;
556 spin_lock(&fc
->lock
);
558 queue_request(fc
, req
);
561 spin_unlock(&fc
->lock
);
567 * Called under fc->lock
569 * fc->connected must have been checked previously
571 void fuse_request_send_background_locked(struct fuse_conn
*fc
,
572 struct fuse_req
*req
)
575 fuse_request_send_nowait_locked(fc
, req
);
578 void fuse_force_forget(struct file
*file
, u64 nodeid
)
580 struct inode
*inode
= file_inode(file
);
581 struct fuse_conn
*fc
= get_fuse_conn(inode
);
582 struct fuse_req
*req
;
583 struct fuse_forget_in inarg
;
585 memset(&inarg
, 0, sizeof(inarg
));
587 req
= fuse_get_req_nofail_nopages(fc
, file
);
588 req
->in
.h
.opcode
= FUSE_FORGET
;
589 req
->in
.h
.nodeid
= nodeid
;
591 req
->in
.args
[0].size
= sizeof(inarg
);
592 req
->in
.args
[0].value
= &inarg
;
594 __fuse_request_send(fc
, req
);
596 fuse_put_request(fc
, req
);
600 * Lock the request. Up to the next unlock_request() there mustn't be
601 * anything that could cause a page-fault. If the request was already
604 static int lock_request(struct fuse_conn
*fc
, struct fuse_req
*req
)
608 spin_lock(&fc
->lock
);
613 spin_unlock(&fc
->lock
);
619 * Unlock request. If it was aborted during being locked, the
620 * requester thread is currently waiting for it to be unlocked, so
623 static void unlock_request(struct fuse_conn
*fc
, struct fuse_req
*req
)
626 spin_lock(&fc
->lock
);
629 wake_up(&req
->waitq
);
630 spin_unlock(&fc
->lock
);
634 struct fuse_copy_state
{
635 struct fuse_conn
*fc
;
637 struct fuse_req
*req
;
638 const struct iovec
*iov
;
639 struct pipe_buffer
*pipebufs
;
640 struct pipe_buffer
*currbuf
;
641 struct pipe_inode_info
*pipe
;
642 unsigned long nr_segs
;
643 unsigned long seglen
;
648 unsigned move_pages
:1;
651 static void fuse_copy_init(struct fuse_copy_state
*cs
, struct fuse_conn
*fc
,
653 const struct iovec
*iov
, unsigned long nr_segs
)
655 memset(cs
, 0, sizeof(*cs
));
659 cs
->nr_segs
= nr_segs
;
662 /* Unmap and put previous page of userspace buffer */
663 static void fuse_copy_finish(struct fuse_copy_state
*cs
)
666 struct pipe_buffer
*buf
= cs
->currbuf
;
669 buf
->len
= PAGE_SIZE
- cs
->len
;
673 flush_dcache_page(cs
->pg
);
674 set_page_dirty_lock(cs
->pg
);
682 * Get another pagefull of userspace buffer, and map it to kernel
683 * address space, and lock request
685 static int fuse_copy_fill(struct fuse_copy_state
*cs
)
690 unlock_request(cs
->fc
, cs
->req
);
691 fuse_copy_finish(cs
);
693 struct pipe_buffer
*buf
= cs
->pipebufs
;
696 err
= buf
->ops
->confirm(cs
->pipe
, buf
);
700 BUG_ON(!cs
->nr_segs
);
703 cs
->offset
= buf
->offset
;
708 if (cs
->nr_segs
== cs
->pipe
->buffers
)
711 page
= alloc_page(GFP_HIGHUSER
);
728 BUG_ON(!cs
->nr_segs
);
729 cs
->seglen
= cs
->iov
[0].iov_len
;
730 cs
->addr
= (unsigned long) cs
->iov
[0].iov_base
;
734 err
= get_user_pages_fast(cs
->addr
, 1, cs
->write
, &page
);
739 cs
->offset
= cs
->addr
% PAGE_SIZE
;
740 cs
->len
= min(PAGE_SIZE
- cs
->offset
, cs
->seglen
);
741 cs
->seglen
-= cs
->len
;
745 return lock_request(cs
->fc
, cs
->req
);
748 /* Do as much copy to/from userspace buffer as we can */
749 static int fuse_copy_do(struct fuse_copy_state
*cs
, void **val
, unsigned *size
)
751 unsigned ncpy
= min(*size
, cs
->len
);
753 void *pgaddr
= kmap_atomic(cs
->pg
);
754 void *buf
= pgaddr
+ cs
->offset
;
757 memcpy(buf
, *val
, ncpy
);
759 memcpy(*val
, buf
, ncpy
);
761 kunmap_atomic(pgaddr
);
770 static int fuse_check_page(struct page
*page
)
772 if (page_mapcount(page
) ||
773 page
->mapping
!= NULL
||
774 page_count(page
) != 1 ||
775 (page
->flags
& PAGE_FLAGS_CHECK_AT_PREP
&
782 printk(KERN_WARNING
"fuse: trying to steal weird page\n");
783 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
);
789 static int fuse_try_move_page(struct fuse_copy_state
*cs
, struct page
**pagep
)
792 struct page
*oldpage
= *pagep
;
793 struct page
*newpage
;
794 struct pipe_buffer
*buf
= cs
->pipebufs
;
796 unlock_request(cs
->fc
, cs
->req
);
797 fuse_copy_finish(cs
);
799 err
= buf
->ops
->confirm(cs
->pipe
, buf
);
803 BUG_ON(!cs
->nr_segs
);
809 if (cs
->len
!= PAGE_SIZE
)
812 if (buf
->ops
->steal(cs
->pipe
, buf
) != 0)
817 if (WARN_ON(!PageUptodate(newpage
)))
820 ClearPageMappedToDisk(newpage
);
822 if (fuse_check_page(newpage
) != 0)
823 goto out_fallback_unlock
;
826 * This is a new and locked page, it shouldn't be mapped or
827 * have any special flags on it
829 if (WARN_ON(page_mapped(oldpage
)))
830 goto out_fallback_unlock
;
831 if (WARN_ON(page_has_private(oldpage
)))
832 goto out_fallback_unlock
;
833 if (WARN_ON(PageDirty(oldpage
) || PageWriteback(oldpage
)))
834 goto out_fallback_unlock
;
835 if (WARN_ON(PageMlocked(oldpage
)))
836 goto out_fallback_unlock
;
838 err
= replace_page_cache_page(oldpage
, newpage
, GFP_KERNEL
);
840 unlock_page(newpage
);
844 page_cache_get(newpage
);
846 if (!(buf
->flags
& PIPE_BUF_FLAG_LRU
))
847 lru_cache_add_file(newpage
);
850 spin_lock(&cs
->fc
->lock
);
851 if (cs
->req
->aborted
)
855 spin_unlock(&cs
->fc
->lock
);
858 unlock_page(newpage
);
859 page_cache_release(newpage
);
863 unlock_page(oldpage
);
864 page_cache_release(oldpage
);
870 unlock_page(newpage
);
873 cs
->offset
= buf
->offset
;
875 err
= lock_request(cs
->fc
, cs
->req
);
882 static int fuse_ref_page(struct fuse_copy_state
*cs
, struct page
*page
,
883 unsigned offset
, unsigned count
)
885 struct pipe_buffer
*buf
;
887 if (cs
->nr_segs
== cs
->pipe
->buffers
)
890 unlock_request(cs
->fc
, cs
->req
);
891 fuse_copy_finish(cs
);
894 page_cache_get(page
);
896 buf
->offset
= offset
;
907 * Copy a page in the request to/from the userspace buffer. Must be
910 static int fuse_copy_page(struct fuse_copy_state
*cs
, struct page
**pagep
,
911 unsigned offset
, unsigned count
, int zeroing
)
914 struct page
*page
= *pagep
;
916 if (page
&& zeroing
&& count
< PAGE_SIZE
)
917 clear_highpage(page
);
920 if (cs
->write
&& cs
->pipebufs
&& page
) {
921 return fuse_ref_page(cs
, page
, offset
, count
);
922 } else if (!cs
->len
) {
923 if (cs
->move_pages
&& page
&&
924 offset
== 0 && count
== PAGE_SIZE
) {
925 err
= fuse_try_move_page(cs
, pagep
);
929 err
= fuse_copy_fill(cs
);
935 void *mapaddr
= kmap_atomic(page
);
936 void *buf
= mapaddr
+ offset
;
937 offset
+= fuse_copy_do(cs
, &buf
, &count
);
938 kunmap_atomic(mapaddr
);
940 offset
+= fuse_copy_do(cs
, NULL
, &count
);
942 if (page
&& !cs
->write
)
943 flush_dcache_page(page
);
947 /* Copy pages in the request to/from userspace buffer */
948 static int fuse_copy_pages(struct fuse_copy_state
*cs
, unsigned nbytes
,
952 struct fuse_req
*req
= cs
->req
;
954 for (i
= 0; i
< req
->num_pages
&& (nbytes
|| zeroing
); i
++) {
956 unsigned offset
= req
->page_descs
[i
].offset
;
957 unsigned count
= min(nbytes
, req
->page_descs
[i
].length
);
959 err
= fuse_copy_page(cs
, &req
->pages
[i
], offset
, count
,
969 /* Copy a single argument in the request to/from userspace buffer */
970 static int fuse_copy_one(struct fuse_copy_state
*cs
, void *val
, unsigned size
)
974 int err
= fuse_copy_fill(cs
);
978 fuse_copy_do(cs
, &val
, &size
);
983 /* Copy request arguments to/from userspace buffer */
984 static int fuse_copy_args(struct fuse_copy_state
*cs
, unsigned numargs
,
985 unsigned argpages
, struct fuse_arg
*args
,
991 for (i
= 0; !err
&& i
< numargs
; i
++) {
992 struct fuse_arg
*arg
= &args
[i
];
993 if (i
== numargs
- 1 && argpages
)
994 err
= fuse_copy_pages(cs
, arg
->size
, zeroing
);
996 err
= fuse_copy_one(cs
, arg
->value
, arg
->size
);
1001 static int forget_pending(struct fuse_conn
*fc
)
1003 return fc
->forget_list_head
.next
!= NULL
;
1006 static int request_pending(struct fuse_conn
*fc
)
1008 return !list_empty(&fc
->pending
) || !list_empty(&fc
->interrupts
) ||
1012 /* Wait until a request is available on the pending list */
1013 static void request_wait(struct fuse_conn
*fc
)
1014 __releases(fc
->lock
)
1015 __acquires(fc
->lock
)
1017 DECLARE_WAITQUEUE(wait
, current
);
1019 add_wait_queue_exclusive(&fc
->waitq
, &wait
);
1020 while (fc
->connected
&& !request_pending(fc
)) {
1021 set_current_state(TASK_INTERRUPTIBLE
);
1022 if (signal_pending(current
))
1025 spin_unlock(&fc
->lock
);
1027 spin_lock(&fc
->lock
);
1029 set_current_state(TASK_RUNNING
);
1030 remove_wait_queue(&fc
->waitq
, &wait
);
1034 * Transfer an interrupt request to userspace
1036 * Unlike other requests this is assembled on demand, without a need
1037 * to allocate a separate fuse_req structure.
1039 * Called with fc->lock held, releases it
1041 static int fuse_read_interrupt(struct fuse_conn
*fc
, struct fuse_copy_state
*cs
,
1042 size_t nbytes
, struct fuse_req
*req
)
1043 __releases(fc
->lock
)
1045 struct fuse_in_header ih
;
1046 struct fuse_interrupt_in arg
;
1047 unsigned reqsize
= sizeof(ih
) + sizeof(arg
);
1050 list_del_init(&req
->intr_entry
);
1051 req
->intr_unique
= fuse_get_unique(fc
);
1052 memset(&ih
, 0, sizeof(ih
));
1053 memset(&arg
, 0, sizeof(arg
));
1055 ih
.opcode
= FUSE_INTERRUPT
;
1056 ih
.unique
= req
->intr_unique
;
1057 arg
.unique
= req
->in
.h
.unique
;
1059 spin_unlock(&fc
->lock
);
1060 if (nbytes
< reqsize
)
1063 err
= fuse_copy_one(cs
, &ih
, sizeof(ih
));
1065 err
= fuse_copy_one(cs
, &arg
, sizeof(arg
));
1066 fuse_copy_finish(cs
);
1068 return err
? err
: reqsize
;
1071 static struct fuse_forget_link
*dequeue_forget(struct fuse_conn
*fc
,
1075 struct fuse_forget_link
*head
= fc
->forget_list_head
.next
;
1076 struct fuse_forget_link
**newhead
= &head
;
1079 for (count
= 0; *newhead
!= NULL
&& count
< max
; count
++)
1080 newhead
= &(*newhead
)->next
;
1082 fc
->forget_list_head
.next
= *newhead
;
1084 if (fc
->forget_list_head
.next
== NULL
)
1085 fc
->forget_list_tail
= &fc
->forget_list_head
;
1093 static int fuse_read_single_forget(struct fuse_conn
*fc
,
1094 struct fuse_copy_state
*cs
,
1096 __releases(fc
->lock
)
1099 struct fuse_forget_link
*forget
= dequeue_forget(fc
, 1, NULL
);
1100 struct fuse_forget_in arg
= {
1101 .nlookup
= forget
->forget_one
.nlookup
,
1103 struct fuse_in_header ih
= {
1104 .opcode
= FUSE_FORGET
,
1105 .nodeid
= forget
->forget_one
.nodeid
,
1106 .unique
= fuse_get_unique(fc
),
1107 .len
= sizeof(ih
) + sizeof(arg
),
1110 spin_unlock(&fc
->lock
);
1112 if (nbytes
< ih
.len
)
1115 err
= fuse_copy_one(cs
, &ih
, sizeof(ih
));
1117 err
= fuse_copy_one(cs
, &arg
, sizeof(arg
));
1118 fuse_copy_finish(cs
);
1126 static int fuse_read_batch_forget(struct fuse_conn
*fc
,
1127 struct fuse_copy_state
*cs
, size_t nbytes
)
1128 __releases(fc
->lock
)
1131 unsigned max_forgets
;
1133 struct fuse_forget_link
*head
;
1134 struct fuse_batch_forget_in arg
= { .count
= 0 };
1135 struct fuse_in_header ih
= {
1136 .opcode
= FUSE_BATCH_FORGET
,
1137 .unique
= fuse_get_unique(fc
),
1138 .len
= sizeof(ih
) + sizeof(arg
),
1141 if (nbytes
< ih
.len
) {
1142 spin_unlock(&fc
->lock
);
1146 max_forgets
= (nbytes
- ih
.len
) / sizeof(struct fuse_forget_one
);
1147 head
= dequeue_forget(fc
, max_forgets
, &count
);
1148 spin_unlock(&fc
->lock
);
1151 ih
.len
+= count
* sizeof(struct fuse_forget_one
);
1152 err
= fuse_copy_one(cs
, &ih
, sizeof(ih
));
1154 err
= fuse_copy_one(cs
, &arg
, sizeof(arg
));
1157 struct fuse_forget_link
*forget
= head
;
1160 err
= fuse_copy_one(cs
, &forget
->forget_one
,
1161 sizeof(forget
->forget_one
));
1163 head
= forget
->next
;
1167 fuse_copy_finish(cs
);
1175 static int fuse_read_forget(struct fuse_conn
*fc
, struct fuse_copy_state
*cs
,
1177 __releases(fc
->lock
)
1179 if (fc
->minor
< 16 || fc
->forget_list_head
.next
->next
== NULL
)
1180 return fuse_read_single_forget(fc
, cs
, nbytes
);
1182 return fuse_read_batch_forget(fc
, cs
, nbytes
);
1186 * Read a single request into the userspace filesystem's buffer. This
1187 * function waits until a request is available, then removes it from
1188 * the pending list and copies request data to userspace buffer. If
1189 * no reply is needed (FORGET) or request has been aborted or there
1190 * was an error during the copying then it's finished by calling
1191 * request_end(). Otherwise add it to the processing list, and set
1194 static ssize_t
fuse_dev_do_read(struct fuse_conn
*fc
, struct file
*file
,
1195 struct fuse_copy_state
*cs
, size_t nbytes
)
1198 struct fuse_req
*req
;
1203 spin_lock(&fc
->lock
);
1205 if ((file
->f_flags
& O_NONBLOCK
) && fc
->connected
&&
1206 !request_pending(fc
))
1214 if (!request_pending(fc
))
1217 if (!list_empty(&fc
->interrupts
)) {
1218 req
= list_entry(fc
->interrupts
.next
, struct fuse_req
,
1220 return fuse_read_interrupt(fc
, cs
, nbytes
, req
);
1223 if (forget_pending(fc
)) {
1224 if (list_empty(&fc
->pending
) || fc
->forget_batch
-- > 0)
1225 return fuse_read_forget(fc
, cs
, nbytes
);
1227 if (fc
->forget_batch
<= -8)
1228 fc
->forget_batch
= 16;
1231 req
= list_entry(fc
->pending
.next
, struct fuse_req
, list
);
1232 req
->state
= FUSE_REQ_READING
;
1233 list_move(&req
->list
, &fc
->io
);
1236 reqsize
= in
->h
.len
;
1237 /* If request is too large, reply with an error and restart the read */
1238 if (nbytes
< reqsize
) {
1239 req
->out
.h
.error
= -EIO
;
1240 /* SETXATTR is special, since it may contain too large data */
1241 if (in
->h
.opcode
== FUSE_SETXATTR
)
1242 req
->out
.h
.error
= -E2BIG
;
1243 request_end(fc
, req
);
1246 spin_unlock(&fc
->lock
);
1248 err
= fuse_copy_one(cs
, &in
->h
, sizeof(in
->h
));
1250 err
= fuse_copy_args(cs
, in
->numargs
, in
->argpages
,
1251 (struct fuse_arg
*) in
->args
, 0);
1252 fuse_copy_finish(cs
);
1253 spin_lock(&fc
->lock
);
1256 request_end(fc
, req
);
1260 req
->out
.h
.error
= -EIO
;
1261 request_end(fc
, req
);
1265 request_end(fc
, req
);
1267 req
->state
= FUSE_REQ_SENT
;
1268 list_move_tail(&req
->list
, &fc
->processing
);
1269 if (req
->interrupted
)
1270 queue_interrupt(fc
, req
);
1271 spin_unlock(&fc
->lock
);
1276 spin_unlock(&fc
->lock
);
1280 static ssize_t
fuse_dev_read(struct kiocb
*iocb
, const struct iovec
*iov
,
1281 unsigned long nr_segs
, loff_t pos
)
1283 struct fuse_copy_state cs
;
1284 struct file
*file
= iocb
->ki_filp
;
1285 struct fuse_conn
*fc
= fuse_get_conn(file
);
1289 fuse_copy_init(&cs
, fc
, 1, iov
, nr_segs
);
1291 return fuse_dev_do_read(fc
, file
, &cs
, iov_length(iov
, nr_segs
));
1294 static ssize_t
fuse_dev_splice_read(struct file
*in
, loff_t
*ppos
,
1295 struct pipe_inode_info
*pipe
,
1296 size_t len
, unsigned int flags
)
1301 struct pipe_buffer
*bufs
;
1302 struct fuse_copy_state cs
;
1303 struct fuse_conn
*fc
= fuse_get_conn(in
);
1307 bufs
= kmalloc(pipe
->buffers
* sizeof(struct pipe_buffer
), GFP_KERNEL
);
1311 fuse_copy_init(&cs
, fc
, 1, NULL
, 0);
1314 ret
= fuse_dev_do_read(fc
, in
, &cs
, len
);
1321 if (!pipe
->readers
) {
1322 send_sig(SIGPIPE
, current
, 0);
1328 if (pipe
->nrbufs
+ cs
.nr_segs
> pipe
->buffers
) {
1333 while (page_nr
< cs
.nr_segs
) {
1334 int newbuf
= (pipe
->curbuf
+ pipe
->nrbufs
) & (pipe
->buffers
- 1);
1335 struct pipe_buffer
*buf
= pipe
->bufs
+ newbuf
;
1337 buf
->page
= bufs
[page_nr
].page
;
1338 buf
->offset
= bufs
[page_nr
].offset
;
1339 buf
->len
= bufs
[page_nr
].len
;
1341 * Need to be careful about this. Having buf->ops in module
1342 * code can Oops if the buffer persists after module unload.
1344 buf
->ops
= &nosteal_pipe_buf_ops
;
1359 if (waitqueue_active(&pipe
->wait
))
1360 wake_up_interruptible(&pipe
->wait
);
1361 kill_fasync(&pipe
->fasync_readers
, SIGIO
, POLL_IN
);
1365 for (; page_nr
< cs
.nr_segs
; page_nr
++)
1366 page_cache_release(bufs
[page_nr
].page
);
1372 static int fuse_notify_poll(struct fuse_conn
*fc
, unsigned int size
,
1373 struct fuse_copy_state
*cs
)
1375 struct fuse_notify_poll_wakeup_out outarg
;
1378 if (size
!= sizeof(outarg
))
1381 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1385 fuse_copy_finish(cs
);
1386 return fuse_notify_poll_wakeup(fc
, &outarg
);
1389 fuse_copy_finish(cs
);
1393 static int fuse_notify_inval_inode(struct fuse_conn
*fc
, unsigned int size
,
1394 struct fuse_copy_state
*cs
)
1396 struct fuse_notify_inval_inode_out outarg
;
1399 if (size
!= sizeof(outarg
))
1402 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1405 fuse_copy_finish(cs
);
1407 down_read(&fc
->killsb
);
1410 err
= fuse_reverse_inval_inode(fc
->sb
, outarg
.ino
,
1411 outarg
.off
, outarg
.len
);
1413 up_read(&fc
->killsb
);
1417 fuse_copy_finish(cs
);
1421 static int fuse_notify_inval_entry(struct fuse_conn
*fc
, unsigned int size
,
1422 struct fuse_copy_state
*cs
)
1424 struct fuse_notify_inval_entry_out outarg
;
1429 buf
= kzalloc(FUSE_NAME_MAX
+ 1, GFP_KERNEL
);
1434 if (size
< sizeof(outarg
))
1437 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1441 err
= -ENAMETOOLONG
;
1442 if (outarg
.namelen
> FUSE_NAME_MAX
)
1446 if (size
!= sizeof(outarg
) + outarg
.namelen
+ 1)
1450 name
.len
= outarg
.namelen
;
1451 err
= fuse_copy_one(cs
, buf
, outarg
.namelen
+ 1);
1454 fuse_copy_finish(cs
);
1455 buf
[outarg
.namelen
] = 0;
1456 name
.hash
= full_name_hash(name
.name
, name
.len
);
1458 down_read(&fc
->killsb
);
1461 err
= fuse_reverse_inval_entry(fc
->sb
, outarg
.parent
, 0, &name
);
1462 up_read(&fc
->killsb
);
1468 fuse_copy_finish(cs
);
1472 static int fuse_notify_delete(struct fuse_conn
*fc
, unsigned int size
,
1473 struct fuse_copy_state
*cs
)
1475 struct fuse_notify_delete_out outarg
;
1480 buf
= kzalloc(FUSE_NAME_MAX
+ 1, GFP_KERNEL
);
1485 if (size
< sizeof(outarg
))
1488 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1492 err
= -ENAMETOOLONG
;
1493 if (outarg
.namelen
> FUSE_NAME_MAX
)
1497 if (size
!= sizeof(outarg
) + outarg
.namelen
+ 1)
1501 name
.len
= outarg
.namelen
;
1502 err
= fuse_copy_one(cs
, buf
, outarg
.namelen
+ 1);
1505 fuse_copy_finish(cs
);
1506 buf
[outarg
.namelen
] = 0;
1507 name
.hash
= full_name_hash(name
.name
, name
.len
);
1509 down_read(&fc
->killsb
);
1512 err
= fuse_reverse_inval_entry(fc
->sb
, outarg
.parent
,
1513 outarg
.child
, &name
);
1514 up_read(&fc
->killsb
);
1520 fuse_copy_finish(cs
);
1524 static int fuse_notify_store(struct fuse_conn
*fc
, unsigned int size
,
1525 struct fuse_copy_state
*cs
)
1527 struct fuse_notify_store_out outarg
;
1528 struct inode
*inode
;
1529 struct address_space
*mapping
;
1533 unsigned int offset
;
1539 if (size
< sizeof(outarg
))
1542 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1547 if (size
- sizeof(outarg
) != outarg
.size
)
1550 nodeid
= outarg
.nodeid
;
1552 down_read(&fc
->killsb
);
1558 inode
= ilookup5(fc
->sb
, nodeid
, fuse_inode_eq
, &nodeid
);
1562 mapping
= inode
->i_mapping
;
1563 index
= outarg
.offset
>> PAGE_CACHE_SHIFT
;
1564 offset
= outarg
.offset
& ~PAGE_CACHE_MASK
;
1565 file_size
= i_size_read(inode
);
1566 end
= outarg
.offset
+ outarg
.size
;
1567 if (end
> file_size
) {
1569 fuse_write_update_size(inode
, file_size
);
1575 unsigned int this_num
;
1578 page
= find_or_create_page(mapping
, index
,
1579 mapping_gfp_mask(mapping
));
1583 this_num
= min_t(unsigned, num
, PAGE_CACHE_SIZE
- offset
);
1584 err
= fuse_copy_page(cs
, &page
, offset
, this_num
, 0);
1585 if (!err
&& offset
== 0 &&
1586 (this_num
== PAGE_CACHE_SIZE
|| file_size
== end
))
1587 SetPageUptodate(page
);
1589 page_cache_release(page
);
1604 up_read(&fc
->killsb
);
1606 fuse_copy_finish(cs
);
1610 static void fuse_retrieve_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
1612 release_pages(req
->pages
, req
->num_pages
, false);
1615 static int fuse_retrieve(struct fuse_conn
*fc
, struct inode
*inode
,
1616 struct fuse_notify_retrieve_out
*outarg
)
1619 struct address_space
*mapping
= inode
->i_mapping
;
1620 struct fuse_req
*req
;
1624 unsigned int offset
;
1625 size_t total_len
= 0;
1628 offset
= outarg
->offset
& ~PAGE_CACHE_MASK
;
1629 file_size
= i_size_read(inode
);
1632 if (outarg
->offset
> file_size
)
1634 else if (outarg
->offset
+ num
> file_size
)
1635 num
= file_size
- outarg
->offset
;
1637 num_pages
= (num
+ offset
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
1638 num_pages
= min(num_pages
, FUSE_MAX_PAGES_PER_REQ
);
1640 req
= fuse_get_req(fc
, num_pages
);
1642 return PTR_ERR(req
);
1644 req
->in
.h
.opcode
= FUSE_NOTIFY_REPLY
;
1645 req
->in
.h
.nodeid
= outarg
->nodeid
;
1646 req
->in
.numargs
= 2;
1647 req
->in
.argpages
= 1;
1648 req
->page_descs
[0].offset
= offset
;
1649 req
->end
= fuse_retrieve_end
;
1651 index
= outarg
->offset
>> PAGE_CACHE_SHIFT
;
1653 while (num
&& req
->num_pages
< num_pages
) {
1655 unsigned int this_num
;
1657 page
= find_get_page(mapping
, index
);
1661 this_num
= min_t(unsigned, num
, PAGE_CACHE_SIZE
- offset
);
1662 req
->pages
[req
->num_pages
] = page
;
1663 req
->page_descs
[req
->num_pages
].length
= this_num
;
1668 total_len
+= this_num
;
1671 req
->misc
.retrieve_in
.offset
= outarg
->offset
;
1672 req
->misc
.retrieve_in
.size
= total_len
;
1673 req
->in
.args
[0].size
= sizeof(req
->misc
.retrieve_in
);
1674 req
->in
.args
[0].value
= &req
->misc
.retrieve_in
;
1675 req
->in
.args
[1].size
= total_len
;
1677 err
= fuse_request_send_notify_reply(fc
, req
, outarg
->notify_unique
);
1679 fuse_retrieve_end(fc
, req
);
1684 static int fuse_notify_retrieve(struct fuse_conn
*fc
, unsigned int size
,
1685 struct fuse_copy_state
*cs
)
1687 struct fuse_notify_retrieve_out outarg
;
1688 struct inode
*inode
;
1692 if (size
!= sizeof(outarg
))
1695 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1699 fuse_copy_finish(cs
);
1701 down_read(&fc
->killsb
);
1704 u64 nodeid
= outarg
.nodeid
;
1706 inode
= ilookup5(fc
->sb
, nodeid
, fuse_inode_eq
, &nodeid
);
1708 err
= fuse_retrieve(fc
, inode
, &outarg
);
1712 up_read(&fc
->killsb
);
1717 fuse_copy_finish(cs
);
1721 static int fuse_notify(struct fuse_conn
*fc
, enum fuse_notify_code code
,
1722 unsigned int size
, struct fuse_copy_state
*cs
)
1725 case FUSE_NOTIFY_POLL
:
1726 return fuse_notify_poll(fc
, size
, cs
);
1728 case FUSE_NOTIFY_INVAL_INODE
:
1729 return fuse_notify_inval_inode(fc
, size
, cs
);
1731 case FUSE_NOTIFY_INVAL_ENTRY
:
1732 return fuse_notify_inval_entry(fc
, size
, cs
);
1734 case FUSE_NOTIFY_STORE
:
1735 return fuse_notify_store(fc
, size
, cs
);
1737 case FUSE_NOTIFY_RETRIEVE
:
1738 return fuse_notify_retrieve(fc
, size
, cs
);
1740 case FUSE_NOTIFY_DELETE
:
1741 return fuse_notify_delete(fc
, size
, cs
);
1744 fuse_copy_finish(cs
);
1749 /* Look up request on processing list by unique ID */
1750 static struct fuse_req
*request_find(struct fuse_conn
*fc
, u64 unique
)
1752 struct fuse_req
*req
;
1754 list_for_each_entry(req
, &fc
->processing
, list
) {
1755 if (req
->in
.h
.unique
== unique
|| req
->intr_unique
== unique
)
1761 static int copy_out_args(struct fuse_copy_state
*cs
, struct fuse_out
*out
,
1764 unsigned reqsize
= sizeof(struct fuse_out_header
);
1767 return nbytes
!= reqsize
? -EINVAL
: 0;
1769 reqsize
+= len_args(out
->numargs
, out
->args
);
1771 if (reqsize
< nbytes
|| (reqsize
> nbytes
&& !out
->argvar
))
1773 else if (reqsize
> nbytes
) {
1774 struct fuse_arg
*lastarg
= &out
->args
[out
->numargs
-1];
1775 unsigned diffsize
= reqsize
- nbytes
;
1776 if (diffsize
> lastarg
->size
)
1778 lastarg
->size
-= diffsize
;
1780 return fuse_copy_args(cs
, out
->numargs
, out
->argpages
, out
->args
,
1785 * Write a single reply to a request. First the header is copied from
1786 * the write buffer. The request is then searched on the processing
1787 * list by the unique ID found in the header. If found, then remove
1788 * it from the list and copy the rest of the buffer to the request.
1789 * The request is finished by calling request_end()
1791 static ssize_t
fuse_dev_do_write(struct fuse_conn
*fc
,
1792 struct fuse_copy_state
*cs
, size_t nbytes
)
1795 struct fuse_req
*req
;
1796 struct fuse_out_header oh
;
1798 if (nbytes
< sizeof(struct fuse_out_header
))
1801 err
= fuse_copy_one(cs
, &oh
, sizeof(oh
));
1806 if (oh
.len
!= nbytes
)
1810 * Zero oh.unique indicates unsolicited notification message
1811 * and error contains notification code.
1814 err
= fuse_notify(fc
, oh
.error
, nbytes
- sizeof(oh
), cs
);
1815 return err
? err
: nbytes
;
1819 if (oh
.error
<= -1000 || oh
.error
> 0)
1822 spin_lock(&fc
->lock
);
1827 req
= request_find(fc
, oh
.unique
);
1832 spin_unlock(&fc
->lock
);
1833 fuse_copy_finish(cs
);
1834 spin_lock(&fc
->lock
);
1835 request_end(fc
, req
);
1838 /* Is it an interrupt reply? */
1839 if (req
->intr_unique
== oh
.unique
) {
1841 if (nbytes
!= sizeof(struct fuse_out_header
))
1844 if (oh
.error
== -ENOSYS
)
1845 fc
->no_interrupt
= 1;
1846 else if (oh
.error
== -EAGAIN
)
1847 queue_interrupt(fc
, req
);
1849 spin_unlock(&fc
->lock
);
1850 fuse_copy_finish(cs
);
1854 req
->state
= FUSE_REQ_WRITING
;
1855 list_move(&req
->list
, &fc
->io
);
1859 if (!req
->out
.page_replace
)
1861 spin_unlock(&fc
->lock
);
1863 err
= copy_out_args(cs
, &req
->out
, nbytes
);
1864 fuse_copy_finish(cs
);
1866 spin_lock(&fc
->lock
);
1871 } else if (!req
->aborted
)
1872 req
->out
.h
.error
= -EIO
;
1873 request_end(fc
, req
);
1875 return err
? err
: nbytes
;
1878 spin_unlock(&fc
->lock
);
1880 fuse_copy_finish(cs
);
1884 static ssize_t
fuse_dev_write(struct kiocb
*iocb
, const struct iovec
*iov
,
1885 unsigned long nr_segs
, loff_t pos
)
1887 struct fuse_copy_state cs
;
1888 struct fuse_conn
*fc
= fuse_get_conn(iocb
->ki_filp
);
1892 fuse_copy_init(&cs
, fc
, 0, iov
, nr_segs
);
1894 return fuse_dev_do_write(fc
, &cs
, iov_length(iov
, nr_segs
));
1897 static ssize_t
fuse_dev_splice_write(struct pipe_inode_info
*pipe
,
1898 struct file
*out
, loff_t
*ppos
,
1899 size_t len
, unsigned int flags
)
1903 struct pipe_buffer
*bufs
;
1904 struct fuse_copy_state cs
;
1905 struct fuse_conn
*fc
;
1909 fc
= fuse_get_conn(out
);
1913 bufs
= kmalloc(pipe
->buffers
* sizeof(struct pipe_buffer
), GFP_KERNEL
);
1920 for (idx
= 0; idx
< pipe
->nrbufs
&& rem
< len
; idx
++)
1921 rem
+= pipe
->bufs
[(pipe
->curbuf
+ idx
) & (pipe
->buffers
- 1)].len
;
1931 struct pipe_buffer
*ibuf
;
1932 struct pipe_buffer
*obuf
;
1934 BUG_ON(nbuf
>= pipe
->buffers
);
1935 BUG_ON(!pipe
->nrbufs
);
1936 ibuf
= &pipe
->bufs
[pipe
->curbuf
];
1939 if (rem
>= ibuf
->len
) {
1942 pipe
->curbuf
= (pipe
->curbuf
+ 1) & (pipe
->buffers
- 1);
1945 ibuf
->ops
->get(pipe
, ibuf
);
1947 obuf
->flags
&= ~PIPE_BUF_FLAG_GIFT
;
1949 ibuf
->offset
+= obuf
->len
;
1950 ibuf
->len
-= obuf
->len
;
1957 fuse_copy_init(&cs
, fc
, 0, NULL
, nbuf
);
1961 if (flags
& SPLICE_F_MOVE
)
1964 ret
= fuse_dev_do_write(fc
, &cs
, len
);
1966 for (idx
= 0; idx
< nbuf
; idx
++) {
1967 struct pipe_buffer
*buf
= &bufs
[idx
];
1968 buf
->ops
->release(pipe
, buf
);
1975 static unsigned fuse_dev_poll(struct file
*file
, poll_table
*wait
)
1977 unsigned mask
= POLLOUT
| POLLWRNORM
;
1978 struct fuse_conn
*fc
= fuse_get_conn(file
);
1982 poll_wait(file
, &fc
->waitq
, wait
);
1984 spin_lock(&fc
->lock
);
1987 else if (request_pending(fc
))
1988 mask
|= POLLIN
| POLLRDNORM
;
1989 spin_unlock(&fc
->lock
);
1995 * Abort all requests on the given list (pending or processing)
1997 * This function releases and reacquires fc->lock
1999 static void end_requests(struct fuse_conn
*fc
, struct list_head
*head
)
2000 __releases(fc
->lock
)
2001 __acquires(fc
->lock
)
2003 while (!list_empty(head
)) {
2004 struct fuse_req
*req
;
2005 req
= list_entry(head
->next
, struct fuse_req
, list
);
2006 req
->out
.h
.error
= -ECONNABORTED
;
2007 request_end(fc
, req
);
2008 spin_lock(&fc
->lock
);
2013 * Abort requests under I/O
2015 * The requests are set to aborted and finished, and the request
2016 * waiter is woken up. This will make request_wait_answer() wait
2017 * until the request is unlocked and then return.
2019 * If the request is asynchronous, then the end function needs to be
2020 * called after waiting for the request to be unlocked (if it was
2023 static void end_io_requests(struct fuse_conn
*fc
)
2024 __releases(fc
->lock
)
2025 __acquires(fc
->lock
)
2027 while (!list_empty(&fc
->io
)) {
2028 struct fuse_req
*req
=
2029 list_entry(fc
->io
.next
, struct fuse_req
, list
);
2030 void (*end
) (struct fuse_conn
*, struct fuse_req
*) = req
->end
;
2033 req
->out
.h
.error
= -ECONNABORTED
;
2034 req
->state
= FUSE_REQ_FINISHED
;
2035 list_del_init(&req
->list
);
2036 wake_up(&req
->waitq
);
2039 __fuse_get_request(req
);
2040 spin_unlock(&fc
->lock
);
2041 wait_event(req
->waitq
, !req
->locked
);
2043 fuse_put_request(fc
, req
);
2044 spin_lock(&fc
->lock
);
2049 static void end_queued_requests(struct fuse_conn
*fc
)
2050 __releases(fc
->lock
)
2051 __acquires(fc
->lock
)
2053 fc
->max_background
= UINT_MAX
;
2055 end_requests(fc
, &fc
->pending
);
2056 end_requests(fc
, &fc
->processing
);
2057 while (forget_pending(fc
))
2058 kfree(dequeue_forget(fc
, 1, NULL
));
2061 static void end_polls(struct fuse_conn
*fc
)
2065 p
= rb_first(&fc
->polled_files
);
2068 struct fuse_file
*ff
;
2069 ff
= rb_entry(p
, struct fuse_file
, polled_node
);
2070 wake_up_interruptible_all(&ff
->poll_wait
);
2077 * Abort all requests.
2079 * Emergency exit in case of a malicious or accidental deadlock, or
2080 * just a hung filesystem.
2082 * The same effect is usually achievable through killing the
2083 * filesystem daemon and all users of the filesystem. The exception
2084 * is the combination of an asynchronous request and the tricky
2085 * deadlock (see Documentation/filesystems/fuse.txt).
2087 * During the aborting, progression of requests from the pending and
2088 * processing lists onto the io list, and progression of new requests
2089 * onto the pending list is prevented by req->connected being false.
2091 * Progression of requests under I/O to the processing list is
2092 * prevented by the req->aborted flag being true for these requests.
2093 * For this reason requests on the io list must be aborted first.
2095 void fuse_abort_conn(struct fuse_conn
*fc
)
2097 spin_lock(&fc
->lock
);
2098 if (fc
->connected
) {
2101 fc
->initialized
= 1;
2102 end_io_requests(fc
);
2103 end_queued_requests(fc
);
2105 wake_up_all(&fc
->waitq
);
2106 wake_up_all(&fc
->blocked_waitq
);
2107 kill_fasync(&fc
->fasync
, SIGIO
, POLL_IN
);
2109 spin_unlock(&fc
->lock
);
2111 EXPORT_SYMBOL_GPL(fuse_abort_conn
);
2113 int fuse_dev_release(struct inode
*inode
, struct file
*file
)
2115 struct fuse_conn
*fc
= fuse_get_conn(file
);
2117 spin_lock(&fc
->lock
);
2120 fc
->initialized
= 1;
2121 end_queued_requests(fc
);
2123 wake_up_all(&fc
->blocked_waitq
);
2124 spin_unlock(&fc
->lock
);
2130 EXPORT_SYMBOL_GPL(fuse_dev_release
);
2132 static int fuse_dev_fasync(int fd
, struct file
*file
, int on
)
2134 struct fuse_conn
*fc
= fuse_get_conn(file
);
2138 /* No locking - fasync_helper does its own locking */
2139 return fasync_helper(fd
, file
, on
, &fc
->fasync
);
2142 const struct file_operations fuse_dev_operations
= {
2143 .owner
= THIS_MODULE
,
2144 .llseek
= no_llseek
,
2145 .read
= do_sync_read
,
2146 .aio_read
= fuse_dev_read
,
2147 .splice_read
= fuse_dev_splice_read
,
2148 .write
= do_sync_write
,
2149 .aio_write
= fuse_dev_write
,
2150 .splice_write
= fuse_dev_splice_write
,
2151 .poll
= fuse_dev_poll
,
2152 .release
= fuse_dev_release
,
2153 .fasync
= fuse_dev_fasync
,
2155 EXPORT_SYMBOL_GPL(fuse_dev_operations
);
2157 static struct miscdevice fuse_miscdevice
= {
2158 .minor
= FUSE_MINOR
,
2160 .fops
= &fuse_dev_operations
,
2163 int __init
fuse_dev_init(void)
2166 fuse_req_cachep
= kmem_cache_create("fuse_request",
2167 sizeof(struct fuse_req
),
2169 if (!fuse_req_cachep
)
2172 err
= misc_register(&fuse_miscdevice
);
2174 goto out_cache_clean
;
2179 kmem_cache_destroy(fuse_req_cachep
);
2184 void fuse_dev_cleanup(void)
2186 misc_deregister(&fuse_miscdevice
);
2187 kmem_cache_destroy(fuse_req_cachep
);