2 FUSE: Filesystem in Userspace
5 This program can be distributed under the terms of the GNU GPL.
11 #include <linux/pagemap.h>
12 #include <linux/slab.h>
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/sched/signal.h>
16 #include <linux/module.h>
17 #include <linux/swap.h>
18 #include <linux/falloc.h>
19 #include <linux/uio.h>
21 #include <linux/filelock.h>
22 #include <linux/splice.h>
24 static int fuse_send_open(struct fuse_mount *fm, u64 nodeid,
25 unsigned int open_flags, int opcode,
26 struct fuse_open_out *outargp)
28 struct fuse_open_in inarg;
31 memset(&inarg, 0, sizeof(inarg));
32 inarg.flags = open_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
33 if (!fm->fc->atomic_o_trunc)
34 inarg.flags &= ~O_TRUNC;
36 if (fm->fc->handle_killpriv_v2 &&
37 (inarg.flags & O_TRUNC) && !capable(CAP_FSETID)) {
38 inarg.open_flags |= FUSE_OPEN_KILL_SUIDGID;
44 args.in_args[0].size = sizeof(inarg);
45 args.in_args[0].value = &inarg;
47 args.out_args[0].size = sizeof(*outargp);
48 args.out_args[0].value = outargp;
50 return fuse_simple_request(fm, &args);
53 struct fuse_release_args {
54 struct fuse_args args;
55 struct fuse_release_in inarg;
59 struct fuse_file *fuse_file_alloc(struct fuse_mount *fm)
63 ff = kzalloc(sizeof(struct fuse_file), GFP_KERNEL_ACCOUNT);
68 ff->release_args = kzalloc(sizeof(*ff->release_args),
70 if (!ff->release_args) {
75 INIT_LIST_HEAD(&ff->write_entry);
76 mutex_init(&ff->readdir.lock);
77 refcount_set(&ff->count, 1);
78 RB_CLEAR_NODE(&ff->polled_node);
79 init_waitqueue_head(&ff->poll_wait);
81 ff->kh = atomic64_inc_return(&fm->fc->khctr);
86 void fuse_file_free(struct fuse_file *ff)
88 kfree(ff->release_args);
89 mutex_destroy(&ff->readdir.lock);
93 static struct fuse_file *fuse_file_get(struct fuse_file *ff)
95 refcount_inc(&ff->count);
99 static void fuse_release_end(struct fuse_mount *fm, struct fuse_args *args,
102 struct fuse_release_args *ra = container_of(args, typeof(*ra), args);
108 static void fuse_file_put(struct fuse_file *ff, bool sync, bool isdir)
110 if (refcount_dec_and_test(&ff->count)) {
111 struct fuse_args *args = &ff->release_args->args;
113 if (isdir ? ff->fm->fc->no_opendir : ff->fm->fc->no_open) {
114 /* Do nothing when client does not implement 'open' */
115 fuse_release_end(ff->fm, args, 0);
117 fuse_simple_request(ff->fm, args);
118 fuse_release_end(ff->fm, args, 0);
120 args->end = fuse_release_end;
121 if (fuse_simple_background(ff->fm, args,
122 GFP_KERNEL | __GFP_NOFAIL))
123 fuse_release_end(ff->fm, args, -ENOTCONN);
129 struct fuse_file *fuse_file_open(struct fuse_mount *fm, u64 nodeid,
130 unsigned int open_flags, bool isdir)
132 struct fuse_conn *fc = fm->fc;
133 struct fuse_file *ff;
134 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
136 ff = fuse_file_alloc(fm);
138 return ERR_PTR(-ENOMEM);
141 /* Default for no-open */
142 ff->open_flags = FOPEN_KEEP_CACHE | (isdir ? FOPEN_CACHE_DIR : 0);
143 if (isdir ? !fc->no_opendir : !fc->no_open) {
144 struct fuse_open_out outarg;
147 err = fuse_send_open(fm, nodeid, open_flags, opcode, &outarg);
150 ff->open_flags = outarg.open_flags;
152 } else if (err != -ENOSYS) {
164 ff->open_flags &= ~FOPEN_DIRECT_IO;
171 int fuse_do_open(struct fuse_mount *fm, u64 nodeid, struct file *file,
174 struct fuse_file *ff = fuse_file_open(fm, nodeid, file->f_flags, isdir);
177 file->private_data = ff;
179 return PTR_ERR_OR_ZERO(ff);
181 EXPORT_SYMBOL_GPL(fuse_do_open);
183 static void fuse_link_write_file(struct file *file)
185 struct inode *inode = file_inode(file);
186 struct fuse_inode *fi = get_fuse_inode(inode);
187 struct fuse_file *ff = file->private_data;
189 * file may be written through mmap, so chain it onto the
190 * inodes's write_file list
192 spin_lock(&fi->lock);
193 if (list_empty(&ff->write_entry))
194 list_add(&ff->write_entry, &fi->write_files);
195 spin_unlock(&fi->lock);
198 void fuse_finish_open(struct inode *inode, struct file *file)
200 struct fuse_file *ff = file->private_data;
201 struct fuse_conn *fc = get_fuse_conn(inode);
203 if (ff->open_flags & FOPEN_STREAM)
204 stream_open(inode, file);
205 else if (ff->open_flags & FOPEN_NONSEEKABLE)
206 nonseekable_open(inode, file);
208 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
209 struct fuse_inode *fi = get_fuse_inode(inode);
211 spin_lock(&fi->lock);
212 fi->attr_version = atomic64_inc_return(&fc->attr_version);
213 i_size_write(inode, 0);
214 spin_unlock(&fi->lock);
215 file_update_time(file);
216 fuse_invalidate_attr_mask(inode, FUSE_STATX_MODSIZE);
218 if ((file->f_mode & FMODE_WRITE) && fc->writeback_cache)
219 fuse_link_write_file(file);
222 int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
224 struct fuse_mount *fm = get_fuse_mount(inode);
225 struct fuse_conn *fc = fm->fc;
227 bool is_wb_truncate = (file->f_flags & O_TRUNC) &&
228 fc->atomic_o_trunc &&
230 bool dax_truncate = (file->f_flags & O_TRUNC) &&
231 fc->atomic_o_trunc && FUSE_IS_DAX(inode);
233 if (fuse_is_bad(inode))
236 err = generic_file_open(inode, file);
240 if (is_wb_truncate || dax_truncate)
244 filemap_invalidate_lock(inode->i_mapping);
245 err = fuse_dax_break_layouts(inode, 0, 0);
247 goto out_inode_unlock;
250 if (is_wb_truncate || dax_truncate)
251 fuse_set_nowrite(inode);
253 err = fuse_do_open(fm, get_node_id(inode), file, isdir);
255 fuse_finish_open(inode, file);
257 if (is_wb_truncate || dax_truncate)
258 fuse_release_nowrite(inode);
260 struct fuse_file *ff = file->private_data;
262 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC))
263 truncate_pagecache(inode, 0);
264 else if (!(ff->open_flags & FOPEN_KEEP_CACHE))
265 invalidate_inode_pages2(inode->i_mapping);
268 filemap_invalidate_unlock(inode->i_mapping);
270 if (is_wb_truncate || dax_truncate)
276 static void fuse_prepare_release(struct fuse_inode *fi, struct fuse_file *ff,
277 unsigned int flags, int opcode)
279 struct fuse_conn *fc = ff->fm->fc;
280 struct fuse_release_args *ra = ff->release_args;
282 /* Inode is NULL on error path of fuse_create_open() */
284 spin_lock(&fi->lock);
285 list_del(&ff->write_entry);
286 spin_unlock(&fi->lock);
288 spin_lock(&fc->lock);
289 if (!RB_EMPTY_NODE(&ff->polled_node))
290 rb_erase(&ff->polled_node, &fc->polled_files);
291 spin_unlock(&fc->lock);
293 wake_up_interruptible_all(&ff->poll_wait);
295 ra->inarg.fh = ff->fh;
296 ra->inarg.flags = flags;
297 ra->args.in_numargs = 1;
298 ra->args.in_args[0].size = sizeof(struct fuse_release_in);
299 ra->args.in_args[0].value = &ra->inarg;
300 ra->args.opcode = opcode;
301 ra->args.nodeid = ff->nodeid;
302 ra->args.force = true;
303 ra->args.nocreds = true;
306 void fuse_file_release(struct inode *inode, struct fuse_file *ff,
307 unsigned int open_flags, fl_owner_t id, bool isdir)
309 struct fuse_inode *fi = get_fuse_inode(inode);
310 struct fuse_release_args *ra = ff->release_args;
311 int opcode = isdir ? FUSE_RELEASEDIR : FUSE_RELEASE;
313 fuse_prepare_release(fi, ff, open_flags, opcode);
316 ra->inarg.release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
317 ra->inarg.lock_owner = fuse_lock_owner_id(ff->fm->fc, id);
319 /* Hold inode until release is finished */
320 ra->inode = igrab(inode);
323 * Normally this will send the RELEASE request, however if
324 * some asynchronous READ or WRITE requests are outstanding,
325 * the sending will be delayed.
327 * Make the release synchronous if this is a fuseblk mount,
328 * synchronous RELEASE is allowed (and desirable) in this case
329 * because the server can be trusted not to screw up.
331 fuse_file_put(ff, ff->fm->fc->destroy, isdir);
334 void fuse_release_common(struct file *file, bool isdir)
336 fuse_file_release(file_inode(file), file->private_data, file->f_flags,
337 (fl_owner_t) file, isdir);
340 static int fuse_open(struct inode *inode, struct file *file)
342 return fuse_open_common(inode, file, false);
345 static int fuse_release(struct inode *inode, struct file *file)
347 struct fuse_conn *fc = get_fuse_conn(inode);
350 * Dirty pages might remain despite write_inode_now() call from
351 * fuse_flush() due to writes racing with the close.
353 if (fc->writeback_cache)
354 write_inode_now(inode, 1);
356 fuse_release_common(file, false);
358 /* return value is ignored by VFS */
362 void fuse_sync_release(struct fuse_inode *fi, struct fuse_file *ff,
365 WARN_ON(refcount_read(&ff->count) > 1);
366 fuse_prepare_release(fi, ff, flags, FUSE_RELEASE);
368 * iput(NULL) is a no-op and since the refcount is 1 and everything's
369 * synchronous, we are fine with not doing igrab() here"
371 fuse_file_put(ff, true, false);
373 EXPORT_SYMBOL_GPL(fuse_sync_release);
376 * Scramble the ID space with XTEA, so that the value of the files_struct
377 * pointer is not exposed to userspace.
379 u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
381 u32 *k = fc->scramble_key;
382 u64 v = (unsigned long) id;
388 for (i = 0; i < 32; i++) {
389 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
391 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
394 return (u64) v0 + ((u64) v1 << 32);
397 struct fuse_writepage_args {
398 struct fuse_io_args ia;
399 struct rb_node writepages_entry;
400 struct list_head queue_entry;
401 struct fuse_writepage_args *next;
403 struct fuse_sync_bucket *bucket;
406 static struct fuse_writepage_args *fuse_find_writeback(struct fuse_inode *fi,
407 pgoff_t idx_from, pgoff_t idx_to)
411 n = fi->writepages.rb_node;
414 struct fuse_writepage_args *wpa;
417 wpa = rb_entry(n, struct fuse_writepage_args, writepages_entry);
418 WARN_ON(get_fuse_inode(wpa->inode) != fi);
419 curr_index = wpa->ia.write.in.offset >> PAGE_SHIFT;
420 if (idx_from >= curr_index + wpa->ia.ap.num_pages)
422 else if (idx_to < curr_index)
431 * Check if any page in a range is under writeback
433 * This is currently done by walking the list of writepage requests
434 * for the inode, which can be pretty inefficient.
436 static bool fuse_range_is_writeback(struct inode *inode, pgoff_t idx_from,
439 struct fuse_inode *fi = get_fuse_inode(inode);
442 spin_lock(&fi->lock);
443 found = fuse_find_writeback(fi, idx_from, idx_to);
444 spin_unlock(&fi->lock);
449 static inline bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
451 return fuse_range_is_writeback(inode, index, index);
455 * Wait for page writeback to be completed.
457 * Since fuse doesn't rely on the VM writeback tracking, this has to
458 * use some other means.
460 static void fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
462 struct fuse_inode *fi = get_fuse_inode(inode);
464 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
468 * Wait for all pending writepages on the inode to finish.
470 * This is currently done by blocking further writes with FUSE_NOWRITE
471 * and waiting for all sent writes to complete.
473 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
474 * could conflict with truncation.
476 static void fuse_sync_writes(struct inode *inode)
478 fuse_set_nowrite(inode);
479 fuse_release_nowrite(inode);
482 static int fuse_flush(struct file *file, fl_owner_t id)
484 struct inode *inode = file_inode(file);
485 struct fuse_mount *fm = get_fuse_mount(inode);
486 struct fuse_file *ff = file->private_data;
487 struct fuse_flush_in inarg;
491 if (fuse_is_bad(inode))
494 if (ff->open_flags & FOPEN_NOFLUSH && !fm->fc->writeback_cache)
497 err = write_inode_now(inode, 1);
502 fuse_sync_writes(inode);
505 err = filemap_check_errors(file->f_mapping);
510 if (fm->fc->no_flush)
513 memset(&inarg, 0, sizeof(inarg));
515 inarg.lock_owner = fuse_lock_owner_id(fm->fc, id);
516 args.opcode = FUSE_FLUSH;
517 args.nodeid = get_node_id(inode);
519 args.in_args[0].size = sizeof(inarg);
520 args.in_args[0].value = &inarg;
523 err = fuse_simple_request(fm, &args);
524 if (err == -ENOSYS) {
525 fm->fc->no_flush = 1;
531 * In memory i_blocks is not maintained by fuse, if writeback cache is
532 * enabled, i_blocks from cached attr may not be accurate.
534 if (!err && fm->fc->writeback_cache)
535 fuse_invalidate_attr_mask(inode, STATX_BLOCKS);
539 int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
540 int datasync, int opcode)
542 struct inode *inode = file->f_mapping->host;
543 struct fuse_mount *fm = get_fuse_mount(inode);
544 struct fuse_file *ff = file->private_data;
546 struct fuse_fsync_in inarg;
548 memset(&inarg, 0, sizeof(inarg));
550 inarg.fsync_flags = datasync ? FUSE_FSYNC_FDATASYNC : 0;
551 args.opcode = opcode;
552 args.nodeid = get_node_id(inode);
554 args.in_args[0].size = sizeof(inarg);
555 args.in_args[0].value = &inarg;
556 return fuse_simple_request(fm, &args);
559 static int fuse_fsync(struct file *file, loff_t start, loff_t end,
562 struct inode *inode = file->f_mapping->host;
563 struct fuse_conn *fc = get_fuse_conn(inode);
566 if (fuse_is_bad(inode))
572 * Start writeback against all dirty pages of the inode, then
573 * wait for all outstanding writes, before sending the FSYNC
576 err = file_write_and_wait_range(file, start, end);
580 fuse_sync_writes(inode);
583 * Due to implementation of fuse writeback
584 * file_write_and_wait_range() does not catch errors.
585 * We have to do this directly after fuse_sync_writes()
587 err = file_check_and_advance_wb_err(file);
591 err = sync_inode_metadata(inode, 1);
598 err = fuse_fsync_common(file, start, end, datasync, FUSE_FSYNC);
599 if (err == -ENOSYS) {
609 void fuse_read_args_fill(struct fuse_io_args *ia, struct file *file, loff_t pos,
610 size_t count, int opcode)
612 struct fuse_file *ff = file->private_data;
613 struct fuse_args *args = &ia->ap.args;
615 ia->read.in.fh = ff->fh;
616 ia->read.in.offset = pos;
617 ia->read.in.size = count;
618 ia->read.in.flags = file->f_flags;
619 args->opcode = opcode;
620 args->nodeid = ff->nodeid;
621 args->in_numargs = 1;
622 args->in_args[0].size = sizeof(ia->read.in);
623 args->in_args[0].value = &ia->read.in;
624 args->out_argvar = true;
625 args->out_numargs = 1;
626 args->out_args[0].size = count;
629 static void fuse_release_user_pages(struct fuse_args_pages *ap,
634 for (i = 0; i < ap->num_pages; i++) {
636 set_page_dirty_lock(ap->pages[i]);
637 put_page(ap->pages[i]);
641 static void fuse_io_release(struct kref *kref)
643 kfree(container_of(kref, struct fuse_io_priv, refcnt));
646 static ssize_t fuse_get_res_by_io(struct fuse_io_priv *io)
651 if (io->bytes >= 0 && io->write)
654 return io->bytes < 0 ? io->size : io->bytes;
658 * In case of short read, the caller sets 'pos' to the position of
659 * actual end of fuse request in IO request. Otherwise, if bytes_requested
660 * == bytes_transferred or rw == WRITE, the caller sets 'pos' to -1.
663 * User requested DIO read of 64K. It was split into two 32K fuse requests,
664 * both submitted asynchronously. The first of them was ACKed by userspace as
665 * fully completed (req->out.args[0].size == 32K) resulting in pos == -1. The
666 * second request was ACKed as short, e.g. only 1K was read, resulting in
669 * Thus, when all fuse requests are completed, the minimal non-negative 'pos'
670 * will be equal to the length of the longest contiguous fragment of
671 * transferred data starting from the beginning of IO request.
673 static void fuse_aio_complete(struct fuse_io_priv *io, int err, ssize_t pos)
677 spin_lock(&io->lock);
679 io->err = io->err ? : err;
680 else if (pos >= 0 && (io->bytes < 0 || pos < io->bytes))
684 if (!left && io->blocking)
686 spin_unlock(&io->lock);
688 if (!left && !io->blocking) {
689 ssize_t res = fuse_get_res_by_io(io);
692 struct inode *inode = file_inode(io->iocb->ki_filp);
693 struct fuse_conn *fc = get_fuse_conn(inode);
694 struct fuse_inode *fi = get_fuse_inode(inode);
696 spin_lock(&fi->lock);
697 fi->attr_version = atomic64_inc_return(&fc->attr_version);
698 spin_unlock(&fi->lock);
701 io->iocb->ki_complete(io->iocb, res);
704 kref_put(&io->refcnt, fuse_io_release);
707 static struct fuse_io_args *fuse_io_alloc(struct fuse_io_priv *io,
710 struct fuse_io_args *ia;
712 ia = kzalloc(sizeof(*ia), GFP_KERNEL);
715 ia->ap.pages = fuse_pages_alloc(npages, GFP_KERNEL,
725 static void fuse_io_free(struct fuse_io_args *ia)
731 static void fuse_aio_complete_req(struct fuse_mount *fm, struct fuse_args *args,
734 struct fuse_io_args *ia = container_of(args, typeof(*ia), ap.args);
735 struct fuse_io_priv *io = ia->io;
738 fuse_release_user_pages(&ia->ap, io->should_dirty);
742 } else if (io->write) {
743 if (ia->write.out.size > ia->write.in.size) {
745 } else if (ia->write.in.size != ia->write.out.size) {
746 pos = ia->write.in.offset - io->offset +
750 u32 outsize = args->out_args[0].size;
752 if (ia->read.in.size != outsize)
753 pos = ia->read.in.offset - io->offset + outsize;
756 fuse_aio_complete(io, err, pos);
760 static ssize_t fuse_async_req_send(struct fuse_mount *fm,
761 struct fuse_io_args *ia, size_t num_bytes)
764 struct fuse_io_priv *io = ia->io;
766 spin_lock(&io->lock);
767 kref_get(&io->refcnt);
768 io->size += num_bytes;
770 spin_unlock(&io->lock);
772 ia->ap.args.end = fuse_aio_complete_req;
773 ia->ap.args.may_block = io->should_dirty;
774 err = fuse_simple_background(fm, &ia->ap.args, GFP_KERNEL);
776 fuse_aio_complete_req(fm, &ia->ap.args, err);
781 static ssize_t fuse_send_read(struct fuse_io_args *ia, loff_t pos, size_t count,
784 struct file *file = ia->io->iocb->ki_filp;
785 struct fuse_file *ff = file->private_data;
786 struct fuse_mount *fm = ff->fm;
788 fuse_read_args_fill(ia, file, pos, count, FUSE_READ);
790 ia->read.in.read_flags |= FUSE_READ_LOCKOWNER;
791 ia->read.in.lock_owner = fuse_lock_owner_id(fm->fc, owner);
795 return fuse_async_req_send(fm, ia, count);
797 return fuse_simple_request(fm, &ia->ap.args);
800 static void fuse_read_update_size(struct inode *inode, loff_t size,
803 struct fuse_conn *fc = get_fuse_conn(inode);
804 struct fuse_inode *fi = get_fuse_inode(inode);
806 spin_lock(&fi->lock);
807 if (attr_ver >= fi->attr_version && size < inode->i_size &&
808 !test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
809 fi->attr_version = atomic64_inc_return(&fc->attr_version);
810 i_size_write(inode, size);
812 spin_unlock(&fi->lock);
815 static void fuse_short_read(struct inode *inode, u64 attr_ver, size_t num_read,
816 struct fuse_args_pages *ap)
818 struct fuse_conn *fc = get_fuse_conn(inode);
821 * If writeback_cache is enabled, a short read means there's a hole in
822 * the file. Some data after the hole is in page cache, but has not
823 * reached the client fs yet. So the hole is not present there.
825 if (!fc->writeback_cache) {
826 loff_t pos = page_offset(ap->pages[0]) + num_read;
827 fuse_read_update_size(inode, pos, attr_ver);
831 static int fuse_do_readpage(struct file *file, struct page *page)
833 struct inode *inode = page->mapping->host;
834 struct fuse_mount *fm = get_fuse_mount(inode);
835 loff_t pos = page_offset(page);
836 struct fuse_page_desc desc = { .length = PAGE_SIZE };
837 struct fuse_io_args ia = {
838 .ap.args.page_zeroing = true,
839 .ap.args.out_pages = true,
848 * Page writeback can extend beyond the lifetime of the
849 * page-cache page, so make sure we read a properly synced
852 fuse_wait_on_page_writeback(inode, page->index);
854 attr_ver = fuse_get_attr_version(fm->fc);
856 /* Don't overflow end offset */
857 if (pos + (desc.length - 1) == LLONG_MAX)
860 fuse_read_args_fill(&ia, file, pos, desc.length, FUSE_READ);
861 res = fuse_simple_request(fm, &ia.ap.args);
865 * Short read means EOF. If file size is larger, truncate it
867 if (res < desc.length)
868 fuse_short_read(inode, attr_ver, res, &ia.ap);
870 SetPageUptodate(page);
875 static int fuse_read_folio(struct file *file, struct folio *folio)
877 struct page *page = &folio->page;
878 struct inode *inode = page->mapping->host;
882 if (fuse_is_bad(inode))
885 err = fuse_do_readpage(file, page);
886 fuse_invalidate_atime(inode);
892 static void fuse_readpages_end(struct fuse_mount *fm, struct fuse_args *args,
896 struct fuse_io_args *ia = container_of(args, typeof(*ia), ap.args);
897 struct fuse_args_pages *ap = &ia->ap;
898 size_t count = ia->read.in.size;
899 size_t num_read = args->out_args[0].size;
900 struct address_space *mapping = NULL;
902 for (i = 0; mapping == NULL && i < ap->num_pages; i++)
903 mapping = ap->pages[i]->mapping;
906 struct inode *inode = mapping->host;
909 * Short read means EOF. If file size is larger, truncate it
911 if (!err && num_read < count)
912 fuse_short_read(inode, ia->read.attr_ver, num_read, ap);
914 fuse_invalidate_atime(inode);
917 for (i = 0; i < ap->num_pages; i++) {
918 struct page *page = ap->pages[i];
921 SetPageUptodate(page);
928 fuse_file_put(ia->ff, false, false);
933 static void fuse_send_readpages(struct fuse_io_args *ia, struct file *file)
935 struct fuse_file *ff = file->private_data;
936 struct fuse_mount *fm = ff->fm;
937 struct fuse_args_pages *ap = &ia->ap;
938 loff_t pos = page_offset(ap->pages[0]);
939 size_t count = ap->num_pages << PAGE_SHIFT;
943 ap->args.out_pages = true;
944 ap->args.page_zeroing = true;
945 ap->args.page_replace = true;
947 /* Don't overflow end offset */
948 if (pos + (count - 1) == LLONG_MAX) {
950 ap->descs[ap->num_pages - 1].length--;
952 WARN_ON((loff_t) (pos + count) < 0);
954 fuse_read_args_fill(ia, file, pos, count, FUSE_READ);
955 ia->read.attr_ver = fuse_get_attr_version(fm->fc);
956 if (fm->fc->async_read) {
957 ia->ff = fuse_file_get(ff);
958 ap->args.end = fuse_readpages_end;
959 err = fuse_simple_background(fm, &ap->args, GFP_KERNEL);
963 res = fuse_simple_request(fm, &ap->args);
964 err = res < 0 ? res : 0;
966 fuse_readpages_end(fm, &ap->args, err);
969 static void fuse_readahead(struct readahead_control *rac)
971 struct inode *inode = rac->mapping->host;
972 struct fuse_conn *fc = get_fuse_conn(inode);
973 unsigned int i, max_pages, nr_pages = 0;
975 if (fuse_is_bad(inode))
978 max_pages = min_t(unsigned int, fc->max_pages,
979 fc->max_read / PAGE_SIZE);
982 struct fuse_io_args *ia;
983 struct fuse_args_pages *ap;
985 if (fc->num_background >= fc->congestion_threshold &&
986 rac->ra->async_size >= readahead_count(rac))
988 * Congested and only async pages left, so skip the
993 nr_pages = readahead_count(rac) - nr_pages;
994 if (nr_pages > max_pages)
995 nr_pages = max_pages;
998 ia = fuse_io_alloc(NULL, nr_pages);
1002 nr_pages = __readahead_batch(rac, ap->pages, nr_pages);
1003 for (i = 0; i < nr_pages; i++) {
1004 fuse_wait_on_page_writeback(inode,
1005 readahead_index(rac) + i);
1006 ap->descs[i].length = PAGE_SIZE;
1008 ap->num_pages = nr_pages;
1009 fuse_send_readpages(ia, rac->file);
1013 static ssize_t fuse_cache_read_iter(struct kiocb *iocb, struct iov_iter *to)
1015 struct inode *inode = iocb->ki_filp->f_mapping->host;
1016 struct fuse_conn *fc = get_fuse_conn(inode);
1019 * In auto invalidate mode, always update attributes on read.
1020 * Otherwise, only update if we attempt to read past EOF (to ensure
1021 * i_size is up to date).
1023 if (fc->auto_inval_data ||
1024 (iocb->ki_pos + iov_iter_count(to) > i_size_read(inode))) {
1026 err = fuse_update_attributes(inode, iocb->ki_filp, STATX_SIZE);
1031 return generic_file_read_iter(iocb, to);
1034 static void fuse_write_args_fill(struct fuse_io_args *ia, struct fuse_file *ff,
1035 loff_t pos, size_t count)
1037 struct fuse_args *args = &ia->ap.args;
1039 ia->write.in.fh = ff->fh;
1040 ia->write.in.offset = pos;
1041 ia->write.in.size = count;
1042 args->opcode = FUSE_WRITE;
1043 args->nodeid = ff->nodeid;
1044 args->in_numargs = 2;
1045 if (ff->fm->fc->minor < 9)
1046 args->in_args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
1048 args->in_args[0].size = sizeof(ia->write.in);
1049 args->in_args[0].value = &ia->write.in;
1050 args->in_args[1].size = count;
1051 args->out_numargs = 1;
1052 args->out_args[0].size = sizeof(ia->write.out);
1053 args->out_args[0].value = &ia->write.out;
1056 static unsigned int fuse_write_flags(struct kiocb *iocb)
1058 unsigned int flags = iocb->ki_filp->f_flags;
1060 if (iocb_is_dsync(iocb))
1062 if (iocb->ki_flags & IOCB_SYNC)
1068 static ssize_t fuse_send_write(struct fuse_io_args *ia, loff_t pos,
1069 size_t count, fl_owner_t owner)
1071 struct kiocb *iocb = ia->io->iocb;
1072 struct file *file = iocb->ki_filp;
1073 struct fuse_file *ff = file->private_data;
1074 struct fuse_mount *fm = ff->fm;
1075 struct fuse_write_in *inarg = &ia->write.in;
1078 fuse_write_args_fill(ia, ff, pos, count);
1079 inarg->flags = fuse_write_flags(iocb);
1080 if (owner != NULL) {
1081 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
1082 inarg->lock_owner = fuse_lock_owner_id(fm->fc, owner);
1086 return fuse_async_req_send(fm, ia, count);
1088 err = fuse_simple_request(fm, &ia->ap.args);
1089 if (!err && ia->write.out.size > count)
1092 return err ?: ia->write.out.size;
1095 bool fuse_write_update_attr(struct inode *inode, loff_t pos, ssize_t written)
1097 struct fuse_conn *fc = get_fuse_conn(inode);
1098 struct fuse_inode *fi = get_fuse_inode(inode);
1101 spin_lock(&fi->lock);
1102 fi->attr_version = atomic64_inc_return(&fc->attr_version);
1103 if (written > 0 && pos > inode->i_size) {
1104 i_size_write(inode, pos);
1107 spin_unlock(&fi->lock);
1109 fuse_invalidate_attr_mask(inode, FUSE_STATX_MODSIZE);
1114 static ssize_t fuse_send_write_pages(struct fuse_io_args *ia,
1115 struct kiocb *iocb, struct inode *inode,
1116 loff_t pos, size_t count)
1118 struct fuse_args_pages *ap = &ia->ap;
1119 struct file *file = iocb->ki_filp;
1120 struct fuse_file *ff = file->private_data;
1121 struct fuse_mount *fm = ff->fm;
1122 unsigned int offset, i;
1126 for (i = 0; i < ap->num_pages; i++)
1127 fuse_wait_on_page_writeback(inode, ap->pages[i]->index);
1129 fuse_write_args_fill(ia, ff, pos, count);
1130 ia->write.in.flags = fuse_write_flags(iocb);
1131 if (fm->fc->handle_killpriv_v2 && !capable(CAP_FSETID))
1132 ia->write.in.write_flags |= FUSE_WRITE_KILL_SUIDGID;
1134 err = fuse_simple_request(fm, &ap->args);
1135 if (!err && ia->write.out.size > count)
1138 short_write = ia->write.out.size < count;
1139 offset = ap->descs[0].offset;
1140 count = ia->write.out.size;
1141 for (i = 0; i < ap->num_pages; i++) {
1142 struct page *page = ap->pages[i];
1145 ClearPageUptodate(page);
1147 if (count >= PAGE_SIZE - offset)
1148 count -= PAGE_SIZE - offset;
1151 ClearPageUptodate(page);
1156 if (ia->write.page_locked && (i == ap->num_pages - 1))
1164 static ssize_t fuse_fill_write_pages(struct fuse_io_args *ia,
1165 struct address_space *mapping,
1166 struct iov_iter *ii, loff_t pos,
1167 unsigned int max_pages)
1169 struct fuse_args_pages *ap = &ia->ap;
1170 struct fuse_conn *fc = get_fuse_conn(mapping->host);
1171 unsigned offset = pos & (PAGE_SIZE - 1);
1175 ap->args.in_pages = true;
1176 ap->descs[0].offset = offset;
1181 pgoff_t index = pos >> PAGE_SHIFT;
1182 size_t bytes = min_t(size_t, PAGE_SIZE - offset,
1183 iov_iter_count(ii));
1185 bytes = min_t(size_t, bytes, fc->max_write - count);
1189 if (fault_in_iov_iter_readable(ii, bytes))
1193 page = grab_cache_page_write_begin(mapping, index);
1197 if (mapping_writably_mapped(mapping))
1198 flush_dcache_page(page);
1200 tmp = copy_page_from_iter_atomic(page, offset, bytes, ii);
1201 flush_dcache_page(page);
1210 ap->pages[ap->num_pages] = page;
1211 ap->descs[ap->num_pages].length = tmp;
1217 if (offset == PAGE_SIZE)
1220 /* If we copied full page, mark it uptodate */
1221 if (tmp == PAGE_SIZE)
1222 SetPageUptodate(page);
1224 if (PageUptodate(page)) {
1227 ia->write.page_locked = true;
1230 if (!fc->big_writes)
1232 } while (iov_iter_count(ii) && count < fc->max_write &&
1233 ap->num_pages < max_pages && offset == 0);
1235 return count > 0 ? count : err;
1238 static inline unsigned int fuse_wr_pages(loff_t pos, size_t len,
1239 unsigned int max_pages)
1241 return min_t(unsigned int,
1242 ((pos + len - 1) >> PAGE_SHIFT) -
1243 (pos >> PAGE_SHIFT) + 1,
1247 static ssize_t fuse_perform_write(struct kiocb *iocb, struct iov_iter *ii)
1249 struct address_space *mapping = iocb->ki_filp->f_mapping;
1250 struct inode *inode = mapping->host;
1251 struct fuse_conn *fc = get_fuse_conn(inode);
1252 struct fuse_inode *fi = get_fuse_inode(inode);
1253 loff_t pos = iocb->ki_pos;
1257 if (inode->i_size < pos + iov_iter_count(ii))
1258 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1262 struct fuse_io_args ia = {};
1263 struct fuse_args_pages *ap = &ia.ap;
1264 unsigned int nr_pages = fuse_wr_pages(pos, iov_iter_count(ii),
1267 ap->pages = fuse_pages_alloc(nr_pages, GFP_KERNEL, &ap->descs);
1273 count = fuse_fill_write_pages(&ia, mapping, ii, pos, nr_pages);
1277 err = fuse_send_write_pages(&ia, iocb, inode,
1280 size_t num_written = ia.write.out.size;
1285 /* break out of the loop on short write */
1286 if (num_written != count)
1291 } while (!err && iov_iter_count(ii));
1293 fuse_write_update_attr(inode, pos, res);
1294 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1298 iocb->ki_pos += res;
1302 static ssize_t fuse_cache_write_iter(struct kiocb *iocb, struct iov_iter *from)
1304 struct file *file = iocb->ki_filp;
1305 struct address_space *mapping = file->f_mapping;
1306 ssize_t written = 0;
1307 struct inode *inode = mapping->host;
1309 struct fuse_conn *fc = get_fuse_conn(inode);
1311 if (fc->writeback_cache) {
1312 /* Update size (EOF optimization) and mode (SUID clearing) */
1313 err = fuse_update_attributes(mapping->host, file,
1314 STATX_SIZE | STATX_MODE);
1318 if (fc->handle_killpriv_v2 &&
1319 setattr_should_drop_suidgid(&nop_mnt_idmap,
1320 file_inode(file))) {
1324 return generic_file_write_iter(iocb, from);
1330 err = generic_write_checks(iocb, from);
1334 err = file_remove_privs(file);
1338 err = file_update_time(file);
1342 if (iocb->ki_flags & IOCB_DIRECT) {
1343 written = generic_file_direct_write(iocb, from);
1344 if (written < 0 || !iov_iter_count(from))
1346 written = direct_write_fallback(iocb, from, written,
1347 fuse_perform_write(iocb, from));
1349 written = fuse_perform_write(iocb, from);
1352 inode_unlock(inode);
1354 written = generic_write_sync(iocb, written);
1356 return written ? written : err;
1359 static inline unsigned long fuse_get_user_addr(const struct iov_iter *ii)
1361 return (unsigned long)iter_iov(ii)->iov_base + ii->iov_offset;
1364 static inline size_t fuse_get_frag_size(const struct iov_iter *ii,
1367 return min(iov_iter_single_seg_count(ii), max_size);
1370 static int fuse_get_user_pages(struct fuse_args_pages *ap, struct iov_iter *ii,
1371 size_t *nbytesp, int write,
1372 unsigned int max_pages)
1374 size_t nbytes = 0; /* # bytes already packed in req */
1377 /* Special case for kernel I/O: can copy directly into the buffer */
1378 if (iov_iter_is_kvec(ii)) {
1379 unsigned long user_addr = fuse_get_user_addr(ii);
1380 size_t frag_size = fuse_get_frag_size(ii, *nbytesp);
1383 ap->args.in_args[1].value = (void *) user_addr;
1385 ap->args.out_args[0].value = (void *) user_addr;
1387 iov_iter_advance(ii, frag_size);
1388 *nbytesp = frag_size;
1392 while (nbytes < *nbytesp && ap->num_pages < max_pages) {
1395 ret = iov_iter_get_pages2(ii, &ap->pages[ap->num_pages],
1397 max_pages - ap->num_pages,
1405 npages = DIV_ROUND_UP(ret, PAGE_SIZE);
1407 ap->descs[ap->num_pages].offset = start;
1408 fuse_page_descs_length_init(ap->descs, ap->num_pages, npages);
1410 ap->num_pages += npages;
1411 ap->descs[ap->num_pages - 1].length -=
1412 (PAGE_SIZE - ret) & (PAGE_SIZE - 1);
1415 ap->args.user_pages = true;
1417 ap->args.in_pages = true;
1419 ap->args.out_pages = true;
1423 return ret < 0 ? ret : 0;
1426 ssize_t fuse_direct_io(struct fuse_io_priv *io, struct iov_iter *iter,
1427 loff_t *ppos, int flags)
1429 int write = flags & FUSE_DIO_WRITE;
1430 int cuse = flags & FUSE_DIO_CUSE;
1431 struct file *file = io->iocb->ki_filp;
1432 struct address_space *mapping = file->f_mapping;
1433 struct inode *inode = mapping->host;
1434 struct fuse_file *ff = file->private_data;
1435 struct fuse_conn *fc = ff->fm->fc;
1436 size_t nmax = write ? fc->max_write : fc->max_read;
1438 size_t count = iov_iter_count(iter);
1439 pgoff_t idx_from = pos >> PAGE_SHIFT;
1440 pgoff_t idx_to = (pos + count - 1) >> PAGE_SHIFT;
1443 struct fuse_io_args *ia;
1444 unsigned int max_pages;
1445 bool fopen_direct_io = ff->open_flags & FOPEN_DIRECT_IO;
1447 max_pages = iov_iter_npages(iter, fc->max_pages);
1448 ia = fuse_io_alloc(io, max_pages);
1452 if (fopen_direct_io && fc->direct_io_allow_mmap) {
1453 res = filemap_write_and_wait_range(mapping, pos, pos + count - 1);
1459 if (!cuse && fuse_range_is_writeback(inode, idx_from, idx_to)) {
1462 fuse_sync_writes(inode);
1464 inode_unlock(inode);
1467 if (fopen_direct_io && write) {
1468 res = invalidate_inode_pages2_range(mapping, idx_from, idx_to);
1475 io->should_dirty = !write && user_backed_iter(iter);
1478 fl_owner_t owner = current->files;
1479 size_t nbytes = min(count, nmax);
1481 err = fuse_get_user_pages(&ia->ap, iter, &nbytes, write,
1487 if (!capable(CAP_FSETID))
1488 ia->write.in.write_flags |= FUSE_WRITE_KILL_SUIDGID;
1490 nres = fuse_send_write(ia, pos, nbytes, owner);
1492 nres = fuse_send_read(ia, pos, nbytes, owner);
1495 if (!io->async || nres < 0) {
1496 fuse_release_user_pages(&ia->ap, io->should_dirty);
1501 iov_iter_revert(iter, nbytes);
1505 WARN_ON(nres > nbytes);
1510 if (nres != nbytes) {
1511 iov_iter_revert(iter, nbytes - nres);
1515 max_pages = iov_iter_npages(iter, fc->max_pages);
1516 ia = fuse_io_alloc(io, max_pages);
1526 return res > 0 ? res : err;
1528 EXPORT_SYMBOL_GPL(fuse_direct_io);
1530 static ssize_t __fuse_direct_read(struct fuse_io_priv *io,
1531 struct iov_iter *iter,
1535 struct inode *inode = file_inode(io->iocb->ki_filp);
1537 res = fuse_direct_io(io, iter, ppos, 0);
1539 fuse_invalidate_atime(inode);
1544 static ssize_t fuse_direct_IO(struct kiocb *iocb, struct iov_iter *iter);
1546 static ssize_t fuse_direct_read_iter(struct kiocb *iocb, struct iov_iter *to)
1550 if (!is_sync_kiocb(iocb) && iocb->ki_flags & IOCB_DIRECT) {
1551 res = fuse_direct_IO(iocb, to);
1553 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb);
1555 res = __fuse_direct_read(&io, to, &iocb->ki_pos);
1561 static bool fuse_direct_write_extending_i_size(struct kiocb *iocb,
1562 struct iov_iter *iter)
1564 struct inode *inode = file_inode(iocb->ki_filp);
1566 return iocb->ki_pos + iov_iter_count(iter) > i_size_read(inode);
1569 static ssize_t fuse_direct_write_iter(struct kiocb *iocb, struct iov_iter *from)
1571 struct inode *inode = file_inode(iocb->ki_filp);
1572 struct file *file = iocb->ki_filp;
1573 struct fuse_file *ff = file->private_data;
1574 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb);
1576 bool exclusive_lock =
1577 !(ff->open_flags & FOPEN_PARALLEL_DIRECT_WRITES) ||
1578 get_fuse_conn(inode)->direct_io_allow_mmap ||
1579 iocb->ki_flags & IOCB_APPEND ||
1580 fuse_direct_write_extending_i_size(iocb, from);
1583 * Take exclusive lock if
1584 * - Parallel direct writes are disabled - a user space decision
1585 * - Parallel direct writes are enabled and i_size is being extended.
1586 * - Shared mmap on direct_io file is supported (FUSE_DIRECT_IO_ALLOW_MMAP).
1587 * This might not be needed at all, but needs further investigation.
1592 inode_lock_shared(inode);
1594 /* A race with truncate might have come up as the decision for
1595 * the lock type was done without holding the lock, check again.
1597 if (fuse_direct_write_extending_i_size(iocb, from)) {
1598 inode_unlock_shared(inode);
1600 exclusive_lock = true;
1604 res = generic_write_checks(iocb, from);
1606 if (!is_sync_kiocb(iocb) && iocb->ki_flags & IOCB_DIRECT) {
1607 res = fuse_direct_IO(iocb, from);
1609 res = fuse_direct_io(&io, from, &iocb->ki_pos,
1611 fuse_write_update_attr(inode, iocb->ki_pos, res);
1615 inode_unlock(inode);
1617 inode_unlock_shared(inode);
1622 static ssize_t fuse_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
1624 struct file *file = iocb->ki_filp;
1625 struct fuse_file *ff = file->private_data;
1626 struct inode *inode = file_inode(file);
1628 if (fuse_is_bad(inode))
1631 if (FUSE_IS_DAX(inode))
1632 return fuse_dax_read_iter(iocb, to);
1634 if (!(ff->open_flags & FOPEN_DIRECT_IO))
1635 return fuse_cache_read_iter(iocb, to);
1637 return fuse_direct_read_iter(iocb, to);
1640 static ssize_t fuse_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
1642 struct file *file = iocb->ki_filp;
1643 struct fuse_file *ff = file->private_data;
1644 struct inode *inode = file_inode(file);
1646 if (fuse_is_bad(inode))
1649 if (FUSE_IS_DAX(inode))
1650 return fuse_dax_write_iter(iocb, from);
1652 if (!(ff->open_flags & FOPEN_DIRECT_IO))
1653 return fuse_cache_write_iter(iocb, from);
1655 return fuse_direct_write_iter(iocb, from);
1658 static void fuse_writepage_free(struct fuse_writepage_args *wpa)
1660 struct fuse_args_pages *ap = &wpa->ia.ap;
1664 fuse_sync_bucket_dec(wpa->bucket);
1666 for (i = 0; i < ap->num_pages; i++)
1667 __free_page(ap->pages[i]);
1670 fuse_file_put(wpa->ia.ff, false, false);
1676 static void fuse_writepage_finish(struct fuse_mount *fm,
1677 struct fuse_writepage_args *wpa)
1679 struct fuse_args_pages *ap = &wpa->ia.ap;
1680 struct inode *inode = wpa->inode;
1681 struct fuse_inode *fi = get_fuse_inode(inode);
1682 struct backing_dev_info *bdi = inode_to_bdi(inode);
1685 for (i = 0; i < ap->num_pages; i++) {
1686 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
1687 dec_node_page_state(ap->pages[i], NR_WRITEBACK_TEMP);
1688 wb_writeout_inc(&bdi->wb);
1690 wake_up(&fi->page_waitq);
1693 /* Called under fi->lock, may release and reacquire it */
1694 static void fuse_send_writepage(struct fuse_mount *fm,
1695 struct fuse_writepage_args *wpa, loff_t size)
1696 __releases(fi->lock)
1697 __acquires(fi->lock)
1699 struct fuse_writepage_args *aux, *next;
1700 struct fuse_inode *fi = get_fuse_inode(wpa->inode);
1701 struct fuse_write_in *inarg = &wpa->ia.write.in;
1702 struct fuse_args *args = &wpa->ia.ap.args;
1703 __u64 data_size = wpa->ia.ap.num_pages * PAGE_SIZE;
1707 if (inarg->offset + data_size <= size) {
1708 inarg->size = data_size;
1709 } else if (inarg->offset < size) {
1710 inarg->size = size - inarg->offset;
1712 /* Got truncated off completely */
1716 args->in_args[1].size = inarg->size;
1718 args->nocreds = true;
1720 err = fuse_simple_background(fm, args, GFP_ATOMIC);
1721 if (err == -ENOMEM) {
1722 spin_unlock(&fi->lock);
1723 err = fuse_simple_background(fm, args, GFP_NOFS | __GFP_NOFAIL);
1724 spin_lock(&fi->lock);
1727 /* Fails on broken connection only */
1735 rb_erase(&wpa->writepages_entry, &fi->writepages);
1736 fuse_writepage_finish(fm, wpa);
1737 spin_unlock(&fi->lock);
1739 /* After fuse_writepage_finish() aux request list is private */
1740 for (aux = wpa->next; aux; aux = next) {
1743 fuse_writepage_free(aux);
1746 fuse_writepage_free(wpa);
1747 spin_lock(&fi->lock);
1751 * If fi->writectr is positive (no truncate or fsync going on) send
1752 * all queued writepage requests.
1754 * Called with fi->lock
1756 void fuse_flush_writepages(struct inode *inode)
1757 __releases(fi->lock)
1758 __acquires(fi->lock)
1760 struct fuse_mount *fm = get_fuse_mount(inode);
1761 struct fuse_inode *fi = get_fuse_inode(inode);
1762 loff_t crop = i_size_read(inode);
1763 struct fuse_writepage_args *wpa;
1765 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1766 wpa = list_entry(fi->queued_writes.next,
1767 struct fuse_writepage_args, queue_entry);
1768 list_del_init(&wpa->queue_entry);
1769 fuse_send_writepage(fm, wpa, crop);
1773 static struct fuse_writepage_args *fuse_insert_writeback(struct rb_root *root,
1774 struct fuse_writepage_args *wpa)
1776 pgoff_t idx_from = wpa->ia.write.in.offset >> PAGE_SHIFT;
1777 pgoff_t idx_to = idx_from + wpa->ia.ap.num_pages - 1;
1778 struct rb_node **p = &root->rb_node;
1779 struct rb_node *parent = NULL;
1781 WARN_ON(!wpa->ia.ap.num_pages);
1783 struct fuse_writepage_args *curr;
1787 curr = rb_entry(parent, struct fuse_writepage_args,
1789 WARN_ON(curr->inode != wpa->inode);
1790 curr_index = curr->ia.write.in.offset >> PAGE_SHIFT;
1792 if (idx_from >= curr_index + curr->ia.ap.num_pages)
1793 p = &(*p)->rb_right;
1794 else if (idx_to < curr_index)
1800 rb_link_node(&wpa->writepages_entry, parent, p);
1801 rb_insert_color(&wpa->writepages_entry, root);
1805 static void tree_insert(struct rb_root *root, struct fuse_writepage_args *wpa)
1807 WARN_ON(fuse_insert_writeback(root, wpa));
1810 static void fuse_writepage_end(struct fuse_mount *fm, struct fuse_args *args,
1813 struct fuse_writepage_args *wpa =
1814 container_of(args, typeof(*wpa), ia.ap.args);
1815 struct inode *inode = wpa->inode;
1816 struct fuse_inode *fi = get_fuse_inode(inode);
1817 struct fuse_conn *fc = get_fuse_conn(inode);
1819 mapping_set_error(inode->i_mapping, error);
1821 * A writeback finished and this might have updated mtime/ctime on
1822 * server making local mtime/ctime stale. Hence invalidate attrs.
1823 * Do this only if writeback_cache is not enabled. If writeback_cache
1824 * is enabled, we trust local ctime/mtime.
1826 if (!fc->writeback_cache)
1827 fuse_invalidate_attr_mask(inode, FUSE_STATX_MODIFY);
1828 spin_lock(&fi->lock);
1829 rb_erase(&wpa->writepages_entry, &fi->writepages);
1831 struct fuse_mount *fm = get_fuse_mount(inode);
1832 struct fuse_write_in *inarg = &wpa->ia.write.in;
1833 struct fuse_writepage_args *next = wpa->next;
1835 wpa->next = next->next;
1837 next->ia.ff = fuse_file_get(wpa->ia.ff);
1838 tree_insert(&fi->writepages, next);
1841 * Skip fuse_flush_writepages() to make it easy to crop requests
1842 * based on primary request size.
1844 * 1st case (trivial): there are no concurrent activities using
1845 * fuse_set/release_nowrite. Then we're on safe side because
1846 * fuse_flush_writepages() would call fuse_send_writepage()
1849 * 2nd case: someone called fuse_set_nowrite and it is waiting
1850 * now for completion of all in-flight requests. This happens
1851 * rarely and no more than once per page, so this should be
1854 * 3rd case: someone (e.g. fuse_do_setattr()) is in the middle
1855 * of fuse_set_nowrite..fuse_release_nowrite section. The fact
1856 * that fuse_set_nowrite returned implies that all in-flight
1857 * requests were completed along with all of their secondary
1858 * requests. Further primary requests are blocked by negative
1859 * writectr. Hence there cannot be any in-flight requests and
1860 * no invocations of fuse_writepage_end() while we're in
1861 * fuse_set_nowrite..fuse_release_nowrite section.
1863 fuse_send_writepage(fm, next, inarg->offset + inarg->size);
1866 fuse_writepage_finish(fm, wpa);
1867 spin_unlock(&fi->lock);
1868 fuse_writepage_free(wpa);
1871 static struct fuse_file *__fuse_write_file_get(struct fuse_inode *fi)
1873 struct fuse_file *ff;
1875 spin_lock(&fi->lock);
1876 ff = list_first_entry_or_null(&fi->write_files, struct fuse_file,
1880 spin_unlock(&fi->lock);
1885 static struct fuse_file *fuse_write_file_get(struct fuse_inode *fi)
1887 struct fuse_file *ff = __fuse_write_file_get(fi);
1892 int fuse_write_inode(struct inode *inode, struct writeback_control *wbc)
1894 struct fuse_inode *fi = get_fuse_inode(inode);
1895 struct fuse_file *ff;
1899 * Inode is always written before the last reference is dropped and
1900 * hence this should not be reached from reclaim.
1902 * Writing back the inode from reclaim can deadlock if the request
1903 * processing itself needs an allocation. Allocations triggering
1904 * reclaim while serving a request can't be prevented, because it can
1905 * involve any number of unrelated userspace processes.
1907 WARN_ON(wbc->for_reclaim);
1909 ff = __fuse_write_file_get(fi);
1910 err = fuse_flush_times(inode, ff);
1912 fuse_file_put(ff, false, false);
1917 static struct fuse_writepage_args *fuse_writepage_args_alloc(void)
1919 struct fuse_writepage_args *wpa;
1920 struct fuse_args_pages *ap;
1922 wpa = kzalloc(sizeof(*wpa), GFP_NOFS);
1926 ap->pages = fuse_pages_alloc(1, GFP_NOFS, &ap->descs);
1936 static void fuse_writepage_add_to_bucket(struct fuse_conn *fc,
1937 struct fuse_writepage_args *wpa)
1943 /* Prevent resurrection of dead bucket in unlikely race with syncfs */
1945 wpa->bucket = rcu_dereference(fc->curr_bucket);
1946 } while (unlikely(!atomic_inc_not_zero(&wpa->bucket->count)));
1950 static int fuse_writepage_locked(struct page *page)
1952 struct address_space *mapping = page->mapping;
1953 struct inode *inode = mapping->host;
1954 struct fuse_conn *fc = get_fuse_conn(inode);
1955 struct fuse_inode *fi = get_fuse_inode(inode);
1956 struct fuse_writepage_args *wpa;
1957 struct fuse_args_pages *ap;
1958 struct page *tmp_page;
1959 int error = -ENOMEM;
1961 set_page_writeback(page);
1963 wpa = fuse_writepage_args_alloc();
1968 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1973 wpa->ia.ff = fuse_write_file_get(fi);
1977 fuse_writepage_add_to_bucket(fc, wpa);
1978 fuse_write_args_fill(&wpa->ia, wpa->ia.ff, page_offset(page), 0);
1980 copy_highpage(tmp_page, page);
1981 wpa->ia.write.in.write_flags |= FUSE_WRITE_CACHE;
1983 ap->args.in_pages = true;
1985 ap->pages[0] = tmp_page;
1986 ap->descs[0].offset = 0;
1987 ap->descs[0].length = PAGE_SIZE;
1988 ap->args.end = fuse_writepage_end;
1991 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
1992 inc_node_page_state(tmp_page, NR_WRITEBACK_TEMP);
1994 spin_lock(&fi->lock);
1995 tree_insert(&fi->writepages, wpa);
1996 list_add_tail(&wpa->queue_entry, &fi->queued_writes);
1997 fuse_flush_writepages(inode);
1998 spin_unlock(&fi->lock);
2000 end_page_writeback(page);
2005 __free_page(tmp_page);
2009 mapping_set_error(page->mapping, error);
2010 end_page_writeback(page);
2014 static int fuse_writepage(struct page *page, struct writeback_control *wbc)
2016 struct fuse_conn *fc = get_fuse_conn(page->mapping->host);
2019 if (fuse_page_is_writeback(page->mapping->host, page->index)) {
2021 * ->writepages() should be called for sync() and friends. We
2022 * should only get here on direct reclaim and then we are
2023 * allowed to skip a page which is already in flight
2025 WARN_ON(wbc->sync_mode == WB_SYNC_ALL);
2027 redirty_page_for_writepage(wbc, page);
2032 if (wbc->sync_mode == WB_SYNC_NONE &&
2033 fc->num_background >= fc->congestion_threshold)
2034 return AOP_WRITEPAGE_ACTIVATE;
2036 err = fuse_writepage_locked(page);
2042 struct fuse_fill_wb_data {
2043 struct fuse_writepage_args *wpa;
2044 struct fuse_file *ff;
2045 struct inode *inode;
2046 struct page **orig_pages;
2047 unsigned int max_pages;
2050 static bool fuse_pages_realloc(struct fuse_fill_wb_data *data)
2052 struct fuse_args_pages *ap = &data->wpa->ia.ap;
2053 struct fuse_conn *fc = get_fuse_conn(data->inode);
2054 struct page **pages;
2055 struct fuse_page_desc *descs;
2056 unsigned int npages = min_t(unsigned int,
2057 max_t(unsigned int, data->max_pages * 2,
2058 FUSE_DEFAULT_MAX_PAGES_PER_REQ),
2060 WARN_ON(npages <= data->max_pages);
2062 pages = fuse_pages_alloc(npages, GFP_NOFS, &descs);
2066 memcpy(pages, ap->pages, sizeof(struct page *) * ap->num_pages);
2067 memcpy(descs, ap->descs, sizeof(struct fuse_page_desc) * ap->num_pages);
2071 data->max_pages = npages;
2076 static void fuse_writepages_send(struct fuse_fill_wb_data *data)
2078 struct fuse_writepage_args *wpa = data->wpa;
2079 struct inode *inode = data->inode;
2080 struct fuse_inode *fi = get_fuse_inode(inode);
2081 int num_pages = wpa->ia.ap.num_pages;
2084 wpa->ia.ff = fuse_file_get(data->ff);
2085 spin_lock(&fi->lock);
2086 list_add_tail(&wpa->queue_entry, &fi->queued_writes);
2087 fuse_flush_writepages(inode);
2088 spin_unlock(&fi->lock);
2090 for (i = 0; i < num_pages; i++)
2091 end_page_writeback(data->orig_pages[i]);
2095 * Check under fi->lock if the page is under writeback, and insert it onto the
2096 * rb_tree if not. Otherwise iterate auxiliary write requests, to see if there's
2097 * one already added for a page at this offset. If there's none, then insert
2098 * this new request onto the auxiliary list, otherwise reuse the existing one by
2099 * swapping the new temp page with the old one.
2101 static bool fuse_writepage_add(struct fuse_writepage_args *new_wpa,
2104 struct fuse_inode *fi = get_fuse_inode(new_wpa->inode);
2105 struct fuse_writepage_args *tmp;
2106 struct fuse_writepage_args *old_wpa;
2107 struct fuse_args_pages *new_ap = &new_wpa->ia.ap;
2109 WARN_ON(new_ap->num_pages != 0);
2110 new_ap->num_pages = 1;
2112 spin_lock(&fi->lock);
2113 old_wpa = fuse_insert_writeback(&fi->writepages, new_wpa);
2115 spin_unlock(&fi->lock);
2119 for (tmp = old_wpa->next; tmp; tmp = tmp->next) {
2122 WARN_ON(tmp->inode != new_wpa->inode);
2123 curr_index = tmp->ia.write.in.offset >> PAGE_SHIFT;
2124 if (curr_index == page->index) {
2125 WARN_ON(tmp->ia.ap.num_pages != 1);
2126 swap(tmp->ia.ap.pages[0], new_ap->pages[0]);
2132 new_wpa->next = old_wpa->next;
2133 old_wpa->next = new_wpa;
2136 spin_unlock(&fi->lock);
2139 struct backing_dev_info *bdi = inode_to_bdi(new_wpa->inode);
2141 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
2142 dec_node_page_state(new_ap->pages[0], NR_WRITEBACK_TEMP);
2143 wb_writeout_inc(&bdi->wb);
2144 fuse_writepage_free(new_wpa);
2150 static bool fuse_writepage_need_send(struct fuse_conn *fc, struct page *page,
2151 struct fuse_args_pages *ap,
2152 struct fuse_fill_wb_data *data)
2154 WARN_ON(!ap->num_pages);
2157 * Being under writeback is unlikely but possible. For example direct
2158 * read to an mmaped fuse file will set the page dirty twice; once when
2159 * the pages are faulted with get_user_pages(), and then after the read
2162 if (fuse_page_is_writeback(data->inode, page->index))
2165 /* Reached max pages */
2166 if (ap->num_pages == fc->max_pages)
2169 /* Reached max write bytes */
2170 if ((ap->num_pages + 1) * PAGE_SIZE > fc->max_write)
2174 if (data->orig_pages[ap->num_pages - 1]->index + 1 != page->index)
2177 /* Need to grow the pages array? If so, did the expansion fail? */
2178 if (ap->num_pages == data->max_pages && !fuse_pages_realloc(data))
2184 static int fuse_writepages_fill(struct folio *folio,
2185 struct writeback_control *wbc, void *_data)
2187 struct fuse_fill_wb_data *data = _data;
2188 struct fuse_writepage_args *wpa = data->wpa;
2189 struct fuse_args_pages *ap = &wpa->ia.ap;
2190 struct inode *inode = data->inode;
2191 struct fuse_inode *fi = get_fuse_inode(inode);
2192 struct fuse_conn *fc = get_fuse_conn(inode);
2193 struct page *tmp_page;
2198 data->ff = fuse_write_file_get(fi);
2203 if (wpa && fuse_writepage_need_send(fc, &folio->page, ap, data)) {
2204 fuse_writepages_send(data);
2209 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
2214 * The page must not be redirtied until the writeout is completed
2215 * (i.e. userspace has sent a reply to the write request). Otherwise
2216 * there could be more than one temporary page instance for each real
2219 * This is ensured by holding the page lock in page_mkwrite() while
2220 * checking fuse_page_is_writeback(). We already hold the page lock
2221 * since clear_page_dirty_for_io() and keep it held until we add the
2222 * request to the fi->writepages list and increment ap->num_pages.
2223 * After this fuse_page_is_writeback() will indicate that the page is
2224 * under writeback, so we can release the page lock.
2226 if (data->wpa == NULL) {
2228 wpa = fuse_writepage_args_alloc();
2230 __free_page(tmp_page);
2233 fuse_writepage_add_to_bucket(fc, wpa);
2235 data->max_pages = 1;
2238 fuse_write_args_fill(&wpa->ia, data->ff, folio_pos(folio), 0);
2239 wpa->ia.write.in.write_flags |= FUSE_WRITE_CACHE;
2241 ap->args.in_pages = true;
2242 ap->args.end = fuse_writepage_end;
2246 folio_start_writeback(folio);
2248 copy_highpage(tmp_page, &folio->page);
2249 ap->pages[ap->num_pages] = tmp_page;
2250 ap->descs[ap->num_pages].offset = 0;
2251 ap->descs[ap->num_pages].length = PAGE_SIZE;
2252 data->orig_pages[ap->num_pages] = &folio->page;
2254 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
2255 inc_node_page_state(tmp_page, NR_WRITEBACK_TEMP);
2260 * Protected by fi->lock against concurrent access by
2261 * fuse_page_is_writeback().
2263 spin_lock(&fi->lock);
2265 spin_unlock(&fi->lock);
2266 } else if (fuse_writepage_add(wpa, &folio->page)) {
2269 folio_end_writeback(folio);
2272 folio_unlock(folio);
2277 static int fuse_writepages(struct address_space *mapping,
2278 struct writeback_control *wbc)
2280 struct inode *inode = mapping->host;
2281 struct fuse_conn *fc = get_fuse_conn(inode);
2282 struct fuse_fill_wb_data data;
2286 if (fuse_is_bad(inode))
2289 if (wbc->sync_mode == WB_SYNC_NONE &&
2290 fc->num_background >= fc->congestion_threshold)
2298 data.orig_pages = kcalloc(fc->max_pages,
2299 sizeof(struct page *),
2301 if (!data.orig_pages)
2304 err = write_cache_pages(mapping, wbc, fuse_writepages_fill, &data);
2306 WARN_ON(!data.wpa->ia.ap.num_pages);
2307 fuse_writepages_send(&data);
2310 fuse_file_put(data.ff, false, false);
2312 kfree(data.orig_pages);
2318 * It's worthy to make sure that space is reserved on disk for the write,
2319 * but how to implement it without killing performance need more thinking.
2321 static int fuse_write_begin(struct file *file, struct address_space *mapping,
2322 loff_t pos, unsigned len, struct page **pagep, void **fsdata)
2324 pgoff_t index = pos >> PAGE_SHIFT;
2325 struct fuse_conn *fc = get_fuse_conn(file_inode(file));
2330 WARN_ON(!fc->writeback_cache);
2332 page = grab_cache_page_write_begin(mapping, index);
2336 fuse_wait_on_page_writeback(mapping->host, page->index);
2338 if (PageUptodate(page) || len == PAGE_SIZE)
2341 * Check if the start this page comes after the end of file, in which
2342 * case the readpage can be optimized away.
2344 fsize = i_size_read(mapping->host);
2345 if (fsize <= (pos & PAGE_MASK)) {
2346 size_t off = pos & ~PAGE_MASK;
2348 zero_user_segment(page, 0, off);
2351 err = fuse_do_readpage(file, page);
2365 static int fuse_write_end(struct file *file, struct address_space *mapping,
2366 loff_t pos, unsigned len, unsigned copied,
2367 struct page *page, void *fsdata)
2369 struct inode *inode = page->mapping->host;
2371 /* Haven't copied anything? Skip zeroing, size extending, dirtying. */
2376 if (!PageUptodate(page)) {
2377 /* Zero any unwritten bytes at the end of the page */
2378 size_t endoff = pos & ~PAGE_MASK;
2380 zero_user_segment(page, endoff, PAGE_SIZE);
2381 SetPageUptodate(page);
2384 if (pos > inode->i_size)
2385 i_size_write(inode, pos);
2387 set_page_dirty(page);
2396 static int fuse_launder_folio(struct folio *folio)
2399 if (folio_clear_dirty_for_io(folio)) {
2400 struct inode *inode = folio->mapping->host;
2402 /* Serialize with pending writeback for the same page */
2403 fuse_wait_on_page_writeback(inode, folio->index);
2404 err = fuse_writepage_locked(&folio->page);
2406 fuse_wait_on_page_writeback(inode, folio->index);
2412 * Write back dirty data/metadata now (there may not be any suitable
2413 * open files later for data)
2415 static void fuse_vma_close(struct vm_area_struct *vma)
2419 err = write_inode_now(vma->vm_file->f_mapping->host, 1);
2420 mapping_set_error(vma->vm_file->f_mapping, err);
2424 * Wait for writeback against this page to complete before allowing it
2425 * to be marked dirty again, and hence written back again, possibly
2426 * before the previous writepage completed.
2428 * Block here, instead of in ->writepage(), so that the userspace fs
2429 * can only block processes actually operating on the filesystem.
2431 * Otherwise unprivileged userspace fs would be able to block
2436 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
2438 static vm_fault_t fuse_page_mkwrite(struct vm_fault *vmf)
2440 struct page *page = vmf->page;
2441 struct inode *inode = file_inode(vmf->vma->vm_file);
2443 file_update_time(vmf->vma->vm_file);
2445 if (page->mapping != inode->i_mapping) {
2447 return VM_FAULT_NOPAGE;
2450 fuse_wait_on_page_writeback(inode, page->index);
2451 return VM_FAULT_LOCKED;
2454 static const struct vm_operations_struct fuse_file_vm_ops = {
2455 .close = fuse_vma_close,
2456 .fault = filemap_fault,
2457 .map_pages = filemap_map_pages,
2458 .page_mkwrite = fuse_page_mkwrite,
2461 static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
2463 struct fuse_file *ff = file->private_data;
2464 struct fuse_conn *fc = ff->fm->fc;
2466 /* DAX mmap is superior to direct_io mmap */
2467 if (FUSE_IS_DAX(file_inode(file)))
2468 return fuse_dax_mmap(file, vma);
2470 if (ff->open_flags & FOPEN_DIRECT_IO) {
2471 /* Can't provide the coherency needed for MAP_SHARED
2472 * if FUSE_DIRECT_IO_ALLOW_MMAP isn't set.
2474 if ((vma->vm_flags & VM_MAYSHARE) && !fc->direct_io_allow_mmap)
2477 invalidate_inode_pages2(file->f_mapping);
2479 return generic_file_mmap(file, vma);
2482 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2483 fuse_link_write_file(file);
2485 file_accessed(file);
2486 vma->vm_ops = &fuse_file_vm_ops;
2490 static int convert_fuse_file_lock(struct fuse_conn *fc,
2491 const struct fuse_file_lock *ffl,
2492 struct file_lock *fl)
2494 switch (ffl->type) {
2500 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
2501 ffl->end < ffl->start)
2504 fl->fl_start = ffl->start;
2505 fl->fl_end = ffl->end;
2508 * Convert pid into init's pid namespace. The locks API will
2509 * translate it into the caller's pid namespace.
2512 fl->fl_pid = pid_nr_ns(find_pid_ns(ffl->pid, fc->pid_ns), &init_pid_ns);
2519 fl->fl_type = ffl->type;
2523 static void fuse_lk_fill(struct fuse_args *args, struct file *file,
2524 const struct file_lock *fl, int opcode, pid_t pid,
2525 int flock, struct fuse_lk_in *inarg)
2527 struct inode *inode = file_inode(file);
2528 struct fuse_conn *fc = get_fuse_conn(inode);
2529 struct fuse_file *ff = file->private_data;
2531 memset(inarg, 0, sizeof(*inarg));
2533 inarg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
2534 inarg->lk.start = fl->fl_start;
2535 inarg->lk.end = fl->fl_end;
2536 inarg->lk.type = fl->fl_type;
2537 inarg->lk.pid = pid;
2539 inarg->lk_flags |= FUSE_LK_FLOCK;
2540 args->opcode = opcode;
2541 args->nodeid = get_node_id(inode);
2542 args->in_numargs = 1;
2543 args->in_args[0].size = sizeof(*inarg);
2544 args->in_args[0].value = inarg;
2547 static int fuse_getlk(struct file *file, struct file_lock *fl)
2549 struct inode *inode = file_inode(file);
2550 struct fuse_mount *fm = get_fuse_mount(inode);
2552 struct fuse_lk_in inarg;
2553 struct fuse_lk_out outarg;
2556 fuse_lk_fill(&args, file, fl, FUSE_GETLK, 0, 0, &inarg);
2557 args.out_numargs = 1;
2558 args.out_args[0].size = sizeof(outarg);
2559 args.out_args[0].value = &outarg;
2560 err = fuse_simple_request(fm, &args);
2562 err = convert_fuse_file_lock(fm->fc, &outarg.lk, fl);
2567 static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
2569 struct inode *inode = file_inode(file);
2570 struct fuse_mount *fm = get_fuse_mount(inode);
2572 struct fuse_lk_in inarg;
2573 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
2574 struct pid *pid = fl->fl_type != F_UNLCK ? task_tgid(current) : NULL;
2575 pid_t pid_nr = pid_nr_ns(pid, fm->fc->pid_ns);
2578 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
2579 /* NLM needs asynchronous locks, which we don't support yet */
2583 /* Unlock on close is handled by the flush method */
2584 if ((fl->fl_flags & FL_CLOSE_POSIX) == FL_CLOSE_POSIX)
2587 fuse_lk_fill(&args, file, fl, opcode, pid_nr, flock, &inarg);
2588 err = fuse_simple_request(fm, &args);
2590 /* locking is restartable */
2597 static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
2599 struct inode *inode = file_inode(file);
2600 struct fuse_conn *fc = get_fuse_conn(inode);
2603 if (cmd == F_CANCELLK) {
2605 } else if (cmd == F_GETLK) {
2607 posix_test_lock(file, fl);
2610 err = fuse_getlk(file, fl);
2613 err = posix_lock_file(file, fl, NULL);
2615 err = fuse_setlk(file, fl, 0);
2620 static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
2622 struct inode *inode = file_inode(file);
2623 struct fuse_conn *fc = get_fuse_conn(inode);
2627 err = locks_lock_file_wait(file, fl);
2629 struct fuse_file *ff = file->private_data;
2631 /* emulate flock with POSIX locks */
2633 err = fuse_setlk(file, fl, 1);
2639 static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
2641 struct inode *inode = mapping->host;
2642 struct fuse_mount *fm = get_fuse_mount(inode);
2644 struct fuse_bmap_in inarg;
2645 struct fuse_bmap_out outarg;
2648 if (!inode->i_sb->s_bdev || fm->fc->no_bmap)
2651 memset(&inarg, 0, sizeof(inarg));
2652 inarg.block = block;
2653 inarg.blocksize = inode->i_sb->s_blocksize;
2654 args.opcode = FUSE_BMAP;
2655 args.nodeid = get_node_id(inode);
2656 args.in_numargs = 1;
2657 args.in_args[0].size = sizeof(inarg);
2658 args.in_args[0].value = &inarg;
2659 args.out_numargs = 1;
2660 args.out_args[0].size = sizeof(outarg);
2661 args.out_args[0].value = &outarg;
2662 err = fuse_simple_request(fm, &args);
2664 fm->fc->no_bmap = 1;
2666 return err ? 0 : outarg.block;
2669 static loff_t fuse_lseek(struct file *file, loff_t offset, int whence)
2671 struct inode *inode = file->f_mapping->host;
2672 struct fuse_mount *fm = get_fuse_mount(inode);
2673 struct fuse_file *ff = file->private_data;
2675 struct fuse_lseek_in inarg = {
2680 struct fuse_lseek_out outarg;
2683 if (fm->fc->no_lseek)
2686 args.opcode = FUSE_LSEEK;
2687 args.nodeid = ff->nodeid;
2688 args.in_numargs = 1;
2689 args.in_args[0].size = sizeof(inarg);
2690 args.in_args[0].value = &inarg;
2691 args.out_numargs = 1;
2692 args.out_args[0].size = sizeof(outarg);
2693 args.out_args[0].value = &outarg;
2694 err = fuse_simple_request(fm, &args);
2696 if (err == -ENOSYS) {
2697 fm->fc->no_lseek = 1;
2703 return vfs_setpos(file, outarg.offset, inode->i_sb->s_maxbytes);
2706 err = fuse_update_attributes(inode, file, STATX_SIZE);
2708 return generic_file_llseek(file, offset, whence);
2713 static loff_t fuse_file_llseek(struct file *file, loff_t offset, int whence)
2716 struct inode *inode = file_inode(file);
2721 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
2722 retval = generic_file_llseek(file, offset, whence);
2726 retval = fuse_update_attributes(inode, file, STATX_SIZE);
2728 retval = generic_file_llseek(file, offset, whence);
2729 inode_unlock(inode);
2734 retval = fuse_lseek(file, offset, whence);
2735 inode_unlock(inode);
2745 * All files which have been polled are linked to RB tree
2746 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2747 * find the matching one.
2749 static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2750 struct rb_node **parent_out)
2752 struct rb_node **link = &fc->polled_files.rb_node;
2753 struct rb_node *last = NULL;
2756 struct fuse_file *ff;
2759 ff = rb_entry(last, struct fuse_file, polled_node);
2762 link = &last->rb_left;
2763 else if (kh > ff->kh)
2764 link = &last->rb_right;
2775 * The file is about to be polled. Make sure it's on the polled_files
2776 * RB tree. Note that files once added to the polled_files tree are
2777 * not removed before the file is released. This is because a file
2778 * polled once is likely to be polled again.
2780 static void fuse_register_polled_file(struct fuse_conn *fc,
2781 struct fuse_file *ff)
2783 spin_lock(&fc->lock);
2784 if (RB_EMPTY_NODE(&ff->polled_node)) {
2785 struct rb_node **link, *parent;
2787 link = fuse_find_polled_node(fc, ff->kh, &parent);
2789 rb_link_node(&ff->polled_node, parent, link);
2790 rb_insert_color(&ff->polled_node, &fc->polled_files);
2792 spin_unlock(&fc->lock);
2795 __poll_t fuse_file_poll(struct file *file, poll_table *wait)
2797 struct fuse_file *ff = file->private_data;
2798 struct fuse_mount *fm = ff->fm;
2799 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2800 struct fuse_poll_out outarg;
2804 if (fm->fc->no_poll)
2805 return DEFAULT_POLLMASK;
2807 poll_wait(file, &ff->poll_wait, wait);
2808 inarg.events = mangle_poll(poll_requested_events(wait));
2811 * Ask for notification iff there's someone waiting for it.
2812 * The client may ignore the flag and always notify.
2814 if (waitqueue_active(&ff->poll_wait)) {
2815 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2816 fuse_register_polled_file(fm->fc, ff);
2819 args.opcode = FUSE_POLL;
2820 args.nodeid = ff->nodeid;
2821 args.in_numargs = 1;
2822 args.in_args[0].size = sizeof(inarg);
2823 args.in_args[0].value = &inarg;
2824 args.out_numargs = 1;
2825 args.out_args[0].size = sizeof(outarg);
2826 args.out_args[0].value = &outarg;
2827 err = fuse_simple_request(fm, &args);
2830 return demangle_poll(outarg.revents);
2831 if (err == -ENOSYS) {
2832 fm->fc->no_poll = 1;
2833 return DEFAULT_POLLMASK;
2837 EXPORT_SYMBOL_GPL(fuse_file_poll);
2840 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2841 * wakes up the poll waiters.
2843 int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2844 struct fuse_notify_poll_wakeup_out *outarg)
2846 u64 kh = outarg->kh;
2847 struct rb_node **link;
2849 spin_lock(&fc->lock);
2851 link = fuse_find_polled_node(fc, kh, NULL);
2853 struct fuse_file *ff;
2855 ff = rb_entry(*link, struct fuse_file, polled_node);
2856 wake_up_interruptible_sync(&ff->poll_wait);
2859 spin_unlock(&fc->lock);
2863 static void fuse_do_truncate(struct file *file)
2865 struct inode *inode = file->f_mapping->host;
2868 attr.ia_valid = ATTR_SIZE;
2869 attr.ia_size = i_size_read(inode);
2871 attr.ia_file = file;
2872 attr.ia_valid |= ATTR_FILE;
2874 fuse_do_setattr(file_dentry(file), &attr, file);
2877 static inline loff_t fuse_round_up(struct fuse_conn *fc, loff_t off)
2879 return round_up(off, fc->max_pages << PAGE_SHIFT);
2883 fuse_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
2885 DECLARE_COMPLETION_ONSTACK(wait);
2887 struct file *file = iocb->ki_filp;
2888 struct fuse_file *ff = file->private_data;
2890 struct inode *inode;
2892 size_t count = iov_iter_count(iter), shortened = 0;
2893 loff_t offset = iocb->ki_pos;
2894 struct fuse_io_priv *io;
2897 inode = file->f_mapping->host;
2898 i_size = i_size_read(inode);
2900 if ((iov_iter_rw(iter) == READ) && (offset >= i_size))
2903 io = kmalloc(sizeof(struct fuse_io_priv), GFP_KERNEL);
2906 spin_lock_init(&io->lock);
2907 kref_init(&io->refcnt);
2911 io->offset = offset;
2912 io->write = (iov_iter_rw(iter) == WRITE);
2915 * By default, we want to optimize all I/Os with async request
2916 * submission to the client filesystem if supported.
2918 io->async = ff->fm->fc->async_dio;
2920 io->blocking = is_sync_kiocb(iocb);
2922 /* optimization for short read */
2923 if (io->async && !io->write && offset + count > i_size) {
2924 iov_iter_truncate(iter, fuse_round_up(ff->fm->fc, i_size - offset));
2925 shortened = count - iov_iter_count(iter);
2930 * We cannot asynchronously extend the size of a file.
2931 * In such case the aio will behave exactly like sync io.
2933 if ((offset + count > i_size) && io->write)
2934 io->blocking = true;
2936 if (io->async && io->blocking) {
2938 * Additional reference to keep io around after
2939 * calling fuse_aio_complete()
2941 kref_get(&io->refcnt);
2945 if (iov_iter_rw(iter) == WRITE) {
2946 ret = fuse_direct_io(io, iter, &pos, FUSE_DIO_WRITE);
2947 fuse_invalidate_attr_mask(inode, FUSE_STATX_MODSIZE);
2949 ret = __fuse_direct_read(io, iter, &pos);
2951 iov_iter_reexpand(iter, iov_iter_count(iter) + shortened);
2954 bool blocking = io->blocking;
2956 fuse_aio_complete(io, ret < 0 ? ret : 0, -1);
2958 /* we have a non-extending, async request, so return */
2960 return -EIOCBQUEUED;
2962 wait_for_completion(&wait);
2963 ret = fuse_get_res_by_io(io);
2966 kref_put(&io->refcnt, fuse_io_release);
2968 if (iov_iter_rw(iter) == WRITE) {
2969 fuse_write_update_attr(inode, pos, ret);
2970 /* For extending writes we already hold exclusive lock */
2971 if (ret < 0 && offset + count > i_size)
2972 fuse_do_truncate(file);
2978 static int fuse_writeback_range(struct inode *inode, loff_t start, loff_t end)
2980 int err = filemap_write_and_wait_range(inode->i_mapping, start, LLONG_MAX);
2983 fuse_sync_writes(inode);
2988 static long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
2991 struct fuse_file *ff = file->private_data;
2992 struct inode *inode = file_inode(file);
2993 struct fuse_inode *fi = get_fuse_inode(inode);
2994 struct fuse_mount *fm = ff->fm;
2996 struct fuse_fallocate_in inarg = {
3003 bool block_faults = FUSE_IS_DAX(inode) &&
3004 (!(mode & FALLOC_FL_KEEP_SIZE) ||
3005 (mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_ZERO_RANGE)));
3007 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
3008 FALLOC_FL_ZERO_RANGE))
3011 if (fm->fc->no_fallocate)
3016 filemap_invalidate_lock(inode->i_mapping);
3017 err = fuse_dax_break_layouts(inode, 0, 0);
3022 if (mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_ZERO_RANGE)) {
3023 loff_t endbyte = offset + length - 1;
3025 err = fuse_writeback_range(inode, offset, endbyte);
3030 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
3031 offset + length > i_size_read(inode)) {
3032 err = inode_newsize_ok(inode, offset + length);
3037 err = file_modified(file);
3041 if (!(mode & FALLOC_FL_KEEP_SIZE))
3042 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
3044 args.opcode = FUSE_FALLOCATE;
3045 args.nodeid = ff->nodeid;
3046 args.in_numargs = 1;
3047 args.in_args[0].size = sizeof(inarg);
3048 args.in_args[0].value = &inarg;
3049 err = fuse_simple_request(fm, &args);
3050 if (err == -ENOSYS) {
3051 fm->fc->no_fallocate = 1;
3057 /* we could have extended the file */
3058 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
3059 if (fuse_write_update_attr(inode, offset + length, length))
3060 file_update_time(file);
3063 if (mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_ZERO_RANGE))
3064 truncate_pagecache_range(inode, offset, offset + length - 1);
3066 fuse_invalidate_attr_mask(inode, FUSE_STATX_MODSIZE);
3069 if (!(mode & FALLOC_FL_KEEP_SIZE))
3070 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
3073 filemap_invalidate_unlock(inode->i_mapping);
3075 inode_unlock(inode);
3077 fuse_flush_time_update(inode);
3082 static ssize_t __fuse_copy_file_range(struct file *file_in, loff_t pos_in,
3083 struct file *file_out, loff_t pos_out,
3084 size_t len, unsigned int flags)
3086 struct fuse_file *ff_in = file_in->private_data;
3087 struct fuse_file *ff_out = file_out->private_data;
3088 struct inode *inode_in = file_inode(file_in);
3089 struct inode *inode_out = file_inode(file_out);
3090 struct fuse_inode *fi_out = get_fuse_inode(inode_out);
3091 struct fuse_mount *fm = ff_in->fm;
3092 struct fuse_conn *fc = fm->fc;
3094 struct fuse_copy_file_range_in inarg = {
3097 .nodeid_out = ff_out->nodeid,
3098 .fh_out = ff_out->fh,
3103 struct fuse_write_out outarg;
3105 /* mark unstable when write-back is not used, and file_out gets
3107 bool is_unstable = (!fc->writeback_cache) &&
3108 ((pos_out + len) > inode_out->i_size);
3110 if (fc->no_copy_file_range)
3113 if (file_inode(file_in)->i_sb != file_inode(file_out)->i_sb)
3116 inode_lock(inode_in);
3117 err = fuse_writeback_range(inode_in, pos_in, pos_in + len - 1);
3118 inode_unlock(inode_in);
3122 inode_lock(inode_out);
3124 err = file_modified(file_out);
3129 * Write out dirty pages in the destination file before sending the COPY
3130 * request to userspace. After the request is completed, truncate off
3131 * pages (including partial ones) from the cache that have been copied,
3132 * since these contain stale data at that point.
3134 * This should be mostly correct, but if the COPY writes to partial
3135 * pages (at the start or end) and the parts not covered by the COPY are
3136 * written through a memory map after calling fuse_writeback_range(),
3137 * then these partial page modifications will be lost on truncation.
3139 * It is unlikely that someone would rely on such mixed style
3140 * modifications. Yet this does give less guarantees than if the
3141 * copying was performed with write(2).
3143 * To fix this a mapping->invalidate_lock could be used to prevent new
3144 * faults while the copy is ongoing.
3146 err = fuse_writeback_range(inode_out, pos_out, pos_out + len - 1);
3151 set_bit(FUSE_I_SIZE_UNSTABLE, &fi_out->state);
3153 args.opcode = FUSE_COPY_FILE_RANGE;
3154 args.nodeid = ff_in->nodeid;
3155 args.in_numargs = 1;
3156 args.in_args[0].size = sizeof(inarg);
3157 args.in_args[0].value = &inarg;
3158 args.out_numargs = 1;
3159 args.out_args[0].size = sizeof(outarg);
3160 args.out_args[0].value = &outarg;
3161 err = fuse_simple_request(fm, &args);
3162 if (err == -ENOSYS) {
3163 fc->no_copy_file_range = 1;
3169 truncate_inode_pages_range(inode_out->i_mapping,
3170 ALIGN_DOWN(pos_out, PAGE_SIZE),
3171 ALIGN(pos_out + outarg.size, PAGE_SIZE) - 1);
3173 file_update_time(file_out);
3174 fuse_write_update_attr(inode_out, pos_out + outarg.size, outarg.size);
3179 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi_out->state);
3181 inode_unlock(inode_out);
3182 file_accessed(file_in);
3184 fuse_flush_time_update(inode_out);
3189 static ssize_t fuse_copy_file_range(struct file *src_file, loff_t src_off,
3190 struct file *dst_file, loff_t dst_off,
3191 size_t len, unsigned int flags)
3195 ret = __fuse_copy_file_range(src_file, src_off, dst_file, dst_off,
3198 if (ret == -EOPNOTSUPP || ret == -EXDEV)
3199 ret = splice_copy_file_range(src_file, src_off, dst_file,
3204 static const struct file_operations fuse_file_operations = {
3205 .llseek = fuse_file_llseek,
3206 .read_iter = fuse_file_read_iter,
3207 .write_iter = fuse_file_write_iter,
3208 .mmap = fuse_file_mmap,
3210 .flush = fuse_flush,
3211 .release = fuse_release,
3212 .fsync = fuse_fsync,
3213 .lock = fuse_file_lock,
3214 .get_unmapped_area = thp_get_unmapped_area,
3215 .flock = fuse_file_flock,
3216 .splice_read = filemap_splice_read,
3217 .splice_write = iter_file_splice_write,
3218 .unlocked_ioctl = fuse_file_ioctl,
3219 .compat_ioctl = fuse_file_compat_ioctl,
3220 .poll = fuse_file_poll,
3221 .fallocate = fuse_file_fallocate,
3222 .copy_file_range = fuse_copy_file_range,
3225 static const struct address_space_operations fuse_file_aops = {
3226 .read_folio = fuse_read_folio,
3227 .readahead = fuse_readahead,
3228 .writepage = fuse_writepage,
3229 .writepages = fuse_writepages,
3230 .launder_folio = fuse_launder_folio,
3231 .dirty_folio = filemap_dirty_folio,
3233 .direct_IO = fuse_direct_IO,
3234 .write_begin = fuse_write_begin,
3235 .write_end = fuse_write_end,
3238 void fuse_init_file_inode(struct inode *inode, unsigned int flags)
3240 struct fuse_inode *fi = get_fuse_inode(inode);
3242 inode->i_fop = &fuse_file_operations;
3243 inode->i_data.a_ops = &fuse_file_aops;
3245 INIT_LIST_HEAD(&fi->write_files);
3246 INIT_LIST_HEAD(&fi->queued_writes);
3248 init_waitqueue_head(&fi->page_waitq);
3249 fi->writepages = RB_ROOT;
3251 if (IS_ENABLED(CONFIG_FUSE_DAX))
3252 fuse_dax_inode_init(inode, flags);