blob: b0c32a74082fca01a081d9ff7cc66fa2d890046b [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
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080022static const struct file_operations fuse_direct_io_file_operations;
Miklos Szeredi45323fb2005-09-09 13:10:37 -070023
Miklos Szeredi91fe96b2009-04-28 16:56:37 +020024static int fuse_send_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
25 int opcode, struct fuse_open_out *outargp)
Miklos Szeredib6aeade2005-09-09 13:10:30 -070026{
Miklos Szeredib6aeade2005-09-09 13:10:30 -070027 struct fuse_open_in inarg;
Miklos Szeredi70781872014-12-12 09:49:05 +010028 FUSE_ARGS(args);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080029
30 memset(&inarg, 0, sizeof(inarg));
Miklos Szeredi6ff958e2007-10-18 03:07:02 -070031 inarg.flags = file->f_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
32 if (!fc->atomic_o_trunc)
33 inarg.flags &= ~O_TRUNC;
Miklos Szeredi70781872014-12-12 09:49:05 +010034 args.in.h.opcode = opcode;
35 args.in.h.nodeid = nodeid;
36 args.in.numargs = 1;
37 args.in.args[0].size = sizeof(inarg);
38 args.in.args[0].value = &inarg;
39 args.out.numargs = 1;
40 args.out.args[0].size = sizeof(*outargp);
41 args.out.args[0].value = outargp;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080042
Miklos Szeredi70781872014-12-12 09:49:05 +010043 return fuse_simple_request(fc, &args);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080044}
45
Tejun Heoacf99432008-11-26 12:03:55 +010046struct fuse_file *fuse_file_alloc(struct fuse_conn *fc)
Miklos Szeredifd72faa2005-11-07 00:59:51 -080047{
48 struct fuse_file *ff;
Tejun Heo6b2db282009-04-14 10:54:49 +090049
Mateusz Jurczyk68227c02017-06-07 12:26:49 +020050 ff = kzalloc(sizeof(struct fuse_file), GFP_KERNEL);
Tejun Heo6b2db282009-04-14 10:54:49 +090051 if (unlikely(!ff))
52 return NULL;
53
Miklos Szeredida5e4712009-04-28 16:56:36 +020054 ff->fc = fc;
Maxim Patlasov4250c062012-10-26 19:48:07 +040055 ff->reserved_req = fuse_request_alloc(0);
Tejun Heo6b2db282009-04-14 10:54:49 +090056 if (unlikely(!ff->reserved_req)) {
57 kfree(ff);
58 return NULL;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080059 }
Tejun Heo6b2db282009-04-14 10:54:49 +090060
61 INIT_LIST_HEAD(&ff->write_entry);
Miklos Szeredi5d7bc7e2018-10-01 10:07:04 +020062 mutex_init(&ff->readdir.lock);
Elena Reshetova4e8c2eb2017-03-03 11:04:03 +020063 refcount_set(&ff->count, 1);
Tejun Heo6b2db282009-04-14 10:54:49 +090064 RB_CLEAR_NODE(&ff->polled_node);
65 init_waitqueue_head(&ff->poll_wait);
66
67 spin_lock(&fc->lock);
68 ff->kh = ++fc->khctr;
69 spin_unlock(&fc->lock);
70
Miklos Szeredifd72faa2005-11-07 00:59:51 -080071 return ff;
72}
73
74void fuse_file_free(struct fuse_file *ff)
75{
Miklos Szeredi33649c92006-06-25 05:48:52 -070076 fuse_request_free(ff->reserved_req);
Miklos Szeredi5d7bc7e2018-10-01 10:07:04 +020077 mutex_destroy(&ff->readdir.lock);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080078 kfree(ff);
79}
80
Miklos Szeredi267d8442017-02-22 20:08:25 +010081static struct fuse_file *fuse_file_get(struct fuse_file *ff)
Miklos Szeredic756e0a2007-10-16 23:31:00 -070082{
Elena Reshetova4e8c2eb2017-03-03 11:04:03 +020083 refcount_inc(&ff->count);
Miklos Szeredic756e0a2007-10-16 23:31:00 -070084 return ff;
85}
86
Miklos Szeredi5a18ec12011-02-25 14:44:58 +010087static void fuse_release_end(struct fuse_conn *fc, struct fuse_req *req)
88{
Miklos Szeredibaebccb2014-12-12 09:49:04 +010089 iput(req->misc.release.inode);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +010090}
91
Chad Austin2e64ff12018-12-10 10:54:52 -080092static void fuse_file_put(struct fuse_file *ff, bool sync, bool isdir)
Miklos Szeredic756e0a2007-10-16 23:31:00 -070093{
Elena Reshetova4e8c2eb2017-03-03 11:04:03 +020094 if (refcount_dec_and_test(&ff->count)) {
Miklos Szeredic756e0a2007-10-16 23:31:00 -070095 struct fuse_req *req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +020096
Chad Austin2e64ff12018-12-10 10:54:52 -080097 if (ff->fc->no_open && !isdir) {
Andrew Gallagher7678ac52013-11-05 16:05:52 +010098 /*
99 * Drop the release request when client does not
100 * implement 'open'
101 */
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200102 __clear_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredibaebccb2014-12-12 09:49:04 +0100103 iput(req->misc.release.inode);
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100104 fuse_put_request(ff->fc, req);
105 } else if (sync) {
Miklos Szeredi2e38bea2017-02-22 20:08:25 +0100106 __set_bit(FR_FORCE, &req->flags);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200107 __clear_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100108 fuse_request_send(ff->fc, req);
Miklos Szeredibaebccb2014-12-12 09:49:04 +0100109 iput(req->misc.release.inode);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100110 fuse_put_request(ff->fc, req);
111 } else {
112 req->end = fuse_release_end;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200113 __set_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100114 fuse_request_send_background(ff->fc, req);
115 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700116 kfree(ff);
117 }
118}
119
Tejun Heo08cbf542009-04-14 10:54:53 +0900120int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
121 bool isdir)
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200122{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200123 struct fuse_file *ff;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200124 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
125
126 ff = fuse_file_alloc(fc);
127 if (!ff)
128 return -ENOMEM;
129
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100130 ff->fh = 0;
131 ff->open_flags = FOPEN_KEEP_CACHE; /* Default for no-open */
132 if (!fc->no_open || isdir) {
133 struct fuse_open_out outarg;
134 int err;
135
136 err = fuse_send_open(fc, nodeid, file, opcode, &outarg);
137 if (!err) {
138 ff->fh = outarg.fh;
139 ff->open_flags = outarg.open_flags;
140
141 } else if (err != -ENOSYS || isdir) {
142 fuse_file_free(ff);
143 return err;
144 } else {
145 fc->no_open = 1;
146 }
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200147 }
148
149 if (isdir)
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100150 ff->open_flags &= ~FOPEN_DIRECT_IO;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200151
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200152 ff->nodeid = nodeid;
Miklos Szeredi267d8442017-02-22 20:08:25 +0100153 file->private_data = ff;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200154
155 return 0;
156}
Tejun Heo08cbf542009-04-14 10:54:53 +0900157EXPORT_SYMBOL_GPL(fuse_do_open);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200158
Pavel Emelyanov650b22b2013-10-10 17:10:04 +0400159static void fuse_link_write_file(struct file *file)
160{
161 struct inode *inode = file_inode(file);
162 struct fuse_conn *fc = get_fuse_conn(inode);
163 struct fuse_inode *fi = get_fuse_inode(inode);
164 struct fuse_file *ff = file->private_data;
165 /*
166 * file may be written through mmap, so chain it onto the
167 * inodes's write_file list
168 */
169 spin_lock(&fc->lock);
170 if (list_empty(&ff->write_entry))
171 list_add(&ff->write_entry, &fi->write_files);
172 spin_unlock(&fc->lock);
173}
174
Miklos Szeredic7b71432009-04-28 16:56:37 +0200175void fuse_finish_open(struct inode *inode, struct file *file)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800176{
Miklos Szeredic7b71432009-04-28 16:56:37 +0200177 struct fuse_file *ff = file->private_data;
Ken Sumralla0822c52010-11-24 12:57:00 -0800178 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200179
180 if (ff->open_flags & FOPEN_DIRECT_IO)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800181 file->f_op = &fuse_direct_io_file_operations;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200182 if (!(ff->open_flags & FOPEN_KEEP_CACHE))
Miklos Szeredib1009972007-10-16 23:31:01 -0700183 invalidate_inode_pages2(inode->i_mapping);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200184 if (ff->open_flags & FOPEN_NONSEEKABLE)
Tejun Heoa7c1b992008-10-16 16:08:57 +0200185 nonseekable_open(inode, file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800186 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
187 struct fuse_inode *fi = get_fuse_inode(inode);
188
189 spin_lock(&fc->lock);
190 fi->attr_version = ++fc->attr_version;
191 i_size_write(inode, 0);
192 spin_unlock(&fc->lock);
193 fuse_invalidate_attr(inode);
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200194 if (fc->writeback_cache)
195 file_update_time(file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800196 }
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +0400197 if ((file->f_mode & FMODE_WRITE) && fc->writeback_cache)
198 fuse_link_write_file(file);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800199}
200
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200201int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800202{
Tejun Heoacf99432008-11-26 12:03:55 +0100203 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700204 int err;
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200205 bool lock_inode = (file->f_flags & O_TRUNC) &&
206 fc->atomic_o_trunc &&
207 fc->writeback_cache;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700208
209 err = generic_file_open(inode, file);
210 if (err)
211 return err;
212
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200213 if (lock_inode)
Al Viro59551022016-01-22 15:40:57 -0500214 inode_lock(inode);
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200215
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200216 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700217
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200218 if (!err)
219 fuse_finish_open(inode, file);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200220
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200221 if (lock_inode)
Al Viro59551022016-01-22 15:40:57 -0500222 inode_unlock(inode);
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200223
224 return err;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700225}
226
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200227static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800228{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200229 struct fuse_conn *fc = ff->fc;
Miklos Szeredi33649c92006-06-25 05:48:52 -0700230 struct fuse_req *req = ff->reserved_req;
Miklos Szeredib57d4262008-02-06 01:38:39 -0800231 struct fuse_release_in *inarg = &req->misc.release.in;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700232
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200233 spin_lock(&fc->lock);
234 list_del(&ff->write_entry);
235 if (!RB_EMPTY_NODE(&ff->polled_node))
236 rb_erase(&ff->polled_node, &fc->polled_files);
237 spin_unlock(&fc->lock);
238
Bryan Green357ccf22011-03-01 16:43:52 -0800239 wake_up_interruptible_all(&ff->poll_wait);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200240
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700241 inarg->fh = ff->fh;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800242 inarg->flags = flags;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700243 req->in.h.opcode = opcode;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200244 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700245 req->in.numargs = 1;
246 req->in.args[0].size = sizeof(struct fuse_release_in);
247 req->in.args[0].value = inarg;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800248}
249
Chad Austin2e64ff12018-12-10 10:54:52 -0800250void fuse_release_common(struct file *file, bool isdir)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800251{
Miklos Szeredi9a87ad32017-02-22 20:08:25 +0100252 struct fuse_file *ff = file->private_data;
253 struct fuse_req *req = ff->reserved_req;
Chad Austin2e64ff12018-12-10 10:54:52 -0800254 int opcode = isdir ? FUSE_RELEASEDIR : FUSE_RELEASE;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -0700255
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200256 fuse_prepare_release(ff, file->f_flags, opcode);
Tejun Heo95668a62008-11-26 12:03:55 +0100257
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200258 if (ff->flock) {
259 struct fuse_release_in *inarg = &req->misc.release.in;
260 inarg->release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
261 inarg->lock_owner = fuse_lock_owner_id(ff->fc,
262 (fl_owner_t) file);
263 }
Miklos Szeredibaebccb2014-12-12 09:49:04 +0100264 /* Hold inode until release is finished */
265 req->misc.release.inode = igrab(file_inode(file));
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700266
Tejun Heo6b2db282009-04-14 10:54:49 +0900267 /*
268 * Normally this will send the RELEASE request, however if
269 * some asynchronous READ or WRITE requests are outstanding,
270 * the sending will be delayed.
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100271 *
272 * Make the release synchronous if this is a fuseblk mount,
273 * synchronous RELEASE is allowed (and desirable) in this case
274 * because the server can be trusted not to screw up.
Tejun Heo6b2db282009-04-14 10:54:49 +0900275 */
Chad Austin2e64ff12018-12-10 10:54:52 -0800276 fuse_file_put(ff, ff->fc->destroy_req != NULL, isdir);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700277}
278
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700279static int fuse_open(struct inode *inode, struct file *file)
280{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200281 return fuse_open_common(inode, file, false);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700282}
283
284static int fuse_release(struct inode *inode, struct file *file)
285{
Pavel Emelyanove7cc133c2013-10-10 17:19:06 +0400286 struct fuse_conn *fc = get_fuse_conn(inode);
287
288 /* see fuse_vma_close() for !writeback_cache case */
289 if (fc->writeback_cache)
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200290 write_inode_now(inode, 1);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400291
Chad Austin2e64ff12018-12-10 10:54:52 -0800292 fuse_release_common(file, false);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200293
294 /* return value is ignored by VFS */
295 return 0;
296}
297
298void fuse_sync_release(struct fuse_file *ff, int flags)
299{
Elena Reshetova4e8c2eb2017-03-03 11:04:03 +0200300 WARN_ON(refcount_read(&ff->count) > 1);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200301 fuse_prepare_release(ff, flags, FUSE_RELEASE);
Miklos Szeredi267d8442017-02-22 20:08:25 +0100302 /*
303 * iput(NULL) is a no-op and since the refcount is 1 and everything's
304 * synchronous, we are fine with not doing igrab() here"
305 */
Chad Austin2e64ff12018-12-10 10:54:52 -0800306 fuse_file_put(ff, true, false);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700307}
Tejun Heo08cbf542009-04-14 10:54:53 +0900308EXPORT_SYMBOL_GPL(fuse_sync_release);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700309
Miklos Szeredi71421252006-06-25 05:48:52 -0700310/*
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700311 * Scramble the ID space with XTEA, so that the value of the files_struct
312 * pointer is not exposed to userspace.
Miklos Szeredi71421252006-06-25 05:48:52 -0700313 */
Miklos Szeredif3332112007-10-18 03:07:04 -0700314u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
Miklos Szeredi71421252006-06-25 05:48:52 -0700315{
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700316 u32 *k = fc->scramble_key;
317 u64 v = (unsigned long) id;
318 u32 v0 = v;
319 u32 v1 = v >> 32;
320 u32 sum = 0;
321 int i;
322
323 for (i = 0; i < 32; i++) {
324 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
325 sum += 0x9E3779B9;
326 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
327 }
328
329 return (u64) v0 + ((u64) v1 << 32);
Miklos Szeredi71421252006-06-25 05:48:52 -0700330}
331
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +0100332static struct fuse_req *fuse_find_writeback(struct fuse_inode *fi,
333 pgoff_t idx_from, pgoff_t idx_to)
334{
335 struct fuse_req *req;
336
337 list_for_each_entry(req, &fi->writepages, writepages_entry) {
338 pgoff_t curr_index;
339
340 WARN_ON(get_fuse_inode(req->inode) != fi);
341 curr_index = req->misc.write.in.offset >> PAGE_SHIFT;
342 if (idx_from < curr_index + req->num_pages &&
343 curr_index <= idx_to) {
344 return req;
345 }
346 }
347 return NULL;
348}
349
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700350/*
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400351 * Check if any page in a range is under writeback
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700352 *
353 * This is currently done by walking the list of writepage requests
354 * for the inode, which can be pretty inefficient.
355 */
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400356static bool fuse_range_is_writeback(struct inode *inode, pgoff_t idx_from,
357 pgoff_t idx_to)
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700358{
359 struct fuse_conn *fc = get_fuse_conn(inode);
360 struct fuse_inode *fi = get_fuse_inode(inode);
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +0100361 bool found;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700362
363 spin_lock(&fc->lock);
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +0100364 found = fuse_find_writeback(fi, idx_from, idx_to);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700365 spin_unlock(&fc->lock);
366
367 return found;
368}
369
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400370static inline bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
371{
372 return fuse_range_is_writeback(inode, index, index);
373}
374
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700375/*
376 * Wait for page writeback to be completed.
377 *
378 * Since fuse doesn't rely on the VM writeback tracking, this has to
379 * use some other means.
380 */
381static int fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
382{
383 struct fuse_inode *fi = get_fuse_inode(inode);
384
385 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
386 return 0;
387}
388
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400389/*
390 * Wait for all pending writepages on the inode to finish.
391 *
392 * This is currently done by blocking further writes with FUSE_NOWRITE
393 * and waiting for all sent writes to complete.
394 *
395 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
396 * could conflict with truncation.
397 */
398static void fuse_sync_writes(struct inode *inode)
399{
400 fuse_set_nowrite(inode);
401 fuse_release_nowrite(inode);
402}
403
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -0700404static int fuse_flush(struct file *file, fl_owner_t id)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700405{
Al Viro6131ffa2013-02-27 16:59:05 -0500406 struct inode *inode = file_inode(file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700407 struct fuse_conn *fc = get_fuse_conn(inode);
408 struct fuse_file *ff = file->private_data;
409 struct fuse_req *req;
410 struct fuse_flush_in inarg;
411 int err;
412
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800413 if (is_bad_inode(inode))
414 return -EIO;
415
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700416 if (fc->no_flush)
417 return 0;
418
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200419 err = write_inode_now(inode, 1);
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400420 if (err)
421 return err;
422
Al Viro59551022016-01-22 15:40:57 -0500423 inode_lock(inode);
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400424 fuse_sync_writes(inode);
Al Viro59551022016-01-22 15:40:57 -0500425 inode_unlock(inode);
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400426
Miklos Szeredi4a7f4e82016-07-29 14:10:57 +0200427 err = filemap_check_errors(file->f_mapping);
Maxim Patlasov9ebce592016-07-19 18:12:26 -0700428 if (err)
429 return err;
430
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400431 req = fuse_get_req_nofail_nopages(fc, file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700432 memset(&inarg, 0, sizeof(inarg));
433 inarg.fh = ff->fh;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700434 inarg.lock_owner = fuse_lock_owner_id(fc, id);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700435 req->in.h.opcode = FUSE_FLUSH;
436 req->in.h.nodeid = get_node_id(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700437 req->in.numargs = 1;
438 req->in.args[0].size = sizeof(inarg);
439 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200440 __set_bit(FR_FORCE, &req->flags);
Tejun Heob93f8582008-11-26 12:03:55 +0100441 fuse_request_send(fc, req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700442 err = req->out.h.error;
443 fuse_put_request(fc, req);
444 if (err == -ENOSYS) {
445 fc->no_flush = 1;
446 err = 0;
447 }
448 return err;
449}
450
Josef Bacik02c24a82011-07-16 20:44:56 -0400451int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
Miklos Szeredia9c2d1e2018-12-03 10:14:43 +0100452 int datasync, int opcode)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700453{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200454 struct inode *inode = file->f_mapping->host;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700455 struct fuse_conn *fc = get_fuse_conn(inode);
456 struct fuse_file *ff = file->private_data;
Miklos Szeredi70781872014-12-12 09:49:05 +0100457 FUSE_ARGS(args);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700458 struct fuse_fsync_in inarg;
Miklos Szeredia9c2d1e2018-12-03 10:14:43 +0100459
460 memset(&inarg, 0, sizeof(inarg));
461 inarg.fh = ff->fh;
462 inarg.fsync_flags = datasync ? 1 : 0;
463 args.in.h.opcode = opcode;
464 args.in.h.nodeid = get_node_id(inode);
465 args.in.numargs = 1;
466 args.in.args[0].size = sizeof(inarg);
467 args.in.args[0].value = &inarg;
468 return fuse_simple_request(fc, &args);
469}
470
471static int fuse_fsync(struct file *file, loff_t start, loff_t end,
472 int datasync)
473{
474 struct inode *inode = file->f_mapping->host;
475 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700476 int err;
477
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800478 if (is_bad_inode(inode))
479 return -EIO;
480
Al Viro59551022016-01-22 15:40:57 -0500481 inode_lock(inode);
Josef Bacik02c24a82011-07-16 20:44:56 -0400482
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700483 /*
484 * Start writeback against all dirty pages of the inode, then
485 * wait for all outstanding writes, before sending the FSYNC
486 * request.
487 */
Jeff Layton7e51fe12017-07-22 09:27:43 -0400488 err = file_write_and_wait_range(file, start, end);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700489 if (err)
Josef Bacik02c24a82011-07-16 20:44:56 -0400490 goto out;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700491
492 fuse_sync_writes(inode);
Alexey Kuznetsovac7f0522016-07-19 12:48:01 -0700493
494 /*
495 * Due to implementation of fuse writeback
Jeff Layton7e51fe12017-07-22 09:27:43 -0400496 * file_write_and_wait_range() does not catch errors.
Alexey Kuznetsovac7f0522016-07-19 12:48:01 -0700497 * We have to do this directly after fuse_sync_writes()
498 */
Jeff Layton7e51fe12017-07-22 09:27:43 -0400499 err = file_check_and_advance_wb_err(file);
Alexey Kuznetsovac7f0522016-07-19 12:48:01 -0700500 if (err)
501 goto out;
502
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200503 err = sync_inode_metadata(inode, 1);
504 if (err)
505 goto out;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700506
Miklos Szeredia9c2d1e2018-12-03 10:14:43 +0100507 if (fc->no_fsync)
Miklos Szeredi22401e72014-04-28 14:19:23 +0200508 goto out;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400509
Miklos Szeredia9c2d1e2018-12-03 10:14:43 +0100510 err = fuse_fsync_common(file, start, end, datasync, FUSE_FSYNC);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700511 if (err == -ENOSYS) {
Miklos Szeredia9c2d1e2018-12-03 10:14:43 +0100512 fc->no_fsync = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700513 err = 0;
514 }
Josef Bacik02c24a82011-07-16 20:44:56 -0400515out:
Al Viro59551022016-01-22 15:40:57 -0500516 inode_unlock(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700517
Miklos Szeredia9c2d1e2018-12-03 10:14:43 +0100518 return err;
Miklos Szeredi82547982005-09-09 13:10:38 -0700519}
520
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200521void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
522 size_t count, int opcode)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700523{
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700524 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredia6643092007-11-28 16:22:00 -0800525 struct fuse_file *ff = file->private_data;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700526
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800527 inarg->fh = ff->fh;
528 inarg->offset = pos;
529 inarg->size = count;
Miklos Szeredia6643092007-11-28 16:22:00 -0800530 inarg->flags = file->f_flags;
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800531 req->in.h.opcode = opcode;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200532 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700533 req->in.numargs = 1;
534 req->in.args[0].size = sizeof(struct fuse_read_in);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800535 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700536 req->out.argvar = 1;
537 req->out.numargs = 1;
538 req->out.args[0].size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700539}
540
Miklos Szeredi8fba54a2016-08-24 18:17:04 +0200541static void fuse_release_user_pages(struct fuse_req *req, bool should_dirty)
Maxim Patlasov187c5c32012-12-14 19:20:25 +0400542{
543 unsigned i;
544
545 for (i = 0; i < req->num_pages; i++) {
546 struct page *page = req->pages[i];
Miklos Szeredi8fba54a2016-08-24 18:17:04 +0200547 if (should_dirty)
Maxim Patlasov187c5c32012-12-14 19:20:25 +0400548 set_page_dirty_lock(page);
549 put_page(page);
550 }
551}
552
Seth Forshee744742d2016-03-11 10:35:34 -0600553static void fuse_io_release(struct kref *kref)
554{
555 kfree(container_of(kref, struct fuse_io_priv, refcnt));
556}
557
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100558static ssize_t fuse_get_res_by_io(struct fuse_io_priv *io)
559{
560 if (io->err)
561 return io->err;
562
563 if (io->bytes >= 0 && io->write)
564 return -EIO;
565
566 return io->bytes < 0 ? io->size : io->bytes;
567}
568
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400569/**
570 * In case of short read, the caller sets 'pos' to the position of
571 * actual end of fuse request in IO request. Otherwise, if bytes_requested
572 * == bytes_transferred or rw == WRITE, the caller sets 'pos' to -1.
573 *
574 * An example:
575 * User requested DIO read of 64K. It was splitted into two 32K fuse requests,
576 * both submitted asynchronously. The first of them was ACKed by userspace as
577 * fully completed (req->out.args[0].size == 32K) resulting in pos == -1. The
578 * second request was ACKed as short, e.g. only 1K was read, resulting in
579 * pos == 33K.
580 *
581 * Thus, when all fuse requests are completed, the minimal non-negative 'pos'
582 * will be equal to the length of the longest contiguous fragment of
583 * transferred data starting from the beginning of IO request.
584 */
585static void fuse_aio_complete(struct fuse_io_priv *io, int err, ssize_t pos)
586{
587 int left;
588
589 spin_lock(&io->lock);
590 if (err)
591 io->err = io->err ? : err;
592 else if (pos >= 0 && (io->bytes < 0 || pos < io->bytes))
593 io->bytes = pos;
594
595 left = --io->reqs;
Ashish Sangwan7879c4e2016-04-07 17:18:11 +0530596 if (!left && io->blocking)
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100597 complete(io->done);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400598 spin_unlock(&io->lock);
599
Ashish Sangwan7879c4e2016-04-07 17:18:11 +0530600 if (!left && !io->blocking) {
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100601 ssize_t res = fuse_get_res_by_io(io);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400602
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100603 if (res >= 0) {
604 struct inode *inode = file_inode(io->iocb->ki_filp);
605 struct fuse_conn *fc = get_fuse_conn(inode);
606 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400607
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100608 spin_lock(&fc->lock);
609 fi->attr_version = ++fc->attr_version;
610 spin_unlock(&fc->lock);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400611 }
612
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100613 io->iocb->ki_complete(io->iocb, res, 0);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400614 }
Seth Forshee744742d2016-03-11 10:35:34 -0600615
616 kref_put(&io->refcnt, fuse_io_release);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400617}
618
619static void fuse_aio_complete_req(struct fuse_conn *fc, struct fuse_req *req)
620{
621 struct fuse_io_priv *io = req->io;
622 ssize_t pos = -1;
623
Ashish Samant61c12b42017-07-12 19:26:58 -0700624 fuse_release_user_pages(req, io->should_dirty);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400625
626 if (io->write) {
627 if (req->misc.write.in.size != req->misc.write.out.size)
628 pos = req->misc.write.in.offset - io->offset +
629 req->misc.write.out.size;
630 } else {
631 if (req->misc.read.in.size != req->out.args[0].size)
632 pos = req->misc.read.in.offset - io->offset +
633 req->out.args[0].size;
634 }
635
636 fuse_aio_complete(io, req->out.h.error, pos);
637}
638
639static size_t fuse_async_req_send(struct fuse_conn *fc, struct fuse_req *req,
640 size_t num_bytes, struct fuse_io_priv *io)
641{
642 spin_lock(&io->lock);
Seth Forshee744742d2016-03-11 10:35:34 -0600643 kref_get(&io->refcnt);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400644 io->size += num_bytes;
645 io->reqs++;
646 spin_unlock(&io->lock);
647
648 req->io = io;
649 req->end = fuse_aio_complete_req;
650
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400651 __fuse_get_request(req);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400652 fuse_request_send_background(fc, req);
653
654 return num_bytes;
655}
656
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400657static size_t fuse_send_read(struct fuse_req *req, struct fuse_io_priv *io,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200658 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700659{
Miklos Szeredie1c0eec2017-09-12 16:57:53 +0200660 struct file *file = io->iocb->ki_filp;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200661 struct fuse_file *ff = file->private_data;
662 struct fuse_conn *fc = ff->fc;
Miklos Szeredif3332112007-10-18 03:07:04 -0700663
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200664 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredif3332112007-10-18 03:07:04 -0700665 if (owner != NULL) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700666 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredif3332112007-10-18 03:07:04 -0700667
668 inarg->read_flags |= FUSE_READ_LOCKOWNER;
669 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
670 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400671
672 if (io->async)
673 return fuse_async_req_send(fc, req, count, io);
674
Tejun Heob93f8582008-11-26 12:03:55 +0100675 fuse_request_send(fc, req);
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800676 return req->out.args[0].size;
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700677}
678
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700679static void fuse_read_update_size(struct inode *inode, loff_t size,
680 u64 attr_ver)
681{
682 struct fuse_conn *fc = get_fuse_conn(inode);
683 struct fuse_inode *fi = get_fuse_inode(inode);
684
685 spin_lock(&fc->lock);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +0400686 if (attr_ver == fi->attr_version && size < inode->i_size &&
687 !test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700688 fi->attr_version = ++fc->attr_version;
689 i_size_write(inode, size);
690 }
691 spin_unlock(&fc->lock);
692}
693
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400694static void fuse_short_read(struct fuse_req *req, struct inode *inode,
695 u64 attr_ver)
696{
697 size_t num_read = req->out.args[0].size;
Pavel Emelyanov83732002013-10-10 17:10:46 +0400698 struct fuse_conn *fc = get_fuse_conn(inode);
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400699
Pavel Emelyanov83732002013-10-10 17:10:46 +0400700 if (fc->writeback_cache) {
701 /*
702 * A hole in a file. Some data after the hole are in page cache,
703 * but have not reached the client fs yet. So, the hole is not
704 * present there.
705 */
706 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300707 int start_idx = num_read >> PAGE_SHIFT;
708 size_t off = num_read & (PAGE_SIZE - 1);
Pavel Emelyanov83732002013-10-10 17:10:46 +0400709
710 for (i = start_idx; i < req->num_pages; i++) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300711 zero_user_segment(req->pages[i], off, PAGE_SIZE);
Pavel Emelyanov83732002013-10-10 17:10:46 +0400712 off = 0;
713 }
714 } else {
715 loff_t pos = page_offset(req->pages[0]) + num_read;
716 fuse_read_update_size(inode, pos, attr_ver);
717 }
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400718}
719
Maxim Patlasov482fce52013-10-10 17:11:25 +0400720static int fuse_do_readpage(struct file *file, struct page *page)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700721{
Miklos Szeredie1c0eec2017-09-12 16:57:53 +0200722 struct kiocb iocb;
723 struct fuse_io_priv io;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700724 struct inode *inode = page->mapping->host;
725 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800726 struct fuse_req *req;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700727 size_t num_read;
728 loff_t pos = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300729 size_t count = PAGE_SIZE;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700730 u64 attr_ver;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800731 int err;
732
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700733 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300734 * Page writeback can extend beyond the lifetime of the
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700735 * page-cache page, so make sure we read a properly synced
736 * page.
737 */
738 fuse_wait_on_page_writeback(inode, page->index);
739
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400740 req = fuse_get_req(fc, 1);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700741 if (IS_ERR(req))
Maxim Patlasov482fce52013-10-10 17:11:25 +0400742 return PTR_ERR(req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700743
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700744 attr_ver = fuse_get_attr_version(fc);
745
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700746 req->out.page_zeroing = 1;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200747 req->out.argpages = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700748 req->num_pages = 1;
749 req->pages[0] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400750 req->page_descs[0].length = count;
Miklos Szeredie1c0eec2017-09-12 16:57:53 +0200751 init_sync_kiocb(&iocb, file);
752 io = (struct fuse_io_priv) FUSE_IO_PRIV_SYNC(&iocb);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400753 num_read = fuse_send_read(req, &io, pos, count, NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700754 err = req->out.h.error;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700755
756 if (!err) {
757 /*
758 * Short read means EOF. If file size is larger, truncate it
759 */
760 if (num_read < count)
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400761 fuse_short_read(req, inode, attr_ver);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700762
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700763 SetPageUptodate(page);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700764 }
765
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400766 fuse_put_request(fc, req);
Maxim Patlasov482fce52013-10-10 17:11:25 +0400767
768 return err;
769}
770
771static int fuse_readpage(struct file *file, struct page *page)
772{
773 struct inode *inode = page->mapping->host;
774 int err;
775
776 err = -EIO;
777 if (is_bad_inode(inode))
778 goto out;
779
780 err = fuse_do_readpage(file, page);
Andrew Gallagher451418f2013-11-05 03:55:43 -0800781 fuse_invalidate_atime(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700782 out:
783 unlock_page(page);
784 return err;
785}
786
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800787static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredidb50b962005-09-09 13:10:33 -0700788{
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800789 int i;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700790 size_t count = req->misc.read.in.size;
791 size_t num_read = req->out.args[0].size;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200792 struct address_space *mapping = NULL;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800793
Miklos Szeredice534fb2010-05-25 15:06:07 +0200794 for (i = 0; mapping == NULL && i < req->num_pages; i++)
795 mapping = req->pages[i]->mapping;
796
797 if (mapping) {
798 struct inode *inode = mapping->host;
799
800 /*
801 * Short read means EOF. If file size is larger, truncate it
802 */
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400803 if (!req->out.h.error && num_read < count)
804 fuse_short_read(req, inode, req->misc.read.attr_ver);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200805
Andrew Gallagher451418f2013-11-05 03:55:43 -0800806 fuse_invalidate_atime(inode);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700807 }
808
Miklos Szeredidb50b962005-09-09 13:10:33 -0700809 for (i = 0; i < req->num_pages; i++) {
810 struct page *page = req->pages[i];
811 if (!req->out.h.error)
812 SetPageUptodate(page);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800813 else
814 SetPageError(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700815 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300816 put_page(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700817 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700818 if (req->ff)
Chad Austin2e64ff12018-12-10 10:54:52 -0800819 fuse_file_put(req->ff, false, false);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800820}
821
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200822static void fuse_send_readpages(struct fuse_req *req, struct file *file)
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800823{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200824 struct fuse_file *ff = file->private_data;
825 struct fuse_conn *fc = ff->fc;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800826 loff_t pos = page_offset(req->pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300827 size_t count = req->num_pages << PAGE_SHIFT;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200828
829 req->out.argpages = 1;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800830 req->out.page_zeroing = 1;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200831 req->out.page_replace = 1;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200832 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700833 req->misc.read.attr_ver = fuse_get_attr_version(fc);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800834 if (fc->async_read) {
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700835 req->ff = fuse_file_get(ff);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800836 req->end = fuse_readpages_end;
Tejun Heob93f8582008-11-26 12:03:55 +0100837 fuse_request_send_background(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800838 } else {
Tejun Heob93f8582008-11-26 12:03:55 +0100839 fuse_request_send(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800840 fuse_readpages_end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100841 fuse_put_request(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800842 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700843}
844
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700845struct fuse_fill_data {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700846 struct fuse_req *req;
Miklos Szeredia6643092007-11-28 16:22:00 -0800847 struct file *file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700848 struct inode *inode;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400849 unsigned nr_pages;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700850};
851
852static int fuse_readpages_fill(void *_data, struct page *page)
853{
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700854 struct fuse_fill_data *data = _data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700855 struct fuse_req *req = data->req;
856 struct inode *inode = data->inode;
857 struct fuse_conn *fc = get_fuse_conn(inode);
858
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700859 fuse_wait_on_page_writeback(inode, page->index);
860
Miklos Szeredidb50b962005-09-09 13:10:33 -0700861 if (req->num_pages &&
Constantine Shulyupin5da784c2018-09-06 15:37:06 +0300862 (req->num_pages == fc->max_pages ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300863 (req->num_pages + 1) * PAGE_SIZE > fc->max_read ||
Miklos Szeredidb50b962005-09-09 13:10:33 -0700864 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
Constantine Shulyupin5da784c2018-09-06 15:37:06 +0300865 unsigned int nr_alloc = min_t(unsigned int, data->nr_pages,
866 fc->max_pages);
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200867 fuse_send_readpages(req, data->file);
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400868 if (fc->async_read)
869 req = fuse_get_req_for_background(fc, nr_alloc);
870 else
871 req = fuse_get_req(fc, nr_alloc);
872
873 data->req = req;
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700874 if (IS_ERR(req)) {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700875 unlock_page(page);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700876 return PTR_ERR(req);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700877 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700878 }
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400879
880 if (WARN_ON(req->num_pages >= req->max_pages)) {
Kirill Tkhai109728c2018-07-19 15:49:39 +0300881 unlock_page(page);
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400882 fuse_put_request(fc, req);
883 return -EIO;
884 }
885
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300886 get_page(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700887 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400888 req->page_descs[req->num_pages].length = PAGE_SIZE;
Miklos Szeredi1729a162008-11-26 12:03:54 +0100889 req->num_pages++;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400890 data->nr_pages--;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700891 return 0;
892}
893
894static int fuse_readpages(struct file *file, struct address_space *mapping,
895 struct list_head *pages, unsigned nr_pages)
896{
897 struct inode *inode = mapping->host;
898 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700899 struct fuse_fill_data data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700900 int err;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +0300901 unsigned int nr_alloc = min_t(unsigned int, nr_pages, fc->max_pages);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800902
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700903 err = -EIO;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800904 if (is_bad_inode(inode))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800905 goto out;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800906
Miklos Szeredia6643092007-11-28 16:22:00 -0800907 data.file = file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700908 data.inode = inode;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400909 if (fc->async_read)
910 data.req = fuse_get_req_for_background(fc, nr_alloc);
911 else
912 data.req = fuse_get_req(fc, nr_alloc);
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400913 data.nr_pages = nr_pages;
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700914 err = PTR_ERR(data.req);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700915 if (IS_ERR(data.req))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800916 goto out;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700917
918 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700919 if (!err) {
920 if (data.req->num_pages)
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200921 fuse_send_readpages(data.req, file);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700922 else
923 fuse_put_request(fc, data.req);
924 }
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800925out:
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700926 return err;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700927}
928
Al Viro37c20f12014-04-02 14:47:09 -0400929static ssize_t fuse_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800930{
931 struct inode *inode = iocb->ki_filp->f_mapping->host;
Brian Fostera8894272012-07-16 15:23:50 -0400932 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800933
Brian Fostera8894272012-07-16 15:23:50 -0400934 /*
935 * In auto invalidate mode, always update attributes on read.
936 * Otherwise, only update if we attempt to read past EOF (to ensure
937 * i_size is up to date).
938 */
939 if (fc->auto_inval_data ||
Al Viro37c20f12014-04-02 14:47:09 -0400940 (iocb->ki_pos + iov_iter_count(to) > i_size_read(inode))) {
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800941 int err;
Miklos Szeredi5b97eea2017-09-12 16:57:54 +0200942 err = fuse_update_attributes(inode, iocb->ki_filp);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800943 if (err)
944 return err;
945 }
946
Al Viro37c20f12014-04-02 14:47:09 -0400947 return generic_file_read_iter(iocb, to);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800948}
949
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200950static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200951 loff_t pos, size_t count)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700952{
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700953 struct fuse_write_in *inarg = &req->misc.write.in;
954 struct fuse_write_out *outarg = &req->misc.write.out;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700955
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700956 inarg->fh = ff->fh;
957 inarg->offset = pos;
958 inarg->size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700959 req->in.h.opcode = FUSE_WRITE;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200960 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700961 req->in.numargs = 2;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200962 if (ff->fc->minor < 9)
Miklos Szeredif3332112007-10-18 03:07:04 -0700963 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
964 else
965 req->in.args[0].size = sizeof(struct fuse_write_in);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700966 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700967 req->in.args[1].size = count;
968 req->out.numargs = 1;
969 req->out.args[0].size = sizeof(struct fuse_write_out);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700970 req->out.args[0].value = outarg;
971}
972
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400973static size_t fuse_send_write(struct fuse_req *req, struct fuse_io_priv *io,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200974 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700975{
Miklos Szeredie1c0eec2017-09-12 16:57:53 +0200976 struct kiocb *iocb = io->iocb;
977 struct file *file = iocb->ki_filp;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200978 struct fuse_file *ff = file->private_data;
979 struct fuse_conn *fc = ff->fc;
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200980 struct fuse_write_in *inarg = &req->misc.write.in;
981
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200982 fuse_write_fill(req, ff, pos, count);
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200983 inarg->flags = file->f_flags;
Miklos Szeredie1c0eec2017-09-12 16:57:53 +0200984 if (iocb->ki_flags & IOCB_DSYNC)
985 inarg->flags |= O_DSYNC;
986 if (iocb->ki_flags & IOCB_SYNC)
987 inarg->flags |= O_SYNC;
Miklos Szeredif3332112007-10-18 03:07:04 -0700988 if (owner != NULL) {
Miklos Szeredif3332112007-10-18 03:07:04 -0700989 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
990 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
991 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400992
993 if (io->async)
994 return fuse_async_req_send(fc, req, count, io);
995
Tejun Heob93f8582008-11-26 12:03:55 +0100996 fuse_request_send(fc, req);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700997 return req->misc.write.out.size;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700998}
999
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001000bool fuse_write_update_size(struct inode *inode, loff_t pos)
Miklos Szeredi854512e2008-04-30 00:54:41 -07001001{
1002 struct fuse_conn *fc = get_fuse_conn(inode);
1003 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001004 bool ret = false;
Miklos Szeredi854512e2008-04-30 00:54:41 -07001005
1006 spin_lock(&fc->lock);
1007 fi->attr_version = ++fc->attr_version;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001008 if (pos > inode->i_size) {
Miklos Szeredi854512e2008-04-30 00:54:41 -07001009 i_size_write(inode, pos);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001010 ret = true;
1011 }
Miklos Szeredi854512e2008-04-30 00:54:41 -07001012 spin_unlock(&fc->lock);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001013
1014 return ret;
Miklos Szeredi854512e2008-04-30 00:54:41 -07001015}
1016
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001017static size_t fuse_send_write_pages(struct fuse_req *req, struct kiocb *iocb,
Nick Pigginea9b9902008-04-30 00:54:42 -07001018 struct inode *inode, loff_t pos,
1019 size_t count)
1020{
1021 size_t res;
1022 unsigned offset;
1023 unsigned i;
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001024 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb);
Nick Pigginea9b9902008-04-30 00:54:42 -07001025
1026 for (i = 0; i < req->num_pages; i++)
1027 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
1028
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001029 res = fuse_send_write(req, &io, pos, count, NULL);
Nick Pigginea9b9902008-04-30 00:54:42 -07001030
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001031 offset = req->page_descs[0].offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001032 count = res;
1033 for (i = 0; i < req->num_pages; i++) {
1034 struct page *page = req->pages[i];
1035
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001036 if (!req->out.h.error && !offset && count >= PAGE_SIZE)
Nick Pigginea9b9902008-04-30 00:54:42 -07001037 SetPageUptodate(page);
1038
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001039 if (count > PAGE_SIZE - offset)
1040 count -= PAGE_SIZE - offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001041 else
1042 count = 0;
1043 offset = 0;
1044
1045 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001046 put_page(page);
Nick Pigginea9b9902008-04-30 00:54:42 -07001047 }
1048
1049 return res;
1050}
1051
1052static ssize_t fuse_fill_write_pages(struct fuse_req *req,
1053 struct address_space *mapping,
1054 struct iov_iter *ii, loff_t pos)
1055{
1056 struct fuse_conn *fc = get_fuse_conn(mapping->host);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001057 unsigned offset = pos & (PAGE_SIZE - 1);
Nick Pigginea9b9902008-04-30 00:54:42 -07001058 size_t count = 0;
1059 int err;
1060
Miklos Szeredif4975c62009-04-02 14:25:34 +02001061 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001062 req->page_descs[0].offset = offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001063
1064 do {
1065 size_t tmp;
1066 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001067 pgoff_t index = pos >> PAGE_SHIFT;
1068 size_t bytes = min_t(size_t, PAGE_SIZE - offset,
Nick Pigginea9b9902008-04-30 00:54:42 -07001069 iov_iter_count(ii));
1070
1071 bytes = min_t(size_t, bytes, fc->max_write - count);
1072
1073 again:
1074 err = -EFAULT;
1075 if (iov_iter_fault_in_readable(ii, bytes))
1076 break;
1077
1078 err = -ENOMEM;
Nick Piggin54566b22009-01-04 12:00:53 -08001079 page = grab_cache_page_write_begin(mapping, index, 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001080 if (!page)
1081 break;
1082
anfei zhou931e80e2010-02-02 13:44:02 -08001083 if (mapping_writably_mapped(mapping))
1084 flush_dcache_page(page);
1085
Nick Pigginea9b9902008-04-30 00:54:42 -07001086 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
Nick Pigginea9b9902008-04-30 00:54:42 -07001087 flush_dcache_page(page);
1088
Roman Gushchin3ca81382015-10-12 16:33:44 +03001089 iov_iter_advance(ii, tmp);
Nick Pigginea9b9902008-04-30 00:54:42 -07001090 if (!tmp) {
1091 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001092 put_page(page);
Nick Pigginea9b9902008-04-30 00:54:42 -07001093 bytes = min(bytes, iov_iter_single_seg_count(ii));
1094 goto again;
1095 }
1096
1097 err = 0;
1098 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001099 req->page_descs[req->num_pages].length = tmp;
Nick Pigginea9b9902008-04-30 00:54:42 -07001100 req->num_pages++;
1101
Nick Pigginea9b9902008-04-30 00:54:42 -07001102 count += tmp;
1103 pos += tmp;
1104 offset += tmp;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001105 if (offset == PAGE_SIZE)
Nick Pigginea9b9902008-04-30 00:54:42 -07001106 offset = 0;
1107
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -07001108 if (!fc->big_writes)
1109 break;
Nick Pigginea9b9902008-04-30 00:54:42 -07001110 } while (iov_iter_count(ii) && count < fc->max_write &&
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001111 req->num_pages < req->max_pages && offset == 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001112
1113 return count > 0 ? count : err;
1114}
1115
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001116static inline unsigned int fuse_wr_pages(loff_t pos, size_t len,
1117 unsigned int max_pages)
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001118{
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001119 return min_t(unsigned int,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001120 ((pos + len - 1) >> PAGE_SHIFT) -
1121 (pos >> PAGE_SHIFT) + 1,
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001122 max_pages);
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001123}
1124
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001125static ssize_t fuse_perform_write(struct kiocb *iocb,
Nick Pigginea9b9902008-04-30 00:54:42 -07001126 struct address_space *mapping,
1127 struct iov_iter *ii, loff_t pos)
1128{
1129 struct inode *inode = mapping->host;
1130 struct fuse_conn *fc = get_fuse_conn(inode);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001131 struct fuse_inode *fi = get_fuse_inode(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001132 int err = 0;
1133 ssize_t res = 0;
1134
1135 if (is_bad_inode(inode))
1136 return -EIO;
1137
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001138 if (inode->i_size < pos + iov_iter_count(ii))
1139 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1140
Nick Pigginea9b9902008-04-30 00:54:42 -07001141 do {
1142 struct fuse_req *req;
1143 ssize_t count;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001144 unsigned int nr_pages = fuse_wr_pages(pos, iov_iter_count(ii),
1145 fc->max_pages);
Nick Pigginea9b9902008-04-30 00:54:42 -07001146
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001147 req = fuse_get_req(fc, nr_pages);
Nick Pigginea9b9902008-04-30 00:54:42 -07001148 if (IS_ERR(req)) {
1149 err = PTR_ERR(req);
1150 break;
1151 }
1152
1153 count = fuse_fill_write_pages(req, mapping, ii, pos);
1154 if (count <= 0) {
1155 err = count;
1156 } else {
1157 size_t num_written;
1158
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001159 num_written = fuse_send_write_pages(req, iocb, inode,
Nick Pigginea9b9902008-04-30 00:54:42 -07001160 pos, count);
1161 err = req->out.h.error;
1162 if (!err) {
1163 res += num_written;
1164 pos += num_written;
1165
1166 /* break out of the loop on short write */
1167 if (num_written != count)
1168 err = -EIO;
1169 }
1170 }
1171 fuse_put_request(fc, req);
1172 } while (!err && iov_iter_count(ii));
1173
1174 if (res > 0)
1175 fuse_write_update_size(inode, pos);
1176
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001177 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
Nick Pigginea9b9902008-04-30 00:54:42 -07001178 fuse_invalidate_attr(inode);
1179
1180 return res > 0 ? res : err;
1181}
1182
Al Viro84c3d552014-04-03 14:33:23 -04001183static ssize_t fuse_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Nick Pigginea9b9902008-04-30 00:54:42 -07001184{
1185 struct file *file = iocb->ki_filp;
1186 struct address_space *mapping = file->f_mapping;
Nick Pigginea9b9902008-04-30 00:54:42 -07001187 ssize_t written = 0;
Anand Avati4273b792012-02-17 12:46:25 -05001188 ssize_t written_buffered = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001189 struct inode *inode = mapping->host;
1190 ssize_t err;
Anand Avati4273b792012-02-17 12:46:25 -05001191 loff_t endbyte = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001192
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001193 if (get_fuse_conn(inode)->writeback_cache) {
1194 /* Update size (EOF optimization) and mode (SUID clearing) */
Miklos Szeredi5b97eea2017-09-12 16:57:54 +02001195 err = fuse_update_attributes(mapping->host, file);
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001196 if (err)
1197 return err;
1198
Al Viro84c3d552014-04-03 14:33:23 -04001199 return generic_file_write_iter(iocb, from);
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001200 }
1201
Al Viro59551022016-01-22 15:40:57 -05001202 inode_lock(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001203
1204 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001205 current->backing_dev_info = inode_to_bdi(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001206
Al Viro3309dd02015-04-09 12:55:47 -04001207 err = generic_write_checks(iocb, from);
1208 if (err <= 0)
Nick Pigginea9b9902008-04-30 00:54:42 -07001209 goto out;
1210
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001211 err = file_remove_privs(file);
Nick Pigginea9b9902008-04-30 00:54:42 -07001212 if (err)
1213 goto out;
1214
Josef Bacikc3b2da32012-03-26 09:59:21 -04001215 err = file_update_time(file);
1216 if (err)
1217 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001218
Al Viro2ba48ce2015-04-09 13:52:01 -04001219 if (iocb->ki_flags & IOCB_DIRECT) {
Al Viro3309dd02015-04-09 12:55:47 -04001220 loff_t pos = iocb->ki_pos;
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001221 written = generic_file_direct_write(iocb, from);
Al Viro84c3d552014-04-03 14:33:23 -04001222 if (written < 0 || !iov_iter_count(from))
Anand Avati4273b792012-02-17 12:46:25 -05001223 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001224
Anand Avati4273b792012-02-17 12:46:25 -05001225 pos += written;
Anand Avati4273b792012-02-17 12:46:25 -05001226
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001227 written_buffered = fuse_perform_write(iocb, mapping, from, pos);
Anand Avati4273b792012-02-17 12:46:25 -05001228 if (written_buffered < 0) {
1229 err = written_buffered;
1230 goto out;
1231 }
1232 endbyte = pos + written_buffered - 1;
1233
1234 err = filemap_write_and_wait_range(file->f_mapping, pos,
1235 endbyte);
1236 if (err)
1237 goto out;
1238
1239 invalidate_mapping_pages(file->f_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001240 pos >> PAGE_SHIFT,
1241 endbyte >> PAGE_SHIFT);
Anand Avati4273b792012-02-17 12:46:25 -05001242
1243 written += written_buffered;
1244 iocb->ki_pos = pos + written_buffered;
1245 } else {
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001246 written = fuse_perform_write(iocb, mapping, from, iocb->ki_pos);
Anand Avati4273b792012-02-17 12:46:25 -05001247 if (written >= 0)
Al Viro3309dd02015-04-09 12:55:47 -04001248 iocb->ki_pos += written;
Anand Avati4273b792012-02-17 12:46:25 -05001249 }
Nick Pigginea9b9902008-04-30 00:54:42 -07001250out:
1251 current->backing_dev_info = NULL;
Al Viro59551022016-01-22 15:40:57 -05001252 inode_unlock(inode);
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001253 if (written > 0)
1254 written = generic_write_sync(iocb, written);
Nick Pigginea9b9902008-04-30 00:54:42 -07001255
1256 return written ? written : err;
1257}
1258
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001259static inline void fuse_page_descs_length_init(struct fuse_req *req,
1260 unsigned index, unsigned nr_pages)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001261{
1262 int i;
1263
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001264 for (i = index; i < index + nr_pages; i++)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001265 req->page_descs[i].length = PAGE_SIZE -
1266 req->page_descs[i].offset;
1267}
1268
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001269static inline unsigned long fuse_get_user_addr(const struct iov_iter *ii)
1270{
1271 return (unsigned long)ii->iov->iov_base + ii->iov_offset;
1272}
1273
1274static inline size_t fuse_get_frag_size(const struct iov_iter *ii,
1275 size_t max_size)
1276{
1277 return min(iov_iter_single_seg_count(ii), max_size);
1278}
1279
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001280static int fuse_get_user_pages(struct fuse_req *req, struct iov_iter *ii,
Miklos Szeredice60a2f2009-04-09 17:37:52 +02001281 size_t *nbytesp, int write)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001282{
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001283 size_t nbytes = 0; /* # bytes already packed in req */
Ashish Samant742f9922016-03-14 21:57:35 -07001284 ssize_t ret = 0;
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001285
Miklos Szeredif4975c62009-04-02 14:25:34 +02001286 /* Special case for kernel I/O: can copy directly into the buffer */
David Howells00e23702018-10-22 13:07:28 +01001287 if (iov_iter_is_kvec(ii)) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001288 unsigned long user_addr = fuse_get_user_addr(ii);
1289 size_t frag_size = fuse_get_frag_size(ii, *nbytesp);
1290
Miklos Szeredif4975c62009-04-02 14:25:34 +02001291 if (write)
1292 req->in.args[1].value = (void *) user_addr;
1293 else
1294 req->out.args[0].value = (void *) user_addr;
1295
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001296 iov_iter_advance(ii, frag_size);
1297 *nbytesp = frag_size;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001298 return 0;
1299 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001300
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001301 while (nbytes < *nbytesp && req->num_pages < req->max_pages) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001302 unsigned npages;
Al Virof67da302014-03-19 01:16:16 -04001303 size_t start;
Ashish Samant742f9922016-03-14 21:57:35 -07001304 ret = iov_iter_get_pages(ii, &req->pages[req->num_pages],
Miklos Szeredi2c809292014-09-24 17:09:11 +02001305 *nbytesp - nbytes,
Al Viroc7f38882014-06-18 20:34:33 -04001306 req->max_pages - req->num_pages,
1307 &start);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001308 if (ret < 0)
Ashish Samant742f9922016-03-14 21:57:35 -07001309 break;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001310
Al Viroc9c37e22014-03-16 16:08:30 -04001311 iov_iter_advance(ii, ret);
1312 nbytes += ret;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001313
Al Viroc9c37e22014-03-16 16:08:30 -04001314 ret += start;
1315 npages = (ret + PAGE_SIZE - 1) / PAGE_SIZE;
1316
1317 req->page_descs[req->num_pages].offset = start;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001318 fuse_page_descs_length_init(req, req->num_pages, npages);
1319
1320 req->num_pages += npages;
1321 req->page_descs[req->num_pages - 1].length -=
Al Viroc9c37e22014-03-16 16:08:30 -04001322 (PAGE_SIZE - ret) & (PAGE_SIZE - 1);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001323 }
Miklos Szeredif4975c62009-04-02 14:25:34 +02001324
1325 if (write)
1326 req->in.argpages = 1;
1327 else
1328 req->out.argpages = 1;
1329
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001330 *nbytesp = nbytes;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001331
Ashish Samant2c932d42016-03-25 10:53:41 -07001332 return ret < 0 ? ret : 0;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001333}
1334
Al Virod22a9432014-03-16 15:50:47 -04001335ssize_t fuse_direct_io(struct fuse_io_priv *io, struct iov_iter *iter,
1336 loff_t *ppos, int flags)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001337{
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001338 int write = flags & FUSE_DIO_WRITE;
1339 int cuse = flags & FUSE_DIO_CUSE;
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001340 struct file *file = io->iocb->ki_filp;
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001341 struct inode *inode = file->f_mapping->host;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001342 struct fuse_file *ff = file->private_data;
1343 struct fuse_conn *fc = ff->fc;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001344 size_t nmax = write ? fc->max_write : fc->max_read;
1345 loff_t pos = *ppos;
Al Virod22a9432014-03-16 15:50:47 -04001346 size_t count = iov_iter_count(iter);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001347 pgoff_t idx_from = pos >> PAGE_SHIFT;
1348 pgoff_t idx_to = (pos + count - 1) >> PAGE_SHIFT;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001349 ssize_t res = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001350 struct fuse_req *req;
Ashish Samant742f9922016-03-14 21:57:35 -07001351 int err = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001352
Brian Fosterde82b922013-05-14 11:25:39 -04001353 if (io->async)
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001354 req = fuse_get_req_for_background(fc, iov_iter_npages(iter,
1355 fc->max_pages));
Brian Fosterde82b922013-05-14 11:25:39 -04001356 else
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001357 req = fuse_get_req(fc, iov_iter_npages(iter, fc->max_pages));
Miklos Szeredice1d5a42006-04-10 22:54:58 -07001358 if (IS_ERR(req))
1359 return PTR_ERR(req);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001360
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001361 if (!cuse && fuse_range_is_writeback(inode, idx_from, idx_to)) {
1362 if (!write)
Al Viro59551022016-01-22 15:40:57 -05001363 inode_lock(inode);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001364 fuse_sync_writes(inode);
1365 if (!write)
Al Viro59551022016-01-22 15:40:57 -05001366 inode_unlock(inode);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001367 }
1368
Ashish Samant61c12b42017-07-12 19:26:58 -07001369 io->should_dirty = !write && iter_is_iovec(iter);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001370 while (count) {
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001371 size_t nres;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001372 fl_owner_t owner = current->files;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001373 size_t nbytes = min(count, nmax);
Ashish Samant742f9922016-03-14 21:57:35 -07001374 err = fuse_get_user_pages(req, iter, &nbytes, write);
1375 if (err && !nbytes)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001376 break;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001377
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001378 if (write)
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001379 nres = fuse_send_write(req, io, pos, nbytes, owner);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001380 else
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001381 nres = fuse_send_read(req, io, pos, nbytes, owner);
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001382
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001383 if (!io->async)
Ashish Samant61c12b42017-07-12 19:26:58 -07001384 fuse_release_user_pages(req, io->should_dirty);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001385 if (req->out.h.error) {
Ashish Samant742f9922016-03-14 21:57:35 -07001386 err = req->out.h.error;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001387 break;
1388 } else if (nres > nbytes) {
Ashish Samant742f9922016-03-14 21:57:35 -07001389 res = 0;
1390 err = -EIO;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001391 break;
1392 }
1393 count -= nres;
1394 res += nres;
1395 pos += nres;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001396 if (nres != nbytes)
1397 break;
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001398 if (count) {
1399 fuse_put_request(fc, req);
Brian Fosterde82b922013-05-14 11:25:39 -04001400 if (io->async)
1401 req = fuse_get_req_for_background(fc,
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001402 iov_iter_npages(iter, fc->max_pages));
Brian Fosterde82b922013-05-14 11:25:39 -04001403 else
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001404 req = fuse_get_req(fc, iov_iter_npages(iter,
1405 fc->max_pages));
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001406 if (IS_ERR(req))
1407 break;
1408 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001409 }
Anand V. Avatif60311d2009-10-22 06:24:52 -07001410 if (!IS_ERR(req))
1411 fuse_put_request(fc, req);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001412 if (res > 0)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001413 *ppos = pos;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001414
Ashish Samant742f9922016-03-14 21:57:35 -07001415 return res > 0 ? res : err;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001416}
Tejun Heo08cbf542009-04-14 10:54:53 +09001417EXPORT_SYMBOL_GPL(fuse_direct_io);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001418
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001419static ssize_t __fuse_direct_read(struct fuse_io_priv *io,
Al Virod22a9432014-03-16 15:50:47 -04001420 struct iov_iter *iter,
1421 loff_t *ppos)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001422{
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001423 ssize_t res;
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001424 struct inode *inode = file_inode(io->iocb->ki_filp);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001425
1426 if (is_bad_inode(inode))
1427 return -EIO;
1428
Al Virod22a9432014-03-16 15:50:47 -04001429 res = fuse_direct_io(io, iter, ppos, 0);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001430
Miklos Szeredi9a2eb242018-10-15 15:43:06 +02001431 fuse_invalidate_atime(inode);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001432
1433 return res;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001434}
1435
Al Viro153162632015-03-30 22:08:36 -04001436static ssize_t fuse_direct_read_iter(struct kiocb *iocb, struct iov_iter *to)
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001437{
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001438 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb);
Al Viro153162632015-03-30 22:08:36 -04001439 return __fuse_direct_read(&io, to, &iocb->ki_pos);
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001440}
1441
Al Viro153162632015-03-30 22:08:36 -04001442static ssize_t fuse_direct_write_iter(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001443{
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001444 struct inode *inode = file_inode(iocb->ki_filp);
1445 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb);
Al Viro153162632015-03-30 22:08:36 -04001446 ssize_t res;
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001447
1448 if (is_bad_inode(inode))
1449 return -EIO;
1450
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001451 /* Don't allow parallel writes to the same file */
Al Viro59551022016-01-22 15:40:57 -05001452 inode_lock(inode);
Al Viro3309dd02015-04-09 12:55:47 -04001453 res = generic_write_checks(iocb, from);
1454 if (res > 0)
Al Viro812408f2015-03-30 22:15:58 -04001455 res = fuse_direct_io(&io, from, &iocb->ki_pos, FUSE_DIO_WRITE);
Al Viro812408f2015-03-30 22:15:58 -04001456 fuse_invalidate_attr(inode);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04001457 if (res > 0)
Al Viro153162632015-03-30 22:08:36 -04001458 fuse_write_update_size(inode, iocb->ki_pos);
Al Viro59551022016-01-22 15:40:57 -05001459 inode_unlock(inode);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001460
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001461 return res;
1462}
1463
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001464static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001465{
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001466 int i;
1467
1468 for (i = 0; i < req->num_pages; i++)
1469 __free_page(req->pages[i]);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001470
1471 if (req->ff)
Chad Austin2e64ff12018-12-10 10:54:52 -08001472 fuse_file_put(req->ff, false, false);
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001473}
1474
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001475static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001476{
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001477 struct inode *inode = req->inode;
1478 struct fuse_inode *fi = get_fuse_inode(inode);
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001479 struct backing_dev_info *bdi = inode_to_bdi(inode);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001480 int i;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001481
1482 list_del(&req->writepages_entry);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001483 for (i = 0; i < req->num_pages; i++) {
Tejun Heo93f78d82015-05-22 17:13:27 -04001484 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001485 dec_node_page_state(req->pages[i], NR_WRITEBACK_TEMP);
Tejun Heo93f78d82015-05-22 17:13:27 -04001486 wb_writeout_inc(&bdi->wb);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001487 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001488 wake_up(&fi->page_waitq);
1489}
1490
1491/* Called under fc->lock, may release and reacquire it */
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001492static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req,
1493 loff_t size)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001494__releases(fc->lock)
1495__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001496{
1497 struct fuse_inode *fi = get_fuse_inode(req->inode);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001498 struct fuse_write_in *inarg = &req->misc.write.in;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001499 __u64 data_size = req->num_pages * PAGE_SIZE;
Kirill Tkhai63825b42018-08-27 18:29:56 +03001500 bool queued;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001501
1502 if (!fc->connected)
1503 goto out_free;
1504
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001505 if (inarg->offset + data_size <= size) {
1506 inarg->size = data_size;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001507 } else if (inarg->offset < size) {
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001508 inarg->size = size - inarg->offset;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001509 } else {
1510 /* Got truncated off completely */
1511 goto out_free;
1512 }
1513
1514 req->in.args[1].size = inarg->size;
1515 fi->writectr++;
Kirill Tkhai63825b42018-08-27 18:29:56 +03001516 queued = fuse_request_queue_background(fc, req);
1517 WARN_ON(!queued);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001518 return;
1519
1520 out_free:
1521 fuse_writepage_finish(fc, req);
1522 spin_unlock(&fc->lock);
1523 fuse_writepage_free(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +01001524 fuse_put_request(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001525 spin_lock(&fc->lock);
1526}
1527
1528/*
1529 * If fi->writectr is positive (no truncate or fsync going on) send
1530 * all queued writepage requests.
1531 *
1532 * Called with fc->lock
1533 */
1534void fuse_flush_writepages(struct inode *inode)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001535__releases(fc->lock)
1536__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001537{
1538 struct fuse_conn *fc = get_fuse_conn(inode);
1539 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001540 size_t crop = i_size_read(inode);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001541 struct fuse_req *req;
1542
1543 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1544 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1545 list_del_init(&req->list);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001546 fuse_send_writepage(fc, req, crop);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001547 }
1548}
1549
1550static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1551{
1552 struct inode *inode = req->inode;
1553 struct fuse_inode *fi = get_fuse_inode(inode);
1554
1555 mapping_set_error(inode->i_mapping, req->out.h.error);
1556 spin_lock(&fc->lock);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001557 while (req->misc.write.next) {
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001558 struct fuse_conn *fc = get_fuse_conn(inode);
1559 struct fuse_write_in *inarg = &req->misc.write.in;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001560 struct fuse_req *next = req->misc.write.next;
1561 req->misc.write.next = next->misc.write.next;
1562 next->misc.write.next = NULL;
Maxim Patlasovce128de2013-10-02 21:38:54 +04001563 next->ff = fuse_file_get(req->ff);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001564 list_add(&next->writepages_entry, &fi->writepages);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001565
1566 /*
1567 * Skip fuse_flush_writepages() to make it easy to crop requests
1568 * based on primary request size.
1569 *
1570 * 1st case (trivial): there are no concurrent activities using
1571 * fuse_set/release_nowrite. Then we're on safe side because
1572 * fuse_flush_writepages() would call fuse_send_writepage()
1573 * anyway.
1574 *
1575 * 2nd case: someone called fuse_set_nowrite and it is waiting
1576 * now for completion of all in-flight requests. This happens
1577 * rarely and no more than once per page, so this should be
1578 * okay.
1579 *
1580 * 3rd case: someone (e.g. fuse_do_setattr()) is in the middle
1581 * of fuse_set_nowrite..fuse_release_nowrite section. The fact
1582 * that fuse_set_nowrite returned implies that all in-flight
1583 * requests were completed along with all of their secondary
1584 * requests. Further primary requests are blocked by negative
1585 * writectr. Hence there cannot be any in-flight requests and
1586 * no invocations of fuse_writepage_end() while we're in
1587 * fuse_set_nowrite..fuse_release_nowrite section.
1588 */
1589 fuse_send_writepage(fc, next, inarg->offset + inarg->size);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001590 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001591 fi->writectr--;
1592 fuse_writepage_finish(fc, req);
1593 spin_unlock(&fc->lock);
1594 fuse_writepage_free(fc, req);
1595}
1596
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001597static struct fuse_file *__fuse_write_file_get(struct fuse_conn *fc,
1598 struct fuse_inode *fi)
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001599{
Miklos Szeredi72523422013-10-01 16:44:52 +02001600 struct fuse_file *ff = NULL;
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001601
1602 spin_lock(&fc->lock);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001603 if (!list_empty(&fi->write_files)) {
Miklos Szeredi72523422013-10-01 16:44:52 +02001604 ff = list_entry(fi->write_files.next, struct fuse_file,
1605 write_entry);
1606 fuse_file_get(ff);
1607 }
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001608 spin_unlock(&fc->lock);
1609
1610 return ff;
1611}
1612
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001613static struct fuse_file *fuse_write_file_get(struct fuse_conn *fc,
1614 struct fuse_inode *fi)
1615{
1616 struct fuse_file *ff = __fuse_write_file_get(fc, fi);
1617 WARN_ON(!ff);
1618 return ff;
1619}
1620
1621int fuse_write_inode(struct inode *inode, struct writeback_control *wbc)
1622{
1623 struct fuse_conn *fc = get_fuse_conn(inode);
1624 struct fuse_inode *fi = get_fuse_inode(inode);
1625 struct fuse_file *ff;
1626 int err;
1627
1628 ff = __fuse_write_file_get(fc, fi);
Maxim Patlasovab9e13f2014-04-28 14:19:24 +02001629 err = fuse_flush_times(inode, ff);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001630 if (ff)
Chad Austin2e64ff12018-12-10 10:54:52 -08001631 fuse_file_put(ff, false, false);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001632
1633 return err;
1634}
1635
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001636static int fuse_writepage_locked(struct page *page)
1637{
1638 struct address_space *mapping = page->mapping;
1639 struct inode *inode = mapping->host;
1640 struct fuse_conn *fc = get_fuse_conn(inode);
1641 struct fuse_inode *fi = get_fuse_inode(inode);
1642 struct fuse_req *req;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001643 struct page *tmp_page;
Miklos Szeredi72523422013-10-01 16:44:52 +02001644 int error = -ENOMEM;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001645
1646 set_page_writeback(page);
1647
Maxim Patlasov4250c062012-10-26 19:48:07 +04001648 req = fuse_request_alloc_nofs(1);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001649 if (!req)
1650 goto err;
1651
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001652 /* writeback always goes to bg_queue */
1653 __set_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001654 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1655 if (!tmp_page)
1656 goto err_free;
1657
Miklos Szeredi72523422013-10-01 16:44:52 +02001658 error = -EIO;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001659 req->ff = fuse_write_file_get(fc, fi);
Miklos Szeredi72523422013-10-01 16:44:52 +02001660 if (!req->ff)
Maxim Patlasov27f1b362014-07-10 15:32:43 +04001661 goto err_nofile;
Miklos Szeredi72523422013-10-01 16:44:52 +02001662
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001663 fuse_write_fill(req, req->ff, page_offset(page), 0);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001664
1665 copy_highpage(tmp_page, page);
Miklos Szeredi2d698b02009-04-28 16:56:36 +02001666 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001667 req->misc.write.next = NULL;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001668 req->in.argpages = 1;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001669 req->num_pages = 1;
1670 req->pages[0] = tmp_page;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001671 req->page_descs[0].offset = 0;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001672 req->page_descs[0].length = PAGE_SIZE;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001673 req->end = fuse_writepage_end;
1674 req->inode = inode;
1675
Tejun Heo93f78d82015-05-22 17:13:27 -04001676 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001677 inc_node_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001678
1679 spin_lock(&fc->lock);
1680 list_add(&req->writepages_entry, &fi->writepages);
1681 list_add_tail(&req->list, &fi->queued_writes);
1682 fuse_flush_writepages(inode);
1683 spin_unlock(&fc->lock);
1684
Maxim Patlasov4a4ac4e2013-08-12 20:39:30 +04001685 end_page_writeback(page);
1686
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001687 return 0;
1688
Maxim Patlasov27f1b362014-07-10 15:32:43 +04001689err_nofile:
1690 __free_page(tmp_page);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001691err_free:
1692 fuse_request_free(req);
1693err:
Jeff Layton91839762017-05-25 06:57:50 -04001694 mapping_set_error(page->mapping, error);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001695 end_page_writeback(page);
Miklos Szeredi72523422013-10-01 16:44:52 +02001696 return error;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001697}
1698
1699static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1700{
1701 int err;
1702
Miklos Szerediff17be02013-10-01 16:44:53 +02001703 if (fuse_page_is_writeback(page->mapping->host, page->index)) {
1704 /*
1705 * ->writepages() should be called for sync() and friends. We
1706 * should only get here on direct reclaim and then we are
1707 * allowed to skip a page which is already in flight
1708 */
1709 WARN_ON(wbc->sync_mode == WB_SYNC_ALL);
1710
1711 redirty_page_for_writepage(wbc, page);
1712 return 0;
1713 }
1714
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001715 err = fuse_writepage_locked(page);
1716 unlock_page(page);
1717
1718 return err;
1719}
1720
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001721struct fuse_fill_wb_data {
1722 struct fuse_req *req;
1723 struct fuse_file *ff;
1724 struct inode *inode;
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001725 struct page **orig_pages;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001726};
1727
1728static void fuse_writepages_send(struct fuse_fill_wb_data *data)
1729{
1730 struct fuse_req *req = data->req;
1731 struct inode *inode = data->inode;
1732 struct fuse_conn *fc = get_fuse_conn(inode);
1733 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001734 int num_pages = req->num_pages;
1735 int i;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001736
1737 req->ff = fuse_file_get(data->ff);
1738 spin_lock(&fc->lock);
1739 list_add_tail(&req->list, &fi->queued_writes);
1740 fuse_flush_writepages(inode);
1741 spin_unlock(&fc->lock);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001742
1743 for (i = 0; i < num_pages; i++)
1744 end_page_writeback(data->orig_pages[i]);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001745}
1746
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001747/*
1748 * First recheck under fi->lock if the offending offset is still under
Miklos Szeredi419234d2019-01-16 10:27:59 +01001749 * writeback. If yes, then iterate auxiliary write requests, to see if there's
1750 * one already added for a page at this offset. If there's none, then insert
1751 * this new request onto the auxiliary list, otherwise reuse the existing one by
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001752 * copying the new page contents over to the old temporary page.
1753 */
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001754static bool fuse_writepage_in_flight(struct fuse_req *new_req,
1755 struct page *page)
1756{
1757 struct fuse_conn *fc = get_fuse_conn(new_req->inode);
1758 struct fuse_inode *fi = get_fuse_inode(new_req->inode);
1759 struct fuse_req *tmp;
1760 struct fuse_req *old_req;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001761
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001762 WARN_ON(new_req->num_pages != 0);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001763
1764 spin_lock(&fc->lock);
1765 list_del(&new_req->writepages_entry);
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +01001766 old_req = fuse_find_writeback(fi, page->index, page->index);
1767 if (!old_req) {
Maxim Patlasovf6011082013-10-02 15:01:07 +04001768 list_add(&new_req->writepages_entry, &fi->writepages);
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +01001769 spin_unlock(&fc->lock);
1770 return false;
Maxim Patlasovf6011082013-10-02 15:01:07 +04001771 }
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001772
Maxim Patlasovf6011082013-10-02 15:01:07 +04001773 new_req->num_pages = 1;
Miklos Szeredi419234d2019-01-16 10:27:59 +01001774 for (tmp = old_req->misc.write.next; tmp; tmp = tmp->misc.write.next) {
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001775 pgoff_t curr_index;
1776
1777 WARN_ON(tmp->inode != new_req->inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001778 curr_index = tmp->misc.write.in.offset >> PAGE_SHIFT;
Miklos Szeredi419234d2019-01-16 10:27:59 +01001779 if (curr_index == page->index) {
1780 WARN_ON(tmp->num_pages != 1);
1781 WARN_ON(!test_bit(FR_PENDING, &tmp->flags));
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001782 copy_highpage(tmp->pages[0], page);
1783 break;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001784 }
1785 }
1786
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001787 if (!tmp) {
1788 new_req->misc.write.next = old_req->misc.write.next;
1789 old_req->misc.write.next = new_req;
1790 }
Maxim Patlasov41b6e412013-10-02 21:38:43 +04001791
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001792 spin_unlock(&fc->lock);
1793
1794 if (tmp) {
1795 struct backing_dev_info *bdi = inode_to_bdi(new_req->inode);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001796
Tejun Heo93f78d82015-05-22 17:13:27 -04001797 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
Miklos Szeredia2ebba82019-01-16 10:27:59 +01001798 dec_node_page_state(new_req->pages[0], NR_WRITEBACK_TEMP);
Tejun Heo93f78d82015-05-22 17:13:27 -04001799 wb_writeout_inc(&bdi->wb);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001800 fuse_writepage_free(fc, new_req);
1801 fuse_request_free(new_req);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001802 }
Miklos Szeredi7f305ca2019-01-16 10:27:59 +01001803
Miklos Szeredi2fe93bd2019-01-16 10:27:59 +01001804 return true;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001805}
1806
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001807static int fuse_writepages_fill(struct page *page,
1808 struct writeback_control *wbc, void *_data)
1809{
1810 struct fuse_fill_wb_data *data = _data;
1811 struct fuse_req *req = data->req;
1812 struct inode *inode = data->inode;
1813 struct fuse_conn *fc = get_fuse_conn(inode);
1814 struct page *tmp_page;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001815 bool is_writeback;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001816 int err;
1817
1818 if (!data->ff) {
1819 err = -EIO;
1820 data->ff = fuse_write_file_get(fc, get_fuse_inode(inode));
1821 if (!data->ff)
1822 goto out_unlock;
1823 }
1824
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001825 /*
1826 * Being under writeback is unlikely but possible. For example direct
1827 * read to an mmaped fuse file will set the page dirty twice; once when
1828 * the pages are faulted with get_user_pages(), and then after the read
1829 * completed.
1830 */
1831 is_writeback = fuse_page_is_writeback(inode, page->index);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001832
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001833 if (req && req->num_pages &&
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001834 (is_writeback || req->num_pages == fc->max_pages ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001835 (req->num_pages + 1) * PAGE_SIZE > fc->max_write ||
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001836 data->orig_pages[req->num_pages - 1]->index + 1 != page->index)) {
1837 fuse_writepages_send(data);
1838 data->req = NULL;
Miklos Szeredie52a82502018-10-01 10:07:06 +02001839 } else if (req && req->num_pages == req->max_pages) {
1840 if (!fuse_req_realloc_pages(fc, req, GFP_NOFS)) {
1841 fuse_writepages_send(data);
1842 req = data->req = NULL;
1843 }
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001844 }
Miklos Szeredie52a82502018-10-01 10:07:06 +02001845
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001846 err = -ENOMEM;
1847 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1848 if (!tmp_page)
1849 goto out_unlock;
1850
1851 /*
1852 * The page must not be redirtied until the writeout is completed
1853 * (i.e. userspace has sent a reply to the write request). Otherwise
1854 * there could be more than one temporary page instance for each real
1855 * page.
1856 *
1857 * This is ensured by holding the page lock in page_mkwrite() while
1858 * checking fuse_page_is_writeback(). We already hold the page lock
1859 * since clear_page_dirty_for_io() and keep it held until we add the
1860 * request to the fi->writepages list and increment req->num_pages.
1861 * After this fuse_page_is_writeback() will indicate that the page is
1862 * under writeback, so we can release the page lock.
1863 */
1864 if (data->req == NULL) {
1865 struct fuse_inode *fi = get_fuse_inode(inode);
1866
1867 err = -ENOMEM;
Miklos Szeredie52a82502018-10-01 10:07:06 +02001868 req = fuse_request_alloc_nofs(FUSE_REQ_INLINE_PAGES);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001869 if (!req) {
1870 __free_page(tmp_page);
1871 goto out_unlock;
1872 }
1873
1874 fuse_write_fill(req, data->ff, page_offset(page), 0);
1875 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001876 req->misc.write.next = NULL;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001877 req->in.argpages = 1;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001878 __set_bit(FR_BACKGROUND, &req->flags);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001879 req->num_pages = 0;
1880 req->end = fuse_writepage_end;
1881 req->inode = inode;
1882
1883 spin_lock(&fc->lock);
1884 list_add(&req->writepages_entry, &fi->writepages);
1885 spin_unlock(&fc->lock);
1886
1887 data->req = req;
1888 }
1889 set_page_writeback(page);
1890
1891 copy_highpage(tmp_page, page);
1892 req->pages[req->num_pages] = tmp_page;
1893 req->page_descs[req->num_pages].offset = 0;
1894 req->page_descs[req->num_pages].length = PAGE_SIZE;
1895
Tejun Heo93f78d82015-05-22 17:13:27 -04001896 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001897 inc_node_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001898
1899 err = 0;
1900 if (is_writeback && fuse_writepage_in_flight(req, page)) {
1901 end_page_writeback(page);
1902 data->req = NULL;
1903 goto out_unlock;
1904 }
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001905 data->orig_pages[req->num_pages] = page;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001906
1907 /*
1908 * Protected by fc->lock against concurrent access by
1909 * fuse_page_is_writeback().
1910 */
1911 spin_lock(&fc->lock);
1912 req->num_pages++;
1913 spin_unlock(&fc->lock);
1914
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001915out_unlock:
1916 unlock_page(page);
1917
1918 return err;
1919}
1920
1921static int fuse_writepages(struct address_space *mapping,
1922 struct writeback_control *wbc)
1923{
1924 struct inode *inode = mapping->host;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001925 struct fuse_conn *fc = get_fuse_conn(inode);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001926 struct fuse_fill_wb_data data;
1927 int err;
1928
1929 err = -EIO;
1930 if (is_bad_inode(inode))
1931 goto out;
1932
1933 data.inode = inode;
1934 data.req = NULL;
1935 data.ff = NULL;
1936
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001937 err = -ENOMEM;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001938 data.orig_pages = kcalloc(fc->max_pages,
Fabian Frederickf2b34552014-06-23 18:35:15 +02001939 sizeof(struct page *),
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001940 GFP_NOFS);
1941 if (!data.orig_pages)
1942 goto out;
1943
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001944 err = write_cache_pages(mapping, wbc, fuse_writepages_fill, &data);
1945 if (data.req) {
1946 /* Ignore errors if we can write at least one page */
1947 BUG_ON(!data.req->num_pages);
1948 fuse_writepages_send(&data);
1949 err = 0;
1950 }
1951 if (data.ff)
Chad Austin2e64ff12018-12-10 10:54:52 -08001952 fuse_file_put(data.ff, false, false);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001953
1954 kfree(data.orig_pages);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001955out:
1956 return err;
1957}
1958
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001959/*
1960 * It's worthy to make sure that space is reserved on disk for the write,
1961 * but how to implement it without killing performance need more thinking.
1962 */
1963static int fuse_write_begin(struct file *file, struct address_space *mapping,
1964 loff_t pos, unsigned len, unsigned flags,
1965 struct page **pagep, void **fsdata)
1966{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001967 pgoff_t index = pos >> PAGE_SHIFT;
Al Viroa4555892014-10-21 20:11:25 -04001968 struct fuse_conn *fc = get_fuse_conn(file_inode(file));
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001969 struct page *page;
1970 loff_t fsize;
1971 int err = -ENOMEM;
1972
1973 WARN_ON(!fc->writeback_cache);
1974
1975 page = grab_cache_page_write_begin(mapping, index, flags);
1976 if (!page)
1977 goto error;
1978
1979 fuse_wait_on_page_writeback(mapping->host, page->index);
1980
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001981 if (PageUptodate(page) || len == PAGE_SIZE)
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001982 goto success;
1983 /*
1984 * Check if the start this page comes after the end of file, in which
1985 * case the readpage can be optimized away.
1986 */
1987 fsize = i_size_read(mapping->host);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001988 if (fsize <= (pos & PAGE_MASK)) {
1989 size_t off = pos & ~PAGE_MASK;
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001990 if (off)
1991 zero_user_segment(page, 0, off);
1992 goto success;
1993 }
1994 err = fuse_do_readpage(file, page);
1995 if (err)
1996 goto cleanup;
1997success:
1998 *pagep = page;
1999 return 0;
2000
2001cleanup:
2002 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002003 put_page(page);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002004error:
2005 return err;
2006}
2007
2008static int fuse_write_end(struct file *file, struct address_space *mapping,
2009 loff_t pos, unsigned len, unsigned copied,
2010 struct page *page, void *fsdata)
2011{
2012 struct inode *inode = page->mapping->host;
2013
Miklos Szeredi59c3b762016-08-18 09:10:44 +02002014 /* Haven't copied anything? Skip zeroing, size extending, dirtying. */
2015 if (!copied)
2016 goto unlock;
2017
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002018 if (!PageUptodate(page)) {
2019 /* Zero any unwritten bytes at the end of the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002020 size_t endoff = (pos + copied) & ~PAGE_MASK;
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002021 if (endoff)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002022 zero_user_segment(page, endoff, PAGE_SIZE);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002023 SetPageUptodate(page);
2024 }
2025
2026 fuse_write_update_size(inode, pos + copied);
2027 set_page_dirty(page);
Miklos Szeredi59c3b762016-08-18 09:10:44 +02002028
2029unlock:
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002030 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002031 put_page(page);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002032
2033 return copied;
2034}
2035
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002036static int fuse_launder_page(struct page *page)
2037{
2038 int err = 0;
2039 if (clear_page_dirty_for_io(page)) {
2040 struct inode *inode = page->mapping->host;
2041 err = fuse_writepage_locked(page);
2042 if (!err)
2043 fuse_wait_on_page_writeback(inode, page->index);
2044 }
2045 return err;
2046}
2047
2048/*
2049 * Write back dirty pages now, because there may not be any suitable
2050 * open files later
2051 */
2052static void fuse_vma_close(struct vm_area_struct *vma)
2053{
2054 filemap_write_and_wait(vma->vm_file->f_mapping);
2055}
2056
2057/*
2058 * Wait for writeback against this page to complete before allowing it
2059 * to be marked dirty again, and hence written back again, possibly
2060 * before the previous writepage completed.
2061 *
2062 * Block here, instead of in ->writepage(), so that the userspace fs
2063 * can only block processes actually operating on the filesystem.
2064 *
2065 * Otherwise unprivileged userspace fs would be able to block
2066 * unrelated:
2067 *
2068 * - page migration
2069 * - sync(2)
2070 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
2071 */
Souptick Joarder46fb5042018-05-12 10:25:37 +05302072static vm_fault_t fuse_page_mkwrite(struct vm_fault *vmf)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002073{
Nick Pigginc2ec1752009-03-31 15:23:21 -07002074 struct page *page = vmf->page;
Dave Jiang11bac802017-02-24 14:56:41 -08002075 struct inode *inode = file_inode(vmf->vma->vm_file);
Miklos Szeredicca24372013-10-01 16:44:51 +02002076
Dave Jiang11bac802017-02-24 14:56:41 -08002077 file_update_time(vmf->vma->vm_file);
Miklos Szeredicca24372013-10-01 16:44:51 +02002078 lock_page(page);
2079 if (page->mapping != inode->i_mapping) {
2080 unlock_page(page);
2081 return VM_FAULT_NOPAGE;
2082 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002083
2084 fuse_wait_on_page_writeback(inode, page->index);
Miklos Szeredicca24372013-10-01 16:44:51 +02002085 return VM_FAULT_LOCKED;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002086}
2087
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002088static const struct vm_operations_struct fuse_file_vm_ops = {
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002089 .close = fuse_vma_close,
2090 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002091 .map_pages = filemap_map_pages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002092 .page_mkwrite = fuse_page_mkwrite,
2093};
2094
2095static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
2096{
Pavel Emelyanov650b22b2013-10-10 17:10:04 +04002097 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2098 fuse_link_write_file(file);
2099
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002100 file_accessed(file);
2101 vma->vm_ops = &fuse_file_vm_ops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002102 return 0;
2103}
2104
Miklos Szeredifc280c92009-04-02 14:25:35 +02002105static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
2106{
2107 /* Can't provide the coherency needed for MAP_SHARED */
2108 if (vma->vm_flags & VM_MAYSHARE)
2109 return -ENODEV;
2110
Miklos Szeredi3121bfe2009-04-09 17:37:53 +02002111 invalidate_inode_pages2(file->f_mapping);
2112
Miklos Szeredifc280c92009-04-02 14:25:35 +02002113 return generic_file_mmap(file, vma);
2114}
2115
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002116static int convert_fuse_file_lock(struct fuse_conn *fc,
2117 const struct fuse_file_lock *ffl,
Miklos Szeredi71421252006-06-25 05:48:52 -07002118 struct file_lock *fl)
2119{
2120 switch (ffl->type) {
2121 case F_UNLCK:
2122 break;
2123
2124 case F_RDLCK:
2125 case F_WRLCK:
2126 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
2127 ffl->end < ffl->start)
2128 return -EIO;
2129
2130 fl->fl_start = ffl->start;
2131 fl->fl_end = ffl->end;
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002132
2133 /*
Benjamin Coddington9d5b86a2017-07-16 10:28:22 -04002134 * Convert pid into init's pid namespace. The locks API will
2135 * translate it into the caller's pid namespace.
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002136 */
2137 rcu_read_lock();
Benjamin Coddington9d5b86a2017-07-16 10:28:22 -04002138 fl->fl_pid = pid_nr_ns(find_pid_ns(ffl->pid, fc->pid_ns), &init_pid_ns);
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002139 rcu_read_unlock();
Miklos Szeredi71421252006-06-25 05:48:52 -07002140 break;
2141
2142 default:
2143 return -EIO;
2144 }
2145 fl->fl_type = ffl->type;
2146 return 0;
2147}
2148
Miklos Szeredi70781872014-12-12 09:49:05 +01002149static void fuse_lk_fill(struct fuse_args *args, struct file *file,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002150 const struct file_lock *fl, int opcode, pid_t pid,
Miklos Szeredi70781872014-12-12 09:49:05 +01002151 int flock, struct fuse_lk_in *inarg)
Miklos Szeredi71421252006-06-25 05:48:52 -07002152{
Al Viro6131ffa2013-02-27 16:59:05 -05002153 struct inode *inode = file_inode(file);
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07002154 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi71421252006-06-25 05:48:52 -07002155 struct fuse_file *ff = file->private_data;
Miklos Szeredi71421252006-06-25 05:48:52 -07002156
Miklos Szeredi70781872014-12-12 09:49:05 +01002157 memset(inarg, 0, sizeof(*inarg));
2158 inarg->fh = ff->fh;
2159 inarg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
2160 inarg->lk.start = fl->fl_start;
2161 inarg->lk.end = fl->fl_end;
2162 inarg->lk.type = fl->fl_type;
2163 inarg->lk.pid = pid;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002164 if (flock)
Miklos Szeredi70781872014-12-12 09:49:05 +01002165 inarg->lk_flags |= FUSE_LK_FLOCK;
2166 args->in.h.opcode = opcode;
2167 args->in.h.nodeid = get_node_id(inode);
2168 args->in.numargs = 1;
2169 args->in.args[0].size = sizeof(*inarg);
2170 args->in.args[0].value = inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002171}
2172
2173static int fuse_getlk(struct file *file, struct file_lock *fl)
2174{
Al Viro6131ffa2013-02-27 16:59:05 -05002175 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002176 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002177 FUSE_ARGS(args);
2178 struct fuse_lk_in inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002179 struct fuse_lk_out outarg;
2180 int err;
2181
Miklos Szeredi70781872014-12-12 09:49:05 +01002182 fuse_lk_fill(&args, file, fl, FUSE_GETLK, 0, 0, &inarg);
2183 args.out.numargs = 1;
2184 args.out.args[0].size = sizeof(outarg);
2185 args.out.args[0].value = &outarg;
2186 err = fuse_simple_request(fc, &args);
Miklos Szeredi71421252006-06-25 05:48:52 -07002187 if (!err)
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002188 err = convert_fuse_file_lock(fc, &outarg.lk, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07002189
2190 return err;
2191}
2192
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002193static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07002194{
Al Viro6131ffa2013-02-27 16:59:05 -05002195 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002196 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002197 FUSE_ARGS(args);
2198 struct fuse_lk_in inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002199 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002200 struct pid *pid = fl->fl_type != F_UNLCK ? task_tgid(current) : NULL;
2201 pid_t pid_nr = pid_nr_ns(pid, fc->pid_ns);
Miklos Szeredi71421252006-06-25 05:48:52 -07002202 int err;
2203
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04002204 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
Miklos Szeredi48e90762008-07-25 01:49:02 -07002205 /* NLM needs asynchronous locks, which we don't support yet */
2206 return -ENOLCK;
2207 }
2208
Miklos Szeredi71421252006-06-25 05:48:52 -07002209 /* Unlock on close is handled by the flush method */
Benjamin Coddington50f21122017-04-11 12:50:09 -04002210 if ((fl->fl_flags & FL_CLOSE_POSIX) == FL_CLOSE_POSIX)
Miklos Szeredi71421252006-06-25 05:48:52 -07002211 return 0;
2212
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002213 fuse_lk_fill(&args, file, fl, opcode, pid_nr, flock, &inarg);
Miklos Szeredi70781872014-12-12 09:49:05 +01002214 err = fuse_simple_request(fc, &args);
Miklos Szeredi71421252006-06-25 05:48:52 -07002215
Miklos Szeredia4d27e72006-06-25 05:48:54 -07002216 /* locking is restartable */
2217 if (err == -EINTR)
2218 err = -ERESTARTSYS;
Miklos Szeredi70781872014-12-12 09:49:05 +01002219
Miklos Szeredi71421252006-06-25 05:48:52 -07002220 return err;
2221}
2222
2223static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
2224{
Al Viro6131ffa2013-02-27 16:59:05 -05002225 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002226 struct fuse_conn *fc = get_fuse_conn(inode);
2227 int err;
2228
Miklos Szeredi48e90762008-07-25 01:49:02 -07002229 if (cmd == F_CANCELLK) {
2230 err = 0;
2231 } else if (cmd == F_GETLK) {
Miklos Szeredi71421252006-06-25 05:48:52 -07002232 if (fc->no_lock) {
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002233 posix_test_lock(file, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07002234 err = 0;
2235 } else
2236 err = fuse_getlk(file, fl);
2237 } else {
2238 if (fc->no_lock)
Miklos Szeredi48e90762008-07-25 01:49:02 -07002239 err = posix_lock_file(file, fl, NULL);
Miklos Szeredi71421252006-06-25 05:48:52 -07002240 else
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002241 err = fuse_setlk(file, fl, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07002242 }
2243 return err;
2244}
2245
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002246static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
2247{
Al Viro6131ffa2013-02-27 16:59:05 -05002248 struct inode *inode = file_inode(file);
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002249 struct fuse_conn *fc = get_fuse_conn(inode);
2250 int err;
2251
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002252 if (fc->no_flock) {
Benjamin Coddington4f656362015-10-22 13:38:14 -04002253 err = locks_lock_file_wait(file, fl);
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002254 } else {
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002255 struct fuse_file *ff = file->private_data;
2256
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002257 /* emulate flock with POSIX locks */
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002258 ff->flock = true;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002259 err = fuse_setlk(file, fl, 1);
2260 }
2261
2262 return err;
2263}
2264
Miklos Szeredib2d22722006-12-06 20:35:51 -08002265static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
2266{
2267 struct inode *inode = mapping->host;
2268 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002269 FUSE_ARGS(args);
Miklos Szeredib2d22722006-12-06 20:35:51 -08002270 struct fuse_bmap_in inarg;
2271 struct fuse_bmap_out outarg;
2272 int err;
2273
2274 if (!inode->i_sb->s_bdev || fc->no_bmap)
2275 return 0;
2276
Miklos Szeredib2d22722006-12-06 20:35:51 -08002277 memset(&inarg, 0, sizeof(inarg));
2278 inarg.block = block;
2279 inarg.blocksize = inode->i_sb->s_blocksize;
Miklos Szeredi70781872014-12-12 09:49:05 +01002280 args.in.h.opcode = FUSE_BMAP;
2281 args.in.h.nodeid = get_node_id(inode);
2282 args.in.numargs = 1;
2283 args.in.args[0].size = sizeof(inarg);
2284 args.in.args[0].value = &inarg;
2285 args.out.numargs = 1;
2286 args.out.args[0].size = sizeof(outarg);
2287 args.out.args[0].value = &outarg;
2288 err = fuse_simple_request(fc, &args);
Miklos Szeredib2d22722006-12-06 20:35:51 -08002289 if (err == -ENOSYS)
2290 fc->no_bmap = 1;
2291
2292 return err ? 0 : outarg.block;
2293}
2294
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302295static loff_t fuse_lseek(struct file *file, loff_t offset, int whence)
2296{
2297 struct inode *inode = file->f_mapping->host;
2298 struct fuse_conn *fc = get_fuse_conn(inode);
2299 struct fuse_file *ff = file->private_data;
2300 FUSE_ARGS(args);
2301 struct fuse_lseek_in inarg = {
2302 .fh = ff->fh,
2303 .offset = offset,
2304 .whence = whence
2305 };
2306 struct fuse_lseek_out outarg;
2307 int err;
2308
2309 if (fc->no_lseek)
2310 goto fallback;
2311
2312 args.in.h.opcode = FUSE_LSEEK;
2313 args.in.h.nodeid = ff->nodeid;
2314 args.in.numargs = 1;
2315 args.in.args[0].size = sizeof(inarg);
2316 args.in.args[0].value = &inarg;
2317 args.out.numargs = 1;
2318 args.out.args[0].size = sizeof(outarg);
2319 args.out.args[0].value = &outarg;
2320 err = fuse_simple_request(fc, &args);
2321 if (err) {
2322 if (err == -ENOSYS) {
2323 fc->no_lseek = 1;
2324 goto fallback;
2325 }
2326 return err;
2327 }
2328
2329 return vfs_setpos(file, outarg.offset, inode->i_sb->s_maxbytes);
2330
2331fallback:
Miklos Szeredi5b97eea2017-09-12 16:57:54 +02002332 err = fuse_update_attributes(inode, file);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302333 if (!err)
2334 return generic_file_llseek(file, offset, whence);
2335 else
2336 return err;
2337}
2338
Andrew Morton965c8e52012-12-17 15:59:39 -08002339static loff_t fuse_file_llseek(struct file *file, loff_t offset, int whence)
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002340{
2341 loff_t retval;
Al Viro6131ffa2013-02-27 16:59:05 -05002342 struct inode *inode = file_inode(file);
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002343
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302344 switch (whence) {
2345 case SEEK_SET:
2346 case SEEK_CUR:
2347 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
Andrew Morton965c8e52012-12-17 15:59:39 -08002348 retval = generic_file_llseek(file, offset, whence);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302349 break;
2350 case SEEK_END:
Al Viro59551022016-01-22 15:40:57 -05002351 inode_lock(inode);
Miklos Szeredi5b97eea2017-09-12 16:57:54 +02002352 retval = fuse_update_attributes(inode, file);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302353 if (!retval)
2354 retval = generic_file_llseek(file, offset, whence);
Al Viro59551022016-01-22 15:40:57 -05002355 inode_unlock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302356 break;
2357 case SEEK_HOLE:
2358 case SEEK_DATA:
Al Viro59551022016-01-22 15:40:57 -05002359 inode_lock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302360 retval = fuse_lseek(file, offset, whence);
Al Viro59551022016-01-22 15:40:57 -05002361 inode_unlock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302362 break;
2363 default:
2364 retval = -EINVAL;
2365 }
Miklos Szeredic07c3d12011-12-13 11:58:48 +01002366
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002367 return retval;
2368}
2369
Tejun Heo59efec72008-11-26 12:03:55 +01002370/*
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002371 * CUSE servers compiled on 32bit broke on 64bit kernels because the
2372 * ABI was defined to be 'struct iovec' which is different on 32bit
2373 * and 64bit. Fortunately we can determine which structure the server
2374 * used from the size of the reply.
2375 */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002376static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
2377 size_t transferred, unsigned count,
2378 bool is_compat)
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002379{
2380#ifdef CONFIG_COMPAT
2381 if (count * sizeof(struct compat_iovec) == transferred) {
2382 struct compat_iovec *ciov = src;
2383 unsigned i;
2384
2385 /*
2386 * With this interface a 32bit server cannot support
2387 * non-compat (i.e. ones coming from 64bit apps) ioctl
2388 * requests
2389 */
2390 if (!is_compat)
2391 return -EINVAL;
2392
2393 for (i = 0; i < count; i++) {
2394 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
2395 dst[i].iov_len = ciov[i].iov_len;
2396 }
2397 return 0;
2398 }
2399#endif
2400
2401 if (count * sizeof(struct iovec) != transferred)
2402 return -EIO;
2403
2404 memcpy(dst, src, transferred);
2405 return 0;
2406}
2407
Miklos Szeredi75727772010-11-30 16:39:27 +01002408/* Make sure iov_length() won't overflow */
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002409static int fuse_verify_ioctl_iov(struct fuse_conn *fc, struct iovec *iov,
2410 size_t count)
Miklos Szeredi75727772010-11-30 16:39:27 +01002411{
2412 size_t n;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002413 u32 max = fc->max_pages << PAGE_SHIFT;
Miklos Szeredi75727772010-11-30 16:39:27 +01002414
Zach Brownfb6ccff2012-07-24 12:10:11 -07002415 for (n = 0; n < count; n++, iov++) {
Miklos Szeredi75727772010-11-30 16:39:27 +01002416 if (iov->iov_len > (size_t) max)
2417 return -ENOMEM;
2418 max -= iov->iov_len;
2419 }
2420 return 0;
2421}
2422
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002423static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
2424 void *src, size_t transferred, unsigned count,
2425 bool is_compat)
2426{
2427 unsigned i;
2428 struct fuse_ioctl_iovec *fiov = src;
2429
2430 if (fc->minor < 16) {
2431 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
2432 count, is_compat);
2433 }
2434
2435 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
2436 return -EIO;
2437
2438 for (i = 0; i < count; i++) {
2439 /* Did the server supply an inappropriate value? */
2440 if (fiov[i].base != (unsigned long) fiov[i].base ||
2441 fiov[i].len != (unsigned long) fiov[i].len)
2442 return -EIO;
2443
2444 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
2445 dst[i].iov_len = (size_t) fiov[i].len;
2446
2447#ifdef CONFIG_COMPAT
2448 if (is_compat &&
2449 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
2450 (compat_size_t) dst[i].iov_len != fiov[i].len))
2451 return -EIO;
2452#endif
2453 }
2454
2455 return 0;
2456}
2457
2458
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002459/*
Tejun Heo59efec72008-11-26 12:03:55 +01002460 * For ioctls, there is no generic way to determine how much memory
2461 * needs to be read and/or written. Furthermore, ioctls are allowed
2462 * to dereference the passed pointer, so the parameter requires deep
2463 * copying but FUSE has no idea whatsoever about what to copy in or
2464 * out.
2465 *
2466 * This is solved by allowing FUSE server to retry ioctl with
2467 * necessary in/out iovecs. Let's assume the ioctl implementation
2468 * needs to read in the following structure.
2469 *
2470 * struct a {
2471 * char *buf;
2472 * size_t buflen;
2473 * }
2474 *
2475 * On the first callout to FUSE server, inarg->in_size and
2476 * inarg->out_size will be NULL; then, the server completes the ioctl
2477 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
2478 * the actual iov array to
2479 *
2480 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
2481 *
2482 * which tells FUSE to copy in the requested area and retry the ioctl.
2483 * On the second round, the server has access to the structure and
2484 * from that it can tell what to look for next, so on the invocation,
2485 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
2486 *
2487 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
2488 * { .iov_base = a.buf, .iov_len = a.buflen } }
2489 *
2490 * FUSE will copy both struct a and the pointed buffer from the
2491 * process doing the ioctl and retry ioctl with both struct a and the
2492 * buffer.
2493 *
2494 * This time, FUSE server has everything it needs and completes ioctl
2495 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
2496 *
2497 * Copying data out works the same way.
2498 *
2499 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
2500 * automatically initializes in and out iovs by decoding @cmd with
2501 * _IOC_* macros and the server is not allowed to request RETRY. This
2502 * limits ioctl data transfers to well-formed ioctls and is the forced
2503 * behavior for all FUSE servers.
2504 */
Tejun Heo08cbf542009-04-14 10:54:53 +09002505long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
2506 unsigned int flags)
Tejun Heo59efec72008-11-26 12:03:55 +01002507{
Tejun Heo59efec72008-11-26 12:03:55 +01002508 struct fuse_file *ff = file->private_data;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002509 struct fuse_conn *fc = ff->fc;
Tejun Heo59efec72008-11-26 12:03:55 +01002510 struct fuse_ioctl_in inarg = {
2511 .fh = ff->fh,
2512 .cmd = cmd,
2513 .arg = arg,
2514 .flags = flags
2515 };
2516 struct fuse_ioctl_out outarg;
2517 struct fuse_req *req = NULL;
2518 struct page **pages = NULL;
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002519 struct iovec *iov_page = NULL;
Tejun Heo59efec72008-11-26 12:03:55 +01002520 struct iovec *in_iov = NULL, *out_iov = NULL;
2521 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002522 size_t in_size, out_size, transferred, c;
2523 int err, i;
2524 struct iov_iter ii;
Tejun Heo59efec72008-11-26 12:03:55 +01002525
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002526#if BITS_PER_LONG == 32
2527 inarg.flags |= FUSE_IOCTL_32BIT;
2528#else
2529 if (flags & FUSE_IOCTL_COMPAT)
2530 inarg.flags |= FUSE_IOCTL_32BIT;
2531#endif
2532
Tejun Heo59efec72008-11-26 12:03:55 +01002533 /* assume all the iovs returned by client always fits in a page */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002534 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
Tejun Heo59efec72008-11-26 12:03:55 +01002535
Tejun Heo59efec72008-11-26 12:03:55 +01002536 err = -ENOMEM;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002537 pages = kcalloc(fc->max_pages, sizeof(pages[0]), GFP_KERNEL);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002538 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
Tejun Heo59efec72008-11-26 12:03:55 +01002539 if (!pages || !iov_page)
2540 goto out;
2541
2542 /*
2543 * If restricted, initialize IO parameters as encoded in @cmd.
2544 * RETRY from server is not allowed.
2545 */
2546 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002547 struct iovec *iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002548
Miklos Szeredic9f0523d2008-12-02 14:49:42 +01002549 iov->iov_base = (void __user *)arg;
Tejun Heo59efec72008-11-26 12:03:55 +01002550 iov->iov_len = _IOC_SIZE(cmd);
2551
2552 if (_IOC_DIR(cmd) & _IOC_WRITE) {
2553 in_iov = iov;
2554 in_iovs = 1;
2555 }
2556
2557 if (_IOC_DIR(cmd) & _IOC_READ) {
2558 out_iov = iov;
2559 out_iovs = 1;
2560 }
2561 }
2562
2563 retry:
2564 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
2565 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
2566
2567 /*
2568 * Out data can be used either for actual out data or iovs,
2569 * make sure there always is at least one page.
2570 */
2571 out_size = max_t(size_t, out_size, PAGE_SIZE);
2572 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
2573
2574 /* make sure there are enough buffer pages and init request with them */
2575 err = -ENOMEM;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002576 if (max_pages > fc->max_pages)
Tejun Heo59efec72008-11-26 12:03:55 +01002577 goto out;
2578 while (num_pages < max_pages) {
2579 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2580 if (!pages[num_pages])
2581 goto out;
2582 num_pages++;
2583 }
2584
Maxim Patlasov54b96672012-10-26 19:49:13 +04002585 req = fuse_get_req(fc, num_pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002586 if (IS_ERR(req)) {
2587 err = PTR_ERR(req);
2588 req = NULL;
2589 goto out;
2590 }
2591 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
2592 req->num_pages = num_pages;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04002593 fuse_page_descs_length_init(req, 0, req->num_pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002594
2595 /* okay, let's send it to the client */
2596 req->in.h.opcode = FUSE_IOCTL;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002597 req->in.h.nodeid = ff->nodeid;
Tejun Heo59efec72008-11-26 12:03:55 +01002598 req->in.numargs = 1;
2599 req->in.args[0].size = sizeof(inarg);
2600 req->in.args[0].value = &inarg;
2601 if (in_size) {
2602 req->in.numargs++;
2603 req->in.args[1].size = in_size;
2604 req->in.argpages = 1;
2605
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002606 err = -EFAULT;
2607 iov_iter_init(&ii, WRITE, in_iov, in_iovs, in_size);
2608 for (i = 0; iov_iter_count(&ii) && !WARN_ON(i >= num_pages); i++) {
2609 c = copy_page_from_iter(pages[i], 0, PAGE_SIZE, &ii);
2610 if (c != PAGE_SIZE && iov_iter_count(&ii))
2611 goto out;
2612 }
Tejun Heo59efec72008-11-26 12:03:55 +01002613 }
2614
2615 req->out.numargs = 2;
2616 req->out.args[0].size = sizeof(outarg);
2617 req->out.args[0].value = &outarg;
2618 req->out.args[1].size = out_size;
2619 req->out.argpages = 1;
2620 req->out.argvar = 1;
2621
Tejun Heob93f8582008-11-26 12:03:55 +01002622 fuse_request_send(fc, req);
Tejun Heo59efec72008-11-26 12:03:55 +01002623 err = req->out.h.error;
2624 transferred = req->out.args[1].size;
2625 fuse_put_request(fc, req);
2626 req = NULL;
2627 if (err)
2628 goto out;
2629
2630 /* did it ask for retry? */
2631 if (outarg.flags & FUSE_IOCTL_RETRY) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002632 void *vaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01002633
2634 /* no retry if in restricted mode */
2635 err = -EIO;
2636 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
2637 goto out;
2638
2639 in_iovs = outarg.in_iovs;
2640 out_iovs = outarg.out_iovs;
2641
2642 /*
2643 * Make sure things are in boundary, separate checks
2644 * are to protect against overflow.
2645 */
2646 err = -ENOMEM;
2647 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
2648 out_iovs > FUSE_IOCTL_MAX_IOV ||
2649 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
2650 goto out;
2651
Cong Wang2408f6e2011-11-25 23:14:30 +08002652 vaddr = kmap_atomic(pages[0]);
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002653 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002654 transferred, in_iovs + out_iovs,
2655 (flags & FUSE_IOCTL_COMPAT) != 0);
Cong Wang2408f6e2011-11-25 23:14:30 +08002656 kunmap_atomic(vaddr);
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002657 if (err)
2658 goto out;
Tejun Heo59efec72008-11-26 12:03:55 +01002659
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002660 in_iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002661 out_iov = in_iov + in_iovs;
2662
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002663 err = fuse_verify_ioctl_iov(fc, in_iov, in_iovs);
Miklos Szeredi75727772010-11-30 16:39:27 +01002664 if (err)
2665 goto out;
2666
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002667 err = fuse_verify_ioctl_iov(fc, out_iov, out_iovs);
Miklos Szeredi75727772010-11-30 16:39:27 +01002668 if (err)
2669 goto out;
2670
Tejun Heo59efec72008-11-26 12:03:55 +01002671 goto retry;
2672 }
2673
2674 err = -EIO;
2675 if (transferred > inarg.out_size)
2676 goto out;
2677
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002678 err = -EFAULT;
2679 iov_iter_init(&ii, READ, out_iov, out_iovs, transferred);
2680 for (i = 0; iov_iter_count(&ii) && !WARN_ON(i >= num_pages); i++) {
2681 c = copy_page_to_iter(pages[i], 0, PAGE_SIZE, &ii);
2682 if (c != PAGE_SIZE && iov_iter_count(&ii))
2683 goto out;
2684 }
2685 err = 0;
Tejun Heo59efec72008-11-26 12:03:55 +01002686 out:
2687 if (req)
2688 fuse_put_request(fc, req);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002689 free_page((unsigned long) iov_page);
Tejun Heo59efec72008-11-26 12:03:55 +01002690 while (num_pages)
2691 __free_page(pages[--num_pages]);
2692 kfree(pages);
2693
2694 return err ? err : outarg.result;
2695}
Tejun Heo08cbf542009-04-14 10:54:53 +09002696EXPORT_SYMBOL_GPL(fuse_do_ioctl);
Tejun Heo59efec72008-11-26 12:03:55 +01002697
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002698long fuse_ioctl_common(struct file *file, unsigned int cmd,
2699 unsigned long arg, unsigned int flags)
Miklos Szeredid36f2482009-04-28 16:56:39 +02002700{
Al Viro6131ffa2013-02-27 16:59:05 -05002701 struct inode *inode = file_inode(file);
Miklos Szeredid36f2482009-04-28 16:56:39 +02002702 struct fuse_conn *fc = get_fuse_conn(inode);
2703
Anatol Pomozovc2132c12013-01-14 22:30:00 -08002704 if (!fuse_allow_current_process(fc))
Miklos Szeredid36f2482009-04-28 16:56:39 +02002705 return -EACCES;
2706
2707 if (is_bad_inode(inode))
2708 return -EIO;
2709
2710 return fuse_do_ioctl(file, cmd, arg, flags);
2711}
2712
Tejun Heo59efec72008-11-26 12:03:55 +01002713static long fuse_file_ioctl(struct file *file, unsigned int cmd,
2714 unsigned long arg)
2715{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002716 return fuse_ioctl_common(file, cmd, arg, 0);
Tejun Heo59efec72008-11-26 12:03:55 +01002717}
2718
2719static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
2720 unsigned long arg)
2721{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002722 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
Tejun Heo59efec72008-11-26 12:03:55 +01002723}
2724
Tejun Heo95668a62008-11-26 12:03:55 +01002725/*
2726 * All files which have been polled are linked to RB tree
2727 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2728 * find the matching one.
2729 */
2730static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2731 struct rb_node **parent_out)
2732{
2733 struct rb_node **link = &fc->polled_files.rb_node;
2734 struct rb_node *last = NULL;
2735
2736 while (*link) {
2737 struct fuse_file *ff;
2738
2739 last = *link;
2740 ff = rb_entry(last, struct fuse_file, polled_node);
2741
2742 if (kh < ff->kh)
2743 link = &last->rb_left;
2744 else if (kh > ff->kh)
2745 link = &last->rb_right;
2746 else
2747 return link;
2748 }
2749
2750 if (parent_out)
2751 *parent_out = last;
2752 return link;
2753}
2754
2755/*
2756 * The file is about to be polled. Make sure it's on the polled_files
2757 * RB tree. Note that files once added to the polled_files tree are
2758 * not removed before the file is released. This is because a file
2759 * polled once is likely to be polled again.
2760 */
2761static void fuse_register_polled_file(struct fuse_conn *fc,
2762 struct fuse_file *ff)
2763{
2764 spin_lock(&fc->lock);
2765 if (RB_EMPTY_NODE(&ff->polled_node)) {
Rajat Jainf3846262014-02-05 15:24:57 -08002766 struct rb_node **link, *uninitialized_var(parent);
Tejun Heo95668a62008-11-26 12:03:55 +01002767
2768 link = fuse_find_polled_node(fc, ff->kh, &parent);
2769 BUG_ON(*link);
2770 rb_link_node(&ff->polled_node, parent, link);
2771 rb_insert_color(&ff->polled_node, &fc->polled_files);
2772 }
2773 spin_unlock(&fc->lock);
2774}
2775
Al Viro076ccb72017-07-03 01:02:18 -04002776__poll_t fuse_file_poll(struct file *file, poll_table *wait)
Tejun Heo95668a62008-11-26 12:03:55 +01002777{
Tejun Heo95668a62008-11-26 12:03:55 +01002778 struct fuse_file *ff = file->private_data;
Miklos Szeredi797759a2009-04-28 16:56:41 +02002779 struct fuse_conn *fc = ff->fc;
Tejun Heo95668a62008-11-26 12:03:55 +01002780 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2781 struct fuse_poll_out outarg;
Miklos Szeredi70781872014-12-12 09:49:05 +01002782 FUSE_ARGS(args);
Tejun Heo95668a62008-11-26 12:03:55 +01002783 int err;
2784
2785 if (fc->no_poll)
2786 return DEFAULT_POLLMASK;
2787
2788 poll_wait(file, &ff->poll_wait, wait);
Al Viroc71d2272017-11-29 19:00:41 -05002789 inarg.events = mangle_poll(poll_requested_events(wait));
Tejun Heo95668a62008-11-26 12:03:55 +01002790
2791 /*
2792 * Ask for notification iff there's someone waiting for it.
2793 * The client may ignore the flag and always notify.
2794 */
2795 if (waitqueue_active(&ff->poll_wait)) {
2796 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2797 fuse_register_polled_file(fc, ff);
2798 }
2799
Miklos Szeredi70781872014-12-12 09:49:05 +01002800 args.in.h.opcode = FUSE_POLL;
2801 args.in.h.nodeid = ff->nodeid;
2802 args.in.numargs = 1;
2803 args.in.args[0].size = sizeof(inarg);
2804 args.in.args[0].value = &inarg;
2805 args.out.numargs = 1;
2806 args.out.args[0].size = sizeof(outarg);
2807 args.out.args[0].value = &outarg;
2808 err = fuse_simple_request(fc, &args);
Tejun Heo95668a62008-11-26 12:03:55 +01002809
2810 if (!err)
Al Viroc71d2272017-11-29 19:00:41 -05002811 return demangle_poll(outarg.revents);
Tejun Heo95668a62008-11-26 12:03:55 +01002812 if (err == -ENOSYS) {
2813 fc->no_poll = 1;
2814 return DEFAULT_POLLMASK;
2815 }
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002816 return EPOLLERR;
Tejun Heo95668a62008-11-26 12:03:55 +01002817}
Tejun Heo08cbf542009-04-14 10:54:53 +09002818EXPORT_SYMBOL_GPL(fuse_file_poll);
Tejun Heo95668a62008-11-26 12:03:55 +01002819
2820/*
2821 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2822 * wakes up the poll waiters.
2823 */
2824int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2825 struct fuse_notify_poll_wakeup_out *outarg)
2826{
2827 u64 kh = outarg->kh;
2828 struct rb_node **link;
2829
2830 spin_lock(&fc->lock);
2831
2832 link = fuse_find_polled_node(fc, kh, NULL);
2833 if (*link) {
2834 struct fuse_file *ff;
2835
2836 ff = rb_entry(*link, struct fuse_file, polled_node);
2837 wake_up_interruptible_sync(&ff->poll_wait);
2838 }
2839
2840 spin_unlock(&fc->lock);
2841 return 0;
2842}
2843
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002844static void fuse_do_truncate(struct file *file)
2845{
2846 struct inode *inode = file->f_mapping->host;
2847 struct iattr attr;
2848
2849 attr.ia_valid = ATTR_SIZE;
2850 attr.ia_size = i_size_read(inode);
2851
2852 attr.ia_file = file;
2853 attr.ia_valid |= ATTR_FILE;
2854
Jan Kara62490332016-05-26 17:12:41 +02002855 fuse_do_setattr(file_dentry(file), &attr, file);
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002856}
2857
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002858static inline loff_t fuse_round_up(struct fuse_conn *fc, loff_t off)
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002859{
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002860 return round_up(off, fc->max_pages << PAGE_SHIFT);
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002861}
2862
Anand Avati4273b792012-02-17 12:46:25 -05002863static ssize_t
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07002864fuse_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Anand Avati4273b792012-02-17 12:46:25 -05002865{
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002866 DECLARE_COMPLETION_ONSTACK(wait);
Anand Avati4273b792012-02-17 12:46:25 -05002867 ssize_t ret = 0;
Miklos Szeredi60b9df72013-05-01 14:37:21 +02002868 struct file *file = iocb->ki_filp;
2869 struct fuse_file *ff = file->private_data;
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002870 bool async_dio = ff->fc->async_dio;
Anand Avati4273b792012-02-17 12:46:25 -05002871 loff_t pos = 0;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002872 struct inode *inode;
2873 loff_t i_size;
Al Viroa6cbcd42014-03-04 22:38:00 -05002874 size_t count = iov_iter_count(iter);
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07002875 loff_t offset = iocb->ki_pos;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002876 struct fuse_io_priv *io;
Anand Avati4273b792012-02-17 12:46:25 -05002877
Anand Avati4273b792012-02-17 12:46:25 -05002878 pos = offset;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002879 inode = file->f_mapping->host;
2880 i_size = i_size_read(inode);
Anand Avati4273b792012-02-17 12:46:25 -05002881
Omar Sandoval6f673762015-03-16 04:33:52 -07002882 if ((iov_iter_rw(iter) == READ) && (offset > i_size))
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00002883 return 0;
2884
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002885 /* optimization for short read */
Omar Sandoval6f673762015-03-16 04:33:52 -07002886 if (async_dio && iov_iter_rw(iter) != WRITE && offset + count > i_size) {
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002887 if (offset >= i_size)
2888 return 0;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03002889 iov_iter_truncate(iter, fuse_round_up(ff->fc, i_size - offset));
Al Viro6b775b12015-04-07 15:06:19 -04002890 count = iov_iter_count(iter);
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002891 }
2892
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002893 io = kmalloc(sizeof(struct fuse_io_priv), GFP_KERNEL);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002894 if (!io)
2895 return -ENOMEM;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002896 spin_lock_init(&io->lock);
Seth Forshee744742d2016-03-11 10:35:34 -06002897 kref_init(&io->refcnt);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002898 io->reqs = 1;
2899 io->bytes = -1;
2900 io->size = 0;
2901 io->offset = offset;
Omar Sandoval6f673762015-03-16 04:33:52 -07002902 io->write = (iov_iter_rw(iter) == WRITE);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002903 io->err = 0;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002904 /*
2905 * By default, we want to optimize all I/Os with async request
Miklos Szeredi60b9df72013-05-01 14:37:21 +02002906 * submission to the client filesystem if supported.
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002907 */
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002908 io->async = async_dio;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002909 io->iocb = iocb;
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302910 io->blocking = is_sync_kiocb(iocb);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002911
2912 /*
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302913 * We cannot asynchronously extend the size of a file.
2914 * In such case the aio will behave exactly like sync io.
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002915 */
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302916 if ((offset + count > i_size) && iov_iter_rw(iter) == WRITE)
2917 io->blocking = true;
Anand Avati4273b792012-02-17 12:46:25 -05002918
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302919 if (io->async && io->blocking) {
Seth Forshee744742d2016-03-11 10:35:34 -06002920 /*
2921 * Additional reference to keep io around after
2922 * calling fuse_aio_complete()
2923 */
2924 kref_get(&io->refcnt);
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002925 io->done = &wait;
Seth Forshee744742d2016-03-11 10:35:34 -06002926 }
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002927
Omar Sandoval6f673762015-03-16 04:33:52 -07002928 if (iov_iter_rw(iter) == WRITE) {
Al Viro6b775b12015-04-07 15:06:19 -04002929 ret = fuse_direct_io(io, iter, &pos, FUSE_DIO_WRITE);
Al Viro812408f2015-03-30 22:15:58 -04002930 fuse_invalidate_attr(inode);
2931 } else {
Al Virod22a9432014-03-16 15:50:47 -04002932 ret = __fuse_direct_read(io, iter, &pos);
Al Viro812408f2015-03-30 22:15:58 -04002933 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002934
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002935 if (io->async) {
Lukas Czernerebacb812018-11-09 14:51:46 +01002936 bool blocking = io->blocking;
2937
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002938 fuse_aio_complete(io, ret < 0 ? ret : 0, -1);
2939
2940 /* we have a non-extending, async request, so return */
Lukas Czernerebacb812018-11-09 14:51:46 +01002941 if (!blocking)
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002942 return -EIOCBQUEUED;
2943
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002944 wait_for_completion(&wait);
2945 ret = fuse_get_res_by_io(io);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002946 }
2947
Seth Forshee744742d2016-03-11 10:35:34 -06002948 kref_put(&io->refcnt, fuse_io_release);
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002949
Omar Sandoval6f673762015-03-16 04:33:52 -07002950 if (iov_iter_rw(iter) == WRITE) {
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002951 if (ret > 0)
2952 fuse_write_update_size(inode, pos);
2953 else if (ret < 0 && offset + count > i_size)
2954 fuse_do_truncate(file);
2955 }
Anand Avati4273b792012-02-17 12:46:25 -05002956
2957 return ret;
2958}
2959
Miklos Szeredicdadb112012-11-10 16:55:56 +01002960static long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
2961 loff_t length)
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002962{
2963 struct fuse_file *ff = file->private_data;
Miklos Szeredi1c682712014-12-12 10:04:51 +01002964 struct inode *inode = file_inode(file);
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002965 struct fuse_inode *fi = get_fuse_inode(inode);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002966 struct fuse_conn *fc = ff->fc;
Miklos Szeredi70781872014-12-12 09:49:05 +01002967 FUSE_ARGS(args);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002968 struct fuse_fallocate_in inarg = {
2969 .fh = ff->fh,
2970 .offset = offset,
2971 .length = length,
2972 .mode = mode
2973 };
2974 int err;
Maxim Patlasov14c14412013-06-13 12:16:39 +04002975 bool lock_inode = !(mode & FALLOC_FL_KEEP_SIZE) ||
2976 (mode & FALLOC_FL_PUNCH_HOLE);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002977
Miklos Szeredi4adb8302014-04-28 14:19:21 +02002978 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2979 return -EOPNOTSUPP;
2980
Miklos Szeredi519c6042012-04-26 10:56:36 +02002981 if (fc->no_fallocate)
2982 return -EOPNOTSUPP;
2983
Maxim Patlasov14c14412013-06-13 12:16:39 +04002984 if (lock_inode) {
Al Viro59551022016-01-22 15:40:57 -05002985 inode_lock(inode);
Maxim Patlasovbde52782013-09-13 19:19:54 +04002986 if (mode & FALLOC_FL_PUNCH_HOLE) {
2987 loff_t endbyte = offset + length - 1;
2988 err = filemap_write_and_wait_range(inode->i_mapping,
2989 offset, endbyte);
2990 if (err)
2991 goto out;
2992
2993 fuse_sync_writes(inode);
2994 }
Brian Foster3634a632013-05-17 09:30:32 -04002995 }
2996
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002997 if (!(mode & FALLOC_FL_KEEP_SIZE))
2998 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
2999
Miklos Szeredi70781872014-12-12 09:49:05 +01003000 args.in.h.opcode = FUSE_FALLOCATE;
3001 args.in.h.nodeid = ff->nodeid;
3002 args.in.numargs = 1;
3003 args.in.args[0].size = sizeof(inarg);
3004 args.in.args[0].value = &inarg;
3005 err = fuse_simple_request(fc, &args);
Miklos Szeredi519c6042012-04-26 10:56:36 +02003006 if (err == -ENOSYS) {
3007 fc->no_fallocate = 1;
3008 err = -EOPNOTSUPP;
3009 }
Brian Fosterbee6c302013-05-17 15:27:34 -04003010 if (err)
3011 goto out;
3012
3013 /* we could have extended the file */
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04003014 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
3015 bool changed = fuse_write_update_size(inode, offset + length);
3016
Miklos Szeredi93d22692014-04-28 14:19:22 +02003017 if (changed && fc->writeback_cache)
3018 file_update_time(file);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04003019 }
Brian Fosterbee6c302013-05-17 15:27:34 -04003020
3021 if (mode & FALLOC_FL_PUNCH_HOLE)
3022 truncate_pagecache_range(inode, offset, offset + length - 1);
3023
3024 fuse_invalidate_attr(inode);
3025
Brian Foster3634a632013-05-17 09:30:32 -04003026out:
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04003027 if (!(mode & FALLOC_FL_KEEP_SIZE))
3028 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
3029
Maxim Patlasovbde52782013-09-13 19:19:54 +04003030 if (lock_inode)
Al Viro59551022016-01-22 15:40:57 -05003031 inode_unlock(inode);
Brian Foster3634a632013-05-17 09:30:32 -04003032
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003033 return err;
3034}
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003035
Niels de Vos88bc7d52018-08-21 14:36:31 +02003036static ssize_t fuse_copy_file_range(struct file *file_in, loff_t pos_in,
3037 struct file *file_out, loff_t pos_out,
3038 size_t len, unsigned int flags)
3039{
3040 struct fuse_file *ff_in = file_in->private_data;
3041 struct fuse_file *ff_out = file_out->private_data;
3042 struct inode *inode_out = file_inode(file_out);
3043 struct fuse_inode *fi_out = get_fuse_inode(inode_out);
3044 struct fuse_conn *fc = ff_in->fc;
3045 FUSE_ARGS(args);
3046 struct fuse_copy_file_range_in inarg = {
3047 .fh_in = ff_in->fh,
3048 .off_in = pos_in,
3049 .nodeid_out = ff_out->nodeid,
3050 .fh_out = ff_out->fh,
3051 .off_out = pos_out,
3052 .len = len,
3053 .flags = flags
3054 };
3055 struct fuse_write_out outarg;
3056 ssize_t err;
3057 /* mark unstable when write-back is not used, and file_out gets
3058 * extended */
3059 bool is_unstable = (!fc->writeback_cache) &&
3060 ((pos_out + len) > inode_out->i_size);
3061
3062 if (fc->no_copy_file_range)
3063 return -EOPNOTSUPP;
3064
3065 inode_lock(inode_out);
3066
3067 if (fc->writeback_cache) {
3068 err = filemap_write_and_wait_range(inode_out->i_mapping,
3069 pos_out, pos_out + len);
3070 if (err)
3071 goto out;
3072
3073 fuse_sync_writes(inode_out);
3074 }
3075
3076 if (is_unstable)
3077 set_bit(FUSE_I_SIZE_UNSTABLE, &fi_out->state);
3078
3079 args.in.h.opcode = FUSE_COPY_FILE_RANGE;
3080 args.in.h.nodeid = ff_in->nodeid;
3081 args.in.numargs = 1;
3082 args.in.args[0].size = sizeof(inarg);
3083 args.in.args[0].value = &inarg;
3084 args.out.numargs = 1;
3085 args.out.args[0].size = sizeof(outarg);
3086 args.out.args[0].value = &outarg;
3087 err = fuse_simple_request(fc, &args);
3088 if (err == -ENOSYS) {
3089 fc->no_copy_file_range = 1;
3090 err = -EOPNOTSUPP;
3091 }
3092 if (err)
3093 goto out;
3094
3095 if (fc->writeback_cache) {
3096 fuse_write_update_size(inode_out, pos_out + outarg.size);
3097 file_update_time(file_out);
3098 }
3099
3100 fuse_invalidate_attr(inode_out);
3101
3102 err = outarg.size;
3103out:
3104 if (is_unstable)
3105 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi_out->state);
3106
3107 inode_unlock(inode_out);
3108
3109 return err;
3110}
3111
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08003112static const struct file_operations fuse_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07003113 .llseek = fuse_file_llseek,
Al Viro37c20f12014-04-02 14:47:09 -04003114 .read_iter = fuse_file_read_iter,
Al Viro84c3d552014-04-03 14:33:23 -04003115 .write_iter = fuse_file_write_iter,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003116 .mmap = fuse_file_mmap,
3117 .open = fuse_open,
3118 .flush = fuse_flush,
3119 .release = fuse_release,
3120 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07003121 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07003122 .flock = fuse_file_flock,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02003123 .splice_read = generic_file_splice_read,
Tejun Heo59efec72008-11-26 12:03:55 +01003124 .unlocked_ioctl = fuse_file_ioctl,
3125 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01003126 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003127 .fallocate = fuse_file_fallocate,
Niels de Vos88bc7d52018-08-21 14:36:31 +02003128 .copy_file_range = fuse_copy_file_range,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003129};
3130
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08003131static const struct file_operations fuse_direct_io_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07003132 .llseek = fuse_file_llseek,
Al Viro153162632015-03-30 22:08:36 -04003133 .read_iter = fuse_direct_read_iter,
Al Viro153162632015-03-30 22:08:36 -04003134 .write_iter = fuse_direct_write_iter,
Miklos Szeredifc280c92009-04-02 14:25:35 +02003135 .mmap = fuse_direct_mmap,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07003136 .open = fuse_open,
3137 .flush = fuse_flush,
3138 .release = fuse_release,
3139 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07003140 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07003141 .flock = fuse_file_flock,
Tejun Heo59efec72008-11-26 12:03:55 +01003142 .unlocked_ioctl = fuse_file_ioctl,
3143 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01003144 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003145 .fallocate = fuse_file_fallocate,
Miklos Szeredifc280c92009-04-02 14:25:35 +02003146 /* no splice_read */
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07003147};
3148
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07003149static const struct address_space_operations fuse_file_aops = {
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003150 .readpage = fuse_readpage,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003151 .writepage = fuse_writepage,
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04003152 .writepages = fuse_writepages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003153 .launder_page = fuse_launder_page,
Miklos Szeredidb50b962005-09-09 13:10:33 -07003154 .readpages = fuse_readpages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003155 .set_page_dirty = __set_page_dirty_nobuffers,
Miklos Szeredib2d22722006-12-06 20:35:51 -08003156 .bmap = fuse_bmap,
Anand Avati4273b792012-02-17 12:46:25 -05003157 .direct_IO = fuse_direct_IO,
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04003158 .write_begin = fuse_write_begin,
3159 .write_end = fuse_write_end,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003160};
3161
3162void fuse_init_file_inode(struct inode *inode)
3163{
Miklos Szerediab2257e2018-10-01 10:07:05 +02003164 struct fuse_inode *fi = get_fuse_inode(inode);
3165
Miklos Szeredi45323fb2005-09-09 13:10:37 -07003166 inode->i_fop = &fuse_file_operations;
3167 inode->i_data.a_ops = &fuse_file_aops;
Miklos Szerediab2257e2018-10-01 10:07:05 +02003168
3169 INIT_LIST_HEAD(&fi->write_files);
3170 INIT_LIST_HEAD(&fi->queued_writes);
3171 fi->writectr = 0;
3172 init_waitqueue_head(&fi->page_waitq);
3173 INIT_LIST_HEAD(&fi->writepages);
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003174}