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/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, 1);
62 RB_CLEAR_NODE(&ff->polled_node);
63 init_waitqueue_head(&ff->poll_wait);
67 spin_unlock(&fc->lock);
72 void fuse_file_free(struct fuse_file *ff)
74 fuse_request_free(ff->reserved_req);
78 static struct fuse_file *fuse_file_get(struct fuse_file *ff)
80 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 = ff;
154 EXPORT_SYMBOL_GPL(fuse_do_open);
156 static void fuse_link_write_file(struct file *file)
158 struct inode *inode = file_inode(file);
159 struct fuse_conn *fc = get_fuse_conn(inode);
160 struct fuse_inode *fi = get_fuse_inode(inode);
161 struct fuse_file *ff = file->private_data;
163 * file may be written through mmap, so chain it onto the
164 * inodes's write_file list
166 spin_lock(&fc->lock);
167 if (list_empty(&ff->write_entry))
168 list_add(&ff->write_entry, &fi->write_files);
169 spin_unlock(&fc->lock);
172 void fuse_finish_open(struct inode *inode, struct file *file)
174 struct fuse_file *ff = file->private_data;
175 struct fuse_conn *fc = get_fuse_conn(inode);
177 if (ff->open_flags & FOPEN_DIRECT_IO)
178 file->f_op = &fuse_direct_io_file_operations;
179 if (!(ff->open_flags & FOPEN_KEEP_CACHE))
180 invalidate_inode_pages2(inode->i_mapping);
181 if (ff->open_flags & FOPEN_NONSEEKABLE)
182 nonseekable_open(inode, file);
183 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
184 struct fuse_inode *fi = get_fuse_inode(inode);
186 spin_lock(&fc->lock);
187 fi->attr_version = ++fc->attr_version;
188 i_size_write(inode, 0);
189 spin_unlock(&fc->lock);
190 fuse_invalidate_attr(inode);
191 if (fc->writeback_cache)
192 file_update_time(file);
194 if ((file->f_mode & FMODE_WRITE) && fc->writeback_cache)
195 fuse_link_write_file(file);
198 int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
200 struct fuse_conn *fc = get_fuse_conn(inode);
202 bool lock_inode = (file->f_flags & O_TRUNC) &&
203 fc->atomic_o_trunc &&
206 err = generic_file_open(inode, file);
213 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
216 fuse_finish_open(inode, file);
224 static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
226 struct fuse_conn *fc = ff->fc;
227 struct fuse_req *req = ff->reserved_req;
228 struct fuse_release_in *inarg = &req->misc.release.in;
230 spin_lock(&fc->lock);
231 list_del(&ff->write_entry);
232 if (!RB_EMPTY_NODE(&ff->polled_node))
233 rb_erase(&ff->polled_node, &fc->polled_files);
234 spin_unlock(&fc->lock);
236 wake_up_interruptible_all(&ff->poll_wait);
239 inarg->flags = flags;
240 req->in.h.opcode = opcode;
241 req->in.h.nodeid = ff->nodeid;
243 req->in.args[0].size = sizeof(struct fuse_release_in);
244 req->in.args[0].value = inarg;
247 void fuse_release_common(struct file *file, int opcode)
249 struct fuse_file *ff = file->private_data;
250 struct fuse_req *req = ff->reserved_req;
252 fuse_prepare_release(ff, file->f_flags, opcode);
255 struct fuse_release_in *inarg = &req->misc.release.in;
256 inarg->release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
257 inarg->lock_owner = fuse_lock_owner_id(ff->fc,
260 /* Hold inode until release is finished */
261 req->misc.release.inode = igrab(file_inode(file));
264 * Normally this will send the RELEASE request, however if
265 * some asynchronous READ or WRITE requests are outstanding,
266 * the sending will be delayed.
268 * Make the release synchronous if this is a fuseblk mount,
269 * synchronous RELEASE is allowed (and desirable) in this case
270 * because the server can be trusted not to screw up.
272 fuse_file_put(ff, ff->fc->destroy_req != NULL);
275 static int fuse_open(struct inode *inode, struct file *file)
277 return fuse_open_common(inode, file, false);
280 static int fuse_release(struct inode *inode, struct file *file)
282 struct fuse_conn *fc = get_fuse_conn(inode);
284 /* see fuse_vma_close() for !writeback_cache case */
285 if (fc->writeback_cache)
286 write_inode_now(inode, 1);
288 fuse_release_common(file, FUSE_RELEASE);
290 /* return value is ignored by VFS */
294 void fuse_sync_release(struct fuse_file *ff, int flags)
296 WARN_ON(atomic_read(&ff->count) != 1);
297 fuse_prepare_release(ff, flags, FUSE_RELEASE);
299 * iput(NULL) is a no-op and since the refcount is 1 and everything's
300 * synchronous, we are fine with not doing igrab() here"
302 fuse_file_put(ff, true);
304 EXPORT_SYMBOL_GPL(fuse_sync_release);
307 * Scramble the ID space with XTEA, so that the value of the files_struct
308 * pointer is not exposed to userspace.
310 u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
312 u32 *k = fc->scramble_key;
313 u64 v = (unsigned long) id;
319 for (i = 0; i < 32; i++) {
320 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
322 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
325 return (u64) v0 + ((u64) v1 << 32);
329 * Check if any page in a range is under writeback
331 * This is currently done by walking the list of writepage requests
332 * for the inode, which can be pretty inefficient.
334 static bool fuse_range_is_writeback(struct inode *inode, pgoff_t idx_from,
337 struct fuse_conn *fc = get_fuse_conn(inode);
338 struct fuse_inode *fi = get_fuse_inode(inode);
339 struct fuse_req *req;
342 spin_lock(&fc->lock);
343 list_for_each_entry(req, &fi->writepages, writepages_entry) {
346 BUG_ON(req->inode != inode);
347 curr_index = req->misc.write.in.offset >> PAGE_SHIFT;
348 if (idx_from < curr_index + req->num_pages &&
349 curr_index <= idx_to) {
354 spin_unlock(&fc->lock);
359 static inline bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
361 return fuse_range_is_writeback(inode, index, index);
365 * Wait for page writeback to be completed.
367 * Since fuse doesn't rely on the VM writeback tracking, this has to
368 * use some other means.
370 static int fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
372 struct fuse_inode *fi = get_fuse_inode(inode);
374 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
379 * Wait for all pending writepages on the inode to finish.
381 * This is currently done by blocking further writes with FUSE_NOWRITE
382 * and waiting for all sent writes to complete.
384 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
385 * could conflict with truncation.
387 static void fuse_sync_writes(struct inode *inode)
389 fuse_set_nowrite(inode);
390 fuse_release_nowrite(inode);
393 static int fuse_flush(struct file *file, fl_owner_t id)
395 struct inode *inode = file_inode(file);
396 struct fuse_conn *fc = get_fuse_conn(inode);
397 struct fuse_file *ff = file->private_data;
398 struct fuse_req *req;
399 struct fuse_flush_in inarg;
402 if (is_bad_inode(inode))
408 err = write_inode_now(inode, 1);
413 fuse_sync_writes(inode);
416 err = filemap_check_errors(file->f_mapping);
420 req = fuse_get_req_nofail_nopages(fc, file);
421 memset(&inarg, 0, sizeof(inarg));
423 inarg.lock_owner = fuse_lock_owner_id(fc, id);
424 req->in.h.opcode = FUSE_FLUSH;
425 req->in.h.nodeid = get_node_id(inode);
427 req->in.args[0].size = sizeof(inarg);
428 req->in.args[0].value = &inarg;
429 __set_bit(FR_FORCE, &req->flags);
430 fuse_request_send(fc, req);
431 err = req->out.h.error;
432 fuse_put_request(fc, req);
433 if (err == -ENOSYS) {
440 int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
441 int datasync, int isdir)
443 struct inode *inode = file->f_mapping->host;
444 struct fuse_conn *fc = get_fuse_conn(inode);
445 struct fuse_file *ff = file->private_data;
447 struct fuse_fsync_in inarg;
450 if (is_bad_inode(inode))
456 * Start writeback against all dirty pages of the inode, then
457 * wait for all outstanding writes, before sending the FSYNC
460 err = filemap_write_and_wait_range(inode->i_mapping, start, end);
464 fuse_sync_writes(inode);
467 * Due to implementation of fuse writeback
468 * filemap_write_and_wait_range() does not catch errors.
469 * We have to do this directly after fuse_sync_writes()
471 err = filemap_check_errors(file->f_mapping);
475 err = sync_inode_metadata(inode, 1);
479 if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
482 memset(&inarg, 0, sizeof(inarg));
484 inarg.fsync_flags = datasync ? 1 : 0;
485 args.in.h.opcode = isdir ? FUSE_FSYNCDIR : FUSE_FSYNC;
486 args.in.h.nodeid = get_node_id(inode);
488 args.in.args[0].size = sizeof(inarg);
489 args.in.args[0].value = &inarg;
490 err = fuse_simple_request(fc, &args);
491 if (err == -ENOSYS) {
503 static int fuse_fsync(struct file *file, loff_t start, loff_t end,
506 return fuse_fsync_common(file, start, end, datasync, 0);
509 void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
510 size_t count, int opcode)
512 struct fuse_read_in *inarg = &req->misc.read.in;
513 struct fuse_file *ff = file->private_data;
518 inarg->flags = file->f_flags;
519 req->in.h.opcode = opcode;
520 req->in.h.nodeid = ff->nodeid;
522 req->in.args[0].size = sizeof(struct fuse_read_in);
523 req->in.args[0].value = inarg;
525 req->out.numargs = 1;
526 req->out.args[0].size = count;
529 static void fuse_release_user_pages(struct fuse_req *req, bool should_dirty)
533 for (i = 0; i < req->num_pages; i++) {
534 struct page *page = req->pages[i];
536 set_page_dirty_lock(page);
541 static void fuse_io_release(struct kref *kref)
543 kfree(container_of(kref, struct fuse_io_priv, refcnt));
546 static ssize_t fuse_get_res_by_io(struct fuse_io_priv *io)
551 if (io->bytes >= 0 && io->write)
554 return io->bytes < 0 ? io->size : io->bytes;
558 * In case of short read, the caller sets 'pos' to the position of
559 * actual end of fuse request in IO request. Otherwise, if bytes_requested
560 * == bytes_transferred or rw == WRITE, the caller sets 'pos' to -1.
563 * User requested DIO read of 64K. It was splitted into two 32K fuse requests,
564 * both submitted asynchronously. The first of them was ACKed by userspace as
565 * fully completed (req->out.args[0].size == 32K) resulting in pos == -1. The
566 * second request was ACKed as short, e.g. only 1K was read, resulting in
569 * Thus, when all fuse requests are completed, the minimal non-negative 'pos'
570 * will be equal to the length of the longest contiguous fragment of
571 * transferred data starting from the beginning of IO request.
573 static void fuse_aio_complete(struct fuse_io_priv *io, int err, ssize_t pos)
577 spin_lock(&io->lock);
579 io->err = io->err ? : err;
580 else if (pos >= 0 && (io->bytes < 0 || pos < io->bytes))
584 if (!left && io->blocking)
586 spin_unlock(&io->lock);
588 if (!left && !io->blocking) {
589 ssize_t res = fuse_get_res_by_io(io);
592 struct inode *inode = file_inode(io->iocb->ki_filp);
593 struct fuse_conn *fc = get_fuse_conn(inode);
594 struct fuse_inode *fi = get_fuse_inode(inode);
596 spin_lock(&fc->lock);
597 fi->attr_version = ++fc->attr_version;
598 spin_unlock(&fc->lock);
601 io->iocb->ki_complete(io->iocb, res, 0);
604 kref_put(&io->refcnt, fuse_io_release);
607 static void fuse_aio_complete_req(struct fuse_conn *fc, struct fuse_req *req)
609 struct fuse_io_priv *io = req->io;
612 fuse_release_user_pages(req, !io->write);
615 if (req->misc.write.in.size != req->misc.write.out.size)
616 pos = req->misc.write.in.offset - io->offset +
617 req->misc.write.out.size;
619 if (req->misc.read.in.size != req->out.args[0].size)
620 pos = req->misc.read.in.offset - io->offset +
621 req->out.args[0].size;
624 fuse_aio_complete(io, req->out.h.error, pos);
627 static size_t fuse_async_req_send(struct fuse_conn *fc, struct fuse_req *req,
628 size_t num_bytes, struct fuse_io_priv *io)
630 spin_lock(&io->lock);
631 kref_get(&io->refcnt);
632 io->size += num_bytes;
634 spin_unlock(&io->lock);
637 req->end = fuse_aio_complete_req;
639 __fuse_get_request(req);
640 fuse_request_send_background(fc, req);
645 static size_t fuse_send_read(struct fuse_req *req, struct fuse_io_priv *io,
646 loff_t pos, size_t count, fl_owner_t owner)
648 struct file *file = io->file;
649 struct fuse_file *ff = file->private_data;
650 struct fuse_conn *fc = ff->fc;
652 fuse_read_fill(req, file, pos, count, FUSE_READ);
654 struct fuse_read_in *inarg = &req->misc.read.in;
656 inarg->read_flags |= FUSE_READ_LOCKOWNER;
657 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
661 return fuse_async_req_send(fc, req, count, io);
663 fuse_request_send(fc, req);
664 return req->out.args[0].size;
667 static void fuse_read_update_size(struct inode *inode, loff_t size,
670 struct fuse_conn *fc = get_fuse_conn(inode);
671 struct fuse_inode *fi = get_fuse_inode(inode);
673 spin_lock(&fc->lock);
674 if (attr_ver == fi->attr_version && size < inode->i_size &&
675 !test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
676 fi->attr_version = ++fc->attr_version;
677 i_size_write(inode, size);
679 spin_unlock(&fc->lock);
682 static void fuse_short_read(struct fuse_req *req, struct inode *inode,
685 size_t num_read = req->out.args[0].size;
686 struct fuse_conn *fc = get_fuse_conn(inode);
688 if (fc->writeback_cache) {
690 * A hole in a file. Some data after the hole are in page cache,
691 * but have not reached the client fs yet. So, the hole is not
695 int start_idx = num_read >> PAGE_SHIFT;
696 size_t off = num_read & (PAGE_SIZE - 1);
698 for (i = start_idx; i < req->num_pages; i++) {
699 zero_user_segment(req->pages[i], off, PAGE_SIZE);
703 loff_t pos = page_offset(req->pages[0]) + num_read;
704 fuse_read_update_size(inode, pos, attr_ver);
708 static int fuse_do_readpage(struct file *file, struct page *page)
710 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(file);
711 struct inode *inode = page->mapping->host;
712 struct fuse_conn *fc = get_fuse_conn(inode);
713 struct fuse_req *req;
715 loff_t pos = page_offset(page);
716 size_t count = PAGE_SIZE;
721 * Page writeback can extend beyond the lifetime of the
722 * page-cache page, so make sure we read a properly synced
725 fuse_wait_on_page_writeback(inode, page->index);
727 req = fuse_get_req(fc, 1);
731 attr_ver = fuse_get_attr_version(fc);
733 req->out.page_zeroing = 1;
734 req->out.argpages = 1;
736 req->pages[0] = page;
737 req->page_descs[0].length = count;
738 num_read = fuse_send_read(req, &io, pos, count, NULL);
739 err = req->out.h.error;
743 * Short read means EOF. If file size is larger, truncate it
745 if (num_read < count)
746 fuse_short_read(req, inode, attr_ver);
748 SetPageUptodate(page);
751 fuse_put_request(fc, req);
756 static int fuse_readpage(struct file *file, struct page *page)
758 struct inode *inode = page->mapping->host;
762 if (is_bad_inode(inode))
765 err = fuse_do_readpage(file, page);
766 fuse_invalidate_atime(inode);
772 static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
775 size_t count = req->misc.read.in.size;
776 size_t num_read = req->out.args[0].size;
777 struct address_space *mapping = NULL;
779 for (i = 0; mapping == NULL && i < req->num_pages; i++)
780 mapping = req->pages[i]->mapping;
783 struct inode *inode = mapping->host;
786 * Short read means EOF. If file size is larger, truncate it
788 if (!req->out.h.error && num_read < count)
789 fuse_short_read(req, inode, req->misc.read.attr_ver);
791 fuse_invalidate_atime(inode);
794 for (i = 0; i < req->num_pages; i++) {
795 struct page *page = req->pages[i];
796 if (!req->out.h.error)
797 SetPageUptodate(page);
804 fuse_file_put(req->ff, false);
807 static void fuse_send_readpages(struct fuse_req *req, struct file *file)
809 struct fuse_file *ff = file->private_data;
810 struct fuse_conn *fc = ff->fc;
811 loff_t pos = page_offset(req->pages[0]);
812 size_t count = req->num_pages << PAGE_SHIFT;
814 req->out.argpages = 1;
815 req->out.page_zeroing = 1;
816 req->out.page_replace = 1;
817 fuse_read_fill(req, file, pos, count, FUSE_READ);
818 req->misc.read.attr_ver = fuse_get_attr_version(fc);
819 if (fc->async_read) {
820 req->ff = fuse_file_get(ff);
821 req->end = fuse_readpages_end;
822 fuse_request_send_background(fc, req);
824 fuse_request_send(fc, req);
825 fuse_readpages_end(fc, req);
826 fuse_put_request(fc, req);
830 struct fuse_fill_data {
831 struct fuse_req *req;
837 static int fuse_readpages_fill(void *_data, struct page *page)
839 struct fuse_fill_data *data = _data;
840 struct fuse_req *req = data->req;
841 struct inode *inode = data->inode;
842 struct fuse_conn *fc = get_fuse_conn(inode);
844 fuse_wait_on_page_writeback(inode, page->index);
846 if (req->num_pages &&
847 (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
848 (req->num_pages + 1) * PAGE_SIZE > fc->max_read ||
849 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
850 int nr_alloc = min_t(unsigned, data->nr_pages,
851 FUSE_MAX_PAGES_PER_REQ);
852 fuse_send_readpages(req, data->file);
854 req = fuse_get_req_for_background(fc, nr_alloc);
856 req = fuse_get_req(fc, nr_alloc);
865 if (WARN_ON(req->num_pages >= req->max_pages)) {
866 fuse_put_request(fc, req);
871 req->pages[req->num_pages] = page;
872 req->page_descs[req->num_pages].length = PAGE_SIZE;
878 static int fuse_readpages(struct file *file, struct address_space *mapping,
879 struct list_head *pages, unsigned nr_pages)
881 struct inode *inode = mapping->host;
882 struct fuse_conn *fc = get_fuse_conn(inode);
883 struct fuse_fill_data data;
885 int nr_alloc = min_t(unsigned, nr_pages, FUSE_MAX_PAGES_PER_REQ);
888 if (is_bad_inode(inode))
894 data.req = fuse_get_req_for_background(fc, nr_alloc);
896 data.req = fuse_get_req(fc, nr_alloc);
897 data.nr_pages = nr_pages;
898 err = PTR_ERR(data.req);
899 if (IS_ERR(data.req))
902 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
904 if (data.req->num_pages)
905 fuse_send_readpages(data.req, file);
907 fuse_put_request(fc, data.req);
913 static ssize_t fuse_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
915 struct inode *inode = iocb->ki_filp->f_mapping->host;
916 struct fuse_conn *fc = get_fuse_conn(inode);
919 * In auto invalidate mode, always update attributes on read.
920 * Otherwise, only update if we attempt to read past EOF (to ensure
921 * i_size is up to date).
923 if (fc->auto_inval_data ||
924 (iocb->ki_pos + iov_iter_count(to) > i_size_read(inode))) {
926 err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
931 return generic_file_read_iter(iocb, to);
934 static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
935 loff_t pos, size_t count)
937 struct fuse_write_in *inarg = &req->misc.write.in;
938 struct fuse_write_out *outarg = &req->misc.write.out;
943 req->in.h.opcode = FUSE_WRITE;
944 req->in.h.nodeid = ff->nodeid;
946 if (ff->fc->minor < 9)
947 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
949 req->in.args[0].size = sizeof(struct fuse_write_in);
950 req->in.args[0].value = inarg;
951 req->in.args[1].size = count;
952 req->out.numargs = 1;
953 req->out.args[0].size = sizeof(struct fuse_write_out);
954 req->out.args[0].value = outarg;
957 static size_t fuse_send_write(struct fuse_req *req, struct fuse_io_priv *io,
958 loff_t pos, size_t count, fl_owner_t owner)
960 struct file *file = io->file;
961 struct fuse_file *ff = file->private_data;
962 struct fuse_conn *fc = ff->fc;
963 struct fuse_write_in *inarg = &req->misc.write.in;
965 fuse_write_fill(req, ff, pos, count);
966 inarg->flags = file->f_flags;
968 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
969 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
973 return fuse_async_req_send(fc, req, count, io);
975 fuse_request_send(fc, req);
976 return req->misc.write.out.size;
979 bool fuse_write_update_size(struct inode *inode, loff_t pos)
981 struct fuse_conn *fc = get_fuse_conn(inode);
982 struct fuse_inode *fi = get_fuse_inode(inode);
985 spin_lock(&fc->lock);
986 fi->attr_version = ++fc->attr_version;
987 if (pos > inode->i_size) {
988 i_size_write(inode, pos);
991 spin_unlock(&fc->lock);
996 static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
997 struct inode *inode, loff_t pos,
1003 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(file);
1005 for (i = 0; i < req->num_pages; i++)
1006 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
1008 res = fuse_send_write(req, &io, pos, count, NULL);
1010 offset = req->page_descs[0].offset;
1012 for (i = 0; i < req->num_pages; i++) {
1013 struct page *page = req->pages[i];
1015 if (!req->out.h.error && !offset && count >= PAGE_SIZE)
1016 SetPageUptodate(page);
1018 if (count > PAGE_SIZE - offset)
1019 count -= PAGE_SIZE - offset;
1031 static ssize_t fuse_fill_write_pages(struct fuse_req *req,
1032 struct address_space *mapping,
1033 struct iov_iter *ii, loff_t pos)
1035 struct fuse_conn *fc = get_fuse_conn(mapping->host);
1036 unsigned offset = pos & (PAGE_SIZE - 1);
1040 req->in.argpages = 1;
1041 req->page_descs[0].offset = offset;
1046 pgoff_t index = pos >> PAGE_SHIFT;
1047 size_t bytes = min_t(size_t, PAGE_SIZE - offset,
1048 iov_iter_count(ii));
1050 bytes = min_t(size_t, bytes, fc->max_write - count);
1054 if (iov_iter_fault_in_readable(ii, bytes))
1058 page = grab_cache_page_write_begin(mapping, index, 0);
1062 if (mapping_writably_mapped(mapping))
1063 flush_dcache_page(page);
1065 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
1066 flush_dcache_page(page);
1068 iov_iter_advance(ii, tmp);
1072 bytes = min(bytes, iov_iter_single_seg_count(ii));
1077 req->pages[req->num_pages] = page;
1078 req->page_descs[req->num_pages].length = tmp;
1084 if (offset == PAGE_SIZE)
1087 if (!fc->big_writes)
1089 } while (iov_iter_count(ii) && count < fc->max_write &&
1090 req->num_pages < req->max_pages && offset == 0);
1092 return count > 0 ? count : err;
1095 static inline unsigned fuse_wr_pages(loff_t pos, size_t len)
1097 return min_t(unsigned,
1098 ((pos + len - 1) >> PAGE_SHIFT) -
1099 (pos >> PAGE_SHIFT) + 1,
1100 FUSE_MAX_PAGES_PER_REQ);
1103 static ssize_t fuse_perform_write(struct file *file,
1104 struct address_space *mapping,
1105 struct iov_iter *ii, loff_t pos)
1107 struct inode *inode = mapping->host;
1108 struct fuse_conn *fc = get_fuse_conn(inode);
1109 struct fuse_inode *fi = get_fuse_inode(inode);
1113 if (is_bad_inode(inode))
1116 if (inode->i_size < pos + iov_iter_count(ii))
1117 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1120 struct fuse_req *req;
1122 unsigned nr_pages = fuse_wr_pages(pos, iov_iter_count(ii));
1124 req = fuse_get_req(fc, nr_pages);
1130 count = fuse_fill_write_pages(req, mapping, ii, pos);
1136 num_written = fuse_send_write_pages(req, file, inode,
1138 err = req->out.h.error;
1143 /* break out of the loop on short write */
1144 if (num_written != count)
1148 fuse_put_request(fc, req);
1149 } while (!err && iov_iter_count(ii));
1152 fuse_write_update_size(inode, pos);
1154 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1155 fuse_invalidate_attr(inode);
1157 return res > 0 ? res : err;
1160 static ssize_t fuse_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
1162 struct file *file = iocb->ki_filp;
1163 struct address_space *mapping = file->f_mapping;
1164 ssize_t written = 0;
1165 ssize_t written_buffered = 0;
1166 struct inode *inode = mapping->host;
1170 if (get_fuse_conn(inode)->writeback_cache) {
1171 /* Update size (EOF optimization) and mode (SUID clearing) */
1172 err = fuse_update_attributes(mapping->host, NULL, file, NULL);
1176 return generic_file_write_iter(iocb, from);
1181 /* We can write back this queue in page reclaim */
1182 current->backing_dev_info = inode_to_bdi(inode);
1184 err = generic_write_checks(iocb, from);
1188 err = file_remove_privs(file);
1192 err = file_update_time(file);
1196 if (iocb->ki_flags & IOCB_DIRECT) {
1197 loff_t pos = iocb->ki_pos;
1198 written = generic_file_direct_write(iocb, from);
1199 if (written < 0 || !iov_iter_count(from))
1204 written_buffered = fuse_perform_write(file, mapping, from, pos);
1205 if (written_buffered < 0) {
1206 err = written_buffered;
1209 endbyte = pos + written_buffered - 1;
1211 err = filemap_write_and_wait_range(file->f_mapping, pos,
1216 invalidate_mapping_pages(file->f_mapping,
1218 endbyte >> PAGE_SHIFT);
1220 written += written_buffered;
1221 iocb->ki_pos = pos + written_buffered;
1223 written = fuse_perform_write(file, mapping, from, iocb->ki_pos);
1225 iocb->ki_pos += written;
1228 current->backing_dev_info = NULL;
1229 inode_unlock(inode);
1231 return written ? written : err;
1234 static inline void fuse_page_descs_length_init(struct fuse_req *req,
1235 unsigned index, unsigned nr_pages)
1239 for (i = index; i < index + nr_pages; i++)
1240 req->page_descs[i].length = PAGE_SIZE -
1241 req->page_descs[i].offset;
1244 static inline unsigned long fuse_get_user_addr(const struct iov_iter *ii)
1246 return (unsigned long)ii->iov->iov_base + ii->iov_offset;
1249 static inline size_t fuse_get_frag_size(const struct iov_iter *ii,
1252 return min(iov_iter_single_seg_count(ii), max_size);
1255 static int fuse_get_user_pages(struct fuse_req *req, struct iov_iter *ii,
1256 size_t *nbytesp, int write)
1258 size_t nbytes = 0; /* # bytes already packed in req */
1261 /* Special case for kernel I/O: can copy directly into the buffer */
1262 if (ii->type & ITER_KVEC) {
1263 unsigned long user_addr = fuse_get_user_addr(ii);
1264 size_t frag_size = fuse_get_frag_size(ii, *nbytesp);
1267 req->in.args[1].value = (void *) user_addr;
1269 req->out.args[0].value = (void *) user_addr;
1271 iov_iter_advance(ii, frag_size);
1272 *nbytesp = frag_size;
1276 while (nbytes < *nbytesp && req->num_pages < req->max_pages) {
1279 ret = iov_iter_get_pages(ii, &req->pages[req->num_pages],
1281 req->max_pages - req->num_pages,
1286 iov_iter_advance(ii, ret);
1290 npages = (ret + PAGE_SIZE - 1) / PAGE_SIZE;
1292 req->page_descs[req->num_pages].offset = start;
1293 fuse_page_descs_length_init(req, req->num_pages, npages);
1295 req->num_pages += npages;
1296 req->page_descs[req->num_pages - 1].length -=
1297 (PAGE_SIZE - ret) & (PAGE_SIZE - 1);
1301 req->in.argpages = 1;
1303 req->out.argpages = 1;
1307 return ret < 0 ? ret : 0;
1310 static inline int fuse_iter_npages(const struct iov_iter *ii_p)
1312 return iov_iter_npages(ii_p, FUSE_MAX_PAGES_PER_REQ);
1315 ssize_t fuse_direct_io(struct fuse_io_priv *io, struct iov_iter *iter,
1316 loff_t *ppos, int flags)
1318 int write = flags & FUSE_DIO_WRITE;
1319 bool should_dirty = !write && iter_is_iovec(iter);
1320 int cuse = flags & FUSE_DIO_CUSE;
1321 struct file *file = io->file;
1322 struct inode *inode = file->f_mapping->host;
1323 struct fuse_file *ff = file->private_data;
1324 struct fuse_conn *fc = ff->fc;
1325 size_t nmax = write ? fc->max_write : fc->max_read;
1327 size_t count = iov_iter_count(iter);
1328 pgoff_t idx_from = pos >> PAGE_SHIFT;
1329 pgoff_t idx_to = (pos + count - 1) >> PAGE_SHIFT;
1331 struct fuse_req *req;
1335 req = fuse_get_req_for_background(fc, fuse_iter_npages(iter));
1337 req = fuse_get_req(fc, fuse_iter_npages(iter));
1339 return PTR_ERR(req);
1341 if (!cuse && fuse_range_is_writeback(inode, idx_from, idx_to)) {
1344 fuse_sync_writes(inode);
1346 inode_unlock(inode);
1351 fl_owner_t owner = current->files;
1352 size_t nbytes = min(count, nmax);
1353 err = fuse_get_user_pages(req, iter, &nbytes, write);
1358 nres = fuse_send_write(req, io, pos, nbytes, owner);
1360 nres = fuse_send_read(req, io, pos, nbytes, owner);
1363 fuse_release_user_pages(req, should_dirty);
1364 if (req->out.h.error) {
1365 err = req->out.h.error;
1367 } else if (nres > nbytes) {
1378 fuse_put_request(fc, req);
1380 req = fuse_get_req_for_background(fc,
1381 fuse_iter_npages(iter));
1383 req = fuse_get_req(fc, fuse_iter_npages(iter));
1389 fuse_put_request(fc, req);
1393 return res > 0 ? res : err;
1395 EXPORT_SYMBOL_GPL(fuse_direct_io);
1397 static ssize_t __fuse_direct_read(struct fuse_io_priv *io,
1398 struct iov_iter *iter,
1402 struct file *file = io->file;
1403 struct inode *inode = file_inode(file);
1405 if (is_bad_inode(inode))
1408 res = fuse_direct_io(io, iter, ppos, 0);
1410 fuse_invalidate_attr(inode);
1415 static ssize_t fuse_direct_read_iter(struct kiocb *iocb, struct iov_iter *to)
1417 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb->ki_filp);
1418 return __fuse_direct_read(&io, to, &iocb->ki_pos);
1421 static ssize_t fuse_direct_write_iter(struct kiocb *iocb, struct iov_iter *from)
1423 struct file *file = iocb->ki_filp;
1424 struct inode *inode = file_inode(file);
1425 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(file);
1428 if (is_bad_inode(inode))
1431 /* Don't allow parallel writes to the same file */
1433 res = generic_write_checks(iocb, from);
1435 res = fuse_direct_io(&io, from, &iocb->ki_pos, FUSE_DIO_WRITE);
1436 fuse_invalidate_attr(inode);
1438 fuse_write_update_size(inode, iocb->ki_pos);
1439 inode_unlock(inode);
1444 static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
1448 for (i = 0; i < req->num_pages; i++)
1449 __free_page(req->pages[i]);
1452 fuse_file_put(req->ff, false);
1455 static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
1457 struct inode *inode = req->inode;
1458 struct fuse_inode *fi = get_fuse_inode(inode);
1459 struct backing_dev_info *bdi = inode_to_bdi(inode);
1462 list_del(&req->writepages_entry);
1463 for (i = 0; i < req->num_pages; i++) {
1464 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
1465 dec_node_page_state(req->pages[i], NR_WRITEBACK_TEMP);
1466 wb_writeout_inc(&bdi->wb);
1468 wake_up(&fi->page_waitq);
1471 /* Called under fc->lock, may release and reacquire it */
1472 static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req,
1474 __releases(fc->lock)
1475 __acquires(fc->lock)
1477 struct fuse_inode *fi = get_fuse_inode(req->inode);
1478 struct fuse_write_in *inarg = &req->misc.write.in;
1479 __u64 data_size = req->num_pages * PAGE_SIZE;
1484 if (inarg->offset + data_size <= size) {
1485 inarg->size = data_size;
1486 } else if (inarg->offset < size) {
1487 inarg->size = size - inarg->offset;
1489 /* Got truncated off completely */
1493 req->in.args[1].size = inarg->size;
1495 fuse_request_send_background_locked(fc, req);
1499 fuse_writepage_finish(fc, req);
1500 spin_unlock(&fc->lock);
1501 fuse_writepage_free(fc, req);
1502 fuse_put_request(fc, req);
1503 spin_lock(&fc->lock);
1507 * If fi->writectr is positive (no truncate or fsync going on) send
1508 * all queued writepage requests.
1510 * Called with fc->lock
1512 void fuse_flush_writepages(struct inode *inode)
1513 __releases(fc->lock)
1514 __acquires(fc->lock)
1516 struct fuse_conn *fc = get_fuse_conn(inode);
1517 struct fuse_inode *fi = get_fuse_inode(inode);
1518 size_t crop = i_size_read(inode);
1519 struct fuse_req *req;
1521 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1522 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1523 list_del_init(&req->list);
1524 fuse_send_writepage(fc, req, crop);
1528 static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1530 struct inode *inode = req->inode;
1531 struct fuse_inode *fi = get_fuse_inode(inode);
1533 mapping_set_error(inode->i_mapping, req->out.h.error);
1534 spin_lock(&fc->lock);
1535 while (req->misc.write.next) {
1536 struct fuse_conn *fc = get_fuse_conn(inode);
1537 struct fuse_write_in *inarg = &req->misc.write.in;
1538 struct fuse_req *next = req->misc.write.next;
1539 req->misc.write.next = next->misc.write.next;
1540 next->misc.write.next = NULL;
1541 next->ff = fuse_file_get(req->ff);
1542 list_add(&next->writepages_entry, &fi->writepages);
1545 * Skip fuse_flush_writepages() to make it easy to crop requests
1546 * based on primary request size.
1548 * 1st case (trivial): there are no concurrent activities using
1549 * fuse_set/release_nowrite. Then we're on safe side because
1550 * fuse_flush_writepages() would call fuse_send_writepage()
1553 * 2nd case: someone called fuse_set_nowrite and it is waiting
1554 * now for completion of all in-flight requests. This happens
1555 * rarely and no more than once per page, so this should be
1558 * 3rd case: someone (e.g. fuse_do_setattr()) is in the middle
1559 * of fuse_set_nowrite..fuse_release_nowrite section. The fact
1560 * that fuse_set_nowrite returned implies that all in-flight
1561 * requests were completed along with all of their secondary
1562 * requests. Further primary requests are blocked by negative
1563 * writectr. Hence there cannot be any in-flight requests and
1564 * no invocations of fuse_writepage_end() while we're in
1565 * fuse_set_nowrite..fuse_release_nowrite section.
1567 fuse_send_writepage(fc, next, inarg->offset + inarg->size);
1570 fuse_writepage_finish(fc, req);
1571 spin_unlock(&fc->lock);
1572 fuse_writepage_free(fc, req);
1575 static struct fuse_file *__fuse_write_file_get(struct fuse_conn *fc,
1576 struct fuse_inode *fi)
1578 struct fuse_file *ff = NULL;
1580 spin_lock(&fc->lock);
1581 if (!list_empty(&fi->write_files)) {
1582 ff = list_entry(fi->write_files.next, struct fuse_file,
1586 spin_unlock(&fc->lock);
1591 static struct fuse_file *fuse_write_file_get(struct fuse_conn *fc,
1592 struct fuse_inode *fi)
1594 struct fuse_file *ff = __fuse_write_file_get(fc, fi);
1599 int fuse_write_inode(struct inode *inode, struct writeback_control *wbc)
1601 struct fuse_conn *fc = get_fuse_conn(inode);
1602 struct fuse_inode *fi = get_fuse_inode(inode);
1603 struct fuse_file *ff;
1606 ff = __fuse_write_file_get(fc, fi);
1607 err = fuse_flush_times(inode, ff);
1609 fuse_file_put(ff, 0);
1614 static int fuse_writepage_locked(struct page *page)
1616 struct address_space *mapping = page->mapping;
1617 struct inode *inode = mapping->host;
1618 struct fuse_conn *fc = get_fuse_conn(inode);
1619 struct fuse_inode *fi = get_fuse_inode(inode);
1620 struct fuse_req *req;
1621 struct page *tmp_page;
1622 int error = -ENOMEM;
1624 set_page_writeback(page);
1626 req = fuse_request_alloc_nofs(1);
1630 /* writeback always goes to bg_queue */
1631 __set_bit(FR_BACKGROUND, &req->flags);
1632 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1637 req->ff = fuse_write_file_get(fc, fi);
1641 fuse_write_fill(req, req->ff, page_offset(page), 0);
1643 copy_highpage(tmp_page, page);
1644 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
1645 req->misc.write.next = NULL;
1646 req->in.argpages = 1;
1648 req->pages[0] = tmp_page;
1649 req->page_descs[0].offset = 0;
1650 req->page_descs[0].length = PAGE_SIZE;
1651 req->end = fuse_writepage_end;
1654 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
1655 inc_node_page_state(tmp_page, NR_WRITEBACK_TEMP);
1657 spin_lock(&fc->lock);
1658 list_add(&req->writepages_entry, &fi->writepages);
1659 list_add_tail(&req->list, &fi->queued_writes);
1660 fuse_flush_writepages(inode);
1661 spin_unlock(&fc->lock);
1663 end_page_writeback(page);
1668 __free_page(tmp_page);
1670 fuse_request_free(req);
1672 end_page_writeback(page);
1676 static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1680 if (fuse_page_is_writeback(page->mapping->host, page->index)) {
1682 * ->writepages() should be called for sync() and friends. We
1683 * should only get here on direct reclaim and then we are
1684 * allowed to skip a page which is already in flight
1686 WARN_ON(wbc->sync_mode == WB_SYNC_ALL);
1688 redirty_page_for_writepage(wbc, page);
1692 err = fuse_writepage_locked(page);
1698 struct fuse_fill_wb_data {
1699 struct fuse_req *req;
1700 struct fuse_file *ff;
1701 struct inode *inode;
1702 struct page **orig_pages;
1705 static void fuse_writepages_send(struct fuse_fill_wb_data *data)
1707 struct fuse_req *req = data->req;
1708 struct inode *inode = data->inode;
1709 struct fuse_conn *fc = get_fuse_conn(inode);
1710 struct fuse_inode *fi = get_fuse_inode(inode);
1711 int num_pages = req->num_pages;
1714 req->ff = fuse_file_get(data->ff);
1715 spin_lock(&fc->lock);
1716 list_add_tail(&req->list, &fi->queued_writes);
1717 fuse_flush_writepages(inode);
1718 spin_unlock(&fc->lock);
1720 for (i = 0; i < num_pages; i++)
1721 end_page_writeback(data->orig_pages[i]);
1724 static bool fuse_writepage_in_flight(struct fuse_req *new_req,
1727 struct fuse_conn *fc = get_fuse_conn(new_req->inode);
1728 struct fuse_inode *fi = get_fuse_inode(new_req->inode);
1729 struct fuse_req *tmp;
1730 struct fuse_req *old_req;
1734 BUG_ON(new_req->num_pages != 0);
1736 spin_lock(&fc->lock);
1737 list_del(&new_req->writepages_entry);
1738 list_for_each_entry(old_req, &fi->writepages, writepages_entry) {
1739 BUG_ON(old_req->inode != new_req->inode);
1740 curr_index = old_req->misc.write.in.offset >> PAGE_SHIFT;
1741 if (curr_index <= page->index &&
1742 page->index < curr_index + old_req->num_pages) {
1748 list_add(&new_req->writepages_entry, &fi->writepages);
1752 new_req->num_pages = 1;
1753 for (tmp = old_req; tmp != NULL; tmp = tmp->misc.write.next) {
1754 BUG_ON(tmp->inode != new_req->inode);
1755 curr_index = tmp->misc.write.in.offset >> PAGE_SHIFT;
1756 if (tmp->num_pages == 1 &&
1757 curr_index == page->index) {
1762 if (old_req->num_pages == 1 && test_bit(FR_PENDING, &old_req->flags)) {
1763 struct backing_dev_info *bdi = inode_to_bdi(page->mapping->host);
1765 copy_highpage(old_req->pages[0], page);
1766 spin_unlock(&fc->lock);
1768 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
1769 dec_node_page_state(page, NR_WRITEBACK_TEMP);
1770 wb_writeout_inc(&bdi->wb);
1771 fuse_writepage_free(fc, new_req);
1772 fuse_request_free(new_req);
1775 new_req->misc.write.next = old_req->misc.write.next;
1776 old_req->misc.write.next = new_req;
1779 spin_unlock(&fc->lock);
1784 static int fuse_writepages_fill(struct page *page,
1785 struct writeback_control *wbc, void *_data)
1787 struct fuse_fill_wb_data *data = _data;
1788 struct fuse_req *req = data->req;
1789 struct inode *inode = data->inode;
1790 struct fuse_conn *fc = get_fuse_conn(inode);
1791 struct page *tmp_page;
1797 data->ff = fuse_write_file_get(fc, get_fuse_inode(inode));
1803 * Being under writeback is unlikely but possible. For example direct
1804 * read to an mmaped fuse file will set the page dirty twice; once when
1805 * the pages are faulted with get_user_pages(), and then after the read
1808 is_writeback = fuse_page_is_writeback(inode, page->index);
1810 if (req && req->num_pages &&
1811 (is_writeback || req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
1812 (req->num_pages + 1) * PAGE_SIZE > fc->max_write ||
1813 data->orig_pages[req->num_pages - 1]->index + 1 != page->index)) {
1814 fuse_writepages_send(data);
1818 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1823 * The page must not be redirtied until the writeout is completed
1824 * (i.e. userspace has sent a reply to the write request). Otherwise
1825 * there could be more than one temporary page instance for each real
1828 * This is ensured by holding the page lock in page_mkwrite() while
1829 * checking fuse_page_is_writeback(). We already hold the page lock
1830 * since clear_page_dirty_for_io() and keep it held until we add the
1831 * request to the fi->writepages list and increment req->num_pages.
1832 * After this fuse_page_is_writeback() will indicate that the page is
1833 * under writeback, so we can release the page lock.
1835 if (data->req == NULL) {
1836 struct fuse_inode *fi = get_fuse_inode(inode);
1839 req = fuse_request_alloc_nofs(FUSE_MAX_PAGES_PER_REQ);
1841 __free_page(tmp_page);
1845 fuse_write_fill(req, data->ff, page_offset(page), 0);
1846 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
1847 req->misc.write.next = NULL;
1848 req->in.argpages = 1;
1849 __set_bit(FR_BACKGROUND, &req->flags);
1851 req->end = fuse_writepage_end;
1854 spin_lock(&fc->lock);
1855 list_add(&req->writepages_entry, &fi->writepages);
1856 spin_unlock(&fc->lock);
1860 set_page_writeback(page);
1862 copy_highpage(tmp_page, page);
1863 req->pages[req->num_pages] = tmp_page;
1864 req->page_descs[req->num_pages].offset = 0;
1865 req->page_descs[req->num_pages].length = PAGE_SIZE;
1867 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
1868 inc_node_page_state(tmp_page, NR_WRITEBACK_TEMP);
1871 if (is_writeback && fuse_writepage_in_flight(req, page)) {
1872 end_page_writeback(page);
1876 data->orig_pages[req->num_pages] = page;
1879 * Protected by fc->lock against concurrent access by
1880 * fuse_page_is_writeback().
1882 spin_lock(&fc->lock);
1884 spin_unlock(&fc->lock);
1892 static int fuse_writepages(struct address_space *mapping,
1893 struct writeback_control *wbc)
1895 struct inode *inode = mapping->host;
1896 struct fuse_fill_wb_data data;
1900 if (is_bad_inode(inode))
1908 data.orig_pages = kcalloc(FUSE_MAX_PAGES_PER_REQ,
1909 sizeof(struct page *),
1911 if (!data.orig_pages)
1914 err = write_cache_pages(mapping, wbc, fuse_writepages_fill, &data);
1916 /* Ignore errors if we can write at least one page */
1917 BUG_ON(!data.req->num_pages);
1918 fuse_writepages_send(&data);
1922 fuse_file_put(data.ff, false);
1924 kfree(data.orig_pages);
1930 * It's worthy to make sure that space is reserved on disk for the write,
1931 * but how to implement it without killing performance need more thinking.
1933 static int fuse_write_begin(struct file *file, struct address_space *mapping,
1934 loff_t pos, unsigned len, unsigned flags,
1935 struct page **pagep, void **fsdata)
1937 pgoff_t index = pos >> PAGE_SHIFT;
1938 struct fuse_conn *fc = get_fuse_conn(file_inode(file));
1943 WARN_ON(!fc->writeback_cache);
1945 page = grab_cache_page_write_begin(mapping, index, flags);
1949 fuse_wait_on_page_writeback(mapping->host, page->index);
1951 if (PageUptodate(page) || len == PAGE_SIZE)
1954 * Check if the start this page comes after the end of file, in which
1955 * case the readpage can be optimized away.
1957 fsize = i_size_read(mapping->host);
1958 if (fsize <= (pos & PAGE_MASK)) {
1959 size_t off = pos & ~PAGE_MASK;
1961 zero_user_segment(page, 0, off);
1964 err = fuse_do_readpage(file, page);
1978 static int fuse_write_end(struct file *file, struct address_space *mapping,
1979 loff_t pos, unsigned len, unsigned copied,
1980 struct page *page, void *fsdata)
1982 struct inode *inode = page->mapping->host;
1984 /* Haven't copied anything? Skip zeroing, size extending, dirtying. */
1988 if (!PageUptodate(page)) {
1989 /* Zero any unwritten bytes at the end of the page */
1990 size_t endoff = (pos + copied) & ~PAGE_MASK;
1992 zero_user_segment(page, endoff, PAGE_SIZE);
1993 SetPageUptodate(page);
1996 fuse_write_update_size(inode, pos + copied);
1997 set_page_dirty(page);
2006 static int fuse_launder_page(struct page *page)
2009 if (clear_page_dirty_for_io(page)) {
2010 struct inode *inode = page->mapping->host;
2011 err = fuse_writepage_locked(page);
2013 fuse_wait_on_page_writeback(inode, page->index);
2019 * Write back dirty pages now, because there may not be any suitable
2022 static void fuse_vma_close(struct vm_area_struct *vma)
2024 filemap_write_and_wait(vma->vm_file->f_mapping);
2028 * Wait for writeback against this page to complete before allowing it
2029 * to be marked dirty again, and hence written back again, possibly
2030 * before the previous writepage completed.
2032 * Block here, instead of in ->writepage(), so that the userspace fs
2033 * can only block processes actually operating on the filesystem.
2035 * Otherwise unprivileged userspace fs would be able to block
2040 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
2042 static int fuse_page_mkwrite(struct vm_fault *vmf)
2044 struct page *page = vmf->page;
2045 struct inode *inode = file_inode(vmf->vma->vm_file);
2047 file_update_time(vmf->vma->vm_file);
2049 if (page->mapping != inode->i_mapping) {
2051 return VM_FAULT_NOPAGE;
2054 fuse_wait_on_page_writeback(inode, page->index);
2055 return VM_FAULT_LOCKED;
2058 static const struct vm_operations_struct fuse_file_vm_ops = {
2059 .close = fuse_vma_close,
2060 .fault = filemap_fault,
2061 .map_pages = filemap_map_pages,
2062 .page_mkwrite = fuse_page_mkwrite,
2065 static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
2067 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2068 fuse_link_write_file(file);
2070 file_accessed(file);
2071 vma->vm_ops = &fuse_file_vm_ops;
2075 static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
2077 /* Can't provide the coherency needed for MAP_SHARED */
2078 if (vma->vm_flags & VM_MAYSHARE)
2081 invalidate_inode_pages2(file->f_mapping);
2083 return generic_file_mmap(file, vma);
2086 static int convert_fuse_file_lock(const struct fuse_file_lock *ffl,
2087 struct file_lock *fl)
2089 switch (ffl->type) {
2095 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
2096 ffl->end < ffl->start)
2099 fl->fl_start = ffl->start;
2100 fl->fl_end = ffl->end;
2101 fl->fl_pid = ffl->pid;
2107 fl->fl_type = ffl->type;
2111 static void fuse_lk_fill(struct fuse_args *args, struct file *file,
2112 const struct file_lock *fl, int opcode, pid_t pid,
2113 int flock, struct fuse_lk_in *inarg)
2115 struct inode *inode = file_inode(file);
2116 struct fuse_conn *fc = get_fuse_conn(inode);
2117 struct fuse_file *ff = file->private_data;
2119 memset(inarg, 0, sizeof(*inarg));
2121 inarg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
2122 inarg->lk.start = fl->fl_start;
2123 inarg->lk.end = fl->fl_end;
2124 inarg->lk.type = fl->fl_type;
2125 inarg->lk.pid = pid;
2127 inarg->lk_flags |= FUSE_LK_FLOCK;
2128 args->in.h.opcode = opcode;
2129 args->in.h.nodeid = get_node_id(inode);
2130 args->in.numargs = 1;
2131 args->in.args[0].size = sizeof(*inarg);
2132 args->in.args[0].value = inarg;
2135 static int fuse_getlk(struct file *file, struct file_lock *fl)
2137 struct inode *inode = file_inode(file);
2138 struct fuse_conn *fc = get_fuse_conn(inode);
2140 struct fuse_lk_in inarg;
2141 struct fuse_lk_out outarg;
2144 fuse_lk_fill(&args, file, fl, FUSE_GETLK, 0, 0, &inarg);
2145 args.out.numargs = 1;
2146 args.out.args[0].size = sizeof(outarg);
2147 args.out.args[0].value = &outarg;
2148 err = fuse_simple_request(fc, &args);
2150 err = convert_fuse_file_lock(&outarg.lk, fl);
2155 static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
2157 struct inode *inode = file_inode(file);
2158 struct fuse_conn *fc = get_fuse_conn(inode);
2160 struct fuse_lk_in inarg;
2161 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
2162 pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0;
2165 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
2166 /* NLM needs asynchronous locks, which we don't support yet */
2170 /* Unlock on close is handled by the flush method */
2171 if (fl->fl_flags & FL_CLOSE)
2174 fuse_lk_fill(&args, file, fl, opcode, pid, flock, &inarg);
2175 err = fuse_simple_request(fc, &args);
2177 /* locking is restartable */
2184 static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
2186 struct inode *inode = file_inode(file);
2187 struct fuse_conn *fc = get_fuse_conn(inode);
2190 if (cmd == F_CANCELLK) {
2192 } else if (cmd == F_GETLK) {
2194 posix_test_lock(file, fl);
2197 err = fuse_getlk(file, fl);
2200 err = posix_lock_file(file, fl, NULL);
2202 err = fuse_setlk(file, fl, 0);
2207 static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
2209 struct inode *inode = file_inode(file);
2210 struct fuse_conn *fc = get_fuse_conn(inode);
2214 err = locks_lock_file_wait(file, fl);
2216 struct fuse_file *ff = file->private_data;
2218 /* emulate flock with POSIX locks */
2220 err = fuse_setlk(file, fl, 1);
2226 static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
2228 struct inode *inode = mapping->host;
2229 struct fuse_conn *fc = get_fuse_conn(inode);
2231 struct fuse_bmap_in inarg;
2232 struct fuse_bmap_out outarg;
2235 if (!inode->i_sb->s_bdev || fc->no_bmap)
2238 memset(&inarg, 0, sizeof(inarg));
2239 inarg.block = block;
2240 inarg.blocksize = inode->i_sb->s_blocksize;
2241 args.in.h.opcode = FUSE_BMAP;
2242 args.in.h.nodeid = get_node_id(inode);
2243 args.in.numargs = 1;
2244 args.in.args[0].size = sizeof(inarg);
2245 args.in.args[0].value = &inarg;
2246 args.out.numargs = 1;
2247 args.out.args[0].size = sizeof(outarg);
2248 args.out.args[0].value = &outarg;
2249 err = fuse_simple_request(fc, &args);
2253 return err ? 0 : outarg.block;
2256 static loff_t fuse_lseek(struct file *file, loff_t offset, int whence)
2258 struct inode *inode = file->f_mapping->host;
2259 struct fuse_conn *fc = get_fuse_conn(inode);
2260 struct fuse_file *ff = file->private_data;
2262 struct fuse_lseek_in inarg = {
2267 struct fuse_lseek_out outarg;
2273 args.in.h.opcode = FUSE_LSEEK;
2274 args.in.h.nodeid = ff->nodeid;
2275 args.in.numargs = 1;
2276 args.in.args[0].size = sizeof(inarg);
2277 args.in.args[0].value = &inarg;
2278 args.out.numargs = 1;
2279 args.out.args[0].size = sizeof(outarg);
2280 args.out.args[0].value = &outarg;
2281 err = fuse_simple_request(fc, &args);
2283 if (err == -ENOSYS) {
2290 return vfs_setpos(file, outarg.offset, inode->i_sb->s_maxbytes);
2293 err = fuse_update_attributes(inode, NULL, file, NULL);
2295 return generic_file_llseek(file, offset, whence);
2300 static loff_t fuse_file_llseek(struct file *file, loff_t offset, int whence)
2303 struct inode *inode = file_inode(file);
2308 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
2309 retval = generic_file_llseek(file, offset, whence);
2313 retval = fuse_update_attributes(inode, NULL, file, NULL);
2315 retval = generic_file_llseek(file, offset, whence);
2316 inode_unlock(inode);
2321 retval = fuse_lseek(file, offset, whence);
2322 inode_unlock(inode);
2332 * CUSE servers compiled on 32bit broke on 64bit kernels because the
2333 * ABI was defined to be 'struct iovec' which is different on 32bit
2334 * and 64bit. Fortunately we can determine which structure the server
2335 * used from the size of the reply.
2337 static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
2338 size_t transferred, unsigned count,
2341 #ifdef CONFIG_COMPAT
2342 if (count * sizeof(struct compat_iovec) == transferred) {
2343 struct compat_iovec *ciov = src;
2347 * With this interface a 32bit server cannot support
2348 * non-compat (i.e. ones coming from 64bit apps) ioctl
2354 for (i = 0; i < count; i++) {
2355 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
2356 dst[i].iov_len = ciov[i].iov_len;
2362 if (count * sizeof(struct iovec) != transferred)
2365 memcpy(dst, src, transferred);
2369 /* Make sure iov_length() won't overflow */
2370 static int fuse_verify_ioctl_iov(struct iovec *iov, size_t count)
2373 u32 max = FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT;
2375 for (n = 0; n < count; n++, iov++) {
2376 if (iov->iov_len > (size_t) max)
2378 max -= iov->iov_len;
2383 static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
2384 void *src, size_t transferred, unsigned count,
2388 struct fuse_ioctl_iovec *fiov = src;
2390 if (fc->minor < 16) {
2391 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
2395 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
2398 for (i = 0; i < count; i++) {
2399 /* Did the server supply an inappropriate value? */
2400 if (fiov[i].base != (unsigned long) fiov[i].base ||
2401 fiov[i].len != (unsigned long) fiov[i].len)
2404 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
2405 dst[i].iov_len = (size_t) fiov[i].len;
2407 #ifdef CONFIG_COMPAT
2409 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
2410 (compat_size_t) dst[i].iov_len != fiov[i].len))
2420 * For ioctls, there is no generic way to determine how much memory
2421 * needs to be read and/or written. Furthermore, ioctls are allowed
2422 * to dereference the passed pointer, so the parameter requires deep
2423 * copying but FUSE has no idea whatsoever about what to copy in or
2426 * This is solved by allowing FUSE server to retry ioctl with
2427 * necessary in/out iovecs. Let's assume the ioctl implementation
2428 * needs to read in the following structure.
2435 * On the first callout to FUSE server, inarg->in_size and
2436 * inarg->out_size will be NULL; then, the server completes the ioctl
2437 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
2438 * the actual iov array to
2440 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
2442 * which tells FUSE to copy in the requested area and retry the ioctl.
2443 * On the second round, the server has access to the structure and
2444 * from that it can tell what to look for next, so on the invocation,
2445 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
2447 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
2448 * { .iov_base = a.buf, .iov_len = a.buflen } }
2450 * FUSE will copy both struct a and the pointed buffer from the
2451 * process doing the ioctl and retry ioctl with both struct a and the
2454 * This time, FUSE server has everything it needs and completes ioctl
2455 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
2457 * Copying data out works the same way.
2459 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
2460 * automatically initializes in and out iovs by decoding @cmd with
2461 * _IOC_* macros and the server is not allowed to request RETRY. This
2462 * limits ioctl data transfers to well-formed ioctls and is the forced
2463 * behavior for all FUSE servers.
2465 long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
2468 struct fuse_file *ff = file->private_data;
2469 struct fuse_conn *fc = ff->fc;
2470 struct fuse_ioctl_in inarg = {
2476 struct fuse_ioctl_out outarg;
2477 struct fuse_req *req = NULL;
2478 struct page **pages = NULL;
2479 struct iovec *iov_page = NULL;
2480 struct iovec *in_iov = NULL, *out_iov = NULL;
2481 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
2482 size_t in_size, out_size, transferred, c;
2486 #if BITS_PER_LONG == 32
2487 inarg.flags |= FUSE_IOCTL_32BIT;
2489 if (flags & FUSE_IOCTL_COMPAT)
2490 inarg.flags |= FUSE_IOCTL_32BIT;
2493 /* assume all the iovs returned by client always fits in a page */
2494 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
2497 pages = kcalloc(FUSE_MAX_PAGES_PER_REQ, sizeof(pages[0]), GFP_KERNEL);
2498 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
2499 if (!pages || !iov_page)
2503 * If restricted, initialize IO parameters as encoded in @cmd.
2504 * RETRY from server is not allowed.
2506 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
2507 struct iovec *iov = iov_page;
2509 iov->iov_base = (void __user *)arg;
2510 iov->iov_len = _IOC_SIZE(cmd);
2512 if (_IOC_DIR(cmd) & _IOC_WRITE) {
2517 if (_IOC_DIR(cmd) & _IOC_READ) {
2524 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
2525 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
2528 * Out data can be used either for actual out data or iovs,
2529 * make sure there always is at least one page.
2531 out_size = max_t(size_t, out_size, PAGE_SIZE);
2532 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
2534 /* make sure there are enough buffer pages and init request with them */
2536 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
2538 while (num_pages < max_pages) {
2539 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2540 if (!pages[num_pages])
2545 req = fuse_get_req(fc, num_pages);
2551 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
2552 req->num_pages = num_pages;
2553 fuse_page_descs_length_init(req, 0, req->num_pages);
2555 /* okay, let's send it to the client */
2556 req->in.h.opcode = FUSE_IOCTL;
2557 req->in.h.nodeid = ff->nodeid;
2558 req->in.numargs = 1;
2559 req->in.args[0].size = sizeof(inarg);
2560 req->in.args[0].value = &inarg;
2563 req->in.args[1].size = in_size;
2564 req->in.argpages = 1;
2567 iov_iter_init(&ii, WRITE, in_iov, in_iovs, in_size);
2568 for (i = 0; iov_iter_count(&ii) && !WARN_ON(i >= num_pages); i++) {
2569 c = copy_page_from_iter(pages[i], 0, PAGE_SIZE, &ii);
2570 if (c != PAGE_SIZE && iov_iter_count(&ii))
2575 req->out.numargs = 2;
2576 req->out.args[0].size = sizeof(outarg);
2577 req->out.args[0].value = &outarg;
2578 req->out.args[1].size = out_size;
2579 req->out.argpages = 1;
2580 req->out.argvar = 1;
2582 fuse_request_send(fc, req);
2583 err = req->out.h.error;
2584 transferred = req->out.args[1].size;
2585 fuse_put_request(fc, req);
2590 /* did it ask for retry? */
2591 if (outarg.flags & FUSE_IOCTL_RETRY) {
2594 /* no retry if in restricted mode */
2596 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
2599 in_iovs = outarg.in_iovs;
2600 out_iovs = outarg.out_iovs;
2603 * Make sure things are in boundary, separate checks
2604 * are to protect against overflow.
2607 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
2608 out_iovs > FUSE_IOCTL_MAX_IOV ||
2609 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
2612 vaddr = kmap_atomic(pages[0]);
2613 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
2614 transferred, in_iovs + out_iovs,
2615 (flags & FUSE_IOCTL_COMPAT) != 0);
2616 kunmap_atomic(vaddr);
2621 out_iov = in_iov + in_iovs;
2623 err = fuse_verify_ioctl_iov(in_iov, in_iovs);
2627 err = fuse_verify_ioctl_iov(out_iov, out_iovs);
2635 if (transferred > inarg.out_size)
2639 iov_iter_init(&ii, READ, out_iov, out_iovs, transferred);
2640 for (i = 0; iov_iter_count(&ii) && !WARN_ON(i >= num_pages); i++) {
2641 c = copy_page_to_iter(pages[i], 0, PAGE_SIZE, &ii);
2642 if (c != PAGE_SIZE && iov_iter_count(&ii))
2648 fuse_put_request(fc, req);
2649 free_page((unsigned long) iov_page);
2651 __free_page(pages[--num_pages]);
2654 return err ? err : outarg.result;
2656 EXPORT_SYMBOL_GPL(fuse_do_ioctl);
2658 long fuse_ioctl_common(struct file *file, unsigned int cmd,
2659 unsigned long arg, unsigned int flags)
2661 struct inode *inode = file_inode(file);
2662 struct fuse_conn *fc = get_fuse_conn(inode);
2664 if (!fuse_allow_current_process(fc))
2667 if (is_bad_inode(inode))
2670 return fuse_do_ioctl(file, cmd, arg, flags);
2673 static long fuse_file_ioctl(struct file *file, unsigned int cmd,
2676 return fuse_ioctl_common(file, cmd, arg, 0);
2679 static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
2682 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
2686 * All files which have been polled are linked to RB tree
2687 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2688 * find the matching one.
2690 static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2691 struct rb_node **parent_out)
2693 struct rb_node **link = &fc->polled_files.rb_node;
2694 struct rb_node *last = NULL;
2697 struct fuse_file *ff;
2700 ff = rb_entry(last, struct fuse_file, polled_node);
2703 link = &last->rb_left;
2704 else if (kh > ff->kh)
2705 link = &last->rb_right;
2716 * The file is about to be polled. Make sure it's on the polled_files
2717 * RB tree. Note that files once added to the polled_files tree are
2718 * not removed before the file is released. This is because a file
2719 * polled once is likely to be polled again.
2721 static void fuse_register_polled_file(struct fuse_conn *fc,
2722 struct fuse_file *ff)
2724 spin_lock(&fc->lock);
2725 if (RB_EMPTY_NODE(&ff->polled_node)) {
2726 struct rb_node **link, *uninitialized_var(parent);
2728 link = fuse_find_polled_node(fc, ff->kh, &parent);
2730 rb_link_node(&ff->polled_node, parent, link);
2731 rb_insert_color(&ff->polled_node, &fc->polled_files);
2733 spin_unlock(&fc->lock);
2736 unsigned fuse_file_poll(struct file *file, poll_table *wait)
2738 struct fuse_file *ff = file->private_data;
2739 struct fuse_conn *fc = ff->fc;
2740 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2741 struct fuse_poll_out outarg;
2746 return DEFAULT_POLLMASK;
2748 poll_wait(file, &ff->poll_wait, wait);
2749 inarg.events = (__u32)poll_requested_events(wait);
2752 * Ask for notification iff there's someone waiting for it.
2753 * The client may ignore the flag and always notify.
2755 if (waitqueue_active(&ff->poll_wait)) {
2756 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2757 fuse_register_polled_file(fc, ff);
2760 args.in.h.opcode = FUSE_POLL;
2761 args.in.h.nodeid = ff->nodeid;
2762 args.in.numargs = 1;
2763 args.in.args[0].size = sizeof(inarg);
2764 args.in.args[0].value = &inarg;
2765 args.out.numargs = 1;
2766 args.out.args[0].size = sizeof(outarg);
2767 args.out.args[0].value = &outarg;
2768 err = fuse_simple_request(fc, &args);
2771 return outarg.revents;
2772 if (err == -ENOSYS) {
2774 return DEFAULT_POLLMASK;
2778 EXPORT_SYMBOL_GPL(fuse_file_poll);
2781 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2782 * wakes up the poll waiters.
2784 int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2785 struct fuse_notify_poll_wakeup_out *outarg)
2787 u64 kh = outarg->kh;
2788 struct rb_node **link;
2790 spin_lock(&fc->lock);
2792 link = fuse_find_polled_node(fc, kh, NULL);
2794 struct fuse_file *ff;
2796 ff = rb_entry(*link, struct fuse_file, polled_node);
2797 wake_up_interruptible_sync(&ff->poll_wait);
2800 spin_unlock(&fc->lock);
2804 static void fuse_do_truncate(struct file *file)
2806 struct inode *inode = file->f_mapping->host;
2809 attr.ia_valid = ATTR_SIZE;
2810 attr.ia_size = i_size_read(inode);
2812 attr.ia_file = file;
2813 attr.ia_valid |= ATTR_FILE;
2815 fuse_do_setattr(file_dentry(file), &attr, file);
2818 static inline loff_t fuse_round_up(loff_t off)
2820 return round_up(off, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
2824 fuse_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
2826 DECLARE_COMPLETION_ONSTACK(wait);
2828 struct file *file = iocb->ki_filp;
2829 struct fuse_file *ff = file->private_data;
2830 bool async_dio = ff->fc->async_dio;
2832 struct inode *inode;
2834 size_t count = iov_iter_count(iter);
2835 loff_t offset = iocb->ki_pos;
2836 struct fuse_io_priv *io;
2839 inode = file->f_mapping->host;
2840 i_size = i_size_read(inode);
2842 if ((iov_iter_rw(iter) == READ) && (offset > i_size))
2845 /* optimization for short read */
2846 if (async_dio && iov_iter_rw(iter) != WRITE && offset + count > i_size) {
2847 if (offset >= i_size)
2849 iov_iter_truncate(iter, fuse_round_up(i_size - offset));
2850 count = iov_iter_count(iter);
2853 io = kmalloc(sizeof(struct fuse_io_priv), GFP_KERNEL);
2856 spin_lock_init(&io->lock);
2857 kref_init(&io->refcnt);
2861 io->offset = offset;
2862 io->write = (iov_iter_rw(iter) == WRITE);
2866 * By default, we want to optimize all I/Os with async request
2867 * submission to the client filesystem if supported.
2869 io->async = async_dio;
2871 io->blocking = is_sync_kiocb(iocb);
2874 * We cannot asynchronously extend the size of a file.
2875 * In such case the aio will behave exactly like sync io.
2877 if ((offset + count > i_size) && iov_iter_rw(iter) == WRITE)
2878 io->blocking = true;
2880 if (io->async && io->blocking) {
2882 * Additional reference to keep io around after
2883 * calling fuse_aio_complete()
2885 kref_get(&io->refcnt);
2889 if (iov_iter_rw(iter) == WRITE) {
2890 ret = fuse_direct_io(io, iter, &pos, FUSE_DIO_WRITE);
2891 fuse_invalidate_attr(inode);
2893 ret = __fuse_direct_read(io, iter, &pos);
2897 fuse_aio_complete(io, ret < 0 ? ret : 0, -1);
2899 /* we have a non-extending, async request, so return */
2901 return -EIOCBQUEUED;
2903 wait_for_completion(&wait);
2904 ret = fuse_get_res_by_io(io);
2907 kref_put(&io->refcnt, fuse_io_release);
2909 if (iov_iter_rw(iter) == WRITE) {
2911 fuse_write_update_size(inode, pos);
2912 else if (ret < 0 && offset + count > i_size)
2913 fuse_do_truncate(file);
2919 static long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
2922 struct fuse_file *ff = file->private_data;
2923 struct inode *inode = file_inode(file);
2924 struct fuse_inode *fi = get_fuse_inode(inode);
2925 struct fuse_conn *fc = ff->fc;
2927 struct fuse_fallocate_in inarg = {
2934 bool lock_inode = !(mode & FALLOC_FL_KEEP_SIZE) ||
2935 (mode & FALLOC_FL_PUNCH_HOLE);
2937 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2940 if (fc->no_fallocate)
2945 if (mode & FALLOC_FL_PUNCH_HOLE) {
2946 loff_t endbyte = offset + length - 1;
2947 err = filemap_write_and_wait_range(inode->i_mapping,
2952 fuse_sync_writes(inode);
2956 if (!(mode & FALLOC_FL_KEEP_SIZE))
2957 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
2959 args.in.h.opcode = FUSE_FALLOCATE;
2960 args.in.h.nodeid = ff->nodeid;
2961 args.in.numargs = 1;
2962 args.in.args[0].size = sizeof(inarg);
2963 args.in.args[0].value = &inarg;
2964 err = fuse_simple_request(fc, &args);
2965 if (err == -ENOSYS) {
2966 fc->no_fallocate = 1;
2972 /* we could have extended the file */
2973 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
2974 bool changed = fuse_write_update_size(inode, offset + length);
2976 if (changed && fc->writeback_cache)
2977 file_update_time(file);
2980 if (mode & FALLOC_FL_PUNCH_HOLE)
2981 truncate_pagecache_range(inode, offset, offset + length - 1);
2983 fuse_invalidate_attr(inode);
2986 if (!(mode & FALLOC_FL_KEEP_SIZE))
2987 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
2990 inode_unlock(inode);
2995 static const struct file_operations fuse_file_operations = {
2996 .llseek = fuse_file_llseek,
2997 .read_iter = fuse_file_read_iter,
2998 .write_iter = fuse_file_write_iter,
2999 .mmap = fuse_file_mmap,
3001 .flush = fuse_flush,
3002 .release = fuse_release,
3003 .fsync = fuse_fsync,
3004 .lock = fuse_file_lock,
3005 .flock = fuse_file_flock,
3006 .splice_read = generic_file_splice_read,
3007 .unlocked_ioctl = fuse_file_ioctl,
3008 .compat_ioctl = fuse_file_compat_ioctl,
3009 .poll = fuse_file_poll,
3010 .fallocate = fuse_file_fallocate,
3013 static const struct file_operations fuse_direct_io_file_operations = {
3014 .llseek = fuse_file_llseek,
3015 .read_iter = fuse_direct_read_iter,
3016 .write_iter = fuse_direct_write_iter,
3017 .mmap = fuse_direct_mmap,
3019 .flush = fuse_flush,
3020 .release = fuse_release,
3021 .fsync = fuse_fsync,
3022 .lock = fuse_file_lock,
3023 .flock = fuse_file_flock,
3024 .unlocked_ioctl = fuse_file_ioctl,
3025 .compat_ioctl = fuse_file_compat_ioctl,
3026 .poll = fuse_file_poll,
3027 .fallocate = fuse_file_fallocate,
3028 /* no splice_read */
3031 static const struct address_space_operations fuse_file_aops = {
3032 .readpage = fuse_readpage,
3033 .writepage = fuse_writepage,
3034 .writepages = fuse_writepages,
3035 .launder_page = fuse_launder_page,
3036 .readpages = fuse_readpages,
3037 .set_page_dirty = __set_page_dirty_nobuffers,
3039 .direct_IO = fuse_direct_IO,
3040 .write_begin = fuse_write_begin,
3041 .write_end = fuse_write_end,
3044 void fuse_init_file_inode(struct inode *inode)
3046 inode->i_fop = &fuse_file_operations;
3047 inode->i_data.a_ops = &fuse_file_aops;