blob: 9d67b830fb7a25445bfd4f930c6ef7fa66fbbd1e [file] [log] [blame]
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi1729a162008-11-26 12:03:54 +01003 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredib6aeade2005-09-09 13:10:30 -07004
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
9#include "fuse_i.h"
10
11#include <linux/pagemap.h>
12#include <linux/slab.h>
13#include <linux/kernel.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040014#include <linux/sched.h>
Eric W. Biederman7a360942017-09-26 12:45:33 -050015#include <linux/sched/signal.h>
Tejun Heo08cbf542009-04-14 10:54:53 +090016#include <linux/module.h>
Miklos Szeredid9d318d2010-11-30 16:39:27 +010017#include <linux/compat.h>
Johannes Weiner478e0842011-07-25 22:35:35 +020018#include <linux/swap.h>
Brian Foster3634a632013-05-17 09:30:32 -040019#include <linux/falloc.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080020#include <linux/uio.h>
Miklos Szeredib6aeade2005-09-09 13:10:30 -070021
Miklos Szeredi72133942019-09-10 15:04:11 +020022static struct page **fuse_pages_alloc(unsigned int npages, gfp_t flags,
23 struct fuse_page_desc **desc)
Miklos Szeredi4c4f03f2019-09-10 15:04:09 +020024{
25 struct page **pages;
26
27 pages = kzalloc(npages * (sizeof(struct page *) +
28 sizeof(struct fuse_page_desc)), flags);
29 *desc = (void *) (pages + npages);
30
31 return pages;
32}
33
Miklos Szeredi91fe96b2009-04-28 16:56:37 +020034static int fuse_send_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
35 int opcode, struct fuse_open_out *outargp)
Miklos Szeredib6aeade2005-09-09 13:10:30 -070036{
Miklos Szeredib6aeade2005-09-09 13:10:30 -070037 struct fuse_open_in inarg;
Miklos Szeredi70781872014-12-12 09:49:05 +010038 FUSE_ARGS(args);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080039
40 memset(&inarg, 0, sizeof(inarg));
Miklos Szeredi6ff958e2007-10-18 03:07:02 -070041 inarg.flags = file->f_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
42 if (!fc->atomic_o_trunc)
43 inarg.flags &= ~O_TRUNC;
Miklos Szeredid5b48542019-09-10 15:04:08 +020044 args.opcode = opcode;
45 args.nodeid = nodeid;
46 args.in_numargs = 1;
47 args.in_args[0].size = sizeof(inarg);
48 args.in_args[0].value = &inarg;
49 args.out_numargs = 1;
50 args.out_args[0].size = sizeof(*outargp);
51 args.out_args[0].value = outargp;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080052
Miklos Szeredi70781872014-12-12 09:49:05 +010053 return fuse_simple_request(fc, &args);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080054}
55
Miklos Szeredi4cb54862019-09-10 15:04:10 +020056struct fuse_release_args {
57 struct fuse_args args;
58 struct fuse_release_in inarg;
59 struct inode *inode;
60};
61
Tejun Heoacf99432008-11-26 12:03:55 +010062struct fuse_file *fuse_file_alloc(struct fuse_conn *fc)
Miklos Szeredifd72faa2005-11-07 00:59:51 -080063{
64 struct fuse_file *ff;
Tejun Heo6b2db282009-04-14 10:54:49 +090065
Khazhismel Kumykovdc69e982019-09-17 12:35:33 -070066 ff = kzalloc(sizeof(struct fuse_file), GFP_KERNEL_ACCOUNT);
Tejun Heo6b2db282009-04-14 10:54:49 +090067 if (unlikely(!ff))
68 return NULL;
69
Miklos Szeredida5e4712009-04-28 16:56:36 +020070 ff->fc = fc;
Khazhismel Kumykovdc69e982019-09-17 12:35:33 -070071 ff->release_args = kzalloc(sizeof(*ff->release_args),
72 GFP_KERNEL_ACCOUNT);
Miklos Szeredi4cb54862019-09-10 15:04:10 +020073 if (!ff->release_args) {
Tejun Heo6b2db282009-04-14 10:54:49 +090074 kfree(ff);
75 return NULL;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080076 }
Tejun Heo6b2db282009-04-14 10:54:49 +090077
78 INIT_LIST_HEAD(&ff->write_entry);
Miklos Szeredi5d7bc7e2018-10-01 10:07:04 +020079 mutex_init(&ff->readdir.lock);
Elena Reshetova4e8c2eb2017-03-03 11:04:03 +020080 refcount_set(&ff->count, 1);
Tejun Heo6b2db282009-04-14 10:54:49 +090081 RB_CLEAR_NODE(&ff->polled_node);
82 init_waitqueue_head(&ff->poll_wait);
83
Miklos Szeredi75126f52019-01-24 10:40:17 +010084 ff->kh = atomic64_inc_return(&fc->khctr);
Tejun Heo6b2db282009-04-14 10:54:49 +090085
Miklos Szeredifd72faa2005-11-07 00:59:51 -080086 return ff;
87}
88
89void fuse_file_free(struct fuse_file *ff)
90{
Miklos Szeredi4cb54862019-09-10 15:04:10 +020091 kfree(ff->release_args);
Miklos Szeredi5d7bc7e2018-10-01 10:07:04 +020092 mutex_destroy(&ff->readdir.lock);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080093 kfree(ff);
94}
95
Miklos Szeredi267d8442017-02-22 20:08:25 +010096static struct fuse_file *fuse_file_get(struct fuse_file *ff)
Miklos Szeredic756e0a2007-10-16 23:31:00 -070097{
Elena Reshetova4e8c2eb2017-03-03 11:04:03 +020098 refcount_inc(&ff->count);
Miklos Szeredic756e0a2007-10-16 23:31:00 -070099 return ff;
100}
101
Miklos Szeredi4cb54862019-09-10 15:04:10 +0200102static void fuse_release_end(struct fuse_conn *fc, struct fuse_args *args,
103 int error)
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100104{
Miklos Szeredi4cb54862019-09-10 15:04:10 +0200105 struct fuse_release_args *ra = container_of(args, typeof(*ra), args);
106
107 iput(ra->inode);
108 kfree(ra);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100109}
110
Chad Austin2e64ff12018-12-10 10:54:52 -0800111static void fuse_file_put(struct fuse_file *ff, bool sync, bool isdir)
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700112{
Elena Reshetova4e8c2eb2017-03-03 11:04:03 +0200113 if (refcount_dec_and_test(&ff->count)) {
Miklos Szeredi4cb54862019-09-10 15:04:10 +0200114 struct fuse_args *args = &ff->release_args->args;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200115
Chad Austind9a9ea92019-01-07 16:53:17 -0800116 if (isdir ? ff->fc->no_opendir : ff->fc->no_open) {
Miklos Szeredi4cb54862019-09-10 15:04:10 +0200117 /* Do nothing when client does not implement 'open' */
118 fuse_release_end(ff->fc, args, 0);
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100119 } else if (sync) {
Miklos Szeredi4cb54862019-09-10 15:04:10 +0200120 fuse_simple_request(ff->fc, args);
121 fuse_release_end(ff->fc, args, 0);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100122 } else {
Miklos Szeredi4cb54862019-09-10 15:04:10 +0200123 args->end = fuse_release_end;
124 if (fuse_simple_background(ff->fc, args,
125 GFP_KERNEL | __GFP_NOFAIL))
126 fuse_release_end(ff->fc, args, -ENOTCONN);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100127 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700128 kfree(ff);
129 }
130}
131
Tejun Heo08cbf542009-04-14 10:54:53 +0900132int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
133 bool isdir)
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200134{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200135 struct fuse_file *ff;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200136 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
137
138 ff = fuse_file_alloc(fc);
139 if (!ff)
140 return -ENOMEM;
141
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100142 ff->fh = 0;
Chad Austinfabf7e02019-01-28 16:34:34 -0800143 /* Default for no-open */
144 ff->open_flags = FOPEN_KEEP_CACHE | (isdir ? FOPEN_CACHE_DIR : 0);
Chad Austind9a9ea92019-01-07 16:53:17 -0800145 if (isdir ? !fc->no_opendir : !fc->no_open) {
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100146 struct fuse_open_out outarg;
147 int err;
148
149 err = fuse_send_open(fc, nodeid, file, opcode, &outarg);
150 if (!err) {
151 ff->fh = outarg.fh;
152 ff->open_flags = outarg.open_flags;
153
Chad Austind9a9ea92019-01-07 16:53:17 -0800154 } else if (err != -ENOSYS) {
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100155 fuse_file_free(ff);
156 return err;
157 } else {
Chad Austind9a9ea92019-01-07 16:53:17 -0800158 if (isdir)
159 fc->no_opendir = 1;
160 else
161 fc->no_open = 1;
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100162 }
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200163 }
164
165 if (isdir)
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100166 ff->open_flags &= ~FOPEN_DIRECT_IO;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200167
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200168 ff->nodeid = nodeid;
Miklos Szeredi267d8442017-02-22 20:08:25 +0100169 file->private_data = ff;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200170
171 return 0;
172}
Tejun Heo08cbf542009-04-14 10:54:53 +0900173EXPORT_SYMBOL_GPL(fuse_do_open);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200174
Pavel Emelyanov650b22b2013-10-10 17:10:04 +0400175static void fuse_link_write_file(struct file *file)
176{
177 struct inode *inode = file_inode(file);
Pavel Emelyanov650b22b2013-10-10 17:10:04 +0400178 struct fuse_inode *fi = get_fuse_inode(inode);
179 struct fuse_file *ff = file->private_data;
180 /*
181 * file may be written through mmap, so chain it onto the
182 * inodes's write_file list
183 */
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +0300184 spin_lock(&fi->lock);
Pavel Emelyanov650b22b2013-10-10 17:10:04 +0400185 if (list_empty(&ff->write_entry))
186 list_add(&ff->write_entry, &fi->write_files);
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +0300187 spin_unlock(&fi->lock);
Pavel Emelyanov650b22b2013-10-10 17:10:04 +0400188}
189
Miklos Szeredic7b71432009-04-28 16:56:37 +0200190void fuse_finish_open(struct inode *inode, struct file *file)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800191{
Miklos Szeredic7b71432009-04-28 16:56:37 +0200192 struct fuse_file *ff = file->private_data;
Ken Sumralla0822c52010-11-24 12:57:00 -0800193 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200194
Miklos Szeredic7b71432009-04-28 16:56:37 +0200195 if (!(ff->open_flags & FOPEN_KEEP_CACHE))
Miklos Szeredib1009972007-10-16 23:31:01 -0700196 invalidate_inode_pages2(inode->i_mapping);
Kirill Smelkovbbd84f32019-04-24 07:13:57 +0000197 if (ff->open_flags & FOPEN_STREAM)
198 stream_open(inode, file);
199 else if (ff->open_flags & FOPEN_NONSEEKABLE)
Tejun Heoa7c1b992008-10-16 16:08:57 +0200200 nonseekable_open(inode, file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800201 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
202 struct fuse_inode *fi = get_fuse_inode(inode);
203
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +0300204 spin_lock(&fi->lock);
Kirill Tkhai4510d862018-11-09 13:33:17 +0300205 fi->attr_version = atomic64_inc_return(&fc->attr_version);
Ken Sumralla0822c52010-11-24 12:57:00 -0800206 i_size_write(inode, 0);
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +0300207 spin_unlock(&fi->lock);
Ken Sumralla0822c52010-11-24 12:57:00 -0800208 fuse_invalidate_attr(inode);
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200209 if (fc->writeback_cache)
210 file_update_time(file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800211 }
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +0400212 if ((file->f_mode & FMODE_WRITE) && fc->writeback_cache)
213 fuse_link_write_file(file);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800214}
215
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200216int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800217{
Tejun Heoacf99432008-11-26 12:03:55 +0100218 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700219 int err;
Miklos Szeredie4648302019-10-23 14:26:37 +0200220 bool is_wb_truncate = (file->f_flags & O_TRUNC) &&
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200221 fc->atomic_o_trunc &&
222 fc->writeback_cache;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700223
224 err = generic_file_open(inode, file);
225 if (err)
226 return err;
227
Miklos Szeredie4648302019-10-23 14:26:37 +0200228 if (is_wb_truncate) {
Al Viro59551022016-01-22 15:40:57 -0500229 inode_lock(inode);
Miklos Szeredie4648302019-10-23 14:26:37 +0200230 fuse_set_nowrite(inode);
231 }
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200232
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200233 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700234
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200235 if (!err)
236 fuse_finish_open(inode, file);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200237
Miklos Szeredie4648302019-10-23 14:26:37 +0200238 if (is_wb_truncate) {
239 fuse_release_nowrite(inode);
Al Viro59551022016-01-22 15:40:57 -0500240 inode_unlock(inode);
Miklos Szeredie4648302019-10-23 14:26:37 +0200241 }
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200242
243 return err;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700244}
245
Kirill Tkhaiebf84d02018-11-09 13:33:11 +0300246static void fuse_prepare_release(struct fuse_inode *fi, struct fuse_file *ff,
247 int flags, int opcode)
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800248{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200249 struct fuse_conn *fc = ff->fc;
Miklos Szeredi4cb54862019-09-10 15:04:10 +0200250 struct fuse_release_args *ra = ff->release_args;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700251
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +0300252 /* Inode is NULL on error path of fuse_create_open() */
253 if (likely(fi)) {
254 spin_lock(&fi->lock);
255 list_del(&ff->write_entry);
256 spin_unlock(&fi->lock);
257 }
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200258 spin_lock(&fc->lock);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200259 if (!RB_EMPTY_NODE(&ff->polled_node))
260 rb_erase(&ff->polled_node, &fc->polled_files);
261 spin_unlock(&fc->lock);
262
Bryan Green357ccf22011-03-01 16:43:52 -0800263 wake_up_interruptible_all(&ff->poll_wait);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200264
Miklos Szeredi4cb54862019-09-10 15:04:10 +0200265 ra->inarg.fh = ff->fh;
266 ra->inarg.flags = flags;
267 ra->args.in_numargs = 1;
268 ra->args.in_args[0].size = sizeof(struct fuse_release_in);
269 ra->args.in_args[0].value = &ra->inarg;
270 ra->args.opcode = opcode;
271 ra->args.nodeid = ff->nodeid;
272 ra->args.force = true;
273 ra->args.nocreds = true;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800274}
275
Chad Austin2e64ff12018-12-10 10:54:52 -0800276void fuse_release_common(struct file *file, bool isdir)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800277{
Kirill Tkhaiebf84d02018-11-09 13:33:11 +0300278 struct fuse_inode *fi = get_fuse_inode(file_inode(file));
Miklos Szeredi9a87ad32017-02-22 20:08:25 +0100279 struct fuse_file *ff = file->private_data;
Miklos Szeredi4cb54862019-09-10 15:04:10 +0200280 struct fuse_release_args *ra = ff->release_args;
Chad Austin2e64ff12018-12-10 10:54:52 -0800281 int opcode = isdir ? FUSE_RELEASEDIR : FUSE_RELEASE;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -0700282
Kirill Tkhaiebf84d02018-11-09 13:33:11 +0300283 fuse_prepare_release(fi, ff, file->f_flags, opcode);
Tejun Heo95668a62008-11-26 12:03:55 +0100284
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200285 if (ff->flock) {
Miklos Szeredi4cb54862019-09-10 15:04:10 +0200286 ra->inarg.release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
287 ra->inarg.lock_owner = fuse_lock_owner_id(ff->fc,
288 (fl_owner_t) file);
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200289 }
Miklos Szeredibaebccb2014-12-12 09:49:04 +0100290 /* Hold inode until release is finished */
Miklos Szeredi4cb54862019-09-10 15:04:10 +0200291 ra->inode = igrab(file_inode(file));
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700292
Tejun Heo6b2db282009-04-14 10:54:49 +0900293 /*
294 * Normally this will send the RELEASE request, however if
295 * some asynchronous READ or WRITE requests are outstanding,
296 * the sending will be delayed.
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100297 *
298 * Make the release synchronous if this is a fuseblk mount,
299 * synchronous RELEASE is allowed (and desirable) in this case
300 * because the server can be trusted not to screw up.
Tejun Heo6b2db282009-04-14 10:54:49 +0900301 */
Miklos Szeredi1ccd1ea2019-09-10 15:04:09 +0200302 fuse_file_put(ff, ff->fc->destroy, isdir);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700303}
304
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700305static int fuse_open(struct inode *inode, struct file *file)
306{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200307 return fuse_open_common(inode, file, false);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700308}
309
310static int fuse_release(struct inode *inode, struct file *file)
311{
Pavel Emelyanove7cc133c2013-10-10 17:19:06 +0400312 struct fuse_conn *fc = get_fuse_conn(inode);
313
314 /* see fuse_vma_close() for !writeback_cache case */
315 if (fc->writeback_cache)
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200316 write_inode_now(inode, 1);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400317
Chad Austin2e64ff12018-12-10 10:54:52 -0800318 fuse_release_common(file, false);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200319
320 /* return value is ignored by VFS */
321 return 0;
322}
323
Kirill Tkhaiebf84d02018-11-09 13:33:11 +0300324void fuse_sync_release(struct fuse_inode *fi, struct fuse_file *ff, int flags)
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200325{
Elena Reshetova4e8c2eb2017-03-03 11:04:03 +0200326 WARN_ON(refcount_read(&ff->count) > 1);
Kirill Tkhaiebf84d02018-11-09 13:33:11 +0300327 fuse_prepare_release(fi, ff, flags, FUSE_RELEASE);
Miklos Szeredi267d8442017-02-22 20:08:25 +0100328 /*
329 * iput(NULL) is a no-op and since the refcount is 1 and everything's
330 * synchronous, we are fine with not doing igrab() here"
331 */
Chad Austin2e64ff12018-12-10 10:54:52 -0800332 fuse_file_put(ff, true, false);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700333}
Tejun Heo08cbf542009-04-14 10:54:53 +0900334EXPORT_SYMBOL_GPL(fuse_sync_release);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700335
Miklos Szeredi71421252006-06-25 05:48:52 -0700336/*
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700337 * Scramble the ID space with XTEA, so that the value of the files_struct
338 * pointer is not exposed to userspace.
Miklos Szeredi71421252006-06-25 05:48:52 -0700339 */
Miklos Szeredif3332112007-10-18 03:07:04 -0700340u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
Miklos Szeredi71421252006-06-25 05:48:52 -0700341{
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700342 u32 *k = fc->scramble_key;
343 u64 v = (unsigned long) id;
344 u32 v0 = v;
345 u32 v1 = v >> 32;
346 u32 sum = 0;
347 int i;
348
349 for (i = 0; i < 32; i++) {
350 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
351 sum += 0x9E3779B9;
352 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
353 }
354
355 return (u64) v0 + ((u64) v1 << 32);
Miklos Szeredi71421252006-06-25 05:48:52 -0700356}
357
Miklos Szeredi33826eb2019-09-10 15:04:10 +0200358struct fuse_writepage_args {
359 struct fuse_io_args ia;
360 struct list_head writepages_entry;
361 struct list_head queue_entry;
362 struct fuse_writepage_args *next;
363 struct inode *inode;
364};
365
366static struct fuse_writepage_args *fuse_find_writeback(struct fuse_inode *fi,
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +0100367 pgoff_t idx_from, pgoff_t idx_to)
368{
Miklos Szeredi33826eb2019-09-10 15:04:10 +0200369 struct fuse_writepage_args *wpa;
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +0100370
Miklos Szeredi33826eb2019-09-10 15:04:10 +0200371 list_for_each_entry(wpa, &fi->writepages, writepages_entry) {
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +0100372 pgoff_t curr_index;
373
Miklos Szeredi33826eb2019-09-10 15:04:10 +0200374 WARN_ON(get_fuse_inode(wpa->inode) != fi);
375 curr_index = wpa->ia.write.in.offset >> PAGE_SHIFT;
376 if (idx_from < curr_index + wpa->ia.ap.num_pages &&
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +0100377 curr_index <= idx_to) {
Miklos Szeredi33826eb2019-09-10 15:04:10 +0200378 return wpa;
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +0100379 }
380 }
381 return NULL;
382}
383
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700384/*
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400385 * Check if any page in a range is under writeback
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700386 *
387 * This is currently done by walking the list of writepage requests
388 * for the inode, which can be pretty inefficient.
389 */
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400390static bool fuse_range_is_writeback(struct inode *inode, pgoff_t idx_from,
391 pgoff_t idx_to)
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700392{
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700393 struct fuse_inode *fi = get_fuse_inode(inode);
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +0100394 bool found;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700395
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +0300396 spin_lock(&fi->lock);
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +0100397 found = fuse_find_writeback(fi, idx_from, idx_to);
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +0300398 spin_unlock(&fi->lock);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700399
400 return found;
401}
402
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400403static inline bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
404{
405 return fuse_range_is_writeback(inode, index, index);
406}
407
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700408/*
409 * Wait for page writeback to be completed.
410 *
411 * Since fuse doesn't rely on the VM writeback tracking, this has to
412 * use some other means.
413 */
Maxim Patlasov17b2cbe2019-07-22 10:17:17 +0300414static void fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700415{
416 struct fuse_inode *fi = get_fuse_inode(inode);
417
418 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700419}
420
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400421/*
422 * Wait for all pending writepages on the inode to finish.
423 *
424 * This is currently done by blocking further writes with FUSE_NOWRITE
425 * and waiting for all sent writes to complete.
426 *
427 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
428 * could conflict with truncation.
429 */
430static void fuse_sync_writes(struct inode *inode)
431{
432 fuse_set_nowrite(inode);
433 fuse_release_nowrite(inode);
434}
435
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -0700436static int fuse_flush(struct file *file, fl_owner_t id)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700437{
Al Viro6131ffa2013-02-27 16:59:05 -0500438 struct inode *inode = file_inode(file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700439 struct fuse_conn *fc = get_fuse_conn(inode);
440 struct fuse_file *ff = file->private_data;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700441 struct fuse_flush_in inarg;
Miklos Szeredic500eba2019-09-10 15:04:08 +0200442 FUSE_ARGS(args);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700443 int err;
444
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800445 if (is_bad_inode(inode))
446 return -EIO;
447
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700448 if (fc->no_flush)
449 return 0;
450
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200451 err = write_inode_now(inode, 1);
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400452 if (err)
453 return err;
454
Al Viro59551022016-01-22 15:40:57 -0500455 inode_lock(inode);
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400456 fuse_sync_writes(inode);
Al Viro59551022016-01-22 15:40:57 -0500457 inode_unlock(inode);
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400458
Miklos Szeredi4a7f4e82016-07-29 14:10:57 +0200459 err = filemap_check_errors(file->f_mapping);
Maxim Patlasov9ebce592016-07-19 18:12:26 -0700460 if (err)
461 return err;
462
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700463 memset(&inarg, 0, sizeof(inarg));
464 inarg.fh = ff->fh;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700465 inarg.lock_owner = fuse_lock_owner_id(fc, id);
Miklos Szeredic500eba2019-09-10 15:04:08 +0200466 args.opcode = FUSE_FLUSH;
467 args.nodeid = get_node_id(inode);
468 args.in_numargs = 1;
469 args.in_args[0].size = sizeof(inarg);
470 args.in_args[0].value = &inarg;
471 args.force = true;
472
473 err = fuse_simple_request(fc, &args);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700474 if (err == -ENOSYS) {
475 fc->no_flush = 1;
476 err = 0;
477 }
478 return err;
479}
480
Josef Bacik02c24a82011-07-16 20:44:56 -0400481int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
Miklos Szeredia9c2d1e2018-12-03 10:14:43 +0100482 int datasync, int opcode)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700483{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200484 struct inode *inode = file->f_mapping->host;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700485 struct fuse_conn *fc = get_fuse_conn(inode);
486 struct fuse_file *ff = file->private_data;
Miklos Szeredi70781872014-12-12 09:49:05 +0100487 FUSE_ARGS(args);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700488 struct fuse_fsync_in inarg;
Miklos Szeredia9c2d1e2018-12-03 10:14:43 +0100489
490 memset(&inarg, 0, sizeof(inarg));
491 inarg.fh = ff->fh;
Alan Somers154603f2019-04-19 15:42:44 -0600492 inarg.fsync_flags = datasync ? FUSE_FSYNC_FDATASYNC : 0;
Miklos Szeredid5b48542019-09-10 15:04:08 +0200493 args.opcode = opcode;
494 args.nodeid = get_node_id(inode);
495 args.in_numargs = 1;
496 args.in_args[0].size = sizeof(inarg);
497 args.in_args[0].value = &inarg;
Miklos Szeredia9c2d1e2018-12-03 10:14:43 +0100498 return fuse_simple_request(fc, &args);
499}
500
501static int fuse_fsync(struct file *file, loff_t start, loff_t end,
502 int datasync)
503{
504 struct inode *inode = file->f_mapping->host;
505 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700506 int err;
507
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800508 if (is_bad_inode(inode))
509 return -EIO;
510
Al Viro59551022016-01-22 15:40:57 -0500511 inode_lock(inode);
Josef Bacik02c24a82011-07-16 20:44:56 -0400512
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700513 /*
514 * Start writeback against all dirty pages of the inode, then
515 * wait for all outstanding writes, before sending the FSYNC
516 * request.
517 */
Jeff Layton7e51fe12017-07-22 09:27:43 -0400518 err = file_write_and_wait_range(file, start, end);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700519 if (err)
Josef Bacik02c24a82011-07-16 20:44:56 -0400520 goto out;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700521
522 fuse_sync_writes(inode);
Alexey Kuznetsovac7f0522016-07-19 12:48:01 -0700523
524 /*
525 * Due to implementation of fuse writeback
Jeff Layton7e51fe12017-07-22 09:27:43 -0400526 * file_write_and_wait_range() does not catch errors.
Alexey Kuznetsovac7f0522016-07-19 12:48:01 -0700527 * We have to do this directly after fuse_sync_writes()
528 */
Jeff Layton7e51fe12017-07-22 09:27:43 -0400529 err = file_check_and_advance_wb_err(file);
Alexey Kuznetsovac7f0522016-07-19 12:48:01 -0700530 if (err)
531 goto out;
532
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200533 err = sync_inode_metadata(inode, 1);
534 if (err)
535 goto out;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700536
Miklos Szeredia9c2d1e2018-12-03 10:14:43 +0100537 if (fc->no_fsync)
Miklos Szeredi22401e72014-04-28 14:19:23 +0200538 goto out;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400539
Miklos Szeredia9c2d1e2018-12-03 10:14:43 +0100540 err = fuse_fsync_common(file, start, end, datasync, FUSE_FSYNC);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700541 if (err == -ENOSYS) {
Miklos Szeredia9c2d1e2018-12-03 10:14:43 +0100542 fc->no_fsync = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700543 err = 0;
544 }
Josef Bacik02c24a82011-07-16 20:44:56 -0400545out:
Al Viro59551022016-01-22 15:40:57 -0500546 inode_unlock(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700547
Miklos Szeredia9c2d1e2018-12-03 10:14:43 +0100548 return err;
Miklos Szeredi82547982005-09-09 13:10:38 -0700549}
550
Miklos Szeredi00793ca2019-09-10 15:04:09 +0200551void fuse_read_args_fill(struct fuse_io_args *ia, struct file *file, loff_t pos,
552 size_t count, int opcode)
553{
554 struct fuse_file *ff = file->private_data;
555 struct fuse_args *args = &ia->ap.args;
556
557 ia->read.in.fh = ff->fh;
558 ia->read.in.offset = pos;
559 ia->read.in.size = count;
560 ia->read.in.flags = file->f_flags;
561 args->opcode = opcode;
562 args->nodeid = ff->nodeid;
563 args->in_numargs = 1;
564 args->in_args[0].size = sizeof(ia->read.in);
565 args->in_args[0].value = &ia->read.in;
566 args->out_argvar = true;
567 args->out_numargs = 1;
568 args->out_args[0].size = count;
569}
570
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200571static void fuse_release_user_pages(struct fuse_args_pages *ap,
572 bool should_dirty)
Maxim Patlasov187c5c32012-12-14 19:20:25 +0400573{
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200574 unsigned int i;
Maxim Patlasov187c5c32012-12-14 19:20:25 +0400575
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200576 for (i = 0; i < ap->num_pages; i++) {
Miklos Szeredi8fba54a2016-08-24 18:17:04 +0200577 if (should_dirty)
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200578 set_page_dirty_lock(ap->pages[i]);
579 put_page(ap->pages[i]);
Maxim Patlasov187c5c32012-12-14 19:20:25 +0400580 }
581}
582
Seth Forshee744742d2016-03-11 10:35:34 -0600583static void fuse_io_release(struct kref *kref)
584{
585 kfree(container_of(kref, struct fuse_io_priv, refcnt));
586}
587
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100588static ssize_t fuse_get_res_by_io(struct fuse_io_priv *io)
589{
590 if (io->err)
591 return io->err;
592
593 if (io->bytes >= 0 && io->write)
594 return -EIO;
595
596 return io->bytes < 0 ? io->size : io->bytes;
597}
598
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400599/**
600 * In case of short read, the caller sets 'pos' to the position of
601 * actual end of fuse request in IO request. Otherwise, if bytes_requested
602 * == bytes_transferred or rw == WRITE, the caller sets 'pos' to -1.
603 *
604 * An example:
605 * User requested DIO read of 64K. It was splitted into two 32K fuse requests,
606 * both submitted asynchronously. The first of them was ACKed by userspace as
607 * fully completed (req->out.args[0].size == 32K) resulting in pos == -1. The
608 * second request was ACKed as short, e.g. only 1K was read, resulting in
609 * pos == 33K.
610 *
611 * Thus, when all fuse requests are completed, the minimal non-negative 'pos'
612 * will be equal to the length of the longest contiguous fragment of
613 * transferred data starting from the beginning of IO request.
614 */
615static void fuse_aio_complete(struct fuse_io_priv *io, int err, ssize_t pos)
616{
617 int left;
618
619 spin_lock(&io->lock);
620 if (err)
621 io->err = io->err ? : err;
622 else if (pos >= 0 && (io->bytes < 0 || pos < io->bytes))
623 io->bytes = pos;
624
625 left = --io->reqs;
Ashish Sangwan7879c4e2016-04-07 17:18:11 +0530626 if (!left && io->blocking)
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100627 complete(io->done);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400628 spin_unlock(&io->lock);
629
Ashish Sangwan7879c4e2016-04-07 17:18:11 +0530630 if (!left && !io->blocking) {
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100631 ssize_t res = fuse_get_res_by_io(io);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400632
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100633 if (res >= 0) {
634 struct inode *inode = file_inode(io->iocb->ki_filp);
635 struct fuse_conn *fc = get_fuse_conn(inode);
636 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400637
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +0300638 spin_lock(&fi->lock);
Kirill Tkhai4510d862018-11-09 13:33:17 +0300639 fi->attr_version = atomic64_inc_return(&fc->attr_version);
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +0300640 spin_unlock(&fi->lock);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400641 }
642
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100643 io->iocb->ki_complete(io->iocb, res, 0);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400644 }
Seth Forshee744742d2016-03-11 10:35:34 -0600645
646 kref_put(&io->refcnt, fuse_io_release);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400647}
648
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200649static struct fuse_io_args *fuse_io_alloc(struct fuse_io_priv *io,
650 unsigned int npages)
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400651{
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200652 struct fuse_io_args *ia;
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400653
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200654 ia = kzalloc(sizeof(*ia), GFP_KERNEL);
655 if (ia) {
656 ia->io = io;
657 ia->ap.pages = fuse_pages_alloc(npages, GFP_KERNEL,
658 &ia->ap.descs);
659 if (!ia->ap.pages) {
660 kfree(ia);
661 ia = NULL;
662 }
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400663 }
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200664 return ia;
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400665}
666
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200667static void fuse_io_free(struct fuse_io_args *ia)
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400668{
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200669 kfree(ia->ap.pages);
670 kfree(ia);
671}
672
673static void fuse_aio_complete_req(struct fuse_conn *fc, struct fuse_args *args,
674 int err)
675{
676 struct fuse_io_args *ia = container_of(args, typeof(*ia), ap.args);
677 struct fuse_io_priv *io = ia->io;
678 ssize_t pos = -1;
679
680 fuse_release_user_pages(&ia->ap, io->should_dirty);
681
682 if (err) {
683 /* Nothing */
684 } else if (io->write) {
685 if (ia->write.out.size > ia->write.in.size) {
686 err = -EIO;
687 } else if (ia->write.in.size != ia->write.out.size) {
688 pos = ia->write.in.offset - io->offset +
689 ia->write.out.size;
690 }
691 } else {
692 u32 outsize = args->out_args[0].size;
693
694 if (ia->read.in.size != outsize)
695 pos = ia->read.in.offset - io->offset + outsize;
696 }
697
698 fuse_aio_complete(io, err, pos);
699 fuse_io_free(ia);
700}
701
702static ssize_t fuse_async_req_send(struct fuse_conn *fc,
703 struct fuse_io_args *ia, size_t num_bytes)
704{
705 ssize_t err;
706 struct fuse_io_priv *io = ia->io;
707
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400708 spin_lock(&io->lock);
Seth Forshee744742d2016-03-11 10:35:34 -0600709 kref_get(&io->refcnt);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400710 io->size += num_bytes;
711 io->reqs++;
712 spin_unlock(&io->lock);
713
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200714 ia->ap.args.end = fuse_aio_complete_req;
715 err = fuse_simple_background(fc, &ia->ap.args, GFP_KERNEL);
Miklos Szeredif1ebdef2019-11-25 20:48:46 +0100716 if (err)
717 fuse_aio_complete_req(fc, &ia->ap.args, err);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400718
Miklos Szeredif1ebdef2019-11-25 20:48:46 +0100719 return num_bytes;
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400720}
721
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200722static ssize_t fuse_send_read(struct fuse_io_args *ia, loff_t pos, size_t count,
723 fl_owner_t owner)
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700724{
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200725 struct file *file = ia->io->iocb->ki_filp;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200726 struct fuse_file *ff = file->private_data;
727 struct fuse_conn *fc = ff->fc;
Miklos Szeredif3332112007-10-18 03:07:04 -0700728
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200729 fuse_read_args_fill(ia, file, pos, count, FUSE_READ);
Miklos Szeredif3332112007-10-18 03:07:04 -0700730 if (owner != NULL) {
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200731 ia->read.in.read_flags |= FUSE_READ_LOCKOWNER;
732 ia->read.in.lock_owner = fuse_lock_owner_id(fc, owner);
Miklos Szeredif3332112007-10-18 03:07:04 -0700733 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400734
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200735 if (ia->io->async)
736 return fuse_async_req_send(fc, ia, count);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400737
Miklos Szeredi45ac96e2019-09-10 15:04:10 +0200738 return fuse_simple_request(fc, &ia->ap.args);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700739}
740
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700741static void fuse_read_update_size(struct inode *inode, loff_t size,
742 u64 attr_ver)
743{
744 struct fuse_conn *fc = get_fuse_conn(inode);
745 struct fuse_inode *fi = get_fuse_inode(inode);
746
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +0300747 spin_lock(&fi->lock);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +0400748 if (attr_ver == fi->attr_version && size < inode->i_size &&
749 !test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
Kirill Tkhai4510d862018-11-09 13:33:17 +0300750 fi->attr_version = atomic64_inc_return(&fc->attr_version);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700751 i_size_write(inode, size);
752 }
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +0300753 spin_unlock(&fi->lock);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700754}
755
Miklos Szeredia0d45d82019-09-10 15:04:09 +0200756static void fuse_short_read(struct inode *inode, u64 attr_ver, size_t num_read,
Miklos Szeredi134831e2019-09-10 15:04:10 +0200757 struct fuse_args_pages *ap)
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400758{
Pavel Emelyanov83732002013-10-10 17:10:46 +0400759 struct fuse_conn *fc = get_fuse_conn(inode);
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400760
Pavel Emelyanov83732002013-10-10 17:10:46 +0400761 if (fc->writeback_cache) {
762 /*
763 * A hole in a file. Some data after the hole are in page cache,
764 * but have not reached the client fs yet. So, the hole is not
765 * present there.
766 */
767 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300768 int start_idx = num_read >> PAGE_SHIFT;
769 size_t off = num_read & (PAGE_SIZE - 1);
Pavel Emelyanov83732002013-10-10 17:10:46 +0400770
Miklos Szeredi134831e2019-09-10 15:04:10 +0200771 for (i = start_idx; i < ap->num_pages; i++) {
772 zero_user_segment(ap->pages[i], off, PAGE_SIZE);
Pavel Emelyanov83732002013-10-10 17:10:46 +0400773 off = 0;
774 }
775 } else {
Miklos Szeredi134831e2019-09-10 15:04:10 +0200776 loff_t pos = page_offset(ap->pages[0]) + num_read;
Pavel Emelyanov83732002013-10-10 17:10:46 +0400777 fuse_read_update_size(inode, pos, attr_ver);
778 }
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400779}
780
Maxim Patlasov482fce52013-10-10 17:11:25 +0400781static int fuse_do_readpage(struct file *file, struct page *page)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700782{
783 struct inode *inode = page->mapping->host;
784 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700785 loff_t pos = page_offset(page);
Miklos Szeredi00793ca2019-09-10 15:04:09 +0200786 struct fuse_page_desc desc = { .length = PAGE_SIZE };
787 struct fuse_io_args ia = {
788 .ap.args.page_zeroing = true,
789 .ap.args.out_pages = true,
790 .ap.num_pages = 1,
791 .ap.pages = &page,
792 .ap.descs = &desc,
793 };
794 ssize_t res;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700795 u64 attr_ver;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800796
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700797 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300798 * Page writeback can extend beyond the lifetime of the
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700799 * page-cache page, so make sure we read a properly synced
800 * page.
801 */
802 fuse_wait_on_page_writeback(inode, page->index);
803
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700804 attr_ver = fuse_get_attr_version(fc);
805
Miklos Szeredi2f139822020-02-06 16:39:28 +0100806 /* Don't overflow end offset */
807 if (pos + (desc.length - 1) == LLONG_MAX)
808 desc.length--;
809
Miklos Szeredi00793ca2019-09-10 15:04:09 +0200810 fuse_read_args_fill(&ia, file, pos, desc.length, FUSE_READ);
811 res = fuse_simple_request(fc, &ia.ap.args);
812 if (res < 0)
813 return res;
814 /*
815 * Short read means EOF. If file size is larger, truncate it
816 */
817 if (res < desc.length)
Miklos Szeredi134831e2019-09-10 15:04:10 +0200818 fuse_short_read(inode, attr_ver, res, &ia.ap);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700819
Miklos Szeredi00793ca2019-09-10 15:04:09 +0200820 SetPageUptodate(page);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700821
Miklos Szeredi00793ca2019-09-10 15:04:09 +0200822 return 0;
Maxim Patlasov482fce52013-10-10 17:11:25 +0400823}
824
825static int fuse_readpage(struct file *file, struct page *page)
826{
827 struct inode *inode = page->mapping->host;
828 int err;
829
830 err = -EIO;
831 if (is_bad_inode(inode))
832 goto out;
833
834 err = fuse_do_readpage(file, page);
Andrew Gallagher451418f2013-11-05 03:55:43 -0800835 fuse_invalidate_atime(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700836 out:
837 unlock_page(page);
838 return err;
839}
840
Miklos Szeredi134831e2019-09-10 15:04:10 +0200841static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_args *args,
842 int err)
Miklos Szeredidb50b962005-09-09 13:10:33 -0700843{
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800844 int i;
Miklos Szeredi134831e2019-09-10 15:04:10 +0200845 struct fuse_io_args *ia = container_of(args, typeof(*ia), ap.args);
846 struct fuse_args_pages *ap = &ia->ap;
847 size_t count = ia->read.in.size;
848 size_t num_read = args->out_args[0].size;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200849 struct address_space *mapping = NULL;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800850
Miklos Szeredi134831e2019-09-10 15:04:10 +0200851 for (i = 0; mapping == NULL && i < ap->num_pages; i++)
852 mapping = ap->pages[i]->mapping;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200853
854 if (mapping) {
855 struct inode *inode = mapping->host;
856
857 /*
858 * Short read means EOF. If file size is larger, truncate it
859 */
Miklos Szeredi134831e2019-09-10 15:04:10 +0200860 if (!err && num_read < count)
861 fuse_short_read(inode, ia->read.attr_ver, num_read, ap);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200862
Andrew Gallagher451418f2013-11-05 03:55:43 -0800863 fuse_invalidate_atime(inode);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700864 }
865
Miklos Szeredi134831e2019-09-10 15:04:10 +0200866 for (i = 0; i < ap->num_pages; i++) {
867 struct page *page = ap->pages[i];
868
869 if (!err)
Miklos Szeredidb50b962005-09-09 13:10:33 -0700870 SetPageUptodate(page);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800871 else
872 SetPageError(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700873 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300874 put_page(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700875 }
Miklos Szeredi134831e2019-09-10 15:04:10 +0200876 if (ia->ff)
877 fuse_file_put(ia->ff, false, false);
878
879 fuse_io_free(ia);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800880}
881
Miklos Szeredi134831e2019-09-10 15:04:10 +0200882static void fuse_send_readpages(struct fuse_io_args *ia, struct file *file)
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800883{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200884 struct fuse_file *ff = file->private_data;
885 struct fuse_conn *fc = ff->fc;
Miklos Szeredi134831e2019-09-10 15:04:10 +0200886 struct fuse_args_pages *ap = &ia->ap;
887 loff_t pos = page_offset(ap->pages[0]);
888 size_t count = ap->num_pages << PAGE_SHIFT;
Miklos Szeredi7df1e982020-01-16 11:09:36 +0100889 ssize_t res;
Miklos Szeredi134831e2019-09-10 15:04:10 +0200890 int err;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200891
Miklos Szeredi134831e2019-09-10 15:04:10 +0200892 ap->args.out_pages = true;
893 ap->args.page_zeroing = true;
894 ap->args.page_replace = true;
Miklos Szeredi2f139822020-02-06 16:39:28 +0100895
896 /* Don't overflow end offset */
897 if (pos + (count - 1) == LLONG_MAX) {
898 count--;
899 ap->descs[ap->num_pages - 1].length--;
900 }
901 WARN_ON((loff_t) (pos + count) < 0);
902
Miklos Szeredi134831e2019-09-10 15:04:10 +0200903 fuse_read_args_fill(ia, file, pos, count, FUSE_READ);
904 ia->read.attr_ver = fuse_get_attr_version(fc);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800905 if (fc->async_read) {
Miklos Szeredi134831e2019-09-10 15:04:10 +0200906 ia->ff = fuse_file_get(ff);
907 ap->args.end = fuse_readpages_end;
908 err = fuse_simple_background(fc, &ap->args, GFP_KERNEL);
909 if (!err)
910 return;
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800911 } else {
Miklos Szeredi7df1e982020-01-16 11:09:36 +0100912 res = fuse_simple_request(fc, &ap->args);
913 err = res < 0 ? res : 0;
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800914 }
Miklos Szeredi134831e2019-09-10 15:04:10 +0200915 fuse_readpages_end(fc, &ap->args, err);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700916}
917
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700918struct fuse_fill_data {
Miklos Szeredi134831e2019-09-10 15:04:10 +0200919 struct fuse_io_args *ia;
Miklos Szeredia6643092007-11-28 16:22:00 -0800920 struct file *file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700921 struct inode *inode;
Miklos Szeredi134831e2019-09-10 15:04:10 +0200922 unsigned int nr_pages;
923 unsigned int max_pages;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700924};
925
926static int fuse_readpages_fill(void *_data, struct page *page)
927{
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700928 struct fuse_fill_data *data = _data;
Miklos Szeredi134831e2019-09-10 15:04:10 +0200929 struct fuse_io_args *ia = data->ia;
930 struct fuse_args_pages *ap = &ia->ap;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700931 struct inode *inode = data->inode;
932 struct fuse_conn *fc = get_fuse_conn(inode);
933
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700934 fuse_wait_on_page_writeback(inode, page->index);
935
Miklos Szeredi134831e2019-09-10 15:04:10 +0200936 if (ap->num_pages &&
937 (ap->num_pages == fc->max_pages ||
938 (ap->num_pages + 1) * PAGE_SIZE > fc->max_read ||
939 ap->pages[ap->num_pages - 1]->index + 1 != page->index)) {
940 data->max_pages = min_t(unsigned int, data->nr_pages,
941 fc->max_pages);
942 fuse_send_readpages(ia, data->file);
943 data->ia = ia = fuse_io_alloc(NULL, data->max_pages);
944 if (!ia) {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700945 unlock_page(page);
Miklos Szeredi134831e2019-09-10 15:04:10 +0200946 return -ENOMEM;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700947 }
Miklos Szeredi134831e2019-09-10 15:04:10 +0200948 ap = &ia->ap;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700949 }
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400950
Miklos Szeredi134831e2019-09-10 15:04:10 +0200951 if (WARN_ON(ap->num_pages >= data->max_pages)) {
Kirill Tkhai109728c2018-07-19 15:49:39 +0300952 unlock_page(page);
Miklos Szeredi134831e2019-09-10 15:04:10 +0200953 fuse_io_free(ia);
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400954 return -EIO;
955 }
956
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300957 get_page(page);
Miklos Szeredi134831e2019-09-10 15:04:10 +0200958 ap->pages[ap->num_pages] = page;
959 ap->descs[ap->num_pages].length = PAGE_SIZE;
960 ap->num_pages++;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400961 data->nr_pages--;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700962 return 0;
963}
964
965static int fuse_readpages(struct file *file, struct address_space *mapping,
966 struct list_head *pages, unsigned nr_pages)
967{
968 struct inode *inode = mapping->host;
969 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700970 struct fuse_fill_data data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700971 int err;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800972
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700973 err = -EIO;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800974 if (is_bad_inode(inode))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800975 goto out;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800976
Miklos Szeredia6643092007-11-28 16:22:00 -0800977 data.file = file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700978 data.inode = inode;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400979 data.nr_pages = nr_pages;
Miklos Szeredi134831e2019-09-10 15:04:10 +0200980 data.max_pages = min_t(unsigned int, nr_pages, fc->max_pages);
981;
982 data.ia = fuse_io_alloc(NULL, data.max_pages);
983 err = -ENOMEM;
984 if (!data.ia)
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800985 goto out;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700986
987 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700988 if (!err) {
Miklos Szeredi134831e2019-09-10 15:04:10 +0200989 if (data.ia->ap.num_pages)
990 fuse_send_readpages(data.ia, file);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700991 else
Miklos Szeredi134831e2019-09-10 15:04:10 +0200992 fuse_io_free(data.ia);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700993 }
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800994out:
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700995 return err;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700996}
997
Miklos Szeredi55752a3a2019-01-24 10:40:17 +0100998static ssize_t fuse_cache_read_iter(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800999{
1000 struct inode *inode = iocb->ki_filp->f_mapping->host;
Brian Fostera8894272012-07-16 15:23:50 -04001001 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredibcb4be82007-11-28 16:21:59 -08001002
Brian Fostera8894272012-07-16 15:23:50 -04001003 /*
1004 * In auto invalidate mode, always update attributes on read.
1005 * Otherwise, only update if we attempt to read past EOF (to ensure
1006 * i_size is up to date).
1007 */
1008 if (fc->auto_inval_data ||
Al Viro37c20f12014-04-02 14:47:09 -04001009 (iocb->ki_pos + iov_iter_count(to) > i_size_read(inode))) {
Miklos Szeredibcb4be82007-11-28 16:21:59 -08001010 int err;
Miklos Szeredi5b97eea2017-09-12 16:57:54 +02001011 err = fuse_update_attributes(inode, iocb->ki_filp);
Miklos Szeredibcb4be82007-11-28 16:21:59 -08001012 if (err)
1013 return err;
1014 }
1015
Al Viro37c20f12014-04-02 14:47:09 -04001016 return generic_file_read_iter(iocb, to);
Miklos Szeredibcb4be82007-11-28 16:21:59 -08001017}
1018
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001019static void fuse_write_args_fill(struct fuse_io_args *ia, struct fuse_file *ff,
1020 loff_t pos, size_t count)
1021{
1022 struct fuse_args *args = &ia->ap.args;
1023
1024 ia->write.in.fh = ff->fh;
1025 ia->write.in.offset = pos;
1026 ia->write.in.size = count;
1027 args->opcode = FUSE_WRITE;
1028 args->nodeid = ff->nodeid;
1029 args->in_numargs = 2;
1030 if (ff->fc->minor < 9)
1031 args->in_args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
1032 else
1033 args->in_args[0].size = sizeof(ia->write.in);
1034 args->in_args[0].value = &ia->write.in;
1035 args->in_args[1].size = count;
1036 args->out_numargs = 1;
1037 args->out_args[0].size = sizeof(ia->write.out);
1038 args->out_args[0].value = &ia->write.out;
1039}
1040
1041static unsigned int fuse_write_flags(struct kiocb *iocb)
1042{
1043 unsigned int flags = iocb->ki_filp->f_flags;
1044
1045 if (iocb->ki_flags & IOCB_DSYNC)
1046 flags |= O_DSYNC;
1047 if (iocb->ki_flags & IOCB_SYNC)
1048 flags |= O_SYNC;
1049
1050 return flags;
1051}
1052
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001053static ssize_t fuse_send_write(struct fuse_io_args *ia, loff_t pos,
1054 size_t count, fl_owner_t owner)
Miklos Szeredib25e82e2007-10-18 03:07:03 -07001055{
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001056 struct kiocb *iocb = ia->io->iocb;
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001057 struct file *file = iocb->ki_filp;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001058 struct fuse_file *ff = file->private_data;
1059 struct fuse_conn *fc = ff->fc;
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001060 struct fuse_write_in *inarg = &ia->write.in;
1061 ssize_t err;
Miklos Szeredi2d698b02009-04-28 16:56:36 +02001062
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001063 fuse_write_args_fill(ia, ff, pos, count);
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001064 inarg->flags = fuse_write_flags(iocb);
Miklos Szeredif3332112007-10-18 03:07:04 -07001065 if (owner != NULL) {
Miklos Szeredif3332112007-10-18 03:07:04 -07001066 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
1067 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
1068 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001069
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001070 if (ia->io->async)
1071 return fuse_async_req_send(fc, ia, count);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001072
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001073 err = fuse_simple_request(fc, &ia->ap.args);
1074 if (!err && ia->write.out.size > count)
1075 err = -EIO;
1076
1077 return err ?: ia->write.out.size;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001078}
1079
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001080bool fuse_write_update_size(struct inode *inode, loff_t pos)
Miklos Szeredi854512e2008-04-30 00:54:41 -07001081{
1082 struct fuse_conn *fc = get_fuse_conn(inode);
1083 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001084 bool ret = false;
Miklos Szeredi854512e2008-04-30 00:54:41 -07001085
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001086 spin_lock(&fi->lock);
Kirill Tkhai4510d862018-11-09 13:33:17 +03001087 fi->attr_version = atomic64_inc_return(&fc->attr_version);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001088 if (pos > inode->i_size) {
Miklos Szeredi854512e2008-04-30 00:54:41 -07001089 i_size_write(inode, pos);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001090 ret = true;
1091 }
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001092 spin_unlock(&fi->lock);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001093
1094 return ret;
Miklos Szeredi854512e2008-04-30 00:54:41 -07001095}
1096
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001097static ssize_t fuse_send_write_pages(struct fuse_io_args *ia,
1098 struct kiocb *iocb, struct inode *inode,
1099 loff_t pos, size_t count)
Nick Pigginea9b9902008-04-30 00:54:42 -07001100{
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001101 struct fuse_args_pages *ap = &ia->ap;
1102 struct file *file = iocb->ki_filp;
1103 struct fuse_file *ff = file->private_data;
1104 struct fuse_conn *fc = ff->fc;
1105 unsigned int offset, i;
1106 int err;
Nick Pigginea9b9902008-04-30 00:54:42 -07001107
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001108 for (i = 0; i < ap->num_pages; i++)
1109 fuse_wait_on_page_writeback(inode, ap->pages[i]->index);
Nick Pigginea9b9902008-04-30 00:54:42 -07001110
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001111 fuse_write_args_fill(ia, ff, pos, count);
1112 ia->write.in.flags = fuse_write_flags(iocb);
Nick Pigginea9b9902008-04-30 00:54:42 -07001113
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001114 err = fuse_simple_request(fc, &ap->args);
Miklos Szeredi8aab3362019-11-12 11:49:04 +01001115 if (!err && ia->write.out.size > count)
1116 err = -EIO;
Nick Pigginea9b9902008-04-30 00:54:42 -07001117
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001118 offset = ap->descs[0].offset;
1119 count = ia->write.out.size;
1120 for (i = 0; i < ap->num_pages; i++) {
1121 struct page *page = ap->pages[i];
1122
1123 if (!err && !offset && count >= PAGE_SIZE)
Nick Pigginea9b9902008-04-30 00:54:42 -07001124 SetPageUptodate(page);
1125
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001126 if (count > PAGE_SIZE - offset)
1127 count -= PAGE_SIZE - offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001128 else
1129 count = 0;
1130 offset = 0;
1131
1132 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001133 put_page(page);
Nick Pigginea9b9902008-04-30 00:54:42 -07001134 }
1135
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001136 return err;
Nick Pigginea9b9902008-04-30 00:54:42 -07001137}
1138
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001139static ssize_t fuse_fill_write_pages(struct fuse_args_pages *ap,
1140 struct address_space *mapping,
1141 struct iov_iter *ii, loff_t pos,
1142 unsigned int max_pages)
Nick Pigginea9b9902008-04-30 00:54:42 -07001143{
1144 struct fuse_conn *fc = get_fuse_conn(mapping->host);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001145 unsigned offset = pos & (PAGE_SIZE - 1);
Nick Pigginea9b9902008-04-30 00:54:42 -07001146 size_t count = 0;
1147 int err;
1148
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001149 ap->args.in_pages = true;
1150 ap->descs[0].offset = offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001151
1152 do {
1153 size_t tmp;
1154 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001155 pgoff_t index = pos >> PAGE_SHIFT;
1156 size_t bytes = min_t(size_t, PAGE_SIZE - offset,
Nick Pigginea9b9902008-04-30 00:54:42 -07001157 iov_iter_count(ii));
1158
1159 bytes = min_t(size_t, bytes, fc->max_write - count);
1160
1161 again:
1162 err = -EFAULT;
1163 if (iov_iter_fault_in_readable(ii, bytes))
1164 break;
1165
1166 err = -ENOMEM;
Nick Piggin54566b22009-01-04 12:00:53 -08001167 page = grab_cache_page_write_begin(mapping, index, 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001168 if (!page)
1169 break;
1170
anfei zhou931e80e2010-02-02 13:44:02 -08001171 if (mapping_writably_mapped(mapping))
1172 flush_dcache_page(page);
1173
Nick Pigginea9b9902008-04-30 00:54:42 -07001174 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
Nick Pigginea9b9902008-04-30 00:54:42 -07001175 flush_dcache_page(page);
1176
Roman Gushchin3ca81382015-10-12 16:33:44 +03001177 iov_iter_advance(ii, tmp);
Nick Pigginea9b9902008-04-30 00:54:42 -07001178 if (!tmp) {
1179 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001180 put_page(page);
Nick Pigginea9b9902008-04-30 00:54:42 -07001181 bytes = min(bytes, iov_iter_single_seg_count(ii));
1182 goto again;
1183 }
1184
1185 err = 0;
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001186 ap->pages[ap->num_pages] = page;
1187 ap->descs[ap->num_pages].length = tmp;
1188 ap->num_pages++;
Nick Pigginea9b9902008-04-30 00:54:42 -07001189
Nick Pigginea9b9902008-04-30 00:54:42 -07001190 count += tmp;
1191 pos += tmp;
1192 offset += tmp;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001193 if (offset == PAGE_SIZE)
Nick Pigginea9b9902008-04-30 00:54:42 -07001194 offset = 0;
1195
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -07001196 if (!fc->big_writes)
1197 break;
Nick Pigginea9b9902008-04-30 00:54:42 -07001198 } while (iov_iter_count(ii) && count < fc->max_write &&
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001199 ap->num_pages < max_pages && offset == 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001200
1201 return count > 0 ? count : err;
1202}
1203
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001204static inline unsigned int fuse_wr_pages(loff_t pos, size_t len,
1205 unsigned int max_pages)
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001206{
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001207 return min_t(unsigned int,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001208 ((pos + len - 1) >> PAGE_SHIFT) -
1209 (pos >> PAGE_SHIFT) + 1,
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001210 max_pages);
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001211}
1212
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001213static ssize_t fuse_perform_write(struct kiocb *iocb,
Nick Pigginea9b9902008-04-30 00:54:42 -07001214 struct address_space *mapping,
1215 struct iov_iter *ii, loff_t pos)
1216{
1217 struct inode *inode = mapping->host;
1218 struct fuse_conn *fc = get_fuse_conn(inode);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001219 struct fuse_inode *fi = get_fuse_inode(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001220 int err = 0;
1221 ssize_t res = 0;
1222
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001223 if (inode->i_size < pos + iov_iter_count(ii))
1224 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1225
Nick Pigginea9b9902008-04-30 00:54:42 -07001226 do {
Nick Pigginea9b9902008-04-30 00:54:42 -07001227 ssize_t count;
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001228 struct fuse_io_args ia = {};
1229 struct fuse_args_pages *ap = &ia.ap;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001230 unsigned int nr_pages = fuse_wr_pages(pos, iov_iter_count(ii),
1231 fc->max_pages);
Nick Pigginea9b9902008-04-30 00:54:42 -07001232
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001233 ap->pages = fuse_pages_alloc(nr_pages, GFP_KERNEL, &ap->descs);
1234 if (!ap->pages) {
1235 err = -ENOMEM;
Nick Pigginea9b9902008-04-30 00:54:42 -07001236 break;
1237 }
1238
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001239 count = fuse_fill_write_pages(ap, mapping, ii, pos, nr_pages);
Nick Pigginea9b9902008-04-30 00:54:42 -07001240 if (count <= 0) {
1241 err = count;
1242 } else {
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001243 err = fuse_send_write_pages(&ia, iocb, inode,
1244 pos, count);
Nick Pigginea9b9902008-04-30 00:54:42 -07001245 if (!err) {
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001246 size_t num_written = ia.write.out.size;
1247
Nick Pigginea9b9902008-04-30 00:54:42 -07001248 res += num_written;
1249 pos += num_written;
1250
1251 /* break out of the loop on short write */
1252 if (num_written != count)
1253 err = -EIO;
1254 }
1255 }
Miklos Szeredi338f2e32019-09-10 15:04:09 +02001256 kfree(ap->pages);
Nick Pigginea9b9902008-04-30 00:54:42 -07001257 } while (!err && iov_iter_count(ii));
1258
1259 if (res > 0)
1260 fuse_write_update_size(inode, pos);
1261
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001262 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
Nick Pigginea9b9902008-04-30 00:54:42 -07001263 fuse_invalidate_attr(inode);
1264
1265 return res > 0 ? res : err;
1266}
1267
Miklos Szeredi55752a3a2019-01-24 10:40:17 +01001268static ssize_t fuse_cache_write_iter(struct kiocb *iocb, struct iov_iter *from)
Nick Pigginea9b9902008-04-30 00:54:42 -07001269{
1270 struct file *file = iocb->ki_filp;
1271 struct address_space *mapping = file->f_mapping;
Nick Pigginea9b9902008-04-30 00:54:42 -07001272 ssize_t written = 0;
Anand Avati4273b792012-02-17 12:46:25 -05001273 ssize_t written_buffered = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001274 struct inode *inode = mapping->host;
1275 ssize_t err;
Anand Avati4273b792012-02-17 12:46:25 -05001276 loff_t endbyte = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001277
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001278 if (get_fuse_conn(inode)->writeback_cache) {
1279 /* Update size (EOF optimization) and mode (SUID clearing) */
Miklos Szeredi5b97eea2017-09-12 16:57:54 +02001280 err = fuse_update_attributes(mapping->host, file);
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001281 if (err)
1282 return err;
1283
Al Viro84c3d552014-04-03 14:33:23 -04001284 return generic_file_write_iter(iocb, from);
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001285 }
1286
Al Viro59551022016-01-22 15:40:57 -05001287 inode_lock(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001288
1289 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001290 current->backing_dev_info = inode_to_bdi(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001291
Al Viro3309dd02015-04-09 12:55:47 -04001292 err = generic_write_checks(iocb, from);
1293 if (err <= 0)
Nick Pigginea9b9902008-04-30 00:54:42 -07001294 goto out;
1295
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001296 err = file_remove_privs(file);
Nick Pigginea9b9902008-04-30 00:54:42 -07001297 if (err)
1298 goto out;
1299
Josef Bacikc3b2da32012-03-26 09:59:21 -04001300 err = file_update_time(file);
1301 if (err)
1302 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001303
Al Viro2ba48ce2015-04-09 13:52:01 -04001304 if (iocb->ki_flags & IOCB_DIRECT) {
Al Viro3309dd02015-04-09 12:55:47 -04001305 loff_t pos = iocb->ki_pos;
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001306 written = generic_file_direct_write(iocb, from);
Al Viro84c3d552014-04-03 14:33:23 -04001307 if (written < 0 || !iov_iter_count(from))
Anand Avati4273b792012-02-17 12:46:25 -05001308 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001309
Anand Avati4273b792012-02-17 12:46:25 -05001310 pos += written;
Anand Avati4273b792012-02-17 12:46:25 -05001311
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001312 written_buffered = fuse_perform_write(iocb, mapping, from, pos);
Anand Avati4273b792012-02-17 12:46:25 -05001313 if (written_buffered < 0) {
1314 err = written_buffered;
1315 goto out;
1316 }
1317 endbyte = pos + written_buffered - 1;
1318
1319 err = filemap_write_and_wait_range(file->f_mapping, pos,
1320 endbyte);
1321 if (err)
1322 goto out;
1323
1324 invalidate_mapping_pages(file->f_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001325 pos >> PAGE_SHIFT,
1326 endbyte >> PAGE_SHIFT);
Anand Avati4273b792012-02-17 12:46:25 -05001327
1328 written += written_buffered;
1329 iocb->ki_pos = pos + written_buffered;
1330 } else {
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001331 written = fuse_perform_write(iocb, mapping, from, iocb->ki_pos);
Anand Avati4273b792012-02-17 12:46:25 -05001332 if (written >= 0)
Al Viro3309dd02015-04-09 12:55:47 -04001333 iocb->ki_pos += written;
Anand Avati4273b792012-02-17 12:46:25 -05001334 }
Nick Pigginea9b9902008-04-30 00:54:42 -07001335out:
1336 current->backing_dev_info = NULL;
Al Viro59551022016-01-22 15:40:57 -05001337 inode_unlock(inode);
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001338 if (written > 0)
1339 written = generic_write_sync(iocb, written);
Nick Pigginea9b9902008-04-30 00:54:42 -07001340
1341 return written ? written : err;
1342}
1343
Miklos Szeredi093f38a2019-09-10 15:04:09 +02001344static inline void fuse_page_descs_length_init(struct fuse_page_desc *descs,
1345 unsigned int index,
1346 unsigned int nr_pages)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001347{
1348 int i;
1349
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001350 for (i = index; i < index + nr_pages; i++)
Miklos Szeredi093f38a2019-09-10 15:04:09 +02001351 descs[i].length = PAGE_SIZE - descs[i].offset;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001352}
1353
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001354static inline unsigned long fuse_get_user_addr(const struct iov_iter *ii)
1355{
1356 return (unsigned long)ii->iov->iov_base + ii->iov_offset;
1357}
1358
1359static inline size_t fuse_get_frag_size(const struct iov_iter *ii,
1360 size_t max_size)
1361{
1362 return min(iov_iter_single_seg_count(ii), max_size);
1363}
1364
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001365static int fuse_get_user_pages(struct fuse_args_pages *ap, struct iov_iter *ii,
1366 size_t *nbytesp, int write,
1367 unsigned int max_pages)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001368{
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001369 size_t nbytes = 0; /* # bytes already packed in req */
Ashish Samant742f9922016-03-14 21:57:35 -07001370 ssize_t ret = 0;
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001371
Miklos Szeredif4975c62009-04-02 14:25:34 +02001372 /* Special case for kernel I/O: can copy directly into the buffer */
David Howells00e23702018-10-22 13:07:28 +01001373 if (iov_iter_is_kvec(ii)) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001374 unsigned long user_addr = fuse_get_user_addr(ii);
1375 size_t frag_size = fuse_get_frag_size(ii, *nbytesp);
1376
Miklos Szeredif4975c62009-04-02 14:25:34 +02001377 if (write)
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001378 ap->args.in_args[1].value = (void *) user_addr;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001379 else
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001380 ap->args.out_args[0].value = (void *) user_addr;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001381
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001382 iov_iter_advance(ii, frag_size);
1383 *nbytesp = frag_size;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001384 return 0;
1385 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001386
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001387 while (nbytes < *nbytesp && ap->num_pages < max_pages) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001388 unsigned npages;
Al Virof67da302014-03-19 01:16:16 -04001389 size_t start;
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001390 ret = iov_iter_get_pages(ii, &ap->pages[ap->num_pages],
Miklos Szeredi2c809292014-09-24 17:09:11 +02001391 *nbytesp - nbytes,
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001392 max_pages - ap->num_pages,
Al Viroc7f38882014-06-18 20:34:33 -04001393 &start);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001394 if (ret < 0)
Ashish Samant742f9922016-03-14 21:57:35 -07001395 break;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001396
Al Viroc9c37e22014-03-16 16:08:30 -04001397 iov_iter_advance(ii, ret);
1398 nbytes += ret;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001399
Al Viroc9c37e22014-03-16 16:08:30 -04001400 ret += start;
1401 npages = (ret + PAGE_SIZE - 1) / PAGE_SIZE;
1402
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001403 ap->descs[ap->num_pages].offset = start;
1404 fuse_page_descs_length_init(ap->descs, ap->num_pages, npages);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001405
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001406 ap->num_pages += npages;
1407 ap->descs[ap->num_pages - 1].length -=
Al Viroc9c37e22014-03-16 16:08:30 -04001408 (PAGE_SIZE - ret) & (PAGE_SIZE - 1);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001409 }
Miklos Szeredif4975c62009-04-02 14:25:34 +02001410
1411 if (write)
zhengbincabdb4f2020-01-14 20:39:45 +08001412 ap->args.in_pages = true;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001413 else
zhengbincabdb4f2020-01-14 20:39:45 +08001414 ap->args.out_pages = true;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001415
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001416 *nbytesp = nbytes;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001417
Ashish Samant2c932d42016-03-25 10:53:41 -07001418 return ret < 0 ? ret : 0;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001419}
1420
Al Virod22a9432014-03-16 15:50:47 -04001421ssize_t fuse_direct_io(struct fuse_io_priv *io, struct iov_iter *iter,
1422 loff_t *ppos, int flags)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001423{
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001424 int write = flags & FUSE_DIO_WRITE;
1425 int cuse = flags & FUSE_DIO_CUSE;
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001426 struct file *file = io->iocb->ki_filp;
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001427 struct inode *inode = file->f_mapping->host;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001428 struct fuse_file *ff = file->private_data;
1429 struct fuse_conn *fc = ff->fc;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001430 size_t nmax = write ? fc->max_write : fc->max_read;
1431 loff_t pos = *ppos;
Al Virod22a9432014-03-16 15:50:47 -04001432 size_t count = iov_iter_count(iter);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001433 pgoff_t idx_from = pos >> PAGE_SHIFT;
1434 pgoff_t idx_to = (pos + count - 1) >> PAGE_SHIFT;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001435 ssize_t res = 0;
Ashish Samant742f9922016-03-14 21:57:35 -07001436 int err = 0;
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001437 struct fuse_io_args *ia;
1438 unsigned int max_pages;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001439
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001440 max_pages = iov_iter_npages(iter, fc->max_pages);
1441 ia = fuse_io_alloc(io, max_pages);
1442 if (!ia)
1443 return -ENOMEM;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001444
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001445 ia->io = io;
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001446 if (!cuse && fuse_range_is_writeback(inode, idx_from, idx_to)) {
1447 if (!write)
Al Viro59551022016-01-22 15:40:57 -05001448 inode_lock(inode);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001449 fuse_sync_writes(inode);
1450 if (!write)
Al Viro59551022016-01-22 15:40:57 -05001451 inode_unlock(inode);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001452 }
1453
Ashish Samant61c12b42017-07-12 19:26:58 -07001454 io->should_dirty = !write && iter_is_iovec(iter);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001455 while (count) {
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001456 ssize_t nres;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001457 fl_owner_t owner = current->files;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001458 size_t nbytes = min(count, nmax);
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001459
1460 err = fuse_get_user_pages(&ia->ap, iter, &nbytes, write,
1461 max_pages);
Ashish Samant742f9922016-03-14 21:57:35 -07001462 if (err && !nbytes)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001463 break;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001464
Miklos Szeredi4a2abf92019-05-27 09:08:12 +02001465 if (write) {
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001466 if (!capable(CAP_FSETID))
1467 ia->write.in.write_flags |= FUSE_WRITE_KILL_PRIV;
Miklos Szeredi4a2abf92019-05-27 09:08:12 +02001468
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001469 nres = fuse_send_write(ia, pos, nbytes, owner);
Miklos Szeredi4a2abf92019-05-27 09:08:12 +02001470 } else {
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001471 nres = fuse_send_read(ia, pos, nbytes, owner);
Miklos Szeredi4a2abf92019-05-27 09:08:12 +02001472 }
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001473
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001474 if (!io->async || nres < 0) {
1475 fuse_release_user_pages(&ia->ap, io->should_dirty);
1476 fuse_io_free(ia);
1477 }
1478 ia = NULL;
1479 if (nres < 0) {
Miklos Szeredif658ade2020-02-06 16:39:28 +01001480 iov_iter_revert(iter, nbytes);
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001481 err = nres;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001482 break;
1483 }
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001484 WARN_ON(nres > nbytes);
1485
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001486 count -= nres;
1487 res += nres;
1488 pos += nres;
Miklos Szeredif658ade2020-02-06 16:39:28 +01001489 if (nres != nbytes) {
1490 iov_iter_revert(iter, nbytes - nres);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001491 break;
Miklos Szeredif658ade2020-02-06 16:39:28 +01001492 }
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001493 if (count) {
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001494 max_pages = iov_iter_npages(iter, fc->max_pages);
1495 ia = fuse_io_alloc(io, max_pages);
1496 if (!ia)
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001497 break;
1498 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001499 }
Miklos Szeredi45ac96e2019-09-10 15:04:10 +02001500 if (ia)
1501 fuse_io_free(ia);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001502 if (res > 0)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001503 *ppos = pos;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001504
Ashish Samant742f9922016-03-14 21:57:35 -07001505 return res > 0 ? res : err;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001506}
Tejun Heo08cbf542009-04-14 10:54:53 +09001507EXPORT_SYMBOL_GPL(fuse_direct_io);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001508
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001509static ssize_t __fuse_direct_read(struct fuse_io_priv *io,
Al Virod22a9432014-03-16 15:50:47 -04001510 struct iov_iter *iter,
1511 loff_t *ppos)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001512{
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001513 ssize_t res;
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001514 struct inode *inode = file_inode(io->iocb->ki_filp);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001515
Al Virod22a9432014-03-16 15:50:47 -04001516 res = fuse_direct_io(io, iter, ppos, 0);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001517
Miklos Szeredi9a2eb242018-10-15 15:43:06 +02001518 fuse_invalidate_atime(inode);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001519
1520 return res;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001521}
1522
Martin Raiber23c94e12018-10-27 16:48:48 +00001523static ssize_t fuse_direct_IO(struct kiocb *iocb, struct iov_iter *iter);
1524
Al Viro153162632015-03-30 22:08:36 -04001525static ssize_t fuse_direct_read_iter(struct kiocb *iocb, struct iov_iter *to)
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001526{
Martin Raiber23c94e12018-10-27 16:48:48 +00001527 ssize_t res;
1528
1529 if (!is_sync_kiocb(iocb) && iocb->ki_flags & IOCB_DIRECT) {
Martin Raiber23c94e12018-10-27 16:48:48 +00001530 res = fuse_direct_IO(iocb, to);
1531 } else {
1532 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb);
1533
1534 res = __fuse_direct_read(&io, to, &iocb->ki_pos);
1535 }
1536
1537 return res;
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001538}
1539
Al Viro153162632015-03-30 22:08:36 -04001540static ssize_t fuse_direct_write_iter(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001541{
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001542 struct inode *inode = file_inode(iocb->ki_filp);
1543 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb);
Al Viro153162632015-03-30 22:08:36 -04001544 ssize_t res;
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001545
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001546 /* Don't allow parallel writes to the same file */
Al Viro59551022016-01-22 15:40:57 -05001547 inode_lock(inode);
Al Viro3309dd02015-04-09 12:55:47 -04001548 res = generic_write_checks(iocb, from);
Martin Raiber23c94e12018-10-27 16:48:48 +00001549 if (res > 0) {
1550 if (!is_sync_kiocb(iocb) && iocb->ki_flags & IOCB_DIRECT) {
1551 res = fuse_direct_IO(iocb, from);
1552 } else {
1553 res = fuse_direct_io(&io, from, &iocb->ki_pos,
1554 FUSE_DIO_WRITE);
1555 }
1556 }
Al Viro812408f2015-03-30 22:15:58 -04001557 fuse_invalidate_attr(inode);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04001558 if (res > 0)
Al Viro153162632015-03-30 22:08:36 -04001559 fuse_write_update_size(inode, iocb->ki_pos);
Al Viro59551022016-01-22 15:40:57 -05001560 inode_unlock(inode);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001561
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001562 return res;
1563}
1564
Miklos Szeredi55752a3a2019-01-24 10:40:17 +01001565static ssize_t fuse_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
1566{
Miklos Szeredi2f7b6f52019-01-24 10:40:17 +01001567 struct file *file = iocb->ki_filp;
1568 struct fuse_file *ff = file->private_data;
1569
1570 if (is_bad_inode(file_inode(file)))
1571 return -EIO;
Miklos Szeredi55752a3a2019-01-24 10:40:17 +01001572
1573 if (!(ff->open_flags & FOPEN_DIRECT_IO))
1574 return fuse_cache_read_iter(iocb, to);
1575 else
1576 return fuse_direct_read_iter(iocb, to);
1577}
1578
1579static ssize_t fuse_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
1580{
Miklos Szeredi2f7b6f52019-01-24 10:40:17 +01001581 struct file *file = iocb->ki_filp;
1582 struct fuse_file *ff = file->private_data;
1583
1584 if (is_bad_inode(file_inode(file)))
1585 return -EIO;
Miklos Szeredi55752a3a2019-01-24 10:40:17 +01001586
1587 if (!(ff->open_flags & FOPEN_DIRECT_IO))
1588 return fuse_cache_write_iter(iocb, from);
1589 else
1590 return fuse_direct_write_iter(iocb, from);
1591}
1592
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001593static void fuse_writepage_free(struct fuse_writepage_args *wpa)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001594{
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001595 struct fuse_args_pages *ap = &wpa->ia.ap;
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001596 int i;
1597
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001598 for (i = 0; i < ap->num_pages; i++)
1599 __free_page(ap->pages[i]);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001600
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001601 if (wpa->ia.ff)
1602 fuse_file_put(wpa->ia.ff, false, false);
1603
1604 kfree(ap->pages);
1605 kfree(wpa);
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001606}
1607
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001608static void fuse_writepage_finish(struct fuse_conn *fc,
1609 struct fuse_writepage_args *wpa)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001610{
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001611 struct fuse_args_pages *ap = &wpa->ia.ap;
1612 struct inode *inode = wpa->inode;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001613 struct fuse_inode *fi = get_fuse_inode(inode);
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001614 struct backing_dev_info *bdi = inode_to_bdi(inode);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001615 int i;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001616
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001617 list_del(&wpa->writepages_entry);
1618 for (i = 0; i < ap->num_pages; i++) {
Tejun Heo93f78d82015-05-22 17:13:27 -04001619 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001620 dec_node_page_state(ap->pages[i], NR_WRITEBACK_TEMP);
Tejun Heo93f78d82015-05-22 17:13:27 -04001621 wb_writeout_inc(&bdi->wb);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001622 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001623 wake_up(&fi->page_waitq);
1624}
1625
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001626/* Called under fi->lock, may release and reacquire it */
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001627static void fuse_send_writepage(struct fuse_conn *fc,
1628 struct fuse_writepage_args *wpa, loff_t size)
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001629__releases(fi->lock)
1630__acquires(fi->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001631{
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001632 struct fuse_writepage_args *aux, *next;
1633 struct fuse_inode *fi = get_fuse_inode(wpa->inode);
1634 struct fuse_write_in *inarg = &wpa->ia.write.in;
1635 struct fuse_args *args = &wpa->ia.ap.args;
1636 __u64 data_size = wpa->ia.ap.num_pages * PAGE_SIZE;
1637 int err;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001638
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001639 fi->writectr++;
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001640 if (inarg->offset + data_size <= size) {
1641 inarg->size = data_size;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001642 } else if (inarg->offset < size) {
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001643 inarg->size = size - inarg->offset;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001644 } else {
1645 /* Got truncated off completely */
1646 goto out_free;
1647 }
1648
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001649 args->in_args[1].size = inarg->size;
1650 args->force = true;
1651 args->nocreds = true;
1652
1653 err = fuse_simple_background(fc, args, GFP_ATOMIC);
1654 if (err == -ENOMEM) {
1655 spin_unlock(&fi->lock);
1656 err = fuse_simple_background(fc, args, GFP_NOFS | __GFP_NOFAIL);
1657 spin_lock(&fi->lock);
1658 }
1659
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001660 /* Fails on broken connection only */
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001661 if (unlikely(err))
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001662 goto out_free;
1663
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001664 return;
1665
1666 out_free:
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001667 fi->writectr--;
1668 fuse_writepage_finish(fc, wpa);
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001669 spin_unlock(&fi->lock);
Miklos Szeredie2653bd2019-01-24 10:40:15 +01001670
1671 /* After fuse_writepage_finish() aux request list is private */
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001672 for (aux = wpa->next; aux; aux = next) {
1673 next = aux->next;
1674 aux->next = NULL;
1675 fuse_writepage_free(aux);
Miklos Szeredie2653bd2019-01-24 10:40:15 +01001676 }
1677
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001678 fuse_writepage_free(wpa);
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001679 spin_lock(&fi->lock);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001680}
1681
1682/*
1683 * If fi->writectr is positive (no truncate or fsync going on) send
1684 * all queued writepage requests.
1685 *
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001686 * Called with fi->lock
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001687 */
1688void fuse_flush_writepages(struct inode *inode)
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001689__releases(fi->lock)
1690__acquires(fi->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001691{
1692 struct fuse_conn *fc = get_fuse_conn(inode);
1693 struct fuse_inode *fi = get_fuse_inode(inode);
Miklos Szeredi9de5be02019-04-24 17:05:06 +02001694 loff_t crop = i_size_read(inode);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001695 struct fuse_writepage_args *wpa;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001696
1697 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001698 wpa = list_entry(fi->queued_writes.next,
1699 struct fuse_writepage_args, queue_entry);
1700 list_del_init(&wpa->queue_entry);
1701 fuse_send_writepage(fc, wpa, crop);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001702 }
1703}
1704
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001705static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_args *args,
1706 int error)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001707{
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001708 struct fuse_writepage_args *wpa =
1709 container_of(args, typeof(*wpa), ia.ap.args);
1710 struct inode *inode = wpa->inode;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001711 struct fuse_inode *fi = get_fuse_inode(inode);
1712
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001713 mapping_set_error(inode->i_mapping, error);
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001714 spin_lock(&fi->lock);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001715 while (wpa->next) {
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001716 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001717 struct fuse_write_in *inarg = &wpa->ia.write.in;
1718 struct fuse_writepage_args *next = wpa->next;
1719
1720 wpa->next = next->next;
1721 next->next = NULL;
1722 next->ia.ff = fuse_file_get(wpa->ia.ff);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001723 list_add(&next->writepages_entry, &fi->writepages);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001724
1725 /*
1726 * Skip fuse_flush_writepages() to make it easy to crop requests
1727 * based on primary request size.
1728 *
1729 * 1st case (trivial): there are no concurrent activities using
1730 * fuse_set/release_nowrite. Then we're on safe side because
1731 * fuse_flush_writepages() would call fuse_send_writepage()
1732 * anyway.
1733 *
1734 * 2nd case: someone called fuse_set_nowrite and it is waiting
1735 * now for completion of all in-flight requests. This happens
1736 * rarely and no more than once per page, so this should be
1737 * okay.
1738 *
1739 * 3rd case: someone (e.g. fuse_do_setattr()) is in the middle
1740 * of fuse_set_nowrite..fuse_release_nowrite section. The fact
1741 * that fuse_set_nowrite returned implies that all in-flight
1742 * requests were completed along with all of their secondary
1743 * requests. Further primary requests are blocked by negative
1744 * writectr. Hence there cannot be any in-flight requests and
1745 * no invocations of fuse_writepage_end() while we're in
1746 * fuse_set_nowrite..fuse_release_nowrite section.
1747 */
1748 fuse_send_writepage(fc, next, inarg->offset + inarg->size);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001749 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001750 fi->writectr--;
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001751 fuse_writepage_finish(fc, wpa);
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001752 spin_unlock(&fi->lock);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001753 fuse_writepage_free(wpa);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001754}
1755
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001756static struct fuse_file *__fuse_write_file_get(struct fuse_conn *fc,
1757 struct fuse_inode *fi)
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001758{
Miklos Szeredi72523422013-10-01 16:44:52 +02001759 struct fuse_file *ff = NULL;
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001760
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001761 spin_lock(&fi->lock);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001762 if (!list_empty(&fi->write_files)) {
Miklos Szeredi72523422013-10-01 16:44:52 +02001763 ff = list_entry(fi->write_files.next, struct fuse_file,
1764 write_entry);
1765 fuse_file_get(ff);
1766 }
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001767 spin_unlock(&fi->lock);
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001768
1769 return ff;
1770}
1771
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001772static struct fuse_file *fuse_write_file_get(struct fuse_conn *fc,
1773 struct fuse_inode *fi)
1774{
1775 struct fuse_file *ff = __fuse_write_file_get(fc, fi);
1776 WARN_ON(!ff);
1777 return ff;
1778}
1779
1780int fuse_write_inode(struct inode *inode, struct writeback_control *wbc)
1781{
1782 struct fuse_conn *fc = get_fuse_conn(inode);
1783 struct fuse_inode *fi = get_fuse_inode(inode);
1784 struct fuse_file *ff;
1785 int err;
1786
1787 ff = __fuse_write_file_get(fc, fi);
Maxim Patlasovab9e13f2014-04-28 14:19:24 +02001788 err = fuse_flush_times(inode, ff);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001789 if (ff)
Chad Austin2e64ff12018-12-10 10:54:52 -08001790 fuse_file_put(ff, false, false);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001791
1792 return err;
1793}
1794
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001795static struct fuse_writepage_args *fuse_writepage_args_alloc(void)
1796{
1797 struct fuse_writepage_args *wpa;
1798 struct fuse_args_pages *ap;
1799
1800 wpa = kzalloc(sizeof(*wpa), GFP_NOFS);
1801 if (wpa) {
1802 ap = &wpa->ia.ap;
1803 ap->num_pages = 0;
1804 ap->pages = fuse_pages_alloc(1, GFP_NOFS, &ap->descs);
1805 if (!ap->pages) {
1806 kfree(wpa);
1807 wpa = NULL;
1808 }
1809 }
1810 return wpa;
1811
1812}
1813
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001814static int fuse_writepage_locked(struct page *page)
1815{
1816 struct address_space *mapping = page->mapping;
1817 struct inode *inode = mapping->host;
1818 struct fuse_conn *fc = get_fuse_conn(inode);
1819 struct fuse_inode *fi = get_fuse_inode(inode);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001820 struct fuse_writepage_args *wpa;
1821 struct fuse_args_pages *ap;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001822 struct page *tmp_page;
Miklos Szeredi72523422013-10-01 16:44:52 +02001823 int error = -ENOMEM;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001824
1825 set_page_writeback(page);
1826
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001827 wpa = fuse_writepage_args_alloc();
1828 if (!wpa)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001829 goto err;
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001830 ap = &wpa->ia.ap;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001831
1832 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1833 if (!tmp_page)
1834 goto err_free;
1835
Miklos Szeredi72523422013-10-01 16:44:52 +02001836 error = -EIO;
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001837 wpa->ia.ff = fuse_write_file_get(fc, fi);
1838 if (!wpa->ia.ff)
Maxim Patlasov27f1b362014-07-10 15:32:43 +04001839 goto err_nofile;
Miklos Szeredi72523422013-10-01 16:44:52 +02001840
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001841 fuse_write_args_fill(&wpa->ia, wpa->ia.ff, page_offset(page), 0);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001842
1843 copy_highpage(tmp_page, page);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001844 wpa->ia.write.in.write_flags |= FUSE_WRITE_CACHE;
1845 wpa->next = NULL;
1846 ap->args.in_pages = true;
1847 ap->num_pages = 1;
1848 ap->pages[0] = tmp_page;
1849 ap->descs[0].offset = 0;
1850 ap->descs[0].length = PAGE_SIZE;
1851 ap->args.end = fuse_writepage_end;
1852 wpa->inode = inode;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001853
Tejun Heo93f78d82015-05-22 17:13:27 -04001854 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001855 inc_node_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001856
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001857 spin_lock(&fi->lock);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001858 list_add(&wpa->writepages_entry, &fi->writepages);
1859 list_add_tail(&wpa->queue_entry, &fi->queued_writes);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001860 fuse_flush_writepages(inode);
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001861 spin_unlock(&fi->lock);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001862
Maxim Patlasov4a4ac4e2013-08-12 20:39:30 +04001863 end_page_writeback(page);
1864
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001865 return 0;
1866
Maxim Patlasov27f1b362014-07-10 15:32:43 +04001867err_nofile:
1868 __free_page(tmp_page);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001869err_free:
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001870 kfree(wpa);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001871err:
Jeff Layton91839762017-05-25 06:57:50 -04001872 mapping_set_error(page->mapping, error);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001873 end_page_writeback(page);
Miklos Szeredi72523422013-10-01 16:44:52 +02001874 return error;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001875}
1876
1877static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1878{
1879 int err;
1880
Miklos Szerediff17be02013-10-01 16:44:53 +02001881 if (fuse_page_is_writeback(page->mapping->host, page->index)) {
1882 /*
1883 * ->writepages() should be called for sync() and friends. We
1884 * should only get here on direct reclaim and then we are
1885 * allowed to skip a page which is already in flight
1886 */
1887 WARN_ON(wbc->sync_mode == WB_SYNC_ALL);
1888
1889 redirty_page_for_writepage(wbc, page);
Vasily Averind5880c72019-09-13 18:17:11 +03001890 unlock_page(page);
Miklos Szerediff17be02013-10-01 16:44:53 +02001891 return 0;
1892 }
1893
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001894 err = fuse_writepage_locked(page);
1895 unlock_page(page);
1896
1897 return err;
1898}
1899
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001900struct fuse_fill_wb_data {
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001901 struct fuse_writepage_args *wpa;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001902 struct fuse_file *ff;
1903 struct inode *inode;
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001904 struct page **orig_pages;
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001905 unsigned int max_pages;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001906};
1907
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001908static bool fuse_pages_realloc(struct fuse_fill_wb_data *data)
1909{
1910 struct fuse_args_pages *ap = &data->wpa->ia.ap;
1911 struct fuse_conn *fc = get_fuse_conn(data->inode);
1912 struct page **pages;
1913 struct fuse_page_desc *descs;
1914 unsigned int npages = min_t(unsigned int,
1915 max_t(unsigned int, data->max_pages * 2,
1916 FUSE_DEFAULT_MAX_PAGES_PER_REQ),
1917 fc->max_pages);
1918 WARN_ON(npages <= data->max_pages);
1919
1920 pages = fuse_pages_alloc(npages, GFP_NOFS, &descs);
1921 if (!pages)
1922 return false;
1923
1924 memcpy(pages, ap->pages, sizeof(struct page *) * ap->num_pages);
1925 memcpy(descs, ap->descs, sizeof(struct fuse_page_desc) * ap->num_pages);
1926 kfree(ap->pages);
1927 ap->pages = pages;
1928 ap->descs = descs;
1929 data->max_pages = npages;
1930
1931 return true;
1932}
1933
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001934static void fuse_writepages_send(struct fuse_fill_wb_data *data)
1935{
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001936 struct fuse_writepage_args *wpa = data->wpa;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001937 struct inode *inode = data->inode;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001938 struct fuse_inode *fi = get_fuse_inode(inode);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001939 int num_pages = wpa->ia.ap.num_pages;
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001940 int i;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001941
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001942 wpa->ia.ff = fuse_file_get(data->ff);
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001943 spin_lock(&fi->lock);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001944 list_add_tail(&wpa->queue_entry, &fi->queued_writes);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001945 fuse_flush_writepages(inode);
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001946 spin_unlock(&fi->lock);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001947
1948 for (i = 0; i < num_pages; i++)
1949 end_page_writeback(data->orig_pages[i]);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001950}
1951
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001952/*
1953 * First recheck under fi->lock if the offending offset is still under
Miklos Szeredi419234d2019-01-16 10:27:59 +01001954 * writeback. If yes, then iterate auxiliary write requests, to see if there's
1955 * one already added for a page at this offset. If there's none, then insert
1956 * this new request onto the auxiliary list, otherwise reuse the existing one by
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001957 * copying the new page contents over to the old temporary page.
1958 */
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001959static bool fuse_writepage_in_flight(struct fuse_writepage_args *new_wpa,
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001960 struct page *page)
1961{
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001962 struct fuse_inode *fi = get_fuse_inode(new_wpa->inode);
1963 struct fuse_writepage_args *tmp;
1964 struct fuse_writepage_args *old_wpa;
1965 struct fuse_args_pages *new_ap = &new_wpa->ia.ap;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001966
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001967 WARN_ON(new_ap->num_pages != 0);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001968
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001969 spin_lock(&fi->lock);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001970 list_del(&new_wpa->writepages_entry);
1971 old_wpa = fuse_find_writeback(fi, page->index, page->index);
1972 if (!old_wpa) {
1973 list_add(&new_wpa->writepages_entry, &fi->writepages);
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001974 spin_unlock(&fi->lock);
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +01001975 return false;
Maxim Patlasovf6011082013-10-02 15:01:07 +04001976 }
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001977
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001978 new_ap->num_pages = 1;
1979 for (tmp = old_wpa->next; tmp; tmp = tmp->next) {
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001980 pgoff_t curr_index;
1981
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001982 WARN_ON(tmp->inode != new_wpa->inode);
1983 curr_index = tmp->ia.write.in.offset >> PAGE_SHIFT;
Miklos Szeredi419234d2019-01-16 10:27:59 +01001984 if (curr_index == page->index) {
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001985 WARN_ON(tmp->ia.ap.num_pages != 1);
1986 swap(tmp->ia.ap.pages[0], new_ap->pages[0]);
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001987 break;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001988 }
1989 }
1990
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001991 if (!tmp) {
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001992 new_wpa->next = old_wpa->next;
1993 old_wpa->next = new_wpa;
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001994 }
Maxim Patlasov41b6e412013-10-02 21:38:43 +04001995
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03001996 spin_unlock(&fi->lock);
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001997
1998 if (tmp) {
Miklos Szeredi33826eb2019-09-10 15:04:10 +02001999 struct backing_dev_info *bdi = inode_to_bdi(new_wpa->inode);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02002000
Tejun Heo93f78d82015-05-22 17:13:27 -04002001 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002002 dec_node_page_state(new_ap->pages[0], NR_WRITEBACK_TEMP);
Tejun Heo93f78d82015-05-22 17:13:27 -04002003 wb_writeout_inc(&bdi->wb);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002004 fuse_writepage_free(new_wpa);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02002005 }
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01002006
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +01002007 return true;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02002008}
2009
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002010static int fuse_writepages_fill(struct page *page,
2011 struct writeback_control *wbc, void *_data)
2012{
2013 struct fuse_fill_wb_data *data = _data;
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002014 struct fuse_writepage_args *wpa = data->wpa;
2015 struct fuse_args_pages *ap = &wpa->ia.ap;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002016 struct inode *inode = data->inode;
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03002017 struct fuse_inode *fi = get_fuse_inode(inode);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002018 struct fuse_conn *fc = get_fuse_conn(inode);
2019 struct page *tmp_page;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02002020 bool is_writeback;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002021 int err;
2022
2023 if (!data->ff) {
2024 err = -EIO;
Vasily Averin091d1a72019-08-19 08:48:26 +03002025 data->ff = fuse_write_file_get(fc, fi);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002026 if (!data->ff)
2027 goto out_unlock;
2028 }
2029
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02002030 /*
2031 * Being under writeback is unlikely but possible. For example direct
2032 * read to an mmaped fuse file will set the page dirty twice; once when
2033 * the pages are faulted with get_user_pages(), and then after the read
2034 * completed.
2035 */
2036 is_writeback = fuse_page_is_writeback(inode, page->index);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002037
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002038 if (wpa && ap->num_pages &&
2039 (is_writeback || ap->num_pages == fc->max_pages ||
2040 (ap->num_pages + 1) * PAGE_SIZE > fc->max_write ||
2041 data->orig_pages[ap->num_pages - 1]->index + 1 != page->index)) {
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02002042 fuse_writepages_send(data);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002043 data->wpa = NULL;
2044 } else if (wpa && ap->num_pages == data->max_pages) {
2045 if (!fuse_pages_realloc(data)) {
Miklos Szeredie52a82502018-10-01 10:07:06 +02002046 fuse_writepages_send(data);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002047 data->wpa = NULL;
Miklos Szeredie52a82502018-10-01 10:07:06 +02002048 }
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002049 }
Miklos Szeredie52a82502018-10-01 10:07:06 +02002050
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002051 err = -ENOMEM;
2052 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
2053 if (!tmp_page)
2054 goto out_unlock;
2055
2056 /*
2057 * The page must not be redirtied until the writeout is completed
2058 * (i.e. userspace has sent a reply to the write request). Otherwise
2059 * there could be more than one temporary page instance for each real
2060 * page.
2061 *
2062 * This is ensured by holding the page lock in page_mkwrite() while
2063 * checking fuse_page_is_writeback(). We already hold the page lock
2064 * since clear_page_dirty_for_io() and keep it held until we add the
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002065 * request to the fi->writepages list and increment ap->num_pages.
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002066 * After this fuse_page_is_writeback() will indicate that the page is
2067 * under writeback, so we can release the page lock.
2068 */
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002069 if (data->wpa == NULL) {
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002070 err = -ENOMEM;
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002071 wpa = fuse_writepage_args_alloc();
2072 if (!wpa) {
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002073 __free_page(tmp_page);
2074 goto out_unlock;
2075 }
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002076 data->max_pages = 1;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002077
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002078 ap = &wpa->ia.ap;
2079 fuse_write_args_fill(&wpa->ia, data->ff, page_offset(page), 0);
2080 wpa->ia.write.in.write_flags |= FUSE_WRITE_CACHE;
2081 wpa->next = NULL;
2082 ap->args.in_pages = true;
2083 ap->args.end = fuse_writepage_end;
2084 ap->num_pages = 0;
2085 wpa->inode = inode;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002086
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03002087 spin_lock(&fi->lock);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002088 list_add(&wpa->writepages_entry, &fi->writepages);
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03002089 spin_unlock(&fi->lock);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002090
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002091 data->wpa = wpa;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002092 }
2093 set_page_writeback(page);
2094
2095 copy_highpage(tmp_page, page);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002096 ap->pages[ap->num_pages] = tmp_page;
2097 ap->descs[ap->num_pages].offset = 0;
2098 ap->descs[ap->num_pages].length = PAGE_SIZE;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002099
Tejun Heo93f78d82015-05-22 17:13:27 -04002100 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07002101 inc_node_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02002102
2103 err = 0;
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002104 if (is_writeback && fuse_writepage_in_flight(wpa, page)) {
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02002105 end_page_writeback(page);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002106 data->wpa = NULL;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02002107 goto out_unlock;
2108 }
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002109 data->orig_pages[ap->num_pages] = page;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002110
2111 /*
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03002112 * Protected by fi->lock against concurrent access by
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002113 * fuse_page_is_writeback().
2114 */
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03002115 spin_lock(&fi->lock);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002116 ap->num_pages++;
Kirill Tkhaif15ecfe2018-11-09 13:33:22 +03002117 spin_unlock(&fi->lock);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002118
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002119out_unlock:
2120 unlock_page(page);
2121
2122 return err;
2123}
2124
2125static int fuse_writepages(struct address_space *mapping,
2126 struct writeback_control *wbc)
2127{
2128 struct inode *inode = mapping->host;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002129 struct fuse_conn *fc = get_fuse_conn(inode);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002130 struct fuse_fill_wb_data data;
2131 int err;
2132
2133 err = -EIO;
2134 if (is_bad_inode(inode))
2135 goto out;
2136
2137 data.inode = inode;
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002138 data.wpa = NULL;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002139 data.ff = NULL;
2140
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04002141 err = -ENOMEM;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002142 data.orig_pages = kcalloc(fc->max_pages,
Fabian Frederickf2b34552014-06-23 18:35:15 +02002143 sizeof(struct page *),
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04002144 GFP_NOFS);
2145 if (!data.orig_pages)
2146 goto out;
2147
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002148 err = write_cache_pages(mapping, wbc, fuse_writepages_fill, &data);
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002149 if (data.wpa) {
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002150 /* Ignore errors if we can write at least one page */
Miklos Szeredi33826eb2019-09-10 15:04:10 +02002151 WARN_ON(!data.wpa->ia.ap.num_pages);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002152 fuse_writepages_send(&data);
2153 err = 0;
2154 }
2155 if (data.ff)
Chad Austin2e64ff12018-12-10 10:54:52 -08002156 fuse_file_put(data.ff, false, false);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04002157
2158 kfree(data.orig_pages);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04002159out:
2160 return err;
2161}
2162
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002163/*
2164 * It's worthy to make sure that space is reserved on disk for the write,
2165 * but how to implement it without killing performance need more thinking.
2166 */
2167static int fuse_write_begin(struct file *file, struct address_space *mapping,
2168 loff_t pos, unsigned len, unsigned flags,
2169 struct page **pagep, void **fsdata)
2170{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002171 pgoff_t index = pos >> PAGE_SHIFT;
Al Viroa4555892014-10-21 20:11:25 -04002172 struct fuse_conn *fc = get_fuse_conn(file_inode(file));
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002173 struct page *page;
2174 loff_t fsize;
2175 int err = -ENOMEM;
2176
2177 WARN_ON(!fc->writeback_cache);
2178
2179 page = grab_cache_page_write_begin(mapping, index, flags);
2180 if (!page)
2181 goto error;
2182
2183 fuse_wait_on_page_writeback(mapping->host, page->index);
2184
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002185 if (PageUptodate(page) || len == PAGE_SIZE)
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002186 goto success;
2187 /*
2188 * Check if the start this page comes after the end of file, in which
2189 * case the readpage can be optimized away.
2190 */
2191 fsize = i_size_read(mapping->host);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002192 if (fsize <= (pos & PAGE_MASK)) {
2193 size_t off = pos & ~PAGE_MASK;
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002194 if (off)
2195 zero_user_segment(page, 0, off);
2196 goto success;
2197 }
2198 err = fuse_do_readpage(file, page);
2199 if (err)
2200 goto cleanup;
2201success:
2202 *pagep = page;
2203 return 0;
2204
2205cleanup:
2206 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002207 put_page(page);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002208error:
2209 return err;
2210}
2211
2212static int fuse_write_end(struct file *file, struct address_space *mapping,
2213 loff_t pos, unsigned len, unsigned copied,
2214 struct page *page, void *fsdata)
2215{
2216 struct inode *inode = page->mapping->host;
2217
Miklos Szeredi59c3b762016-08-18 09:10:44 +02002218 /* Haven't copied anything? Skip zeroing, size extending, dirtying. */
2219 if (!copied)
2220 goto unlock;
2221
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002222 if (!PageUptodate(page)) {
2223 /* Zero any unwritten bytes at the end of the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002224 size_t endoff = (pos + copied) & ~PAGE_MASK;
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002225 if (endoff)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002226 zero_user_segment(page, endoff, PAGE_SIZE);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002227 SetPageUptodate(page);
2228 }
2229
2230 fuse_write_update_size(inode, pos + copied);
2231 set_page_dirty(page);
Miklos Szeredi59c3b762016-08-18 09:10:44 +02002232
2233unlock:
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002234 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002235 put_page(page);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002236
2237 return copied;
2238}
2239
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002240static int fuse_launder_page(struct page *page)
2241{
2242 int err = 0;
2243 if (clear_page_dirty_for_io(page)) {
2244 struct inode *inode = page->mapping->host;
2245 err = fuse_writepage_locked(page);
2246 if (!err)
2247 fuse_wait_on_page_writeback(inode, page->index);
2248 }
2249 return err;
2250}
2251
2252/*
2253 * Write back dirty pages now, because there may not be any suitable
2254 * open files later
2255 */
2256static void fuse_vma_close(struct vm_area_struct *vma)
2257{
2258 filemap_write_and_wait(vma->vm_file->f_mapping);
2259}
2260
2261/*
2262 * Wait for writeback against this page to complete before allowing it
2263 * to be marked dirty again, and hence written back again, possibly
2264 * before the previous writepage completed.
2265 *
2266 * Block here, instead of in ->writepage(), so that the userspace fs
2267 * can only block processes actually operating on the filesystem.
2268 *
2269 * Otherwise unprivileged userspace fs would be able to block
2270 * unrelated:
2271 *
2272 * - page migration
2273 * - sync(2)
2274 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
2275 */
Souptick Joarder46fb5042018-05-12 10:25:37 +05302276static vm_fault_t fuse_page_mkwrite(struct vm_fault *vmf)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002277{
Nick Pigginc2ec1752009-03-31 15:23:21 -07002278 struct page *page = vmf->page;
Dave Jiang11bac802017-02-24 14:56:41 -08002279 struct inode *inode = file_inode(vmf->vma->vm_file);
Miklos Szeredicca24372013-10-01 16:44:51 +02002280
Dave Jiang11bac802017-02-24 14:56:41 -08002281 file_update_time(vmf->vma->vm_file);
Miklos Szeredicca24372013-10-01 16:44:51 +02002282 lock_page(page);
2283 if (page->mapping != inode->i_mapping) {
2284 unlock_page(page);
2285 return VM_FAULT_NOPAGE;
2286 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002287
2288 fuse_wait_on_page_writeback(inode, page->index);
Miklos Szeredicca24372013-10-01 16:44:51 +02002289 return VM_FAULT_LOCKED;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002290}
2291
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002292static const struct vm_operations_struct fuse_file_vm_ops = {
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002293 .close = fuse_vma_close,
2294 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002295 .map_pages = filemap_map_pages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002296 .page_mkwrite = fuse_page_mkwrite,
2297};
2298
2299static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
2300{
Miklos Szeredi55752a3a2019-01-24 10:40:17 +01002301 struct fuse_file *ff = file->private_data;
2302
2303 if (ff->open_flags & FOPEN_DIRECT_IO) {
2304 /* Can't provide the coherency needed for MAP_SHARED */
2305 if (vma->vm_flags & VM_MAYSHARE)
2306 return -ENODEV;
2307
2308 invalidate_inode_pages2(file->f_mapping);
2309
2310 return generic_file_mmap(file, vma);
2311 }
2312
Pavel Emelyanov650b22b2013-10-10 17:10:04 +04002313 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2314 fuse_link_write_file(file);
2315
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002316 file_accessed(file);
2317 vma->vm_ops = &fuse_file_vm_ops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002318 return 0;
2319}
2320
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002321static int convert_fuse_file_lock(struct fuse_conn *fc,
2322 const struct fuse_file_lock *ffl,
Miklos Szeredi71421252006-06-25 05:48:52 -07002323 struct file_lock *fl)
2324{
2325 switch (ffl->type) {
2326 case F_UNLCK:
2327 break;
2328
2329 case F_RDLCK:
2330 case F_WRLCK:
2331 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
2332 ffl->end < ffl->start)
2333 return -EIO;
2334
2335 fl->fl_start = ffl->start;
2336 fl->fl_end = ffl->end;
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002337
2338 /*
Benjamin Coddington9d5b86a2017-07-16 10:28:22 -04002339 * Convert pid into init's pid namespace. The locks API will
2340 * translate it into the caller's pid namespace.
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002341 */
2342 rcu_read_lock();
Benjamin Coddington9d5b86a2017-07-16 10:28:22 -04002343 fl->fl_pid = pid_nr_ns(find_pid_ns(ffl->pid, fc->pid_ns), &init_pid_ns);
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002344 rcu_read_unlock();
Miklos Szeredi71421252006-06-25 05:48:52 -07002345 break;
2346
2347 default:
2348 return -EIO;
2349 }
2350 fl->fl_type = ffl->type;
2351 return 0;
2352}
2353
Miklos Szeredi70781872014-12-12 09:49:05 +01002354static void fuse_lk_fill(struct fuse_args *args, struct file *file,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002355 const struct file_lock *fl, int opcode, pid_t pid,
Miklos Szeredi70781872014-12-12 09:49:05 +01002356 int flock, struct fuse_lk_in *inarg)
Miklos Szeredi71421252006-06-25 05:48:52 -07002357{
Al Viro6131ffa2013-02-27 16:59:05 -05002358 struct inode *inode = file_inode(file);
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07002359 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi71421252006-06-25 05:48:52 -07002360 struct fuse_file *ff = file->private_data;
Miklos Szeredi71421252006-06-25 05:48:52 -07002361
Miklos Szeredi70781872014-12-12 09:49:05 +01002362 memset(inarg, 0, sizeof(*inarg));
2363 inarg->fh = ff->fh;
2364 inarg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
2365 inarg->lk.start = fl->fl_start;
2366 inarg->lk.end = fl->fl_end;
2367 inarg->lk.type = fl->fl_type;
2368 inarg->lk.pid = pid;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002369 if (flock)
Miklos Szeredi70781872014-12-12 09:49:05 +01002370 inarg->lk_flags |= FUSE_LK_FLOCK;
Miklos Szeredid5b48542019-09-10 15:04:08 +02002371 args->opcode = opcode;
2372 args->nodeid = get_node_id(inode);
2373 args->in_numargs = 1;
2374 args->in_args[0].size = sizeof(*inarg);
2375 args->in_args[0].value = inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002376}
2377
2378static int fuse_getlk(struct file *file, struct file_lock *fl)
2379{
Al Viro6131ffa2013-02-27 16:59:05 -05002380 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002381 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002382 FUSE_ARGS(args);
2383 struct fuse_lk_in inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002384 struct fuse_lk_out outarg;
2385 int err;
2386
Miklos Szeredi70781872014-12-12 09:49:05 +01002387 fuse_lk_fill(&args, file, fl, FUSE_GETLK, 0, 0, &inarg);
Miklos Szeredid5b48542019-09-10 15:04:08 +02002388 args.out_numargs = 1;
2389 args.out_args[0].size = sizeof(outarg);
2390 args.out_args[0].value = &outarg;
Miklos Szeredi70781872014-12-12 09:49:05 +01002391 err = fuse_simple_request(fc, &args);
Miklos Szeredi71421252006-06-25 05:48:52 -07002392 if (!err)
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002393 err = convert_fuse_file_lock(fc, &outarg.lk, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07002394
2395 return err;
2396}
2397
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002398static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07002399{
Al Viro6131ffa2013-02-27 16:59:05 -05002400 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002401 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002402 FUSE_ARGS(args);
2403 struct fuse_lk_in inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002404 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002405 struct pid *pid = fl->fl_type != F_UNLCK ? task_tgid(current) : NULL;
2406 pid_t pid_nr = pid_nr_ns(pid, fc->pid_ns);
Miklos Szeredi71421252006-06-25 05:48:52 -07002407 int err;
2408
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04002409 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
Miklos Szeredi48e90762008-07-25 01:49:02 -07002410 /* NLM needs asynchronous locks, which we don't support yet */
2411 return -ENOLCK;
2412 }
2413
Miklos Szeredi71421252006-06-25 05:48:52 -07002414 /* Unlock on close is handled by the flush method */
Benjamin Coddington50f21122017-04-11 12:50:09 -04002415 if ((fl->fl_flags & FL_CLOSE_POSIX) == FL_CLOSE_POSIX)
Miklos Szeredi71421252006-06-25 05:48:52 -07002416 return 0;
2417
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002418 fuse_lk_fill(&args, file, fl, opcode, pid_nr, flock, &inarg);
Miklos Szeredi70781872014-12-12 09:49:05 +01002419 err = fuse_simple_request(fc, &args);
Miklos Szeredi71421252006-06-25 05:48:52 -07002420
Miklos Szeredia4d27e72006-06-25 05:48:54 -07002421 /* locking is restartable */
2422 if (err == -EINTR)
2423 err = -ERESTARTSYS;
Miklos Szeredi70781872014-12-12 09:49:05 +01002424
Miklos Szeredi71421252006-06-25 05:48:52 -07002425 return err;
2426}
2427
2428static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
2429{
Al Viro6131ffa2013-02-27 16:59:05 -05002430 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002431 struct fuse_conn *fc = get_fuse_conn(inode);
2432 int err;
2433
Miklos Szeredi48e90762008-07-25 01:49:02 -07002434 if (cmd == F_CANCELLK) {
2435 err = 0;
2436 } else if (cmd == F_GETLK) {
Miklos Szeredi71421252006-06-25 05:48:52 -07002437 if (fc->no_lock) {
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002438 posix_test_lock(file, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07002439 err = 0;
2440 } else
2441 err = fuse_getlk(file, fl);
2442 } else {
2443 if (fc->no_lock)
Miklos Szeredi48e90762008-07-25 01:49:02 -07002444 err = posix_lock_file(file, fl, NULL);
Miklos Szeredi71421252006-06-25 05:48:52 -07002445 else
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002446 err = fuse_setlk(file, fl, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07002447 }
2448 return err;
2449}
2450
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002451static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
2452{
Al Viro6131ffa2013-02-27 16:59:05 -05002453 struct inode *inode = file_inode(file);
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002454 struct fuse_conn *fc = get_fuse_conn(inode);
2455 int err;
2456
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002457 if (fc->no_flock) {
Benjamin Coddington4f656362015-10-22 13:38:14 -04002458 err = locks_lock_file_wait(file, fl);
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002459 } else {
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002460 struct fuse_file *ff = file->private_data;
2461
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002462 /* emulate flock with POSIX locks */
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002463 ff->flock = true;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002464 err = fuse_setlk(file, fl, 1);
2465 }
2466
2467 return err;
2468}
2469
Miklos Szeredib2d22722006-12-06 20:35:51 -08002470static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
2471{
2472 struct inode *inode = mapping->host;
2473 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002474 FUSE_ARGS(args);
Miklos Szeredib2d22722006-12-06 20:35:51 -08002475 struct fuse_bmap_in inarg;
2476 struct fuse_bmap_out outarg;
2477 int err;
2478
2479 if (!inode->i_sb->s_bdev || fc->no_bmap)
2480 return 0;
2481
Miklos Szeredib2d22722006-12-06 20:35:51 -08002482 memset(&inarg, 0, sizeof(inarg));
2483 inarg.block = block;
2484 inarg.blocksize = inode->i_sb->s_blocksize;
Miklos Szeredid5b48542019-09-10 15:04:08 +02002485 args.opcode = FUSE_BMAP;
2486 args.nodeid = get_node_id(inode);
2487 args.in_numargs = 1;
2488 args.in_args[0].size = sizeof(inarg);
2489 args.in_args[0].value = &inarg;
2490 args.out_numargs = 1;
2491 args.out_args[0].size = sizeof(outarg);
2492 args.out_args[0].value = &outarg;
Miklos Szeredi70781872014-12-12 09:49:05 +01002493 err = fuse_simple_request(fc, &args);
Miklos Szeredib2d22722006-12-06 20:35:51 -08002494 if (err == -ENOSYS)
2495 fc->no_bmap = 1;
2496
2497 return err ? 0 : outarg.block;
2498}
2499
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302500static loff_t fuse_lseek(struct file *file, loff_t offset, int whence)
2501{
2502 struct inode *inode = file->f_mapping->host;
2503 struct fuse_conn *fc = get_fuse_conn(inode);
2504 struct fuse_file *ff = file->private_data;
2505 FUSE_ARGS(args);
2506 struct fuse_lseek_in inarg = {
2507 .fh = ff->fh,
2508 .offset = offset,
2509 .whence = whence
2510 };
2511 struct fuse_lseek_out outarg;
2512 int err;
2513
2514 if (fc->no_lseek)
2515 goto fallback;
2516
Miklos Szeredid5b48542019-09-10 15:04:08 +02002517 args.opcode = FUSE_LSEEK;
2518 args.nodeid = ff->nodeid;
2519 args.in_numargs = 1;
2520 args.in_args[0].size = sizeof(inarg);
2521 args.in_args[0].value = &inarg;
2522 args.out_numargs = 1;
2523 args.out_args[0].size = sizeof(outarg);
2524 args.out_args[0].value = &outarg;
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302525 err = fuse_simple_request(fc, &args);
2526 if (err) {
2527 if (err == -ENOSYS) {
2528 fc->no_lseek = 1;
2529 goto fallback;
2530 }
2531 return err;
2532 }
2533
2534 return vfs_setpos(file, outarg.offset, inode->i_sb->s_maxbytes);
2535
2536fallback:
Miklos Szeredi5b97eea2017-09-12 16:57:54 +02002537 err = fuse_update_attributes(inode, file);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302538 if (!err)
2539 return generic_file_llseek(file, offset, whence);
2540 else
2541 return err;
2542}
2543
Andrew Morton965c8e52012-12-17 15:59:39 -08002544static loff_t fuse_file_llseek(struct file *file, loff_t offset, int whence)
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002545{
2546 loff_t retval;
Al Viro6131ffa2013-02-27 16:59:05 -05002547 struct inode *inode = file_inode(file);
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002548
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302549 switch (whence) {
2550 case SEEK_SET:
2551 case SEEK_CUR:
2552 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
Andrew Morton965c8e52012-12-17 15:59:39 -08002553 retval = generic_file_llseek(file, offset, whence);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302554 break;
2555 case SEEK_END:
Al Viro59551022016-01-22 15:40:57 -05002556 inode_lock(inode);
Miklos Szeredi5b97eea2017-09-12 16:57:54 +02002557 retval = fuse_update_attributes(inode, file);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302558 if (!retval)
2559 retval = generic_file_llseek(file, offset, whence);
Al Viro59551022016-01-22 15:40:57 -05002560 inode_unlock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302561 break;
2562 case SEEK_HOLE:
2563 case SEEK_DATA:
Al Viro59551022016-01-22 15:40:57 -05002564 inode_lock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302565 retval = fuse_lseek(file, offset, whence);
Al Viro59551022016-01-22 15:40:57 -05002566 inode_unlock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302567 break;
2568 default:
2569 retval = -EINVAL;
2570 }
Miklos Szeredic07c3d12011-12-13 11:58:48 +01002571
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002572 return retval;
2573}
2574
Tejun Heo59efec72008-11-26 12:03:55 +01002575/*
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002576 * CUSE servers compiled on 32bit broke on 64bit kernels because the
2577 * ABI was defined to be 'struct iovec' which is different on 32bit
2578 * and 64bit. Fortunately we can determine which structure the server
2579 * used from the size of the reply.
2580 */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002581static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
2582 size_t transferred, unsigned count,
2583 bool is_compat)
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002584{
2585#ifdef CONFIG_COMPAT
2586 if (count * sizeof(struct compat_iovec) == transferred) {
2587 struct compat_iovec *ciov = src;
2588 unsigned i;
2589
2590 /*
2591 * With this interface a 32bit server cannot support
2592 * non-compat (i.e. ones coming from 64bit apps) ioctl
2593 * requests
2594 */
2595 if (!is_compat)
2596 return -EINVAL;
2597
2598 for (i = 0; i < count; i++) {
2599 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
2600 dst[i].iov_len = ciov[i].iov_len;
2601 }
2602 return 0;
2603 }
2604#endif
2605
2606 if (count * sizeof(struct iovec) != transferred)
2607 return -EIO;
2608
2609 memcpy(dst, src, transferred);
2610 return 0;
2611}
2612
Miklos Szeredi75727772010-11-30 16:39:27 +01002613/* Make sure iov_length() won't overflow */
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002614static int fuse_verify_ioctl_iov(struct fuse_conn *fc, struct iovec *iov,
2615 size_t count)
Miklos Szeredi75727772010-11-30 16:39:27 +01002616{
2617 size_t n;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002618 u32 max = fc->max_pages << PAGE_SHIFT;
Miklos Szeredi75727772010-11-30 16:39:27 +01002619
Zach Brownfb6ccff2012-07-24 12:10:11 -07002620 for (n = 0; n < count; n++, iov++) {
Miklos Szeredi75727772010-11-30 16:39:27 +01002621 if (iov->iov_len > (size_t) max)
2622 return -ENOMEM;
2623 max -= iov->iov_len;
2624 }
2625 return 0;
2626}
2627
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002628static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
2629 void *src, size_t transferred, unsigned count,
2630 bool is_compat)
2631{
2632 unsigned i;
2633 struct fuse_ioctl_iovec *fiov = src;
2634
2635 if (fc->minor < 16) {
2636 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
2637 count, is_compat);
2638 }
2639
2640 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
2641 return -EIO;
2642
2643 for (i = 0; i < count; i++) {
2644 /* Did the server supply an inappropriate value? */
2645 if (fiov[i].base != (unsigned long) fiov[i].base ||
2646 fiov[i].len != (unsigned long) fiov[i].len)
2647 return -EIO;
2648
2649 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
2650 dst[i].iov_len = (size_t) fiov[i].len;
2651
2652#ifdef CONFIG_COMPAT
2653 if (is_compat &&
2654 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
2655 (compat_size_t) dst[i].iov_len != fiov[i].len))
2656 return -EIO;
2657#endif
2658 }
2659
2660 return 0;
2661}
2662
2663
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002664/*
Tejun Heo59efec72008-11-26 12:03:55 +01002665 * For ioctls, there is no generic way to determine how much memory
2666 * needs to be read and/or written. Furthermore, ioctls are allowed
2667 * to dereference the passed pointer, so the parameter requires deep
2668 * copying but FUSE has no idea whatsoever about what to copy in or
2669 * out.
2670 *
2671 * This is solved by allowing FUSE server to retry ioctl with
2672 * necessary in/out iovecs. Let's assume the ioctl implementation
2673 * needs to read in the following structure.
2674 *
2675 * struct a {
2676 * char *buf;
2677 * size_t buflen;
2678 * }
2679 *
2680 * On the first callout to FUSE server, inarg->in_size and
2681 * inarg->out_size will be NULL; then, the server completes the ioctl
2682 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
2683 * the actual iov array to
2684 *
2685 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
2686 *
2687 * which tells FUSE to copy in the requested area and retry the ioctl.
2688 * On the second round, the server has access to the structure and
2689 * from that it can tell what to look for next, so on the invocation,
2690 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
2691 *
2692 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
2693 * { .iov_base = a.buf, .iov_len = a.buflen } }
2694 *
2695 * FUSE will copy both struct a and the pointed buffer from the
2696 * process doing the ioctl and retry ioctl with both struct a and the
2697 * buffer.
2698 *
2699 * This time, FUSE server has everything it needs and completes ioctl
2700 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
2701 *
2702 * Copying data out works the same way.
2703 *
2704 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
2705 * automatically initializes in and out iovs by decoding @cmd with
2706 * _IOC_* macros and the server is not allowed to request RETRY. This
2707 * limits ioctl data transfers to well-formed ioctls and is the forced
2708 * behavior for all FUSE servers.
2709 */
Tejun Heo08cbf542009-04-14 10:54:53 +09002710long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
2711 unsigned int flags)
Tejun Heo59efec72008-11-26 12:03:55 +01002712{
Tejun Heo59efec72008-11-26 12:03:55 +01002713 struct fuse_file *ff = file->private_data;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002714 struct fuse_conn *fc = ff->fc;
Tejun Heo59efec72008-11-26 12:03:55 +01002715 struct fuse_ioctl_in inarg = {
2716 .fh = ff->fh,
2717 .cmd = cmd,
2718 .arg = arg,
2719 .flags = flags
2720 };
2721 struct fuse_ioctl_out outarg;
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002722 struct iovec *iov_page = NULL;
Tejun Heo59efec72008-11-26 12:03:55 +01002723 struct iovec *in_iov = NULL, *out_iov = NULL;
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002724 unsigned int in_iovs = 0, out_iovs = 0, max_pages;
2725 size_t in_size, out_size, c;
2726 ssize_t transferred;
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002727 int err, i;
2728 struct iov_iter ii;
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002729 struct fuse_args_pages ap = {};
Tejun Heo59efec72008-11-26 12:03:55 +01002730
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002731#if BITS_PER_LONG == 32
2732 inarg.flags |= FUSE_IOCTL_32BIT;
2733#else
Ian Abbott6407f442019-04-24 15:14:11 +01002734 if (flags & FUSE_IOCTL_COMPAT) {
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002735 inarg.flags |= FUSE_IOCTL_32BIT;
Ian Abbott6407f442019-04-24 15:14:11 +01002736#ifdef CONFIG_X86_X32
2737 if (in_x32_syscall())
2738 inarg.flags |= FUSE_IOCTL_COMPAT_X32;
2739#endif
2740 }
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002741#endif
2742
Tejun Heo59efec72008-11-26 12:03:55 +01002743 /* assume all the iovs returned by client always fits in a page */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002744 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
Tejun Heo59efec72008-11-26 12:03:55 +01002745
Tejun Heo59efec72008-11-26 12:03:55 +01002746 err = -ENOMEM;
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002747 ap.pages = fuse_pages_alloc(fc->max_pages, GFP_KERNEL, &ap.descs);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002748 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002749 if (!ap.pages || !iov_page)
Tejun Heo59efec72008-11-26 12:03:55 +01002750 goto out;
2751
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002752 fuse_page_descs_length_init(ap.descs, 0, fc->max_pages);
2753
Tejun Heo59efec72008-11-26 12:03:55 +01002754 /*
2755 * If restricted, initialize IO parameters as encoded in @cmd.
2756 * RETRY from server is not allowed.
2757 */
2758 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002759 struct iovec *iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002760
Miklos Szeredic9f0523d2008-12-02 14:49:42 +01002761 iov->iov_base = (void __user *)arg;
Tejun Heo59efec72008-11-26 12:03:55 +01002762 iov->iov_len = _IOC_SIZE(cmd);
2763
2764 if (_IOC_DIR(cmd) & _IOC_WRITE) {
2765 in_iov = iov;
2766 in_iovs = 1;
2767 }
2768
2769 if (_IOC_DIR(cmd) & _IOC_READ) {
2770 out_iov = iov;
2771 out_iovs = 1;
2772 }
2773 }
2774
2775 retry:
2776 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
2777 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
2778
2779 /*
2780 * Out data can be used either for actual out data or iovs,
2781 * make sure there always is at least one page.
2782 */
2783 out_size = max_t(size_t, out_size, PAGE_SIZE);
2784 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
2785
2786 /* make sure there are enough buffer pages and init request with them */
2787 err = -ENOMEM;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002788 if (max_pages > fc->max_pages)
Tejun Heo59efec72008-11-26 12:03:55 +01002789 goto out;
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002790 while (ap.num_pages < max_pages) {
2791 ap.pages[ap.num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2792 if (!ap.pages[ap.num_pages])
Tejun Heo59efec72008-11-26 12:03:55 +01002793 goto out;
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002794 ap.num_pages++;
Tejun Heo59efec72008-11-26 12:03:55 +01002795 }
2796
Tejun Heo59efec72008-11-26 12:03:55 +01002797
2798 /* okay, let's send it to the client */
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002799 ap.args.opcode = FUSE_IOCTL;
2800 ap.args.nodeid = ff->nodeid;
2801 ap.args.in_numargs = 1;
2802 ap.args.in_args[0].size = sizeof(inarg);
2803 ap.args.in_args[0].value = &inarg;
Tejun Heo59efec72008-11-26 12:03:55 +01002804 if (in_size) {
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002805 ap.args.in_numargs++;
2806 ap.args.in_args[1].size = in_size;
2807 ap.args.in_pages = true;
Tejun Heo59efec72008-11-26 12:03:55 +01002808
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002809 err = -EFAULT;
2810 iov_iter_init(&ii, WRITE, in_iov, in_iovs, in_size);
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002811 for (i = 0; iov_iter_count(&ii) && !WARN_ON(i >= ap.num_pages); i++) {
2812 c = copy_page_from_iter(ap.pages[i], 0, PAGE_SIZE, &ii);
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002813 if (c != PAGE_SIZE && iov_iter_count(&ii))
2814 goto out;
2815 }
Tejun Heo59efec72008-11-26 12:03:55 +01002816 }
2817
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002818 ap.args.out_numargs = 2;
2819 ap.args.out_args[0].size = sizeof(outarg);
2820 ap.args.out_args[0].value = &outarg;
2821 ap.args.out_args[1].size = out_size;
2822 ap.args.out_pages = true;
2823 ap.args.out_argvar = true;
Tejun Heo59efec72008-11-26 12:03:55 +01002824
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002825 transferred = fuse_simple_request(fc, &ap.args);
2826 err = transferred;
2827 if (transferred < 0)
Tejun Heo59efec72008-11-26 12:03:55 +01002828 goto out;
2829
2830 /* did it ask for retry? */
2831 if (outarg.flags & FUSE_IOCTL_RETRY) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002832 void *vaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01002833
2834 /* no retry if in restricted mode */
2835 err = -EIO;
2836 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
2837 goto out;
2838
2839 in_iovs = outarg.in_iovs;
2840 out_iovs = outarg.out_iovs;
2841
2842 /*
2843 * Make sure things are in boundary, separate checks
2844 * are to protect against overflow.
2845 */
2846 err = -ENOMEM;
2847 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
2848 out_iovs > FUSE_IOCTL_MAX_IOV ||
2849 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
2850 goto out;
2851
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002852 vaddr = kmap_atomic(ap.pages[0]);
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002853 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002854 transferred, in_iovs + out_iovs,
2855 (flags & FUSE_IOCTL_COMPAT) != 0);
Cong Wang2408f6e2011-11-25 23:14:30 +08002856 kunmap_atomic(vaddr);
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002857 if (err)
2858 goto out;
Tejun Heo59efec72008-11-26 12:03:55 +01002859
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002860 in_iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002861 out_iov = in_iov + in_iovs;
2862
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002863 err = fuse_verify_ioctl_iov(fc, in_iov, in_iovs);
Miklos Szeredi75727772010-11-30 16:39:27 +01002864 if (err)
2865 goto out;
2866
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002867 err = fuse_verify_ioctl_iov(fc, out_iov, out_iovs);
Miklos Szeredi75727772010-11-30 16:39:27 +01002868 if (err)
2869 goto out;
2870
Tejun Heo59efec72008-11-26 12:03:55 +01002871 goto retry;
2872 }
2873
2874 err = -EIO;
2875 if (transferred > inarg.out_size)
2876 goto out;
2877
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002878 err = -EFAULT;
2879 iov_iter_init(&ii, READ, out_iov, out_iovs, transferred);
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002880 for (i = 0; iov_iter_count(&ii) && !WARN_ON(i >= ap.num_pages); i++) {
2881 c = copy_page_to_iter(ap.pages[i], 0, PAGE_SIZE, &ii);
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002882 if (c != PAGE_SIZE && iov_iter_count(&ii))
2883 goto out;
2884 }
2885 err = 0;
Tejun Heo59efec72008-11-26 12:03:55 +01002886 out:
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002887 free_page((unsigned long) iov_page);
Miklos Szeredi093f38a2019-09-10 15:04:09 +02002888 while (ap.num_pages)
2889 __free_page(ap.pages[--ap.num_pages]);
2890 kfree(ap.pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002891
2892 return err ? err : outarg.result;
2893}
Tejun Heo08cbf542009-04-14 10:54:53 +09002894EXPORT_SYMBOL_GPL(fuse_do_ioctl);
Tejun Heo59efec72008-11-26 12:03:55 +01002895
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002896long fuse_ioctl_common(struct file *file, unsigned int cmd,
2897 unsigned long arg, unsigned int flags)
Miklos Szeredid36f2482009-04-28 16:56:39 +02002898{
Al Viro6131ffa2013-02-27 16:59:05 -05002899 struct inode *inode = file_inode(file);
Miklos Szeredid36f2482009-04-28 16:56:39 +02002900 struct fuse_conn *fc = get_fuse_conn(inode);
2901
Anatol Pomozovc2132c12013-01-14 22:30:00 -08002902 if (!fuse_allow_current_process(fc))
Miklos Szeredid36f2482009-04-28 16:56:39 +02002903 return -EACCES;
2904
2905 if (is_bad_inode(inode))
2906 return -EIO;
2907
2908 return fuse_do_ioctl(file, cmd, arg, flags);
2909}
2910
Tejun Heo59efec72008-11-26 12:03:55 +01002911static long fuse_file_ioctl(struct file *file, unsigned int cmd,
2912 unsigned long arg)
2913{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002914 return fuse_ioctl_common(file, cmd, arg, 0);
Tejun Heo59efec72008-11-26 12:03:55 +01002915}
2916
2917static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
2918 unsigned long arg)
2919{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002920 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
Tejun Heo59efec72008-11-26 12:03:55 +01002921}
2922
Tejun Heo95668a62008-11-26 12:03:55 +01002923/*
2924 * All files which have been polled are linked to RB tree
2925 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2926 * find the matching one.
2927 */
2928static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2929 struct rb_node **parent_out)
2930{
2931 struct rb_node **link = &fc->polled_files.rb_node;
2932 struct rb_node *last = NULL;
2933
2934 while (*link) {
2935 struct fuse_file *ff;
2936
2937 last = *link;
2938 ff = rb_entry(last, struct fuse_file, polled_node);
2939
2940 if (kh < ff->kh)
2941 link = &last->rb_left;
2942 else if (kh > ff->kh)
2943 link = &last->rb_right;
2944 else
2945 return link;
2946 }
2947
2948 if (parent_out)
2949 *parent_out = last;
2950 return link;
2951}
2952
2953/*
2954 * The file is about to be polled. Make sure it's on the polled_files
2955 * RB tree. Note that files once added to the polled_files tree are
2956 * not removed before the file is released. This is because a file
2957 * polled once is likely to be polled again.
2958 */
2959static void fuse_register_polled_file(struct fuse_conn *fc,
2960 struct fuse_file *ff)
2961{
2962 spin_lock(&fc->lock);
2963 if (RB_EMPTY_NODE(&ff->polled_node)) {
Rajat Jainf3846262014-02-05 15:24:57 -08002964 struct rb_node **link, *uninitialized_var(parent);
Tejun Heo95668a62008-11-26 12:03:55 +01002965
2966 link = fuse_find_polled_node(fc, ff->kh, &parent);
2967 BUG_ON(*link);
2968 rb_link_node(&ff->polled_node, parent, link);
2969 rb_insert_color(&ff->polled_node, &fc->polled_files);
2970 }
2971 spin_unlock(&fc->lock);
2972}
2973
Al Viro076ccb72017-07-03 01:02:18 -04002974__poll_t fuse_file_poll(struct file *file, poll_table *wait)
Tejun Heo95668a62008-11-26 12:03:55 +01002975{
Tejun Heo95668a62008-11-26 12:03:55 +01002976 struct fuse_file *ff = file->private_data;
Miklos Szeredi797759a2009-04-28 16:56:41 +02002977 struct fuse_conn *fc = ff->fc;
Tejun Heo95668a62008-11-26 12:03:55 +01002978 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2979 struct fuse_poll_out outarg;
Miklos Szeredi70781872014-12-12 09:49:05 +01002980 FUSE_ARGS(args);
Tejun Heo95668a62008-11-26 12:03:55 +01002981 int err;
2982
2983 if (fc->no_poll)
2984 return DEFAULT_POLLMASK;
2985
2986 poll_wait(file, &ff->poll_wait, wait);
Al Viroc71d2272017-11-29 19:00:41 -05002987 inarg.events = mangle_poll(poll_requested_events(wait));
Tejun Heo95668a62008-11-26 12:03:55 +01002988
2989 /*
2990 * Ask for notification iff there's someone waiting for it.
2991 * The client may ignore the flag and always notify.
2992 */
2993 if (waitqueue_active(&ff->poll_wait)) {
2994 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2995 fuse_register_polled_file(fc, ff);
2996 }
2997
Miklos Szeredid5b48542019-09-10 15:04:08 +02002998 args.opcode = FUSE_POLL;
2999 args.nodeid = ff->nodeid;
3000 args.in_numargs = 1;
3001 args.in_args[0].size = sizeof(inarg);
3002 args.in_args[0].value = &inarg;
3003 args.out_numargs = 1;
3004 args.out_args[0].size = sizeof(outarg);
3005 args.out_args[0].value = &outarg;
Miklos Szeredi70781872014-12-12 09:49:05 +01003006 err = fuse_simple_request(fc, &args);
Tejun Heo95668a62008-11-26 12:03:55 +01003007
3008 if (!err)
Al Viroc71d2272017-11-29 19:00:41 -05003009 return demangle_poll(outarg.revents);
Tejun Heo95668a62008-11-26 12:03:55 +01003010 if (err == -ENOSYS) {
3011 fc->no_poll = 1;
3012 return DEFAULT_POLLMASK;
3013 }
Linus Torvaldsa9a08842018-02-11 14:34:03 -08003014 return EPOLLERR;
Tejun Heo95668a62008-11-26 12:03:55 +01003015}
Tejun Heo08cbf542009-04-14 10:54:53 +09003016EXPORT_SYMBOL_GPL(fuse_file_poll);
Tejun Heo95668a62008-11-26 12:03:55 +01003017
3018/*
3019 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
3020 * wakes up the poll waiters.
3021 */
3022int fuse_notify_poll_wakeup(struct fuse_conn *fc,
3023 struct fuse_notify_poll_wakeup_out *outarg)
3024{
3025 u64 kh = outarg->kh;
3026 struct rb_node **link;
3027
3028 spin_lock(&fc->lock);
3029
3030 link = fuse_find_polled_node(fc, kh, NULL);
3031 if (*link) {
3032 struct fuse_file *ff;
3033
3034 ff = rb_entry(*link, struct fuse_file, polled_node);
3035 wake_up_interruptible_sync(&ff->poll_wait);
3036 }
3037
3038 spin_unlock(&fc->lock);
3039 return 0;
3040}
3041
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04003042static void fuse_do_truncate(struct file *file)
3043{
3044 struct inode *inode = file->f_mapping->host;
3045 struct iattr attr;
3046
3047 attr.ia_valid = ATTR_SIZE;
3048 attr.ia_size = i_size_read(inode);
3049
3050 attr.ia_file = file;
3051 attr.ia_valid |= ATTR_FILE;
3052
Jan Kara62490332016-05-26 17:12:41 +02003053 fuse_do_setattr(file_dentry(file), &attr, file);
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04003054}
3055
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03003056static inline loff_t fuse_round_up(struct fuse_conn *fc, loff_t off)
Maxim Patlasove5c5f052013-05-30 16:41:34 +04003057{
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03003058 return round_up(off, fc->max_pages << PAGE_SHIFT);
Maxim Patlasove5c5f052013-05-30 16:41:34 +04003059}
3060
Anand Avati4273b792012-02-17 12:46:25 -05003061static ssize_t
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07003062fuse_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Anand Avati4273b792012-02-17 12:46:25 -05003063{
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01003064 DECLARE_COMPLETION_ONSTACK(wait);
Anand Avati4273b792012-02-17 12:46:25 -05003065 ssize_t ret = 0;
Miklos Szeredi60b9df72013-05-01 14:37:21 +02003066 struct file *file = iocb->ki_filp;
3067 struct fuse_file *ff = file->private_data;
Maxim Patlasove5c5f052013-05-30 16:41:34 +04003068 bool async_dio = ff->fc->async_dio;
Anand Avati4273b792012-02-17 12:46:25 -05003069 loff_t pos = 0;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003070 struct inode *inode;
3071 loff_t i_size;
Al Viroa6cbcd42014-03-04 22:38:00 -05003072 size_t count = iov_iter_count(iter);
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07003073 loff_t offset = iocb->ki_pos;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04003074 struct fuse_io_priv *io;
Anand Avati4273b792012-02-17 12:46:25 -05003075
Anand Avati4273b792012-02-17 12:46:25 -05003076 pos = offset;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003077 inode = file->f_mapping->host;
3078 i_size = i_size_read(inode);
Anand Avati4273b792012-02-17 12:46:25 -05003079
Omar Sandoval6f673762015-03-16 04:33:52 -07003080 if ((iov_iter_rw(iter) == READ) && (offset > i_size))
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00003081 return 0;
3082
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04003083 /* optimization for short read */
Omar Sandoval6f673762015-03-16 04:33:52 -07003084 if (async_dio && iov_iter_rw(iter) != WRITE && offset + count > i_size) {
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04003085 if (offset >= i_size)
3086 return 0;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03003087 iov_iter_truncate(iter, fuse_round_up(ff->fc, i_size - offset));
Al Viro6b775b12015-04-07 15:06:19 -04003088 count = iov_iter_count(iter);
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04003089 }
3090
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003091 io = kmalloc(sizeof(struct fuse_io_priv), GFP_KERNEL);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04003092 if (!io)
3093 return -ENOMEM;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003094 spin_lock_init(&io->lock);
Seth Forshee744742d2016-03-11 10:35:34 -06003095 kref_init(&io->refcnt);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003096 io->reqs = 1;
3097 io->bytes = -1;
3098 io->size = 0;
3099 io->offset = offset;
Omar Sandoval6f673762015-03-16 04:33:52 -07003100 io->write = (iov_iter_rw(iter) == WRITE);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003101 io->err = 0;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003102 /*
3103 * By default, we want to optimize all I/Os with async request
Miklos Szeredi60b9df72013-05-01 14:37:21 +02003104 * submission to the client filesystem if supported.
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003105 */
Maxim Patlasove5c5f052013-05-30 16:41:34 +04003106 io->async = async_dio;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003107 io->iocb = iocb;
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05303108 io->blocking = is_sync_kiocb(iocb);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003109
3110 /*
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05303111 * We cannot asynchronously extend the size of a file.
3112 * In such case the aio will behave exactly like sync io.
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003113 */
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05303114 if ((offset + count > i_size) && iov_iter_rw(iter) == WRITE)
3115 io->blocking = true;
Anand Avati4273b792012-02-17 12:46:25 -05003116
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05303117 if (io->async && io->blocking) {
Seth Forshee744742d2016-03-11 10:35:34 -06003118 /*
3119 * Additional reference to keep io around after
3120 * calling fuse_aio_complete()
3121 */
3122 kref_get(&io->refcnt);
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01003123 io->done = &wait;
Seth Forshee744742d2016-03-11 10:35:34 -06003124 }
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01003125
Omar Sandoval6f673762015-03-16 04:33:52 -07003126 if (iov_iter_rw(iter) == WRITE) {
Al Viro6b775b12015-04-07 15:06:19 -04003127 ret = fuse_direct_io(io, iter, &pos, FUSE_DIO_WRITE);
Al Viro812408f2015-03-30 22:15:58 -04003128 fuse_invalidate_attr(inode);
3129 } else {
Al Virod22a9432014-03-16 15:50:47 -04003130 ret = __fuse_direct_read(io, iter, &pos);
Al Viro812408f2015-03-30 22:15:58 -04003131 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04003132
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003133 if (io->async) {
Lukas Czernerebacb812018-11-09 14:51:46 +01003134 bool blocking = io->blocking;
3135
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003136 fuse_aio_complete(io, ret < 0 ? ret : 0, -1);
3137
3138 /* we have a non-extending, async request, so return */
Lukas Czernerebacb812018-11-09 14:51:46 +01003139 if (!blocking)
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003140 return -EIOCBQUEUED;
3141
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01003142 wait_for_completion(&wait);
3143 ret = fuse_get_res_by_io(io);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04003144 }
3145
Seth Forshee744742d2016-03-11 10:35:34 -06003146 kref_put(&io->refcnt, fuse_io_release);
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01003147
Omar Sandoval6f673762015-03-16 04:33:52 -07003148 if (iov_iter_rw(iter) == WRITE) {
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04003149 if (ret > 0)
3150 fuse_write_update_size(inode, pos);
3151 else if (ret < 0 && offset + count > i_size)
3152 fuse_do_truncate(file);
3153 }
Anand Avati4273b792012-02-17 12:46:25 -05003154
3155 return ret;
3156}
3157
Miklos Szeredi26eb3ba2019-05-28 13:22:50 +02003158static int fuse_writeback_range(struct inode *inode, loff_t start, loff_t end)
3159{
3160 int err = filemap_write_and_wait_range(inode->i_mapping, start, end);
3161
3162 if (!err)
3163 fuse_sync_writes(inode);
3164
3165 return err;
3166}
3167
Miklos Szeredicdadb112012-11-10 16:55:56 +01003168static long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
3169 loff_t length)
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003170{
3171 struct fuse_file *ff = file->private_data;
Miklos Szeredi1c682712014-12-12 10:04:51 +01003172 struct inode *inode = file_inode(file);
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04003173 struct fuse_inode *fi = get_fuse_inode(inode);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003174 struct fuse_conn *fc = ff->fc;
Miklos Szeredi70781872014-12-12 09:49:05 +01003175 FUSE_ARGS(args);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003176 struct fuse_fallocate_in inarg = {
3177 .fh = ff->fh,
3178 .offset = offset,
3179 .length = length,
3180 .mode = mode
3181 };
3182 int err;
Maxim Patlasov14c14412013-06-13 12:16:39 +04003183 bool lock_inode = !(mode & FALLOC_FL_KEEP_SIZE) ||
3184 (mode & FALLOC_FL_PUNCH_HOLE);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003185
Miklos Szeredi4adb8302014-04-28 14:19:21 +02003186 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
3187 return -EOPNOTSUPP;
3188
Miklos Szeredi519c6042012-04-26 10:56:36 +02003189 if (fc->no_fallocate)
3190 return -EOPNOTSUPP;
3191
Maxim Patlasov14c14412013-06-13 12:16:39 +04003192 if (lock_inode) {
Al Viro59551022016-01-22 15:40:57 -05003193 inode_lock(inode);
Maxim Patlasovbde52782013-09-13 19:19:54 +04003194 if (mode & FALLOC_FL_PUNCH_HOLE) {
3195 loff_t endbyte = offset + length - 1;
Miklos Szeredi26eb3ba2019-05-28 13:22:50 +02003196
3197 err = fuse_writeback_range(inode, offset, endbyte);
Maxim Patlasovbde52782013-09-13 19:19:54 +04003198 if (err)
3199 goto out;
Maxim Patlasovbde52782013-09-13 19:19:54 +04003200 }
Brian Foster3634a632013-05-17 09:30:32 -04003201 }
3202
Liu Bo0cbade02019-04-18 04:04:41 +08003203 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
3204 offset + length > i_size_read(inode)) {
3205 err = inode_newsize_ok(inode, offset + length);
3206 if (err)
Miklos Szeredi35d6fcb2019-05-27 11:42:07 +02003207 goto out;
Liu Bo0cbade02019-04-18 04:04:41 +08003208 }
3209
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04003210 if (!(mode & FALLOC_FL_KEEP_SIZE))
3211 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
3212
Miklos Szeredid5b48542019-09-10 15:04:08 +02003213 args.opcode = FUSE_FALLOCATE;
3214 args.nodeid = ff->nodeid;
3215 args.in_numargs = 1;
3216 args.in_args[0].size = sizeof(inarg);
3217 args.in_args[0].value = &inarg;
Miklos Szeredi70781872014-12-12 09:49:05 +01003218 err = fuse_simple_request(fc, &args);
Miklos Szeredi519c6042012-04-26 10:56:36 +02003219 if (err == -ENOSYS) {
3220 fc->no_fallocate = 1;
3221 err = -EOPNOTSUPP;
3222 }
Brian Fosterbee6c302013-05-17 15:27:34 -04003223 if (err)
3224 goto out;
3225
3226 /* we could have extended the file */
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04003227 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
3228 bool changed = fuse_write_update_size(inode, offset + length);
3229
Miklos Szeredi93d22692014-04-28 14:19:22 +02003230 if (changed && fc->writeback_cache)
3231 file_update_time(file);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04003232 }
Brian Fosterbee6c302013-05-17 15:27:34 -04003233
3234 if (mode & FALLOC_FL_PUNCH_HOLE)
3235 truncate_pagecache_range(inode, offset, offset + length - 1);
3236
3237 fuse_invalidate_attr(inode);
3238
Brian Foster3634a632013-05-17 09:30:32 -04003239out:
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04003240 if (!(mode & FALLOC_FL_KEEP_SIZE))
3241 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
3242
Maxim Patlasovbde52782013-09-13 19:19:54 +04003243 if (lock_inode)
Al Viro59551022016-01-22 15:40:57 -05003244 inode_unlock(inode);
Brian Foster3634a632013-05-17 09:30:32 -04003245
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003246 return err;
3247}
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003248
Dave Chinner64bf5ff2019-06-05 08:04:47 -07003249static ssize_t __fuse_copy_file_range(struct file *file_in, loff_t pos_in,
3250 struct file *file_out, loff_t pos_out,
3251 size_t len, unsigned int flags)
Niels de Vos88bc7d52018-08-21 14:36:31 +02003252{
3253 struct fuse_file *ff_in = file_in->private_data;
3254 struct fuse_file *ff_out = file_out->private_data;
Miklos Szeredia2bc9232019-05-28 13:22:50 +02003255 struct inode *inode_in = file_inode(file_in);
Niels de Vos88bc7d52018-08-21 14:36:31 +02003256 struct inode *inode_out = file_inode(file_out);
3257 struct fuse_inode *fi_out = get_fuse_inode(inode_out);
3258 struct fuse_conn *fc = ff_in->fc;
3259 FUSE_ARGS(args);
3260 struct fuse_copy_file_range_in inarg = {
3261 .fh_in = ff_in->fh,
3262 .off_in = pos_in,
3263 .nodeid_out = ff_out->nodeid,
3264 .fh_out = ff_out->fh,
3265 .off_out = pos_out,
3266 .len = len,
3267 .flags = flags
3268 };
3269 struct fuse_write_out outarg;
3270 ssize_t err;
3271 /* mark unstable when write-back is not used, and file_out gets
3272 * extended */
3273 bool is_unstable = (!fc->writeback_cache) &&
3274 ((pos_out + len) > inode_out->i_size);
3275
3276 if (fc->no_copy_file_range)
3277 return -EOPNOTSUPP;
3278
Amir Goldstein5dae2222019-06-05 08:04:50 -07003279 if (file_inode(file_in)->i_sb != file_inode(file_out)->i_sb)
3280 return -EXDEV;
3281
Miklos Szeredia2bc9232019-05-28 13:22:50 +02003282 if (fc->writeback_cache) {
3283 inode_lock(inode_in);
Miklos Szeredi26eb3ba2019-05-28 13:22:50 +02003284 err = fuse_writeback_range(inode_in, pos_in, pos_in + len);
Miklos Szeredia2bc9232019-05-28 13:22:50 +02003285 inode_unlock(inode_in);
3286 if (err)
3287 return err;
3288 }
3289
Niels de Vos88bc7d52018-08-21 14:36:31 +02003290 inode_lock(inode_out);
3291
Amir Goldsteinfe0da9c2019-06-05 08:04:51 -07003292 err = file_modified(file_out);
3293 if (err)
3294 goto out;
3295
Niels de Vos88bc7d52018-08-21 14:36:31 +02003296 if (fc->writeback_cache) {
Miklos Szeredi26eb3ba2019-05-28 13:22:50 +02003297 err = fuse_writeback_range(inode_out, pos_out, pos_out + len);
Niels de Vos88bc7d52018-08-21 14:36:31 +02003298 if (err)
3299 goto out;
Niels de Vos88bc7d52018-08-21 14:36:31 +02003300 }
3301
3302 if (is_unstable)
3303 set_bit(FUSE_I_SIZE_UNSTABLE, &fi_out->state);
3304
Miklos Szeredid5b48542019-09-10 15:04:08 +02003305 args.opcode = FUSE_COPY_FILE_RANGE;
3306 args.nodeid = ff_in->nodeid;
3307 args.in_numargs = 1;
3308 args.in_args[0].size = sizeof(inarg);
3309 args.in_args[0].value = &inarg;
3310 args.out_numargs = 1;
3311 args.out_args[0].size = sizeof(outarg);
3312 args.out_args[0].value = &outarg;
Niels de Vos88bc7d52018-08-21 14:36:31 +02003313 err = fuse_simple_request(fc, &args);
3314 if (err == -ENOSYS) {
3315 fc->no_copy_file_range = 1;
3316 err = -EOPNOTSUPP;
3317 }
3318 if (err)
3319 goto out;
3320
3321 if (fc->writeback_cache) {
3322 fuse_write_update_size(inode_out, pos_out + outarg.size);
3323 file_update_time(file_out);
3324 }
3325
3326 fuse_invalidate_attr(inode_out);
3327
3328 err = outarg.size;
3329out:
3330 if (is_unstable)
3331 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi_out->state);
3332
3333 inode_unlock(inode_out);
Amir Goldsteinfe0da9c2019-06-05 08:04:51 -07003334 file_accessed(file_in);
Niels de Vos88bc7d52018-08-21 14:36:31 +02003335
3336 return err;
3337}
3338
Dave Chinner64bf5ff2019-06-05 08:04:47 -07003339static ssize_t fuse_copy_file_range(struct file *src_file, loff_t src_off,
3340 struct file *dst_file, loff_t dst_off,
3341 size_t len, unsigned int flags)
3342{
3343 ssize_t ret;
3344
3345 ret = __fuse_copy_file_range(src_file, src_off, dst_file, dst_off,
3346 len, flags);
3347
Amir Goldstein5dae2222019-06-05 08:04:50 -07003348 if (ret == -EOPNOTSUPP || ret == -EXDEV)
Dave Chinner64bf5ff2019-06-05 08:04:47 -07003349 ret = generic_copy_file_range(src_file, src_off, dst_file,
3350 dst_off, len, flags);
3351 return ret;
3352}
3353
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08003354static const struct file_operations fuse_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07003355 .llseek = fuse_file_llseek,
Al Viro37c20f12014-04-02 14:47:09 -04003356 .read_iter = fuse_file_read_iter,
Al Viro84c3d552014-04-03 14:33:23 -04003357 .write_iter = fuse_file_write_iter,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003358 .mmap = fuse_file_mmap,
3359 .open = fuse_open,
3360 .flush = fuse_flush,
3361 .release = fuse_release,
3362 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07003363 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07003364 .flock = fuse_file_flock,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02003365 .splice_read = generic_file_splice_read,
Miklos Szeredi3c3db092019-01-24 10:40:17 +01003366 .splice_write = iter_file_splice_write,
Tejun Heo59efec72008-11-26 12:03:55 +01003367 .unlocked_ioctl = fuse_file_ioctl,
3368 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01003369 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003370 .fallocate = fuse_file_fallocate,
Niels de Vos88bc7d52018-08-21 14:36:31 +02003371 .copy_file_range = fuse_copy_file_range,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003372};
3373
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07003374static const struct address_space_operations fuse_file_aops = {
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003375 .readpage = fuse_readpage,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003376 .writepage = fuse_writepage,
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04003377 .writepages = fuse_writepages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003378 .launder_page = fuse_launder_page,
Miklos Szeredidb50b962005-09-09 13:10:33 -07003379 .readpages = fuse_readpages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003380 .set_page_dirty = __set_page_dirty_nobuffers,
Miklos Szeredib2d22722006-12-06 20:35:51 -08003381 .bmap = fuse_bmap,
Anand Avati4273b792012-02-17 12:46:25 -05003382 .direct_IO = fuse_direct_IO,
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04003383 .write_begin = fuse_write_begin,
3384 .write_end = fuse_write_end,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003385};
3386
3387void fuse_init_file_inode(struct inode *inode)
3388{
Miklos Szerediab2257e2018-10-01 10:07:05 +02003389 struct fuse_inode *fi = get_fuse_inode(inode);
3390
Miklos Szeredi45323fb2005-09-09 13:10:37 -07003391 inode->i_fop = &fuse_file_operations;
3392 inode->i_data.a_ops = &fuse_file_aops;
Miklos Szerediab2257e2018-10-01 10:07:05 +02003393
3394 INIT_LIST_HEAD(&fi->write_files);
3395 INIT_LIST_HEAD(&fi->queued_writes);
3396 fi->writectr = 0;
3397 init_waitqueue_head(&fi->page_waitq);
3398 INIT_LIST_HEAD(&fi->writepages);
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003399}