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 /* Ordinary requests have even IDs, while interrupts IDs are odd */
29 #define FUSE_INT_REQ_BIT (1ULL << 0)
30 #define FUSE_REQ_ID_STEP (1ULL << 1)
32 static struct kmem_cache
*fuse_req_cachep
;
34 static struct fuse_dev
*fuse_get_dev(struct file
*file
)
37 * Lockless access is OK, because file->private data is set
38 * once during mount and is valid until the file is released.
40 return READ_ONCE(file
->private_data
);
43 static void fuse_request_init(struct fuse_req
*req
, struct page
**pages
,
44 struct fuse_page_desc
*page_descs
,
47 INIT_LIST_HEAD(&req
->list
);
48 INIT_LIST_HEAD(&req
->intr_entry
);
49 init_waitqueue_head(&req
->waitq
);
50 refcount_set(&req
->count
, 1);
52 req
->page_descs
= page_descs
;
53 req
->max_pages
= npages
;
54 __set_bit(FR_PENDING
, &req
->flags
);
57 static struct page
**fuse_req_pages_alloc(unsigned int npages
, gfp_t flags
,
58 struct fuse_page_desc
**desc
)
62 pages
= kzalloc(npages
* (sizeof(struct page
*) +
63 sizeof(struct fuse_page_desc
)), flags
);
64 *desc
= (void *) pages
+ npages
* sizeof(struct page
*);
69 static struct fuse_req
*__fuse_request_alloc(unsigned npages
, gfp_t flags
)
71 struct fuse_req
*req
= kmem_cache_zalloc(fuse_req_cachep
, flags
);
73 struct page
**pages
= NULL
;
74 struct fuse_page_desc
*page_descs
= NULL
;
76 WARN_ON(npages
> FUSE_MAX_MAX_PAGES
);
77 if (npages
> FUSE_REQ_INLINE_PAGES
) {
78 pages
= fuse_req_pages_alloc(npages
, flags
,
81 kmem_cache_free(fuse_req_cachep
, req
);
85 pages
= req
->inline_pages
;
86 page_descs
= req
->inline_page_descs
;
89 fuse_request_init(req
, pages
, page_descs
, npages
);
94 struct fuse_req
*fuse_request_alloc(unsigned npages
)
96 return __fuse_request_alloc(npages
, GFP_KERNEL
);
98 EXPORT_SYMBOL_GPL(fuse_request_alloc
);
100 struct fuse_req
*fuse_request_alloc_nofs(unsigned npages
)
102 return __fuse_request_alloc(npages
, GFP_NOFS
);
105 static void fuse_req_pages_free(struct fuse_req
*req
)
107 if (req
->pages
!= req
->inline_pages
)
111 bool fuse_req_realloc_pages(struct fuse_conn
*fc
, struct fuse_req
*req
,
115 struct fuse_page_desc
*page_descs
;
116 unsigned int npages
= min_t(unsigned int,
117 max_t(unsigned int, req
->max_pages
* 2,
118 FUSE_DEFAULT_MAX_PAGES_PER_REQ
),
120 WARN_ON(npages
<= req
->max_pages
);
122 pages
= fuse_req_pages_alloc(npages
, flags
, &page_descs
);
126 memcpy(pages
, req
->pages
, sizeof(struct page
*) * req
->max_pages
);
127 memcpy(page_descs
, req
->page_descs
,
128 sizeof(struct fuse_page_desc
) * req
->max_pages
);
129 fuse_req_pages_free(req
);
131 req
->page_descs
= page_descs
;
132 req
->max_pages
= npages
;
137 void fuse_request_free(struct fuse_req
*req
)
139 fuse_req_pages_free(req
);
140 kmem_cache_free(fuse_req_cachep
, req
);
143 void __fuse_get_request(struct fuse_req
*req
)
145 refcount_inc(&req
->count
);
148 /* Must be called with > 1 refcount */
149 static void __fuse_put_request(struct fuse_req
*req
)
151 refcount_dec(&req
->count
);
154 void fuse_set_initialized(struct fuse_conn
*fc
)
156 /* Make sure stores before this are seen on another CPU */
161 static bool fuse_block_alloc(struct fuse_conn
*fc
, bool for_background
)
163 return !fc
->initialized
|| (for_background
&& fc
->blocked
);
166 static void fuse_drop_waiting(struct fuse_conn
*fc
)
169 * lockess check of fc->connected is okay, because atomic_dec_and_test()
170 * provides a memory barrier mached with the one in fuse_wait_aborted()
171 * to ensure no wake-up is missed.
173 if (atomic_dec_and_test(&fc
->num_waiting
) &&
174 !READ_ONCE(fc
->connected
)) {
175 /* wake up aborters */
176 wake_up_all(&fc
->blocked_waitq
);
180 static struct fuse_req
*__fuse_get_req(struct fuse_conn
*fc
, unsigned npages
,
183 struct fuse_req
*req
;
185 atomic_inc(&fc
->num_waiting
);
187 if (fuse_block_alloc(fc
, for_background
)) {
189 if (wait_event_killable_exclusive(fc
->blocked_waitq
,
190 !fuse_block_alloc(fc
, for_background
)))
193 /* Matches smp_wmb() in fuse_set_initialized() */
204 req
= fuse_request_alloc(npages
);
208 wake_up(&fc
->blocked_waitq
);
212 req
->in
.h
.uid
= from_kuid(fc
->user_ns
, current_fsuid());
213 req
->in
.h
.gid
= from_kgid(fc
->user_ns
, current_fsgid());
214 req
->in
.h
.pid
= pid_nr_ns(task_pid(current
), fc
->pid_ns
);
216 __set_bit(FR_WAITING
, &req
->flags
);
218 __set_bit(FR_BACKGROUND
, &req
->flags
);
220 if (unlikely(req
->in
.h
.uid
== ((uid_t
)-1) ||
221 req
->in
.h
.gid
== ((gid_t
)-1))) {
222 fuse_put_request(fc
, req
);
223 return ERR_PTR(-EOVERFLOW
);
228 fuse_drop_waiting(fc
);
232 struct fuse_req
*fuse_get_req(struct fuse_conn
*fc
, unsigned npages
)
234 return __fuse_get_req(fc
, npages
, false);
236 EXPORT_SYMBOL_GPL(fuse_get_req
);
238 struct fuse_req
*fuse_get_req_for_background(struct fuse_conn
*fc
,
241 return __fuse_get_req(fc
, npages
, true);
243 EXPORT_SYMBOL_GPL(fuse_get_req_for_background
);
246 * Return request in fuse_file->reserved_req. However that may
247 * currently be in use. If that is the case, wait for it to become
250 static struct fuse_req
*get_reserved_req(struct fuse_conn
*fc
,
253 struct fuse_req
*req
= NULL
;
254 struct fuse_inode
*fi
= get_fuse_inode(file_inode(file
));
255 struct fuse_file
*ff
= file
->private_data
;
258 wait_event(fc
->reserved_req_waitq
, ff
->reserved_req
);
259 spin_lock(&fi
->lock
);
260 if (ff
->reserved_req
) {
261 req
= ff
->reserved_req
;
262 ff
->reserved_req
= NULL
;
263 req
->stolen_file
= get_file(file
);
265 spin_unlock(&fi
->lock
);
272 * Put stolen request back into fuse_file->reserved_req
274 static void put_reserved_req(struct fuse_conn
*fc
, struct fuse_req
*req
)
276 struct file
*file
= req
->stolen_file
;
277 struct fuse_inode
*fi
= get_fuse_inode(file_inode(file
));
278 struct fuse_file
*ff
= file
->private_data
;
280 WARN_ON(req
->max_pages
);
281 spin_lock(&fi
->lock
);
282 memset(req
, 0, sizeof(*req
));
283 fuse_request_init(req
, NULL
, NULL
, 0);
284 BUG_ON(ff
->reserved_req
);
285 ff
->reserved_req
= req
;
286 wake_up_all(&fc
->reserved_req_waitq
);
287 spin_unlock(&fi
->lock
);
292 * Gets a requests for a file operation, always succeeds
294 * This is used for sending the FLUSH request, which must get to
295 * userspace, due to POSIX locks which may need to be unlocked.
297 * If allocation fails due to OOM, use the reserved request in
300 * This is very unlikely to deadlock accidentally, since the
301 * filesystem should not have it's own file open. If deadlock is
302 * intentional, it can still be broken by "aborting" the filesystem.
304 struct fuse_req
*fuse_get_req_nofail_nopages(struct fuse_conn
*fc
,
307 struct fuse_req
*req
;
309 atomic_inc(&fc
->num_waiting
);
310 wait_event(fc
->blocked_waitq
, fc
->initialized
);
311 /* Matches smp_wmb() in fuse_set_initialized() */
313 req
= fuse_request_alloc(0);
315 req
= get_reserved_req(fc
, file
);
317 req
->in
.h
.uid
= from_kuid_munged(fc
->user_ns
, current_fsuid());
318 req
->in
.h
.gid
= from_kgid_munged(fc
->user_ns
, current_fsgid());
319 req
->in
.h
.pid
= pid_nr_ns(task_pid(current
), fc
->pid_ns
);
321 __set_bit(FR_WAITING
, &req
->flags
);
322 __clear_bit(FR_BACKGROUND
, &req
->flags
);
326 void fuse_put_request(struct fuse_conn
*fc
, struct fuse_req
*req
)
328 if (refcount_dec_and_test(&req
->count
)) {
329 if (test_bit(FR_BACKGROUND
, &req
->flags
)) {
331 * We get here in the unlikely case that a background
332 * request was allocated but not sent
334 spin_lock(&fc
->bg_lock
);
336 wake_up(&fc
->blocked_waitq
);
337 spin_unlock(&fc
->bg_lock
);
340 if (test_bit(FR_WAITING
, &req
->flags
)) {
341 __clear_bit(FR_WAITING
, &req
->flags
);
342 fuse_drop_waiting(fc
);
345 if (req
->stolen_file
)
346 put_reserved_req(fc
, req
);
348 fuse_request_free(req
);
351 EXPORT_SYMBOL_GPL(fuse_put_request
);
353 static unsigned len_args(unsigned numargs
, struct fuse_arg
*args
)
358 for (i
= 0; i
< numargs
; i
++)
359 nbytes
+= args
[i
].size
;
364 static u64
fuse_get_unique(struct fuse_iqueue
*fiq
)
366 fiq
->reqctr
+= FUSE_REQ_ID_STEP
;
370 static unsigned int fuse_req_hash(u64 unique
)
372 return hash_long(unique
& ~FUSE_INT_REQ_BIT
, FUSE_PQ_HASH_BITS
);
375 static void queue_request(struct fuse_iqueue
*fiq
, struct fuse_req
*req
)
377 req
->in
.h
.len
= sizeof(struct fuse_in_header
) +
378 len_args(req
->in
.numargs
, (struct fuse_arg
*) req
->in
.args
);
379 list_add_tail(&req
->list
, &fiq
->pending
);
380 wake_up_locked(&fiq
->waitq
);
381 kill_fasync(&fiq
->fasync
, SIGIO
, POLL_IN
);
384 void fuse_queue_forget(struct fuse_conn
*fc
, struct fuse_forget_link
*forget
,
385 u64 nodeid
, u64 nlookup
)
387 struct fuse_iqueue
*fiq
= &fc
->iq
;
389 forget
->forget_one
.nodeid
= nodeid
;
390 forget
->forget_one
.nlookup
= nlookup
;
392 spin_lock(&fiq
->waitq
.lock
);
393 if (fiq
->connected
) {
394 fiq
->forget_list_tail
->next
= forget
;
395 fiq
->forget_list_tail
= forget
;
396 wake_up_locked(&fiq
->waitq
);
397 kill_fasync(&fiq
->fasync
, SIGIO
, POLL_IN
);
401 spin_unlock(&fiq
->waitq
.lock
);
404 static void flush_bg_queue(struct fuse_conn
*fc
)
406 struct fuse_iqueue
*fiq
= &fc
->iq
;
408 while (fc
->active_background
< fc
->max_background
&&
409 !list_empty(&fc
->bg_queue
)) {
410 struct fuse_req
*req
;
412 req
= list_first_entry(&fc
->bg_queue
, struct fuse_req
, list
);
413 list_del(&req
->list
);
414 fc
->active_background
++;
415 spin_lock(&fiq
->waitq
.lock
);
416 req
->in
.h
.unique
= fuse_get_unique(fiq
);
417 queue_request(fiq
, req
);
418 spin_unlock(&fiq
->waitq
.lock
);
423 * This function is called when a request is finished. Either a reply
424 * has arrived or it was aborted (and not yet sent) or some error
425 * occurred during communication with userspace, or the device file
426 * was closed. The requester thread is woken up (if still waiting),
427 * the 'end' callback is called if given, else the reference to the
428 * request is released
430 static void request_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
432 struct fuse_iqueue
*fiq
= &fc
->iq
;
434 if (test_and_set_bit(FR_FINISHED
, &req
->flags
))
437 * test_and_set_bit() implies smp_mb() between bit
438 * changing and below intr_entry check. Pairs with
439 * smp_mb() from queue_interrupt().
441 if (!list_empty(&req
->intr_entry
)) {
442 spin_lock(&fiq
->waitq
.lock
);
443 list_del_init(&req
->intr_entry
);
444 spin_unlock(&fiq
->waitq
.lock
);
446 WARN_ON(test_bit(FR_PENDING
, &req
->flags
));
447 WARN_ON(test_bit(FR_SENT
, &req
->flags
));
448 if (test_bit(FR_BACKGROUND
, &req
->flags
)) {
449 spin_lock(&fc
->bg_lock
);
450 clear_bit(FR_BACKGROUND
, &req
->flags
);
451 if (fc
->num_background
== fc
->max_background
) {
453 wake_up(&fc
->blocked_waitq
);
454 } else if (!fc
->blocked
) {
456 * Wake up next waiter, if any. It's okay to use
457 * waitqueue_active(), as we've already synced up
458 * fc->blocked with waiters with the wake_up() call
461 if (waitqueue_active(&fc
->blocked_waitq
))
462 wake_up(&fc
->blocked_waitq
);
465 if (fc
->num_background
== fc
->congestion_threshold
&& fc
->sb
) {
466 clear_bdi_congested(fc
->sb
->s_bdi
, BLK_RW_SYNC
);
467 clear_bdi_congested(fc
->sb
->s_bdi
, BLK_RW_ASYNC
);
469 fc
->num_background
--;
470 fc
->active_background
--;
472 spin_unlock(&fc
->bg_lock
);
474 /* Wake up waiter sleeping in request_wait_answer() */
475 wake_up(&req
->waitq
);
481 fuse_put_request(fc
, req
);
484 static int queue_interrupt(struct fuse_iqueue
*fiq
, struct fuse_req
*req
)
486 spin_lock(&fiq
->waitq
.lock
);
487 /* Check for we've sent request to interrupt this req */
488 if (unlikely(!test_bit(FR_INTERRUPTED
, &req
->flags
))) {
489 spin_unlock(&fiq
->waitq
.lock
);
493 if (list_empty(&req
->intr_entry
)) {
494 list_add_tail(&req
->intr_entry
, &fiq
->interrupts
);
496 * Pairs with smp_mb() implied by test_and_set_bit()
497 * from request_end().
500 if (test_bit(FR_FINISHED
, &req
->flags
)) {
501 list_del_init(&req
->intr_entry
);
502 spin_unlock(&fiq
->waitq
.lock
);
505 wake_up_locked(&fiq
->waitq
);
506 kill_fasync(&fiq
->fasync
, SIGIO
, POLL_IN
);
508 spin_unlock(&fiq
->waitq
.lock
);
512 static void request_wait_answer(struct fuse_conn
*fc
, struct fuse_req
*req
)
514 struct fuse_iqueue
*fiq
= &fc
->iq
;
517 if (!fc
->no_interrupt
) {
518 /* Any signal may interrupt this */
519 err
= wait_event_interruptible(req
->waitq
,
520 test_bit(FR_FINISHED
, &req
->flags
));
524 set_bit(FR_INTERRUPTED
, &req
->flags
);
525 /* matches barrier in fuse_dev_do_read() */
526 smp_mb__after_atomic();
527 if (test_bit(FR_SENT
, &req
->flags
))
528 queue_interrupt(fiq
, req
);
531 if (!test_bit(FR_FORCE
, &req
->flags
)) {
532 /* Only fatal signals may interrupt this */
533 err
= wait_event_killable(req
->waitq
,
534 test_bit(FR_FINISHED
, &req
->flags
));
538 spin_lock(&fiq
->waitq
.lock
);
539 /* Request is not yet in userspace, bail out */
540 if (test_bit(FR_PENDING
, &req
->flags
)) {
541 list_del(&req
->list
);
542 spin_unlock(&fiq
->waitq
.lock
);
543 __fuse_put_request(req
);
544 req
->out
.h
.error
= -EINTR
;
547 spin_unlock(&fiq
->waitq
.lock
);
551 * Either request is already in userspace, or it was forced.
554 wait_event(req
->waitq
, test_bit(FR_FINISHED
, &req
->flags
));
557 static void __fuse_request_send(struct fuse_conn
*fc
, struct fuse_req
*req
)
559 struct fuse_iqueue
*fiq
= &fc
->iq
;
561 BUG_ON(test_bit(FR_BACKGROUND
, &req
->flags
));
562 spin_lock(&fiq
->waitq
.lock
);
563 if (!fiq
->connected
) {
564 spin_unlock(&fiq
->waitq
.lock
);
565 req
->out
.h
.error
= -ENOTCONN
;
567 req
->in
.h
.unique
= fuse_get_unique(fiq
);
568 queue_request(fiq
, req
);
569 /* acquire extra reference, since request is still needed
570 after request_end() */
571 __fuse_get_request(req
);
572 spin_unlock(&fiq
->waitq
.lock
);
574 request_wait_answer(fc
, req
);
575 /* Pairs with smp_wmb() in request_end() */
580 void fuse_request_send(struct fuse_conn
*fc
, struct fuse_req
*req
)
582 __set_bit(FR_ISREPLY
, &req
->flags
);
583 if (!test_bit(FR_WAITING
, &req
->flags
)) {
584 __set_bit(FR_WAITING
, &req
->flags
);
585 atomic_inc(&fc
->num_waiting
);
587 __fuse_request_send(fc
, req
);
589 EXPORT_SYMBOL_GPL(fuse_request_send
);
591 static void fuse_adjust_compat(struct fuse_conn
*fc
, struct fuse_args
*args
)
593 if (fc
->minor
< 4 && args
->in
.h
.opcode
== FUSE_STATFS
)
594 args
->out
.args
[0].size
= FUSE_COMPAT_STATFS_SIZE
;
597 switch (args
->in
.h
.opcode
) {
604 args
->out
.args
[0].size
= FUSE_COMPAT_ENTRY_OUT_SIZE
;
608 args
->out
.args
[0].size
= FUSE_COMPAT_ATTR_OUT_SIZE
;
612 if (fc
->minor
< 12) {
613 switch (args
->in
.h
.opcode
) {
615 args
->in
.args
[0].size
= sizeof(struct fuse_open_in
);
618 args
->in
.args
[0].size
= FUSE_COMPAT_MKNOD_IN_SIZE
;
624 ssize_t
fuse_simple_request(struct fuse_conn
*fc
, struct fuse_args
*args
)
626 struct fuse_req
*req
;
629 req
= fuse_get_req(fc
, 0);
633 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
634 fuse_adjust_compat(fc
, args
);
636 req
->in
.h
.opcode
= args
->in
.h
.opcode
;
637 req
->in
.h
.nodeid
= args
->in
.h
.nodeid
;
638 req
->in
.numargs
= args
->in
.numargs
;
639 memcpy(req
->in
.args
, args
->in
.args
,
640 args
->in
.numargs
* sizeof(struct fuse_in_arg
));
641 req
->out
.argvar
= args
->out
.argvar
;
642 req
->out
.numargs
= args
->out
.numargs
;
643 memcpy(req
->out
.args
, args
->out
.args
,
644 args
->out
.numargs
* sizeof(struct fuse_arg
));
645 fuse_request_send(fc
, req
);
646 ret
= req
->out
.h
.error
;
647 if (!ret
&& args
->out
.argvar
) {
648 BUG_ON(args
->out
.numargs
!= 1);
649 ret
= req
->out
.args
[0].size
;
651 fuse_put_request(fc
, req
);
656 bool fuse_request_queue_background(struct fuse_conn
*fc
, struct fuse_req
*req
)
660 WARN_ON(!test_bit(FR_BACKGROUND
, &req
->flags
));
661 if (!test_bit(FR_WAITING
, &req
->flags
)) {
662 __set_bit(FR_WAITING
, &req
->flags
);
663 atomic_inc(&fc
->num_waiting
);
665 __set_bit(FR_ISREPLY
, &req
->flags
);
666 spin_lock(&fc
->bg_lock
);
667 if (likely(fc
->connected
)) {
668 fc
->num_background
++;
669 if (fc
->num_background
== fc
->max_background
)
671 if (fc
->num_background
== fc
->congestion_threshold
&& fc
->sb
) {
672 set_bdi_congested(fc
->sb
->s_bdi
, BLK_RW_SYNC
);
673 set_bdi_congested(fc
->sb
->s_bdi
, BLK_RW_ASYNC
);
675 list_add_tail(&req
->list
, &fc
->bg_queue
);
679 spin_unlock(&fc
->bg_lock
);
684 void fuse_request_send_background(struct fuse_conn
*fc
, struct fuse_req
*req
)
687 if (!fuse_request_queue_background(fc
, req
)) {
688 req
->out
.h
.error
= -ENOTCONN
;
690 fuse_put_request(fc
, req
);
693 EXPORT_SYMBOL_GPL(fuse_request_send_background
);
695 static int fuse_request_send_notify_reply(struct fuse_conn
*fc
,
696 struct fuse_req
*req
, u64 unique
)
699 struct fuse_iqueue
*fiq
= &fc
->iq
;
701 __clear_bit(FR_ISREPLY
, &req
->flags
);
702 req
->in
.h
.unique
= unique
;
703 spin_lock(&fiq
->waitq
.lock
);
704 if (fiq
->connected
) {
705 queue_request(fiq
, req
);
708 spin_unlock(&fiq
->waitq
.lock
);
713 void fuse_force_forget(struct file
*file
, u64 nodeid
)
715 struct inode
*inode
= file_inode(file
);
716 struct fuse_conn
*fc
= get_fuse_conn(inode
);
717 struct fuse_req
*req
;
718 struct fuse_forget_in inarg
;
720 memset(&inarg
, 0, sizeof(inarg
));
722 req
= fuse_get_req_nofail_nopages(fc
, file
);
723 req
->in
.h
.opcode
= FUSE_FORGET
;
724 req
->in
.h
.nodeid
= nodeid
;
726 req
->in
.args
[0].size
= sizeof(inarg
);
727 req
->in
.args
[0].value
= &inarg
;
728 __clear_bit(FR_ISREPLY
, &req
->flags
);
729 __fuse_request_send(fc
, req
);
731 fuse_put_request(fc
, req
);
735 * Lock the request. Up to the next unlock_request() there mustn't be
736 * anything that could cause a page-fault. If the request was already
739 static int lock_request(struct fuse_req
*req
)
743 spin_lock(&req
->waitq
.lock
);
744 if (test_bit(FR_ABORTED
, &req
->flags
))
747 set_bit(FR_LOCKED
, &req
->flags
);
748 spin_unlock(&req
->waitq
.lock
);
754 * Unlock request. If it was aborted while locked, caller is responsible
755 * for unlocking and ending the request.
757 static int unlock_request(struct fuse_req
*req
)
761 spin_lock(&req
->waitq
.lock
);
762 if (test_bit(FR_ABORTED
, &req
->flags
))
765 clear_bit(FR_LOCKED
, &req
->flags
);
766 spin_unlock(&req
->waitq
.lock
);
771 struct fuse_copy_state
{
773 struct fuse_req
*req
;
774 struct iov_iter
*iter
;
775 struct pipe_buffer
*pipebufs
;
776 struct pipe_buffer
*currbuf
;
777 struct pipe_inode_info
*pipe
;
778 unsigned long nr_segs
;
782 unsigned move_pages
:1;
785 static void fuse_copy_init(struct fuse_copy_state
*cs
, int write
,
786 struct iov_iter
*iter
)
788 memset(cs
, 0, sizeof(*cs
));
793 /* Unmap and put previous page of userspace buffer */
794 static void fuse_copy_finish(struct fuse_copy_state
*cs
)
797 struct pipe_buffer
*buf
= cs
->currbuf
;
800 buf
->len
= PAGE_SIZE
- cs
->len
;
804 flush_dcache_page(cs
->pg
);
805 set_page_dirty_lock(cs
->pg
);
813 * Get another pagefull of userspace buffer, and map it to kernel
814 * address space, and lock request
816 static int fuse_copy_fill(struct fuse_copy_state
*cs
)
821 err
= unlock_request(cs
->req
);
825 fuse_copy_finish(cs
);
827 struct pipe_buffer
*buf
= cs
->pipebufs
;
830 err
= pipe_buf_confirm(cs
->pipe
, buf
);
834 BUG_ON(!cs
->nr_segs
);
837 cs
->offset
= buf
->offset
;
842 if (cs
->nr_segs
== cs
->pipe
->buffers
)
845 page
= alloc_page(GFP_HIGHUSER
);
862 err
= iov_iter_get_pages(cs
->iter
, &page
, PAGE_SIZE
, 1, &off
);
869 iov_iter_advance(cs
->iter
, err
);
872 return lock_request(cs
->req
);
875 /* Do as much copy to/from userspace buffer as we can */
876 static int fuse_copy_do(struct fuse_copy_state
*cs
, void **val
, unsigned *size
)
878 unsigned ncpy
= min(*size
, cs
->len
);
880 void *pgaddr
= kmap_atomic(cs
->pg
);
881 void *buf
= pgaddr
+ cs
->offset
;
884 memcpy(buf
, *val
, ncpy
);
886 memcpy(*val
, buf
, ncpy
);
888 kunmap_atomic(pgaddr
);
897 static int fuse_check_page(struct page
*page
)
899 if (page_mapcount(page
) ||
900 page
->mapping
!= NULL
||
901 page_count(page
) != 1 ||
902 (page
->flags
& PAGE_FLAGS_CHECK_AT_PREP
&
909 pr_warn("trying to steal weird page\n");
910 pr_warn(" 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
);
916 static int fuse_try_move_page(struct fuse_copy_state
*cs
, struct page
**pagep
)
919 struct page
*oldpage
= *pagep
;
920 struct page
*newpage
;
921 struct pipe_buffer
*buf
= cs
->pipebufs
;
923 err
= unlock_request(cs
->req
);
927 fuse_copy_finish(cs
);
929 err
= pipe_buf_confirm(cs
->pipe
, buf
);
933 BUG_ON(!cs
->nr_segs
);
939 if (cs
->len
!= PAGE_SIZE
)
942 if (pipe_buf_steal(cs
->pipe
, buf
) != 0)
947 if (!PageUptodate(newpage
))
948 SetPageUptodate(newpage
);
950 ClearPageMappedToDisk(newpage
);
952 if (fuse_check_page(newpage
) != 0)
953 goto out_fallback_unlock
;
956 * This is a new and locked page, it shouldn't be mapped or
957 * have any special flags on it
959 if (WARN_ON(page_mapped(oldpage
)))
960 goto out_fallback_unlock
;
961 if (WARN_ON(page_has_private(oldpage
)))
962 goto out_fallback_unlock
;
963 if (WARN_ON(PageDirty(oldpage
) || PageWriteback(oldpage
)))
964 goto out_fallback_unlock
;
965 if (WARN_ON(PageMlocked(oldpage
)))
966 goto out_fallback_unlock
;
968 err
= replace_page_cache_page(oldpage
, newpage
, GFP_KERNEL
);
970 unlock_page(newpage
);
976 if (!(buf
->flags
& PIPE_BUF_FLAG_LRU
))
977 lru_cache_add_file(newpage
);
980 spin_lock(&cs
->req
->waitq
.lock
);
981 if (test_bit(FR_ABORTED
, &cs
->req
->flags
))
985 spin_unlock(&cs
->req
->waitq
.lock
);
988 unlock_page(newpage
);
993 unlock_page(oldpage
);
1000 unlock_page(newpage
);
1003 cs
->offset
= buf
->offset
;
1005 err
= lock_request(cs
->req
);
1012 static int fuse_ref_page(struct fuse_copy_state
*cs
, struct page
*page
,
1013 unsigned offset
, unsigned count
)
1015 struct pipe_buffer
*buf
;
1018 if (cs
->nr_segs
== cs
->pipe
->buffers
)
1021 err
= unlock_request(cs
->req
);
1025 fuse_copy_finish(cs
);
1030 buf
->offset
= offset
;
1041 * Copy a page in the request to/from the userspace buffer. Must be
1044 static int fuse_copy_page(struct fuse_copy_state
*cs
, struct page
**pagep
,
1045 unsigned offset
, unsigned count
, int zeroing
)
1048 struct page
*page
= *pagep
;
1050 if (page
&& zeroing
&& count
< PAGE_SIZE
)
1051 clear_highpage(page
);
1054 if (cs
->write
&& cs
->pipebufs
&& page
) {
1055 return fuse_ref_page(cs
, page
, offset
, count
);
1056 } else if (!cs
->len
) {
1057 if (cs
->move_pages
&& page
&&
1058 offset
== 0 && count
== PAGE_SIZE
) {
1059 err
= fuse_try_move_page(cs
, pagep
);
1063 err
= fuse_copy_fill(cs
);
1069 void *mapaddr
= kmap_atomic(page
);
1070 void *buf
= mapaddr
+ offset
;
1071 offset
+= fuse_copy_do(cs
, &buf
, &count
);
1072 kunmap_atomic(mapaddr
);
1074 offset
+= fuse_copy_do(cs
, NULL
, &count
);
1076 if (page
&& !cs
->write
)
1077 flush_dcache_page(page
);
1081 /* Copy pages in the request to/from userspace buffer */
1082 static int fuse_copy_pages(struct fuse_copy_state
*cs
, unsigned nbytes
,
1086 struct fuse_req
*req
= cs
->req
;
1088 for (i
= 0; i
< req
->num_pages
&& (nbytes
|| zeroing
); i
++) {
1090 unsigned offset
= req
->page_descs
[i
].offset
;
1091 unsigned count
= min(nbytes
, req
->page_descs
[i
].length
);
1093 err
= fuse_copy_page(cs
, &req
->pages
[i
], offset
, count
,
1103 /* Copy a single argument in the request to/from userspace buffer */
1104 static int fuse_copy_one(struct fuse_copy_state
*cs
, void *val
, unsigned size
)
1108 int err
= fuse_copy_fill(cs
);
1112 fuse_copy_do(cs
, &val
, &size
);
1117 /* Copy request arguments to/from userspace buffer */
1118 static int fuse_copy_args(struct fuse_copy_state
*cs
, unsigned numargs
,
1119 unsigned argpages
, struct fuse_arg
*args
,
1125 for (i
= 0; !err
&& i
< numargs
; i
++) {
1126 struct fuse_arg
*arg
= &args
[i
];
1127 if (i
== numargs
- 1 && argpages
)
1128 err
= fuse_copy_pages(cs
, arg
->size
, zeroing
);
1130 err
= fuse_copy_one(cs
, arg
->value
, arg
->size
);
1135 static int forget_pending(struct fuse_iqueue
*fiq
)
1137 return fiq
->forget_list_head
.next
!= NULL
;
1140 static int request_pending(struct fuse_iqueue
*fiq
)
1142 return !list_empty(&fiq
->pending
) || !list_empty(&fiq
->interrupts
) ||
1143 forget_pending(fiq
);
1147 * Transfer an interrupt request to userspace
1149 * Unlike other requests this is assembled on demand, without a need
1150 * to allocate a separate fuse_req structure.
1152 * Called with fiq->waitq.lock held, releases it
1154 static int fuse_read_interrupt(struct fuse_iqueue
*fiq
,
1155 struct fuse_copy_state
*cs
,
1156 size_t nbytes
, struct fuse_req
*req
)
1157 __releases(fiq
->waitq
.lock
)
1159 struct fuse_in_header ih
;
1160 struct fuse_interrupt_in arg
;
1161 unsigned reqsize
= sizeof(ih
) + sizeof(arg
);
1164 list_del_init(&req
->intr_entry
);
1165 memset(&ih
, 0, sizeof(ih
));
1166 memset(&arg
, 0, sizeof(arg
));
1168 ih
.opcode
= FUSE_INTERRUPT
;
1169 ih
.unique
= (req
->in
.h
.unique
| FUSE_INT_REQ_BIT
);
1170 arg
.unique
= req
->in
.h
.unique
;
1172 spin_unlock(&fiq
->waitq
.lock
);
1173 if (nbytes
< reqsize
)
1176 err
= fuse_copy_one(cs
, &ih
, sizeof(ih
));
1178 err
= fuse_copy_one(cs
, &arg
, sizeof(arg
));
1179 fuse_copy_finish(cs
);
1181 return err
? err
: reqsize
;
1184 static struct fuse_forget_link
*dequeue_forget(struct fuse_iqueue
*fiq
,
1188 struct fuse_forget_link
*head
= fiq
->forget_list_head
.next
;
1189 struct fuse_forget_link
**newhead
= &head
;
1192 for (count
= 0; *newhead
!= NULL
&& count
< max
; count
++)
1193 newhead
= &(*newhead
)->next
;
1195 fiq
->forget_list_head
.next
= *newhead
;
1197 if (fiq
->forget_list_head
.next
== NULL
)
1198 fiq
->forget_list_tail
= &fiq
->forget_list_head
;
1206 static int fuse_read_single_forget(struct fuse_iqueue
*fiq
,
1207 struct fuse_copy_state
*cs
,
1209 __releases(fiq
->waitq
.lock
)
1212 struct fuse_forget_link
*forget
= dequeue_forget(fiq
, 1, NULL
);
1213 struct fuse_forget_in arg
= {
1214 .nlookup
= forget
->forget_one
.nlookup
,
1216 struct fuse_in_header ih
= {
1217 .opcode
= FUSE_FORGET
,
1218 .nodeid
= forget
->forget_one
.nodeid
,
1219 .unique
= fuse_get_unique(fiq
),
1220 .len
= sizeof(ih
) + sizeof(arg
),
1223 spin_unlock(&fiq
->waitq
.lock
);
1225 if (nbytes
< ih
.len
)
1228 err
= fuse_copy_one(cs
, &ih
, sizeof(ih
));
1230 err
= fuse_copy_one(cs
, &arg
, sizeof(arg
));
1231 fuse_copy_finish(cs
);
1239 static int fuse_read_batch_forget(struct fuse_iqueue
*fiq
,
1240 struct fuse_copy_state
*cs
, size_t nbytes
)
1241 __releases(fiq
->waitq
.lock
)
1244 unsigned max_forgets
;
1246 struct fuse_forget_link
*head
;
1247 struct fuse_batch_forget_in arg
= { .count
= 0 };
1248 struct fuse_in_header ih
= {
1249 .opcode
= FUSE_BATCH_FORGET
,
1250 .unique
= fuse_get_unique(fiq
),
1251 .len
= sizeof(ih
) + sizeof(arg
),
1254 if (nbytes
< ih
.len
) {
1255 spin_unlock(&fiq
->waitq
.lock
);
1259 max_forgets
= (nbytes
- ih
.len
) / sizeof(struct fuse_forget_one
);
1260 head
= dequeue_forget(fiq
, max_forgets
, &count
);
1261 spin_unlock(&fiq
->waitq
.lock
);
1264 ih
.len
+= count
* sizeof(struct fuse_forget_one
);
1265 err
= fuse_copy_one(cs
, &ih
, sizeof(ih
));
1267 err
= fuse_copy_one(cs
, &arg
, sizeof(arg
));
1270 struct fuse_forget_link
*forget
= head
;
1273 err
= fuse_copy_one(cs
, &forget
->forget_one
,
1274 sizeof(forget
->forget_one
));
1276 head
= forget
->next
;
1280 fuse_copy_finish(cs
);
1288 static int fuse_read_forget(struct fuse_conn
*fc
, struct fuse_iqueue
*fiq
,
1289 struct fuse_copy_state
*cs
,
1291 __releases(fiq
->waitq
.lock
)
1293 if (fc
->minor
< 16 || fiq
->forget_list_head
.next
->next
== NULL
)
1294 return fuse_read_single_forget(fiq
, cs
, nbytes
);
1296 return fuse_read_batch_forget(fiq
, cs
, nbytes
);
1300 * Read a single request into the userspace filesystem's buffer. This
1301 * function waits until a request is available, then removes it from
1302 * the pending list and copies request data to userspace buffer. If
1303 * no reply is needed (FORGET) or request has been aborted or there
1304 * was an error during the copying then it's finished by calling
1305 * request_end(). Otherwise add it to the processing list, and set
1308 static ssize_t
fuse_dev_do_read(struct fuse_dev
*fud
, struct file
*file
,
1309 struct fuse_copy_state
*cs
, size_t nbytes
)
1312 struct fuse_conn
*fc
= fud
->fc
;
1313 struct fuse_iqueue
*fiq
= &fc
->iq
;
1314 struct fuse_pqueue
*fpq
= &fud
->pq
;
1315 struct fuse_req
*req
;
1321 * Require sane minimum read buffer - that has capacity for fixed part
1322 * of any request header + negotated max_write room for data. If the
1323 * requirement is not satisfied return EINVAL to the filesystem server
1324 * to indicate that it is not following FUSE server/client contract.
1325 * Don't dequeue / abort any request.
1327 if (nbytes
< max_t(size_t, FUSE_MIN_READ_BUFFER
, 4096 + fc
->max_write
))
1331 spin_lock(&fiq
->waitq
.lock
);
1333 if ((file
->f_flags
& O_NONBLOCK
) && fiq
->connected
&&
1334 !request_pending(fiq
))
1337 err
= wait_event_interruptible_exclusive_locked(fiq
->waitq
,
1338 !fiq
->connected
|| request_pending(fiq
));
1342 if (!fiq
->connected
) {
1343 err
= fc
->aborted
? -ECONNABORTED
: -ENODEV
;
1347 if (!list_empty(&fiq
->interrupts
)) {
1348 req
= list_entry(fiq
->interrupts
.next
, struct fuse_req
,
1350 return fuse_read_interrupt(fiq
, cs
, nbytes
, req
);
1353 if (forget_pending(fiq
)) {
1354 if (list_empty(&fiq
->pending
) || fiq
->forget_batch
-- > 0)
1355 return fuse_read_forget(fc
, fiq
, cs
, nbytes
);
1357 if (fiq
->forget_batch
<= -8)
1358 fiq
->forget_batch
= 16;
1361 req
= list_entry(fiq
->pending
.next
, struct fuse_req
, list
);
1362 clear_bit(FR_PENDING
, &req
->flags
);
1363 list_del_init(&req
->list
);
1364 spin_unlock(&fiq
->waitq
.lock
);
1367 reqsize
= in
->h
.len
;
1369 /* If request is too large, reply with an error and restart the read */
1370 if (nbytes
< reqsize
) {
1371 req
->out
.h
.error
= -EIO
;
1372 /* SETXATTR is special, since it may contain too large data */
1373 if (in
->h
.opcode
== FUSE_SETXATTR
)
1374 req
->out
.h
.error
= -E2BIG
;
1375 request_end(fc
, req
);
1378 spin_lock(&fpq
->lock
);
1379 list_add(&req
->list
, &fpq
->io
);
1380 spin_unlock(&fpq
->lock
);
1382 err
= fuse_copy_one(cs
, &in
->h
, sizeof(in
->h
));
1384 err
= fuse_copy_args(cs
, in
->numargs
, in
->argpages
,
1385 (struct fuse_arg
*) in
->args
, 0);
1386 fuse_copy_finish(cs
);
1387 spin_lock(&fpq
->lock
);
1388 clear_bit(FR_LOCKED
, &req
->flags
);
1389 if (!fpq
->connected
) {
1390 err
= fc
->aborted
? -ECONNABORTED
: -ENODEV
;
1394 req
->out
.h
.error
= -EIO
;
1397 if (!test_bit(FR_ISREPLY
, &req
->flags
)) {
1401 hash
= fuse_req_hash(req
->in
.h
.unique
);
1402 list_move_tail(&req
->list
, &fpq
->processing
[hash
]);
1403 __fuse_get_request(req
);
1404 set_bit(FR_SENT
, &req
->flags
);
1405 spin_unlock(&fpq
->lock
);
1406 /* matches barrier in request_wait_answer() */
1407 smp_mb__after_atomic();
1408 if (test_bit(FR_INTERRUPTED
, &req
->flags
))
1409 queue_interrupt(fiq
, req
);
1410 fuse_put_request(fc
, req
);
1415 if (!test_bit(FR_PRIVATE
, &req
->flags
))
1416 list_del_init(&req
->list
);
1417 spin_unlock(&fpq
->lock
);
1418 request_end(fc
, req
);
1422 spin_unlock(&fiq
->waitq
.lock
);
1426 static int fuse_dev_open(struct inode
*inode
, struct file
*file
)
1429 * The fuse device's file's private_data is used to hold
1430 * the fuse_conn(ection) when it is mounted, and is used to
1431 * keep track of whether the file has been mounted already.
1433 file
->private_data
= NULL
;
1437 static ssize_t
fuse_dev_read(struct kiocb
*iocb
, struct iov_iter
*to
)
1439 struct fuse_copy_state cs
;
1440 struct file
*file
= iocb
->ki_filp
;
1441 struct fuse_dev
*fud
= fuse_get_dev(file
);
1446 if (!iter_is_iovec(to
))
1449 fuse_copy_init(&cs
, 1, to
);
1451 return fuse_dev_do_read(fud
, file
, &cs
, iov_iter_count(to
));
1454 static ssize_t
fuse_dev_splice_read(struct file
*in
, loff_t
*ppos
,
1455 struct pipe_inode_info
*pipe
,
1456 size_t len
, unsigned int flags
)
1460 struct pipe_buffer
*bufs
;
1461 struct fuse_copy_state cs
;
1462 struct fuse_dev
*fud
= fuse_get_dev(in
);
1467 bufs
= kvmalloc_array(pipe
->buffers
, sizeof(struct pipe_buffer
),
1472 fuse_copy_init(&cs
, 1, NULL
);
1475 ret
= fuse_dev_do_read(fud
, in
, &cs
, len
);
1479 if (pipe
->nrbufs
+ cs
.nr_segs
> pipe
->buffers
) {
1484 for (ret
= total
= 0; page_nr
< cs
.nr_segs
; total
+= ret
) {
1486 * Need to be careful about this. Having buf->ops in module
1487 * code can Oops if the buffer persists after module unload.
1489 bufs
[page_nr
].ops
= &nosteal_pipe_buf_ops
;
1490 bufs
[page_nr
].flags
= 0;
1491 ret
= add_to_pipe(pipe
, &bufs
[page_nr
++]);
1492 if (unlikely(ret
< 0))
1498 for (; page_nr
< cs
.nr_segs
; page_nr
++)
1499 put_page(bufs
[page_nr
].page
);
1505 static int fuse_notify_poll(struct fuse_conn
*fc
, unsigned int size
,
1506 struct fuse_copy_state
*cs
)
1508 struct fuse_notify_poll_wakeup_out outarg
;
1511 if (size
!= sizeof(outarg
))
1514 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1518 fuse_copy_finish(cs
);
1519 return fuse_notify_poll_wakeup(fc
, &outarg
);
1522 fuse_copy_finish(cs
);
1526 static int fuse_notify_inval_inode(struct fuse_conn
*fc
, unsigned int size
,
1527 struct fuse_copy_state
*cs
)
1529 struct fuse_notify_inval_inode_out outarg
;
1532 if (size
!= sizeof(outarg
))
1535 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1538 fuse_copy_finish(cs
);
1540 down_read(&fc
->killsb
);
1543 err
= fuse_reverse_inval_inode(fc
->sb
, outarg
.ino
,
1544 outarg
.off
, outarg
.len
);
1546 up_read(&fc
->killsb
);
1550 fuse_copy_finish(cs
);
1554 static int fuse_notify_inval_entry(struct fuse_conn
*fc
, unsigned int size
,
1555 struct fuse_copy_state
*cs
)
1557 struct fuse_notify_inval_entry_out outarg
;
1562 buf
= kzalloc(FUSE_NAME_MAX
+ 1, GFP_KERNEL
);
1567 if (size
< sizeof(outarg
))
1570 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1574 err
= -ENAMETOOLONG
;
1575 if (outarg
.namelen
> FUSE_NAME_MAX
)
1579 if (size
!= sizeof(outarg
) + outarg
.namelen
+ 1)
1583 name
.len
= outarg
.namelen
;
1584 err
= fuse_copy_one(cs
, buf
, outarg
.namelen
+ 1);
1587 fuse_copy_finish(cs
);
1588 buf
[outarg
.namelen
] = 0;
1590 down_read(&fc
->killsb
);
1593 err
= fuse_reverse_inval_entry(fc
->sb
, outarg
.parent
, 0, &name
);
1594 up_read(&fc
->killsb
);
1600 fuse_copy_finish(cs
);
1604 static int fuse_notify_delete(struct fuse_conn
*fc
, unsigned int size
,
1605 struct fuse_copy_state
*cs
)
1607 struct fuse_notify_delete_out outarg
;
1612 buf
= kzalloc(FUSE_NAME_MAX
+ 1, GFP_KERNEL
);
1617 if (size
< sizeof(outarg
))
1620 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1624 err
= -ENAMETOOLONG
;
1625 if (outarg
.namelen
> FUSE_NAME_MAX
)
1629 if (size
!= sizeof(outarg
) + outarg
.namelen
+ 1)
1633 name
.len
= outarg
.namelen
;
1634 err
= fuse_copy_one(cs
, buf
, outarg
.namelen
+ 1);
1637 fuse_copy_finish(cs
);
1638 buf
[outarg
.namelen
] = 0;
1640 down_read(&fc
->killsb
);
1643 err
= fuse_reverse_inval_entry(fc
->sb
, outarg
.parent
,
1644 outarg
.child
, &name
);
1645 up_read(&fc
->killsb
);
1651 fuse_copy_finish(cs
);
1655 static int fuse_notify_store(struct fuse_conn
*fc
, unsigned int size
,
1656 struct fuse_copy_state
*cs
)
1658 struct fuse_notify_store_out outarg
;
1659 struct inode
*inode
;
1660 struct address_space
*mapping
;
1664 unsigned int offset
;
1670 if (size
< sizeof(outarg
))
1673 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1678 if (size
- sizeof(outarg
) != outarg
.size
)
1681 nodeid
= outarg
.nodeid
;
1683 down_read(&fc
->killsb
);
1689 inode
= ilookup5(fc
->sb
, nodeid
, fuse_inode_eq
, &nodeid
);
1693 mapping
= inode
->i_mapping
;
1694 index
= outarg
.offset
>> PAGE_SHIFT
;
1695 offset
= outarg
.offset
& ~PAGE_MASK
;
1696 file_size
= i_size_read(inode
);
1697 end
= outarg
.offset
+ outarg
.size
;
1698 if (end
> file_size
) {
1700 fuse_write_update_size(inode
, file_size
);
1706 unsigned int this_num
;
1709 page
= find_or_create_page(mapping
, index
,
1710 mapping_gfp_mask(mapping
));
1714 this_num
= min_t(unsigned, num
, PAGE_SIZE
- offset
);
1715 err
= fuse_copy_page(cs
, &page
, offset
, this_num
, 0);
1716 if (!err
&& offset
== 0 &&
1717 (this_num
== PAGE_SIZE
|| file_size
== end
))
1718 SetPageUptodate(page
);
1735 up_read(&fc
->killsb
);
1737 fuse_copy_finish(cs
);
1741 static void fuse_retrieve_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
1743 release_pages(req
->pages
, req
->num_pages
);
1746 static int fuse_retrieve(struct fuse_conn
*fc
, struct inode
*inode
,
1747 struct fuse_notify_retrieve_out
*outarg
)
1750 struct address_space
*mapping
= inode
->i_mapping
;
1751 struct fuse_req
*req
;
1755 unsigned int offset
;
1756 size_t total_len
= 0;
1757 unsigned int num_pages
;
1759 offset
= outarg
->offset
& ~PAGE_MASK
;
1760 file_size
= i_size_read(inode
);
1762 num
= min(outarg
->size
, fc
->max_write
);
1763 if (outarg
->offset
> file_size
)
1765 else if (outarg
->offset
+ num
> file_size
)
1766 num
= file_size
- outarg
->offset
;
1768 num_pages
= (num
+ offset
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
1769 num_pages
= min(num_pages
, fc
->max_pages
);
1771 req
= fuse_get_req(fc
, num_pages
);
1773 return PTR_ERR(req
);
1775 req
->in
.h
.opcode
= FUSE_NOTIFY_REPLY
;
1776 req
->in
.h
.nodeid
= outarg
->nodeid
;
1777 req
->in
.numargs
= 2;
1778 req
->in
.argpages
= 1;
1779 req
->end
= fuse_retrieve_end
;
1781 index
= outarg
->offset
>> PAGE_SHIFT
;
1783 while (num
&& req
->num_pages
< num_pages
) {
1785 unsigned int this_num
;
1787 page
= find_get_page(mapping
, index
);
1791 this_num
= min_t(unsigned, num
, PAGE_SIZE
- offset
);
1792 req
->pages
[req
->num_pages
] = page
;
1793 req
->page_descs
[req
->num_pages
].offset
= offset
;
1794 req
->page_descs
[req
->num_pages
].length
= this_num
;
1799 total_len
+= this_num
;
1802 req
->misc
.retrieve_in
.offset
= outarg
->offset
;
1803 req
->misc
.retrieve_in
.size
= total_len
;
1804 req
->in
.args
[0].size
= sizeof(req
->misc
.retrieve_in
);
1805 req
->in
.args
[0].value
= &req
->misc
.retrieve_in
;
1806 req
->in
.args
[1].size
= total_len
;
1808 err
= fuse_request_send_notify_reply(fc
, req
, outarg
->notify_unique
);
1810 fuse_retrieve_end(fc
, req
);
1811 fuse_put_request(fc
, req
);
1817 static int fuse_notify_retrieve(struct fuse_conn
*fc
, unsigned int size
,
1818 struct fuse_copy_state
*cs
)
1820 struct fuse_notify_retrieve_out outarg
;
1821 struct inode
*inode
;
1825 if (size
!= sizeof(outarg
))
1828 err
= fuse_copy_one(cs
, &outarg
, sizeof(outarg
));
1832 fuse_copy_finish(cs
);
1834 down_read(&fc
->killsb
);
1837 u64 nodeid
= outarg
.nodeid
;
1839 inode
= ilookup5(fc
->sb
, nodeid
, fuse_inode_eq
, &nodeid
);
1841 err
= fuse_retrieve(fc
, inode
, &outarg
);
1845 up_read(&fc
->killsb
);
1850 fuse_copy_finish(cs
);
1854 static int fuse_notify(struct fuse_conn
*fc
, enum fuse_notify_code code
,
1855 unsigned int size
, struct fuse_copy_state
*cs
)
1857 /* Don't try to move pages (yet) */
1861 case FUSE_NOTIFY_POLL
:
1862 return fuse_notify_poll(fc
, size
, cs
);
1864 case FUSE_NOTIFY_INVAL_INODE
:
1865 return fuse_notify_inval_inode(fc
, size
, cs
);
1867 case FUSE_NOTIFY_INVAL_ENTRY
:
1868 return fuse_notify_inval_entry(fc
, size
, cs
);
1870 case FUSE_NOTIFY_STORE
:
1871 return fuse_notify_store(fc
, size
, cs
);
1873 case FUSE_NOTIFY_RETRIEVE
:
1874 return fuse_notify_retrieve(fc
, size
, cs
);
1876 case FUSE_NOTIFY_DELETE
:
1877 return fuse_notify_delete(fc
, size
, cs
);
1880 fuse_copy_finish(cs
);
1885 /* Look up request on processing list by unique ID */
1886 static struct fuse_req
*request_find(struct fuse_pqueue
*fpq
, u64 unique
)
1888 unsigned int hash
= fuse_req_hash(unique
);
1889 struct fuse_req
*req
;
1891 list_for_each_entry(req
, &fpq
->processing
[hash
], list
) {
1892 if (req
->in
.h
.unique
== unique
)
1898 static int copy_out_args(struct fuse_copy_state
*cs
, struct fuse_out
*out
,
1901 unsigned reqsize
= sizeof(struct fuse_out_header
);
1904 return nbytes
!= reqsize
? -EINVAL
: 0;
1906 reqsize
+= len_args(out
->numargs
, out
->args
);
1908 if (reqsize
< nbytes
|| (reqsize
> nbytes
&& !out
->argvar
))
1910 else if (reqsize
> nbytes
) {
1911 struct fuse_arg
*lastarg
= &out
->args
[out
->numargs
-1];
1912 unsigned diffsize
= reqsize
- nbytes
;
1913 if (diffsize
> lastarg
->size
)
1915 lastarg
->size
-= diffsize
;
1917 return fuse_copy_args(cs
, out
->numargs
, out
->argpages
, out
->args
,
1922 * Write a single reply to a request. First the header is copied from
1923 * the write buffer. The request is then searched on the processing
1924 * list by the unique ID found in the header. If found, then remove
1925 * it from the list and copy the rest of the buffer to the request.
1926 * The request is finished by calling request_end()
1928 static ssize_t
fuse_dev_do_write(struct fuse_dev
*fud
,
1929 struct fuse_copy_state
*cs
, size_t nbytes
)
1932 struct fuse_conn
*fc
= fud
->fc
;
1933 struct fuse_pqueue
*fpq
= &fud
->pq
;
1934 struct fuse_req
*req
;
1935 struct fuse_out_header oh
;
1938 if (nbytes
< sizeof(struct fuse_out_header
))
1941 err
= fuse_copy_one(cs
, &oh
, sizeof(oh
));
1946 if (oh
.len
!= nbytes
)
1950 * Zero oh.unique indicates unsolicited notification message
1951 * and error contains notification code.
1954 err
= fuse_notify(fc
, oh
.error
, nbytes
- sizeof(oh
), cs
);
1959 if (oh
.error
<= -1000 || oh
.error
> 0)
1962 spin_lock(&fpq
->lock
);
1965 req
= request_find(fpq
, oh
.unique
& ~FUSE_INT_REQ_BIT
);
1969 spin_unlock(&fpq
->lock
);
1973 /* Is it an interrupt reply ID? */
1974 if (oh
.unique
& FUSE_INT_REQ_BIT
) {
1975 __fuse_get_request(req
);
1976 spin_unlock(&fpq
->lock
);
1979 if (nbytes
!= sizeof(struct fuse_out_header
))
1981 else if (oh
.error
== -ENOSYS
)
1982 fc
->no_interrupt
= 1;
1983 else if (oh
.error
== -EAGAIN
)
1984 err
= queue_interrupt(&fc
->iq
, req
);
1986 fuse_put_request(fc
, req
);
1991 clear_bit(FR_SENT
, &req
->flags
);
1992 list_move(&req
->list
, &fpq
->io
);
1994 set_bit(FR_LOCKED
, &req
->flags
);
1995 spin_unlock(&fpq
->lock
);
1997 if (!req
->out
.page_replace
)
2000 err
= copy_out_args(cs
, &req
->out
, nbytes
);
2001 fuse_copy_finish(cs
);
2003 spin_lock(&fpq
->lock
);
2004 clear_bit(FR_LOCKED
, &req
->flags
);
2005 if (!fpq
->connected
)
2008 req
->out
.h
.error
= -EIO
;
2009 if (!test_bit(FR_PRIVATE
, &req
->flags
))
2010 list_del_init(&req
->list
);
2011 spin_unlock(&fpq
->lock
);
2013 request_end(fc
, req
);
2015 return err
? err
: nbytes
;
2018 fuse_copy_finish(cs
);
2022 static ssize_t
fuse_dev_write(struct kiocb
*iocb
, struct iov_iter
*from
)
2024 struct fuse_copy_state cs
;
2025 struct fuse_dev
*fud
= fuse_get_dev(iocb
->ki_filp
);
2030 if (!iter_is_iovec(from
))
2033 fuse_copy_init(&cs
, 0, from
);
2035 return fuse_dev_do_write(fud
, &cs
, iov_iter_count(from
));
2038 static ssize_t
fuse_dev_splice_write(struct pipe_inode_info
*pipe
,
2039 struct file
*out
, loff_t
*ppos
,
2040 size_t len
, unsigned int flags
)
2044 struct pipe_buffer
*bufs
;
2045 struct fuse_copy_state cs
;
2046 struct fuse_dev
*fud
;
2050 fud
= fuse_get_dev(out
);
2056 bufs
= kvmalloc_array(pipe
->nrbufs
, sizeof(struct pipe_buffer
),
2065 for (idx
= 0; idx
< pipe
->nrbufs
&& rem
< len
; idx
++)
2066 rem
+= pipe
->bufs
[(pipe
->curbuf
+ idx
) & (pipe
->buffers
- 1)].len
;
2074 struct pipe_buffer
*ibuf
;
2075 struct pipe_buffer
*obuf
;
2077 BUG_ON(nbuf
>= pipe
->buffers
);
2078 BUG_ON(!pipe
->nrbufs
);
2079 ibuf
= &pipe
->bufs
[pipe
->curbuf
];
2082 if (rem
>= ibuf
->len
) {
2085 pipe
->curbuf
= (pipe
->curbuf
+ 1) & (pipe
->buffers
- 1);
2088 if (!pipe_buf_get(pipe
, ibuf
))
2092 obuf
->flags
&= ~PIPE_BUF_FLAG_GIFT
;
2094 ibuf
->offset
+= obuf
->len
;
2095 ibuf
->len
-= obuf
->len
;
2102 fuse_copy_init(&cs
, 0, NULL
);
2107 if (flags
& SPLICE_F_MOVE
)
2110 ret
= fuse_dev_do_write(fud
, &cs
, len
);
2114 for (idx
= 0; idx
< nbuf
; idx
++)
2115 pipe_buf_release(pipe
, &bufs
[idx
]);
2122 static __poll_t
fuse_dev_poll(struct file
*file
, poll_table
*wait
)
2124 __poll_t mask
= EPOLLOUT
| EPOLLWRNORM
;
2125 struct fuse_iqueue
*fiq
;
2126 struct fuse_dev
*fud
= fuse_get_dev(file
);
2132 poll_wait(file
, &fiq
->waitq
, wait
);
2134 spin_lock(&fiq
->waitq
.lock
);
2135 if (!fiq
->connected
)
2137 else if (request_pending(fiq
))
2138 mask
|= EPOLLIN
| EPOLLRDNORM
;
2139 spin_unlock(&fiq
->waitq
.lock
);
2144 /* Abort all requests on the given list (pending or processing) */
2145 static void end_requests(struct fuse_conn
*fc
, struct list_head
*head
)
2147 while (!list_empty(head
)) {
2148 struct fuse_req
*req
;
2149 req
= list_entry(head
->next
, struct fuse_req
, list
);
2150 req
->out
.h
.error
= -ECONNABORTED
;
2151 clear_bit(FR_SENT
, &req
->flags
);
2152 list_del_init(&req
->list
);
2153 request_end(fc
, req
);
2157 static void end_polls(struct fuse_conn
*fc
)
2161 p
= rb_first(&fc
->polled_files
);
2164 struct fuse_file
*ff
;
2165 ff
= rb_entry(p
, struct fuse_file
, polled_node
);
2166 wake_up_interruptible_all(&ff
->poll_wait
);
2173 * Abort all requests.
2175 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2178 * The same effect is usually achievable through killing the filesystem daemon
2179 * and all users of the filesystem. The exception is the combination of an
2180 * asynchronous request and the tricky deadlock (see
2181 * Documentation/filesystems/fuse.txt).
2183 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2184 * requests, they should be finished off immediately. Locked requests will be
2185 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2186 * requests. It is possible that some request will finish before we can. This
2187 * is OK, the request will in that case be removed from the list before we touch
2190 void fuse_abort_conn(struct fuse_conn
*fc
)
2192 struct fuse_iqueue
*fiq
= &fc
->iq
;
2194 spin_lock(&fc
->lock
);
2195 if (fc
->connected
) {
2196 struct fuse_dev
*fud
;
2197 struct fuse_req
*req
, *next
;
2201 /* Background queuing checks fc->connected under bg_lock */
2202 spin_lock(&fc
->bg_lock
);
2204 spin_unlock(&fc
->bg_lock
);
2206 fuse_set_initialized(fc
);
2207 list_for_each_entry(fud
, &fc
->devices
, entry
) {
2208 struct fuse_pqueue
*fpq
= &fud
->pq
;
2210 spin_lock(&fpq
->lock
);
2212 list_for_each_entry_safe(req
, next
, &fpq
->io
, list
) {
2213 req
->out
.h
.error
= -ECONNABORTED
;
2214 spin_lock(&req
->waitq
.lock
);
2215 set_bit(FR_ABORTED
, &req
->flags
);
2216 if (!test_bit(FR_LOCKED
, &req
->flags
)) {
2217 set_bit(FR_PRIVATE
, &req
->flags
);
2218 __fuse_get_request(req
);
2219 list_move(&req
->list
, &to_end
);
2221 spin_unlock(&req
->waitq
.lock
);
2223 for (i
= 0; i
< FUSE_PQ_HASH_SIZE
; i
++)
2224 list_splice_tail_init(&fpq
->processing
[i
],
2226 spin_unlock(&fpq
->lock
);
2228 spin_lock(&fc
->bg_lock
);
2230 fc
->max_background
= UINT_MAX
;
2232 spin_unlock(&fc
->bg_lock
);
2234 spin_lock(&fiq
->waitq
.lock
);
2236 list_for_each_entry(req
, &fiq
->pending
, list
)
2237 clear_bit(FR_PENDING
, &req
->flags
);
2238 list_splice_tail_init(&fiq
->pending
, &to_end
);
2239 while (forget_pending(fiq
))
2240 kfree(dequeue_forget(fiq
, 1, NULL
));
2241 wake_up_all_locked(&fiq
->waitq
);
2242 spin_unlock(&fiq
->waitq
.lock
);
2243 kill_fasync(&fiq
->fasync
, SIGIO
, POLL_IN
);
2245 wake_up_all(&fc
->blocked_waitq
);
2246 spin_unlock(&fc
->lock
);
2248 end_requests(fc
, &to_end
);
2250 spin_unlock(&fc
->lock
);
2253 EXPORT_SYMBOL_GPL(fuse_abort_conn
);
2255 void fuse_wait_aborted(struct fuse_conn
*fc
)
2257 /* matches implicit memory barrier in fuse_drop_waiting() */
2259 wait_event(fc
->blocked_waitq
, atomic_read(&fc
->num_waiting
) == 0);
2262 int fuse_dev_release(struct inode
*inode
, struct file
*file
)
2264 struct fuse_dev
*fud
= fuse_get_dev(file
);
2267 struct fuse_conn
*fc
= fud
->fc
;
2268 struct fuse_pqueue
*fpq
= &fud
->pq
;
2272 spin_lock(&fpq
->lock
);
2273 WARN_ON(!list_empty(&fpq
->io
));
2274 for (i
= 0; i
< FUSE_PQ_HASH_SIZE
; i
++)
2275 list_splice_init(&fpq
->processing
[i
], &to_end
);
2276 spin_unlock(&fpq
->lock
);
2278 end_requests(fc
, &to_end
);
2280 /* Are we the last open device? */
2281 if (atomic_dec_and_test(&fc
->dev_count
)) {
2282 WARN_ON(fc
->iq
.fasync
!= NULL
);
2283 fuse_abort_conn(fc
);
2289 EXPORT_SYMBOL_GPL(fuse_dev_release
);
2291 static int fuse_dev_fasync(int fd
, struct file
*file
, int on
)
2293 struct fuse_dev
*fud
= fuse_get_dev(file
);
2298 /* No locking - fasync_helper does its own locking */
2299 return fasync_helper(fd
, file
, on
, &fud
->fc
->iq
.fasync
);
2302 static int fuse_device_clone(struct fuse_conn
*fc
, struct file
*new)
2304 struct fuse_dev
*fud
;
2306 if (new->private_data
)
2309 fud
= fuse_dev_alloc(fc
);
2313 new->private_data
= fud
;
2314 atomic_inc(&fc
->dev_count
);
2319 static long fuse_dev_ioctl(struct file
*file
, unsigned int cmd
,
2324 if (cmd
== FUSE_DEV_IOC_CLONE
) {
2328 if (!get_user(oldfd
, (__u32 __user
*) arg
)) {
2329 struct file
*old
= fget(oldfd
);
2333 struct fuse_dev
*fud
= NULL
;
2336 * Check against file->f_op because CUSE
2337 * uses the same ioctl handler.
2339 if (old
->f_op
== file
->f_op
&&
2340 old
->f_cred
->user_ns
== file
->f_cred
->user_ns
)
2341 fud
= fuse_get_dev(old
);
2344 mutex_lock(&fuse_mutex
);
2345 err
= fuse_device_clone(fud
->fc
, file
);
2346 mutex_unlock(&fuse_mutex
);
2355 const struct file_operations fuse_dev_operations
= {
2356 .owner
= THIS_MODULE
,
2357 .open
= fuse_dev_open
,
2358 .llseek
= no_llseek
,
2359 .read_iter
= fuse_dev_read
,
2360 .splice_read
= fuse_dev_splice_read
,
2361 .write_iter
= fuse_dev_write
,
2362 .splice_write
= fuse_dev_splice_write
,
2363 .poll
= fuse_dev_poll
,
2364 .release
= fuse_dev_release
,
2365 .fasync
= fuse_dev_fasync
,
2366 .unlocked_ioctl
= fuse_dev_ioctl
,
2367 .compat_ioctl
= fuse_dev_ioctl
,
2369 EXPORT_SYMBOL_GPL(fuse_dev_operations
);
2371 static struct miscdevice fuse_miscdevice
= {
2372 .minor
= FUSE_MINOR
,
2374 .fops
= &fuse_dev_operations
,
2377 int __init
fuse_dev_init(void)
2380 fuse_req_cachep
= kmem_cache_create("fuse_request",
2381 sizeof(struct fuse_req
),
2383 if (!fuse_req_cachep
)
2386 err
= misc_register(&fuse_miscdevice
);
2388 goto out_cache_clean
;
2393 kmem_cache_destroy(fuse_req_cachep
);
2398 void fuse_dev_cleanup(void)
2400 misc_deregister(&fuse_miscdevice
);
2401 kmem_cache_destroy(fuse_req_cachep
);