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/sched/signal.h>
15 #include <linux/uio.h>
16 #include <linux/miscdevice.h>
17 #include <linux/pagemap.h>
18 #include <linux/file.h>
19 #include <linux/slab.h>
20 #include <linux/pipe_fs_i.h>
21 #include <linux/swap.h>
22 #include <linux/splice.h>
23 #include <linux/sched.h>
25 MODULE_ALIAS_MISCDEV(FUSE_MINOR
);
26 MODULE_ALIAS("devname:fuse");
28 static struct kmem_cache
*fuse_req_cachep
;
30 static struct fuse_dev
*fuse_get_dev(struct file
*file
)
33 * Lockless access is OK, because file->private data is set
34 * once during mount and is valid until the file is released.
36 return ACCESS_ONCE(file
->private_data
);
39 static void fuse_request_init(struct fuse_req
*req
, struct page
**pages
,
40 struct fuse_page_desc
*page_descs
,
43 memset(req
, 0, sizeof(*req
));
44 memset(pages
, 0, sizeof(*pages
) * npages
);
45 memset(page_descs
, 0, sizeof(*page_descs
) * npages
);
46 INIT_LIST_HEAD(&req
->list
);
47 INIT_LIST_HEAD(&req
->intr_entry
);
48 init_waitqueue_head(&req
->waitq
);
49 refcount_set(&req
->count
, 1);
51 req
->page_descs
= page_descs
;
52 req
->max_pages
= npages
;
53 __set_bit(FR_PENDING
, &req
->flags
);
56 static struct fuse_req
*__fuse_request_alloc(unsigned npages
, gfp_t flags
)
58 struct fuse_req
*req
= kmem_cache_alloc(fuse_req_cachep
, flags
);
61 struct fuse_page_desc
*page_descs
;
63 if (npages
<= FUSE_REQ_INLINE_PAGES
) {
64 pages
= req
->inline_pages
;
65 page_descs
= req
->inline_page_descs
;
67 pages
= kmalloc(sizeof(struct page
*) * npages
, flags
);
68 page_descs
= kmalloc(sizeof(struct fuse_page_desc
) *
72 if (!pages
|| !page_descs
) {
75 kmem_cache_free(fuse_req_cachep
, req
);
79 fuse_request_init(req
, pages
, page_descs
, npages
);
84 struct fuse_req
*fuse_request_alloc(unsigned npages
)
86 return __fuse_request_alloc(npages
, GFP_KERNEL
);
88 EXPORT_SYMBOL_GPL(fuse_request_alloc
);
90 struct fuse_req
*fuse_request_alloc_nofs(unsigned npages
)
92 return __fuse_request_alloc(npages
, GFP_NOFS
);
95 void fuse_request_free(struct fuse_req
*req
)
97 if (req
->pages
!= req
->inline_pages
) {
99 kfree(req
->page_descs
);
101 kmem_cache_free(fuse_req_cachep
, req
);
104 void __fuse_get_request(struct fuse_req
*req
)
106 refcount_inc(&req
->count
);
109 /* Must be called with > 1 refcount */
110 static void __fuse_put_request(struct fuse_req
*req
)
112 refcount_dec(&req
->count
);
115 static void fuse_req_init_context(struct fuse_conn
*fc
, struct fuse_req
*req
)
117 req
->in
.h
.uid
= from_kuid_munged(&init_user_ns
, current_fsuid());
118 req
->in
.h
.gid
= from_kgid_munged(&init_user_ns
, current_fsgid());
119 req
->in
.h
.pid
= pid_nr_ns(task_pid(current
), fc
->pid_ns
);
122 void fuse_set_initialized(struct fuse_conn
*fc
)
124 /* Make sure stores before this are seen on another CPU */
129 static bool fuse_block_alloc(struct fuse_conn
*fc
, bool for_background
)
131 return !fc
->initialized
|| (for_background
&& fc
->blocked
);
134 static void fuse_drop_waiting(struct fuse_conn
*fc
)
137 * lockess check of fc->connected is okay, because atomic_dec_and_test()
138 * provides a memory barrier mached with the one in fuse_wait_aborted()
139 * to ensure no wake-up is missed.
141 if (atomic_dec_and_test(&fc
->num_waiting
) &&
142 !READ_ONCE(fc
->connected
)) {
143 /* wake up aborters */
144 wake_up_all(&fc
->blocked_waitq
);
148 static struct fuse_req
*__fuse_get_req(struct fuse_conn
*fc
, unsigned npages
,
151 struct fuse_req
*req
;
153 atomic_inc(&fc
->num_waiting
);
155 if (fuse_block_alloc(fc
, for_background
)) {
157 if (wait_event_killable_exclusive(fc
->blocked_waitq
,
158 !fuse_block_alloc(fc
, for_background
)))
161 /* Matches smp_wmb() in fuse_set_initialized() */
172 req
= fuse_request_alloc(npages
);
176 wake_up(&fc
->blocked_waitq
);
180 fuse_req_init_context(fc
, req
);
181 __set_bit(FR_WAITING
, &req
->flags
);
183 __set_bit(FR_BACKGROUND
, &req
->flags
);
188 fuse_drop_waiting(fc
);
192 struct fuse_req
*fuse_get_req(struct fuse_conn
*fc
, unsigned npages
)
194 return __fuse_get_req(fc
, npages
, false);
196 EXPORT_SYMBOL_GPL(fuse_get_req
);
198 struct fuse_req
*fuse_get_req_for_background(struct fuse_conn
*fc
,
201 return __fuse_get_req(fc
, npages
, true);
203 EXPORT_SYMBOL_GPL(fuse_get_req_for_background
);
206 * Return request in fuse_file->reserved_req. However that may
207 * currently be in use. If that is the case, wait for it to become
210 static struct fuse_req
*get_reserved_req(struct fuse_conn
*fc
,
213 struct fuse_req
*req
= NULL
;
214 struct fuse_file
*ff
= file
->private_data
;
217 wait_event(fc
->reserved_req_waitq
, ff
->reserved_req
);
218 spin_lock(&fc
->lock
);
219 if (ff
->reserved_req
) {
220 req
= ff
->reserved_req
;
221 ff
->reserved_req
= NULL
;
222 req
->stolen_file
= get_file(file
);
224 spin_unlock(&fc
->lock
);
231 * Put stolen request back into fuse_file->reserved_req
233 static void put_reserved_req(struct fuse_conn
*fc
, struct fuse_req
*req
)
235 struct file
*file
= req
->stolen_file
;
236 struct fuse_file
*ff
= file
->private_data
;
238 spin_lock(&fc
->lock
);
239 fuse_request_init(req
, req
->pages
, req
->page_descs
, req
->max_pages
);
240 BUG_ON(ff
->reserved_req
);
241 ff
->reserved_req
= req
;
242 wake_up_all(&fc
->reserved_req_waitq
);
243 spin_unlock(&fc
->lock
);
248 * Gets a requests for a file operation, always succeeds
250 * This is used for sending the FLUSH request, which must get to
251 * userspace, due to POSIX locks which may need to be unlocked.
253 * If allocation fails due to OOM, use the reserved request in
256 * This is very unlikely to deadlock accidentally, since the
257 * filesystem should not have it's own file open. If deadlock is
258 * intentional, it can still be broken by "aborting" the filesystem.
260 struct fuse_req
*fuse_get_req_nofail_nopages(struct fuse_conn
*fc
,
263 struct fuse_req
*req
;
265 atomic_inc(&fc
->num_waiting
);
266 wait_event(fc
->blocked_waitq
, fc
->initialized
);
267 /* Matches smp_wmb() in fuse_set_initialized() */
269 req
= fuse_request_alloc(0);
271 req
= get_reserved_req(fc
, file
);
273 fuse_req_init_context(fc
, req
);
274 __set_bit(FR_WAITING
, &req
->flags
);
275 __clear_bit(FR_BACKGROUND
, &req
->flags
);
279 void fuse_put_request(struct fuse_conn
*fc
, struct fuse_req
*req
)
281 if (refcount_dec_and_test(&req
->count
)) {
282 if (test_bit(FR_BACKGROUND
, &req
->flags
)) {
284 * We get here in the unlikely case that a background
285 * request was allocated but not sent
287 spin_lock(&fc
->lock
);
289 wake_up(&fc
->blocked_waitq
);
290 spin_unlock(&fc
->lock
);
293 if (test_bit(FR_WAITING
, &req
->flags
)) {
294 __clear_bit(FR_WAITING
, &req
->flags
);
295 fuse_drop_waiting(fc
);
298 if (req
->stolen_file
)
299 put_reserved_req(fc
, req
);
301 fuse_request_free(req
);
304 EXPORT_SYMBOL_GPL(fuse_put_request
);
306 static unsigned len_args(unsigned numargs
, struct fuse_arg
*args
)
311 for (i
= 0; i
< numargs
; i
++)
312 nbytes
+= args
[i
].size
;
317 static u64
fuse_get_unique(struct fuse_iqueue
*fiq
)
319 return ++fiq
->reqctr
;
322 static void queue_request(struct fuse_iqueue
*fiq
, struct fuse_req
*req
)
324 req
->in
.h
.len
= sizeof(struct fuse_in_header
) +
325 len_args(req
->in
.numargs
, (struct fuse_arg
*) req
->in
.args
);
326 list_add_tail(&req
->list
, &fiq
->pending
);
327 wake_up_locked(&fiq
->waitq
);
328 kill_fasync(&fiq
->fasync
, SIGIO
, POLL_IN
);
331 void fuse_queue_forget(struct fuse_conn
*fc
, struct fuse_forget_link
*forget
,
332 u64 nodeid
, u64 nlookup
)
334 struct fuse_iqueue
*fiq
= &fc
->iq
;
336 forget
->forget_one
.nodeid
= nodeid
;
337 forget
->forget_one
.nlookup
= nlookup
;
339 spin_lock(&fiq
->waitq
.lock
);
340 if (fiq
->connected
) {
341 fiq
->forget_list_tail
->next
= forget
;
342 fiq
->forget_list_tail
= forget
;
343 wake_up_locked(&fiq
->waitq
);
344 kill_fasync(&fiq
->fasync
, SIGIO
, POLL_IN
);
348 spin_unlock(&fiq
->waitq
.lock
);
351 static void flush_bg_queue(struct fuse_conn
*fc
)
353 while (fc
->active_background
< fc
->max_background
&&
354 !list_empty(&fc
->bg_queue
)) {
355 struct fuse_req
*req
;
356 struct fuse_iqueue
*fiq
= &fc
->iq
;
358 req
= list_entry(fc
->bg_queue
.next
, struct fuse_req
, list
);
359 list_del(&req
->list
);
360 fc
->active_background
++;
361 spin_lock(&fiq
->waitq
.lock
);
362 req
->in
.h
.unique
= fuse_get_unique(fiq
);
363 queue_request(fiq
, req
);
364 spin_unlock(&fiq
->waitq
.lock
);
369 * This function is called when a request is finished. Either a reply
370 * has arrived or it was aborted (and not yet sent) or some error
371 * occurred during communication with userspace, or the device file
372 * was closed. The requester thread is woken up (if still waiting),
373 * the 'end' callback is called if given, else the reference to the
374 * request is released
376 static void request_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
378 struct fuse_iqueue
*fiq
= &fc
->iq
;
380 if (test_and_set_bit(FR_FINISHED
, &req
->flags
))
383 spin_lock(&fiq
->waitq
.lock
);
384 list_del_init(&req
->intr_entry
);
385 spin_unlock(&fiq
->waitq
.lock
);
386 WARN_ON(test_bit(FR_PENDING
, &req
->flags
));
387 WARN_ON(test_bit(FR_SENT
, &req
->flags
));
388 if (test_bit(FR_BACKGROUND
, &req
->flags
)) {
389 spin_lock(&fc
->lock
);
390 clear_bit(FR_BACKGROUND
, &req
->flags
);
391 if (fc
->num_background
== fc
->max_background
) {
393 wake_up(&fc
->blocked_waitq
);
394 } else if (!fc
->blocked
) {
396 * Wake up next waiter, if any. It's okay to use
397 * waitqueue_active(), as we've already synced up
398 * fc->blocked with waiters with the wake_up() call
401 if (waitqueue_active(&fc
->blocked_waitq
))
402 wake_up(&fc
->blocked_waitq
);
405 if (fc
->num_background
== fc
->congestion_threshold
&& fc
->sb
) {
406 clear_bdi_congested(fc
->sb
->s_bdi
, BLK_RW_SYNC
);
407 clear_bdi_congested(fc
->sb
->s_bdi
, BLK_RW_ASYNC
);
409 fc
->num_background
--;
410 fc
->active_background
--;
412 spin_unlock(&fc
->lock
);
414 wake_up(&req
->waitq
);
418 fuse_put_request(fc
, req
);
421 static void queue_interrupt(struct fuse_iqueue
*fiq
, struct fuse_req
*req
)
423 spin_lock(&fiq
->waitq
.lock
);
424 if (test_bit(FR_FINISHED
, &req
->flags
)) {
425 spin_unlock(&fiq
->waitq
.lock
);
428 if (list_empty(&req
->intr_entry
)) {
429 list_add_tail(&req
->intr_entry
, &fiq
->interrupts
);
430 wake_up_locked(&fiq
->waitq
);
432 spin_unlock(&fiq
->waitq
.lock
);
433 kill_fasync(&fiq
->fasync
, SIGIO
, POLL_IN
);
436 static void request_wait_answer(struct fuse_conn
*fc
, struct fuse_req
*req
)
438 struct fuse_iqueue
*fiq
= &fc
->iq
;
441 if (!fc
->no_interrupt
) {
442 /* Any signal may interrupt this */
443 err
= wait_event_interruptible(req
->waitq
,
444 test_bit(FR_FINISHED
, &req
->flags
));
448 set_bit(FR_INTERRUPTED
, &req
->flags
);
449 /* matches barrier in fuse_dev_do_read() */
450 smp_mb__after_atomic();
451 if (test_bit(FR_SENT
, &req
->flags
))
452 queue_interrupt(fiq
, req
);
455 if (!test_bit(FR_FORCE
, &req
->flags
)) {
456 /* Only fatal signals may interrupt this */
457 err
= wait_event_killable(req
->waitq
,
458 test_bit(FR_FINISHED
, &req
->flags
));
462 spin_lock(&fiq
->waitq
.lock
);
463 /* Request is not yet in userspace, bail out */
464 if (test_bit(FR_PENDING
, &req
->flags
)) {
465 list_del(&req
->list
);
466 spin_unlock(&fiq
->waitq
.lock
);
467 __fuse_put_request(req
);
468 req
->out
.h
.error
= -EINTR
;
471 spin_unlock(&fiq
->waitq
.lock
);
475 * Either request is already in userspace, or it was forced.
478 wait_event(req
->waitq
, test_bit(FR_FINISHED
, &req
->flags
));
481 static void __fuse_request_send(struct fuse_conn
*fc
, struct fuse_req
*req
)
483 struct fuse_iqueue
*fiq
= &fc
->iq
;
485 BUG_ON(test_bit(FR_BACKGROUND
, &req
->flags
));
486 spin_lock(&fiq
->waitq
.lock
);
487 if (!fiq
->connected
) {
488 spin_unlock(&fiq
->waitq
.lock
);
489 req
->out
.h
.error
= -ENOTCONN
;
491 req
->in
.h
.unique
= fuse_get_unique(fiq
);
492 queue_request(fiq
, req
);
493 /* acquire extra reference, since request is still needed
494 after request_end() */
495 __fuse_get_request(req
);
496 spin_unlock(&fiq
->waitq
.lock
);
498 request_wait_answer(fc
, req
);
499 /* Pairs with smp_wmb() in request_end() */
504 void fuse_request_send(struct fuse_conn
*fc
, struct fuse_req
*req
)
506 __set_bit(FR_ISREPLY
, &req
->flags
);
507 if (!test_bit(FR_WAITING
, &req
->flags
)) {
508 __set_bit(FR_WAITING
, &req
->flags
);
509 atomic_inc(&fc
->num_waiting
);
511 __fuse_request_send(fc
, req
);
513 EXPORT_SYMBOL_GPL(fuse_request_send
);
515 static void fuse_adjust_compat(struct fuse_conn
*fc
, struct fuse_args
*args
)
517 if (fc
->minor
< 4 && args
->in
.h
.opcode
== FUSE_STATFS
)
518 args
->out
.args
[0].size
= FUSE_COMPAT_STATFS_SIZE
;
521 switch (args
->in
.h
.opcode
) {
528 args
->out
.args
[0].size
= FUSE_COMPAT_ENTRY_OUT_SIZE
;
532 args
->out
.args
[0].size
= FUSE_COMPAT_ATTR_OUT_SIZE
;
536 if (fc
->minor
< 12) {
537 switch (args
->in
.h
.opcode
) {
539 args
->in
.args
[0].size
= sizeof(struct fuse_open_in
);
542 args
->in
.args
[0].size
= FUSE_COMPAT_MKNOD_IN_SIZE
;
548 ssize_t
fuse_simple_request(struct fuse_conn
*fc
, struct fuse_args
*args
)
550 struct fuse_req
*req
;
553 req
= fuse_get_req(fc
, 0);
557 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
558 fuse_adjust_compat(fc
, args
);
560 req
->in
.h
.opcode
= args
->in
.h
.opcode
;
561 req
->in
.h
.nodeid
= args
->in
.h
.nodeid
;
562 req
->in
.numargs
= args
->in
.numargs
;
563 memcpy(req
->in
.args
, args
->in
.args
,
564 args
->in
.numargs
* sizeof(struct fuse_in_arg
));
565 req
->out
.argvar
= args
->out
.argvar
;
566 req
->out
.numargs
= args
->out
.numargs
;
567 memcpy(req
->out
.args
, args
->out
.args
,
568 args
->out
.numargs
* sizeof(struct fuse_arg
));
569 fuse_request_send(fc
, req
);
570 ret
= req
->out
.h
.error
;
571 if (!ret
&& args
->out
.argvar
) {
572 BUG_ON(args
->out
.numargs
!= 1);
573 ret
= req
->out
.args
[0].size
;
575 fuse_put_request(fc
, req
);
581 * Called under fc->lock
583 * fc->connected must have been checked previously
585 void fuse_request_send_background_locked(struct fuse_conn
*fc
,
586 struct fuse_req
*req
)
588 BUG_ON(!test_bit(FR_BACKGROUND
, &req
->flags
));
589 if (!test_bit(FR_WAITING
, &req
->flags
)) {
590 __set_bit(FR_WAITING
, &req
->flags
);
591 atomic_inc(&fc
->num_waiting
);
593 __set_bit(FR_ISREPLY
, &req
->flags
);
594 fc
->num_background
++;
595 if (fc
->num_background
== fc
->max_background
)
597 if (fc
->num_background
== fc
->congestion_threshold
&& fc
->sb
) {
598 set_bdi_congested(fc
->sb
->s_bdi
, BLK_RW_SYNC
);
599 set_bdi_congested(fc
->sb
->s_bdi
, BLK_RW_ASYNC
);
601 list_add_tail(&req
->list
, &fc
->bg_queue
);
605 void fuse_request_send_background(struct fuse_conn
*fc
, struct fuse_req
*req
)
608 spin_lock(&fc
->lock
);
610 fuse_request_send_background_locked(fc
, req
);
611 spin_unlock(&fc
->lock
);
613 spin_unlock(&fc
->lock
);
614 req
->out
.h
.error
= -ENOTCONN
;
616 fuse_put_request(fc
, req
);
619 EXPORT_SYMBOL_GPL(fuse_request_send_background
);
621 static int fuse_request_send_notify_reply(struct fuse_conn
*fc
,
622 struct fuse_req
*req
, u64 unique
)
625 struct fuse_iqueue
*fiq
= &fc
->iq
;
627 __clear_bit(FR_ISREPLY
, &req
->flags
);
628 req
->in
.h
.unique
= unique
;
629 spin_lock(&fiq
->waitq
.lock
);
630 if (fiq
->connected
) {
631 queue_request(fiq
, req
);
634 spin_unlock(&fiq
->waitq
.lock
);
639 void fuse_force_forget(struct file
*file
, u64 nodeid
)
641 struct inode
*inode
= file_inode(file
);
642 struct fuse_conn
*fc
= get_fuse_conn(inode
);
643 struct fuse_req
*req
;
644 struct fuse_forget_in inarg
;
646 memset(&inarg
, 0, sizeof(inarg
));
648 req
= fuse_get_req_nofail_nopages(fc
, file
);
649 req
->in
.h
.opcode
= FUSE_FORGET
;
650 req
->in
.h
.nodeid
= nodeid
;
652 req
->in
.args
[0].size
= sizeof(inarg
);
653 req
->in
.args
[0].value
= &inarg
;
654 __clear_bit(FR_ISREPLY
, &req
->flags
);
655 __fuse_request_send(fc
, req
);
657 fuse_put_request(fc
, req
);
661 * Lock the request. Up to the next unlock_request() there mustn't be
662 * anything that could cause a page-fault. If the request was already
665 static int lock_request(struct fuse_req
*req
)
669 spin_lock(&req
->waitq
.lock
);
670 if (test_bit(FR_ABORTED
, &req
->flags
))
673 set_bit(FR_LOCKED
, &req
->flags
);
674 spin_unlock(&req
->waitq
.lock
);
680 * Unlock request. If it was aborted while locked, caller is responsible
681 * for unlocking and ending the request.
683 static int unlock_request(struct fuse_req
*req
)
687 spin_lock(&req
->waitq
.lock
);
688 if (test_bit(FR_ABORTED
, &req
->flags
))
691 clear_bit(FR_LOCKED
, &req
->flags
);
692 spin_unlock(&req
->waitq
.lock
);
697 struct fuse_copy_state
{
699 struct fuse_req
*req
;
700 struct iov_iter
*iter
;
701 struct pipe_buffer
*pipebufs
;
702 struct pipe_buffer
*currbuf
;
703 struct pipe_inode_info
*pipe
;
704 unsigned long nr_segs
;
708 unsigned move_pages
:1;
711 static void fuse_copy_init(struct fuse_copy_state
*cs
, int write
,
712 struct iov_iter
*iter
)
714 memset(cs
, 0, sizeof(*cs
));
719 /* Unmap and put previous page of userspace buffer */
720 static void fuse_copy_finish(struct fuse_copy_state
*cs
)
723 struct pipe_buffer
*buf
= cs
->currbuf
;
726 buf
->len
= PAGE_SIZE
- cs
->len
;
730 flush_dcache_page(cs
->pg
);
731 set_page_dirty_lock(cs
->pg
);
739 * Get another pagefull of userspace buffer, and map it to kernel
740 * address space, and lock request
742 static int fuse_copy_fill(struct fuse_copy_state
*cs
)
747 err
= unlock_request(cs
->req
);
751 fuse_copy_finish(cs
);
753 struct pipe_buffer
*buf
= cs
->pipebufs
;
756 err
= pipe_buf_confirm(cs
->pipe
, buf
);
760 BUG_ON(!cs
->nr_segs
);
763 cs
->offset
= buf
->offset
;
768 if (cs
->nr_segs
== cs
->pipe
->buffers
)
771 page
= alloc_page(GFP_HIGHUSER
);
788 err
= iov_iter_get_pages(cs
->iter
, &page
, PAGE_SIZE
, 1, &off
);
795 iov_iter_advance(cs
->iter
, err
);
798 return lock_request(cs
->req
);
801 /* Do as much copy to/from userspace buffer as we can */
802 static int fuse_copy_do(struct fuse_copy_state
*cs
, void **val
, unsigned *size
)
804 unsigned ncpy
= min(*size
, cs
->len
);
806 void *pgaddr
= kmap_atomic(cs
->pg
);
807 void *buf
= pgaddr
+ cs
->offset
;
810 memcpy(buf
, *val
, ncpy
);
812 memcpy(*val
, buf
, ncpy
);
814 kunmap_atomic(pgaddr
);
823 static int fuse_check_page(struct page
*page
)
825 if (page_mapcount(page
) ||
826 page
->mapping
!= NULL
||
827 (page
->flags
& PAGE_FLAGS_CHECK_AT_PREP
&
834 printk(KERN_WARNING
"fuse: trying to steal weird page\n");
835 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
);
841 static int fuse_try_move_page(struct fuse_copy_state
*cs
, struct page
**pagep
)
844 struct page
*oldpage
= *pagep
;
845 struct page
*newpage
;
846 struct pipe_buffer
*buf
= cs
->pipebufs
;
849 err
= unlock_request(cs
->req
);
853 fuse_copy_finish(cs
);
855 err
= pipe_buf_confirm(cs
->pipe
, buf
);
859 BUG_ON(!cs
->nr_segs
);
865 if (cs
->len
!= PAGE_SIZE
)
868 if (pipe_buf_steal(cs
->pipe
, buf
) != 0)
873 if (!PageUptodate(newpage
))
874 SetPageUptodate(newpage
);
876 ClearPageMappedToDisk(newpage
);
878 if (fuse_check_page(newpage
) != 0)
879 goto out_fallback_unlock
;
882 * This is a new and locked page, it shouldn't be mapped or
883 * have any special flags on it
885 if (WARN_ON(page_mapped(oldpage
)))
886 goto out_fallback_unlock
;
887 if (WARN_ON(page_has_private(oldpage
)))
888 goto out_fallback_unlock
;
889 if (WARN_ON(PageDirty(oldpage
) || PageWriteback(oldpage
)))
890 goto out_fallback_unlock
;
891 if (WARN_ON(PageMlocked(oldpage
)))
892 goto out_fallback_unlock
;
894 err
= replace_page_cache_page(oldpage
, newpage
, GFP_KERNEL
);
896 unlock_page(newpage
);
902 if (!(buf
->flags
& PIPE_BUF_FLAG_LRU
))
903 lru_cache_add_file(newpage
);
906 spin_lock(&cs
->req
->waitq
.lock
);
907 if (test_bit(FR_ABORTED
, &cs
->req
->flags
))
911 spin_unlock(&cs
->req
->waitq
.lock
);
914 unlock_page(newpage
);
919 unlock_page(oldpage
);
920 /* Drop ref for ap->pages[] array */
926 /* Drop ref obtained in this function */
931 unlock_page(newpage
);
934 cs
->offset
= buf
->offset
;
936 err
= lock_request(cs
->req
);
943 static int fuse_ref_page(struct fuse_copy_state
*cs
, struct page
*page
,
944 unsigned offset
, unsigned count
)
946 struct pipe_buffer
*buf
;
949 if (cs
->nr_segs
== cs
->pipe
->buffers
)
953 err
= unlock_request(cs
->req
);
959 fuse_copy_finish(cs
);
963 buf
->offset
= offset
;
974 * Copy a page in the request to/from the userspace buffer. Must be
977 static int fuse_copy_page(struct fuse_copy_state
*cs
, struct page
**pagep
,
978 unsigned offset
, unsigned count
, int zeroing
)
981 struct page
*page
= *pagep
;
983 if (page
&& zeroing
&& count
< PAGE_SIZE
)
984 clear_highpage(page
);
987 if (cs
->write
&& cs
->pipebufs
&& page
) {
988 return fuse_ref_page(cs
, page
, offset
, count
);
989 } else if (!cs
->len
) {
990 if (cs
->move_pages
&& page
&&
991 offset
== 0 && count
== PAGE_SIZE
) {
992 err
= fuse_try_move_page(cs
, pagep
);
996 err
= fuse_copy_fill(cs
);
1002 void *mapaddr
= kmap_atomic(page
);
1003 void *buf
= mapaddr
+ offset
;
1004 offset
+= fuse_copy_do(cs
, &buf
, &count
);
1005 kunmap_atomic(mapaddr
);
1007 offset
+= fuse_copy_do(cs
, NULL
, &count
);
1009 if (page
&& !cs
->write
)
1010 flush_dcache_page(page
);
1014 /* Copy pages in the request to/from userspace buffer */
1015 static int fuse_copy_pages(struct fuse_copy_state
*cs
, unsigned nbytes
,
1019 struct fuse_req
*req
= cs
->req
;
1021 for (i
= 0; i
< req
->num_pages
&& (nbytes
|| zeroing
); i
++) {
1023 unsigned offset
= req
->page_descs
[i
].offset
;
1024 unsigned count
= min(nbytes
, req
->page_descs
[i
].length
);
1026 err
= fuse_copy_page(cs
, &req
->pages
[i
], offset
, count
,
1036 /* Copy a single argument in the request to/from userspace buffer */
1037 static int fuse_copy_one(struct fuse_copy_state
*cs
, void *val
, unsigned size
)
1041 int err
= fuse_copy_fill(cs
);
1045 fuse_copy_do(cs
, &val
, &size
);
1050 /* Copy request arguments to/from userspace buffer */
1051 static int fuse_copy_args(struct fuse_copy_state
*cs
, unsigned numargs
,
1052 unsigned argpages
, struct fuse_arg
*args
,
1058 for (i
= 0; !err
&& i
< numargs
; i
++) {
1059 struct fuse_arg
*arg
= &args
[i
];
1060 if (i
== numargs
- 1 && argpages
)
1061 err
= fuse_copy_pages(cs
, arg
->size
, zeroing
);
1063 err
= fuse_copy_one(cs
, arg
->value
, arg
->size
);
1068 static int forget_pending(struct fuse_iqueue
*fiq
)
1070 return fiq
->forget_list_head
.next
!= NULL
;
1073 static int request_pending(struct fuse_iqueue
*fiq
)
1075 return !list_empty(&fiq
->pending
) || !list_empty(&fiq
->interrupts
) ||
1076 forget_pending(fiq
);
1080 * Transfer an interrupt request to userspace
1082 * Unlike other requests this is assembled on demand, without a need
1083 * to allocate a separate fuse_req structure.
1085 * Called with fiq->waitq.lock held, releases it
1087 static int fuse_read_interrupt(struct fuse_iqueue
*fiq
,
1088 struct fuse_copy_state
*cs
,
1089 size_t nbytes
, struct fuse_req
*req
)
1090 __releases(fiq
->waitq
.lock
)
1092 struct fuse_in_header ih
;
1093 struct fuse_interrupt_in arg
;
1094 unsigned reqsize
= sizeof(ih
) + sizeof(arg
);
1097 list_del_init(&req
->intr_entry
);
1098 req
->intr_unique
= fuse_get_unique(fiq
);
1099 memset(&ih
, 0, sizeof(ih
));
1100 memset(&arg
, 0, sizeof(arg
));
1102 ih
.opcode
= FUSE_INTERRUPT
;
1103 ih
.unique
= req
->intr_unique
;
1104 arg
.unique
= req
->in
.h
.unique
;
1106 spin_unlock(&fiq
->waitq
.lock
);
1107 if (nbytes
< reqsize
)
1110 err
= fuse_copy_one(cs
, &ih
, sizeof(ih
));
1112 err
= fuse_copy_one(cs
, &arg
, sizeof(arg
));
1113 fuse_copy_finish(cs
);
1115 return err
? err
: reqsize
;
1118 static struct fuse_forget_link
*dequeue_forget(struct fuse_iqueue
*fiq
,
1122 struct fuse_forget_link
*head
= fiq
->forget_list_head
.next
;
1123 struct fuse_forget_link
**newhead
= &head
;
1126 for (count
= 0; *newhead
!= NULL
&& count
< max
; count
++)
1127 newhead
= &(*newhead
)->next
;
1129 fiq
->forget_list_head
.next
= *newhead
;
1131 if (fiq
->forget_list_head
.next
== NULL
)
1132 fiq
->forget_list_tail
= &fiq
->forget_list_head
;
1140 static int fuse_read_single_forget(struct fuse_iqueue
*fiq
,
1141 struct fuse_copy_state
*cs
,
1143 __releases(fiq
->waitq
.lock
)
1146 struct fuse_forget_link
*forget
= dequeue_forget(fiq
, 1, NULL
);
1147 struct fuse_forget_in arg
= {
1148 .nlookup
= forget
->forget_one
.nlookup
,
1150 struct fuse_in_header ih
= {
1151 .opcode
= FUSE_FORGET
,
1152 .nodeid
= forget
->forget_one
.nodeid
,
1153 .unique
= fuse_get_unique(fiq
),
1154 .len
= sizeof(ih
) + sizeof(arg
),
1157 spin_unlock(&fiq
->waitq
.lock
);
1159 if (nbytes
< ih
.len
)
1162 err
= fuse_copy_one(cs
, &ih
, sizeof(ih
));
1164 err
= fuse_copy_one(cs
, &arg
, sizeof(arg
));
1165 fuse_copy_finish(cs
);
1173 static int fuse_read_batch_forget(struct fuse_iqueue
*fiq
,
1174 struct fuse_copy_state
*cs
, size_t nbytes
)
1175 __releases(fiq
->waitq
.lock
)
1178 unsigned max_forgets
;
1180 struct fuse_forget_link
*head
;
1181 struct fuse_batch_forget_in arg
= { .count
= 0 };
1182 struct fuse_in_header ih
= {
1183 .opcode
= FUSE_BATCH_FORGET
,
1184 .unique
= fuse_get_unique(fiq
),
1185 .len
= sizeof(ih
) + sizeof(arg
),
1188 if (nbytes
< ih
.len
) {
1189 spin_unlock(&fiq
->waitq
.lock
);
1193 max_forgets
= (nbytes
- ih
.len
) / sizeof(struct fuse_forget_one
);
1194 head
= dequeue_forget(fiq
, max_forgets
, &count
);
1195 spin_unlock(&fiq
->waitq
.lock
);
1198 ih
.len
+= count
* sizeof(struct fuse_forget_one
);
1199 err
= fuse_copy_one(cs
, &ih
, sizeof(ih
));
1201 err
= fuse_copy_one(cs
, &arg
, sizeof(arg
));
1204 struct fuse_forget_link
*forget
= head
;
1207 err
= fuse_copy_one(cs
, &forget
->forget_one
,
1208 sizeof(forget
->forget_one
));
1210 head
= forget
->next
;
1214 fuse_copy_finish(cs
);
1222 static int fuse_read_forget(struct fuse_conn
*fc
, struct fuse_iqueue
*fiq
,
1223 struct fuse_copy_state
*cs
,
1225 __releases(fiq
->waitq
.lock
)
1227 if (fc
->minor
< 16 || fiq
->forget_list_head
.next
->next
== NULL
)
1228 return fuse_read_single_forget(fiq
, cs
, nbytes
);
1230 return fuse_read_batch_forget(fiq
, cs
, nbytes
);
1234 * Read a single request into the userspace filesystem's buffer. This
1235 * function waits until a request is available, then removes it from
1236 * the pending list and copies request data to userspace buffer. If
1237 * no reply is needed (FORGET) or request has been aborted or there
1238 * was an error during the copying then it's finished by calling
1239 * request_end(). Otherwise add it to the processing list, and set
1242 static ssize_t
fuse_dev_do_read(struct fuse_dev
*fud
, struct file
*file
,
1243 struct fuse_copy_state
*cs
, size_t nbytes
)
1246 struct fuse_conn
*fc
= fud
->fc
;
1247 struct fuse_iqueue
*fiq
= &fc
->iq
;
1248 struct fuse_pqueue
*fpq
= &fud
->pq
;
1249 struct fuse_req
*req
;
1254 spin_lock(&fiq
->waitq
.lock
);
1256 if ((file
->f_flags
& O_NONBLOCK
) && fiq
->connected
&&
1257 !request_pending(fiq
))
1260 err
= wait_event_interruptible_exclusive_locked(fiq
->waitq
,
1261 !fiq
->connected
|| request_pending(fiq
));
1266 if (!fiq
->connected
)
1269 if (!list_empty(&fiq
->interrupts
)) {
1270 req
= list_entry(fiq
->interrupts
.next
, struct fuse_req
,
1272 return fuse_read_interrupt(fiq
, cs
, nbytes
, req
);
1275 if (forget_pending(fiq
)) {
1276 if (list_empty(&fiq
->pending
) || fiq
->forget_batch
-- > 0)
1277 return fuse_read_forget(fc
, fiq
, cs
, nbytes
);
1279 if (fiq
->forget_batch
<= -8)
1280 fiq
->forget_batch
= 16;
1283 req
= list_entry(fiq
->pending
.next
, struct fuse_req
, list
);
1284 clear_bit(FR_PENDING
, &req
->flags
);
1285 list_del_init(&req
->list
);
1286 spin_unlock(&fiq
->waitq
.lock
);
1289 reqsize
= in
->h
.len
;
1291 if (task_active_pid_ns(current
) != fc
->pid_ns
) {
1293 in
->h
.pid
= pid_vnr(find_pid_ns(in
->h
.pid
, fc
->pid_ns
));
1297 /* If request is too large, reply with an error and restart the read */
1298 if (nbytes
< reqsize
) {
1299 req
->out
.h
.error
= -EIO
;
1300 /* SETXATTR is special, since it may contain too large data */
1301 if (in
->h
.opcode
== FUSE_SETXATTR
)
1302 req
->out
.h
.error
= -E2BIG
;
1303 request_end(fc
, req
);
1306 spin_lock(&fpq
->lock
);
1307 list_add(&req
->list
, &fpq
->io
);
1308 spin_unlock(&fpq
->lock
);
1310 err
= fuse_copy_one(cs
, &in
->h
, sizeof(in
->h
));
1312 err
= fuse_copy_args(cs
, in
->numargs
, in
->argpages
,
1313 (struct fuse_arg
*) in
->args
, 0);
1314 fuse_copy_finish(cs
);
1315 spin_lock(&fpq
->lock
);
1316 clear_bit(FR_LOCKED
, &req
->flags
);
1317 if (!fpq
->connected
) {
1322 req
->out
.h
.error
= -EIO
;
1325 if (!test_bit(FR_ISREPLY
, &req
->flags
)) {
1329 list_move_tail(&req
->list
, &fpq
->processing
);
1330 __fuse_get_request(req
);
1331 set_bit(FR_SENT
, &req
->flags
);
1332 spin_unlock(&fpq
->lock
);
1333 /* matches barrier in request_wait_answer() */
1334 smp_mb__after_atomic();
1335 if (test_bit(FR_INTERRUPTED
, &req
->flags
))
1336 queue_interrupt(fiq
, req
);
1337 fuse_put_request(fc
, req
);
1342 if (!test_bit(FR_PRIVATE
, &req
->flags
))
1343 list_del_init(&req
->list
);
1344 spin_unlock(&fpq
->lock
);
1345 request_end(fc
, req
);
1349 spin_unlock(&fiq
->waitq
.lock
);
1353 static int fuse_dev_open(struct inode
*inode
, struct file
*file
)
1356 * The fuse device's file's private_data is used to hold
1357 * the fuse_conn(ection) when it is mounted, and is used to
1358 * keep track of whether the file has been mounted already.
1360 file
->private_data
= NULL
;
1364 static ssize_t
fuse_dev_read(struct kiocb
*iocb
, struct iov_iter
*to
)
1366 struct fuse_copy_state cs
;
1367 struct file
*file
= iocb
->ki_filp
;
1368 struct fuse_dev
*fud
= fuse_get_dev(file
);
1373 if (!iter_is_iovec(to
))
1376 fuse_copy_init(&cs
, 1, to
);
1378 return fuse_dev_do_read(fud
, file
, &cs
, iov_iter_count(to
));
1381 static ssize_t
fuse_dev_splice_read(struct file
*in
, loff_t
*ppos
,
1382 struct pipe_inode_info
*pipe
,
1383 size_t len
, unsigned int flags
)
1387 struct pipe_buffer
*bufs
;
1388 struct fuse_copy_state cs
;
1389 struct fuse_dev
*fud
= fuse_get_dev(in
);
1394 bufs
= kmalloc(pipe
->buffers
* sizeof(struct pipe_buffer
), GFP_KERNEL
);
1398 fuse_copy_init(&cs
, 1, NULL
);
1401 ret
= fuse_dev_do_read(fud
, in
, &cs
, len
);
1405 if (pipe
->nrbufs
+ cs
.nr_segs
> pipe
->buffers
) {
1410 for (ret
= total
= 0; page_nr
< cs
.nr_segs
; total
+= ret
) {
1412 * Need to be careful about this. Having buf->ops in module
1413 * code can Oops if the buffer persists after module unload.
1415 bufs
[page_nr
].ops
= &nosteal_pipe_buf_ops
;
1416 bufs
[page_nr
].flags
= 0;
1417 ret
= add_to_pipe(pipe
, &bufs
[page_nr
++]);
1418 if (unlikely(ret
< 0))
1424 for (; page_nr
< cs
.nr_segs
; page_nr
++)
1425 put_page(bufs
[page_nr
].page
);
1431 static int fuse_notify_poll(struct fuse_conn
*fc
, unsigned int size
,
1432 struct fuse_copy_state
*cs
)
1434 struct fuse_notify_poll_wakeup_out outarg
;
1437 if (size
!= sizeof(outarg
))
1440 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1444 fuse_copy_finish(cs
);
1445 return fuse_notify_poll_wakeup(fc
, &outarg
);
1448 fuse_copy_finish(cs
);
1452 static int fuse_notify_inval_inode(struct fuse_conn
*fc
, unsigned int size
,
1453 struct fuse_copy_state
*cs
)
1455 struct fuse_notify_inval_inode_out outarg
;
1458 if (size
!= sizeof(outarg
))
1461 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1464 fuse_copy_finish(cs
);
1466 down_read(&fc
->killsb
);
1469 err
= fuse_reverse_inval_inode(fc
->sb
, outarg
.ino
,
1470 outarg
.off
, outarg
.len
);
1472 up_read(&fc
->killsb
);
1476 fuse_copy_finish(cs
);
1480 static int fuse_notify_inval_entry(struct fuse_conn
*fc
, unsigned int size
,
1481 struct fuse_copy_state
*cs
)
1483 struct fuse_notify_inval_entry_out outarg
;
1488 buf
= kzalloc(FUSE_NAME_MAX
+ 1, GFP_KERNEL
);
1493 if (size
< sizeof(outarg
))
1496 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1500 err
= -ENAMETOOLONG
;
1501 if (outarg
.namelen
> FUSE_NAME_MAX
)
1505 if (size
!= sizeof(outarg
) + outarg
.namelen
+ 1)
1509 name
.len
= outarg
.namelen
;
1510 err
= fuse_copy_one(cs
, buf
, outarg
.namelen
+ 1);
1513 fuse_copy_finish(cs
);
1514 buf
[outarg
.namelen
] = 0;
1516 down_read(&fc
->killsb
);
1519 err
= fuse_reverse_inval_entry(fc
->sb
, outarg
.parent
, 0, &name
);
1520 up_read(&fc
->killsb
);
1526 fuse_copy_finish(cs
);
1530 static int fuse_notify_delete(struct fuse_conn
*fc
, unsigned int size
,
1531 struct fuse_copy_state
*cs
)
1533 struct fuse_notify_delete_out outarg
;
1538 buf
= kzalloc(FUSE_NAME_MAX
+ 1, GFP_KERNEL
);
1543 if (size
< sizeof(outarg
))
1546 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1550 err
= -ENAMETOOLONG
;
1551 if (outarg
.namelen
> FUSE_NAME_MAX
)
1555 if (size
!= sizeof(outarg
) + outarg
.namelen
+ 1)
1559 name
.len
= outarg
.namelen
;
1560 err
= fuse_copy_one(cs
, buf
, outarg
.namelen
+ 1);
1563 fuse_copy_finish(cs
);
1564 buf
[outarg
.namelen
] = 0;
1566 down_read(&fc
->killsb
);
1569 err
= fuse_reverse_inval_entry(fc
->sb
, outarg
.parent
,
1570 outarg
.child
, &name
);
1571 up_read(&fc
->killsb
);
1577 fuse_copy_finish(cs
);
1581 static int fuse_notify_store(struct fuse_conn
*fc
, unsigned int size
,
1582 struct fuse_copy_state
*cs
)
1584 struct fuse_notify_store_out outarg
;
1585 struct inode
*inode
;
1586 struct address_space
*mapping
;
1590 unsigned int offset
;
1596 if (size
< sizeof(outarg
))
1599 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1604 if (size
- sizeof(outarg
) != outarg
.size
)
1607 nodeid
= outarg
.nodeid
;
1609 down_read(&fc
->killsb
);
1615 inode
= ilookup5(fc
->sb
, nodeid
, fuse_inode_eq
, &nodeid
);
1619 mapping
= inode
->i_mapping
;
1620 index
= outarg
.offset
>> PAGE_SHIFT
;
1621 offset
= outarg
.offset
& ~PAGE_MASK
;
1622 file_size
= i_size_read(inode
);
1623 end
= outarg
.offset
+ outarg
.size
;
1624 if (end
> file_size
) {
1626 fuse_write_update_size(inode
, file_size
);
1632 unsigned int this_num
;
1635 page
= find_or_create_page(mapping
, index
,
1636 mapping_gfp_mask(mapping
));
1640 this_num
= min_t(unsigned, num
, PAGE_SIZE
- offset
);
1641 err
= fuse_copy_page(cs
, &page
, offset
, this_num
, 0);
1642 if (!err
&& offset
== 0 &&
1643 (this_num
== PAGE_SIZE
|| file_size
== end
))
1644 SetPageUptodate(page
);
1661 up_read(&fc
->killsb
);
1663 fuse_copy_finish(cs
);
1667 static void fuse_retrieve_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
1669 release_pages(req
->pages
, req
->num_pages
, false);
1672 static int fuse_retrieve(struct fuse_conn
*fc
, struct inode
*inode
,
1673 struct fuse_notify_retrieve_out
*outarg
)
1676 struct address_space
*mapping
= inode
->i_mapping
;
1677 struct fuse_req
*req
;
1681 unsigned int offset
;
1682 size_t total_len
= 0;
1685 offset
= outarg
->offset
& ~PAGE_MASK
;
1686 file_size
= i_size_read(inode
);
1688 num
= min(outarg
->size
, fc
->max_write
);
1689 if (outarg
->offset
> file_size
)
1691 else if (outarg
->offset
+ num
> file_size
)
1692 num
= file_size
- outarg
->offset
;
1694 num_pages
= (num
+ offset
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
1695 num_pages
= min(num_pages
, FUSE_MAX_PAGES_PER_REQ
);
1697 req
= fuse_get_req(fc
, num_pages
);
1699 return PTR_ERR(req
);
1701 req
->in
.h
.opcode
= FUSE_NOTIFY_REPLY
;
1702 req
->in
.h
.nodeid
= outarg
->nodeid
;
1703 req
->in
.numargs
= 2;
1704 req
->in
.argpages
= 1;
1705 req
->end
= fuse_retrieve_end
;
1707 index
= outarg
->offset
>> PAGE_SHIFT
;
1709 while (num
&& req
->num_pages
< num_pages
) {
1711 unsigned int this_num
;
1713 page
= find_get_page(mapping
, index
);
1717 this_num
= min_t(unsigned, num
, PAGE_SIZE
- offset
);
1718 req
->pages
[req
->num_pages
] = page
;
1719 req
->page_descs
[req
->num_pages
].offset
= offset
;
1720 req
->page_descs
[req
->num_pages
].length
= this_num
;
1725 total_len
+= this_num
;
1728 req
->misc
.retrieve_in
.offset
= outarg
->offset
;
1729 req
->misc
.retrieve_in
.size
= total_len
;
1730 req
->in
.args
[0].size
= sizeof(req
->misc
.retrieve_in
);
1731 req
->in
.args
[0].value
= &req
->misc
.retrieve_in
;
1732 req
->in
.args
[1].size
= total_len
;
1734 err
= fuse_request_send_notify_reply(fc
, req
, outarg
->notify_unique
);
1736 fuse_retrieve_end(fc
, req
);
1737 fuse_put_request(fc
, req
);
1743 static int fuse_notify_retrieve(struct fuse_conn
*fc
, unsigned int size
,
1744 struct fuse_copy_state
*cs
)
1746 struct fuse_notify_retrieve_out outarg
;
1747 struct inode
*inode
;
1751 if (size
!= sizeof(outarg
))
1754 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1758 fuse_copy_finish(cs
);
1760 down_read(&fc
->killsb
);
1763 u64 nodeid
= outarg
.nodeid
;
1765 inode
= ilookup5(fc
->sb
, nodeid
, fuse_inode_eq
, &nodeid
);
1767 err
= fuse_retrieve(fc
, inode
, &outarg
);
1771 up_read(&fc
->killsb
);
1776 fuse_copy_finish(cs
);
1780 static int fuse_notify(struct fuse_conn
*fc
, enum fuse_notify_code code
,
1781 unsigned int size
, struct fuse_copy_state
*cs
)
1783 /* Don't try to move pages (yet) */
1787 case FUSE_NOTIFY_POLL
:
1788 return fuse_notify_poll(fc
, size
, cs
);
1790 case FUSE_NOTIFY_INVAL_INODE
:
1791 return fuse_notify_inval_inode(fc
, size
, cs
);
1793 case FUSE_NOTIFY_INVAL_ENTRY
:
1794 return fuse_notify_inval_entry(fc
, size
, cs
);
1796 case FUSE_NOTIFY_STORE
:
1797 return fuse_notify_store(fc
, size
, cs
);
1799 case FUSE_NOTIFY_RETRIEVE
:
1800 return fuse_notify_retrieve(fc
, size
, cs
);
1802 case FUSE_NOTIFY_DELETE
:
1803 return fuse_notify_delete(fc
, size
, cs
);
1806 fuse_copy_finish(cs
);
1811 /* Look up request on processing list by unique ID */
1812 static struct fuse_req
*request_find(struct fuse_pqueue
*fpq
, u64 unique
)
1814 struct fuse_req
*req
;
1816 list_for_each_entry(req
, &fpq
->processing
, list
) {
1817 if (req
->in
.h
.unique
== unique
|| req
->intr_unique
== unique
)
1823 static int copy_out_args(struct fuse_copy_state
*cs
, struct fuse_out
*out
,
1826 unsigned reqsize
= sizeof(struct fuse_out_header
);
1829 return nbytes
!= reqsize
? -EINVAL
: 0;
1831 reqsize
+= len_args(out
->numargs
, out
->args
);
1833 if (reqsize
< nbytes
|| (reqsize
> nbytes
&& !out
->argvar
))
1835 else if (reqsize
> nbytes
) {
1836 struct fuse_arg
*lastarg
= &out
->args
[out
->numargs
-1];
1837 unsigned diffsize
= reqsize
- nbytes
;
1838 if (diffsize
> lastarg
->size
)
1840 lastarg
->size
-= diffsize
;
1842 return fuse_copy_args(cs
, out
->numargs
, out
->argpages
, out
->args
,
1847 * Write a single reply to a request. First the header is copied from
1848 * the write buffer. The request is then searched on the processing
1849 * list by the unique ID found in the header. If found, then remove
1850 * it from the list and copy the rest of the buffer to the request.
1851 * The request is finished by calling request_end()
1853 static ssize_t
fuse_dev_do_write(struct fuse_dev
*fud
,
1854 struct fuse_copy_state
*cs
, size_t nbytes
)
1857 struct fuse_conn
*fc
= fud
->fc
;
1858 struct fuse_pqueue
*fpq
= &fud
->pq
;
1859 struct fuse_req
*req
;
1860 struct fuse_out_header oh
;
1862 if (nbytes
< sizeof(struct fuse_out_header
))
1865 err
= fuse_copy_one(cs
, &oh
, sizeof(oh
));
1870 if (oh
.len
!= nbytes
)
1874 * Zero oh.unique indicates unsolicited notification message
1875 * and error contains notification code.
1878 err
= fuse_notify(fc
, oh
.error
, nbytes
- sizeof(oh
), cs
);
1879 return err
? err
: nbytes
;
1883 if (oh
.error
<= -1000 || oh
.error
> 0)
1886 spin_lock(&fpq
->lock
);
1888 if (!fpq
->connected
)
1891 req
= request_find(fpq
, oh
.unique
);
1895 /* Is it an interrupt reply? */
1896 if (req
->intr_unique
== oh
.unique
) {
1897 __fuse_get_request(req
);
1898 spin_unlock(&fpq
->lock
);
1901 if (nbytes
!= sizeof(struct fuse_out_header
)) {
1902 fuse_put_request(fc
, req
);
1906 if (oh
.error
== -ENOSYS
)
1907 fc
->no_interrupt
= 1;
1908 else if (oh
.error
== -EAGAIN
)
1909 queue_interrupt(&fc
->iq
, req
);
1910 fuse_put_request(fc
, req
);
1912 fuse_copy_finish(cs
);
1916 clear_bit(FR_SENT
, &req
->flags
);
1917 list_move(&req
->list
, &fpq
->io
);
1919 set_bit(FR_LOCKED
, &req
->flags
);
1920 spin_unlock(&fpq
->lock
);
1922 if (!req
->out
.page_replace
)
1925 err
= copy_out_args(cs
, &req
->out
, nbytes
);
1926 fuse_copy_finish(cs
);
1928 spin_lock(&fpq
->lock
);
1929 clear_bit(FR_LOCKED
, &req
->flags
);
1930 if (!fpq
->connected
)
1933 req
->out
.h
.error
= -EIO
;
1934 if (!test_bit(FR_PRIVATE
, &req
->flags
))
1935 list_del_init(&req
->list
);
1936 spin_unlock(&fpq
->lock
);
1938 request_end(fc
, req
);
1940 return err
? err
: nbytes
;
1943 spin_unlock(&fpq
->lock
);
1945 fuse_copy_finish(cs
);
1949 static ssize_t
fuse_dev_write(struct kiocb
*iocb
, struct iov_iter
*from
)
1951 struct fuse_copy_state cs
;
1952 struct fuse_dev
*fud
= fuse_get_dev(iocb
->ki_filp
);
1957 if (!iter_is_iovec(from
))
1960 fuse_copy_init(&cs
, 0, from
);
1962 return fuse_dev_do_write(fud
, &cs
, iov_iter_count(from
));
1965 static ssize_t
fuse_dev_splice_write(struct pipe_inode_info
*pipe
,
1966 struct file
*out
, loff_t
*ppos
,
1967 size_t len
, unsigned int flags
)
1971 struct pipe_buffer
*bufs
;
1972 struct fuse_copy_state cs
;
1973 struct fuse_dev
*fud
;
1977 fud
= fuse_get_dev(out
);
1983 bufs
= kmalloc(pipe
->buffers
* sizeof(struct pipe_buffer
), GFP_KERNEL
);
1991 for (idx
= 0; idx
< pipe
->nrbufs
&& rem
< len
; idx
++)
1992 rem
+= pipe
->bufs
[(pipe
->curbuf
+ idx
) & (pipe
->buffers
- 1)].len
;
2000 struct pipe_buffer
*ibuf
;
2001 struct pipe_buffer
*obuf
;
2003 BUG_ON(nbuf
>= pipe
->buffers
);
2004 BUG_ON(!pipe
->nrbufs
);
2005 ibuf
= &pipe
->bufs
[pipe
->curbuf
];
2008 if (rem
>= ibuf
->len
) {
2011 pipe
->curbuf
= (pipe
->curbuf
+ 1) & (pipe
->buffers
- 1);
2014 if (!pipe_buf_get(pipe
, ibuf
))
2018 obuf
->flags
&= ~PIPE_BUF_FLAG_GIFT
;
2020 ibuf
->offset
+= obuf
->len
;
2021 ibuf
->len
-= obuf
->len
;
2028 fuse_copy_init(&cs
, 0, NULL
);
2033 if (flags
& SPLICE_F_MOVE
)
2036 ret
= fuse_dev_do_write(fud
, &cs
, len
);
2040 for (idx
= 0; idx
< nbuf
; idx
++)
2041 pipe_buf_release(pipe
, &bufs
[idx
]);
2048 static unsigned fuse_dev_poll(struct file
*file
, poll_table
*wait
)
2050 unsigned mask
= POLLOUT
| POLLWRNORM
;
2051 struct fuse_iqueue
*fiq
;
2052 struct fuse_dev
*fud
= fuse_get_dev(file
);
2058 poll_wait(file
, &fiq
->waitq
, wait
);
2060 spin_lock(&fiq
->waitq
.lock
);
2061 if (!fiq
->connected
)
2063 else if (request_pending(fiq
))
2064 mask
|= POLLIN
| POLLRDNORM
;
2065 spin_unlock(&fiq
->waitq
.lock
);
2071 * Abort all requests on the given list (pending or processing)
2073 * This function releases and reacquires fc->lock
2075 static void end_requests(struct fuse_conn
*fc
, struct list_head
*head
)
2077 while (!list_empty(head
)) {
2078 struct fuse_req
*req
;
2079 req
= list_entry(head
->next
, struct fuse_req
, list
);
2080 req
->out
.h
.error
= -ECONNABORTED
;
2081 clear_bit(FR_SENT
, &req
->flags
);
2082 list_del_init(&req
->list
);
2083 request_end(fc
, req
);
2087 static void end_polls(struct fuse_conn
*fc
)
2091 p
= rb_first(&fc
->polled_files
);
2094 struct fuse_file
*ff
;
2095 ff
= rb_entry(p
, struct fuse_file
, polled_node
);
2096 wake_up_interruptible_all(&ff
->poll_wait
);
2103 * Abort all requests.
2105 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2108 * The same effect is usually achievable through killing the filesystem daemon
2109 * and all users of the filesystem. The exception is the combination of an
2110 * asynchronous request and the tricky deadlock (see
2111 * Documentation/filesystems/fuse.txt).
2113 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2114 * requests, they should be finished off immediately. Locked requests will be
2115 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2116 * requests. It is possible that some request will finish before we can. This
2117 * is OK, the request will in that case be removed from the list before we touch
2120 void fuse_abort_conn(struct fuse_conn
*fc
)
2122 struct fuse_iqueue
*fiq
= &fc
->iq
;
2124 spin_lock(&fc
->lock
);
2125 if (fc
->connected
) {
2126 struct fuse_dev
*fud
;
2127 struct fuse_req
*req
, *next
;
2133 fuse_set_initialized(fc
);
2134 list_for_each_entry(fud
, &fc
->devices
, entry
) {
2135 struct fuse_pqueue
*fpq
= &fud
->pq
;
2137 spin_lock(&fpq
->lock
);
2139 list_for_each_entry_safe(req
, next
, &fpq
->io
, list
) {
2140 req
->out
.h
.error
= -ECONNABORTED
;
2141 spin_lock(&req
->waitq
.lock
);
2142 set_bit(FR_ABORTED
, &req
->flags
);
2143 if (!test_bit(FR_LOCKED
, &req
->flags
)) {
2144 set_bit(FR_PRIVATE
, &req
->flags
);
2145 __fuse_get_request(req
);
2146 list_move(&req
->list
, &to_end1
);
2148 spin_unlock(&req
->waitq
.lock
);
2150 list_splice_init(&fpq
->processing
, &to_end2
);
2151 spin_unlock(&fpq
->lock
);
2153 fc
->max_background
= UINT_MAX
;
2156 spin_lock(&fiq
->waitq
.lock
);
2158 list_splice_init(&fiq
->pending
, &to_end2
);
2159 list_for_each_entry(req
, &to_end2
, list
)
2160 clear_bit(FR_PENDING
, &req
->flags
);
2161 while (forget_pending(fiq
))
2162 kfree(dequeue_forget(fiq
, 1, NULL
));
2163 wake_up_all_locked(&fiq
->waitq
);
2164 spin_unlock(&fiq
->waitq
.lock
);
2165 kill_fasync(&fiq
->fasync
, SIGIO
, POLL_IN
);
2167 wake_up_all(&fc
->blocked_waitq
);
2168 spin_unlock(&fc
->lock
);
2170 while (!list_empty(&to_end1
)) {
2171 req
= list_first_entry(&to_end1
, struct fuse_req
, list
);
2172 list_del_init(&req
->list
);
2173 request_end(fc
, req
);
2175 end_requests(fc
, &to_end2
);
2177 spin_unlock(&fc
->lock
);
2180 EXPORT_SYMBOL_GPL(fuse_abort_conn
);
2182 void fuse_wait_aborted(struct fuse_conn
*fc
)
2184 /* matches implicit memory barrier in fuse_drop_waiting() */
2186 wait_event(fc
->blocked_waitq
, atomic_read(&fc
->num_waiting
) == 0);
2189 int fuse_dev_release(struct inode
*inode
, struct file
*file
)
2191 struct fuse_dev
*fud
= fuse_get_dev(file
);
2194 struct fuse_conn
*fc
= fud
->fc
;
2195 struct fuse_pqueue
*fpq
= &fud
->pq
;
2198 spin_lock(&fpq
->lock
);
2199 WARN_ON(!list_empty(&fpq
->io
));
2200 list_splice_init(&fpq
->processing
, &to_end
);
2201 spin_unlock(&fpq
->lock
);
2203 end_requests(fc
, &to_end
);
2205 /* Are we the last open device? */
2206 if (atomic_dec_and_test(&fc
->dev_count
)) {
2207 WARN_ON(fc
->iq
.fasync
!= NULL
);
2208 fuse_abort_conn(fc
);
2214 EXPORT_SYMBOL_GPL(fuse_dev_release
);
2216 static int fuse_dev_fasync(int fd
, struct file
*file
, int on
)
2218 struct fuse_dev
*fud
= fuse_get_dev(file
);
2223 /* No locking - fasync_helper does its own locking */
2224 return fasync_helper(fd
, file
, on
, &fud
->fc
->iq
.fasync
);
2227 static int fuse_device_clone(struct fuse_conn
*fc
, struct file
*new)
2229 struct fuse_dev
*fud
;
2231 if (new->private_data
)
2234 fud
= fuse_dev_alloc(fc
);
2238 new->private_data
= fud
;
2239 atomic_inc(&fc
->dev_count
);
2244 static long fuse_dev_ioctl(struct file
*file
, unsigned int cmd
,
2249 if (cmd
== FUSE_DEV_IOC_CLONE
) {
2253 if (!get_user(oldfd
, (__u32 __user
*) arg
)) {
2254 struct file
*old
= fget(oldfd
);
2258 struct fuse_dev
*fud
= NULL
;
2261 * Check against file->f_op because CUSE
2262 * uses the same ioctl handler.
2264 if (old
->f_op
== file
->f_op
&&
2265 old
->f_cred
->user_ns
== file
->f_cred
->user_ns
)
2266 fud
= fuse_get_dev(old
);
2269 mutex_lock(&fuse_mutex
);
2270 err
= fuse_device_clone(fud
->fc
, file
);
2271 mutex_unlock(&fuse_mutex
);
2280 const struct file_operations fuse_dev_operations
= {
2281 .owner
= THIS_MODULE
,
2282 .open
= fuse_dev_open
,
2283 .llseek
= no_llseek
,
2284 .read_iter
= fuse_dev_read
,
2285 .splice_read
= fuse_dev_splice_read
,
2286 .write_iter
= fuse_dev_write
,
2287 .splice_write
= fuse_dev_splice_write
,
2288 .poll
= fuse_dev_poll
,
2289 .release
= fuse_dev_release
,
2290 .fasync
= fuse_dev_fasync
,
2291 .unlocked_ioctl
= fuse_dev_ioctl
,
2292 .compat_ioctl
= fuse_dev_ioctl
,
2294 EXPORT_SYMBOL_GPL(fuse_dev_operations
);
2296 static struct miscdevice fuse_miscdevice
= {
2297 .minor
= FUSE_MINOR
,
2299 .fops
= &fuse_dev_operations
,
2302 int __init
fuse_dev_init(void)
2305 fuse_req_cachep
= kmem_cache_create("fuse_request",
2306 sizeof(struct fuse_req
),
2308 if (!fuse_req_cachep
)
2311 err
= misc_register(&fuse_miscdevice
);
2313 goto out_cache_clean
;
2318 kmem_cache_destroy(fuse_req_cachep
);
2323 void fuse_dev_cleanup(void)
2325 misc_deregister(&fuse_miscdevice
);
2326 kmem_cache_destroy(fuse_req_cachep
);