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
= kmalloc(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 atomic_set(&ff
->count
, 0);
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 struct fuse_file
*fuse_file_get(struct fuse_file
*ff
)
80 atomic_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 (atomic_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
= fuse_file_get(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
;
250 struct fuse_req
*req
;
252 ff
= file
->private_data
;
256 req
= ff
->reserved_req
;
257 fuse_prepare_release(ff
, file
->f_flags
, opcode
);
260 struct fuse_release_in
*inarg
= &req
->misc
.release
.in
;
261 inarg
->release_flags
|= FUSE_RELEASE_FLOCK_UNLOCK
;
262 inarg
->lock_owner
= fuse_lock_owner_id(ff
->fc
,
265 /* Hold inode until release is finished */
266 req
->misc
.release
.inode
= igrab(file_inode(file
));
269 * Normally this will send the RELEASE request, however if
270 * some asynchronous READ or WRITE requests are outstanding,
271 * the sending will be delayed.
273 * Make the release synchronous if this is a fuseblk mount,
274 * synchronous RELEASE is allowed (and desirable) in this case
275 * because the server can be trusted not to screw up.
277 fuse_file_put(ff
, ff
->fc
->destroy_req
!= NULL
);
280 static int fuse_open(struct inode
*inode
, struct file
*file
)
282 return fuse_open_common(inode
, file
, false);
285 static int fuse_release(struct inode
*inode
, struct file
*file
)
287 struct fuse_conn
*fc
= get_fuse_conn(inode
);
289 /* see fuse_vma_close() for !writeback_cache case */
290 if (fc
->writeback_cache
)
291 write_inode_now(inode
, 1);
293 fuse_release_common(file
, FUSE_RELEASE
);
295 /* return value is ignored by VFS */
299 void fuse_sync_release(struct fuse_file
*ff
, int flags
)
301 WARN_ON(atomic_read(&ff
->count
) > 1);
302 fuse_prepare_release(ff
, flags
, FUSE_RELEASE
);
303 __set_bit(FR_FORCE
, &ff
->reserved_req
->flags
);
304 __clear_bit(FR_BACKGROUND
, &ff
->reserved_req
->flags
);
305 fuse_request_send(ff
->fc
, ff
->reserved_req
);
306 fuse_put_request(ff
->fc
, ff
->reserved_req
);
309 EXPORT_SYMBOL_GPL(fuse_sync_release
);
312 * Scramble the ID space with XTEA, so that the value of the files_struct
313 * pointer is not exposed to userspace.
315 u64
fuse_lock_owner_id(struct fuse_conn
*fc
, fl_owner_t id
)
317 u32
*k
= fc
->scramble_key
;
318 u64 v
= (unsigned long) id
;
324 for (i
= 0; i
< 32; i
++) {
325 v0
+= ((v1
<< 4 ^ v1
>> 5) + v1
) ^ (sum
+ k
[sum
& 3]);
327 v1
+= ((v0
<< 4 ^ v0
>> 5) + v0
) ^ (sum
+ k
[sum
>>11 & 3]);
330 return (u64
) v0
+ ((u64
) v1
<< 32);
334 * Check if any page in a range is under writeback
336 * This is currently done by walking the list of writepage requests
337 * for the inode, which can be pretty inefficient.
339 static bool fuse_range_is_writeback(struct inode
*inode
, pgoff_t idx_from
,
342 struct fuse_conn
*fc
= get_fuse_conn(inode
);
343 struct fuse_inode
*fi
= get_fuse_inode(inode
);
344 struct fuse_req
*req
;
347 spin_lock(&fc
->lock
);
348 list_for_each_entry(req
, &fi
->writepages
, writepages_entry
) {
351 BUG_ON(req
->inode
!= inode
);
352 curr_index
= req
->misc
.write
.in
.offset
>> PAGE_SHIFT
;
353 if (idx_from
< curr_index
+ req
->num_pages
&&
354 curr_index
<= idx_to
) {
359 spin_unlock(&fc
->lock
);
364 static inline bool fuse_page_is_writeback(struct inode
*inode
, pgoff_t index
)
366 return fuse_range_is_writeback(inode
, index
, index
);
370 * Wait for page writeback to be completed.
372 * Since fuse doesn't rely on the VM writeback tracking, this has to
373 * use some other means.
375 static int fuse_wait_on_page_writeback(struct inode
*inode
, pgoff_t index
)
377 struct fuse_inode
*fi
= get_fuse_inode(inode
);
379 wait_event(fi
->page_waitq
, !fuse_page_is_writeback(inode
, index
));
384 * Wait for all pending writepages on the inode to finish.
386 * This is currently done by blocking further writes with FUSE_NOWRITE
387 * and waiting for all sent writes to complete.
389 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
390 * could conflict with truncation.
392 static void fuse_sync_writes(struct inode
*inode
)
394 fuse_set_nowrite(inode
);
395 fuse_release_nowrite(inode
);
398 static int fuse_flush(struct file
*file
, fl_owner_t id
)
400 struct inode
*inode
= file_inode(file
);
401 struct fuse_conn
*fc
= get_fuse_conn(inode
);
402 struct fuse_file
*ff
= file
->private_data
;
403 struct fuse_req
*req
;
404 struct fuse_flush_in inarg
;
407 if (is_bad_inode(inode
))
413 err
= write_inode_now(inode
, 1);
418 fuse_sync_writes(inode
);
421 err
= filemap_check_errors(file
->f_mapping
);
425 req
= fuse_get_req_nofail_nopages(fc
, file
);
426 memset(&inarg
, 0, sizeof(inarg
));
428 inarg
.lock_owner
= fuse_lock_owner_id(fc
, id
);
429 req
->in
.h
.opcode
= FUSE_FLUSH
;
430 req
->in
.h
.nodeid
= get_node_id(inode
);
432 req
->in
.args
[0].size
= sizeof(inarg
);
433 req
->in
.args
[0].value
= &inarg
;
434 __set_bit(FR_FORCE
, &req
->flags
);
435 fuse_request_send(fc
, req
);
436 err
= req
->out
.h
.error
;
437 fuse_put_request(fc
, req
);
438 if (err
== -ENOSYS
) {
445 int fuse_fsync_common(struct file
*file
, loff_t start
, loff_t end
,
446 int datasync
, int isdir
)
448 struct inode
*inode
= file
->f_mapping
->host
;
449 struct fuse_conn
*fc
= get_fuse_conn(inode
);
450 struct fuse_file
*ff
= file
->private_data
;
452 struct fuse_fsync_in inarg
;
455 if (is_bad_inode(inode
))
461 * Start writeback against all dirty pages of the inode, then
462 * wait for all outstanding writes, before sending the FSYNC
465 err
= filemap_write_and_wait_range(inode
->i_mapping
, start
, end
);
469 fuse_sync_writes(inode
);
472 * Due to implementation of fuse writeback
473 * filemap_write_and_wait_range() does not catch errors.
474 * We have to do this directly after fuse_sync_writes()
476 err
= filemap_check_errors(file
->f_mapping
);
480 err
= sync_inode_metadata(inode
, 1);
484 if ((!isdir
&& fc
->no_fsync
) || (isdir
&& fc
->no_fsyncdir
))
487 memset(&inarg
, 0, sizeof(inarg
));
489 inarg
.fsync_flags
= datasync
? 1 : 0;
490 args
.in
.h
.opcode
= isdir
? FUSE_FSYNCDIR
: FUSE_FSYNC
;
491 args
.in
.h
.nodeid
= get_node_id(inode
);
493 args
.in
.args
[0].size
= sizeof(inarg
);
494 args
.in
.args
[0].value
= &inarg
;
495 err
= fuse_simple_request(fc
, &args
);
496 if (err
== -ENOSYS
) {
508 static int fuse_fsync(struct file
*file
, loff_t start
, loff_t end
,
511 return fuse_fsync_common(file
, start
, end
, datasync
, 0);
514 void fuse_read_fill(struct fuse_req
*req
, struct file
*file
, loff_t pos
,
515 size_t count
, int opcode
)
517 struct fuse_read_in
*inarg
= &req
->misc
.read
.in
;
518 struct fuse_file
*ff
= file
->private_data
;
523 inarg
->flags
= file
->f_flags
;
524 req
->in
.h
.opcode
= opcode
;
525 req
->in
.h
.nodeid
= ff
->nodeid
;
527 req
->in
.args
[0].size
= sizeof(struct fuse_read_in
);
528 req
->in
.args
[0].value
= inarg
;
530 req
->out
.numargs
= 1;
531 req
->out
.args
[0].size
= count
;
534 static void fuse_release_user_pages(struct fuse_req
*req
, bool should_dirty
)
538 for (i
= 0; i
< req
->num_pages
; i
++) {
539 struct page
*page
= req
->pages
[i
];
541 set_page_dirty_lock(page
);
546 static void fuse_io_release(struct kref
*kref
)
548 kfree(container_of(kref
, struct fuse_io_priv
, refcnt
));
551 static ssize_t
fuse_get_res_by_io(struct fuse_io_priv
*io
)
556 if (io
->bytes
>= 0 && io
->write
)
559 return io
->bytes
< 0 ? io
->size
: io
->bytes
;
563 * In case of short read, the caller sets 'pos' to the position of
564 * actual end of fuse request in IO request. Otherwise, if bytes_requested
565 * == bytes_transferred or rw == WRITE, the caller sets 'pos' to -1.
568 * User requested DIO read of 64K. It was splitted into two 32K fuse requests,
569 * both submitted asynchronously. The first of them was ACKed by userspace as
570 * fully completed (req->out.args[0].size == 32K) resulting in pos == -1. The
571 * second request was ACKed as short, e.g. only 1K was read, resulting in
574 * Thus, when all fuse requests are completed, the minimal non-negative 'pos'
575 * will be equal to the length of the longest contiguous fragment of
576 * transferred data starting from the beginning of IO request.
578 static void fuse_aio_complete(struct fuse_io_priv
*io
, int err
, ssize_t pos
)
582 spin_lock(&io
->lock
);
584 io
->err
= io
->err
? : err
;
585 else if (pos
>= 0 && (io
->bytes
< 0 || pos
< io
->bytes
))
589 if (!left
&& io
->blocking
)
591 spin_unlock(&io
->lock
);
593 if (!left
&& !io
->blocking
) {
594 ssize_t res
= fuse_get_res_by_io(io
);
597 struct inode
*inode
= file_inode(io
->iocb
->ki_filp
);
598 struct fuse_conn
*fc
= get_fuse_conn(inode
);
599 struct fuse_inode
*fi
= get_fuse_inode(inode
);
601 spin_lock(&fc
->lock
);
602 fi
->attr_version
= ++fc
->attr_version
;
603 spin_unlock(&fc
->lock
);
606 io
->iocb
->ki_complete(io
->iocb
, res
, 0);
609 kref_put(&io
->refcnt
, fuse_io_release
);
612 static void fuse_aio_complete_req(struct fuse_conn
*fc
, struct fuse_req
*req
)
614 struct fuse_io_priv
*io
= req
->io
;
617 fuse_release_user_pages(req
, !io
->write
);
620 if (req
->misc
.write
.in
.size
!= req
->misc
.write
.out
.size
)
621 pos
= req
->misc
.write
.in
.offset
- io
->offset
+
622 req
->misc
.write
.out
.size
;
624 if (req
->misc
.read
.in
.size
!= req
->out
.args
[0].size
)
625 pos
= req
->misc
.read
.in
.offset
- io
->offset
+
626 req
->out
.args
[0].size
;
629 fuse_aio_complete(io
, req
->out
.h
.error
, pos
);
632 static size_t fuse_async_req_send(struct fuse_conn
*fc
, struct fuse_req
*req
,
633 size_t num_bytes
, struct fuse_io_priv
*io
)
635 spin_lock(&io
->lock
);
636 kref_get(&io
->refcnt
);
637 io
->size
+= num_bytes
;
639 spin_unlock(&io
->lock
);
642 req
->end
= fuse_aio_complete_req
;
644 __fuse_get_request(req
);
645 fuse_request_send_background(fc
, req
);
650 static size_t fuse_send_read(struct fuse_req
*req
, struct fuse_io_priv
*io
,
651 loff_t pos
, size_t count
, fl_owner_t owner
)
653 struct file
*file
= io
->file
;
654 struct fuse_file
*ff
= file
->private_data
;
655 struct fuse_conn
*fc
= ff
->fc
;
657 fuse_read_fill(req
, file
, pos
, count
, FUSE_READ
);
659 struct fuse_read_in
*inarg
= &req
->misc
.read
.in
;
661 inarg
->read_flags
|= FUSE_READ_LOCKOWNER
;
662 inarg
->lock_owner
= fuse_lock_owner_id(fc
, owner
);
666 return fuse_async_req_send(fc
, req
, count
, io
);
668 fuse_request_send(fc
, req
);
669 return req
->out
.args
[0].size
;
672 static void fuse_read_update_size(struct inode
*inode
, loff_t size
,
675 struct fuse_conn
*fc
= get_fuse_conn(inode
);
676 struct fuse_inode
*fi
= get_fuse_inode(inode
);
678 spin_lock(&fc
->lock
);
679 if (attr_ver
== fi
->attr_version
&& size
< inode
->i_size
&&
680 !test_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
)) {
681 fi
->attr_version
= ++fc
->attr_version
;
682 i_size_write(inode
, size
);
684 spin_unlock(&fc
->lock
);
687 static void fuse_short_read(struct fuse_req
*req
, struct inode
*inode
,
690 size_t num_read
= req
->out
.args
[0].size
;
691 struct fuse_conn
*fc
= get_fuse_conn(inode
);
693 if (fc
->writeback_cache
) {
695 * A hole in a file. Some data after the hole are in page cache,
696 * but have not reached the client fs yet. So, the hole is not
700 int start_idx
= num_read
>> PAGE_SHIFT
;
701 size_t off
= num_read
& (PAGE_SIZE
- 1);
703 for (i
= start_idx
; i
< req
->num_pages
; i
++) {
704 zero_user_segment(req
->pages
[i
], off
, PAGE_SIZE
);
708 loff_t pos
= page_offset(req
->pages
[0]) + num_read
;
709 fuse_read_update_size(inode
, pos
, attr_ver
);
713 static int fuse_do_readpage(struct file
*file
, struct page
*page
)
715 struct fuse_io_priv io
= FUSE_IO_PRIV_SYNC(file
);
716 struct inode
*inode
= page
->mapping
->host
;
717 struct fuse_conn
*fc
= get_fuse_conn(inode
);
718 struct fuse_req
*req
;
720 loff_t pos
= page_offset(page
);
721 size_t count
= PAGE_SIZE
;
726 * Page writeback can extend beyond the lifetime of the
727 * page-cache page, so make sure we read a properly synced
730 fuse_wait_on_page_writeback(inode
, page
->index
);
732 req
= fuse_get_req(fc
, 1);
736 attr_ver
= fuse_get_attr_version(fc
);
738 req
->out
.page_zeroing
= 1;
739 req
->out
.argpages
= 1;
741 req
->pages
[0] = page
;
742 req
->page_descs
[0].length
= count
;
743 num_read
= fuse_send_read(req
, &io
, pos
, count
, NULL
);
744 err
= req
->out
.h
.error
;
748 * Short read means EOF. If file size is larger, truncate it
750 if (num_read
< count
)
751 fuse_short_read(req
, inode
, attr_ver
);
753 SetPageUptodate(page
);
756 fuse_put_request(fc
, req
);
761 static int fuse_readpage(struct file
*file
, struct page
*page
)
763 struct inode
*inode
= page
->mapping
->host
;
767 if (is_bad_inode(inode
))
770 err
= fuse_do_readpage(file
, page
);
771 fuse_invalidate_atime(inode
);
777 static void fuse_readpages_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
780 size_t count
= req
->misc
.read
.in
.size
;
781 size_t num_read
= req
->out
.args
[0].size
;
782 struct address_space
*mapping
= NULL
;
784 for (i
= 0; mapping
== NULL
&& i
< req
->num_pages
; i
++)
785 mapping
= req
->pages
[i
]->mapping
;
788 struct inode
*inode
= mapping
->host
;
791 * Short read means EOF. If file size is larger, truncate it
793 if (!req
->out
.h
.error
&& num_read
< count
)
794 fuse_short_read(req
, inode
, req
->misc
.read
.attr_ver
);
796 fuse_invalidate_atime(inode
);
799 for (i
= 0; i
< req
->num_pages
; i
++) {
800 struct page
*page
= req
->pages
[i
];
801 if (!req
->out
.h
.error
)
802 SetPageUptodate(page
);
809 fuse_file_put(req
->ff
, false);
812 static void fuse_send_readpages(struct fuse_req
*req
, struct file
*file
)
814 struct fuse_file
*ff
= file
->private_data
;
815 struct fuse_conn
*fc
= ff
->fc
;
816 loff_t pos
= page_offset(req
->pages
[0]);
817 size_t count
= req
->num_pages
<< PAGE_SHIFT
;
819 req
->out
.argpages
= 1;
820 req
->out
.page_zeroing
= 1;
821 req
->out
.page_replace
= 1;
822 fuse_read_fill(req
, file
, pos
, count
, FUSE_READ
);
823 req
->misc
.read
.attr_ver
= fuse_get_attr_version(fc
);
824 if (fc
->async_read
) {
825 req
->ff
= fuse_file_get(ff
);
826 req
->end
= fuse_readpages_end
;
827 fuse_request_send_background(fc
, req
);
829 fuse_request_send(fc
, req
);
830 fuse_readpages_end(fc
, req
);
831 fuse_put_request(fc
, req
);
835 struct fuse_fill_data
{
836 struct fuse_req
*req
;
842 static int fuse_readpages_fill(void *_data
, struct page
*page
)
844 struct fuse_fill_data
*data
= _data
;
845 struct fuse_req
*req
= data
->req
;
846 struct inode
*inode
= data
->inode
;
847 struct fuse_conn
*fc
= get_fuse_conn(inode
);
849 fuse_wait_on_page_writeback(inode
, page
->index
);
851 if (req
->num_pages
&&
852 (req
->num_pages
== FUSE_MAX_PAGES_PER_REQ
||
853 (req
->num_pages
+ 1) * PAGE_SIZE
> fc
->max_read
||
854 req
->pages
[req
->num_pages
- 1]->index
+ 1 != page
->index
)) {
855 int nr_alloc
= min_t(unsigned, data
->nr_pages
,
856 FUSE_MAX_PAGES_PER_REQ
);
857 fuse_send_readpages(req
, data
->file
);
859 req
= fuse_get_req_for_background(fc
, nr_alloc
);
861 req
= fuse_get_req(fc
, nr_alloc
);
870 if (WARN_ON(req
->num_pages
>= req
->max_pages
)) {
871 fuse_put_request(fc
, req
);
876 req
->pages
[req
->num_pages
] = page
;
877 req
->page_descs
[req
->num_pages
].length
= PAGE_SIZE
;
883 static int fuse_readpages(struct file
*file
, struct address_space
*mapping
,
884 struct list_head
*pages
, unsigned nr_pages
)
886 struct inode
*inode
= mapping
->host
;
887 struct fuse_conn
*fc
= get_fuse_conn(inode
);
888 struct fuse_fill_data data
;
890 int nr_alloc
= min_t(unsigned, nr_pages
, FUSE_MAX_PAGES_PER_REQ
);
893 if (is_bad_inode(inode
))
899 data
.req
= fuse_get_req_for_background(fc
, nr_alloc
);
901 data
.req
= fuse_get_req(fc
, nr_alloc
);
902 data
.nr_pages
= nr_pages
;
903 err
= PTR_ERR(data
.req
);
904 if (IS_ERR(data
.req
))
907 err
= read_cache_pages(mapping
, pages
, fuse_readpages_fill
, &data
);
909 if (data
.req
->num_pages
)
910 fuse_send_readpages(data
.req
, file
);
912 fuse_put_request(fc
, data
.req
);
918 static ssize_t
fuse_file_read_iter(struct kiocb
*iocb
, struct iov_iter
*to
)
920 struct inode
*inode
= iocb
->ki_filp
->f_mapping
->host
;
921 struct fuse_conn
*fc
= get_fuse_conn(inode
);
924 * In auto invalidate mode, always update attributes on read.
925 * Otherwise, only update if we attempt to read past EOF (to ensure
926 * i_size is up to date).
928 if (fc
->auto_inval_data
||
929 (iocb
->ki_pos
+ iov_iter_count(to
) > i_size_read(inode
))) {
931 err
= fuse_update_attributes(inode
, NULL
, iocb
->ki_filp
, NULL
);
936 return generic_file_read_iter(iocb
, to
);
939 static void fuse_write_fill(struct fuse_req
*req
, struct fuse_file
*ff
,
940 loff_t pos
, size_t count
)
942 struct fuse_write_in
*inarg
= &req
->misc
.write
.in
;
943 struct fuse_write_out
*outarg
= &req
->misc
.write
.out
;
948 req
->in
.h
.opcode
= FUSE_WRITE
;
949 req
->in
.h
.nodeid
= ff
->nodeid
;
951 if (ff
->fc
->minor
< 9)
952 req
->in
.args
[0].size
= FUSE_COMPAT_WRITE_IN_SIZE
;
954 req
->in
.args
[0].size
= sizeof(struct fuse_write_in
);
955 req
->in
.args
[0].value
= inarg
;
956 req
->in
.args
[1].size
= count
;
957 req
->out
.numargs
= 1;
958 req
->out
.args
[0].size
= sizeof(struct fuse_write_out
);
959 req
->out
.args
[0].value
= outarg
;
962 static size_t fuse_send_write(struct fuse_req
*req
, struct fuse_io_priv
*io
,
963 loff_t pos
, size_t count
, fl_owner_t owner
)
965 struct file
*file
= io
->file
;
966 struct fuse_file
*ff
= file
->private_data
;
967 struct fuse_conn
*fc
= ff
->fc
;
968 struct fuse_write_in
*inarg
= &req
->misc
.write
.in
;
970 fuse_write_fill(req
, ff
, pos
, count
);
971 inarg
->flags
= file
->f_flags
;
973 inarg
->write_flags
|= FUSE_WRITE_LOCKOWNER
;
974 inarg
->lock_owner
= fuse_lock_owner_id(fc
, owner
);
978 return fuse_async_req_send(fc
, req
, count
, io
);
980 fuse_request_send(fc
, req
);
981 return req
->misc
.write
.out
.size
;
984 bool fuse_write_update_size(struct inode
*inode
, loff_t pos
)
986 struct fuse_conn
*fc
= get_fuse_conn(inode
);
987 struct fuse_inode
*fi
= get_fuse_inode(inode
);
990 spin_lock(&fc
->lock
);
991 fi
->attr_version
= ++fc
->attr_version
;
992 if (pos
> inode
->i_size
) {
993 i_size_write(inode
, pos
);
996 spin_unlock(&fc
->lock
);
1001 static size_t fuse_send_write_pages(struct fuse_req
*req
, struct file
*file
,
1002 struct inode
*inode
, loff_t pos
,
1008 struct fuse_io_priv io
= FUSE_IO_PRIV_SYNC(file
);
1010 for (i
= 0; i
< req
->num_pages
; i
++)
1011 fuse_wait_on_page_writeback(inode
, req
->pages
[i
]->index
);
1013 res
= fuse_send_write(req
, &io
, pos
, count
, NULL
);
1015 offset
= req
->page_descs
[0].offset
;
1017 for (i
= 0; i
< req
->num_pages
; i
++) {
1018 struct page
*page
= req
->pages
[i
];
1020 if (!req
->out
.h
.error
&& !offset
&& count
>= PAGE_SIZE
)
1021 SetPageUptodate(page
);
1023 if (count
> PAGE_SIZE
- offset
)
1024 count
-= PAGE_SIZE
- offset
;
1036 static ssize_t
fuse_fill_write_pages(struct fuse_req
*req
,
1037 struct address_space
*mapping
,
1038 struct iov_iter
*ii
, loff_t pos
)
1040 struct fuse_conn
*fc
= get_fuse_conn(mapping
->host
);
1041 unsigned offset
= pos
& (PAGE_SIZE
- 1);
1045 req
->in
.argpages
= 1;
1046 req
->page_descs
[0].offset
= offset
;
1051 pgoff_t index
= pos
>> PAGE_SHIFT
;
1052 size_t bytes
= min_t(size_t, PAGE_SIZE
- offset
,
1053 iov_iter_count(ii
));
1055 bytes
= min_t(size_t, bytes
, fc
->max_write
- count
);
1059 if (iov_iter_fault_in_readable(ii
, bytes
))
1063 page
= grab_cache_page_write_begin(mapping
, index
, 0);
1067 if (mapping_writably_mapped(mapping
))
1068 flush_dcache_page(page
);
1070 tmp
= iov_iter_copy_from_user_atomic(page
, ii
, offset
, bytes
);
1071 flush_dcache_page(page
);
1073 iov_iter_advance(ii
, tmp
);
1077 bytes
= min(bytes
, iov_iter_single_seg_count(ii
));
1082 req
->pages
[req
->num_pages
] = page
;
1083 req
->page_descs
[req
->num_pages
].length
= tmp
;
1089 if (offset
== PAGE_SIZE
)
1092 if (!fc
->big_writes
)
1094 } while (iov_iter_count(ii
) && count
< fc
->max_write
&&
1095 req
->num_pages
< req
->max_pages
&& offset
== 0);
1097 return count
> 0 ? count
: err
;
1100 static inline unsigned fuse_wr_pages(loff_t pos
, size_t len
)
1102 return min_t(unsigned,
1103 ((pos
+ len
- 1) >> PAGE_SHIFT
) -
1104 (pos
>> PAGE_SHIFT
) + 1,
1105 FUSE_MAX_PAGES_PER_REQ
);
1108 static ssize_t
fuse_perform_write(struct file
*file
,
1109 struct address_space
*mapping
,
1110 struct iov_iter
*ii
, loff_t pos
)
1112 struct inode
*inode
= mapping
->host
;
1113 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1114 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1118 if (is_bad_inode(inode
))
1121 if (inode
->i_size
< pos
+ iov_iter_count(ii
))
1122 set_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
1125 struct fuse_req
*req
;
1127 unsigned nr_pages
= fuse_wr_pages(pos
, iov_iter_count(ii
));
1129 req
= fuse_get_req(fc
, nr_pages
);
1135 count
= fuse_fill_write_pages(req
, mapping
, ii
, pos
);
1141 num_written
= fuse_send_write_pages(req
, file
, inode
,
1143 err
= req
->out
.h
.error
;
1148 /* break out of the loop on short write */
1149 if (num_written
!= count
)
1153 fuse_put_request(fc
, req
);
1154 } while (!err
&& iov_iter_count(ii
));
1157 fuse_write_update_size(inode
, pos
);
1159 clear_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
1160 fuse_invalidate_attr(inode
);
1162 return res
> 0 ? res
: err
;
1165 static ssize_t
fuse_file_write_iter(struct kiocb
*iocb
, struct iov_iter
*from
)
1167 struct file
*file
= iocb
->ki_filp
;
1168 struct address_space
*mapping
= file
->f_mapping
;
1169 ssize_t written
= 0;
1170 ssize_t written_buffered
= 0;
1171 struct inode
*inode
= mapping
->host
;
1175 if (get_fuse_conn(inode
)->writeback_cache
) {
1176 /* Update size (EOF optimization) and mode (SUID clearing) */
1177 err
= fuse_update_attributes(mapping
->host
, NULL
, file
, NULL
);
1181 return generic_file_write_iter(iocb
, from
);
1186 /* We can write back this queue in page reclaim */
1187 current
->backing_dev_info
= inode_to_bdi(inode
);
1189 err
= generic_write_checks(iocb
, from
);
1193 err
= file_remove_privs(file
);
1197 err
= file_update_time(file
);
1201 if (iocb
->ki_flags
& IOCB_DIRECT
) {
1202 loff_t pos
= iocb
->ki_pos
;
1203 written
= generic_file_direct_write(iocb
, from
);
1204 if (written
< 0 || !iov_iter_count(from
))
1209 written_buffered
= fuse_perform_write(file
, mapping
, from
, pos
);
1210 if (written_buffered
< 0) {
1211 err
= written_buffered
;
1214 endbyte
= pos
+ written_buffered
- 1;
1216 err
= filemap_write_and_wait_range(file
->f_mapping
, pos
,
1221 invalidate_mapping_pages(file
->f_mapping
,
1223 endbyte
>> PAGE_SHIFT
);
1225 written
+= written_buffered
;
1226 iocb
->ki_pos
= pos
+ written_buffered
;
1228 written
= fuse_perform_write(file
, mapping
, from
, iocb
->ki_pos
);
1230 iocb
->ki_pos
+= written
;
1233 current
->backing_dev_info
= NULL
;
1234 inode_unlock(inode
);
1236 return written
? written
: err
;
1239 static inline void fuse_page_descs_length_init(struct fuse_req
*req
,
1240 unsigned index
, unsigned nr_pages
)
1244 for (i
= index
; i
< index
+ nr_pages
; i
++)
1245 req
->page_descs
[i
].length
= PAGE_SIZE
-
1246 req
->page_descs
[i
].offset
;
1249 static inline unsigned long fuse_get_user_addr(const struct iov_iter
*ii
)
1251 return (unsigned long)ii
->iov
->iov_base
+ ii
->iov_offset
;
1254 static inline size_t fuse_get_frag_size(const struct iov_iter
*ii
,
1257 return min(iov_iter_single_seg_count(ii
), max_size
);
1260 static int fuse_get_user_pages(struct fuse_req
*req
, struct iov_iter
*ii
,
1261 size_t *nbytesp
, int write
)
1263 size_t nbytes
= 0; /* # bytes already packed in req */
1266 /* Special case for kernel I/O: can copy directly into the buffer */
1267 if (ii
->type
& ITER_KVEC
) {
1268 unsigned long user_addr
= fuse_get_user_addr(ii
);
1269 size_t frag_size
= fuse_get_frag_size(ii
, *nbytesp
);
1272 req
->in
.args
[1].value
= (void *) user_addr
;
1274 req
->out
.args
[0].value
= (void *) user_addr
;
1276 iov_iter_advance(ii
, frag_size
);
1277 *nbytesp
= frag_size
;
1281 while (nbytes
< *nbytesp
&& req
->num_pages
< req
->max_pages
) {
1284 ret
= iov_iter_get_pages(ii
, &req
->pages
[req
->num_pages
],
1286 req
->max_pages
- req
->num_pages
,
1291 iov_iter_advance(ii
, ret
);
1295 npages
= (ret
+ PAGE_SIZE
- 1) / PAGE_SIZE
;
1297 req
->page_descs
[req
->num_pages
].offset
= start
;
1298 fuse_page_descs_length_init(req
, req
->num_pages
, npages
);
1300 req
->num_pages
+= npages
;
1301 req
->page_descs
[req
->num_pages
- 1].length
-=
1302 (PAGE_SIZE
- ret
) & (PAGE_SIZE
- 1);
1306 req
->in
.argpages
= 1;
1308 req
->out
.argpages
= 1;
1312 return ret
< 0 ? ret
: 0;
1315 static inline int fuse_iter_npages(const struct iov_iter
*ii_p
)
1317 return iov_iter_npages(ii_p
, FUSE_MAX_PAGES_PER_REQ
);
1320 ssize_t
fuse_direct_io(struct fuse_io_priv
*io
, struct iov_iter
*iter
,
1321 loff_t
*ppos
, int flags
)
1323 int write
= flags
& FUSE_DIO_WRITE
;
1324 bool should_dirty
= !write
&& iter_is_iovec(iter
);
1325 int cuse
= flags
& FUSE_DIO_CUSE
;
1326 struct file
*file
= io
->file
;
1327 struct inode
*inode
= file
->f_mapping
->host
;
1328 struct fuse_file
*ff
= file
->private_data
;
1329 struct fuse_conn
*fc
= ff
->fc
;
1330 size_t nmax
= write
? fc
->max_write
: fc
->max_read
;
1332 size_t count
= iov_iter_count(iter
);
1333 pgoff_t idx_from
= pos
>> PAGE_SHIFT
;
1334 pgoff_t idx_to
= (pos
+ count
- 1) >> PAGE_SHIFT
;
1336 struct fuse_req
*req
;
1340 req
= fuse_get_req_for_background(fc
, fuse_iter_npages(iter
));
1342 req
= fuse_get_req(fc
, fuse_iter_npages(iter
));
1344 return PTR_ERR(req
);
1346 if (!cuse
&& fuse_range_is_writeback(inode
, idx_from
, idx_to
)) {
1349 fuse_sync_writes(inode
);
1351 inode_unlock(inode
);
1356 fl_owner_t owner
= current
->files
;
1357 size_t nbytes
= min(count
, nmax
);
1358 err
= fuse_get_user_pages(req
, iter
, &nbytes
, write
);
1363 nres
= fuse_send_write(req
, io
, pos
, nbytes
, owner
);
1365 nres
= fuse_send_read(req
, io
, pos
, nbytes
, owner
);
1368 fuse_release_user_pages(req
, should_dirty
);
1369 if (req
->out
.h
.error
) {
1370 err
= req
->out
.h
.error
;
1372 } else if (nres
> nbytes
) {
1383 fuse_put_request(fc
, req
);
1385 req
= fuse_get_req_for_background(fc
,
1386 fuse_iter_npages(iter
));
1388 req
= fuse_get_req(fc
, fuse_iter_npages(iter
));
1394 fuse_put_request(fc
, req
);
1398 return res
> 0 ? res
: err
;
1400 EXPORT_SYMBOL_GPL(fuse_direct_io
);
1402 static ssize_t
__fuse_direct_read(struct fuse_io_priv
*io
,
1403 struct iov_iter
*iter
,
1407 struct file
*file
= io
->file
;
1408 struct inode
*inode
= file_inode(file
);
1410 if (is_bad_inode(inode
))
1413 res
= fuse_direct_io(io
, iter
, ppos
, 0);
1415 fuse_invalidate_attr(inode
);
1420 static ssize_t
fuse_direct_read_iter(struct kiocb
*iocb
, struct iov_iter
*to
)
1422 struct fuse_io_priv io
= FUSE_IO_PRIV_SYNC(iocb
->ki_filp
);
1423 return __fuse_direct_read(&io
, to
, &iocb
->ki_pos
);
1426 static ssize_t
fuse_direct_write_iter(struct kiocb
*iocb
, struct iov_iter
*from
)
1428 struct file
*file
= iocb
->ki_filp
;
1429 struct inode
*inode
= file_inode(file
);
1430 struct fuse_io_priv io
= FUSE_IO_PRIV_SYNC(file
);
1433 if (is_bad_inode(inode
))
1436 /* Don't allow parallel writes to the same file */
1438 res
= generic_write_checks(iocb
, from
);
1440 res
= fuse_direct_io(&io
, from
, &iocb
->ki_pos
, FUSE_DIO_WRITE
);
1441 fuse_invalidate_attr(inode
);
1443 fuse_write_update_size(inode
, iocb
->ki_pos
);
1444 inode_unlock(inode
);
1449 static void fuse_writepage_free(struct fuse_conn
*fc
, struct fuse_req
*req
)
1453 for (i
= 0; i
< req
->num_pages
; i
++)
1454 __free_page(req
->pages
[i
]);
1457 fuse_file_put(req
->ff
, false);
1460 static void fuse_writepage_finish(struct fuse_conn
*fc
, struct fuse_req
*req
)
1462 struct inode
*inode
= req
->inode
;
1463 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1464 struct backing_dev_info
*bdi
= inode_to_bdi(inode
);
1467 list_del(&req
->writepages_entry
);
1468 for (i
= 0; i
< req
->num_pages
; i
++) {
1469 dec_wb_stat(&bdi
->wb
, WB_WRITEBACK
);
1470 dec_node_page_state(req
->pages
[i
], NR_WRITEBACK_TEMP
);
1471 wb_writeout_inc(&bdi
->wb
);
1473 wake_up(&fi
->page_waitq
);
1476 /* Called under fc->lock, may release and reacquire it */
1477 static void fuse_send_writepage(struct fuse_conn
*fc
, struct fuse_req
*req
,
1479 __releases(fc
->lock
)
1480 __acquires(fc
->lock
)
1482 struct fuse_inode
*fi
= get_fuse_inode(req
->inode
);
1483 struct fuse_write_in
*inarg
= &req
->misc
.write
.in
;
1484 __u64 data_size
= req
->num_pages
* PAGE_SIZE
;
1489 if (inarg
->offset
+ data_size
<= size
) {
1490 inarg
->size
= data_size
;
1491 } else if (inarg
->offset
< size
) {
1492 inarg
->size
= size
- inarg
->offset
;
1494 /* Got truncated off completely */
1498 req
->in
.args
[1].size
= inarg
->size
;
1500 fuse_request_send_background_locked(fc
, req
);
1504 fuse_writepage_finish(fc
, req
);
1505 spin_unlock(&fc
->lock
);
1506 fuse_writepage_free(fc
, req
);
1507 fuse_put_request(fc
, req
);
1508 spin_lock(&fc
->lock
);
1512 * If fi->writectr is positive (no truncate or fsync going on) send
1513 * all queued writepage requests.
1515 * Called with fc->lock
1517 void fuse_flush_writepages(struct inode
*inode
)
1518 __releases(fc
->lock
)
1519 __acquires(fc
->lock
)
1521 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1522 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1523 size_t crop
= i_size_read(inode
);
1524 struct fuse_req
*req
;
1526 while (fi
->writectr
>= 0 && !list_empty(&fi
->queued_writes
)) {
1527 req
= list_entry(fi
->queued_writes
.next
, struct fuse_req
, list
);
1528 list_del_init(&req
->list
);
1529 fuse_send_writepage(fc
, req
, crop
);
1533 static void fuse_writepage_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
1535 struct inode
*inode
= req
->inode
;
1536 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1538 mapping_set_error(inode
->i_mapping
, req
->out
.h
.error
);
1539 spin_lock(&fc
->lock
);
1540 while (req
->misc
.write
.next
) {
1541 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1542 struct fuse_write_in
*inarg
= &req
->misc
.write
.in
;
1543 struct fuse_req
*next
= req
->misc
.write
.next
;
1544 req
->misc
.write
.next
= next
->misc
.write
.next
;
1545 next
->misc
.write
.next
= NULL
;
1546 next
->ff
= fuse_file_get(req
->ff
);
1547 list_add(&next
->writepages_entry
, &fi
->writepages
);
1550 * Skip fuse_flush_writepages() to make it easy to crop requests
1551 * based on primary request size.
1553 * 1st case (trivial): there are no concurrent activities using
1554 * fuse_set/release_nowrite. Then we're on safe side because
1555 * fuse_flush_writepages() would call fuse_send_writepage()
1558 * 2nd case: someone called fuse_set_nowrite and it is waiting
1559 * now for completion of all in-flight requests. This happens
1560 * rarely and no more than once per page, so this should be
1563 * 3rd case: someone (e.g. fuse_do_setattr()) is in the middle
1564 * of fuse_set_nowrite..fuse_release_nowrite section. The fact
1565 * that fuse_set_nowrite returned implies that all in-flight
1566 * requests were completed along with all of their secondary
1567 * requests. Further primary requests are blocked by negative
1568 * writectr. Hence there cannot be any in-flight requests and
1569 * no invocations of fuse_writepage_end() while we're in
1570 * fuse_set_nowrite..fuse_release_nowrite section.
1572 fuse_send_writepage(fc
, next
, inarg
->offset
+ inarg
->size
);
1575 fuse_writepage_finish(fc
, req
);
1576 spin_unlock(&fc
->lock
);
1577 fuse_writepage_free(fc
, req
);
1580 static struct fuse_file
*__fuse_write_file_get(struct fuse_conn
*fc
,
1581 struct fuse_inode
*fi
)
1583 struct fuse_file
*ff
= NULL
;
1585 spin_lock(&fc
->lock
);
1586 if (!list_empty(&fi
->write_files
)) {
1587 ff
= list_entry(fi
->write_files
.next
, struct fuse_file
,
1591 spin_unlock(&fc
->lock
);
1596 static struct fuse_file
*fuse_write_file_get(struct fuse_conn
*fc
,
1597 struct fuse_inode
*fi
)
1599 struct fuse_file
*ff
= __fuse_write_file_get(fc
, fi
);
1604 int fuse_write_inode(struct inode
*inode
, struct writeback_control
*wbc
)
1606 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1607 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1608 struct fuse_file
*ff
;
1611 ff
= __fuse_write_file_get(fc
, fi
);
1612 err
= fuse_flush_times(inode
, ff
);
1614 fuse_file_put(ff
, 0);
1619 static int fuse_writepage_locked(struct page
*page
)
1621 struct address_space
*mapping
= page
->mapping
;
1622 struct inode
*inode
= mapping
->host
;
1623 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1624 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1625 struct fuse_req
*req
;
1626 struct page
*tmp_page
;
1627 int error
= -ENOMEM
;
1629 set_page_writeback(page
);
1631 req
= fuse_request_alloc_nofs(1);
1635 /* writeback always goes to bg_queue */
1636 __set_bit(FR_BACKGROUND
, &req
->flags
);
1637 tmp_page
= alloc_page(GFP_NOFS
| __GFP_HIGHMEM
);
1642 req
->ff
= fuse_write_file_get(fc
, fi
);
1646 fuse_write_fill(req
, req
->ff
, page_offset(page
), 0);
1648 copy_highpage(tmp_page
, page
);
1649 req
->misc
.write
.in
.write_flags
|= FUSE_WRITE_CACHE
;
1650 req
->misc
.write
.next
= NULL
;
1651 req
->in
.argpages
= 1;
1653 req
->pages
[0] = tmp_page
;
1654 req
->page_descs
[0].offset
= 0;
1655 req
->page_descs
[0].length
= PAGE_SIZE
;
1656 req
->end
= fuse_writepage_end
;
1659 inc_wb_stat(&inode_to_bdi(inode
)->wb
, WB_WRITEBACK
);
1660 inc_node_page_state(tmp_page
, NR_WRITEBACK_TEMP
);
1662 spin_lock(&fc
->lock
);
1663 list_add(&req
->writepages_entry
, &fi
->writepages
);
1664 list_add_tail(&req
->list
, &fi
->queued_writes
);
1665 fuse_flush_writepages(inode
);
1666 spin_unlock(&fc
->lock
);
1668 end_page_writeback(page
);
1673 __free_page(tmp_page
);
1675 fuse_request_free(req
);
1677 end_page_writeback(page
);
1681 static int fuse_writepage(struct page
*page
, struct writeback_control
*wbc
)
1685 if (fuse_page_is_writeback(page
->mapping
->host
, page
->index
)) {
1687 * ->writepages() should be called for sync() and friends. We
1688 * should only get here on direct reclaim and then we are
1689 * allowed to skip a page which is already in flight
1691 WARN_ON(wbc
->sync_mode
== WB_SYNC_ALL
);
1693 redirty_page_for_writepage(wbc
, page
);
1697 err
= fuse_writepage_locked(page
);
1703 struct fuse_fill_wb_data
{
1704 struct fuse_req
*req
;
1705 struct fuse_file
*ff
;
1706 struct inode
*inode
;
1707 struct page
**orig_pages
;
1710 static void fuse_writepages_send(struct fuse_fill_wb_data
*data
)
1712 struct fuse_req
*req
= data
->req
;
1713 struct inode
*inode
= data
->inode
;
1714 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1715 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1716 int num_pages
= req
->num_pages
;
1719 req
->ff
= fuse_file_get(data
->ff
);
1720 spin_lock(&fc
->lock
);
1721 list_add_tail(&req
->list
, &fi
->queued_writes
);
1722 fuse_flush_writepages(inode
);
1723 spin_unlock(&fc
->lock
);
1725 for (i
= 0; i
< num_pages
; i
++)
1726 end_page_writeback(data
->orig_pages
[i
]);
1729 static bool fuse_writepage_in_flight(struct fuse_req
*new_req
,
1732 struct fuse_conn
*fc
= get_fuse_conn(new_req
->inode
);
1733 struct fuse_inode
*fi
= get_fuse_inode(new_req
->inode
);
1734 struct fuse_req
*tmp
;
1735 struct fuse_req
*old_req
;
1739 BUG_ON(new_req
->num_pages
!= 0);
1741 spin_lock(&fc
->lock
);
1742 list_del(&new_req
->writepages_entry
);
1743 list_for_each_entry(old_req
, &fi
->writepages
, writepages_entry
) {
1744 BUG_ON(old_req
->inode
!= new_req
->inode
);
1745 curr_index
= old_req
->misc
.write
.in
.offset
>> PAGE_SHIFT
;
1746 if (curr_index
<= page
->index
&&
1747 page
->index
< curr_index
+ old_req
->num_pages
) {
1753 list_add(&new_req
->writepages_entry
, &fi
->writepages
);
1757 new_req
->num_pages
= 1;
1758 for (tmp
= old_req
; tmp
!= NULL
; tmp
= tmp
->misc
.write
.next
) {
1759 BUG_ON(tmp
->inode
!= new_req
->inode
);
1760 curr_index
= tmp
->misc
.write
.in
.offset
>> PAGE_SHIFT
;
1761 if (tmp
->num_pages
== 1 &&
1762 curr_index
== page
->index
) {
1767 if (old_req
->num_pages
== 1 && test_bit(FR_PENDING
, &old_req
->flags
)) {
1768 struct backing_dev_info
*bdi
= inode_to_bdi(page
->mapping
->host
);
1770 copy_highpage(old_req
->pages
[0], page
);
1771 spin_unlock(&fc
->lock
);
1773 dec_wb_stat(&bdi
->wb
, WB_WRITEBACK
);
1774 dec_node_page_state(page
, NR_WRITEBACK_TEMP
);
1775 wb_writeout_inc(&bdi
->wb
);
1776 fuse_writepage_free(fc
, new_req
);
1777 fuse_request_free(new_req
);
1780 new_req
->misc
.write
.next
= old_req
->misc
.write
.next
;
1781 old_req
->misc
.write
.next
= new_req
;
1784 spin_unlock(&fc
->lock
);
1789 static int fuse_writepages_fill(struct page
*page
,
1790 struct writeback_control
*wbc
, void *_data
)
1792 struct fuse_fill_wb_data
*data
= _data
;
1793 struct fuse_req
*req
= data
->req
;
1794 struct inode
*inode
= data
->inode
;
1795 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1796 struct page
*tmp_page
;
1802 data
->ff
= fuse_write_file_get(fc
, get_fuse_inode(inode
));
1808 * Being under writeback is unlikely but possible. For example direct
1809 * read to an mmaped fuse file will set the page dirty twice; once when
1810 * the pages are faulted with get_user_pages(), and then after the read
1813 is_writeback
= fuse_page_is_writeback(inode
, page
->index
);
1815 if (req
&& req
->num_pages
&&
1816 (is_writeback
|| req
->num_pages
== FUSE_MAX_PAGES_PER_REQ
||
1817 (req
->num_pages
+ 1) * PAGE_SIZE
> fc
->max_write
||
1818 data
->orig_pages
[req
->num_pages
- 1]->index
+ 1 != page
->index
)) {
1819 fuse_writepages_send(data
);
1823 tmp_page
= alloc_page(GFP_NOFS
| __GFP_HIGHMEM
);
1828 * The page must not be redirtied until the writeout is completed
1829 * (i.e. userspace has sent a reply to the write request). Otherwise
1830 * there could be more than one temporary page instance for each real
1833 * This is ensured by holding the page lock in page_mkwrite() while
1834 * checking fuse_page_is_writeback(). We already hold the page lock
1835 * since clear_page_dirty_for_io() and keep it held until we add the
1836 * request to the fi->writepages list and increment req->num_pages.
1837 * After this fuse_page_is_writeback() will indicate that the page is
1838 * under writeback, so we can release the page lock.
1840 if (data
->req
== NULL
) {
1841 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1844 req
= fuse_request_alloc_nofs(FUSE_MAX_PAGES_PER_REQ
);
1846 __free_page(tmp_page
);
1850 fuse_write_fill(req
, data
->ff
, page_offset(page
), 0);
1851 req
->misc
.write
.in
.write_flags
|= FUSE_WRITE_CACHE
;
1852 req
->misc
.write
.next
= NULL
;
1853 req
->in
.argpages
= 1;
1854 __set_bit(FR_BACKGROUND
, &req
->flags
);
1856 req
->end
= fuse_writepage_end
;
1859 spin_lock(&fc
->lock
);
1860 list_add(&req
->writepages_entry
, &fi
->writepages
);
1861 spin_unlock(&fc
->lock
);
1865 set_page_writeback(page
);
1867 copy_highpage(tmp_page
, page
);
1868 req
->pages
[req
->num_pages
] = tmp_page
;
1869 req
->page_descs
[req
->num_pages
].offset
= 0;
1870 req
->page_descs
[req
->num_pages
].length
= PAGE_SIZE
;
1872 inc_wb_stat(&inode_to_bdi(inode
)->wb
, WB_WRITEBACK
);
1873 inc_node_page_state(tmp_page
, NR_WRITEBACK_TEMP
);
1876 if (is_writeback
&& fuse_writepage_in_flight(req
, page
)) {
1877 end_page_writeback(page
);
1881 data
->orig_pages
[req
->num_pages
] = page
;
1884 * Protected by fc->lock against concurrent access by
1885 * fuse_page_is_writeback().
1887 spin_lock(&fc
->lock
);
1889 spin_unlock(&fc
->lock
);
1897 static int fuse_writepages(struct address_space
*mapping
,
1898 struct writeback_control
*wbc
)
1900 struct inode
*inode
= mapping
->host
;
1901 struct fuse_fill_wb_data data
;
1905 if (is_bad_inode(inode
))
1913 data
.orig_pages
= kcalloc(FUSE_MAX_PAGES_PER_REQ
,
1914 sizeof(struct page
*),
1916 if (!data
.orig_pages
)
1919 err
= write_cache_pages(mapping
, wbc
, fuse_writepages_fill
, &data
);
1921 /* Ignore errors if we can write at least one page */
1922 BUG_ON(!data
.req
->num_pages
);
1923 fuse_writepages_send(&data
);
1927 fuse_file_put(data
.ff
, false);
1929 kfree(data
.orig_pages
);
1935 * It's worthy to make sure that space is reserved on disk for the write,
1936 * but how to implement it without killing performance need more thinking.
1938 static int fuse_write_begin(struct file
*file
, struct address_space
*mapping
,
1939 loff_t pos
, unsigned len
, unsigned flags
,
1940 struct page
**pagep
, void **fsdata
)
1942 pgoff_t index
= pos
>> PAGE_SHIFT
;
1943 struct fuse_conn
*fc
= get_fuse_conn(file_inode(file
));
1948 WARN_ON(!fc
->writeback_cache
);
1950 page
= grab_cache_page_write_begin(mapping
, index
, flags
);
1954 fuse_wait_on_page_writeback(mapping
->host
, page
->index
);
1956 if (PageUptodate(page
) || len
== PAGE_SIZE
)
1959 * Check if the start this page comes after the end of file, in which
1960 * case the readpage can be optimized away.
1962 fsize
= i_size_read(mapping
->host
);
1963 if (fsize
<= (pos
& PAGE_MASK
)) {
1964 size_t off
= pos
& ~PAGE_MASK
;
1966 zero_user_segment(page
, 0, off
);
1969 err
= fuse_do_readpage(file
, page
);
1983 static int fuse_write_end(struct file
*file
, struct address_space
*mapping
,
1984 loff_t pos
, unsigned len
, unsigned copied
,
1985 struct page
*page
, void *fsdata
)
1987 struct inode
*inode
= page
->mapping
->host
;
1989 /* Haven't copied anything? Skip zeroing, size extending, dirtying. */
1993 if (!PageUptodate(page
)) {
1994 /* Zero any unwritten bytes at the end of the page */
1995 size_t endoff
= (pos
+ copied
) & ~PAGE_MASK
;
1997 zero_user_segment(page
, endoff
, PAGE_SIZE
);
1998 SetPageUptodate(page
);
2001 fuse_write_update_size(inode
, pos
+ copied
);
2002 set_page_dirty(page
);
2011 static int fuse_launder_page(struct page
*page
)
2014 if (clear_page_dirty_for_io(page
)) {
2015 struct inode
*inode
= page
->mapping
->host
;
2016 err
= fuse_writepage_locked(page
);
2018 fuse_wait_on_page_writeback(inode
, page
->index
);
2024 * Write back dirty pages now, because there may not be any suitable
2027 static void fuse_vma_close(struct vm_area_struct
*vma
)
2029 filemap_write_and_wait(vma
->vm_file
->f_mapping
);
2033 * Wait for writeback against this page to complete before allowing it
2034 * to be marked dirty again, and hence written back again, possibly
2035 * before the previous writepage completed.
2037 * Block here, instead of in ->writepage(), so that the userspace fs
2038 * can only block processes actually operating on the filesystem.
2040 * Otherwise unprivileged userspace fs would be able to block
2045 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
2047 static int fuse_page_mkwrite(struct vm_area_struct
*vma
, struct vm_fault
*vmf
)
2049 struct page
*page
= vmf
->page
;
2050 struct inode
*inode
= file_inode(vma
->vm_file
);
2052 file_update_time(vma
->vm_file
);
2054 if (page
->mapping
!= inode
->i_mapping
) {
2056 return VM_FAULT_NOPAGE
;
2059 fuse_wait_on_page_writeback(inode
, page
->index
);
2060 return VM_FAULT_LOCKED
;
2063 static const struct vm_operations_struct fuse_file_vm_ops
= {
2064 .close
= fuse_vma_close
,
2065 .fault
= filemap_fault
,
2066 .map_pages
= filemap_map_pages
,
2067 .page_mkwrite
= fuse_page_mkwrite
,
2070 static int fuse_file_mmap(struct file
*file
, struct vm_area_struct
*vma
)
2072 if ((vma
->vm_flags
& VM_SHARED
) && (vma
->vm_flags
& VM_MAYWRITE
))
2073 fuse_link_write_file(file
);
2075 file_accessed(file
);
2076 vma
->vm_ops
= &fuse_file_vm_ops
;
2080 static int fuse_direct_mmap(struct file
*file
, struct vm_area_struct
*vma
)
2082 /* Can't provide the coherency needed for MAP_SHARED */
2083 if (vma
->vm_flags
& VM_MAYSHARE
)
2086 invalidate_inode_pages2(file
->f_mapping
);
2088 return generic_file_mmap(file
, vma
);
2091 static int convert_fuse_file_lock(const struct fuse_file_lock
*ffl
,
2092 struct file_lock
*fl
)
2094 switch (ffl
->type
) {
2100 if (ffl
->start
> OFFSET_MAX
|| ffl
->end
> OFFSET_MAX
||
2101 ffl
->end
< ffl
->start
)
2104 fl
->fl_start
= ffl
->start
;
2105 fl
->fl_end
= ffl
->end
;
2106 fl
->fl_pid
= ffl
->pid
;
2112 fl
->fl_type
= ffl
->type
;
2116 static void fuse_lk_fill(struct fuse_args
*args
, struct file
*file
,
2117 const struct file_lock
*fl
, int opcode
, pid_t pid
,
2118 int flock
, struct fuse_lk_in
*inarg
)
2120 struct inode
*inode
= file_inode(file
);
2121 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2122 struct fuse_file
*ff
= file
->private_data
;
2124 memset(inarg
, 0, sizeof(*inarg
));
2126 inarg
->owner
= fuse_lock_owner_id(fc
, fl
->fl_owner
);
2127 inarg
->lk
.start
= fl
->fl_start
;
2128 inarg
->lk
.end
= fl
->fl_end
;
2129 inarg
->lk
.type
= fl
->fl_type
;
2130 inarg
->lk
.pid
= pid
;
2132 inarg
->lk_flags
|= FUSE_LK_FLOCK
;
2133 args
->in
.h
.opcode
= opcode
;
2134 args
->in
.h
.nodeid
= get_node_id(inode
);
2135 args
->in
.numargs
= 1;
2136 args
->in
.args
[0].size
= sizeof(*inarg
);
2137 args
->in
.args
[0].value
= inarg
;
2140 static int fuse_getlk(struct file
*file
, struct file_lock
*fl
)
2142 struct inode
*inode
= file_inode(file
);
2143 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2145 struct fuse_lk_in inarg
;
2146 struct fuse_lk_out outarg
;
2149 fuse_lk_fill(&args
, file
, fl
, FUSE_GETLK
, 0, 0, &inarg
);
2150 args
.out
.numargs
= 1;
2151 args
.out
.args
[0].size
= sizeof(outarg
);
2152 args
.out
.args
[0].value
= &outarg
;
2153 err
= fuse_simple_request(fc
, &args
);
2155 err
= convert_fuse_file_lock(&outarg
.lk
, fl
);
2160 static int fuse_setlk(struct file
*file
, struct file_lock
*fl
, int flock
)
2162 struct inode
*inode
= file_inode(file
);
2163 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2165 struct fuse_lk_in inarg
;
2166 int opcode
= (fl
->fl_flags
& FL_SLEEP
) ? FUSE_SETLKW
: FUSE_SETLK
;
2167 pid_t pid
= fl
->fl_type
!= F_UNLCK
? current
->tgid
: 0;
2170 if (fl
->fl_lmops
&& fl
->fl_lmops
->lm_grant
) {
2171 /* NLM needs asynchronous locks, which we don't support yet */
2175 /* Unlock on close is handled by the flush method */
2176 if (fl
->fl_flags
& FL_CLOSE
)
2179 fuse_lk_fill(&args
, file
, fl
, opcode
, pid
, flock
, &inarg
);
2180 err
= fuse_simple_request(fc
, &args
);
2182 /* locking is restartable */
2189 static int fuse_file_lock(struct file
*file
, int cmd
, struct file_lock
*fl
)
2191 struct inode
*inode
= file_inode(file
);
2192 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2195 if (cmd
== F_CANCELLK
) {
2197 } else if (cmd
== F_GETLK
) {
2199 posix_test_lock(file
, fl
);
2202 err
= fuse_getlk(file
, fl
);
2205 err
= posix_lock_file(file
, fl
, NULL
);
2207 err
= fuse_setlk(file
, fl
, 0);
2212 static int fuse_file_flock(struct file
*file
, int cmd
, struct file_lock
*fl
)
2214 struct inode
*inode
= file_inode(file
);
2215 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2219 err
= locks_lock_file_wait(file
, fl
);
2221 struct fuse_file
*ff
= file
->private_data
;
2223 /* emulate flock with POSIX locks */
2225 err
= fuse_setlk(file
, fl
, 1);
2231 static sector_t
fuse_bmap(struct address_space
*mapping
, sector_t block
)
2233 struct inode
*inode
= mapping
->host
;
2234 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2236 struct fuse_bmap_in inarg
;
2237 struct fuse_bmap_out outarg
;
2240 if (!inode
->i_sb
->s_bdev
|| fc
->no_bmap
)
2243 memset(&inarg
, 0, sizeof(inarg
));
2244 inarg
.block
= block
;
2245 inarg
.blocksize
= inode
->i_sb
->s_blocksize
;
2246 args
.in
.h
.opcode
= FUSE_BMAP
;
2247 args
.in
.h
.nodeid
= get_node_id(inode
);
2248 args
.in
.numargs
= 1;
2249 args
.in
.args
[0].size
= sizeof(inarg
);
2250 args
.in
.args
[0].value
= &inarg
;
2251 args
.out
.numargs
= 1;
2252 args
.out
.args
[0].size
= sizeof(outarg
);
2253 args
.out
.args
[0].value
= &outarg
;
2254 err
= fuse_simple_request(fc
, &args
);
2258 return err
? 0 : outarg
.block
;
2261 static loff_t
fuse_lseek(struct file
*file
, loff_t offset
, int whence
)
2263 struct inode
*inode
= file
->f_mapping
->host
;
2264 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2265 struct fuse_file
*ff
= file
->private_data
;
2267 struct fuse_lseek_in inarg
= {
2272 struct fuse_lseek_out outarg
;
2278 args
.in
.h
.opcode
= FUSE_LSEEK
;
2279 args
.in
.h
.nodeid
= ff
->nodeid
;
2280 args
.in
.numargs
= 1;
2281 args
.in
.args
[0].size
= sizeof(inarg
);
2282 args
.in
.args
[0].value
= &inarg
;
2283 args
.out
.numargs
= 1;
2284 args
.out
.args
[0].size
= sizeof(outarg
);
2285 args
.out
.args
[0].value
= &outarg
;
2286 err
= fuse_simple_request(fc
, &args
);
2288 if (err
== -ENOSYS
) {
2295 return vfs_setpos(file
, outarg
.offset
, inode
->i_sb
->s_maxbytes
);
2298 err
= fuse_update_attributes(inode
, NULL
, file
, NULL
);
2300 return generic_file_llseek(file
, offset
, whence
);
2305 static loff_t
fuse_file_llseek(struct file
*file
, loff_t offset
, int whence
)
2308 struct inode
*inode
= file_inode(file
);
2313 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
2314 retval
= generic_file_llseek(file
, offset
, whence
);
2318 retval
= fuse_update_attributes(inode
, NULL
, file
, NULL
);
2320 retval
= generic_file_llseek(file
, offset
, whence
);
2321 inode_unlock(inode
);
2326 retval
= fuse_lseek(file
, offset
, whence
);
2327 inode_unlock(inode
);
2337 * CUSE servers compiled on 32bit broke on 64bit kernels because the
2338 * ABI was defined to be 'struct iovec' which is different on 32bit
2339 * and 64bit. Fortunately we can determine which structure the server
2340 * used from the size of the reply.
2342 static int fuse_copy_ioctl_iovec_old(struct iovec
*dst
, void *src
,
2343 size_t transferred
, unsigned count
,
2346 #ifdef CONFIG_COMPAT
2347 if (count
* sizeof(struct compat_iovec
) == transferred
) {
2348 struct compat_iovec
*ciov
= src
;
2352 * With this interface a 32bit server cannot support
2353 * non-compat (i.e. ones coming from 64bit apps) ioctl
2359 for (i
= 0; i
< count
; i
++) {
2360 dst
[i
].iov_base
= compat_ptr(ciov
[i
].iov_base
);
2361 dst
[i
].iov_len
= ciov
[i
].iov_len
;
2367 if (count
* sizeof(struct iovec
) != transferred
)
2370 memcpy(dst
, src
, transferred
);
2374 /* Make sure iov_length() won't overflow */
2375 static int fuse_verify_ioctl_iov(struct iovec
*iov
, size_t count
)
2378 u32 max
= FUSE_MAX_PAGES_PER_REQ
<< PAGE_SHIFT
;
2380 for (n
= 0; n
< count
; n
++, iov
++) {
2381 if (iov
->iov_len
> (size_t) max
)
2383 max
-= iov
->iov_len
;
2388 static int fuse_copy_ioctl_iovec(struct fuse_conn
*fc
, struct iovec
*dst
,
2389 void *src
, size_t transferred
, unsigned count
,
2393 struct fuse_ioctl_iovec
*fiov
= src
;
2395 if (fc
->minor
< 16) {
2396 return fuse_copy_ioctl_iovec_old(dst
, src
, transferred
,
2400 if (count
* sizeof(struct fuse_ioctl_iovec
) != transferred
)
2403 for (i
= 0; i
< count
; i
++) {
2404 /* Did the server supply an inappropriate value? */
2405 if (fiov
[i
].base
!= (unsigned long) fiov
[i
].base
||
2406 fiov
[i
].len
!= (unsigned long) fiov
[i
].len
)
2409 dst
[i
].iov_base
= (void __user
*) (unsigned long) fiov
[i
].base
;
2410 dst
[i
].iov_len
= (size_t) fiov
[i
].len
;
2412 #ifdef CONFIG_COMPAT
2414 (ptr_to_compat(dst
[i
].iov_base
) != fiov
[i
].base
||
2415 (compat_size_t
) dst
[i
].iov_len
!= fiov
[i
].len
))
2425 * For ioctls, there is no generic way to determine how much memory
2426 * needs to be read and/or written. Furthermore, ioctls are allowed
2427 * to dereference the passed pointer, so the parameter requires deep
2428 * copying but FUSE has no idea whatsoever about what to copy in or
2431 * This is solved by allowing FUSE server to retry ioctl with
2432 * necessary in/out iovecs. Let's assume the ioctl implementation
2433 * needs to read in the following structure.
2440 * On the first callout to FUSE server, inarg->in_size and
2441 * inarg->out_size will be NULL; then, the server completes the ioctl
2442 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
2443 * the actual iov array to
2445 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
2447 * which tells FUSE to copy in the requested area and retry the ioctl.
2448 * On the second round, the server has access to the structure and
2449 * from that it can tell what to look for next, so on the invocation,
2450 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
2452 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
2453 * { .iov_base = a.buf, .iov_len = a.buflen } }
2455 * FUSE will copy both struct a and the pointed buffer from the
2456 * process doing the ioctl and retry ioctl with both struct a and the
2459 * This time, FUSE server has everything it needs and completes ioctl
2460 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
2462 * Copying data out works the same way.
2464 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
2465 * automatically initializes in and out iovs by decoding @cmd with
2466 * _IOC_* macros and the server is not allowed to request RETRY. This
2467 * limits ioctl data transfers to well-formed ioctls and is the forced
2468 * behavior for all FUSE servers.
2470 long fuse_do_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
,
2473 struct fuse_file
*ff
= file
->private_data
;
2474 struct fuse_conn
*fc
= ff
->fc
;
2475 struct fuse_ioctl_in inarg
= {
2481 struct fuse_ioctl_out outarg
;
2482 struct fuse_req
*req
= NULL
;
2483 struct page
**pages
= NULL
;
2484 struct iovec
*iov_page
= NULL
;
2485 struct iovec
*in_iov
= NULL
, *out_iov
= NULL
;
2486 unsigned int in_iovs
= 0, out_iovs
= 0, num_pages
= 0, max_pages
;
2487 size_t in_size
, out_size
, transferred
, c
;
2491 #if BITS_PER_LONG == 32
2492 inarg
.flags
|= FUSE_IOCTL_32BIT
;
2494 if (flags
& FUSE_IOCTL_COMPAT
)
2495 inarg
.flags
|= FUSE_IOCTL_32BIT
;
2498 /* assume all the iovs returned by client always fits in a page */
2499 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec
) * FUSE_IOCTL_MAX_IOV
> PAGE_SIZE
);
2502 pages
= kcalloc(FUSE_MAX_PAGES_PER_REQ
, sizeof(pages
[0]), GFP_KERNEL
);
2503 iov_page
= (struct iovec
*) __get_free_page(GFP_KERNEL
);
2504 if (!pages
|| !iov_page
)
2508 * If restricted, initialize IO parameters as encoded in @cmd.
2509 * RETRY from server is not allowed.
2511 if (!(flags
& FUSE_IOCTL_UNRESTRICTED
)) {
2512 struct iovec
*iov
= iov_page
;
2514 iov
->iov_base
= (void __user
*)arg
;
2515 iov
->iov_len
= _IOC_SIZE(cmd
);
2517 if (_IOC_DIR(cmd
) & _IOC_WRITE
) {
2522 if (_IOC_DIR(cmd
) & _IOC_READ
) {
2529 inarg
.in_size
= in_size
= iov_length(in_iov
, in_iovs
);
2530 inarg
.out_size
= out_size
= iov_length(out_iov
, out_iovs
);
2533 * Out data can be used either for actual out data or iovs,
2534 * make sure there always is at least one page.
2536 out_size
= max_t(size_t, out_size
, PAGE_SIZE
);
2537 max_pages
= DIV_ROUND_UP(max(in_size
, out_size
), PAGE_SIZE
);
2539 /* make sure there are enough buffer pages and init request with them */
2541 if (max_pages
> FUSE_MAX_PAGES_PER_REQ
)
2543 while (num_pages
< max_pages
) {
2544 pages
[num_pages
] = alloc_page(GFP_KERNEL
| __GFP_HIGHMEM
);
2545 if (!pages
[num_pages
])
2550 req
= fuse_get_req(fc
, num_pages
);
2556 memcpy(req
->pages
, pages
, sizeof(req
->pages
[0]) * num_pages
);
2557 req
->num_pages
= num_pages
;
2558 fuse_page_descs_length_init(req
, 0, req
->num_pages
);
2560 /* okay, let's send it to the client */
2561 req
->in
.h
.opcode
= FUSE_IOCTL
;
2562 req
->in
.h
.nodeid
= ff
->nodeid
;
2563 req
->in
.numargs
= 1;
2564 req
->in
.args
[0].size
= sizeof(inarg
);
2565 req
->in
.args
[0].value
= &inarg
;
2568 req
->in
.args
[1].size
= in_size
;
2569 req
->in
.argpages
= 1;
2572 iov_iter_init(&ii
, WRITE
, in_iov
, in_iovs
, in_size
);
2573 for (i
= 0; iov_iter_count(&ii
) && !WARN_ON(i
>= num_pages
); i
++) {
2574 c
= copy_page_from_iter(pages
[i
], 0, PAGE_SIZE
, &ii
);
2575 if (c
!= PAGE_SIZE
&& iov_iter_count(&ii
))
2580 req
->out
.numargs
= 2;
2581 req
->out
.args
[0].size
= sizeof(outarg
);
2582 req
->out
.args
[0].value
= &outarg
;
2583 req
->out
.args
[1].size
= out_size
;
2584 req
->out
.argpages
= 1;
2585 req
->out
.argvar
= 1;
2587 fuse_request_send(fc
, req
);
2588 err
= req
->out
.h
.error
;
2589 transferred
= req
->out
.args
[1].size
;
2590 fuse_put_request(fc
, req
);
2595 /* did it ask for retry? */
2596 if (outarg
.flags
& FUSE_IOCTL_RETRY
) {
2599 /* no retry if in restricted mode */
2601 if (!(flags
& FUSE_IOCTL_UNRESTRICTED
))
2604 in_iovs
= outarg
.in_iovs
;
2605 out_iovs
= outarg
.out_iovs
;
2608 * Make sure things are in boundary, separate checks
2609 * are to protect against overflow.
2612 if (in_iovs
> FUSE_IOCTL_MAX_IOV
||
2613 out_iovs
> FUSE_IOCTL_MAX_IOV
||
2614 in_iovs
+ out_iovs
> FUSE_IOCTL_MAX_IOV
)
2617 vaddr
= kmap_atomic(pages
[0]);
2618 err
= fuse_copy_ioctl_iovec(fc
, iov_page
, vaddr
,
2619 transferred
, in_iovs
+ out_iovs
,
2620 (flags
& FUSE_IOCTL_COMPAT
) != 0);
2621 kunmap_atomic(vaddr
);
2626 out_iov
= in_iov
+ in_iovs
;
2628 err
= fuse_verify_ioctl_iov(in_iov
, in_iovs
);
2632 err
= fuse_verify_ioctl_iov(out_iov
, out_iovs
);
2640 if (transferred
> inarg
.out_size
)
2644 iov_iter_init(&ii
, READ
, out_iov
, out_iovs
, transferred
);
2645 for (i
= 0; iov_iter_count(&ii
) && !WARN_ON(i
>= num_pages
); i
++) {
2646 c
= copy_page_to_iter(pages
[i
], 0, PAGE_SIZE
, &ii
);
2647 if (c
!= PAGE_SIZE
&& iov_iter_count(&ii
))
2653 fuse_put_request(fc
, req
);
2654 free_page((unsigned long) iov_page
);
2656 __free_page(pages
[--num_pages
]);
2659 return err
? err
: outarg
.result
;
2661 EXPORT_SYMBOL_GPL(fuse_do_ioctl
);
2663 long fuse_ioctl_common(struct file
*file
, unsigned int cmd
,
2664 unsigned long arg
, unsigned int flags
)
2666 struct inode
*inode
= file_inode(file
);
2667 struct fuse_conn
*fc
= get_fuse_conn(inode
);
2669 if (!fuse_allow_current_process(fc
))
2672 if (is_bad_inode(inode
))
2675 return fuse_do_ioctl(file
, cmd
, arg
, flags
);
2678 static long fuse_file_ioctl(struct file
*file
, unsigned int cmd
,
2681 return fuse_ioctl_common(file
, cmd
, arg
, 0);
2684 static long fuse_file_compat_ioctl(struct file
*file
, unsigned int cmd
,
2687 return fuse_ioctl_common(file
, cmd
, arg
, FUSE_IOCTL_COMPAT
);
2691 * All files which have been polled are linked to RB tree
2692 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2693 * find the matching one.
2695 static struct rb_node
**fuse_find_polled_node(struct fuse_conn
*fc
, u64 kh
,
2696 struct rb_node
**parent_out
)
2698 struct rb_node
**link
= &fc
->polled_files
.rb_node
;
2699 struct rb_node
*last
= NULL
;
2702 struct fuse_file
*ff
;
2705 ff
= rb_entry(last
, struct fuse_file
, polled_node
);
2708 link
= &last
->rb_left
;
2709 else if (kh
> ff
->kh
)
2710 link
= &last
->rb_right
;
2721 * The file is about to be polled. Make sure it's on the polled_files
2722 * RB tree. Note that files once added to the polled_files tree are
2723 * not removed before the file is released. This is because a file
2724 * polled once is likely to be polled again.
2726 static void fuse_register_polled_file(struct fuse_conn
*fc
,
2727 struct fuse_file
*ff
)
2729 spin_lock(&fc
->lock
);
2730 if (RB_EMPTY_NODE(&ff
->polled_node
)) {
2731 struct rb_node
**link
, *uninitialized_var(parent
);
2733 link
= fuse_find_polled_node(fc
, ff
->kh
, &parent
);
2735 rb_link_node(&ff
->polled_node
, parent
, link
);
2736 rb_insert_color(&ff
->polled_node
, &fc
->polled_files
);
2738 spin_unlock(&fc
->lock
);
2741 unsigned fuse_file_poll(struct file
*file
, poll_table
*wait
)
2743 struct fuse_file
*ff
= file
->private_data
;
2744 struct fuse_conn
*fc
= ff
->fc
;
2745 struct fuse_poll_in inarg
= { .fh
= ff
->fh
, .kh
= ff
->kh
};
2746 struct fuse_poll_out outarg
;
2751 return DEFAULT_POLLMASK
;
2753 poll_wait(file
, &ff
->poll_wait
, wait
);
2754 inarg
.events
= (__u32
)poll_requested_events(wait
);
2757 * Ask for notification iff there's someone waiting for it.
2758 * The client may ignore the flag and always notify.
2760 if (waitqueue_active(&ff
->poll_wait
)) {
2761 inarg
.flags
|= FUSE_POLL_SCHEDULE_NOTIFY
;
2762 fuse_register_polled_file(fc
, ff
);
2765 args
.in
.h
.opcode
= FUSE_POLL
;
2766 args
.in
.h
.nodeid
= ff
->nodeid
;
2767 args
.in
.numargs
= 1;
2768 args
.in
.args
[0].size
= sizeof(inarg
);
2769 args
.in
.args
[0].value
= &inarg
;
2770 args
.out
.numargs
= 1;
2771 args
.out
.args
[0].size
= sizeof(outarg
);
2772 args
.out
.args
[0].value
= &outarg
;
2773 err
= fuse_simple_request(fc
, &args
);
2776 return outarg
.revents
;
2777 if (err
== -ENOSYS
) {
2779 return DEFAULT_POLLMASK
;
2783 EXPORT_SYMBOL_GPL(fuse_file_poll
);
2786 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2787 * wakes up the poll waiters.
2789 int fuse_notify_poll_wakeup(struct fuse_conn
*fc
,
2790 struct fuse_notify_poll_wakeup_out
*outarg
)
2792 u64 kh
= outarg
->kh
;
2793 struct rb_node
**link
;
2795 spin_lock(&fc
->lock
);
2797 link
= fuse_find_polled_node(fc
, kh
, NULL
);
2799 struct fuse_file
*ff
;
2801 ff
= rb_entry(*link
, struct fuse_file
, polled_node
);
2802 wake_up_interruptible_sync(&ff
->poll_wait
);
2805 spin_unlock(&fc
->lock
);
2809 static void fuse_do_truncate(struct file
*file
)
2811 struct inode
*inode
= file
->f_mapping
->host
;
2814 attr
.ia_valid
= ATTR_SIZE
;
2815 attr
.ia_size
= i_size_read(inode
);
2817 attr
.ia_file
= file
;
2818 attr
.ia_valid
|= ATTR_FILE
;
2820 fuse_do_setattr(file_dentry(file
), &attr
, file
);
2823 static inline loff_t
fuse_round_up(loff_t off
)
2825 return round_up(off
, FUSE_MAX_PAGES_PER_REQ
<< PAGE_SHIFT
);
2829 fuse_direct_IO(struct kiocb
*iocb
, struct iov_iter
*iter
)
2831 DECLARE_COMPLETION_ONSTACK(wait
);
2833 struct file
*file
= iocb
->ki_filp
;
2834 struct fuse_file
*ff
= file
->private_data
;
2835 bool async_dio
= ff
->fc
->async_dio
;
2837 struct inode
*inode
;
2839 size_t count
= iov_iter_count(iter
);
2840 loff_t offset
= iocb
->ki_pos
;
2841 struct fuse_io_priv
*io
;
2844 inode
= file
->f_mapping
->host
;
2845 i_size
= i_size_read(inode
);
2847 if ((iov_iter_rw(iter
) == READ
) && (offset
> i_size
))
2850 /* optimization for short read */
2851 if (async_dio
&& iov_iter_rw(iter
) != WRITE
&& offset
+ count
> i_size
) {
2852 if (offset
>= i_size
)
2854 iov_iter_truncate(iter
, fuse_round_up(i_size
- offset
));
2855 count
= iov_iter_count(iter
);
2858 io
= kmalloc(sizeof(struct fuse_io_priv
), GFP_KERNEL
);
2861 spin_lock_init(&io
->lock
);
2862 kref_init(&io
->refcnt
);
2866 io
->offset
= offset
;
2867 io
->write
= (iov_iter_rw(iter
) == WRITE
);
2871 * By default, we want to optimize all I/Os with async request
2872 * submission to the client filesystem if supported.
2874 io
->async
= async_dio
;
2876 io
->blocking
= is_sync_kiocb(iocb
);
2879 * We cannot asynchronously extend the size of a file.
2880 * In such case the aio will behave exactly like sync io.
2882 if ((offset
+ count
> i_size
) && iov_iter_rw(iter
) == WRITE
)
2883 io
->blocking
= true;
2885 if (io
->async
&& io
->blocking
) {
2887 * Additional reference to keep io around after
2888 * calling fuse_aio_complete()
2890 kref_get(&io
->refcnt
);
2894 if (iov_iter_rw(iter
) == WRITE
) {
2895 ret
= fuse_direct_io(io
, iter
, &pos
, FUSE_DIO_WRITE
);
2896 fuse_invalidate_attr(inode
);
2898 ret
= __fuse_direct_read(io
, iter
, &pos
);
2902 fuse_aio_complete(io
, ret
< 0 ? ret
: 0, -1);
2904 /* we have a non-extending, async request, so return */
2906 return -EIOCBQUEUED
;
2908 wait_for_completion(&wait
);
2909 ret
= fuse_get_res_by_io(io
);
2912 kref_put(&io
->refcnt
, fuse_io_release
);
2914 if (iov_iter_rw(iter
) == WRITE
) {
2916 fuse_write_update_size(inode
, pos
);
2917 else if (ret
< 0 && offset
+ count
> i_size
)
2918 fuse_do_truncate(file
);
2924 static long fuse_file_fallocate(struct file
*file
, int mode
, loff_t offset
,
2927 struct fuse_file
*ff
= file
->private_data
;
2928 struct inode
*inode
= file_inode(file
);
2929 struct fuse_inode
*fi
= get_fuse_inode(inode
);
2930 struct fuse_conn
*fc
= ff
->fc
;
2932 struct fuse_fallocate_in inarg
= {
2939 bool lock_inode
= !(mode
& FALLOC_FL_KEEP_SIZE
) ||
2940 (mode
& FALLOC_FL_PUNCH_HOLE
);
2942 if (mode
& ~(FALLOC_FL_KEEP_SIZE
| FALLOC_FL_PUNCH_HOLE
))
2945 if (fc
->no_fallocate
)
2950 if (mode
& FALLOC_FL_PUNCH_HOLE
) {
2951 loff_t endbyte
= offset
+ length
- 1;
2952 err
= filemap_write_and_wait_range(inode
->i_mapping
,
2957 fuse_sync_writes(inode
);
2961 if (!(mode
& FALLOC_FL_KEEP_SIZE
))
2962 set_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
2964 args
.in
.h
.opcode
= FUSE_FALLOCATE
;
2965 args
.in
.h
.nodeid
= ff
->nodeid
;
2966 args
.in
.numargs
= 1;
2967 args
.in
.args
[0].size
= sizeof(inarg
);
2968 args
.in
.args
[0].value
= &inarg
;
2969 err
= fuse_simple_request(fc
, &args
);
2970 if (err
== -ENOSYS
) {
2971 fc
->no_fallocate
= 1;
2977 /* we could have extended the file */
2978 if (!(mode
& FALLOC_FL_KEEP_SIZE
)) {
2979 bool changed
= fuse_write_update_size(inode
, offset
+ length
);
2981 if (changed
&& fc
->writeback_cache
)
2982 file_update_time(file
);
2985 if (mode
& FALLOC_FL_PUNCH_HOLE
)
2986 truncate_pagecache_range(inode
, offset
, offset
+ length
- 1);
2988 fuse_invalidate_attr(inode
);
2991 if (!(mode
& FALLOC_FL_KEEP_SIZE
))
2992 clear_bit(FUSE_I_SIZE_UNSTABLE
, &fi
->state
);
2995 inode_unlock(inode
);
3000 static const struct file_operations fuse_file_operations
= {
3001 .llseek
= fuse_file_llseek
,
3002 .read_iter
= fuse_file_read_iter
,
3003 .write_iter
= fuse_file_write_iter
,
3004 .mmap
= fuse_file_mmap
,
3006 .flush
= fuse_flush
,
3007 .release
= fuse_release
,
3008 .fsync
= fuse_fsync
,
3009 .lock
= fuse_file_lock
,
3010 .flock
= fuse_file_flock
,
3011 .splice_read
= generic_file_splice_read
,
3012 .unlocked_ioctl
= fuse_file_ioctl
,
3013 .compat_ioctl
= fuse_file_compat_ioctl
,
3014 .poll
= fuse_file_poll
,
3015 .fallocate
= fuse_file_fallocate
,
3018 static const struct file_operations fuse_direct_io_file_operations
= {
3019 .llseek
= fuse_file_llseek
,
3020 .read_iter
= fuse_direct_read_iter
,
3021 .write_iter
= fuse_direct_write_iter
,
3022 .mmap
= fuse_direct_mmap
,
3024 .flush
= fuse_flush
,
3025 .release
= fuse_release
,
3026 .fsync
= fuse_fsync
,
3027 .lock
= fuse_file_lock
,
3028 .flock
= fuse_file_flock
,
3029 .unlocked_ioctl
= fuse_file_ioctl
,
3030 .compat_ioctl
= fuse_file_compat_ioctl
,
3031 .poll
= fuse_file_poll
,
3032 .fallocate
= fuse_file_fallocate
,
3033 /* no splice_read */
3036 static const struct address_space_operations fuse_file_aops
= {
3037 .readpage
= fuse_readpage
,
3038 .writepage
= fuse_writepage
,
3039 .writepages
= fuse_writepages
,
3040 .launder_page
= fuse_launder_page
,
3041 .readpages
= fuse_readpages
,
3042 .set_page_dirty
= __set_page_dirty_nobuffers
,
3044 .direct_IO
= fuse_direct_IO
,
3045 .write_begin
= fuse_write_begin
,
3046 .write_end
= fuse_write_end
,
3049 void fuse_init_file_inode(struct inode
*inode
)
3051 inode
->i_fop
= &fuse_file_operations
;
3052 inode
->i_data
.a_ops
= &fuse_file_aops
;