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/module.h>
16 #include <linux/compat.h>
17 #include <linux/swap.h>
18 #include <linux/falloc.h>
19 #include <linux/uio.h>
21 static const struct file_operations fuse_direct_io_file_operations
;
23 static int fuse_send_open(struct fuse_conn
*fc
, u64 nodeid
, struct file
*file
,
24 int opcode
, struct fuse_open_out
*outargp
)
26 struct fuse_open_in inarg
;
29 memset(&inarg
, 0, sizeof(inarg
));
30 inarg
.flags
= file
->f_flags
& ~(O_CREAT
| O_EXCL
| O_NOCTTY
);
31 if (!fc
->atomic_o_trunc
)
32 inarg
.flags
&= ~O_TRUNC
;
33 args
.in
.h
.opcode
= opcode
;
34 args
.in
.h
.nodeid
= nodeid
;
36 args
.in
.args
[0].size
= sizeof(inarg
);
37 args
.in
.args
[0].value
= &inarg
;
39 args
.out
.args
[0].size
= sizeof(*outargp
);
40 args
.out
.args
[0].value
= outargp
;
42 return fuse_simple_request(fc
, &args
);
45 struct fuse_file
*fuse_file_alloc(struct fuse_conn
*fc
)
49 ff
= kzalloc(sizeof(struct fuse_file
), GFP_KERNEL
);
54 ff
->reserved_req
= fuse_request_alloc(0);
55 if (unlikely(!ff
->reserved_req
)) {
60 INIT_LIST_HEAD(&ff
->write_entry
);
61 refcount_set(&ff
->count
, 1);
62 RB_CLEAR_NODE(&ff
->polled_node
);
63 init_waitqueue_head(&ff
->poll_wait
);
67 spin_unlock(&fc
->lock
);
72 void fuse_file_free(struct fuse_file
*ff
)
74 fuse_request_free(ff
->reserved_req
);
78 static struct fuse_file
*fuse_file_get(struct fuse_file
*ff
)
80 refcount_inc(&ff
->count
);
84 static void fuse_release_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
86 iput(req
->misc
.release
.inode
);
89 static void fuse_file_put(struct fuse_file
*ff
, bool sync
)
91 if (refcount_dec_and_test(&ff
->count
)) {
92 struct fuse_req
*req
= ff
->reserved_req
;
94 if (ff
->fc
->no_open
) {
96 * Drop the release request when client does not
99 __clear_bit(FR_BACKGROUND
, &req
->flags
);
100 iput(req
->misc
.release
.inode
);
101 fuse_put_request(ff
->fc
, req
);
103 __set_bit(FR_FORCE
, &req
->flags
);
104 __clear_bit(FR_BACKGROUND
, &req
->flags
);
105 fuse_request_send(ff
->fc
, req
);
106 iput(req
->misc
.release
.inode
);
107 fuse_put_request(ff
->fc
, req
);
109 req
->end
= fuse_release_end
;
110 __set_bit(FR_BACKGROUND
, &req
->flags
);
111 fuse_request_send_background(ff
->fc
, req
);
117 int fuse_do_open(struct fuse_conn
*fc
, u64 nodeid
, struct file
*file
,
120 struct fuse_file
*ff
;
121 int opcode
= isdir
? FUSE_OPENDIR
: FUSE_OPEN
;
123 ff
= fuse_file_alloc(fc
);
128 ff
->open_flags
= FOPEN_KEEP_CACHE
; /* Default for no-open */
129 if (!fc
->no_open
|| isdir
) {
130 struct fuse_open_out outarg
;
133 err
= fuse_send_open(fc
, nodeid
, file
, opcode
, &outarg
);
136 ff
->open_flags
= outarg
.open_flags
;
138 } else if (err
!= -ENOSYS
|| isdir
) {
147 ff
->open_flags
&= ~FOPEN_DIRECT_IO
;
150 file
->private_data
= ff
;
154 EXPORT_SYMBOL_GPL(fuse_do_open
);
156 static void fuse_link_write_file(struct file
*file
)
158 struct inode
*inode
= file_inode(file
);
159 struct fuse_conn
*fc
= get_fuse_conn(inode
);
160 struct fuse_inode
*fi
= get_fuse_inode(inode
);
161 struct fuse_file
*ff
= file
->private_data
;
163 * file may be written through mmap, so chain it onto the
164 * inodes's write_file list
166 spin_lock(&fc
->lock
);
167 if (list_empty(&ff
->write_entry
))
168 list_add(&ff
->write_entry
, &fi
->write_files
);
169 spin_unlock(&fc
->lock
);
172 void fuse_finish_open(struct inode
*inode
, struct file
*file
)
174 struct fuse_file
*ff
= file
->private_data
;
175 struct fuse_conn
*fc
= get_fuse_conn(inode
);
177 if (ff
->open_flags
& FOPEN_DIRECT_IO
)
178 file
->f_op
= &fuse_direct_io_file_operations
;
179 if (!(ff
->open_flags
& FOPEN_KEEP_CACHE
))
180 invalidate_inode_pages2(inode
->i_mapping
);
181 if (ff
->open_flags
& FOPEN_NONSEEKABLE
)
182 nonseekable_open(inode
, file
);
183 if (fc
->atomic_o_trunc
&& (file
->f_flags
& O_TRUNC
)) {
184 struct fuse_inode
*fi
= get_fuse_inode(inode
);
186 spin_lock(&fc
->lock
);
187 fi
->attr_version
= ++fc
->attr_version
;
188 i_size_write(inode
, 0);
189 spin_unlock(&fc
->lock
);
190 fuse_invalidate_attr(inode
);
191 if (fc
->writeback_cache
)
192 file_update_time(file
);
194 if ((file
->f_mode
& FMODE_WRITE
) && fc
->writeback_cache
)
195 fuse_link_write_file(file
);
198 int fuse_open_common(struct inode
*inode
, struct file
*file
, bool isdir
)
200 struct fuse_conn
*fc
= get_fuse_conn(inode
);
202 bool lock_inode
= (file
->f_flags
& O_TRUNC
) &&
203 fc
->atomic_o_trunc
&&
206 err
= generic_file_open(inode
, file
);
213 err
= fuse_do_open(fc
, get_node_id(inode
), file
, isdir
);
216 fuse_finish_open(inode
, file
);
224 static void fuse_prepare_release(struct fuse_file
*ff
, int flags
, int opcode
)
226 struct fuse_conn
*fc
= ff
->fc
;
227 struct fuse_req
*req
= ff
->reserved_req
;
228 struct fuse_release_in
*inarg
= &req
->misc
.release
.in
;
230 spin_lock(&fc
->lock
);
231 list_del(&ff
->write_entry
);
232 if (!RB_EMPTY_NODE(&ff
->polled_node
))
233 rb_erase(&ff
->polled_node
, &fc
->polled_files
);
234 spin_unlock(&fc
->lock
);
236 wake_up_interruptible_all(&ff
->poll_wait
);
239 inarg
->flags
= flags
;
240 req
->in
.h
.opcode
= opcode
;
241 req
->in
.h
.nodeid
= ff
->nodeid
;
243 req
->in
.args
[0].size
= sizeof(struct fuse_release_in
);
244 req
->in
.args
[0].value
= inarg
;
247 void fuse_release_common(struct file
*file
, int opcode
)
249 struct fuse_file
*ff
= file
->private_data
;
250 struct fuse_req
*req
= ff
->reserved_req
;
252 fuse_prepare_release(ff
, file
->f_flags
, opcode
);
255 struct fuse_release_in
*inarg
= &req
->misc
.release
.in
;
256 inarg
->release_flags
|= FUSE_RELEASE_FLOCK_UNLOCK
;
257 inarg
->lock_owner
= fuse_lock_owner_id(ff
->fc
,
260 /* Hold inode until release is finished */
261 req
->misc
.release
.inode
= igrab(file_inode(file
));
264 * Normally this will send the RELEASE request, however if
265 * some asynchronous READ or WRITE requests are outstanding,
266 * the sending will be delayed.
268 * Make the release synchronous if this is a fuseblk mount,
269 * synchronous RELEASE is allowed (and desirable) in this case
270 * because the server can be trusted not to screw up.
272 fuse_file_put(ff
, ff
->fc
->destroy_req
!= NULL
);
275 static int fuse_open(struct inode
*inode
, struct file
*file
)
277 return fuse_open_common(inode
, file
, false);
280 static int fuse_release(struct inode
*inode
, struct file
*file
)
282 struct fuse_conn
*fc
= get_fuse_conn(inode
);
284 /* see fuse_vma_close() for !writeback_cache case */
285 if (fc
->writeback_cache
)
286 write_inode_now(inode
, 1);
288 fuse_release_common(file
, FUSE_RELEASE
);
290 /* return value is ignored by VFS */
294 void fuse_sync_release(struct fuse_file
*ff
, int flags
)
296 WARN_ON(refcount_read(&ff
->count
) > 1);
297 fuse_prepare_release(ff
, flags
, FUSE_RELEASE
);
299 * iput(NULL) is a no-op and since the refcount is 1 and everything's
300 * synchronous, we are fine with not doing igrab() here"
302 fuse_file_put(ff
, true);
304 EXPORT_SYMBOL_GPL(fuse_sync_release
);
307 * Scramble the ID space with XTEA, so that the value of the files_struct
308 * pointer is not exposed to userspace.
310 u64
fuse_lock_owner_id(struct fuse_conn
*fc
, fl_owner_t id
)
312 u32
*k
= fc
->scramble_key
;
313 u64 v
= (unsigned long) id
;
319 for (i
= 0; i
< 32; i
++) {
320 v0
+= ((v1
<< 4 ^ v1
>> 5) + v1
) ^ (sum
+ k
[sum
& 3]);
322 v1
+= ((v0
<< 4 ^ v0
>> 5) + v0
) ^ (sum
+ k
[sum
>>11 & 3]);
325 return (u64
) v0
+ ((u64
) v1
<< 32);
329 * Check if any page in a range is under writeback
331 * This is currently done by walking the list of writepage requests
332 * for the inode, which can be pretty inefficient.
334 static bool fuse_range_is_writeback(struct inode
*inode
, pgoff_t idx_from
,
337 struct fuse_conn
*fc
= get_fuse_conn(inode
);
338 struct fuse_inode
*fi
= get_fuse_inode(inode
);
339 struct fuse_req
*req
;
342 spin_lock(&fc
->lock
);
343 list_for_each_entry(req
, &fi
->writepages
, writepages_entry
) {
346 BUG_ON(req
->inode
!= inode
);
347 curr_index
= req
->misc
.write
.in
.offset
>> PAGE_SHIFT
;
348 if (idx_from
< curr_index
+ req
->num_pages
&&
349 curr_index
<= idx_to
) {
354 spin_unlock(&fc
->lock
);
359 static inline bool fuse_page_is_writeback(struct inode
*inode
, pgoff_t index
)
361 return fuse_range_is_writeback(inode
, index
, index
);
365 * Wait for page writeback to be completed.
367 * Since fuse doesn't rely on the VM writeback tracking, this has to
368 * use some other means.
370 static int fuse_wait_on_page_writeback(struct inode
*inode
, pgoff_t index
)
372 struct fuse_inode
*fi
= get_fuse_inode(inode
);
374 wait_event(fi
->page_waitq
, !fuse_page_is_writeback(inode
, index
));
379 * Wait for all pending writepages on the inode to finish.
381 * This is currently done by blocking further writes with FUSE_NOWRITE
382 * and waiting for all sent writes to complete.
384 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
385 * could conflict with truncation.
387 static void fuse_sync_writes(struct inode
*inode
)
389 fuse_set_nowrite(inode
);
390 fuse_release_nowrite(inode
);
393 static int fuse_flush(struct file
*file
, fl_owner_t id
)
395 struct inode
*inode
= file_inode(file
);
396 struct fuse_conn
*fc
= get_fuse_conn(inode
);
397 struct fuse_file
*ff
= file
->private_data
;
398 struct fuse_req
*req
;
399 struct fuse_flush_in inarg
;
402 if (is_bad_inode(inode
))
408 err
= write_inode_now(inode
, 1);
413 fuse_sync_writes(inode
);
416 err
= filemap_check_errors(file
->f_mapping
);
420 req
= fuse_get_req_nofail_nopages(fc
, file
);
421 memset(&inarg
, 0, sizeof(inarg
));
423 inarg
.lock_owner
= fuse_lock_owner_id(fc
, id
);
424 req
->in
.h
.opcode
= FUSE_FLUSH
;
425 req
->in
.h
.nodeid
= get_node_id(inode
);
427 req
->in
.args
[0].size
= sizeof(inarg
);
428 req
->in
.args
[0].value
= &inarg
;
429 __set_bit(FR_FORCE
, &req
->flags
);
430 fuse_request_send(fc
, req
);
431 err
= req
->out
.h
.error
;
432 fuse_put_request(fc
, req
);
433 if (err
== -ENOSYS
) {
440 int fuse_fsync_common(struct file
*file
, loff_t start
, loff_t end
,
441 int datasync
, int isdir
)
443 struct inode
*inode
= file
->f_mapping
->host
;
444 struct fuse_conn
*fc
= get_fuse_conn(inode
);
445 struct fuse_file
*ff
= file
->private_data
;
447 struct fuse_fsync_in inarg
;
450 if (is_bad_inode(inode
))
456 * Start writeback against all dirty pages of the inode, then
457 * wait for all outstanding writes, before sending the FSYNC
460 err
= file_write_and_wait_range(file
, start
, end
);
464 fuse_sync_writes(inode
);
467 * Due to implementation of fuse writeback
468 * file_write_and_wait_range() does not catch errors.
469 * We have to do this directly after fuse_sync_writes()
471 err
= file_check_and_advance_wb_err(file
);
475 err
= sync_inode_metadata(inode
, 1);
479 if ((!isdir
&& fc
->no_fsync
) || (isdir
&& fc
->no_fsyncdir
))
482 memset(&inarg
, 0, sizeof(inarg
));
484 inarg
.fsync_flags
= datasync
? 1 : 0;
485 args
.in
.h
.opcode
= isdir
? FUSE_FSYNCDIR
: FUSE_FSYNC
;
486 args
.in
.h
.nodeid
= get_node_id(inode
);
488 args
.in
.args
[0].size
= sizeof(inarg
);
489 args
.in
.args
[0].value
= &inarg
;
490 err
= fuse_simple_request(fc
, &args
);
491 if (err
== -ENOSYS
) {
503 static int fuse_fsync(struct file
*file
, loff_t start
, loff_t end
,
506 return fuse_fsync_common(file
, start
, end
, datasync
, 0);
509 void fuse_read_fill(struct fuse_req
*req
, struct file
*file
, loff_t pos
,
510 size_t count
, int opcode
)
512 struct fuse_read_in
*inarg
= &req
->misc
.read
.in
;
513 struct fuse_file
*ff
= file
->private_data
;
518 inarg
->flags
= file
->f_flags
;
519 req
->in
.h
.opcode
= opcode
;
520 req
->in
.h
.nodeid
= ff
->nodeid
;
522 req
->in
.args
[0].size
= sizeof(struct fuse_read_in
);
523 req
->in
.args
[0].value
= inarg
;
525 req
->out
.numargs
= 1;
526 req
->out
.args
[0].size
= count
;
529 static void fuse_release_user_pages(struct fuse_req
*req
, bool should_dirty
)
533 for (i
= 0; i
< req
->num_pages
; i
++) {
534 struct page
*page
= req
->pages
[i
];
536 set_page_dirty_lock(page
);
541 static void fuse_io_release(struct kref
*kref
)
543 kfree(container_of(kref
, struct fuse_io_priv
, refcnt
));
546 static ssize_t
fuse_get_res_by_io(struct fuse_io_priv
*io
)
551 if (io
->bytes
>= 0 && io
->write
)
554 return io
->bytes
< 0 ? io
->size
: io
->bytes
;
558 * In case of short read, the caller sets 'pos' to the position of
559 * actual end of fuse request in IO request. Otherwise, if bytes_requested
560 * == bytes_transferred or rw == WRITE, the caller sets 'pos' to -1.
563 * User requested DIO read of 64K. It was splitted into two 32K fuse requests,
564 * both submitted asynchronously. The first of them was ACKed by userspace as
565 * fully completed (req->out.args[0].size == 32K) resulting in pos == -1. The
566 * second request was ACKed as short, e.g. only 1K was read, resulting in
569 * Thus, when all fuse requests are completed, the minimal non-negative 'pos'
570 * will be equal to the length of the longest contiguous fragment of
571 * transferred data starting from the beginning of IO request.
573 static void fuse_aio_complete(struct fuse_io_priv
*io
, int err
, ssize_t pos
)
577 spin_lock(&io
->lock
);
579 io
->err
= io
->err
? : err
;
580 else if (pos
>= 0 && (io
->bytes
< 0 || pos
< io
->bytes
))
584 if (!left
&& io
->blocking
)
586 spin_unlock(&io
->lock
);
588 if (!left
&& !io
->blocking
) {
589 ssize_t res
= fuse_get_res_by_io(io
);
592 struct inode
*inode
= file_inode(io
->iocb
->ki_filp
);
593 struct fuse_conn
*fc
= get_fuse_conn(inode
);
594 struct fuse_inode
*fi
= get_fuse_inode(inode
);
596 spin_lock(&fc
->lock
);
597 fi
->attr_version
= ++fc
->attr_version
;
598 spin_unlock(&fc
->lock
);
601 io
->iocb
->ki_complete(io
->iocb
, res
, 0);
604 kref_put(&io
->refcnt
, fuse_io_release
);
607 static void fuse_aio_complete_req(struct fuse_conn
*fc
, struct fuse_req
*req
)
609 struct fuse_io_priv
*io
= req
->io
;
612 fuse_release_user_pages(req
, io
->should_dirty
);
615 if (req
->misc
.write
.in
.size
!= req
->misc
.write
.out
.size
)
616 pos
= req
->misc
.write
.in
.offset
- io
->offset
+
617 req
->misc
.write
.out
.size
;
619 if (req
->misc
.read
.in
.size
!= req
->out
.args
[0].size
)
620 pos
= req
->misc
.read
.in
.offset
- io
->offset
+
621 req
->out
.args
[0].size
;
624 fuse_aio_complete(io
, req
->out
.h
.error
, pos
);
627 static size_t fuse_async_req_send(struct fuse_conn
*fc
, struct fuse_req
*req
,
628 size_t num_bytes
, struct fuse_io_priv
*io
)
630 spin_lock(&io
->lock
);
631 kref_get(&io
->refcnt
);
632 io
->size
+= num_bytes
;
634 spin_unlock(&io
->lock
);
637 req
->end
= fuse_aio_complete_req
;
639 __fuse_get_request(req
);
640 fuse_request_send_background(fc
, req
);
645 static size_t fuse_send_read(struct fuse_req
*req
, struct fuse_io_priv
*io
,
646 loff_t pos
, size_t count
, fl_owner_t owner
)
648 struct file
*file
= io
->iocb
->ki_filp
;
649 struct fuse_file
*ff
= file
->private_data
;
650 struct fuse_conn
*fc
= ff
->fc
;
652 fuse_read_fill(req
, file
, pos
, count
, FUSE_READ
);
654 struct fuse_read_in
*inarg
= &req
->misc
.read
.in
;
656 inarg
->read_flags
|= FUSE_READ_LOCKOWNER
;
657 inarg
->lock_owner
= fuse_lock_owner_id(fc
, owner
);
661 return fuse_async_req_send(fc
, req
, count
, io
);
663 fuse_request_send(fc
, req
);
664 return req
->out
.args
[0].size
;
667 static void fuse_read_update_size(struct inode
*inode
, loff_t size
,
670 struct fuse_conn
*fc
= get_fuse_conn(inode
);
671 struct fuse_inode
*fi
= get_fuse_inode(inode
);
673 spin_lock(&fc
->lock
);
674 if (attr_ver
== fi
->attr_version
&& size
< inode
->i_size
&&
675 !test_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
)) {
676 fi
->attr_version
= ++fc
->attr_version
;
677 i_size_write(inode
, size
);
679 spin_unlock(&fc
->lock
);
682 static void fuse_short_read(struct fuse_req
*req
, struct inode
*inode
,
685 size_t num_read
= req
->out
.args
[0].size
;
686 struct fuse_conn
*fc
= get_fuse_conn(inode
);
688 if (fc
->writeback_cache
) {
690 * A hole in a file. Some data after the hole are in page cache,
691 * but have not reached the client fs yet. So, the hole is not
695 int start_idx
= num_read
>> PAGE_SHIFT
;
696 size_t off
= num_read
& (PAGE_SIZE
- 1);
698 for (i
= start_idx
; i
< req
->num_pages
; i
++) {
699 zero_user_segment(req
->pages
[i
], off
, PAGE_SIZE
);
703 loff_t pos
= page_offset(req
->pages
[0]) + num_read
;
704 fuse_read_update_size(inode
, pos
, attr_ver
);
708 static int fuse_do_readpage(struct file
*file
, struct page
*page
)
711 struct fuse_io_priv io
;
712 struct inode
*inode
= page
->mapping
->host
;
713 struct fuse_conn
*fc
= get_fuse_conn(inode
);
714 struct fuse_req
*req
;
716 loff_t pos
= page_offset(page
);
717 size_t count
= PAGE_SIZE
;
722 * Page writeback can extend beyond the lifetime of the
723 * page-cache page, so make sure we read a properly synced
726 fuse_wait_on_page_writeback(inode
, page
->index
);
728 req
= fuse_get_req(fc
, 1);
732 attr_ver
= fuse_get_attr_version(fc
);
734 req
->out
.page_zeroing
= 1;
735 req
->out
.argpages
= 1;
737 req
->pages
[0] = page
;
738 req
->page_descs
[0].length
= count
;
739 init_sync_kiocb(&iocb
, file
);
740 io
= (struct fuse_io_priv
) FUSE_IO_PRIV_SYNC(&iocb
);
741 num_read
= fuse_send_read(req
, &io
, pos
, count
, NULL
);
742 err
= req
->out
.h
.error
;
746 * Short read means EOF. If file size is larger, truncate it
748 if (num_read
< count
)
749 fuse_short_read(req
, inode
, attr_ver
);
751 SetPageUptodate(page
);
754 fuse_put_request(fc
, req
);
759 static int fuse_readpage(struct file
*file
, struct page
*page
)
761 struct inode
*inode
= page
->mapping
->host
;
765 if (is_bad_inode(inode
))
768 err
= fuse_do_readpage(file
, page
);
769 fuse_invalidate_atime(inode
);
775 static void fuse_readpages_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
778 size_t count
= req
->misc
.read
.in
.size
;
779 size_t num_read
= req
->out
.args
[0].size
;
780 struct address_space
*mapping
= NULL
;
782 for (i
= 0; mapping
== NULL
&& i
< req
->num_pages
; i
++)
783 mapping
= req
->pages
[i
]->mapping
;
786 struct inode
*inode
= mapping
->host
;
789 * Short read means EOF. If file size is larger, truncate it
791 if (!req
->out
.h
.error
&& num_read
< count
)
792 fuse_short_read(req
, inode
, req
->misc
.read
.attr_ver
);
794 fuse_invalidate_atime(inode
);
797 for (i
= 0; i
< req
->num_pages
; i
++) {
798 struct page
*page
= req
->pages
[i
];
799 if (!req
->out
.h
.error
)
800 SetPageUptodate(page
);
807 fuse_file_put(req
->ff
, false);
810 static void fuse_send_readpages(struct fuse_req
*req
, struct file
*file
)
812 struct fuse_file
*ff
= file
->private_data
;
813 struct fuse_conn
*fc
= ff
->fc
;
814 loff_t pos
= page_offset(req
->pages
[0]);
815 size_t count
= req
->num_pages
<< PAGE_SHIFT
;
817 req
->out
.argpages
= 1;
818 req
->out
.page_zeroing
= 1;
819 req
->out
.page_replace
= 1;
820 fuse_read_fill(req
, file
, pos
, count
, FUSE_READ
);
821 req
->misc
.read
.attr_ver
= fuse_get_attr_version(fc
);
822 if (fc
->async_read
) {
823 req
->ff
= fuse_file_get(ff
);
824 req
->end
= fuse_readpages_end
;
825 fuse_request_send_background(fc
, req
);
827 fuse_request_send(fc
, req
);
828 fuse_readpages_end(fc
, req
);
829 fuse_put_request(fc
, req
);
833 struct fuse_fill_data
{
834 struct fuse_req
*req
;
840 static int fuse_readpages_fill(void *_data
, struct page
*page
)
842 struct fuse_fill_data
*data
= _data
;
843 struct fuse_req
*req
= data
->req
;
844 struct inode
*inode
= data
->inode
;
845 struct fuse_conn
*fc
= get_fuse_conn(inode
);
847 fuse_wait_on_page_writeback(inode
, page
->index
);
849 if (req
->num_pages
&&
850 (req
->num_pages
== FUSE_MAX_PAGES_PER_REQ
||
851 (req
->num_pages
+ 1) * PAGE_SIZE
> fc
->max_read
||
852 req
->pages
[req
->num_pages
- 1]->index
+ 1 != page
->index
)) {
853 int nr_alloc
= min_t(unsigned, data
->nr_pages
,
854 FUSE_MAX_PAGES_PER_REQ
);
855 fuse_send_readpages(req
, data
->file
);
857 req
= fuse_get_req_for_background(fc
, nr_alloc
);
859 req
= fuse_get_req(fc
, nr_alloc
);
868 if (WARN_ON(req
->num_pages
>= req
->max_pages
)) {
869 fuse_put_request(fc
, req
);
874 req
->pages
[req
->num_pages
] = page
;
875 req
->page_descs
[req
->num_pages
].length
= PAGE_SIZE
;
881 static int fuse_readpages(struct file
*file
, struct address_space
*mapping
,
882 struct list_head
*pages
, unsigned nr_pages
)
884 struct inode
*inode
= mapping
->host
;
885 struct fuse_conn
*fc
= get_fuse_conn(inode
);
886 struct fuse_fill_data data
;
888 int nr_alloc
= min_t(unsigned, nr_pages
, FUSE_MAX_PAGES_PER_REQ
);
891 if (is_bad_inode(inode
))
897 data
.req
= fuse_get_req_for_background(fc
, nr_alloc
);
899 data
.req
= fuse_get_req(fc
, nr_alloc
);
900 data
.nr_pages
= nr_pages
;
901 err
= PTR_ERR(data
.req
);
902 if (IS_ERR(data
.req
))
905 err
= read_cache_pages(mapping
, pages
, fuse_readpages_fill
, &data
);
907 if (data
.req
->num_pages
)
908 fuse_send_readpages(data
.req
, file
);
910 fuse_put_request(fc
, data
.req
);
916 static ssize_t
fuse_file_read_iter(struct kiocb
*iocb
, struct iov_iter
*to
)
918 struct inode
*inode
= iocb
->ki_filp
->f_mapping
->host
;
919 struct fuse_conn
*fc
= get_fuse_conn(inode
);
922 * In auto invalidate mode, always update attributes on read.
923 * Otherwise, only update if we attempt to read past EOF (to ensure
924 * i_size is up to date).
926 if (fc
->auto_inval_data
||
927 (iocb
->ki_pos
+ iov_iter_count(to
) > i_size_read(inode
))) {
929 err
= fuse_update_attributes(inode
, iocb
->ki_filp
);
934 return generic_file_read_iter(iocb
, to
);
937 static void fuse_write_fill(struct fuse_req
*req
, struct fuse_file
*ff
,
938 loff_t pos
, size_t count
)
940 struct fuse_write_in
*inarg
= &req
->misc
.write
.in
;
941 struct fuse_write_out
*outarg
= &req
->misc
.write
.out
;
946 req
->in
.h
.opcode
= FUSE_WRITE
;
947 req
->in
.h
.nodeid
= ff
->nodeid
;
949 if (ff
->fc
->minor
< 9)
950 req
->in
.args
[0].size
= FUSE_COMPAT_WRITE_IN_SIZE
;
952 req
->in
.args
[0].size
= sizeof(struct fuse_write_in
);
953 req
->in
.args
[0].value
= inarg
;
954 req
->in
.args
[1].size
= count
;
955 req
->out
.numargs
= 1;
956 req
->out
.args
[0].size
= sizeof(struct fuse_write_out
);
957 req
->out
.args
[0].value
= outarg
;
960 static size_t fuse_send_write(struct fuse_req
*req
, struct fuse_io_priv
*io
,
961 loff_t pos
, size_t count
, fl_owner_t owner
)
963 struct kiocb
*iocb
= io
->iocb
;
964 struct file
*file
= iocb
->ki_filp
;
965 struct fuse_file
*ff
= file
->private_data
;
966 struct fuse_conn
*fc
= ff
->fc
;
967 struct fuse_write_in
*inarg
= &req
->misc
.write
.in
;
969 fuse_write_fill(req
, ff
, pos
, count
);
970 inarg
->flags
= file
->f_flags
;
971 if (iocb
->ki_flags
& IOCB_DSYNC
)
972 inarg
->flags
|= O_DSYNC
;
973 if (iocb
->ki_flags
& IOCB_SYNC
)
974 inarg
->flags
|= O_SYNC
;
976 inarg
->write_flags
|= FUSE_WRITE_LOCKOWNER
;
977 inarg
->lock_owner
= fuse_lock_owner_id(fc
, owner
);
981 return fuse_async_req_send(fc
, req
, count
, io
);
983 fuse_request_send(fc
, req
);
984 return req
->misc
.write
.out
.size
;
987 bool fuse_write_update_size(struct inode
*inode
, loff_t pos
)
989 struct fuse_conn
*fc
= get_fuse_conn(inode
);
990 struct fuse_inode
*fi
= get_fuse_inode(inode
);
993 spin_lock(&fc
->lock
);
994 fi
->attr_version
= ++fc
->attr_version
;
995 if (pos
> inode
->i_size
) {
996 i_size_write(inode
, pos
);
999 spin_unlock(&fc
->lock
);
1004 static size_t fuse_send_write_pages(struct fuse_req
*req
, struct kiocb
*iocb
,
1005 struct inode
*inode
, loff_t pos
,
1011 struct fuse_io_priv io
= FUSE_IO_PRIV_SYNC(iocb
);
1013 for (i
= 0; i
< req
->num_pages
; i
++)
1014 fuse_wait_on_page_writeback(inode
, req
->pages
[i
]->index
);
1016 res
= fuse_send_write(req
, &io
, pos
, count
, NULL
);
1018 offset
= req
->page_descs
[0].offset
;
1020 for (i
= 0; i
< req
->num_pages
; i
++) {
1021 struct page
*page
= req
->pages
[i
];
1023 if (!req
->out
.h
.error
&& !offset
&& count
>= PAGE_SIZE
)
1024 SetPageUptodate(page
);
1026 if (count
> PAGE_SIZE
- offset
)
1027 count
-= PAGE_SIZE
- offset
;
1039 static ssize_t
fuse_fill_write_pages(struct fuse_req
*req
,
1040 struct address_space
*mapping
,
1041 struct iov_iter
*ii
, loff_t pos
)
1043 struct fuse_conn
*fc
= get_fuse_conn(mapping
->host
);
1044 unsigned offset
= pos
& (PAGE_SIZE
- 1);
1048 req
->in
.argpages
= 1;
1049 req
->page_descs
[0].offset
= offset
;
1054 pgoff_t index
= pos
>> PAGE_SHIFT
;
1055 size_t bytes
= min_t(size_t, PAGE_SIZE
- offset
,
1056 iov_iter_count(ii
));
1058 bytes
= min_t(size_t, bytes
, fc
->max_write
- count
);
1062 if (iov_iter_fault_in_readable(ii
, bytes
))
1066 page
= grab_cache_page_write_begin(mapping
, index
, 0);
1070 if (mapping_writably_mapped(mapping
))
1071 flush_dcache_page(page
);
1073 tmp
= iov_iter_copy_from_user_atomic(page
, ii
, offset
, bytes
);
1074 flush_dcache_page(page
);
1076 iov_iter_advance(ii
, tmp
);
1080 bytes
= min(bytes
, iov_iter_single_seg_count(ii
));
1085 req
->pages
[req
->num_pages
] = page
;
1086 req
->page_descs
[req
->num_pages
].length
= tmp
;
1092 if (offset
== PAGE_SIZE
)
1095 if (!fc
->big_writes
)
1097 } while (iov_iter_count(ii
) && count
< fc
->max_write
&&
1098 req
->num_pages
< req
->max_pages
&& offset
== 0);
1100 return count
> 0 ? count
: err
;
1103 static inline unsigned fuse_wr_pages(loff_t pos
, size_t len
)
1105 return min_t(unsigned,
1106 ((pos
+ len
- 1) >> PAGE_SHIFT
) -
1107 (pos
>> PAGE_SHIFT
) + 1,
1108 FUSE_MAX_PAGES_PER_REQ
);
1111 static ssize_t
fuse_perform_write(struct kiocb
*iocb
,
1112 struct address_space
*mapping
,
1113 struct iov_iter
*ii
, loff_t pos
)
1115 struct inode
*inode
= mapping
->host
;
1116 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1117 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1121 if (is_bad_inode(inode
))
1124 if (inode
->i_size
< pos
+ iov_iter_count(ii
))
1125 set_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
1128 struct fuse_req
*req
;
1130 unsigned nr_pages
= fuse_wr_pages(pos
, iov_iter_count(ii
));
1132 req
= fuse_get_req(fc
, nr_pages
);
1138 count
= fuse_fill_write_pages(req
, mapping
, ii
, pos
);
1144 num_written
= fuse_send_write_pages(req
, iocb
, inode
,
1146 err
= req
->out
.h
.error
;
1151 /* break out of the loop on short write */
1152 if (num_written
!= count
)
1156 fuse_put_request(fc
, req
);
1157 } while (!err
&& iov_iter_count(ii
));
1160 fuse_write_update_size(inode
, pos
);
1162 clear_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
1163 fuse_invalidate_attr(inode
);
1165 return res
> 0 ? res
: err
;
1168 static ssize_t
fuse_file_write_iter(struct kiocb
*iocb
, struct iov_iter
*from
)
1170 struct file
*file
= iocb
->ki_filp
;
1171 struct address_space
*mapping
= file
->f_mapping
;
1172 ssize_t written
= 0;
1173 ssize_t written_buffered
= 0;
1174 struct inode
*inode
= mapping
->host
;
1178 if (get_fuse_conn(inode
)->writeback_cache
) {
1179 /* Update size (EOF optimization) and mode (SUID clearing) */
1180 err
= fuse_update_attributes(mapping
->host
, file
);
1184 return generic_file_write_iter(iocb
, from
);
1189 /* We can write back this queue in page reclaim */
1190 current
->backing_dev_info
= inode_to_bdi(inode
);
1192 err
= generic_write_checks(iocb
, from
);
1196 err
= file_remove_privs(file
);
1200 err
= file_update_time(file
);
1204 if (iocb
->ki_flags
& IOCB_DIRECT
) {
1205 loff_t pos
= iocb
->ki_pos
;
1206 written
= generic_file_direct_write(iocb
, from
);
1207 if (written
< 0 || !iov_iter_count(from
))
1212 written_buffered
= fuse_perform_write(iocb
, mapping
, from
, pos
);
1213 if (written_buffered
< 0) {
1214 err
= written_buffered
;
1217 endbyte
= pos
+ written_buffered
- 1;
1219 err
= filemap_write_and_wait_range(file
->f_mapping
, pos
,
1224 invalidate_mapping_pages(file
->f_mapping
,
1226 endbyte
>> PAGE_SHIFT
);
1228 written
+= written_buffered
;
1229 iocb
->ki_pos
= pos
+ written_buffered
;
1231 written
= fuse_perform_write(iocb
, mapping
, from
, iocb
->ki_pos
);
1233 iocb
->ki_pos
+= written
;
1236 current
->backing_dev_info
= NULL
;
1237 inode_unlock(inode
);
1239 written
= generic_write_sync(iocb
, written
);
1241 return written
? written
: err
;
1244 static inline void fuse_page_descs_length_init(struct fuse_req
*req
,
1245 unsigned index
, unsigned nr_pages
)
1249 for (i
= index
; i
< index
+ nr_pages
; i
++)
1250 req
->page_descs
[i
].length
= PAGE_SIZE
-
1251 req
->page_descs
[i
].offset
;
1254 static inline unsigned long fuse_get_user_addr(const struct iov_iter
*ii
)
1256 return (unsigned long)ii
->iov
->iov_base
+ ii
->iov_offset
;
1259 static inline size_t fuse_get_frag_size(const struct iov_iter
*ii
,
1262 return min(iov_iter_single_seg_count(ii
), max_size
);
1265 static int fuse_get_user_pages(struct fuse_req
*req
, struct iov_iter
*ii
,
1266 size_t *nbytesp
, int write
)
1268 size_t nbytes
= 0; /* # bytes already packed in req */
1271 /* Special case for kernel I/O: can copy directly into the buffer */
1272 if (ii
->type
& ITER_KVEC
) {
1273 unsigned long user_addr
= fuse_get_user_addr(ii
);
1274 size_t frag_size
= fuse_get_frag_size(ii
, *nbytesp
);
1277 req
->in
.args
[1].value
= (void *) user_addr
;
1279 req
->out
.args
[0].value
= (void *) user_addr
;
1281 iov_iter_advance(ii
, frag_size
);
1282 *nbytesp
= frag_size
;
1286 while (nbytes
< *nbytesp
&& req
->num_pages
< req
->max_pages
) {
1289 ret
= iov_iter_get_pages(ii
, &req
->pages
[req
->num_pages
],
1291 req
->max_pages
- req
->num_pages
,
1296 iov_iter_advance(ii
, ret
);
1300 npages
= (ret
+ PAGE_SIZE
- 1) / PAGE_SIZE
;
1302 req
->page_descs
[req
->num_pages
].offset
= start
;
1303 fuse_page_descs_length_init(req
, req
->num_pages
, npages
);
1305 req
->num_pages
+= npages
;
1306 req
->page_descs
[req
->num_pages
- 1].length
-=
1307 (PAGE_SIZE
- ret
) & (PAGE_SIZE
- 1);
1311 req
->in
.argpages
= 1;
1313 req
->out
.argpages
= 1;
1317 return ret
< 0 ? ret
: 0;
1320 static inline int fuse_iter_npages(const struct iov_iter
*ii_p
)
1322 return iov_iter_npages(ii_p
, FUSE_MAX_PAGES_PER_REQ
);
1325 ssize_t
fuse_direct_io(struct fuse_io_priv
*io
, struct iov_iter
*iter
,
1326 loff_t
*ppos
, int flags
)
1328 int write
= flags
& FUSE_DIO_WRITE
;
1329 int cuse
= flags
& FUSE_DIO_CUSE
;
1330 struct file
*file
= io
->iocb
->ki_filp
;
1331 struct inode
*inode
= file
->f_mapping
->host
;
1332 struct fuse_file
*ff
= file
->private_data
;
1333 struct fuse_conn
*fc
= ff
->fc
;
1334 size_t nmax
= write
? fc
->max_write
: fc
->max_read
;
1336 size_t count
= iov_iter_count(iter
);
1337 pgoff_t idx_from
= pos
>> PAGE_SHIFT
;
1338 pgoff_t idx_to
= (pos
+ count
- 1) >> PAGE_SHIFT
;
1340 struct fuse_req
*req
;
1344 req
= fuse_get_req_for_background(fc
, fuse_iter_npages(iter
));
1346 req
= fuse_get_req(fc
, fuse_iter_npages(iter
));
1348 return PTR_ERR(req
);
1350 if (!cuse
&& fuse_range_is_writeback(inode
, idx_from
, idx_to
)) {
1353 fuse_sync_writes(inode
);
1355 inode_unlock(inode
);
1358 io
->should_dirty
= !write
&& iter_is_iovec(iter
);
1361 fl_owner_t owner
= current
->files
;
1362 size_t nbytes
= min(count
, nmax
);
1363 err
= fuse_get_user_pages(req
, iter
, &nbytes
, write
);
1368 nres
= fuse_send_write(req
, io
, pos
, nbytes
, owner
);
1370 nres
= fuse_send_read(req
, io
, pos
, nbytes
, owner
);
1373 fuse_release_user_pages(req
, io
->should_dirty
);
1374 if (req
->out
.h
.error
) {
1375 err
= req
->out
.h
.error
;
1377 } else if (nres
> nbytes
) {
1388 fuse_put_request(fc
, req
);
1390 req
= fuse_get_req_for_background(fc
,
1391 fuse_iter_npages(iter
));
1393 req
= fuse_get_req(fc
, fuse_iter_npages(iter
));
1399 fuse_put_request(fc
, req
);
1403 return res
> 0 ? res
: err
;
1405 EXPORT_SYMBOL_GPL(fuse_direct_io
);
1407 static ssize_t
__fuse_direct_read(struct fuse_io_priv
*io
,
1408 struct iov_iter
*iter
,
1412 struct inode
*inode
= file_inode(io
->iocb
->ki_filp
);
1414 if (is_bad_inode(inode
))
1417 res
= fuse_direct_io(io
, iter
, ppos
, 0);
1419 fuse_invalidate_attr(inode
);
1424 static ssize_t
fuse_direct_read_iter(struct kiocb
*iocb
, struct iov_iter
*to
)
1426 struct fuse_io_priv io
= FUSE_IO_PRIV_SYNC(iocb
);
1427 return __fuse_direct_read(&io
, to
, &iocb
->ki_pos
);
1430 static ssize_t
fuse_direct_write_iter(struct kiocb
*iocb
, struct iov_iter
*from
)
1432 struct inode
*inode
= file_inode(iocb
->ki_filp
);
1433 struct fuse_io_priv io
= FUSE_IO_PRIV_SYNC(iocb
);
1436 if (is_bad_inode(inode
))
1439 /* Don't allow parallel writes to the same file */
1441 res
= generic_write_checks(iocb
, from
);
1443 res
= fuse_direct_io(&io
, from
, &iocb
->ki_pos
, FUSE_DIO_WRITE
);
1444 fuse_invalidate_attr(inode
);
1446 fuse_write_update_size(inode
, iocb
->ki_pos
);
1447 inode_unlock(inode
);
1452 static void fuse_writepage_free(struct fuse_conn
*fc
, struct fuse_req
*req
)
1456 for (i
= 0; i
< req
->num_pages
; i
++)
1457 __free_page(req
->pages
[i
]);
1460 fuse_file_put(req
->ff
, false);
1463 static void fuse_writepage_finish(struct fuse_conn
*fc
, struct fuse_req
*req
)
1465 struct inode
*inode
= req
->inode
;
1466 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1467 struct backing_dev_info
*bdi
= inode_to_bdi(inode
);
1470 list_del(&req
->writepages_entry
);
1471 for (i
= 0; i
< req
->num_pages
; i
++) {
1472 dec_wb_stat(&bdi
->wb
, WB_WRITEBACK
);
1473 dec_node_page_state(req
->pages
[i
], NR_WRITEBACK_TEMP
);
1474 wb_writeout_inc(&bdi
->wb
);
1476 wake_up(&fi
->page_waitq
);
1479 /* Called under fc->lock, may release and reacquire it */
1480 static void fuse_send_writepage(struct fuse_conn
*fc
, struct fuse_req
*req
,
1482 __releases(fc
->lock
)
1483 __acquires(fc
->lock
)
1485 struct fuse_inode
*fi
= get_fuse_inode(req
->inode
);
1486 struct fuse_write_in
*inarg
= &req
->misc
.write
.in
;
1487 __u64 data_size
= req
->num_pages
* PAGE_SIZE
;
1492 if (inarg
->offset
+ data_size
<= size
) {
1493 inarg
->size
= data_size
;
1494 } else if (inarg
->offset
< size
) {
1495 inarg
->size
= size
- inarg
->offset
;
1497 /* Got truncated off completely */
1501 req
->in
.args
[1].size
= inarg
->size
;
1503 fuse_request_send_background_locked(fc
, req
);
1507 fuse_writepage_finish(fc
, req
);
1508 spin_unlock(&fc
->lock
);
1509 fuse_writepage_free(fc
, req
);
1510 fuse_put_request(fc
, req
);
1511 spin_lock(&fc
->lock
);
1515 * If fi->writectr is positive (no truncate or fsync going on) send
1516 * all queued writepage requests.
1518 * Called with fc->lock
1520 void fuse_flush_writepages(struct inode
*inode
)
1521 __releases(fc
->lock
)
1522 __acquires(fc
->lock
)
1524 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1525 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1526 size_t crop
= i_size_read(inode
);
1527 struct fuse_req
*req
;
1529 while (fi
->writectr
>= 0 && !list_empty(&fi
->queued_writes
)) {
1530 req
= list_entry(fi
->queued_writes
.next
, struct fuse_req
, list
);
1531 list_del_init(&req
->list
);
1532 fuse_send_writepage(fc
, req
, crop
);
1536 static void fuse_writepage_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
1538 struct inode
*inode
= req
->inode
;
1539 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1541 mapping_set_error(inode
->i_mapping
, req
->out
.h
.error
);
1542 spin_lock(&fc
->lock
);
1543 while (req
->misc
.write
.next
) {
1544 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1545 struct fuse_write_in
*inarg
= &req
->misc
.write
.in
;
1546 struct fuse_req
*next
= req
->misc
.write
.next
;
1547 req
->misc
.write
.next
= next
->misc
.write
.next
;
1548 next
->misc
.write
.next
= NULL
;
1549 next
->ff
= fuse_file_get(req
->ff
);
1550 list_add(&next
->writepages_entry
, &fi
->writepages
);
1553 * Skip fuse_flush_writepages() to make it easy to crop requests
1554 * based on primary request size.
1556 * 1st case (trivial): there are no concurrent activities using
1557 * fuse_set/release_nowrite. Then we're on safe side because
1558 * fuse_flush_writepages() would call fuse_send_writepage()
1561 * 2nd case: someone called fuse_set_nowrite and it is waiting
1562 * now for completion of all in-flight requests. This happens
1563 * rarely and no more than once per page, so this should be
1566 * 3rd case: someone (e.g. fuse_do_setattr()) is in the middle
1567 * of fuse_set_nowrite..fuse_release_nowrite section. The fact
1568 * that fuse_set_nowrite returned implies that all in-flight
1569 * requests were completed along with all of their secondary
1570 * requests. Further primary requests are blocked by negative
1571 * writectr. Hence there cannot be any in-flight requests and
1572 * no invocations of fuse_writepage_end() while we're in
1573 * fuse_set_nowrite..fuse_release_nowrite section.
1575 fuse_send_writepage(fc
, next
, inarg
->offset
+ inarg
->size
);
1578 fuse_writepage_finish(fc
, req
);
1579 spin_unlock(&fc
->lock
);
1580 fuse_writepage_free(fc
, req
);
1583 static struct fuse_file
*__fuse_write_file_get(struct fuse_conn
*fc
,
1584 struct fuse_inode
*fi
)
1586 struct fuse_file
*ff
= NULL
;
1588 spin_lock(&fc
->lock
);
1589 if (!list_empty(&fi
->write_files
)) {
1590 ff
= list_entry(fi
->write_files
.next
, struct fuse_file
,
1594 spin_unlock(&fc
->lock
);
1599 static struct fuse_file
*fuse_write_file_get(struct fuse_conn
*fc
,
1600 struct fuse_inode
*fi
)
1602 struct fuse_file
*ff
= __fuse_write_file_get(fc
, fi
);
1607 int fuse_write_inode(struct inode
*inode
, struct writeback_control
*wbc
)
1609 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1610 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1611 struct fuse_file
*ff
;
1614 ff
= __fuse_write_file_get(fc
, fi
);
1615 err
= fuse_flush_times(inode
, ff
);
1617 fuse_file_put(ff
, 0);
1622 static int fuse_writepage_locked(struct page
*page
)
1624 struct address_space
*mapping
= page
->mapping
;
1625 struct inode
*inode
= mapping
->host
;
1626 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1627 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1628 struct fuse_req
*req
;
1629 struct page
*tmp_page
;
1630 int error
= -ENOMEM
;
1632 set_page_writeback(page
);
1634 req
= fuse_request_alloc_nofs(1);
1638 /* writeback always goes to bg_queue */
1639 __set_bit(FR_BACKGROUND
, &req
->flags
);
1640 tmp_page
= alloc_page(GFP_NOFS
| __GFP_HIGHMEM
);
1645 req
->ff
= fuse_write_file_get(fc
, fi
);
1649 fuse_write_fill(req
, req
->ff
, page_offset(page
), 0);
1651 copy_highpage(tmp_page
, page
);
1652 req
->misc
.write
.in
.write_flags
|= FUSE_WRITE_CACHE
;
1653 req
->misc
.write
.next
= NULL
;
1654 req
->in
.argpages
= 1;
1656 req
->pages
[0] = tmp_page
;
1657 req
->page_descs
[0].offset
= 0;
1658 req
->page_descs
[0].length
= PAGE_SIZE
;
1659 req
->end
= fuse_writepage_end
;
1662 inc_wb_stat(&inode_to_bdi(inode
)->wb
, WB_WRITEBACK
);
1663 inc_node_page_state(tmp_page
, NR_WRITEBACK_TEMP
);
1665 spin_lock(&fc
->lock
);
1666 list_add(&req
->writepages_entry
, &fi
->writepages
);
1667 list_add_tail(&req
->list
, &fi
->queued_writes
);
1668 fuse_flush_writepages(inode
);
1669 spin_unlock(&fc
->lock
);
1671 end_page_writeback(page
);
1676 __free_page(tmp_page
);
1678 fuse_request_free(req
);
1680 mapping_set_error(page
->mapping
, error
);
1681 end_page_writeback(page
);
1685 static int fuse_writepage(struct page
*page
, struct writeback_control
*wbc
)
1689 if (fuse_page_is_writeback(page
->mapping
->host
, page
->index
)) {
1691 * ->writepages() should be called for sync() and friends. We
1692 * should only get here on direct reclaim and then we are
1693 * allowed to skip a page which is already in flight
1695 WARN_ON(wbc
->sync_mode
== WB_SYNC_ALL
);
1697 redirty_page_for_writepage(wbc
, page
);
1701 err
= fuse_writepage_locked(page
);
1707 struct fuse_fill_wb_data
{
1708 struct fuse_req
*req
;
1709 struct fuse_file
*ff
;
1710 struct inode
*inode
;
1711 struct page
**orig_pages
;
1714 static void fuse_writepages_send(struct fuse_fill_wb_data
*data
)
1716 struct fuse_req
*req
= data
->req
;
1717 struct inode
*inode
= data
->inode
;
1718 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1719 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1720 int num_pages
= req
->num_pages
;
1723 req
->ff
= fuse_file_get(data
->ff
);
1724 spin_lock(&fc
->lock
);
1725 list_add_tail(&req
->list
, &fi
->queued_writes
);
1726 fuse_flush_writepages(inode
);
1727 spin_unlock(&fc
->lock
);
1729 for (i
= 0; i
< num_pages
; i
++)
1730 end_page_writeback(data
->orig_pages
[i
]);
1733 static bool fuse_writepage_in_flight(struct fuse_req
*new_req
,
1736 struct fuse_conn
*fc
= get_fuse_conn(new_req
->inode
);
1737 struct fuse_inode
*fi
= get_fuse_inode(new_req
->inode
);
1738 struct fuse_req
*tmp
;
1739 struct fuse_req
*old_req
;
1743 BUG_ON(new_req
->num_pages
!= 0);
1745 spin_lock(&fc
->lock
);
1746 list_del(&new_req
->writepages_entry
);
1747 list_for_each_entry(old_req
, &fi
->writepages
, writepages_entry
) {
1748 BUG_ON(old_req
->inode
!= new_req
->inode
);
1749 curr_index
= old_req
->misc
.write
.in
.offset
>> PAGE_SHIFT
;
1750 if (curr_index
<= page
->index
&&
1751 page
->index
< curr_index
+ old_req
->num_pages
) {
1757 list_add(&new_req
->writepages_entry
, &fi
->writepages
);
1761 new_req
->num_pages
= 1;
1762 for (tmp
= old_req
; tmp
!= NULL
; tmp
= tmp
->misc
.write
.next
) {
1763 BUG_ON(tmp
->inode
!= new_req
->inode
);
1764 curr_index
= tmp
->misc
.write
.in
.offset
>> PAGE_SHIFT
;
1765 if (tmp
->num_pages
== 1 &&
1766 curr_index
== page
->index
) {
1771 if (old_req
->num_pages
== 1 && test_bit(FR_PENDING
, &old_req
->flags
)) {
1772 struct backing_dev_info
*bdi
= inode_to_bdi(page
->mapping
->host
);
1774 copy_highpage(old_req
->pages
[0], page
);
1775 spin_unlock(&fc
->lock
);
1777 dec_wb_stat(&bdi
->wb
, WB_WRITEBACK
);
1778 dec_node_page_state(page
, NR_WRITEBACK_TEMP
);
1779 wb_writeout_inc(&bdi
->wb
);
1780 fuse_writepage_free(fc
, new_req
);
1781 fuse_request_free(new_req
);
1784 new_req
->misc
.write
.next
= old_req
->misc
.write
.next
;
1785 old_req
->misc
.write
.next
= new_req
;
1788 spin_unlock(&fc
->lock
);
1793 static int fuse_writepages_fill(struct page
*page
,
1794 struct writeback_control
*wbc
, void *_data
)
1796 struct fuse_fill_wb_data
*data
= _data
;
1797 struct fuse_req
*req
= data
->req
;
1798 struct inode
*inode
= data
->inode
;
1799 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1800 struct page
*tmp_page
;
1806 data
->ff
= fuse_write_file_get(fc
, get_fuse_inode(inode
));
1812 * Being under writeback is unlikely but possible. For example direct
1813 * read to an mmaped fuse file will set the page dirty twice; once when
1814 * the pages are faulted with get_user_pages(), and then after the read
1817 is_writeback
= fuse_page_is_writeback(inode
, page
->index
);
1819 if (req
&& req
->num_pages
&&
1820 (is_writeback
|| req
->num_pages
== FUSE_MAX_PAGES_PER_REQ
||
1821 (req
->num_pages
+ 1) * PAGE_SIZE
> fc
->max_write
||
1822 data
->orig_pages
[req
->num_pages
- 1]->index
+ 1 != page
->index
)) {
1823 fuse_writepages_send(data
);
1827 tmp_page
= alloc_page(GFP_NOFS
| __GFP_HIGHMEM
);
1832 * The page must not be redirtied until the writeout is completed
1833 * (i.e. userspace has sent a reply to the write request). Otherwise
1834 * there could be more than one temporary page instance for each real
1837 * This is ensured by holding the page lock in page_mkwrite() while
1838 * checking fuse_page_is_writeback(). We already hold the page lock
1839 * since clear_page_dirty_for_io() and keep it held until we add the
1840 * request to the fi->writepages list and increment req->num_pages.
1841 * After this fuse_page_is_writeback() will indicate that the page is
1842 * under writeback, so we can release the page lock.
1844 if (data
->req
== NULL
) {
1845 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1848 req
= fuse_request_alloc_nofs(FUSE_MAX_PAGES_PER_REQ
);
1850 __free_page(tmp_page
);
1854 fuse_write_fill(req
, data
->ff
, page_offset(page
), 0);
1855 req
->misc
.write
.in
.write_flags
|= FUSE_WRITE_CACHE
;
1856 req
->misc
.write
.next
= NULL
;
1857 req
->in
.argpages
= 1;
1858 __set_bit(FR_BACKGROUND
, &req
->flags
);
1860 req
->end
= fuse_writepage_end
;
1863 spin_lock(&fc
->lock
);
1864 list_add(&req
->writepages_entry
, &fi
->writepages
);
1865 spin_unlock(&fc
->lock
);
1869 set_page_writeback(page
);
1871 copy_highpage(tmp_page
, page
);
1872 req
->pages
[req
->num_pages
] = tmp_page
;
1873 req
->page_descs
[req
->num_pages
].offset
= 0;
1874 req
->page_descs
[req
->num_pages
].length
= PAGE_SIZE
;
1876 inc_wb_stat(&inode_to_bdi(inode
)->wb
, WB_WRITEBACK
);
1877 inc_node_page_state(tmp_page
, NR_WRITEBACK_TEMP
);
1880 if (is_writeback
&& fuse_writepage_in_flight(req
, page
)) {
1881 end_page_writeback(page
);
1885 data
->orig_pages
[req
->num_pages
] = page
;
1888 * Protected by fc->lock against concurrent access by
1889 * fuse_page_is_writeback().
1891 spin_lock(&fc
->lock
);
1893 spin_unlock(&fc
->lock
);
1901 static int fuse_writepages(struct address_space
*mapping
,
1902 struct writeback_control
*wbc
)
1904 struct inode
*inode
= mapping
->host
;
1905 struct fuse_fill_wb_data data
;
1909 if (is_bad_inode(inode
))
1917 data
.orig_pages
= kcalloc(FUSE_MAX_PAGES_PER_REQ
,
1918 sizeof(struct page
*),
1920 if (!data
.orig_pages
)
1923 err
= write_cache_pages(mapping
, wbc
, fuse_writepages_fill
, &data
);
1925 /* Ignore errors if we can write at least one page */
1926 BUG_ON(!data
.req
->num_pages
);
1927 fuse_writepages_send(&data
);
1931 fuse_file_put(data
.ff
, false);
1933 kfree(data
.orig_pages
);
1939 * It's worthy to make sure that space is reserved on disk for the write,
1940 * but how to implement it without killing performance need more thinking.
1942 static int fuse_write_begin(struct file
*file
, struct address_space
*mapping
,
1943 loff_t pos
, unsigned len
, unsigned flags
,
1944 struct page
**pagep
, void **fsdata
)
1946 pgoff_t index
= pos
>> PAGE_SHIFT
;
1947 struct fuse_conn
*fc
= get_fuse_conn(file_inode(file
));
1952 WARN_ON(!fc
->writeback_cache
);
1954 page
= grab_cache_page_write_begin(mapping
, index
, flags
);
1958 fuse_wait_on_page_writeback(mapping
->host
, page
->index
);
1960 if (PageUptodate(page
) || len
== PAGE_SIZE
)
1963 * Check if the start this page comes after the end of file, in which
1964 * case the readpage can be optimized away.
1966 fsize
= i_size_read(mapping
->host
);
1967 if (fsize
<= (pos
& PAGE_MASK
)) {
1968 size_t off
= pos
& ~PAGE_MASK
;
1970 zero_user_segment(page
, 0, off
);
1973 err
= fuse_do_readpage(file
, page
);
1987 static int fuse_write_end(struct file
*file
, struct address_space
*mapping
,
1988 loff_t pos
, unsigned len
, unsigned copied
,
1989 struct page
*page
, void *fsdata
)
1991 struct inode
*inode
= page
->mapping
->host
;
1993 /* Haven't copied anything? Skip zeroing, size extending, dirtying. */
1997 if (!PageUptodate(page
)) {
1998 /* Zero any unwritten bytes at the end of the page */
1999 size_t endoff
= (pos
+ copied
) & ~PAGE_MASK
;
2001 zero_user_segment(page
, endoff
, PAGE_SIZE
);
2002 SetPageUptodate(page
);
2005 fuse_write_update_size(inode
, pos
+ copied
);
2006 set_page_dirty(page
);
2015 static int fuse_launder_page(struct page
*page
)
2018 if (clear_page_dirty_for_io(page
)) {
2019 struct inode
*inode
= page
->mapping
->host
;
2020 err
= fuse_writepage_locked(page
);
2022 fuse_wait_on_page_writeback(inode
, page
->index
);
2028 * Write back dirty pages now, because there may not be any suitable
2031 static void fuse_vma_close(struct vm_area_struct
*vma
)
2033 filemap_write_and_wait(vma
->vm_file
->f_mapping
);
2037 * Wait for writeback against this page to complete before allowing it
2038 * to be marked dirty again, and hence written back again, possibly
2039 * before the previous writepage completed.
2041 * Block here, instead of in ->writepage(), so that the userspace fs
2042 * can only block processes actually operating on the filesystem.
2044 * Otherwise unprivileged userspace fs would be able to block
2049 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
2051 static int fuse_page_mkwrite(struct vm_fault
*vmf
)
2053 struct page
*page
= vmf
->page
;
2054 struct inode
*inode
= file_inode(vmf
->vma
->vm_file
);
2056 file_update_time(vmf
->vma
->vm_file
);
2058 if (page
->mapping
!= inode
->i_mapping
) {
2060 return VM_FAULT_NOPAGE
;
2063 fuse_wait_on_page_writeback(inode
, page
->index
);
2064 return VM_FAULT_LOCKED
;
2067 static const struct vm_operations_struct fuse_file_vm_ops
= {
2068 .close
= fuse_vma_close
,
2069 .fault
= filemap_fault
,
2070 .map_pages
= filemap_map_pages
,
2071 .page_mkwrite
= fuse_page_mkwrite
,
2074 static int fuse_file_mmap(struct file
*file
, struct vm_area_struct
*vma
)
2076 if ((vma
->vm_flags
& VM_SHARED
) && (vma
->vm_flags
& VM_MAYWRITE
))
2077 fuse_link_write_file(file
);
2079 file_accessed(file
);
2080 vma
->vm_ops
= &fuse_file_vm_ops
;
2084 static int fuse_direct_mmap(struct file
*file
, struct vm_area_struct
*vma
)
2086 /* Can't provide the coherency needed for MAP_SHARED */
2087 if (vma
->vm_flags
& VM_MAYSHARE
)
2090 invalidate_inode_pages2(file
->f_mapping
);
2092 return generic_file_mmap(file
, vma
);
2095 static int convert_fuse_file_lock(struct fuse_conn
*fc
,
2096 const struct fuse_file_lock
*ffl
,
2097 struct file_lock
*fl
)
2099 switch (ffl
->type
) {
2105 if (ffl
->start
> OFFSET_MAX
|| ffl
->end
> OFFSET_MAX
||
2106 ffl
->end
< ffl
->start
)
2109 fl
->fl_start
= ffl
->start
;
2110 fl
->fl_end
= ffl
->end
;
2113 * Convert pid into init's pid namespace. The locks API will
2114 * translate it into the caller's pid namespace.
2117 fl
->fl_pid
= pid_nr_ns(find_pid_ns(ffl
->pid
, fc
->pid_ns
), &init_pid_ns
);
2124 fl
->fl_type
= ffl
->type
;
2128 static void fuse_lk_fill(struct fuse_args
*args
, struct file
*file
,
2129 const struct file_lock
*fl
, int opcode
, pid_t pid
,
2130 int flock
, struct fuse_lk_in
*inarg
)
2132 struct inode
*inode
= file_inode(file
);
2133 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2134 struct fuse_file
*ff
= file
->private_data
;
2136 memset(inarg
, 0, sizeof(*inarg
));
2138 inarg
->owner
= fuse_lock_owner_id(fc
, fl
->fl_owner
);
2139 inarg
->lk
.start
= fl
->fl_start
;
2140 inarg
->lk
.end
= fl
->fl_end
;
2141 inarg
->lk
.type
= fl
->fl_type
;
2142 inarg
->lk
.pid
= pid
;
2144 inarg
->lk_flags
|= FUSE_LK_FLOCK
;
2145 args
->in
.h
.opcode
= opcode
;
2146 args
->in
.h
.nodeid
= get_node_id(inode
);
2147 args
->in
.numargs
= 1;
2148 args
->in
.args
[0].size
= sizeof(*inarg
);
2149 args
->in
.args
[0].value
= inarg
;
2152 static int fuse_getlk(struct file
*file
, struct file_lock
*fl
)
2154 struct inode
*inode
= file_inode(file
);
2155 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2157 struct fuse_lk_in inarg
;
2158 struct fuse_lk_out outarg
;
2161 fuse_lk_fill(&args
, file
, fl
, FUSE_GETLK
, 0, 0, &inarg
);
2162 args
.out
.numargs
= 1;
2163 args
.out
.args
[0].size
= sizeof(outarg
);
2164 args
.out
.args
[0].value
= &outarg
;
2165 err
= fuse_simple_request(fc
, &args
);
2167 err
= convert_fuse_file_lock(fc
, &outarg
.lk
, fl
);
2172 static int fuse_setlk(struct file
*file
, struct file_lock
*fl
, int flock
)
2174 struct inode
*inode
= file_inode(file
);
2175 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2177 struct fuse_lk_in inarg
;
2178 int opcode
= (fl
->fl_flags
& FL_SLEEP
) ? FUSE_SETLKW
: FUSE_SETLK
;
2179 struct pid
*pid
= fl
->fl_type
!= F_UNLCK
? task_tgid(current
) : NULL
;
2180 pid_t pid_nr
= pid_nr_ns(pid
, fc
->pid_ns
);
2183 if (fl
->fl_lmops
&& fl
->fl_lmops
->lm_grant
) {
2184 /* NLM needs asynchronous locks, which we don't support yet */
2188 /* Unlock on close is handled by the flush method */
2189 if ((fl
->fl_flags
& FL_CLOSE_POSIX
) == FL_CLOSE_POSIX
)
2192 fuse_lk_fill(&args
, file
, fl
, opcode
, pid_nr
, flock
, &inarg
);
2193 err
= fuse_simple_request(fc
, &args
);
2195 /* locking is restartable */
2202 static int fuse_file_lock(struct file
*file
, int cmd
, struct file_lock
*fl
)
2204 struct inode
*inode
= file_inode(file
);
2205 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2208 if (cmd
== F_CANCELLK
) {
2210 } else if (cmd
== F_GETLK
) {
2212 posix_test_lock(file
, fl
);
2215 err
= fuse_getlk(file
, fl
);
2218 err
= posix_lock_file(file
, fl
, NULL
);
2220 err
= fuse_setlk(file
, fl
, 0);
2225 static int fuse_file_flock(struct file
*file
, int cmd
, struct file_lock
*fl
)
2227 struct inode
*inode
= file_inode(file
);
2228 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2232 err
= locks_lock_file_wait(file
, fl
);
2234 struct fuse_file
*ff
= file
->private_data
;
2236 /* emulate flock with POSIX locks */
2238 err
= fuse_setlk(file
, fl
, 1);
2244 static sector_t
fuse_bmap(struct address_space
*mapping
, sector_t block
)
2246 struct inode
*inode
= mapping
->host
;
2247 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2249 struct fuse_bmap_in inarg
;
2250 struct fuse_bmap_out outarg
;
2253 if (!inode
->i_sb
->s_bdev
|| fc
->no_bmap
)
2256 memset(&inarg
, 0, sizeof(inarg
));
2257 inarg
.block
= block
;
2258 inarg
.blocksize
= inode
->i_sb
->s_blocksize
;
2259 args
.in
.h
.opcode
= FUSE_BMAP
;
2260 args
.in
.h
.nodeid
= get_node_id(inode
);
2261 args
.in
.numargs
= 1;
2262 args
.in
.args
[0].size
= sizeof(inarg
);
2263 args
.in
.args
[0].value
= &inarg
;
2264 args
.out
.numargs
= 1;
2265 args
.out
.args
[0].size
= sizeof(outarg
);
2266 args
.out
.args
[0].value
= &outarg
;
2267 err
= fuse_simple_request(fc
, &args
);
2271 return err
? 0 : outarg
.block
;
2274 static loff_t
fuse_lseek(struct file
*file
, loff_t offset
, int whence
)
2276 struct inode
*inode
= file
->f_mapping
->host
;
2277 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2278 struct fuse_file
*ff
= file
->private_data
;
2280 struct fuse_lseek_in inarg
= {
2285 struct fuse_lseek_out outarg
;
2291 args
.in
.h
.opcode
= FUSE_LSEEK
;
2292 args
.in
.h
.nodeid
= ff
->nodeid
;
2293 args
.in
.numargs
= 1;
2294 args
.in
.args
[0].size
= sizeof(inarg
);
2295 args
.in
.args
[0].value
= &inarg
;
2296 args
.out
.numargs
= 1;
2297 args
.out
.args
[0].size
= sizeof(outarg
);
2298 args
.out
.args
[0].value
= &outarg
;
2299 err
= fuse_simple_request(fc
, &args
);
2301 if (err
== -ENOSYS
) {
2308 return vfs_setpos(file
, outarg
.offset
, inode
->i_sb
->s_maxbytes
);
2311 err
= fuse_update_attributes(inode
, file
);
2313 return generic_file_llseek(file
, offset
, whence
);
2318 static loff_t
fuse_file_llseek(struct file
*file
, loff_t offset
, int whence
)
2321 struct inode
*inode
= file_inode(file
);
2326 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
2327 retval
= generic_file_llseek(file
, offset
, whence
);
2331 retval
= fuse_update_attributes(inode
, file
);
2333 retval
= generic_file_llseek(file
, offset
, whence
);
2334 inode_unlock(inode
);
2339 retval
= fuse_lseek(file
, offset
, whence
);
2340 inode_unlock(inode
);
2350 * CUSE servers compiled on 32bit broke on 64bit kernels because the
2351 * ABI was defined to be 'struct iovec' which is different on 32bit
2352 * and 64bit. Fortunately we can determine which structure the server
2353 * used from the size of the reply.
2355 static int fuse_copy_ioctl_iovec_old(struct iovec
*dst
, void *src
,
2356 size_t transferred
, unsigned count
,
2359 #ifdef CONFIG_COMPAT
2360 if (count
* sizeof(struct compat_iovec
) == transferred
) {
2361 struct compat_iovec
*ciov
= src
;
2365 * With this interface a 32bit server cannot support
2366 * non-compat (i.e. ones coming from 64bit apps) ioctl
2372 for (i
= 0; i
< count
; i
++) {
2373 dst
[i
].iov_base
= compat_ptr(ciov
[i
].iov_base
);
2374 dst
[i
].iov_len
= ciov
[i
].iov_len
;
2380 if (count
* sizeof(struct iovec
) != transferred
)
2383 memcpy(dst
, src
, transferred
);
2387 /* Make sure iov_length() won't overflow */
2388 static int fuse_verify_ioctl_iov(struct iovec
*iov
, size_t count
)
2391 u32 max
= FUSE_MAX_PAGES_PER_REQ
<< PAGE_SHIFT
;
2393 for (n
= 0; n
< count
; n
++, iov
++) {
2394 if (iov
->iov_len
> (size_t) max
)
2396 max
-= iov
->iov_len
;
2401 static int fuse_copy_ioctl_iovec(struct fuse_conn
*fc
, struct iovec
*dst
,
2402 void *src
, size_t transferred
, unsigned count
,
2406 struct fuse_ioctl_iovec
*fiov
= src
;
2408 if (fc
->minor
< 16) {
2409 return fuse_copy_ioctl_iovec_old(dst
, src
, transferred
,
2413 if (count
* sizeof(struct fuse_ioctl_iovec
) != transferred
)
2416 for (i
= 0; i
< count
; i
++) {
2417 /* Did the server supply an inappropriate value? */
2418 if (fiov
[i
].base
!= (unsigned long) fiov
[i
].base
||
2419 fiov
[i
].len
!= (unsigned long) fiov
[i
].len
)
2422 dst
[i
].iov_base
= (void __user
*) (unsigned long) fiov
[i
].base
;
2423 dst
[i
].iov_len
= (size_t) fiov
[i
].len
;
2425 #ifdef CONFIG_COMPAT
2427 (ptr_to_compat(dst
[i
].iov_base
) != fiov
[i
].base
||
2428 (compat_size_t
) dst
[i
].iov_len
!= fiov
[i
].len
))
2438 * For ioctls, there is no generic way to determine how much memory
2439 * needs to be read and/or written. Furthermore, ioctls are allowed
2440 * to dereference the passed pointer, so the parameter requires deep
2441 * copying but FUSE has no idea whatsoever about what to copy in or
2444 * This is solved by allowing FUSE server to retry ioctl with
2445 * necessary in/out iovecs. Let's assume the ioctl implementation
2446 * needs to read in the following structure.
2453 * On the first callout to FUSE server, inarg->in_size and
2454 * inarg->out_size will be NULL; then, the server completes the ioctl
2455 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
2456 * the actual iov array to
2458 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
2460 * which tells FUSE to copy in the requested area and retry the ioctl.
2461 * On the second round, the server has access to the structure and
2462 * from that it can tell what to look for next, so on the invocation,
2463 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
2465 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
2466 * { .iov_base = a.buf, .iov_len = a.buflen } }
2468 * FUSE will copy both struct a and the pointed buffer from the
2469 * process doing the ioctl and retry ioctl with both struct a and the
2472 * This time, FUSE server has everything it needs and completes ioctl
2473 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
2475 * Copying data out works the same way.
2477 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
2478 * automatically initializes in and out iovs by decoding @cmd with
2479 * _IOC_* macros and the server is not allowed to request RETRY. This
2480 * limits ioctl data transfers to well-formed ioctls and is the forced
2481 * behavior for all FUSE servers.
2483 long fuse_do_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
,
2486 struct fuse_file
*ff
= file
->private_data
;
2487 struct fuse_conn
*fc
= ff
->fc
;
2488 struct fuse_ioctl_in inarg
= {
2494 struct fuse_ioctl_out outarg
;
2495 struct fuse_req
*req
= NULL
;
2496 struct page
**pages
= NULL
;
2497 struct iovec
*iov_page
= NULL
;
2498 struct iovec
*in_iov
= NULL
, *out_iov
= NULL
;
2499 unsigned int in_iovs
= 0, out_iovs
= 0, num_pages
= 0, max_pages
;
2500 size_t in_size
, out_size
, transferred
, c
;
2504 #if BITS_PER_LONG == 32
2505 inarg
.flags
|= FUSE_IOCTL_32BIT
;
2507 if (flags
& FUSE_IOCTL_COMPAT
)
2508 inarg
.flags
|= FUSE_IOCTL_32BIT
;
2511 /* assume all the iovs returned by client always fits in a page */
2512 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec
) * FUSE_IOCTL_MAX_IOV
> PAGE_SIZE
);
2515 pages
= kcalloc(FUSE_MAX_PAGES_PER_REQ
, sizeof(pages
[0]), GFP_KERNEL
);
2516 iov_page
= (struct iovec
*) __get_free_page(GFP_KERNEL
);
2517 if (!pages
|| !iov_page
)
2521 * If restricted, initialize IO parameters as encoded in @cmd.
2522 * RETRY from server is not allowed.
2524 if (!(flags
& FUSE_IOCTL_UNRESTRICTED
)) {
2525 struct iovec
*iov
= iov_page
;
2527 iov
->iov_base
= (void __user
*)arg
;
2528 iov
->iov_len
= _IOC_SIZE(cmd
);
2530 if (_IOC_DIR(cmd
) & _IOC_WRITE
) {
2535 if (_IOC_DIR(cmd
) & _IOC_READ
) {
2542 inarg
.in_size
= in_size
= iov_length(in_iov
, in_iovs
);
2543 inarg
.out_size
= out_size
= iov_length(out_iov
, out_iovs
);
2546 * Out data can be used either for actual out data or iovs,
2547 * make sure there always is at least one page.
2549 out_size
= max_t(size_t, out_size
, PAGE_SIZE
);
2550 max_pages
= DIV_ROUND_UP(max(in_size
, out_size
), PAGE_SIZE
);
2552 /* make sure there are enough buffer pages and init request with them */
2554 if (max_pages
> FUSE_MAX_PAGES_PER_REQ
)
2556 while (num_pages
< max_pages
) {
2557 pages
[num_pages
] = alloc_page(GFP_KERNEL
| __GFP_HIGHMEM
);
2558 if (!pages
[num_pages
])
2563 req
= fuse_get_req(fc
, num_pages
);
2569 memcpy(req
->pages
, pages
, sizeof(req
->pages
[0]) * num_pages
);
2570 req
->num_pages
= num_pages
;
2571 fuse_page_descs_length_init(req
, 0, req
->num_pages
);
2573 /* okay, let's send it to the client */
2574 req
->in
.h
.opcode
= FUSE_IOCTL
;
2575 req
->in
.h
.nodeid
= ff
->nodeid
;
2576 req
->in
.numargs
= 1;
2577 req
->in
.args
[0].size
= sizeof(inarg
);
2578 req
->in
.args
[0].value
= &inarg
;
2581 req
->in
.args
[1].size
= in_size
;
2582 req
->in
.argpages
= 1;
2585 iov_iter_init(&ii
, WRITE
, in_iov
, in_iovs
, in_size
);
2586 for (i
= 0; iov_iter_count(&ii
) && !WARN_ON(i
>= num_pages
); i
++) {
2587 c
= copy_page_from_iter(pages
[i
], 0, PAGE_SIZE
, &ii
);
2588 if (c
!= PAGE_SIZE
&& iov_iter_count(&ii
))
2593 req
->out
.numargs
= 2;
2594 req
->out
.args
[0].size
= sizeof(outarg
);
2595 req
->out
.args
[0].value
= &outarg
;
2596 req
->out
.args
[1].size
= out_size
;
2597 req
->out
.argpages
= 1;
2598 req
->out
.argvar
= 1;
2600 fuse_request_send(fc
, req
);
2601 err
= req
->out
.h
.error
;
2602 transferred
= req
->out
.args
[1].size
;
2603 fuse_put_request(fc
, req
);
2608 /* did it ask for retry? */
2609 if (outarg
.flags
& FUSE_IOCTL_RETRY
) {
2612 /* no retry if in restricted mode */
2614 if (!(flags
& FUSE_IOCTL_UNRESTRICTED
))
2617 in_iovs
= outarg
.in_iovs
;
2618 out_iovs
= outarg
.out_iovs
;
2621 * Make sure things are in boundary, separate checks
2622 * are to protect against overflow.
2625 if (in_iovs
> FUSE_IOCTL_MAX_IOV
||
2626 out_iovs
> FUSE_IOCTL_MAX_IOV
||
2627 in_iovs
+ out_iovs
> FUSE_IOCTL_MAX_IOV
)
2630 vaddr
= kmap_atomic(pages
[0]);
2631 err
= fuse_copy_ioctl_iovec(fc
, iov_page
, vaddr
,
2632 transferred
, in_iovs
+ out_iovs
,
2633 (flags
& FUSE_IOCTL_COMPAT
) != 0);
2634 kunmap_atomic(vaddr
);
2639 out_iov
= in_iov
+ in_iovs
;
2641 err
= fuse_verify_ioctl_iov(in_iov
, in_iovs
);
2645 err
= fuse_verify_ioctl_iov(out_iov
, out_iovs
);
2653 if (transferred
> inarg
.out_size
)
2657 iov_iter_init(&ii
, READ
, out_iov
, out_iovs
, transferred
);
2658 for (i
= 0; iov_iter_count(&ii
) && !WARN_ON(i
>= num_pages
); i
++) {
2659 c
= copy_page_to_iter(pages
[i
], 0, PAGE_SIZE
, &ii
);
2660 if (c
!= PAGE_SIZE
&& iov_iter_count(&ii
))
2666 fuse_put_request(fc
, req
);
2667 free_page((unsigned long) iov_page
);
2669 __free_page(pages
[--num_pages
]);
2672 return err
? err
: outarg
.result
;
2674 EXPORT_SYMBOL_GPL(fuse_do_ioctl
);
2676 long fuse_ioctl_common(struct file
*file
, unsigned int cmd
,
2677 unsigned long arg
, unsigned int flags
)
2679 struct inode
*inode
= file_inode(file
);
2680 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2682 if (!fuse_allow_current_process(fc
))
2685 if (is_bad_inode(inode
))
2688 return fuse_do_ioctl(file
, cmd
, arg
, flags
);
2691 static long fuse_file_ioctl(struct file
*file
, unsigned int cmd
,
2694 return fuse_ioctl_common(file
, cmd
, arg
, 0);
2697 static long fuse_file_compat_ioctl(struct file
*file
, unsigned int cmd
,
2700 return fuse_ioctl_common(file
, cmd
, arg
, FUSE_IOCTL_COMPAT
);
2704 * All files which have been polled are linked to RB tree
2705 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2706 * find the matching one.
2708 static struct rb_node
**fuse_find_polled_node(struct fuse_conn
*fc
, u64 kh
,
2709 struct rb_node
**parent_out
)
2711 struct rb_node
**link
= &fc
->polled_files
.rb_node
;
2712 struct rb_node
*last
= NULL
;
2715 struct fuse_file
*ff
;
2718 ff
= rb_entry(last
, struct fuse_file
, polled_node
);
2721 link
= &last
->rb_left
;
2722 else if (kh
> ff
->kh
)
2723 link
= &last
->rb_right
;
2734 * The file is about to be polled. Make sure it's on the polled_files
2735 * RB tree. Note that files once added to the polled_files tree are
2736 * not removed before the file is released. This is because a file
2737 * polled once is likely to be polled again.
2739 static void fuse_register_polled_file(struct fuse_conn
*fc
,
2740 struct fuse_file
*ff
)
2742 spin_lock(&fc
->lock
);
2743 if (RB_EMPTY_NODE(&ff
->polled_node
)) {
2744 struct rb_node
**link
, *uninitialized_var(parent
);
2746 link
= fuse_find_polled_node(fc
, ff
->kh
, &parent
);
2748 rb_link_node(&ff
->polled_node
, parent
, link
);
2749 rb_insert_color(&ff
->polled_node
, &fc
->polled_files
);
2751 spin_unlock(&fc
->lock
);
2754 __poll_t
fuse_file_poll(struct file
*file
, poll_table
*wait
)
2756 struct fuse_file
*ff
= file
->private_data
;
2757 struct fuse_conn
*fc
= ff
->fc
;
2758 struct fuse_poll_in inarg
= { .fh
= ff
->fh
, .kh
= ff
->kh
};
2759 struct fuse_poll_out outarg
;
2764 return DEFAULT_POLLMASK
;
2766 poll_wait(file
, &ff
->poll_wait
, wait
);
2767 inarg
.events
= mangle_poll(poll_requested_events(wait
));
2770 * Ask for notification iff there's someone waiting for it.
2771 * The client may ignore the flag and always notify.
2773 if (waitqueue_active(&ff
->poll_wait
)) {
2774 inarg
.flags
|= FUSE_POLL_SCHEDULE_NOTIFY
;
2775 fuse_register_polled_file(fc
, ff
);
2778 args
.in
.h
.opcode
= FUSE_POLL
;
2779 args
.in
.h
.nodeid
= ff
->nodeid
;
2780 args
.in
.numargs
= 1;
2781 args
.in
.args
[0].size
= sizeof(inarg
);
2782 args
.in
.args
[0].value
= &inarg
;
2783 args
.out
.numargs
= 1;
2784 args
.out
.args
[0].size
= sizeof(outarg
);
2785 args
.out
.args
[0].value
= &outarg
;
2786 err
= fuse_simple_request(fc
, &args
);
2789 return demangle_poll(outarg
.revents
);
2790 if (err
== -ENOSYS
) {
2792 return DEFAULT_POLLMASK
;
2796 EXPORT_SYMBOL_GPL(fuse_file_poll
);
2799 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2800 * wakes up the poll waiters.
2802 int fuse_notify_poll_wakeup(struct fuse_conn
*fc
,
2803 struct fuse_notify_poll_wakeup_out
*outarg
)
2805 u64 kh
= outarg
->kh
;
2806 struct rb_node
**link
;
2808 spin_lock(&fc
->lock
);
2810 link
= fuse_find_polled_node(fc
, kh
, NULL
);
2812 struct fuse_file
*ff
;
2814 ff
= rb_entry(*link
, struct fuse_file
, polled_node
);
2815 wake_up_interruptible_sync(&ff
->poll_wait
);
2818 spin_unlock(&fc
->lock
);
2822 static void fuse_do_truncate(struct file
*file
)
2824 struct inode
*inode
= file
->f_mapping
->host
;
2827 attr
.ia_valid
= ATTR_SIZE
;
2828 attr
.ia_size
= i_size_read(inode
);
2830 attr
.ia_file
= file
;
2831 attr
.ia_valid
|= ATTR_FILE
;
2833 fuse_do_setattr(file_dentry(file
), &attr
, file
);
2836 static inline loff_t
fuse_round_up(loff_t off
)
2838 return round_up(off
, FUSE_MAX_PAGES_PER_REQ
<< PAGE_SHIFT
);
2842 fuse_direct_IO(struct kiocb
*iocb
, struct iov_iter
*iter
)
2844 DECLARE_COMPLETION_ONSTACK(wait
);
2846 struct file
*file
= iocb
->ki_filp
;
2847 struct fuse_file
*ff
= file
->private_data
;
2848 bool async_dio
= ff
->fc
->async_dio
;
2850 struct inode
*inode
;
2852 size_t count
= iov_iter_count(iter
);
2853 loff_t offset
= iocb
->ki_pos
;
2854 struct fuse_io_priv
*io
;
2857 inode
= file
->f_mapping
->host
;
2858 i_size
= i_size_read(inode
);
2860 if ((iov_iter_rw(iter
) == READ
) && (offset
> i_size
))
2863 /* optimization for short read */
2864 if (async_dio
&& iov_iter_rw(iter
) != WRITE
&& offset
+ count
> i_size
) {
2865 if (offset
>= i_size
)
2867 iov_iter_truncate(iter
, fuse_round_up(i_size
- offset
));
2868 count
= iov_iter_count(iter
);
2871 io
= kmalloc(sizeof(struct fuse_io_priv
), GFP_KERNEL
);
2874 spin_lock_init(&io
->lock
);
2875 kref_init(&io
->refcnt
);
2879 io
->offset
= offset
;
2880 io
->write
= (iov_iter_rw(iter
) == WRITE
);
2883 * By default, we want to optimize all I/Os with async request
2884 * submission to the client filesystem if supported.
2886 io
->async
= async_dio
;
2888 io
->blocking
= is_sync_kiocb(iocb
);
2891 * We cannot asynchronously extend the size of a file.
2892 * In such case the aio will behave exactly like sync io.
2894 if ((offset
+ count
> i_size
) && iov_iter_rw(iter
) == WRITE
)
2895 io
->blocking
= true;
2897 if (io
->async
&& io
->blocking
) {
2899 * Additional reference to keep io around after
2900 * calling fuse_aio_complete()
2902 kref_get(&io
->refcnt
);
2906 if (iov_iter_rw(iter
) == WRITE
) {
2907 ret
= fuse_direct_io(io
, iter
, &pos
, FUSE_DIO_WRITE
);
2908 fuse_invalidate_attr(inode
);
2910 ret
= __fuse_direct_read(io
, iter
, &pos
);
2914 fuse_aio_complete(io
, ret
< 0 ? ret
: 0, -1);
2916 /* we have a non-extending, async request, so return */
2918 return -EIOCBQUEUED
;
2920 wait_for_completion(&wait
);
2921 ret
= fuse_get_res_by_io(io
);
2924 kref_put(&io
->refcnt
, fuse_io_release
);
2926 if (iov_iter_rw(iter
) == WRITE
) {
2928 fuse_write_update_size(inode
, pos
);
2929 else if (ret
< 0 && offset
+ count
> i_size
)
2930 fuse_do_truncate(file
);
2936 static long fuse_file_fallocate(struct file
*file
, int mode
, loff_t offset
,
2939 struct fuse_file
*ff
= file
->private_data
;
2940 struct inode
*inode
= file_inode(file
);
2941 struct fuse_inode
*fi
= get_fuse_inode(inode
);
2942 struct fuse_conn
*fc
= ff
->fc
;
2944 struct fuse_fallocate_in inarg
= {
2951 bool lock_inode
= !(mode
& FALLOC_FL_KEEP_SIZE
) ||
2952 (mode
& FALLOC_FL_PUNCH_HOLE
);
2954 if (mode
& ~(FALLOC_FL_KEEP_SIZE
| FALLOC_FL_PUNCH_HOLE
))
2957 if (fc
->no_fallocate
)
2962 if (mode
& FALLOC_FL_PUNCH_HOLE
) {
2963 loff_t endbyte
= offset
+ length
- 1;
2964 err
= filemap_write_and_wait_range(inode
->i_mapping
,
2969 fuse_sync_writes(inode
);
2973 if (!(mode
& FALLOC_FL_KEEP_SIZE
))
2974 set_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
2976 args
.in
.h
.opcode
= FUSE_FALLOCATE
;
2977 args
.in
.h
.nodeid
= ff
->nodeid
;
2978 args
.in
.numargs
= 1;
2979 args
.in
.args
[0].size
= sizeof(inarg
);
2980 args
.in
.args
[0].value
= &inarg
;
2981 err
= fuse_simple_request(fc
, &args
);
2982 if (err
== -ENOSYS
) {
2983 fc
->no_fallocate
= 1;
2989 /* we could have extended the file */
2990 if (!(mode
& FALLOC_FL_KEEP_SIZE
)) {
2991 bool changed
= fuse_write_update_size(inode
, offset
+ length
);
2993 if (changed
&& fc
->writeback_cache
)
2994 file_update_time(file
);
2997 if (mode
& FALLOC_FL_PUNCH_HOLE
)
2998 truncate_pagecache_range(inode
, offset
, offset
+ length
- 1);
3000 fuse_invalidate_attr(inode
);
3003 if (!(mode
& FALLOC_FL_KEEP_SIZE
))
3004 clear_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
3007 inode_unlock(inode
);
3012 static const struct file_operations fuse_file_operations
= {
3013 .llseek
= fuse_file_llseek
,
3014 .read_iter
= fuse_file_read_iter
,
3015 .write_iter
= fuse_file_write_iter
,
3016 .mmap
= fuse_file_mmap
,
3018 .flush
= fuse_flush
,
3019 .release
= fuse_release
,
3020 .fsync
= fuse_fsync
,
3021 .lock
= fuse_file_lock
,
3022 .flock
= fuse_file_flock
,
3023 .splice_read
= generic_file_splice_read
,
3024 .unlocked_ioctl
= fuse_file_ioctl
,
3025 .compat_ioctl
= fuse_file_compat_ioctl
,
3026 .poll
= fuse_file_poll
,
3027 .fallocate
= fuse_file_fallocate
,
3030 static const struct file_operations fuse_direct_io_file_operations
= {
3031 .llseek
= fuse_file_llseek
,
3032 .read_iter
= fuse_direct_read_iter
,
3033 .write_iter
= fuse_direct_write_iter
,
3034 .mmap
= fuse_direct_mmap
,
3036 .flush
= fuse_flush
,
3037 .release
= fuse_release
,
3038 .fsync
= fuse_fsync
,
3039 .lock
= fuse_file_lock
,
3040 .flock
= fuse_file_flock
,
3041 .unlocked_ioctl
= fuse_file_ioctl
,
3042 .compat_ioctl
= fuse_file_compat_ioctl
,
3043 .poll
= fuse_file_poll
,
3044 .fallocate
= fuse_file_fallocate
,
3045 /* no splice_read */
3048 static const struct address_space_operations fuse_file_aops
= {
3049 .readpage
= fuse_readpage
,
3050 .writepage
= fuse_writepage
,
3051 .writepages
= fuse_writepages
,
3052 .launder_page
= fuse_launder_page
,
3053 .readpages
= fuse_readpages
,
3054 .set_page_dirty
= __set_page_dirty_nobuffers
,
3056 .direct_IO
= fuse_direct_IO
,
3057 .write_begin
= fuse_write_begin
,
3058 .write_end
= fuse_write_end
,
3061 void fuse_init_file_inode(struct inode
*inode
)
3063 inode
->i_fop
= &fuse_file_operations
;
3064 inode
->i_data
.a_ops
= &fuse_file_aops
;