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/pagemap.h>
12 #include <linux/slab.h>
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/sched/signal.h>
16 #include <linux/module.h>
17 #include <linux/compat.h>
18 #include <linux/swap.h>
19 #include <linux/falloc.h>
20 #include <linux/uio.h>
22 static struct page
**fuse_pages_alloc(unsigned int npages
, gfp_t flags
,
23 struct fuse_page_desc
**desc
)
27 pages
= kzalloc(npages
* (sizeof(struct page
*) +
28 sizeof(struct fuse_page_desc
)), flags
);
29 *desc
= (void *) (pages
+ npages
);
34 static int fuse_send_open(struct fuse_conn
*fc
, u64 nodeid
, struct file
*file
,
35 int opcode
, struct fuse_open_out
*outargp
)
37 struct fuse_open_in inarg
;
40 memset(&inarg
, 0, sizeof(inarg
));
41 inarg
.flags
= file
->f_flags
& ~(O_CREAT
| O_EXCL
| O_NOCTTY
);
42 if (!fc
->atomic_o_trunc
)
43 inarg
.flags
&= ~O_TRUNC
;
47 args
.in_args
[0].size
= sizeof(inarg
);
48 args
.in_args
[0].value
= &inarg
;
50 args
.out_args
[0].size
= sizeof(*outargp
);
51 args
.out_args
[0].value
= outargp
;
53 return fuse_simple_request(fc
, &args
);
56 struct fuse_release_args
{
57 struct fuse_args args
;
58 struct fuse_release_in inarg
;
62 struct fuse_file
*fuse_file_alloc(struct fuse_conn
*fc
)
66 ff
= kzalloc(sizeof(struct fuse_file
), GFP_KERNEL_ACCOUNT
);
71 ff
->release_args
= kzalloc(sizeof(*ff
->release_args
),
73 if (!ff
->release_args
) {
78 INIT_LIST_HEAD(&ff
->write_entry
);
79 mutex_init(&ff
->readdir
.lock
);
80 refcount_set(&ff
->count
, 1);
81 RB_CLEAR_NODE(&ff
->polled_node
);
82 init_waitqueue_head(&ff
->poll_wait
);
84 ff
->kh
= atomic64_inc_return(&fc
->khctr
);
89 void fuse_file_free(struct fuse_file
*ff
)
91 kfree(ff
->release_args
);
92 mutex_destroy(&ff
->readdir
.lock
);
96 static struct fuse_file
*fuse_file_get(struct fuse_file
*ff
)
98 refcount_inc(&ff
->count
);
102 static void fuse_release_end(struct fuse_conn
*fc
, struct fuse_args
*args
,
105 struct fuse_release_args
*ra
= container_of(args
, typeof(*ra
), args
);
111 static void fuse_file_put(struct fuse_file
*ff
, bool sync
, bool isdir
)
113 if (refcount_dec_and_test(&ff
->count
)) {
114 struct fuse_args
*args
= &ff
->release_args
->args
;
116 if (isdir
? ff
->fc
->no_opendir
: ff
->fc
->no_open
) {
117 /* Do nothing when client does not implement 'open' */
118 fuse_release_end(ff
->fc
, args
, 0);
120 fuse_simple_request(ff
->fc
, args
);
121 fuse_release_end(ff
->fc
, args
, 0);
123 args
->end
= fuse_release_end
;
124 if (fuse_simple_background(ff
->fc
, args
,
125 GFP_KERNEL
| __GFP_NOFAIL
))
126 fuse_release_end(ff
->fc
, args
, -ENOTCONN
);
132 int fuse_do_open(struct fuse_conn
*fc
, u64 nodeid
, struct file
*file
,
135 struct fuse_file
*ff
;
136 int opcode
= isdir
? FUSE_OPENDIR
: FUSE_OPEN
;
138 ff
= fuse_file_alloc(fc
);
143 /* Default for no-open */
144 ff
->open_flags
= FOPEN_KEEP_CACHE
| (isdir
? FOPEN_CACHE_DIR
: 0);
145 if (isdir
? !fc
->no_opendir
: !fc
->no_open
) {
146 struct fuse_open_out outarg
;
149 err
= fuse_send_open(fc
, nodeid
, file
, opcode
, &outarg
);
152 ff
->open_flags
= outarg
.open_flags
;
154 } else if (err
!= -ENOSYS
) {
166 ff
->open_flags
&= ~FOPEN_DIRECT_IO
;
169 file
->private_data
= ff
;
173 EXPORT_SYMBOL_GPL(fuse_do_open
);
175 static void fuse_link_write_file(struct file
*file
)
177 struct inode
*inode
= file_inode(file
);
178 struct fuse_inode
*fi
= get_fuse_inode(inode
);
179 struct fuse_file
*ff
= file
->private_data
;
181 * file may be written through mmap, so chain it onto the
182 * inodes's write_file list
184 spin_lock(&fi
->lock
);
185 if (list_empty(&ff
->write_entry
))
186 list_add(&ff
->write_entry
, &fi
->write_files
);
187 spin_unlock(&fi
->lock
);
190 void fuse_finish_open(struct inode
*inode
, struct file
*file
)
192 struct fuse_file
*ff
= file
->private_data
;
193 struct fuse_conn
*fc
= get_fuse_conn(inode
);
195 if (!(ff
->open_flags
& FOPEN_KEEP_CACHE
))
196 invalidate_inode_pages2(inode
->i_mapping
);
197 if (ff
->open_flags
& FOPEN_STREAM
)
198 stream_open(inode
, file
);
199 else if (ff
->open_flags
& FOPEN_NONSEEKABLE
)
200 nonseekable_open(inode
, file
);
201 if (fc
->atomic_o_trunc
&& (file
->f_flags
& O_TRUNC
)) {
202 struct fuse_inode
*fi
= get_fuse_inode(inode
);
204 spin_lock(&fi
->lock
);
205 fi
->attr_version
= atomic64_inc_return(&fc
->attr_version
);
206 i_size_write(inode
, 0);
207 spin_unlock(&fi
->lock
);
208 fuse_invalidate_attr(inode
);
209 if (fc
->writeback_cache
)
210 file_update_time(file
);
212 if ((file
->f_mode
& FMODE_WRITE
) && fc
->writeback_cache
)
213 fuse_link_write_file(file
);
216 int fuse_open_common(struct inode
*inode
, struct file
*file
, bool isdir
)
218 struct fuse_conn
*fc
= get_fuse_conn(inode
);
220 bool is_wb_truncate
= (file
->f_flags
& O_TRUNC
) &&
221 fc
->atomic_o_trunc
&&
224 err
= generic_file_open(inode
, file
);
228 if (is_wb_truncate
) {
230 fuse_set_nowrite(inode
);
233 err
= fuse_do_open(fc
, get_node_id(inode
), file
, isdir
);
236 fuse_finish_open(inode
, file
);
238 if (is_wb_truncate
) {
239 fuse_release_nowrite(inode
);
246 static void fuse_prepare_release(struct fuse_inode
*fi
, struct fuse_file
*ff
,
247 int flags
, int opcode
)
249 struct fuse_conn
*fc
= ff
->fc
;
250 struct fuse_release_args
*ra
= ff
->release_args
;
252 /* Inode is NULL on error path of fuse_create_open() */
254 spin_lock(&fi
->lock
);
255 list_del(&ff
->write_entry
);
256 spin_unlock(&fi
->lock
);
258 spin_lock(&fc
->lock
);
259 if (!RB_EMPTY_NODE(&ff
->polled_node
))
260 rb_erase(&ff
->polled_node
, &fc
->polled_files
);
261 spin_unlock(&fc
->lock
);
263 wake_up_interruptible_all(&ff
->poll_wait
);
265 ra
->inarg
.fh
= ff
->fh
;
266 ra
->inarg
.flags
= flags
;
267 ra
->args
.in_numargs
= 1;
268 ra
->args
.in_args
[0].size
= sizeof(struct fuse_release_in
);
269 ra
->args
.in_args
[0].value
= &ra
->inarg
;
270 ra
->args
.opcode
= opcode
;
271 ra
->args
.nodeid
= ff
->nodeid
;
272 ra
->args
.force
= true;
273 ra
->args
.nocreds
= true;
276 void fuse_release_common(struct file
*file
, bool isdir
)
278 struct fuse_inode
*fi
= get_fuse_inode(file_inode(file
));
279 struct fuse_file
*ff
= file
->private_data
;
280 struct fuse_release_args
*ra
= ff
->release_args
;
281 int opcode
= isdir
? FUSE_RELEASEDIR
: FUSE_RELEASE
;
283 fuse_prepare_release(fi
, ff
, file
->f_flags
, opcode
);
286 ra
->inarg
.release_flags
|= FUSE_RELEASE_FLOCK_UNLOCK
;
287 ra
->inarg
.lock_owner
= fuse_lock_owner_id(ff
->fc
,
290 /* Hold inode until release is finished */
291 ra
->inode
= igrab(file_inode(file
));
294 * Normally this will send the RELEASE request, however if
295 * some asynchronous READ or WRITE requests are outstanding,
296 * the sending will be delayed.
298 * Make the release synchronous if this is a fuseblk mount,
299 * synchronous RELEASE is allowed (and desirable) in this case
300 * because the server can be trusted not to screw up.
302 fuse_file_put(ff
, ff
->fc
->destroy
, isdir
);
305 static int fuse_open(struct inode
*inode
, struct file
*file
)
307 return fuse_open_common(inode
, file
, false);
310 static int fuse_release(struct inode
*inode
, struct file
*file
)
312 struct fuse_conn
*fc
= get_fuse_conn(inode
);
314 /* see fuse_vma_close() for !writeback_cache case */
315 if (fc
->writeback_cache
)
316 write_inode_now(inode
, 1);
318 fuse_release_common(file
, false);
320 /* return value is ignored by VFS */
324 void fuse_sync_release(struct fuse_inode
*fi
, struct fuse_file
*ff
, int flags
)
326 WARN_ON(refcount_read(&ff
->count
) > 1);
327 fuse_prepare_release(fi
, ff
, flags
, FUSE_RELEASE
);
329 * iput(NULL) is a no-op and since the refcount is 1 and everything's
330 * synchronous, we are fine with not doing igrab() here"
332 fuse_file_put(ff
, true, false);
334 EXPORT_SYMBOL_GPL(fuse_sync_release
);
337 * Scramble the ID space with XTEA, so that the value of the files_struct
338 * pointer is not exposed to userspace.
340 u64
fuse_lock_owner_id(struct fuse_conn
*fc
, fl_owner_t id
)
342 u32
*k
= fc
->scramble_key
;
343 u64 v
= (unsigned long) id
;
349 for (i
= 0; i
< 32; i
++) {
350 v0
+= ((v1
<< 4 ^ v1
>> 5) + v1
) ^ (sum
+ k
[sum
& 3]);
352 v1
+= ((v0
<< 4 ^ v0
>> 5) + v0
) ^ (sum
+ k
[sum
>>11 & 3]);
355 return (u64
) v0
+ ((u64
) v1
<< 32);
358 struct fuse_writepage_args
{
359 struct fuse_io_args ia
;
360 struct list_head writepages_entry
;
361 struct list_head queue_entry
;
362 struct fuse_writepage_args
*next
;
366 static struct fuse_writepage_args
*fuse_find_writeback(struct fuse_inode
*fi
,
367 pgoff_t idx_from
, pgoff_t idx_to
)
369 struct fuse_writepage_args
*wpa
;
371 list_for_each_entry(wpa
, &fi
->writepages
, writepages_entry
) {
374 WARN_ON(get_fuse_inode(wpa
->inode
) != fi
);
375 curr_index
= wpa
->ia
.write
.in
.offset
>> PAGE_SHIFT
;
376 if (idx_from
< curr_index
+ wpa
->ia
.ap
.num_pages
&&
377 curr_index
<= idx_to
) {
385 * Check if any page in a range is under writeback
387 * This is currently done by walking the list of writepage requests
388 * for the inode, which can be pretty inefficient.
390 static bool fuse_range_is_writeback(struct inode
*inode
, pgoff_t idx_from
,
393 struct fuse_inode
*fi
= get_fuse_inode(inode
);
396 spin_lock(&fi
->lock
);
397 found
= fuse_find_writeback(fi
, idx_from
, idx_to
);
398 spin_unlock(&fi
->lock
);
403 static inline bool fuse_page_is_writeback(struct inode
*inode
, pgoff_t index
)
405 return fuse_range_is_writeback(inode
, index
, index
);
409 * Wait for page writeback to be completed.
411 * Since fuse doesn't rely on the VM writeback tracking, this has to
412 * use some other means.
414 static void fuse_wait_on_page_writeback(struct inode
*inode
, pgoff_t index
)
416 struct fuse_inode
*fi
= get_fuse_inode(inode
);
418 wait_event(fi
->page_waitq
, !fuse_page_is_writeback(inode
, index
));
422 * Wait for all pending writepages on the inode to finish.
424 * This is currently done by blocking further writes with FUSE_NOWRITE
425 * and waiting for all sent writes to complete.
427 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
428 * could conflict with truncation.
430 static void fuse_sync_writes(struct inode
*inode
)
432 fuse_set_nowrite(inode
);
433 fuse_release_nowrite(inode
);
436 static int fuse_flush(struct file
*file
, fl_owner_t id
)
438 struct inode
*inode
= file_inode(file
);
439 struct fuse_conn
*fc
= get_fuse_conn(inode
);
440 struct fuse_file
*ff
= file
->private_data
;
441 struct fuse_flush_in inarg
;
445 if (is_bad_inode(inode
))
451 err
= write_inode_now(inode
, 1);
456 fuse_sync_writes(inode
);
459 err
= filemap_check_errors(file
->f_mapping
);
463 memset(&inarg
, 0, sizeof(inarg
));
465 inarg
.lock_owner
= fuse_lock_owner_id(fc
, id
);
466 args
.opcode
= FUSE_FLUSH
;
467 args
.nodeid
= get_node_id(inode
);
469 args
.in_args
[0].size
= sizeof(inarg
);
470 args
.in_args
[0].value
= &inarg
;
473 err
= fuse_simple_request(fc
, &args
);
474 if (err
== -ENOSYS
) {
481 int fuse_fsync_common(struct file
*file
, loff_t start
, loff_t end
,
482 int datasync
, int opcode
)
484 struct inode
*inode
= file
->f_mapping
->host
;
485 struct fuse_conn
*fc
= get_fuse_conn(inode
);
486 struct fuse_file
*ff
= file
->private_data
;
488 struct fuse_fsync_in inarg
;
490 memset(&inarg
, 0, sizeof(inarg
));
492 inarg
.fsync_flags
= datasync
? FUSE_FSYNC_FDATASYNC
: 0;
493 args
.opcode
= opcode
;
494 args
.nodeid
= get_node_id(inode
);
496 args
.in_args
[0].size
= sizeof(inarg
);
497 args
.in_args
[0].value
= &inarg
;
498 return fuse_simple_request(fc
, &args
);
501 static int fuse_fsync(struct file
*file
, loff_t start
, loff_t end
,
504 struct inode
*inode
= file
->f_mapping
->host
;
505 struct fuse_conn
*fc
= get_fuse_conn(inode
);
508 if (is_bad_inode(inode
))
514 * Start writeback against all dirty pages of the inode, then
515 * wait for all outstanding writes, before sending the FSYNC
518 err
= file_write_and_wait_range(file
, start
, end
);
522 fuse_sync_writes(inode
);
525 * Due to implementation of fuse writeback
526 * file_write_and_wait_range() does not catch errors.
527 * We have to do this directly after fuse_sync_writes()
529 err
= file_check_and_advance_wb_err(file
);
533 err
= sync_inode_metadata(inode
, 1);
540 err
= fuse_fsync_common(file
, start
, end
, datasync
, FUSE_FSYNC
);
541 if (err
== -ENOSYS
) {
551 void fuse_read_args_fill(struct fuse_io_args
*ia
, struct file
*file
, loff_t pos
,
552 size_t count
, int opcode
)
554 struct fuse_file
*ff
= file
->private_data
;
555 struct fuse_args
*args
= &ia
->ap
.args
;
557 ia
->read
.in
.fh
= ff
->fh
;
558 ia
->read
.in
.offset
= pos
;
559 ia
->read
.in
.size
= count
;
560 ia
->read
.in
.flags
= file
->f_flags
;
561 args
->opcode
= opcode
;
562 args
->nodeid
= ff
->nodeid
;
563 args
->in_numargs
= 1;
564 args
->in_args
[0].size
= sizeof(ia
->read
.in
);
565 args
->in_args
[0].value
= &ia
->read
.in
;
566 args
->out_argvar
= true;
567 args
->out_numargs
= 1;
568 args
->out_args
[0].size
= count
;
571 static void fuse_release_user_pages(struct fuse_args_pages
*ap
,
576 for (i
= 0; i
< ap
->num_pages
; i
++) {
578 set_page_dirty_lock(ap
->pages
[i
]);
579 put_page(ap
->pages
[i
]);
583 static void fuse_io_release(struct kref
*kref
)
585 kfree(container_of(kref
, struct fuse_io_priv
, refcnt
));
588 static ssize_t
fuse_get_res_by_io(struct fuse_io_priv
*io
)
593 if (io
->bytes
>= 0 && io
->write
)
596 return io
->bytes
< 0 ? io
->size
: io
->bytes
;
600 * In case of short read, the caller sets 'pos' to the position of
601 * actual end of fuse request in IO request. Otherwise, if bytes_requested
602 * == bytes_transferred or rw == WRITE, the caller sets 'pos' to -1.
605 * User requested DIO read of 64K. It was splitted into two 32K fuse requests,
606 * both submitted asynchronously. The first of them was ACKed by userspace as
607 * fully completed (req->out.args[0].size == 32K) resulting in pos == -1. The
608 * second request was ACKed as short, e.g. only 1K was read, resulting in
611 * Thus, when all fuse requests are completed, the minimal non-negative 'pos'
612 * will be equal to the length of the longest contiguous fragment of
613 * transferred data starting from the beginning of IO request.
615 static void fuse_aio_complete(struct fuse_io_priv
*io
, int err
, ssize_t pos
)
619 spin_lock(&io
->lock
);
621 io
->err
= io
->err
? : err
;
622 else if (pos
>= 0 && (io
->bytes
< 0 || pos
< io
->bytes
))
626 if (!left
&& io
->blocking
)
628 spin_unlock(&io
->lock
);
630 if (!left
&& !io
->blocking
) {
631 ssize_t res
= fuse_get_res_by_io(io
);
634 struct inode
*inode
= file_inode(io
->iocb
->ki_filp
);
635 struct fuse_conn
*fc
= get_fuse_conn(inode
);
636 struct fuse_inode
*fi
= get_fuse_inode(inode
);
638 spin_lock(&fi
->lock
);
639 fi
->attr_version
= atomic64_inc_return(&fc
->attr_version
);
640 spin_unlock(&fi
->lock
);
643 io
->iocb
->ki_complete(io
->iocb
, res
, 0);
646 kref_put(&io
->refcnt
, fuse_io_release
);
649 static struct fuse_io_args
*fuse_io_alloc(struct fuse_io_priv
*io
,
652 struct fuse_io_args
*ia
;
654 ia
= kzalloc(sizeof(*ia
), GFP_KERNEL
);
657 ia
->ap
.pages
= fuse_pages_alloc(npages
, GFP_KERNEL
,
667 static void fuse_io_free(struct fuse_io_args
*ia
)
673 static void fuse_aio_complete_req(struct fuse_conn
*fc
, struct fuse_args
*args
,
676 struct fuse_io_args
*ia
= container_of(args
, typeof(*ia
), ap
.args
);
677 struct fuse_io_priv
*io
= ia
->io
;
680 fuse_release_user_pages(&ia
->ap
, io
->should_dirty
);
684 } else if (io
->write
) {
685 if (ia
->write
.out
.size
> ia
->write
.in
.size
) {
687 } else if (ia
->write
.in
.size
!= ia
->write
.out
.size
) {
688 pos
= ia
->write
.in
.offset
- io
->offset
+
692 u32 outsize
= args
->out_args
[0].size
;
694 if (ia
->read
.in
.size
!= outsize
)
695 pos
= ia
->read
.in
.offset
- io
->offset
+ outsize
;
698 fuse_aio_complete(io
, err
, pos
);
702 static ssize_t
fuse_async_req_send(struct fuse_conn
*fc
,
703 struct fuse_io_args
*ia
, size_t num_bytes
)
706 struct fuse_io_priv
*io
= ia
->io
;
708 spin_lock(&io
->lock
);
709 kref_get(&io
->refcnt
);
710 io
->size
+= num_bytes
;
712 spin_unlock(&io
->lock
);
714 ia
->ap
.args
.end
= fuse_aio_complete_req
;
715 ia
->ap
.args
.may_block
= io
->should_dirty
;
716 err
= fuse_simple_background(fc
, &ia
->ap
.args
, GFP_KERNEL
);
718 fuse_aio_complete_req(fc
, &ia
->ap
.args
, err
);
723 static ssize_t
fuse_send_read(struct fuse_io_args
*ia
, loff_t pos
, size_t count
,
726 struct file
*file
= ia
->io
->iocb
->ki_filp
;
727 struct fuse_file
*ff
= file
->private_data
;
728 struct fuse_conn
*fc
= ff
->fc
;
730 fuse_read_args_fill(ia
, file
, pos
, count
, FUSE_READ
);
732 ia
->read
.in
.read_flags
|= FUSE_READ_LOCKOWNER
;
733 ia
->read
.in
.lock_owner
= fuse_lock_owner_id(fc
, owner
);
737 return fuse_async_req_send(fc
, ia
, count
);
739 return fuse_simple_request(fc
, &ia
->ap
.args
);
742 static void fuse_read_update_size(struct inode
*inode
, loff_t size
,
745 struct fuse_conn
*fc
= get_fuse_conn(inode
);
746 struct fuse_inode
*fi
= get_fuse_inode(inode
);
748 spin_lock(&fi
->lock
);
749 if (attr_ver
== fi
->attr_version
&& size
< inode
->i_size
&&
750 !test_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
)) {
751 fi
->attr_version
= atomic64_inc_return(&fc
->attr_version
);
752 i_size_write(inode
, size
);
754 spin_unlock(&fi
->lock
);
757 static void fuse_short_read(struct inode
*inode
, u64 attr_ver
, size_t num_read
,
758 struct fuse_args_pages
*ap
)
760 struct fuse_conn
*fc
= get_fuse_conn(inode
);
762 if (fc
->writeback_cache
) {
764 * A hole in a file. Some data after the hole are in page cache,
765 * but have not reached the client fs yet. So, the hole is not
769 int start_idx
= num_read
>> PAGE_SHIFT
;
770 size_t off
= num_read
& (PAGE_SIZE
- 1);
772 for (i
= start_idx
; i
< ap
->num_pages
; i
++) {
773 zero_user_segment(ap
->pages
[i
], off
, PAGE_SIZE
);
777 loff_t pos
= page_offset(ap
->pages
[0]) + num_read
;
778 fuse_read_update_size(inode
, pos
, attr_ver
);
782 static int fuse_do_readpage(struct file
*file
, struct page
*page
)
784 struct inode
*inode
= page
->mapping
->host
;
785 struct fuse_conn
*fc
= get_fuse_conn(inode
);
786 loff_t pos
= page_offset(page
);
787 struct fuse_page_desc desc
= { .length
= PAGE_SIZE
};
788 struct fuse_io_args ia
= {
789 .ap
.args
.page_zeroing
= true,
790 .ap
.args
.out_pages
= true,
799 * Page writeback can extend beyond the lifetime of the
800 * page-cache page, so make sure we read a properly synced
803 fuse_wait_on_page_writeback(inode
, page
->index
);
805 attr_ver
= fuse_get_attr_version(fc
);
807 /* Don't overflow end offset */
808 if (pos
+ (desc
.length
- 1) == LLONG_MAX
)
811 fuse_read_args_fill(&ia
, file
, pos
, desc
.length
, FUSE_READ
);
812 res
= fuse_simple_request(fc
, &ia
.ap
.args
);
816 * Short read means EOF. If file size is larger, truncate it
818 if (res
< desc
.length
)
819 fuse_short_read(inode
, attr_ver
, res
, &ia
.ap
);
821 SetPageUptodate(page
);
826 static int fuse_readpage(struct file
*file
, struct page
*page
)
828 struct inode
*inode
= page
->mapping
->host
;
832 if (is_bad_inode(inode
))
835 err
= fuse_do_readpage(file
, page
);
836 fuse_invalidate_atime(inode
);
842 static void fuse_readpages_end(struct fuse_conn
*fc
, struct fuse_args
*args
,
846 struct fuse_io_args
*ia
= container_of(args
, typeof(*ia
), ap
.args
);
847 struct fuse_args_pages
*ap
= &ia
->ap
;
848 size_t count
= ia
->read
.in
.size
;
849 size_t num_read
= args
->out_args
[0].size
;
850 struct address_space
*mapping
= NULL
;
852 for (i
= 0; mapping
== NULL
&& i
< ap
->num_pages
; i
++)
853 mapping
= ap
->pages
[i
]->mapping
;
856 struct inode
*inode
= mapping
->host
;
859 * Short read means EOF. If file size is larger, truncate it
861 if (!err
&& num_read
< count
)
862 fuse_short_read(inode
, ia
->read
.attr_ver
, num_read
, ap
);
864 fuse_invalidate_atime(inode
);
867 for (i
= 0; i
< ap
->num_pages
; i
++) {
868 struct page
*page
= ap
->pages
[i
];
871 SetPageUptodate(page
);
878 fuse_file_put(ia
->ff
, false, false);
883 static void fuse_send_readpages(struct fuse_io_args
*ia
, struct file
*file
)
885 struct fuse_file
*ff
= file
->private_data
;
886 struct fuse_conn
*fc
= ff
->fc
;
887 struct fuse_args_pages
*ap
= &ia
->ap
;
888 loff_t pos
= page_offset(ap
->pages
[0]);
889 size_t count
= ap
->num_pages
<< PAGE_SHIFT
;
893 ap
->args
.out_pages
= true;
894 ap
->args
.page_zeroing
= true;
895 ap
->args
.page_replace
= true;
897 /* Don't overflow end offset */
898 if (pos
+ (count
- 1) == LLONG_MAX
) {
900 ap
->descs
[ap
->num_pages
- 1].length
--;
902 WARN_ON((loff_t
) (pos
+ count
) < 0);
904 fuse_read_args_fill(ia
, file
, pos
, count
, FUSE_READ
);
905 ia
->read
.attr_ver
= fuse_get_attr_version(fc
);
906 if (fc
->async_read
) {
907 ia
->ff
= fuse_file_get(ff
);
908 ap
->args
.end
= fuse_readpages_end
;
909 err
= fuse_simple_background(fc
, &ap
->args
, GFP_KERNEL
);
913 res
= fuse_simple_request(fc
, &ap
->args
);
914 err
= res
< 0 ? res
: 0;
916 fuse_readpages_end(fc
, &ap
->args
, err
);
919 struct fuse_fill_data
{
920 struct fuse_io_args
*ia
;
923 unsigned int nr_pages
;
924 unsigned int max_pages
;
927 static int fuse_readpages_fill(void *_data
, struct page
*page
)
929 struct fuse_fill_data
*data
= _data
;
930 struct fuse_io_args
*ia
= data
->ia
;
931 struct fuse_args_pages
*ap
= &ia
->ap
;
932 struct inode
*inode
= data
->inode
;
933 struct fuse_conn
*fc
= get_fuse_conn(inode
);
935 fuse_wait_on_page_writeback(inode
, page
->index
);
938 (ap
->num_pages
== fc
->max_pages
||
939 (ap
->num_pages
+ 1) * PAGE_SIZE
> fc
->max_read
||
940 ap
->pages
[ap
->num_pages
- 1]->index
+ 1 != page
->index
)) {
941 data
->max_pages
= min_t(unsigned int, data
->nr_pages
,
943 fuse_send_readpages(ia
, data
->file
);
944 data
->ia
= ia
= fuse_io_alloc(NULL
, data
->max_pages
);
952 if (WARN_ON(ap
->num_pages
>= data
->max_pages
)) {
959 ap
->pages
[ap
->num_pages
] = page
;
960 ap
->descs
[ap
->num_pages
].length
= PAGE_SIZE
;
966 static int fuse_readpages(struct file
*file
, struct address_space
*mapping
,
967 struct list_head
*pages
, unsigned nr_pages
)
969 struct inode
*inode
= mapping
->host
;
970 struct fuse_conn
*fc
= get_fuse_conn(inode
);
971 struct fuse_fill_data data
;
975 if (is_bad_inode(inode
))
980 data
.nr_pages
= nr_pages
;
981 data
.max_pages
= min_t(unsigned int, nr_pages
, fc
->max_pages
);
983 data
.ia
= fuse_io_alloc(NULL
, data
.max_pages
);
988 err
= read_cache_pages(mapping
, pages
, fuse_readpages_fill
, &data
);
990 if (data
.ia
->ap
.num_pages
)
991 fuse_send_readpages(data
.ia
, file
);
993 fuse_io_free(data
.ia
);
999 static ssize_t
fuse_cache_read_iter(struct kiocb
*iocb
, struct iov_iter
*to
)
1001 struct inode
*inode
= iocb
->ki_filp
->f_mapping
->host
;
1002 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1005 * In auto invalidate mode, always update attributes on read.
1006 * Otherwise, only update if we attempt to read past EOF (to ensure
1007 * i_size is up to date).
1009 if (fc
->auto_inval_data
||
1010 (iocb
->ki_pos
+ iov_iter_count(to
) > i_size_read(inode
))) {
1012 err
= fuse_update_attributes(inode
, iocb
->ki_filp
);
1017 return generic_file_read_iter(iocb
, to
);
1020 static void fuse_write_args_fill(struct fuse_io_args
*ia
, struct fuse_file
*ff
,
1021 loff_t pos
, size_t count
)
1023 struct fuse_args
*args
= &ia
->ap
.args
;
1025 ia
->write
.in
.fh
= ff
->fh
;
1026 ia
->write
.in
.offset
= pos
;
1027 ia
->write
.in
.size
= count
;
1028 args
->opcode
= FUSE_WRITE
;
1029 args
->nodeid
= ff
->nodeid
;
1030 args
->in_numargs
= 2;
1031 if (ff
->fc
->minor
< 9)
1032 args
->in_args
[0].size
= FUSE_COMPAT_WRITE_IN_SIZE
;
1034 args
->in_args
[0].size
= sizeof(ia
->write
.in
);
1035 args
->in_args
[0].value
= &ia
->write
.in
;
1036 args
->in_args
[1].size
= count
;
1037 args
->out_numargs
= 1;
1038 args
->out_args
[0].size
= sizeof(ia
->write
.out
);
1039 args
->out_args
[0].value
= &ia
->write
.out
;
1042 static unsigned int fuse_write_flags(struct kiocb
*iocb
)
1044 unsigned int flags
= iocb
->ki_filp
->f_flags
;
1046 if (iocb
->ki_flags
& IOCB_DSYNC
)
1048 if (iocb
->ki_flags
& IOCB_SYNC
)
1054 static ssize_t
fuse_send_write(struct fuse_io_args
*ia
, loff_t pos
,
1055 size_t count
, fl_owner_t owner
)
1057 struct kiocb
*iocb
= ia
->io
->iocb
;
1058 struct file
*file
= iocb
->ki_filp
;
1059 struct fuse_file
*ff
= file
->private_data
;
1060 struct fuse_conn
*fc
= ff
->fc
;
1061 struct fuse_write_in
*inarg
= &ia
->write
.in
;
1064 fuse_write_args_fill(ia
, ff
, pos
, count
);
1065 inarg
->flags
= fuse_write_flags(iocb
);
1066 if (owner
!= NULL
) {
1067 inarg
->write_flags
|= FUSE_WRITE_LOCKOWNER
;
1068 inarg
->lock_owner
= fuse_lock_owner_id(fc
, owner
);
1072 return fuse_async_req_send(fc
, ia
, count
);
1074 err
= fuse_simple_request(fc
, &ia
->ap
.args
);
1075 if (!err
&& ia
->write
.out
.size
> count
)
1078 return err
?: ia
->write
.out
.size
;
1081 bool fuse_write_update_size(struct inode
*inode
, loff_t pos
)
1083 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1084 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1087 spin_lock(&fi
->lock
);
1088 fi
->attr_version
= atomic64_inc_return(&fc
->attr_version
);
1089 if (pos
> inode
->i_size
) {
1090 i_size_write(inode
, pos
);
1093 spin_unlock(&fi
->lock
);
1098 static ssize_t
fuse_send_write_pages(struct fuse_io_args
*ia
,
1099 struct kiocb
*iocb
, struct inode
*inode
,
1100 loff_t pos
, size_t count
)
1102 struct fuse_args_pages
*ap
= &ia
->ap
;
1103 struct file
*file
= iocb
->ki_filp
;
1104 struct fuse_file
*ff
= file
->private_data
;
1105 struct fuse_conn
*fc
= ff
->fc
;
1106 unsigned int offset
, i
;
1109 for (i
= 0; i
< ap
->num_pages
; i
++)
1110 fuse_wait_on_page_writeback(inode
, ap
->pages
[i
]->index
);
1112 fuse_write_args_fill(ia
, ff
, pos
, count
);
1113 ia
->write
.in
.flags
= fuse_write_flags(iocb
);
1115 err
= fuse_simple_request(fc
, &ap
->args
);
1116 if (!err
&& ia
->write
.out
.size
> count
)
1119 offset
= ap
->descs
[0].offset
;
1120 count
= ia
->write
.out
.size
;
1121 for (i
= 0; i
< ap
->num_pages
; i
++) {
1122 struct page
*page
= ap
->pages
[i
];
1124 if (!err
&& !offset
&& count
>= PAGE_SIZE
)
1125 SetPageUptodate(page
);
1127 if (count
> PAGE_SIZE
- offset
)
1128 count
-= PAGE_SIZE
- offset
;
1140 static ssize_t
fuse_fill_write_pages(struct fuse_args_pages
*ap
,
1141 struct address_space
*mapping
,
1142 struct iov_iter
*ii
, loff_t pos
,
1143 unsigned int max_pages
)
1145 struct fuse_conn
*fc
= get_fuse_conn(mapping
->host
);
1146 unsigned offset
= pos
& (PAGE_SIZE
- 1);
1150 ap
->args
.in_pages
= true;
1151 ap
->descs
[0].offset
= offset
;
1156 pgoff_t index
= pos
>> PAGE_SHIFT
;
1157 size_t bytes
= min_t(size_t, PAGE_SIZE
- offset
,
1158 iov_iter_count(ii
));
1160 bytes
= min_t(size_t, bytes
, fc
->max_write
- count
);
1164 if (iov_iter_fault_in_readable(ii
, bytes
))
1168 page
= grab_cache_page_write_begin(mapping
, index
, 0);
1172 if (mapping_writably_mapped(mapping
))
1173 flush_dcache_page(page
);
1175 tmp
= iov_iter_copy_from_user_atomic(page
, ii
, offset
, bytes
);
1176 flush_dcache_page(page
);
1178 iov_iter_advance(ii
, tmp
);
1182 bytes
= min(bytes
, iov_iter_single_seg_count(ii
));
1187 ap
->pages
[ap
->num_pages
] = page
;
1188 ap
->descs
[ap
->num_pages
].length
= tmp
;
1194 if (offset
== PAGE_SIZE
)
1197 if (!fc
->big_writes
)
1199 } while (iov_iter_count(ii
) && count
< fc
->max_write
&&
1200 ap
->num_pages
< max_pages
&& offset
== 0);
1202 return count
> 0 ? count
: err
;
1205 static inline unsigned int fuse_wr_pages(loff_t pos
, size_t len
,
1206 unsigned int max_pages
)
1208 return min_t(unsigned int,
1209 ((pos
+ len
- 1) >> PAGE_SHIFT
) -
1210 (pos
>> PAGE_SHIFT
) + 1,
1214 static ssize_t
fuse_perform_write(struct kiocb
*iocb
,
1215 struct address_space
*mapping
,
1216 struct iov_iter
*ii
, loff_t pos
)
1218 struct inode
*inode
= mapping
->host
;
1219 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1220 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1224 if (inode
->i_size
< pos
+ iov_iter_count(ii
))
1225 set_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
1229 struct fuse_io_args ia
= {};
1230 struct fuse_args_pages
*ap
= &ia
.ap
;
1231 unsigned int nr_pages
= fuse_wr_pages(pos
, iov_iter_count(ii
),
1234 ap
->pages
= fuse_pages_alloc(nr_pages
, GFP_KERNEL
, &ap
->descs
);
1240 count
= fuse_fill_write_pages(ap
, mapping
, ii
, pos
, nr_pages
);
1244 err
= fuse_send_write_pages(&ia
, iocb
, inode
,
1247 size_t num_written
= ia
.write
.out
.size
;
1252 /* break out of the loop on short write */
1253 if (num_written
!= count
)
1258 } while (!err
&& iov_iter_count(ii
));
1261 fuse_write_update_size(inode
, pos
);
1263 clear_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
1264 fuse_invalidate_attr(inode
);
1266 return res
> 0 ? res
: err
;
1269 static ssize_t
fuse_cache_write_iter(struct kiocb
*iocb
, struct iov_iter
*from
)
1271 struct file
*file
= iocb
->ki_filp
;
1272 struct address_space
*mapping
= file
->f_mapping
;
1273 ssize_t written
= 0;
1274 ssize_t written_buffered
= 0;
1275 struct inode
*inode
= mapping
->host
;
1279 if (get_fuse_conn(inode
)->writeback_cache
) {
1280 /* Update size (EOF optimization) and mode (SUID clearing) */
1281 err
= fuse_update_attributes(mapping
->host
, file
);
1285 return generic_file_write_iter(iocb
, from
);
1290 /* We can write back this queue in page reclaim */
1291 current
->backing_dev_info
= inode_to_bdi(inode
);
1293 err
= generic_write_checks(iocb
, from
);
1297 err
= file_remove_privs(file
);
1301 err
= file_update_time(file
);
1305 if (iocb
->ki_flags
& IOCB_DIRECT
) {
1306 loff_t pos
= iocb
->ki_pos
;
1307 written
= generic_file_direct_write(iocb
, from
);
1308 if (written
< 0 || !iov_iter_count(from
))
1313 written_buffered
= fuse_perform_write(iocb
, mapping
, from
, pos
);
1314 if (written_buffered
< 0) {
1315 err
= written_buffered
;
1318 endbyte
= pos
+ written_buffered
- 1;
1320 err
= filemap_write_and_wait_range(file
->f_mapping
, pos
,
1325 invalidate_mapping_pages(file
->f_mapping
,
1327 endbyte
>> PAGE_SHIFT
);
1329 written
+= written_buffered
;
1330 iocb
->ki_pos
= pos
+ written_buffered
;
1332 written
= fuse_perform_write(iocb
, mapping
, from
, iocb
->ki_pos
);
1334 iocb
->ki_pos
+= written
;
1337 current
->backing_dev_info
= NULL
;
1338 inode_unlock(inode
);
1340 written
= generic_write_sync(iocb
, written
);
1342 return written
? written
: err
;
1345 static inline void fuse_page_descs_length_init(struct fuse_page_desc
*descs
,
1347 unsigned int nr_pages
)
1351 for (i
= index
; i
< index
+ nr_pages
; i
++)
1352 descs
[i
].length
= PAGE_SIZE
- descs
[i
].offset
;
1355 static inline unsigned long fuse_get_user_addr(const struct iov_iter
*ii
)
1357 return (unsigned long)ii
->iov
->iov_base
+ ii
->iov_offset
;
1360 static inline size_t fuse_get_frag_size(const struct iov_iter
*ii
,
1363 return min(iov_iter_single_seg_count(ii
), max_size
);
1366 static int fuse_get_user_pages(struct fuse_args_pages
*ap
, struct iov_iter
*ii
,
1367 size_t *nbytesp
, int write
,
1368 unsigned int max_pages
)
1370 size_t nbytes
= 0; /* # bytes already packed in req */
1373 /* Special case for kernel I/O: can copy directly into the buffer */
1374 if (iov_iter_is_kvec(ii
)) {
1375 unsigned long user_addr
= fuse_get_user_addr(ii
);
1376 size_t frag_size
= fuse_get_frag_size(ii
, *nbytesp
);
1379 ap
->args
.in_args
[1].value
= (void *) user_addr
;
1381 ap
->args
.out_args
[0].value
= (void *) user_addr
;
1383 iov_iter_advance(ii
, frag_size
);
1384 *nbytesp
= frag_size
;
1388 while (nbytes
< *nbytesp
&& ap
->num_pages
< max_pages
) {
1391 ret
= iov_iter_get_pages(ii
, &ap
->pages
[ap
->num_pages
],
1393 max_pages
- ap
->num_pages
,
1398 iov_iter_advance(ii
, ret
);
1402 npages
= (ret
+ PAGE_SIZE
- 1) / PAGE_SIZE
;
1404 ap
->descs
[ap
->num_pages
].offset
= start
;
1405 fuse_page_descs_length_init(ap
->descs
, ap
->num_pages
, npages
);
1407 ap
->num_pages
+= npages
;
1408 ap
->descs
[ap
->num_pages
- 1].length
-=
1409 (PAGE_SIZE
- ret
) & (PAGE_SIZE
- 1);
1413 ap
->args
.in_pages
= true;
1415 ap
->args
.out_pages
= true;
1419 return ret
< 0 ? ret
: 0;
1422 ssize_t
fuse_direct_io(struct fuse_io_priv
*io
, struct iov_iter
*iter
,
1423 loff_t
*ppos
, int flags
)
1425 int write
= flags
& FUSE_DIO_WRITE
;
1426 int cuse
= flags
& FUSE_DIO_CUSE
;
1427 struct file
*file
= io
->iocb
->ki_filp
;
1428 struct inode
*inode
= file
->f_mapping
->host
;
1429 struct fuse_file
*ff
= file
->private_data
;
1430 struct fuse_conn
*fc
= ff
->fc
;
1431 size_t nmax
= write
? fc
->max_write
: fc
->max_read
;
1433 size_t count
= iov_iter_count(iter
);
1434 pgoff_t idx_from
= pos
>> PAGE_SHIFT
;
1435 pgoff_t idx_to
= (pos
+ count
- 1) >> PAGE_SHIFT
;
1438 struct fuse_io_args
*ia
;
1439 unsigned int max_pages
;
1441 max_pages
= iov_iter_npages(iter
, fc
->max_pages
);
1442 ia
= fuse_io_alloc(io
, max_pages
);
1447 if (!cuse
&& fuse_range_is_writeback(inode
, idx_from
, idx_to
)) {
1450 fuse_sync_writes(inode
);
1452 inode_unlock(inode
);
1455 io
->should_dirty
= !write
&& iter_is_iovec(iter
);
1458 fl_owner_t owner
= current
->files
;
1459 size_t nbytes
= min(count
, nmax
);
1461 err
= fuse_get_user_pages(&ia
->ap
, iter
, &nbytes
, write
,
1467 if (!capable(CAP_FSETID
))
1468 ia
->write
.in
.write_flags
|= FUSE_WRITE_KILL_PRIV
;
1470 nres
= fuse_send_write(ia
, pos
, nbytes
, owner
);
1472 nres
= fuse_send_read(ia
, pos
, nbytes
, owner
);
1475 if (!io
->async
|| nres
< 0) {
1476 fuse_release_user_pages(&ia
->ap
, io
->should_dirty
);
1481 iov_iter_revert(iter
, nbytes
);
1485 WARN_ON(nres
> nbytes
);
1490 if (nres
!= nbytes
) {
1491 iov_iter_revert(iter
, nbytes
- nres
);
1495 max_pages
= iov_iter_npages(iter
, fc
->max_pages
);
1496 ia
= fuse_io_alloc(io
, max_pages
);
1506 return res
> 0 ? res
: err
;
1508 EXPORT_SYMBOL_GPL(fuse_direct_io
);
1510 static ssize_t
__fuse_direct_read(struct fuse_io_priv
*io
,
1511 struct iov_iter
*iter
,
1515 struct inode
*inode
= file_inode(io
->iocb
->ki_filp
);
1517 res
= fuse_direct_io(io
, iter
, ppos
, 0);
1519 fuse_invalidate_atime(inode
);
1524 static ssize_t
fuse_direct_IO(struct kiocb
*iocb
, struct iov_iter
*iter
);
1526 static ssize_t
fuse_direct_read_iter(struct kiocb
*iocb
, struct iov_iter
*to
)
1530 if (!is_sync_kiocb(iocb
) && iocb
->ki_flags
& IOCB_DIRECT
) {
1531 res
= fuse_direct_IO(iocb
, to
);
1533 struct fuse_io_priv io
= FUSE_IO_PRIV_SYNC(iocb
);
1535 res
= __fuse_direct_read(&io
, to
, &iocb
->ki_pos
);
1541 static ssize_t
fuse_direct_write_iter(struct kiocb
*iocb
, struct iov_iter
*from
)
1543 struct inode
*inode
= file_inode(iocb
->ki_filp
);
1544 struct fuse_io_priv io
= FUSE_IO_PRIV_SYNC(iocb
);
1547 /* Don't allow parallel writes to the same file */
1549 res
= generic_write_checks(iocb
, from
);
1551 if (!is_sync_kiocb(iocb
) && iocb
->ki_flags
& IOCB_DIRECT
) {
1552 res
= fuse_direct_IO(iocb
, from
);
1554 res
= fuse_direct_io(&io
, from
, &iocb
->ki_pos
,
1558 fuse_invalidate_attr(inode
);
1560 fuse_write_update_size(inode
, iocb
->ki_pos
);
1561 inode_unlock(inode
);
1566 static ssize_t
fuse_file_read_iter(struct kiocb
*iocb
, struct iov_iter
*to
)
1568 struct file
*file
= iocb
->ki_filp
;
1569 struct fuse_file
*ff
= file
->private_data
;
1571 if (is_bad_inode(file_inode(file
)))
1574 if (!(ff
->open_flags
& FOPEN_DIRECT_IO
))
1575 return fuse_cache_read_iter(iocb
, to
);
1577 return fuse_direct_read_iter(iocb
, to
);
1580 static ssize_t
fuse_file_write_iter(struct kiocb
*iocb
, struct iov_iter
*from
)
1582 struct file
*file
= iocb
->ki_filp
;
1583 struct fuse_file
*ff
= file
->private_data
;
1585 if (is_bad_inode(file_inode(file
)))
1588 if (!(ff
->open_flags
& FOPEN_DIRECT_IO
))
1589 return fuse_cache_write_iter(iocb
, from
);
1591 return fuse_direct_write_iter(iocb
, from
);
1594 static void fuse_writepage_free(struct fuse_writepage_args
*wpa
)
1596 struct fuse_args_pages
*ap
= &wpa
->ia
.ap
;
1599 for (i
= 0; i
< ap
->num_pages
; i
++)
1600 __free_page(ap
->pages
[i
]);
1603 fuse_file_put(wpa
->ia
.ff
, false, false);
1609 static void fuse_writepage_finish(struct fuse_conn
*fc
,
1610 struct fuse_writepage_args
*wpa
)
1612 struct fuse_args_pages
*ap
= &wpa
->ia
.ap
;
1613 struct inode
*inode
= wpa
->inode
;
1614 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1615 struct backing_dev_info
*bdi
= inode_to_bdi(inode
);
1618 list_del(&wpa
->writepages_entry
);
1619 for (i
= 0; i
< ap
->num_pages
; i
++) {
1620 dec_wb_stat(&bdi
->wb
, WB_WRITEBACK
);
1621 dec_node_page_state(ap
->pages
[i
], NR_WRITEBACK_TEMP
);
1622 wb_writeout_inc(&bdi
->wb
);
1624 wake_up(&fi
->page_waitq
);
1627 /* Called under fi->lock, may release and reacquire it */
1628 static void fuse_send_writepage(struct fuse_conn
*fc
,
1629 struct fuse_writepage_args
*wpa
, loff_t size
)
1630 __releases(fi
->lock
)
1631 __acquires(fi
->lock
)
1633 struct fuse_writepage_args
*aux
, *next
;
1634 struct fuse_inode
*fi
= get_fuse_inode(wpa
->inode
);
1635 struct fuse_write_in
*inarg
= &wpa
->ia
.write
.in
;
1636 struct fuse_args
*args
= &wpa
->ia
.ap
.args
;
1637 __u64 data_size
= wpa
->ia
.ap
.num_pages
* PAGE_SIZE
;
1641 if (inarg
->offset
+ data_size
<= size
) {
1642 inarg
->size
= data_size
;
1643 } else if (inarg
->offset
< size
) {
1644 inarg
->size
= size
- inarg
->offset
;
1646 /* Got truncated off completely */
1650 args
->in_args
[1].size
= inarg
->size
;
1652 args
->nocreds
= true;
1654 err
= fuse_simple_background(fc
, args
, GFP_ATOMIC
);
1655 if (err
== -ENOMEM
) {
1656 spin_unlock(&fi
->lock
);
1657 err
= fuse_simple_background(fc
, args
, GFP_NOFS
| __GFP_NOFAIL
);
1658 spin_lock(&fi
->lock
);
1661 /* Fails on broken connection only */
1669 fuse_writepage_finish(fc
, wpa
);
1670 spin_unlock(&fi
->lock
);
1672 /* After fuse_writepage_finish() aux request list is private */
1673 for (aux
= wpa
->next
; aux
; aux
= next
) {
1676 fuse_writepage_free(aux
);
1679 fuse_writepage_free(wpa
);
1680 spin_lock(&fi
->lock
);
1684 * If fi->writectr is positive (no truncate or fsync going on) send
1685 * all queued writepage requests.
1687 * Called with fi->lock
1689 void fuse_flush_writepages(struct inode
*inode
)
1690 __releases(fi
->lock
)
1691 __acquires(fi
->lock
)
1693 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1694 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1695 loff_t crop
= i_size_read(inode
);
1696 struct fuse_writepage_args
*wpa
;
1698 while (fi
->writectr
>= 0 && !list_empty(&fi
->queued_writes
)) {
1699 wpa
= list_entry(fi
->queued_writes
.next
,
1700 struct fuse_writepage_args
, queue_entry
);
1701 list_del_init(&wpa
->queue_entry
);
1702 fuse_send_writepage(fc
, wpa
, crop
);
1706 static void fuse_writepage_end(struct fuse_conn
*fc
, struct fuse_args
*args
,
1709 struct fuse_writepage_args
*wpa
=
1710 container_of(args
, typeof(*wpa
), ia
.ap
.args
);
1711 struct inode
*inode
= wpa
->inode
;
1712 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1714 mapping_set_error(inode
->i_mapping
, error
);
1715 spin_lock(&fi
->lock
);
1717 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1718 struct fuse_write_in
*inarg
= &wpa
->ia
.write
.in
;
1719 struct fuse_writepage_args
*next
= wpa
->next
;
1721 wpa
->next
= next
->next
;
1723 next
->ia
.ff
= fuse_file_get(wpa
->ia
.ff
);
1724 list_add(&next
->writepages_entry
, &fi
->writepages
);
1727 * Skip fuse_flush_writepages() to make it easy to crop requests
1728 * based on primary request size.
1730 * 1st case (trivial): there are no concurrent activities using
1731 * fuse_set/release_nowrite. Then we're on safe side because
1732 * fuse_flush_writepages() would call fuse_send_writepage()
1735 * 2nd case: someone called fuse_set_nowrite and it is waiting
1736 * now for completion of all in-flight requests. This happens
1737 * rarely and no more than once per page, so this should be
1740 * 3rd case: someone (e.g. fuse_do_setattr()) is in the middle
1741 * of fuse_set_nowrite..fuse_release_nowrite section. The fact
1742 * that fuse_set_nowrite returned implies that all in-flight
1743 * requests were completed along with all of their secondary
1744 * requests. Further primary requests are blocked by negative
1745 * writectr. Hence there cannot be any in-flight requests and
1746 * no invocations of fuse_writepage_end() while we're in
1747 * fuse_set_nowrite..fuse_release_nowrite section.
1749 fuse_send_writepage(fc
, next
, inarg
->offset
+ inarg
->size
);
1752 fuse_writepage_finish(fc
, wpa
);
1753 spin_unlock(&fi
->lock
);
1754 fuse_writepage_free(wpa
);
1757 static struct fuse_file
*__fuse_write_file_get(struct fuse_conn
*fc
,
1758 struct fuse_inode
*fi
)
1760 struct fuse_file
*ff
= NULL
;
1762 spin_lock(&fi
->lock
);
1763 if (!list_empty(&fi
->write_files
)) {
1764 ff
= list_entry(fi
->write_files
.next
, struct fuse_file
,
1768 spin_unlock(&fi
->lock
);
1773 static struct fuse_file
*fuse_write_file_get(struct fuse_conn
*fc
,
1774 struct fuse_inode
*fi
)
1776 struct fuse_file
*ff
= __fuse_write_file_get(fc
, fi
);
1781 int fuse_write_inode(struct inode
*inode
, struct writeback_control
*wbc
)
1783 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1784 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1785 struct fuse_file
*ff
;
1788 ff
= __fuse_write_file_get(fc
, fi
);
1789 err
= fuse_flush_times(inode
, ff
);
1791 fuse_file_put(ff
, false, false);
1796 static struct fuse_writepage_args
*fuse_writepage_args_alloc(void)
1798 struct fuse_writepage_args
*wpa
;
1799 struct fuse_args_pages
*ap
;
1801 wpa
= kzalloc(sizeof(*wpa
), GFP_NOFS
);
1805 ap
->pages
= fuse_pages_alloc(1, GFP_NOFS
, &ap
->descs
);
1815 static int fuse_writepage_locked(struct page
*page
)
1817 struct address_space
*mapping
= page
->mapping
;
1818 struct inode
*inode
= mapping
->host
;
1819 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1820 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1821 struct fuse_writepage_args
*wpa
;
1822 struct fuse_args_pages
*ap
;
1823 struct page
*tmp_page
;
1824 int error
= -ENOMEM
;
1826 set_page_writeback(page
);
1828 wpa
= fuse_writepage_args_alloc();
1833 tmp_page
= alloc_page(GFP_NOFS
| __GFP_HIGHMEM
);
1838 wpa
->ia
.ff
= fuse_write_file_get(fc
, fi
);
1842 fuse_write_args_fill(&wpa
->ia
, wpa
->ia
.ff
, page_offset(page
), 0);
1844 copy_highpage(tmp_page
, page
);
1845 wpa
->ia
.write
.in
.write_flags
|= FUSE_WRITE_CACHE
;
1847 ap
->args
.in_pages
= true;
1849 ap
->pages
[0] = tmp_page
;
1850 ap
->descs
[0].offset
= 0;
1851 ap
->descs
[0].length
= PAGE_SIZE
;
1852 ap
->args
.end
= fuse_writepage_end
;
1855 inc_wb_stat(&inode_to_bdi(inode
)->wb
, WB_WRITEBACK
);
1856 inc_node_page_state(tmp_page
, NR_WRITEBACK_TEMP
);
1858 spin_lock(&fi
->lock
);
1859 list_add(&wpa
->writepages_entry
, &fi
->writepages
);
1860 list_add_tail(&wpa
->queue_entry
, &fi
->queued_writes
);
1861 fuse_flush_writepages(inode
);
1862 spin_unlock(&fi
->lock
);
1864 end_page_writeback(page
);
1869 __free_page(tmp_page
);
1873 mapping_set_error(page
->mapping
, error
);
1874 end_page_writeback(page
);
1878 static int fuse_writepage(struct page
*page
, struct writeback_control
*wbc
)
1882 if (fuse_page_is_writeback(page
->mapping
->host
, page
->index
)) {
1884 * ->writepages() should be called for sync() and friends. We
1885 * should only get here on direct reclaim and then we are
1886 * allowed to skip a page which is already in flight
1888 WARN_ON(wbc
->sync_mode
== WB_SYNC_ALL
);
1890 redirty_page_for_writepage(wbc
, page
);
1895 err
= fuse_writepage_locked(page
);
1901 struct fuse_fill_wb_data
{
1902 struct fuse_writepage_args
*wpa
;
1903 struct fuse_file
*ff
;
1904 struct inode
*inode
;
1905 struct page
**orig_pages
;
1906 unsigned int max_pages
;
1909 static bool fuse_pages_realloc(struct fuse_fill_wb_data
*data
)
1911 struct fuse_args_pages
*ap
= &data
->wpa
->ia
.ap
;
1912 struct fuse_conn
*fc
= get_fuse_conn(data
->inode
);
1913 struct page
**pages
;
1914 struct fuse_page_desc
*descs
;
1915 unsigned int npages
= min_t(unsigned int,
1916 max_t(unsigned int, data
->max_pages
* 2,
1917 FUSE_DEFAULT_MAX_PAGES_PER_REQ
),
1919 WARN_ON(npages
<= data
->max_pages
);
1921 pages
= fuse_pages_alloc(npages
, GFP_NOFS
, &descs
);
1925 memcpy(pages
, ap
->pages
, sizeof(struct page
*) * ap
->num_pages
);
1926 memcpy(descs
, ap
->descs
, sizeof(struct fuse_page_desc
) * ap
->num_pages
);
1930 data
->max_pages
= npages
;
1935 static void fuse_writepages_send(struct fuse_fill_wb_data
*data
)
1937 struct fuse_writepage_args
*wpa
= data
->wpa
;
1938 struct inode
*inode
= data
->inode
;
1939 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1940 int num_pages
= wpa
->ia
.ap
.num_pages
;
1943 wpa
->ia
.ff
= fuse_file_get(data
->ff
);
1944 spin_lock(&fi
->lock
);
1945 list_add_tail(&wpa
->queue_entry
, &fi
->queued_writes
);
1946 fuse_flush_writepages(inode
);
1947 spin_unlock(&fi
->lock
);
1949 for (i
= 0; i
< num_pages
; i
++)
1950 end_page_writeback(data
->orig_pages
[i
]);
1954 * First recheck under fi->lock if the offending offset is still under
1955 * writeback. If yes, then iterate auxiliary write requests, to see if there's
1956 * one already added for a page at this offset. If there's none, then insert
1957 * this new request onto the auxiliary list, otherwise reuse the existing one by
1958 * copying the new page contents over to the old temporary page.
1960 static bool fuse_writepage_in_flight(struct fuse_writepage_args
*new_wpa
,
1963 struct fuse_inode
*fi
= get_fuse_inode(new_wpa
->inode
);
1964 struct fuse_writepage_args
*tmp
;
1965 struct fuse_writepage_args
*old_wpa
;
1966 struct fuse_args_pages
*new_ap
= &new_wpa
->ia
.ap
;
1968 WARN_ON(new_ap
->num_pages
!= 0);
1970 spin_lock(&fi
->lock
);
1971 list_del(&new_wpa
->writepages_entry
);
1972 old_wpa
= fuse_find_writeback(fi
, page
->index
, page
->index
);
1974 list_add(&new_wpa
->writepages_entry
, &fi
->writepages
);
1975 spin_unlock(&fi
->lock
);
1979 new_ap
->num_pages
= 1;
1980 for (tmp
= old_wpa
->next
; tmp
; tmp
= tmp
->next
) {
1983 WARN_ON(tmp
->inode
!= new_wpa
->inode
);
1984 curr_index
= tmp
->ia
.write
.in
.offset
>> PAGE_SHIFT
;
1985 if (curr_index
== page
->index
) {
1986 WARN_ON(tmp
->ia
.ap
.num_pages
!= 1);
1987 swap(tmp
->ia
.ap
.pages
[0], new_ap
->pages
[0]);
1993 new_wpa
->next
= old_wpa
->next
;
1994 old_wpa
->next
= new_wpa
;
1997 spin_unlock(&fi
->lock
);
2000 struct backing_dev_info
*bdi
= inode_to_bdi(new_wpa
->inode
);
2002 dec_wb_stat(&bdi
->wb
, WB_WRITEBACK
);
2003 dec_node_page_state(new_ap
->pages
[0], NR_WRITEBACK_TEMP
);
2004 wb_writeout_inc(&bdi
->wb
);
2005 fuse_writepage_free(new_wpa
);
2011 static int fuse_writepages_fill(struct page
*page
,
2012 struct writeback_control
*wbc
, void *_data
)
2014 struct fuse_fill_wb_data
*data
= _data
;
2015 struct fuse_writepage_args
*wpa
= data
->wpa
;
2016 struct fuse_args_pages
*ap
= &wpa
->ia
.ap
;
2017 struct inode
*inode
= data
->inode
;
2018 struct fuse_inode
*fi
= get_fuse_inode(inode
);
2019 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2020 struct page
*tmp_page
;
2026 data
->ff
= fuse_write_file_get(fc
, fi
);
2032 * Being under writeback is unlikely but possible. For example direct
2033 * read to an mmaped fuse file will set the page dirty twice; once when
2034 * the pages are faulted with get_user_pages(), and then after the read
2037 is_writeback
= fuse_page_is_writeback(inode
, page
->index
);
2039 if (wpa
&& ap
->num_pages
&&
2040 (is_writeback
|| ap
->num_pages
== fc
->max_pages
||
2041 (ap
->num_pages
+ 1) * PAGE_SIZE
> fc
->max_write
||
2042 data
->orig_pages
[ap
->num_pages
- 1]->index
+ 1 != page
->index
)) {
2043 fuse_writepages_send(data
);
2045 } else if (wpa
&& ap
->num_pages
== data
->max_pages
) {
2046 if (!fuse_pages_realloc(data
)) {
2047 fuse_writepages_send(data
);
2053 tmp_page
= alloc_page(GFP_NOFS
| __GFP_HIGHMEM
);
2058 * The page must not be redirtied until the writeout is completed
2059 * (i.e. userspace has sent a reply to the write request). Otherwise
2060 * there could be more than one temporary page instance for each real
2063 * This is ensured by holding the page lock in page_mkwrite() while
2064 * checking fuse_page_is_writeback(). We already hold the page lock
2065 * since clear_page_dirty_for_io() and keep it held until we add the
2066 * request to the fi->writepages list and increment ap->num_pages.
2067 * After this fuse_page_is_writeback() will indicate that the page is
2068 * under writeback, so we can release the page lock.
2070 if (data
->wpa
== NULL
) {
2072 wpa
= fuse_writepage_args_alloc();
2074 __free_page(tmp_page
);
2077 data
->max_pages
= 1;
2080 fuse_write_args_fill(&wpa
->ia
, data
->ff
, page_offset(page
), 0);
2081 wpa
->ia
.write
.in
.write_flags
|= FUSE_WRITE_CACHE
;
2083 ap
->args
.in_pages
= true;
2084 ap
->args
.end
= fuse_writepage_end
;
2088 spin_lock(&fi
->lock
);
2089 list_add(&wpa
->writepages_entry
, &fi
->writepages
);
2090 spin_unlock(&fi
->lock
);
2094 set_page_writeback(page
);
2096 copy_highpage(tmp_page
, page
);
2097 ap
->pages
[ap
->num_pages
] = tmp_page
;
2098 ap
->descs
[ap
->num_pages
].offset
= 0;
2099 ap
->descs
[ap
->num_pages
].length
= PAGE_SIZE
;
2101 inc_wb_stat(&inode_to_bdi(inode
)->wb
, WB_WRITEBACK
);
2102 inc_node_page_state(tmp_page
, NR_WRITEBACK_TEMP
);
2105 if (is_writeback
&& fuse_writepage_in_flight(wpa
, page
)) {
2106 end_page_writeback(page
);
2110 data
->orig_pages
[ap
->num_pages
] = page
;
2113 * Protected by fi->lock against concurrent access by
2114 * fuse_page_is_writeback().
2116 spin_lock(&fi
->lock
);
2118 spin_unlock(&fi
->lock
);
2126 static int fuse_writepages(struct address_space
*mapping
,
2127 struct writeback_control
*wbc
)
2129 struct inode
*inode
= mapping
->host
;
2130 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2131 struct fuse_fill_wb_data data
;
2135 if (is_bad_inode(inode
))
2143 data
.orig_pages
= kcalloc(fc
->max_pages
,
2144 sizeof(struct page
*),
2146 if (!data
.orig_pages
)
2149 err
= write_cache_pages(mapping
, wbc
, fuse_writepages_fill
, &data
);
2151 /* Ignore errors if we can write at least one page */
2152 WARN_ON(!data
.wpa
->ia
.ap
.num_pages
);
2153 fuse_writepages_send(&data
);
2157 fuse_file_put(data
.ff
, false, false);
2159 kfree(data
.orig_pages
);
2165 * It's worthy to make sure that space is reserved on disk for the write,
2166 * but how to implement it without killing performance need more thinking.
2168 static int fuse_write_begin(struct file
*file
, struct address_space
*mapping
,
2169 loff_t pos
, unsigned len
, unsigned flags
,
2170 struct page
**pagep
, void **fsdata
)
2172 pgoff_t index
= pos
>> PAGE_SHIFT
;
2173 struct fuse_conn
*fc
= get_fuse_conn(file_inode(file
));
2178 WARN_ON(!fc
->writeback_cache
);
2180 page
= grab_cache_page_write_begin(mapping
, index
, flags
);
2184 fuse_wait_on_page_writeback(mapping
->host
, page
->index
);
2186 if (PageUptodate(page
) || len
== PAGE_SIZE
)
2189 * Check if the start this page comes after the end of file, in which
2190 * case the readpage can be optimized away.
2192 fsize
= i_size_read(mapping
->host
);
2193 if (fsize
<= (pos
& PAGE_MASK
)) {
2194 size_t off
= pos
& ~PAGE_MASK
;
2196 zero_user_segment(page
, 0, off
);
2199 err
= fuse_do_readpage(file
, page
);
2213 static int fuse_write_end(struct file
*file
, struct address_space
*mapping
,
2214 loff_t pos
, unsigned len
, unsigned copied
,
2215 struct page
*page
, void *fsdata
)
2217 struct inode
*inode
= page
->mapping
->host
;
2219 /* Haven't copied anything? Skip zeroing, size extending, dirtying. */
2223 if (!PageUptodate(page
)) {
2224 /* Zero any unwritten bytes at the end of the page */
2225 size_t endoff
= (pos
+ copied
) & ~PAGE_MASK
;
2227 zero_user_segment(page
, endoff
, PAGE_SIZE
);
2228 SetPageUptodate(page
);
2231 fuse_write_update_size(inode
, pos
+ copied
);
2232 set_page_dirty(page
);
2241 static int fuse_launder_page(struct page
*page
)
2244 if (clear_page_dirty_for_io(page
)) {
2245 struct inode
*inode
= page
->mapping
->host
;
2246 err
= fuse_writepage_locked(page
);
2248 fuse_wait_on_page_writeback(inode
, page
->index
);
2254 * Write back dirty pages now, because there may not be any suitable
2257 static void fuse_vma_close(struct vm_area_struct
*vma
)
2259 filemap_write_and_wait(vma
->vm_file
->f_mapping
);
2263 * Wait for writeback against this page to complete before allowing it
2264 * to be marked dirty again, and hence written back again, possibly
2265 * before the previous writepage completed.
2267 * Block here, instead of in ->writepage(), so that the userspace fs
2268 * can only block processes actually operating on the filesystem.
2270 * Otherwise unprivileged userspace fs would be able to block
2275 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
2277 static vm_fault_t
fuse_page_mkwrite(struct vm_fault
*vmf
)
2279 struct page
*page
= vmf
->page
;
2280 struct inode
*inode
= file_inode(vmf
->vma
->vm_file
);
2282 file_update_time(vmf
->vma
->vm_file
);
2284 if (page
->mapping
!= inode
->i_mapping
) {
2286 return VM_FAULT_NOPAGE
;
2289 fuse_wait_on_page_writeback(inode
, page
->index
);
2290 return VM_FAULT_LOCKED
;
2293 static const struct vm_operations_struct fuse_file_vm_ops
= {
2294 .close
= fuse_vma_close
,
2295 .fault
= filemap_fault
,
2296 .map_pages
= filemap_map_pages
,
2297 .page_mkwrite
= fuse_page_mkwrite
,
2300 static int fuse_file_mmap(struct file
*file
, struct vm_area_struct
*vma
)
2302 struct fuse_file
*ff
= file
->private_data
;
2304 if (ff
->open_flags
& FOPEN_DIRECT_IO
) {
2305 /* Can't provide the coherency needed for MAP_SHARED */
2306 if (vma
->vm_flags
& VM_MAYSHARE
)
2309 invalidate_inode_pages2(file
->f_mapping
);
2311 return generic_file_mmap(file
, vma
);
2314 if ((vma
->vm_flags
& VM_SHARED
) && (vma
->vm_flags
& VM_MAYWRITE
))
2315 fuse_link_write_file(file
);
2317 file_accessed(file
);
2318 vma
->vm_ops
= &fuse_file_vm_ops
;
2322 static int convert_fuse_file_lock(struct fuse_conn
*fc
,
2323 const struct fuse_file_lock
*ffl
,
2324 struct file_lock
*fl
)
2326 switch (ffl
->type
) {
2332 if (ffl
->start
> OFFSET_MAX
|| ffl
->end
> OFFSET_MAX
||
2333 ffl
->end
< ffl
->start
)
2336 fl
->fl_start
= ffl
->start
;
2337 fl
->fl_end
= ffl
->end
;
2340 * Convert pid into init's pid namespace. The locks API will
2341 * translate it into the caller's pid namespace.
2344 fl
->fl_pid
= pid_nr_ns(find_pid_ns(ffl
->pid
, fc
->pid_ns
), &init_pid_ns
);
2351 fl
->fl_type
= ffl
->type
;
2355 static void fuse_lk_fill(struct fuse_args
*args
, struct file
*file
,
2356 const struct file_lock
*fl
, int opcode
, pid_t pid
,
2357 int flock
, struct fuse_lk_in
*inarg
)
2359 struct inode
*inode
= file_inode(file
);
2360 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2361 struct fuse_file
*ff
= file
->private_data
;
2363 memset(inarg
, 0, sizeof(*inarg
));
2365 inarg
->owner
= fuse_lock_owner_id(fc
, fl
->fl_owner
);
2366 inarg
->lk
.start
= fl
->fl_start
;
2367 inarg
->lk
.end
= fl
->fl_end
;
2368 inarg
->lk
.type
= fl
->fl_type
;
2369 inarg
->lk
.pid
= pid
;
2371 inarg
->lk_flags
|= FUSE_LK_FLOCK
;
2372 args
->opcode
= opcode
;
2373 args
->nodeid
= get_node_id(inode
);
2374 args
->in_numargs
= 1;
2375 args
->in_args
[0].size
= sizeof(*inarg
);
2376 args
->in_args
[0].value
= inarg
;
2379 static int fuse_getlk(struct file
*file
, struct file_lock
*fl
)
2381 struct inode
*inode
= file_inode(file
);
2382 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2384 struct fuse_lk_in inarg
;
2385 struct fuse_lk_out outarg
;
2388 fuse_lk_fill(&args
, file
, fl
, FUSE_GETLK
, 0, 0, &inarg
);
2389 args
.out_numargs
= 1;
2390 args
.out_args
[0].size
= sizeof(outarg
);
2391 args
.out_args
[0].value
= &outarg
;
2392 err
= fuse_simple_request(fc
, &args
);
2394 err
= convert_fuse_file_lock(fc
, &outarg
.lk
, fl
);
2399 static int fuse_setlk(struct file
*file
, struct file_lock
*fl
, int flock
)
2401 struct inode
*inode
= file_inode(file
);
2402 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2404 struct fuse_lk_in inarg
;
2405 int opcode
= (fl
->fl_flags
& FL_SLEEP
) ? FUSE_SETLKW
: FUSE_SETLK
;
2406 struct pid
*pid
= fl
->fl_type
!= F_UNLCK
? task_tgid(current
) : NULL
;
2407 pid_t pid_nr
= pid_nr_ns(pid
, fc
->pid_ns
);
2410 if (fl
->fl_lmops
&& fl
->fl_lmops
->lm_grant
) {
2411 /* NLM needs asynchronous locks, which we don't support yet */
2415 /* Unlock on close is handled by the flush method */
2416 if ((fl
->fl_flags
& FL_CLOSE_POSIX
) == FL_CLOSE_POSIX
)
2419 fuse_lk_fill(&args
, file
, fl
, opcode
, pid_nr
, flock
, &inarg
);
2420 err
= fuse_simple_request(fc
, &args
);
2422 /* locking is restartable */
2429 static int fuse_file_lock(struct file
*file
, int cmd
, struct file_lock
*fl
)
2431 struct inode
*inode
= file_inode(file
);
2432 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2435 if (cmd
== F_CANCELLK
) {
2437 } else if (cmd
== F_GETLK
) {
2439 posix_test_lock(file
, fl
);
2442 err
= fuse_getlk(file
, fl
);
2445 err
= posix_lock_file(file
, fl
, NULL
);
2447 err
= fuse_setlk(file
, fl
, 0);
2452 static int fuse_file_flock(struct file
*file
, int cmd
, struct file_lock
*fl
)
2454 struct inode
*inode
= file_inode(file
);
2455 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2459 err
= locks_lock_file_wait(file
, fl
);
2461 struct fuse_file
*ff
= file
->private_data
;
2463 /* emulate flock with POSIX locks */
2465 err
= fuse_setlk(file
, fl
, 1);
2471 static sector_t
fuse_bmap(struct address_space
*mapping
, sector_t block
)
2473 struct inode
*inode
= mapping
->host
;
2474 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2476 struct fuse_bmap_in inarg
;
2477 struct fuse_bmap_out outarg
;
2480 if (!inode
->i_sb
->s_bdev
|| fc
->no_bmap
)
2483 memset(&inarg
, 0, sizeof(inarg
));
2484 inarg
.block
= block
;
2485 inarg
.blocksize
= inode
->i_sb
->s_blocksize
;
2486 args
.opcode
= FUSE_BMAP
;
2487 args
.nodeid
= get_node_id(inode
);
2488 args
.in_numargs
= 1;
2489 args
.in_args
[0].size
= sizeof(inarg
);
2490 args
.in_args
[0].value
= &inarg
;
2491 args
.out_numargs
= 1;
2492 args
.out_args
[0].size
= sizeof(outarg
);
2493 args
.out_args
[0].value
= &outarg
;
2494 err
= fuse_simple_request(fc
, &args
);
2498 return err
? 0 : outarg
.block
;
2501 static loff_t
fuse_lseek(struct file
*file
, loff_t offset
, int whence
)
2503 struct inode
*inode
= file
->f_mapping
->host
;
2504 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2505 struct fuse_file
*ff
= file
->private_data
;
2507 struct fuse_lseek_in inarg
= {
2512 struct fuse_lseek_out outarg
;
2518 args
.opcode
= FUSE_LSEEK
;
2519 args
.nodeid
= ff
->nodeid
;
2520 args
.in_numargs
= 1;
2521 args
.in_args
[0].size
= sizeof(inarg
);
2522 args
.in_args
[0].value
= &inarg
;
2523 args
.out_numargs
= 1;
2524 args
.out_args
[0].size
= sizeof(outarg
);
2525 args
.out_args
[0].value
= &outarg
;
2526 err
= fuse_simple_request(fc
, &args
);
2528 if (err
== -ENOSYS
) {
2535 return vfs_setpos(file
, outarg
.offset
, inode
->i_sb
->s_maxbytes
);
2538 err
= fuse_update_attributes(inode
, file
);
2540 return generic_file_llseek(file
, offset
, whence
);
2545 static loff_t
fuse_file_llseek(struct file
*file
, loff_t offset
, int whence
)
2548 struct inode
*inode
= file_inode(file
);
2553 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
2554 retval
= generic_file_llseek(file
, offset
, whence
);
2558 retval
= fuse_update_attributes(inode
, file
);
2560 retval
= generic_file_llseek(file
, offset
, whence
);
2561 inode_unlock(inode
);
2566 retval
= fuse_lseek(file
, offset
, whence
);
2567 inode_unlock(inode
);
2577 * CUSE servers compiled on 32bit broke on 64bit kernels because the
2578 * ABI was defined to be 'struct iovec' which is different on 32bit
2579 * and 64bit. Fortunately we can determine which structure the server
2580 * used from the size of the reply.
2582 static int fuse_copy_ioctl_iovec_old(struct iovec
*dst
, void *src
,
2583 size_t transferred
, unsigned count
,
2586 #ifdef CONFIG_COMPAT
2587 if (count
* sizeof(struct compat_iovec
) == transferred
) {
2588 struct compat_iovec
*ciov
= src
;
2592 * With this interface a 32bit server cannot support
2593 * non-compat (i.e. ones coming from 64bit apps) ioctl
2599 for (i
= 0; i
< count
; i
++) {
2600 dst
[i
].iov_base
= compat_ptr(ciov
[i
].iov_base
);
2601 dst
[i
].iov_len
= ciov
[i
].iov_len
;
2607 if (count
* sizeof(struct iovec
) != transferred
)
2610 memcpy(dst
, src
, transferred
);
2614 /* Make sure iov_length() won't overflow */
2615 static int fuse_verify_ioctl_iov(struct fuse_conn
*fc
, struct iovec
*iov
,
2619 u32 max
= fc
->max_pages
<< PAGE_SHIFT
;
2621 for (n
= 0; n
< count
; n
++, iov
++) {
2622 if (iov
->iov_len
> (size_t) max
)
2624 max
-= iov
->iov_len
;
2629 static int fuse_copy_ioctl_iovec(struct fuse_conn
*fc
, struct iovec
*dst
,
2630 void *src
, size_t transferred
, unsigned count
,
2634 struct fuse_ioctl_iovec
*fiov
= src
;
2636 if (fc
->minor
< 16) {
2637 return fuse_copy_ioctl_iovec_old(dst
, src
, transferred
,
2641 if (count
* sizeof(struct fuse_ioctl_iovec
) != transferred
)
2644 for (i
= 0; i
< count
; i
++) {
2645 /* Did the server supply an inappropriate value? */
2646 if (fiov
[i
].base
!= (unsigned long) fiov
[i
].base
||
2647 fiov
[i
].len
!= (unsigned long) fiov
[i
].len
)
2650 dst
[i
].iov_base
= (void __user
*) (unsigned long) fiov
[i
].base
;
2651 dst
[i
].iov_len
= (size_t) fiov
[i
].len
;
2653 #ifdef CONFIG_COMPAT
2655 (ptr_to_compat(dst
[i
].iov_base
) != fiov
[i
].base
||
2656 (compat_size_t
) dst
[i
].iov_len
!= fiov
[i
].len
))
2666 * For ioctls, there is no generic way to determine how much memory
2667 * needs to be read and/or written. Furthermore, ioctls are allowed
2668 * to dereference the passed pointer, so the parameter requires deep
2669 * copying but FUSE has no idea whatsoever about what to copy in or
2672 * This is solved by allowing FUSE server to retry ioctl with
2673 * necessary in/out iovecs. Let's assume the ioctl implementation
2674 * needs to read in the following structure.
2681 * On the first callout to FUSE server, inarg->in_size and
2682 * inarg->out_size will be NULL; then, the server completes the ioctl
2683 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
2684 * the actual iov array to
2686 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
2688 * which tells FUSE to copy in the requested area and retry the ioctl.
2689 * On the second round, the server has access to the structure and
2690 * from that it can tell what to look for next, so on the invocation,
2691 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
2693 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
2694 * { .iov_base = a.buf, .iov_len = a.buflen } }
2696 * FUSE will copy both struct a and the pointed buffer from the
2697 * process doing the ioctl and retry ioctl with both struct a and the
2700 * This time, FUSE server has everything it needs and completes ioctl
2701 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
2703 * Copying data out works the same way.
2705 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
2706 * automatically initializes in and out iovs by decoding @cmd with
2707 * _IOC_* macros and the server is not allowed to request RETRY. This
2708 * limits ioctl data transfers to well-formed ioctls and is the forced
2709 * behavior for all FUSE servers.
2711 long fuse_do_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
,
2714 struct fuse_file
*ff
= file
->private_data
;
2715 struct fuse_conn
*fc
= ff
->fc
;
2716 struct fuse_ioctl_in inarg
= {
2722 struct fuse_ioctl_out outarg
;
2723 struct iovec
*iov_page
= NULL
;
2724 struct iovec
*in_iov
= NULL
, *out_iov
= NULL
;
2725 unsigned int in_iovs
= 0, out_iovs
= 0, max_pages
;
2726 size_t in_size
, out_size
, c
;
2727 ssize_t transferred
;
2730 struct fuse_args_pages ap
= {};
2732 #if BITS_PER_LONG == 32
2733 inarg
.flags
|= FUSE_IOCTL_32BIT
;
2735 if (flags
& FUSE_IOCTL_COMPAT
) {
2736 inarg
.flags
|= FUSE_IOCTL_32BIT
;
2737 #ifdef CONFIG_X86_X32
2738 if (in_x32_syscall())
2739 inarg
.flags
|= FUSE_IOCTL_COMPAT_X32
;
2744 /* assume all the iovs returned by client always fits in a page */
2745 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec
) * FUSE_IOCTL_MAX_IOV
> PAGE_SIZE
);
2748 ap
.pages
= fuse_pages_alloc(fc
->max_pages
, GFP_KERNEL
, &ap
.descs
);
2749 iov_page
= (struct iovec
*) __get_free_page(GFP_KERNEL
);
2750 if (!ap
.pages
|| !iov_page
)
2753 fuse_page_descs_length_init(ap
.descs
, 0, fc
->max_pages
);
2756 * If restricted, initialize IO parameters as encoded in @cmd.
2757 * RETRY from server is not allowed.
2759 if (!(flags
& FUSE_IOCTL_UNRESTRICTED
)) {
2760 struct iovec
*iov
= iov_page
;
2762 iov
->iov_base
= (void __user
*)arg
;
2763 iov
->iov_len
= _IOC_SIZE(cmd
);
2765 if (_IOC_DIR(cmd
) & _IOC_WRITE
) {
2770 if (_IOC_DIR(cmd
) & _IOC_READ
) {
2777 inarg
.in_size
= in_size
= iov_length(in_iov
, in_iovs
);
2778 inarg
.out_size
= out_size
= iov_length(out_iov
, out_iovs
);
2781 * Out data can be used either for actual out data or iovs,
2782 * make sure there always is at least one page.
2784 out_size
= max_t(size_t, out_size
, PAGE_SIZE
);
2785 max_pages
= DIV_ROUND_UP(max(in_size
, out_size
), PAGE_SIZE
);
2787 /* make sure there are enough buffer pages and init request with them */
2789 if (max_pages
> fc
->max_pages
)
2791 while (ap
.num_pages
< max_pages
) {
2792 ap
.pages
[ap
.num_pages
] = alloc_page(GFP_KERNEL
| __GFP_HIGHMEM
);
2793 if (!ap
.pages
[ap
.num_pages
])
2799 /* okay, let's send it to the client */
2800 ap
.args
.opcode
= FUSE_IOCTL
;
2801 ap
.args
.nodeid
= ff
->nodeid
;
2802 ap
.args
.in_numargs
= 1;
2803 ap
.args
.in_args
[0].size
= sizeof(inarg
);
2804 ap
.args
.in_args
[0].value
= &inarg
;
2806 ap
.args
.in_numargs
++;
2807 ap
.args
.in_args
[1].size
= in_size
;
2808 ap
.args
.in_pages
= true;
2811 iov_iter_init(&ii
, WRITE
, in_iov
, in_iovs
, in_size
);
2812 for (i
= 0; iov_iter_count(&ii
) && !WARN_ON(i
>= ap
.num_pages
); i
++) {
2813 c
= copy_page_from_iter(ap
.pages
[i
], 0, PAGE_SIZE
, &ii
);
2814 if (c
!= PAGE_SIZE
&& iov_iter_count(&ii
))
2819 ap
.args
.out_numargs
= 2;
2820 ap
.args
.out_args
[0].size
= sizeof(outarg
);
2821 ap
.args
.out_args
[0].value
= &outarg
;
2822 ap
.args
.out_args
[1].size
= out_size
;
2823 ap
.args
.out_pages
= true;
2824 ap
.args
.out_argvar
= true;
2826 transferred
= fuse_simple_request(fc
, &ap
.args
);
2828 if (transferred
< 0)
2831 /* did it ask for retry? */
2832 if (outarg
.flags
& FUSE_IOCTL_RETRY
) {
2835 /* no retry if in restricted mode */
2837 if (!(flags
& FUSE_IOCTL_UNRESTRICTED
))
2840 in_iovs
= outarg
.in_iovs
;
2841 out_iovs
= outarg
.out_iovs
;
2844 * Make sure things are in boundary, separate checks
2845 * are to protect against overflow.
2848 if (in_iovs
> FUSE_IOCTL_MAX_IOV
||
2849 out_iovs
> FUSE_IOCTL_MAX_IOV
||
2850 in_iovs
+ out_iovs
> FUSE_IOCTL_MAX_IOV
)
2853 vaddr
= kmap_atomic(ap
.pages
[0]);
2854 err
= fuse_copy_ioctl_iovec(fc
, iov_page
, vaddr
,
2855 transferred
, in_iovs
+ out_iovs
,
2856 (flags
& FUSE_IOCTL_COMPAT
) != 0);
2857 kunmap_atomic(vaddr
);
2862 out_iov
= in_iov
+ in_iovs
;
2864 err
= fuse_verify_ioctl_iov(fc
, in_iov
, in_iovs
);
2868 err
= fuse_verify_ioctl_iov(fc
, out_iov
, out_iovs
);
2876 if (transferred
> inarg
.out_size
)
2880 iov_iter_init(&ii
, READ
, out_iov
, out_iovs
, transferred
);
2881 for (i
= 0; iov_iter_count(&ii
) && !WARN_ON(i
>= ap
.num_pages
); i
++) {
2882 c
= copy_page_to_iter(ap
.pages
[i
], 0, PAGE_SIZE
, &ii
);
2883 if (c
!= PAGE_SIZE
&& iov_iter_count(&ii
))
2888 free_page((unsigned long) iov_page
);
2889 while (ap
.num_pages
)
2890 __free_page(ap
.pages
[--ap
.num_pages
]);
2893 return err
? err
: outarg
.result
;
2895 EXPORT_SYMBOL_GPL(fuse_do_ioctl
);
2897 long fuse_ioctl_common(struct file
*file
, unsigned int cmd
,
2898 unsigned long arg
, unsigned int flags
)
2900 struct inode
*inode
= file_inode(file
);
2901 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2903 if (!fuse_allow_current_process(fc
))
2906 if (is_bad_inode(inode
))
2909 return fuse_do_ioctl(file
, cmd
, arg
, flags
);
2912 static long fuse_file_ioctl(struct file
*file
, unsigned int cmd
,
2915 return fuse_ioctl_common(file
, cmd
, arg
, 0);
2918 static long fuse_file_compat_ioctl(struct file
*file
, unsigned int cmd
,
2921 return fuse_ioctl_common(file
, cmd
, arg
, FUSE_IOCTL_COMPAT
);
2925 * All files which have been polled are linked to RB tree
2926 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2927 * find the matching one.
2929 static struct rb_node
**fuse_find_polled_node(struct fuse_conn
*fc
, u64 kh
,
2930 struct rb_node
**parent_out
)
2932 struct rb_node
**link
= &fc
->polled_files
.rb_node
;
2933 struct rb_node
*last
= NULL
;
2936 struct fuse_file
*ff
;
2939 ff
= rb_entry(last
, struct fuse_file
, polled_node
);
2942 link
= &last
->rb_left
;
2943 else if (kh
> ff
->kh
)
2944 link
= &last
->rb_right
;
2955 * The file is about to be polled. Make sure it's on the polled_files
2956 * RB tree. Note that files once added to the polled_files tree are
2957 * not removed before the file is released. This is because a file
2958 * polled once is likely to be polled again.
2960 static void fuse_register_polled_file(struct fuse_conn
*fc
,
2961 struct fuse_file
*ff
)
2963 spin_lock(&fc
->lock
);
2964 if (RB_EMPTY_NODE(&ff
->polled_node
)) {
2965 struct rb_node
**link
, *uninitialized_var(parent
);
2967 link
= fuse_find_polled_node(fc
, ff
->kh
, &parent
);
2969 rb_link_node(&ff
->polled_node
, parent
, link
);
2970 rb_insert_color(&ff
->polled_node
, &fc
->polled_files
);
2972 spin_unlock(&fc
->lock
);
2975 __poll_t
fuse_file_poll(struct file
*file
, poll_table
*wait
)
2977 struct fuse_file
*ff
= file
->private_data
;
2978 struct fuse_conn
*fc
= ff
->fc
;
2979 struct fuse_poll_in inarg
= { .fh
= ff
->fh
, .kh
= ff
->kh
};
2980 struct fuse_poll_out outarg
;
2985 return DEFAULT_POLLMASK
;
2987 poll_wait(file
, &ff
->poll_wait
, wait
);
2988 inarg
.events
= mangle_poll(poll_requested_events(wait
));
2991 * Ask for notification iff there's someone waiting for it.
2992 * The client may ignore the flag and always notify.
2994 if (waitqueue_active(&ff
->poll_wait
)) {
2995 inarg
.flags
|= FUSE_POLL_SCHEDULE_NOTIFY
;
2996 fuse_register_polled_file(fc
, ff
);
2999 args
.opcode
= FUSE_POLL
;
3000 args
.nodeid
= ff
->nodeid
;
3001 args
.in_numargs
= 1;
3002 args
.in_args
[0].size
= sizeof(inarg
);
3003 args
.in_args
[0].value
= &inarg
;
3004 args
.out_numargs
= 1;
3005 args
.out_args
[0].size
= sizeof(outarg
);
3006 args
.out_args
[0].value
= &outarg
;
3007 err
= fuse_simple_request(fc
, &args
);
3010 return demangle_poll(outarg
.revents
);
3011 if (err
== -ENOSYS
) {
3013 return DEFAULT_POLLMASK
;
3017 EXPORT_SYMBOL_GPL(fuse_file_poll
);
3020 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
3021 * wakes up the poll waiters.
3023 int fuse_notify_poll_wakeup(struct fuse_conn
*fc
,
3024 struct fuse_notify_poll_wakeup_out
*outarg
)
3026 u64 kh
= outarg
->kh
;
3027 struct rb_node
**link
;
3029 spin_lock(&fc
->lock
);
3031 link
= fuse_find_polled_node(fc
, kh
, NULL
);
3033 struct fuse_file
*ff
;
3035 ff
= rb_entry(*link
, struct fuse_file
, polled_node
);
3036 wake_up_interruptible_sync(&ff
->poll_wait
);
3039 spin_unlock(&fc
->lock
);
3043 static void fuse_do_truncate(struct file
*file
)
3045 struct inode
*inode
= file
->f_mapping
->host
;
3048 attr
.ia_valid
= ATTR_SIZE
;
3049 attr
.ia_size
= i_size_read(inode
);
3051 attr
.ia_file
= file
;
3052 attr
.ia_valid
|= ATTR_FILE
;
3054 fuse_do_setattr(file_dentry(file
), &attr
, file
);
3057 static inline loff_t
fuse_round_up(struct fuse_conn
*fc
, loff_t off
)
3059 return round_up(off
, fc
->max_pages
<< PAGE_SHIFT
);
3063 fuse_direct_IO(struct kiocb
*iocb
, struct iov_iter
*iter
)
3065 DECLARE_COMPLETION_ONSTACK(wait
);
3067 struct file
*file
= iocb
->ki_filp
;
3068 struct fuse_file
*ff
= file
->private_data
;
3069 bool async_dio
= ff
->fc
->async_dio
;
3071 struct inode
*inode
;
3073 size_t count
= iov_iter_count(iter
);
3074 loff_t offset
= iocb
->ki_pos
;
3075 struct fuse_io_priv
*io
;
3078 inode
= file
->f_mapping
->host
;
3079 i_size
= i_size_read(inode
);
3081 if ((iov_iter_rw(iter
) == READ
) && (offset
> i_size
))
3084 /* optimization for short read */
3085 if (async_dio
&& iov_iter_rw(iter
) != WRITE
&& offset
+ count
> i_size
) {
3086 if (offset
>= i_size
)
3088 iov_iter_truncate(iter
, fuse_round_up(ff
->fc
, i_size
- offset
));
3089 count
= iov_iter_count(iter
);
3092 io
= kmalloc(sizeof(struct fuse_io_priv
), GFP_KERNEL
);
3095 spin_lock_init(&io
->lock
);
3096 kref_init(&io
->refcnt
);
3100 io
->offset
= offset
;
3101 io
->write
= (iov_iter_rw(iter
) == WRITE
);
3104 * By default, we want to optimize all I/Os with async request
3105 * submission to the client filesystem if supported.
3107 io
->async
= async_dio
;
3109 io
->blocking
= is_sync_kiocb(iocb
);
3112 * We cannot asynchronously extend the size of a file.
3113 * In such case the aio will behave exactly like sync io.
3115 if ((offset
+ count
> i_size
) && iov_iter_rw(iter
) == WRITE
)
3116 io
->blocking
= true;
3118 if (io
->async
&& io
->blocking
) {
3120 * Additional reference to keep io around after
3121 * calling fuse_aio_complete()
3123 kref_get(&io
->refcnt
);
3127 if (iov_iter_rw(iter
) == WRITE
) {
3128 ret
= fuse_direct_io(io
, iter
, &pos
, FUSE_DIO_WRITE
);
3129 fuse_invalidate_attr(inode
);
3131 ret
= __fuse_direct_read(io
, iter
, &pos
);
3135 bool blocking
= io
->blocking
;
3137 fuse_aio_complete(io
, ret
< 0 ? ret
: 0, -1);
3139 /* we have a non-extending, async request, so return */
3141 return -EIOCBQUEUED
;
3143 wait_for_completion(&wait
);
3144 ret
= fuse_get_res_by_io(io
);
3147 kref_put(&io
->refcnt
, fuse_io_release
);
3149 if (iov_iter_rw(iter
) == WRITE
) {
3151 fuse_write_update_size(inode
, pos
);
3152 else if (ret
< 0 && offset
+ count
> i_size
)
3153 fuse_do_truncate(file
);
3159 static int fuse_writeback_range(struct inode
*inode
, loff_t start
, loff_t end
)
3161 int err
= filemap_write_and_wait_range(inode
->i_mapping
, start
, end
);
3164 fuse_sync_writes(inode
);
3169 static long fuse_file_fallocate(struct file
*file
, int mode
, loff_t offset
,
3172 struct fuse_file
*ff
= file
->private_data
;
3173 struct inode
*inode
= file_inode(file
);
3174 struct fuse_inode
*fi
= get_fuse_inode(inode
);
3175 struct fuse_conn
*fc
= ff
->fc
;
3177 struct fuse_fallocate_in inarg
= {
3184 bool lock_inode
= !(mode
& FALLOC_FL_KEEP_SIZE
) ||
3185 (mode
& FALLOC_FL_PUNCH_HOLE
);
3187 if (mode
& ~(FALLOC_FL_KEEP_SIZE
| FALLOC_FL_PUNCH_HOLE
))
3190 if (fc
->no_fallocate
)
3195 if (mode
& FALLOC_FL_PUNCH_HOLE
) {
3196 loff_t endbyte
= offset
+ length
- 1;
3198 err
= fuse_writeback_range(inode
, offset
, endbyte
);
3204 if (!(mode
& FALLOC_FL_KEEP_SIZE
) &&
3205 offset
+ length
> i_size_read(inode
)) {
3206 err
= inode_newsize_ok(inode
, offset
+ length
);
3211 if (!(mode
& FALLOC_FL_KEEP_SIZE
))
3212 set_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
3214 args
.opcode
= FUSE_FALLOCATE
;
3215 args
.nodeid
= ff
->nodeid
;
3216 args
.in_numargs
= 1;
3217 args
.in_args
[0].size
= sizeof(inarg
);
3218 args
.in_args
[0].value
= &inarg
;
3219 err
= fuse_simple_request(fc
, &args
);
3220 if (err
== -ENOSYS
) {
3221 fc
->no_fallocate
= 1;
3227 /* we could have extended the file */
3228 if (!(mode
& FALLOC_FL_KEEP_SIZE
)) {
3229 bool changed
= fuse_write_update_size(inode
, offset
+ length
);
3231 if (changed
&& fc
->writeback_cache
)
3232 file_update_time(file
);
3235 if (mode
& FALLOC_FL_PUNCH_HOLE
)
3236 truncate_pagecache_range(inode
, offset
, offset
+ length
- 1);
3238 fuse_invalidate_attr(inode
);
3241 if (!(mode
& FALLOC_FL_KEEP_SIZE
))
3242 clear_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
3245 inode_unlock(inode
);
3250 static ssize_t
__fuse_copy_file_range(struct file
*file_in
, loff_t pos_in
,
3251 struct file
*file_out
, loff_t pos_out
,
3252 size_t len
, unsigned int flags
)
3254 struct fuse_file
*ff_in
= file_in
->private_data
;
3255 struct fuse_file
*ff_out
= file_out
->private_data
;
3256 struct inode
*inode_in
= file_inode(file_in
);
3257 struct inode
*inode_out
= file_inode(file_out
);
3258 struct fuse_inode
*fi_out
= get_fuse_inode(inode_out
);
3259 struct fuse_conn
*fc
= ff_in
->fc
;
3261 struct fuse_copy_file_range_in inarg
= {
3264 .nodeid_out
= ff_out
->nodeid
,
3265 .fh_out
= ff_out
->fh
,
3270 struct fuse_write_out outarg
;
3272 /* mark unstable when write-back is not used, and file_out gets
3274 bool is_unstable
= (!fc
->writeback_cache
) &&
3275 ((pos_out
+ len
) > inode_out
->i_size
);
3277 if (fc
->no_copy_file_range
)
3280 if (file_inode(file_in
)->i_sb
!= file_inode(file_out
)->i_sb
)
3283 inode_lock(inode_in
);
3284 err
= fuse_writeback_range(inode_in
, pos_in
, pos_in
+ len
- 1);
3285 inode_unlock(inode_in
);
3289 inode_lock(inode_out
);
3291 err
= file_modified(file_out
);
3296 * Write out dirty pages in the destination file before sending the COPY
3297 * request to userspace. After the request is completed, truncate off
3298 * pages (including partial ones) from the cache that have been copied,
3299 * since these contain stale data at that point.
3301 * This should be mostly correct, but if the COPY writes to partial
3302 * pages (at the start or end) and the parts not covered by the COPY are
3303 * written through a memory map after calling fuse_writeback_range(),
3304 * then these partial page modifications will be lost on truncation.
3306 * It is unlikely that someone would rely on such mixed style
3307 * modifications. Yet this does give less guarantees than if the
3308 * copying was performed with write(2).
3310 * To fix this a i_mmap_sem style lock could be used to prevent new
3311 * faults while the copy is ongoing.
3313 err
= fuse_writeback_range(inode_out
, pos_out
, pos_out
+ len
- 1);
3318 set_bit(FUSE_I_SIZE_UNSTABLE
, &fi_out
->state
);
3320 args
.opcode
= FUSE_COPY_FILE_RANGE
;
3321 args
.nodeid
= ff_in
->nodeid
;
3322 args
.in_numargs
= 1;
3323 args
.in_args
[0].size
= sizeof(inarg
);
3324 args
.in_args
[0].value
= &inarg
;
3325 args
.out_numargs
= 1;
3326 args
.out_args
[0].size
= sizeof(outarg
);
3327 args
.out_args
[0].value
= &outarg
;
3328 err
= fuse_simple_request(fc
, &args
);
3329 if (err
== -ENOSYS
) {
3330 fc
->no_copy_file_range
= 1;
3336 truncate_inode_pages_range(inode_out
->i_mapping
,
3337 ALIGN_DOWN(pos_out
, PAGE_SIZE
),
3338 ALIGN(pos_out
+ outarg
.size
, PAGE_SIZE
) - 1);
3340 if (fc
->writeback_cache
) {
3341 fuse_write_update_size(inode_out
, pos_out
+ outarg
.size
);
3342 file_update_time(file_out
);
3345 fuse_invalidate_attr(inode_out
);
3350 clear_bit(FUSE_I_SIZE_UNSTABLE
, &fi_out
->state
);
3352 inode_unlock(inode_out
);
3353 file_accessed(file_in
);
3358 static ssize_t
fuse_copy_file_range(struct file
*src_file
, loff_t src_off
,
3359 struct file
*dst_file
, loff_t dst_off
,
3360 size_t len
, unsigned int flags
)
3364 ret
= __fuse_copy_file_range(src_file
, src_off
, dst_file
, dst_off
,
3367 if (ret
== -EOPNOTSUPP
|| ret
== -EXDEV
)
3368 ret
= generic_copy_file_range(src_file
, src_off
, dst_file
,
3369 dst_off
, len
, flags
);
3373 static const struct file_operations fuse_file_operations
= {
3374 .llseek
= fuse_file_llseek
,
3375 .read_iter
= fuse_file_read_iter
,
3376 .write_iter
= fuse_file_write_iter
,
3377 .mmap
= fuse_file_mmap
,
3379 .flush
= fuse_flush
,
3380 .release
= fuse_release
,
3381 .fsync
= fuse_fsync
,
3382 .lock
= fuse_file_lock
,
3383 .flock
= fuse_file_flock
,
3384 .splice_read
= generic_file_splice_read
,
3385 .splice_write
= iter_file_splice_write
,
3386 .unlocked_ioctl
= fuse_file_ioctl
,
3387 .compat_ioctl
= fuse_file_compat_ioctl
,
3388 .poll
= fuse_file_poll
,
3389 .fallocate
= fuse_file_fallocate
,
3390 .copy_file_range
= fuse_copy_file_range
,
3393 static const struct address_space_operations fuse_file_aops
= {
3394 .readpage
= fuse_readpage
,
3395 .writepage
= fuse_writepage
,
3396 .writepages
= fuse_writepages
,
3397 .launder_page
= fuse_launder_page
,
3398 .readpages
= fuse_readpages
,
3399 .set_page_dirty
= __set_page_dirty_nobuffers
,
3401 .direct_IO
= fuse_direct_IO
,
3402 .write_begin
= fuse_write_begin
,
3403 .write_end
= fuse_write_end
,
3406 void fuse_init_file_inode(struct inode
*inode
)
3408 struct fuse_inode
*fi
= get_fuse_inode(inode
);
3410 inode
->i_fop
= &fuse_file_operations
;
3411 inode
->i_data
.a_ops
= &fuse_file_aops
;
3413 INIT_LIST_HEAD(&fi
->write_files
);
3414 INIT_LIST_HEAD(&fi
->queued_writes
);
3416 init_waitqueue_head(&fi
->page_waitq
);
3417 INIT_LIST_HEAD(&fi
->writepages
);