blob: 92f905ea20b029f350bf3bd253c0300077f7d4ce [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>
Tejun Heo08cbf542009-04-14 10:54:53 +090015#include <linux/module.h>
Miklos Szeredid9d318d2010-11-30 16:39:27 +010016#include <linux/compat.h>
Johannes Weiner478e0842011-07-25 22:35:35 +020017#include <linux/swap.h>
Brian Foster3634a632013-05-17 09:30:32 -040018#include <linux/falloc.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080019#include <linux/uio.h>
Miklos Szeredib6aeade2005-09-09 13:10:30 -070020
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080021static const struct file_operations fuse_direct_io_file_operations;
Miklos Szeredi45323fb2005-09-09 13:10:37 -070022
Miklos Szeredi91fe96b2009-04-28 16:56:37 +020023static int fuse_send_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
24 int opcode, struct fuse_open_out *outargp)
Miklos Szeredib6aeade2005-09-09 13:10:30 -070025{
Miklos Szeredib6aeade2005-09-09 13:10:30 -070026 struct fuse_open_in inarg;
Miklos Szeredi70781872014-12-12 09:49:05 +010027 FUSE_ARGS(args);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080028
29 memset(&inarg, 0, sizeof(inarg));
Miklos Szeredi6ff958e2007-10-18 03:07:02 -070030 inarg.flags = file->f_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
31 if (!fc->atomic_o_trunc)
32 inarg.flags &= ~O_TRUNC;
Miklos Szeredi70781872014-12-12 09:49:05 +010033 args.in.h.opcode = opcode;
34 args.in.h.nodeid = nodeid;
35 args.in.numargs = 1;
36 args.in.args[0].size = sizeof(inarg);
37 args.in.args[0].value = &inarg;
38 args.out.numargs = 1;
39 args.out.args[0].size = sizeof(*outargp);
40 args.out.args[0].value = outargp;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080041
Miklos Szeredi70781872014-12-12 09:49:05 +010042 return fuse_simple_request(fc, &args);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080043}
44
Tejun Heoacf99432008-11-26 12:03:55 +010045struct fuse_file *fuse_file_alloc(struct fuse_conn *fc)
Miklos Szeredifd72faa2005-11-07 00:59:51 -080046{
47 struct fuse_file *ff;
Tejun Heo6b2db282009-04-14 10:54:49 +090048
Mateusz Jurczyk227559e2017-06-07 12:26:49 +020049 ff = kzalloc(sizeof(struct fuse_file), GFP_KERNEL);
Tejun Heo6b2db282009-04-14 10:54:49 +090050 if (unlikely(!ff))
51 return NULL;
52
Miklos Szeredida5e4712009-04-28 16:56:36 +020053 ff->fc = fc;
Maxim Patlasov4250c062012-10-26 19:48:07 +040054 ff->reserved_req = fuse_request_alloc(0);
Tejun Heo6b2db282009-04-14 10:54:49 +090055 if (unlikely(!ff->reserved_req)) {
56 kfree(ff);
57 return NULL;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080058 }
Tejun Heo6b2db282009-04-14 10:54:49 +090059
60 INIT_LIST_HEAD(&ff->write_entry);
61 atomic_set(&ff->count, 0);
62 RB_CLEAR_NODE(&ff->polled_node);
63 init_waitqueue_head(&ff->poll_wait);
64
65 spin_lock(&fc->lock);
66 ff->kh = ++fc->khctr;
67 spin_unlock(&fc->lock);
68
Miklos Szeredifd72faa2005-11-07 00:59:51 -080069 return ff;
70}
71
72void fuse_file_free(struct fuse_file *ff)
73{
Miklos Szeredi33649c92006-06-25 05:48:52 -070074 fuse_request_free(ff->reserved_req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080075 kfree(ff);
76}
77
Miklos Szeredic7b71432009-04-28 16:56:37 +020078struct fuse_file *fuse_file_get(struct fuse_file *ff)
Miklos Szeredic756e0a2007-10-16 23:31:00 -070079{
80 atomic_inc(&ff->count);
81 return ff;
82}
83
Miklos Szeredi5a18ec12011-02-25 14:44:58 +010084static void fuse_release_end(struct fuse_conn *fc, struct fuse_req *req)
85{
Miklos Szeredibaebccb2014-12-12 09:49:04 +010086 iput(req->misc.release.inode);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +010087}
88
89static void fuse_file_put(struct fuse_file *ff, bool sync)
Miklos Szeredic756e0a2007-10-16 23:31:00 -070090{
91 if (atomic_dec_and_test(&ff->count)) {
92 struct fuse_req *req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +020093
Andrew Gallagher7678ac52013-11-05 16:05:52 +010094 if (ff->fc->no_open) {
95 /*
96 * Drop the release request when client does not
97 * implement 'open'
98 */
Miklos Szeredi825d6d32015-07-01 16:25:58 +020099 __clear_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredibaebccb2014-12-12 09:49:04 +0100100 iput(req->misc.release.inode);
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100101 fuse_put_request(ff->fc, req);
102 } else if (sync) {
Miklos Szeredi1e6be9c2017-02-22 20:08:25 +0100103 __set_bit(FR_FORCE, &req->flags);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200104 __clear_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100105 fuse_request_send(ff->fc, req);
Miklos Szeredibaebccb2014-12-12 09:49:04 +0100106 iput(req->misc.release.inode);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100107 fuse_put_request(ff->fc, req);
108 } else {
109 req->end = fuse_release_end;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200110 __set_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100111 fuse_request_send_background(ff->fc, req);
112 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700113 kfree(ff);
114 }
115}
116
Tejun Heo08cbf542009-04-14 10:54:53 +0900117int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
118 bool isdir)
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200119{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200120 struct fuse_file *ff;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200121 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
122
123 ff = fuse_file_alloc(fc);
124 if (!ff)
125 return -ENOMEM;
126
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100127 ff->fh = 0;
128 ff->open_flags = FOPEN_KEEP_CACHE; /* Default for no-open */
129 if (!fc->no_open || isdir) {
130 struct fuse_open_out outarg;
131 int err;
132
133 err = fuse_send_open(fc, nodeid, file, opcode, &outarg);
134 if (!err) {
135 ff->fh = outarg.fh;
136 ff->open_flags = outarg.open_flags;
137
138 } else if (err != -ENOSYS || isdir) {
139 fuse_file_free(ff);
140 return err;
141 } else {
142 fc->no_open = 1;
143 }
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200144 }
145
146 if (isdir)
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100147 ff->open_flags &= ~FOPEN_DIRECT_IO;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200148
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200149 ff->nodeid = nodeid;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200150 file->private_data = fuse_file_get(ff);
151
152 return 0;
153}
Tejun Heo08cbf542009-04-14 10:54:53 +0900154EXPORT_SYMBOL_GPL(fuse_do_open);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200155
Pavel Emelyanov650b22b2013-10-10 17:10:04 +0400156static void fuse_link_write_file(struct file *file)
157{
158 struct inode *inode = file_inode(file);
159 struct fuse_conn *fc = get_fuse_conn(inode);
160 struct fuse_inode *fi = get_fuse_inode(inode);
161 struct fuse_file *ff = file->private_data;
162 /*
163 * file may be written through mmap, so chain it onto the
164 * inodes's write_file list
165 */
166 spin_lock(&fc->lock);
167 if (list_empty(&ff->write_entry))
168 list_add(&ff->write_entry, &fi->write_files);
169 spin_unlock(&fc->lock);
170}
171
Miklos Szeredic7b71432009-04-28 16:56:37 +0200172void fuse_finish_open(struct inode *inode, struct file *file)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800173{
Miklos Szeredic7b71432009-04-28 16:56:37 +0200174 struct fuse_file *ff = file->private_data;
Ken Sumralla0822c52010-11-24 12:57:00 -0800175 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200176
177 if (ff->open_flags & FOPEN_DIRECT_IO)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800178 file->f_op = &fuse_direct_io_file_operations;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200179 if (!(ff->open_flags & FOPEN_KEEP_CACHE))
Miklos Szeredib1009972007-10-16 23:31:01 -0700180 invalidate_inode_pages2(inode->i_mapping);
Kirill Smelkovcfd8d2e2019-04-24 07:13:57 +0000181 if (ff->open_flags & FOPEN_STREAM)
182 stream_open(inode, file);
183 else if (ff->open_flags & FOPEN_NONSEEKABLE)
Tejun Heoa7c1b992008-10-16 16:08:57 +0200184 nonseekable_open(inode, file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800185 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
186 struct fuse_inode *fi = get_fuse_inode(inode);
187
188 spin_lock(&fc->lock);
189 fi->attr_version = ++fc->attr_version;
190 i_size_write(inode, 0);
191 spin_unlock(&fc->lock);
192 fuse_invalidate_attr(inode);
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200193 if (fc->writeback_cache)
194 file_update_time(file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800195 }
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +0400196 if ((file->f_mode & FMODE_WRITE) && fc->writeback_cache)
197 fuse_link_write_file(file);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800198}
199
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200200int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800201{
Tejun Heoacf99432008-11-26 12:03:55 +0100202 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700203 int err;
Miklos Szeredi709c37e2019-10-23 14:26:37 +0200204 bool is_wb_truncate = (file->f_flags & O_TRUNC) &&
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200205 fc->atomic_o_trunc &&
206 fc->writeback_cache;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700207
208 err = generic_file_open(inode, file);
209 if (err)
210 return err;
211
Miklos Szeredi709c37e2019-10-23 14:26:37 +0200212 if (is_wb_truncate) {
Al Viro59551022016-01-22 15:40:57 -0500213 inode_lock(inode);
Miklos Szeredi709c37e2019-10-23 14:26:37 +0200214 fuse_set_nowrite(inode);
215 }
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200216
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200217 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700218
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200219 if (!err)
220 fuse_finish_open(inode, file);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200221
Miklos Szeredi709c37e2019-10-23 14:26:37 +0200222 if (is_wb_truncate) {
223 fuse_release_nowrite(inode);
Al Viro59551022016-01-22 15:40:57 -0500224 inode_unlock(inode);
Miklos Szeredi709c37e2019-10-23 14:26:37 +0200225 }
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200226
227 return err;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700228}
229
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200230static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800231{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200232 struct fuse_conn *fc = ff->fc;
Miklos Szeredi33649c92006-06-25 05:48:52 -0700233 struct fuse_req *req = ff->reserved_req;
Miklos Szeredib57d4262008-02-06 01:38:39 -0800234 struct fuse_release_in *inarg = &req->misc.release.in;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700235
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200236 spin_lock(&fc->lock);
237 list_del(&ff->write_entry);
238 if (!RB_EMPTY_NODE(&ff->polled_node))
239 rb_erase(&ff->polled_node, &fc->polled_files);
240 spin_unlock(&fc->lock);
241
Bryan Green357ccf22011-03-01 16:43:52 -0800242 wake_up_interruptible_all(&ff->poll_wait);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200243
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700244 inarg->fh = ff->fh;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800245 inarg->flags = flags;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700246 req->in.h.opcode = opcode;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200247 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700248 req->in.numargs = 1;
249 req->in.args[0].size = sizeof(struct fuse_release_in);
250 req->in.args[0].value = inarg;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800251}
252
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200253void fuse_release_common(struct file *file, int opcode)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800254{
Tejun Heo6b2db282009-04-14 10:54:49 +0900255 struct fuse_file *ff;
256 struct fuse_req *req;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -0700257
Tejun Heo6b2db282009-04-14 10:54:49 +0900258 ff = file->private_data;
259 if (unlikely(!ff))
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200260 return;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700261
Tejun Heo6b2db282009-04-14 10:54:49 +0900262 req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200263 fuse_prepare_release(ff, file->f_flags, opcode);
Tejun Heo95668a62008-11-26 12:03:55 +0100264
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200265 if (ff->flock) {
266 struct fuse_release_in *inarg = &req->misc.release.in;
267 inarg->release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
268 inarg->lock_owner = fuse_lock_owner_id(ff->fc,
269 (fl_owner_t) file);
270 }
Miklos Szeredibaebccb2014-12-12 09:49:04 +0100271 /* Hold inode until release is finished */
272 req->misc.release.inode = igrab(file_inode(file));
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700273
Tejun Heo6b2db282009-04-14 10:54:49 +0900274 /*
275 * Normally this will send the RELEASE request, however if
276 * some asynchronous READ or WRITE requests are outstanding,
277 * the sending will be delayed.
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100278 *
279 * Make the release synchronous if this is a fuseblk mount,
280 * synchronous RELEASE is allowed (and desirable) in this case
281 * because the server can be trusted not to screw up.
Tejun Heo6b2db282009-04-14 10:54:49 +0900282 */
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100283 fuse_file_put(ff, ff->fc->destroy_req != NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700284}
285
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700286static int fuse_open(struct inode *inode, struct file *file)
287{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200288 return fuse_open_common(inode, file, false);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700289}
290
291static int fuse_release(struct inode *inode, struct file *file)
292{
Pavel Emelyanove7cc133c2013-10-10 17:19:06 +0400293 struct fuse_conn *fc = get_fuse_conn(inode);
294
295 /* see fuse_vma_close() for !writeback_cache case */
296 if (fc->writeback_cache)
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200297 write_inode_now(inode, 1);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400298
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200299 fuse_release_common(file, FUSE_RELEASE);
300
301 /* return value is ignored by VFS */
302 return 0;
303}
304
305void fuse_sync_release(struct fuse_file *ff, int flags)
306{
307 WARN_ON(atomic_read(&ff->count) > 1);
308 fuse_prepare_release(ff, flags, FUSE_RELEASE);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200309 __set_bit(FR_FORCE, &ff->reserved_req->flags);
310 __clear_bit(FR_BACKGROUND, &ff->reserved_req->flags);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200311 fuse_request_send(ff->fc, ff->reserved_req);
312 fuse_put_request(ff->fc, ff->reserved_req);
313 kfree(ff);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700314}
Tejun Heo08cbf542009-04-14 10:54:53 +0900315EXPORT_SYMBOL_GPL(fuse_sync_release);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700316
Miklos Szeredi71421252006-06-25 05:48:52 -0700317/*
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700318 * Scramble the ID space with XTEA, so that the value of the files_struct
319 * pointer is not exposed to userspace.
Miklos Szeredi71421252006-06-25 05:48:52 -0700320 */
Miklos Szeredif3332112007-10-18 03:07:04 -0700321u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
Miklos Szeredi71421252006-06-25 05:48:52 -0700322{
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700323 u32 *k = fc->scramble_key;
324 u64 v = (unsigned long) id;
325 u32 v0 = v;
326 u32 v1 = v >> 32;
327 u32 sum = 0;
328 int i;
329
330 for (i = 0; i < 32; i++) {
331 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
332 sum += 0x9E3779B9;
333 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
334 }
335
336 return (u64) v0 + ((u64) v1 << 32);
Miklos Szeredi71421252006-06-25 05:48:52 -0700337}
338
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700339/*
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400340 * Check if any page in a range is under writeback
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700341 *
342 * This is currently done by walking the list of writepage requests
343 * for the inode, which can be pretty inefficient.
344 */
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400345static bool fuse_range_is_writeback(struct inode *inode, pgoff_t idx_from,
346 pgoff_t idx_to)
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700347{
348 struct fuse_conn *fc = get_fuse_conn(inode);
349 struct fuse_inode *fi = get_fuse_inode(inode);
350 struct fuse_req *req;
351 bool found = false;
352
353 spin_lock(&fc->lock);
354 list_for_each_entry(req, &fi->writepages, writepages_entry) {
355 pgoff_t curr_index;
356
357 BUG_ON(req->inode != inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300358 curr_index = req->misc.write.in.offset >> PAGE_SHIFT;
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400359 if (idx_from < curr_index + req->num_pages &&
360 curr_index <= idx_to) {
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700361 found = true;
362 break;
363 }
364 }
365 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,
452 int datasync, int isdir)
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;
459 int err;
460
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800461 if (is_bad_inode(inode))
462 return -EIO;
463
Al Viro59551022016-01-22 15:40:57 -0500464 inode_lock(inode);
Josef Bacik02c24a82011-07-16 20:44:56 -0400465
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700466 /*
467 * Start writeback against all dirty pages of the inode, then
468 * wait for all outstanding writes, before sending the FSYNC
469 * request.
470 */
Miklos Szeredi22401e72014-04-28 14:19:23 +0200471 err = filemap_write_and_wait_range(inode->i_mapping, start, end);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700472 if (err)
Josef Bacik02c24a82011-07-16 20:44:56 -0400473 goto out;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700474
475 fuse_sync_writes(inode);
Alexey Kuznetsovac7f0522016-07-19 12:48:01 -0700476
477 /*
478 * Due to implementation of fuse writeback
479 * filemap_write_and_wait_range() does not catch errors.
480 * We have to do this directly after fuse_sync_writes()
481 */
Miklos Szeredi4a7f4e82016-07-29 14:10:57 +0200482 err = filemap_check_errors(file->f_mapping);
Alexey Kuznetsovac7f0522016-07-19 12:48:01 -0700483 if (err)
484 goto out;
485
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200486 err = sync_inode_metadata(inode, 1);
487 if (err)
488 goto out;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700489
Miklos Szeredi22401e72014-04-28 14:19:23 +0200490 if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
491 goto out;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400492
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700493 memset(&inarg, 0, sizeof(inarg));
494 inarg.fh = ff->fh;
495 inarg.fsync_flags = datasync ? 1 : 0;
Miklos Szeredi70781872014-12-12 09:49:05 +0100496 args.in.h.opcode = isdir ? FUSE_FSYNCDIR : FUSE_FSYNC;
497 args.in.h.nodeid = get_node_id(inode);
498 args.in.numargs = 1;
499 args.in.args[0].size = sizeof(inarg);
500 args.in.args[0].value = &inarg;
501 err = fuse_simple_request(fc, &args);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700502 if (err == -ENOSYS) {
Miklos Szeredi82547982005-09-09 13:10:38 -0700503 if (isdir)
504 fc->no_fsyncdir = 1;
505 else
506 fc->no_fsync = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700507 err = 0;
508 }
Josef Bacik02c24a82011-07-16 20:44:56 -0400509out:
Al Viro59551022016-01-22 15:40:57 -0500510 inode_unlock(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700511 return err;
512}
513
Josef Bacik02c24a82011-07-16 20:44:56 -0400514static int fuse_fsync(struct file *file, loff_t start, loff_t end,
515 int datasync)
Miklos Szeredi82547982005-09-09 13:10:38 -0700516{
Josef Bacik02c24a82011-07-16 20:44:56 -0400517 return fuse_fsync_common(file, start, end, datasync, 0);
Miklos Szeredi82547982005-09-09 13:10:38 -0700518}
519
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200520void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
521 size_t count, int opcode)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700522{
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700523 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredia6643092007-11-28 16:22:00 -0800524 struct fuse_file *ff = file->private_data;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700525
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800526 inarg->fh = ff->fh;
527 inarg->offset = pos;
528 inarg->size = count;
Miklos Szeredia6643092007-11-28 16:22:00 -0800529 inarg->flags = file->f_flags;
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800530 req->in.h.opcode = opcode;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200531 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700532 req->in.numargs = 1;
533 req->in.args[0].size = sizeof(struct fuse_read_in);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800534 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700535 req->out.argvar = 1;
536 req->out.numargs = 1;
537 req->out.args[0].size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700538}
539
Miklos Szeredi8fba54a2016-08-24 18:17:04 +0200540static void fuse_release_user_pages(struct fuse_req *req, bool should_dirty)
Maxim Patlasov187c5c32012-12-14 19:20:25 +0400541{
542 unsigned i;
543
544 for (i = 0; i < req->num_pages; i++) {
545 struct page *page = req->pages[i];
Miklos Szeredi8fba54a2016-08-24 18:17:04 +0200546 if (should_dirty)
Maxim Patlasov187c5c32012-12-14 19:20:25 +0400547 set_page_dirty_lock(page);
548 put_page(page);
549 }
550}
551
Seth Forshee744742d2016-03-11 10:35:34 -0600552static void fuse_io_release(struct kref *kref)
553{
554 kfree(container_of(kref, struct fuse_io_priv, refcnt));
555}
556
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100557static ssize_t fuse_get_res_by_io(struct fuse_io_priv *io)
558{
559 if (io->err)
560 return io->err;
561
562 if (io->bytes >= 0 && io->write)
563 return -EIO;
564
565 return io->bytes < 0 ? io->size : io->bytes;
566}
567
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400568/**
569 * In case of short read, the caller sets 'pos' to the position of
570 * actual end of fuse request in IO request. Otherwise, if bytes_requested
571 * == bytes_transferred or rw == WRITE, the caller sets 'pos' to -1.
572 *
573 * An example:
574 * User requested DIO read of 64K. It was splitted into two 32K fuse requests,
575 * both submitted asynchronously. The first of them was ACKed by userspace as
576 * fully completed (req->out.args[0].size == 32K) resulting in pos == -1. The
577 * second request was ACKed as short, e.g. only 1K was read, resulting in
578 * pos == 33K.
579 *
580 * Thus, when all fuse requests are completed, the minimal non-negative 'pos'
581 * will be equal to the length of the longest contiguous fragment of
582 * transferred data starting from the beginning of IO request.
583 */
584static void fuse_aio_complete(struct fuse_io_priv *io, int err, ssize_t pos)
585{
586 int left;
587
588 spin_lock(&io->lock);
589 if (err)
590 io->err = io->err ? : err;
591 else if (pos >= 0 && (io->bytes < 0 || pos < io->bytes))
592 io->bytes = pos;
593
594 left = --io->reqs;
Ashish Sangwan7879c4e2016-04-07 17:18:11 +0530595 if (!left && io->blocking)
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100596 complete(io->done);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400597 spin_unlock(&io->lock);
598
Ashish Sangwan7879c4e2016-04-07 17:18:11 +0530599 if (!left && !io->blocking) {
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100600 ssize_t res = fuse_get_res_by_io(io);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400601
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100602 if (res >= 0) {
603 struct inode *inode = file_inode(io->iocb->ki_filp);
604 struct fuse_conn *fc = get_fuse_conn(inode);
605 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400606
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100607 spin_lock(&fc->lock);
608 fi->attr_version = ++fc->attr_version;
609 spin_unlock(&fc->lock);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400610 }
611
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100612 io->iocb->ki_complete(io->iocb, res, 0);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400613 }
Seth Forshee744742d2016-03-11 10:35:34 -0600614
615 kref_put(&io->refcnt, fuse_io_release);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400616}
617
618static void fuse_aio_complete_req(struct fuse_conn *fc, struct fuse_req *req)
619{
620 struct fuse_io_priv *io = req->io;
621 ssize_t pos = -1;
622
623 fuse_release_user_pages(req, !io->write);
624
625 if (io->write) {
626 if (req->misc.write.in.size != req->misc.write.out.size)
627 pos = req->misc.write.in.offset - io->offset +
628 req->misc.write.out.size;
629 } else {
630 if (req->misc.read.in.size != req->out.args[0].size)
631 pos = req->misc.read.in.offset - io->offset +
632 req->out.args[0].size;
633 }
634
635 fuse_aio_complete(io, req->out.h.error, pos);
636}
637
638static size_t fuse_async_req_send(struct fuse_conn *fc, struct fuse_req *req,
639 size_t num_bytes, struct fuse_io_priv *io)
640{
641 spin_lock(&io->lock);
Seth Forshee744742d2016-03-11 10:35:34 -0600642 kref_get(&io->refcnt);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400643 io->size += num_bytes;
644 io->reqs++;
645 spin_unlock(&io->lock);
646
647 req->io = io;
648 req->end = fuse_aio_complete_req;
649
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400650 __fuse_get_request(req);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400651 fuse_request_send_background(fc, req);
652
653 return num_bytes;
654}
655
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400656static size_t fuse_send_read(struct fuse_req *req, struct fuse_io_priv *io,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200657 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700658{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400659 struct file *file = io->file;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200660 struct fuse_file *ff = file->private_data;
661 struct fuse_conn *fc = ff->fc;
Miklos Szeredif3332112007-10-18 03:07:04 -0700662
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200663 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredif3332112007-10-18 03:07:04 -0700664 if (owner != NULL) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700665 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredif3332112007-10-18 03:07:04 -0700666
667 inarg->read_flags |= FUSE_READ_LOCKOWNER;
668 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
669 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400670
671 if (io->async)
672 return fuse_async_req_send(fc, req, count, io);
673
Tejun Heob93f8582008-11-26 12:03:55 +0100674 fuse_request_send(fc, req);
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800675 return req->out.args[0].size;
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700676}
677
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700678static void fuse_read_update_size(struct inode *inode, loff_t size,
679 u64 attr_ver)
680{
681 struct fuse_conn *fc = get_fuse_conn(inode);
682 struct fuse_inode *fi = get_fuse_inode(inode);
683
684 spin_lock(&fc->lock);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +0400685 if (attr_ver == fi->attr_version && size < inode->i_size &&
686 !test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700687 fi->attr_version = ++fc->attr_version;
688 i_size_write(inode, size);
689 }
690 spin_unlock(&fc->lock);
691}
692
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400693static void fuse_short_read(struct fuse_req *req, struct inode *inode,
694 u64 attr_ver)
695{
696 size_t num_read = req->out.args[0].size;
Pavel Emelyanov83732002013-10-10 17:10:46 +0400697 struct fuse_conn *fc = get_fuse_conn(inode);
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400698
Pavel Emelyanov83732002013-10-10 17:10:46 +0400699 if (fc->writeback_cache) {
700 /*
701 * A hole in a file. Some data after the hole are in page cache,
702 * but have not reached the client fs yet. So, the hole is not
703 * present there.
704 */
705 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300706 int start_idx = num_read >> PAGE_SHIFT;
707 size_t off = num_read & (PAGE_SIZE - 1);
Pavel Emelyanov83732002013-10-10 17:10:46 +0400708
709 for (i = start_idx; i < req->num_pages; i++) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300710 zero_user_segment(req->pages[i], off, PAGE_SIZE);
Pavel Emelyanov83732002013-10-10 17:10:46 +0400711 off = 0;
712 }
713 } else {
714 loff_t pos = page_offset(req->pages[0]) + num_read;
715 fuse_read_update_size(inode, pos, attr_ver);
716 }
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400717}
718
Maxim Patlasov482fce52013-10-10 17:11:25 +0400719static int fuse_do_readpage(struct file *file, struct page *page)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700720{
Seth Forshee744742d2016-03-11 10:35:34 -0600721 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700722 struct inode *inode = page->mapping->host;
723 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800724 struct fuse_req *req;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700725 size_t num_read;
726 loff_t pos = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300727 size_t count = PAGE_SIZE;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700728 u64 attr_ver;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800729 int err;
730
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700731 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300732 * Page writeback can extend beyond the lifetime of the
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700733 * page-cache page, so make sure we read a properly synced
734 * page.
735 */
736 fuse_wait_on_page_writeback(inode, page->index);
737
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400738 req = fuse_get_req(fc, 1);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700739 if (IS_ERR(req))
Maxim Patlasov482fce52013-10-10 17:11:25 +0400740 return PTR_ERR(req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700741
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700742 attr_ver = fuse_get_attr_version(fc);
743
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700744 req->out.page_zeroing = 1;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200745 req->out.argpages = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700746 req->num_pages = 1;
747 req->pages[0] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400748 req->page_descs[0].length = count;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400749 num_read = fuse_send_read(req, &io, pos, count, NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700750 err = req->out.h.error;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700751
752 if (!err) {
753 /*
754 * Short read means EOF. If file size is larger, truncate it
755 */
756 if (num_read < count)
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400757 fuse_short_read(req, inode, attr_ver);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700758
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700759 SetPageUptodate(page);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700760 }
761
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400762 fuse_put_request(fc, req);
Maxim Patlasov482fce52013-10-10 17:11:25 +0400763
764 return err;
765}
766
767static int fuse_readpage(struct file *file, struct page *page)
768{
769 struct inode *inode = page->mapping->host;
770 int err;
771
772 err = -EIO;
773 if (is_bad_inode(inode))
774 goto out;
775
776 err = fuse_do_readpage(file, page);
Andrew Gallagher451418f2013-11-05 03:55:43 -0800777 fuse_invalidate_atime(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700778 out:
779 unlock_page(page);
780 return err;
781}
782
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800783static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredidb50b962005-09-09 13:10:33 -0700784{
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800785 int i;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700786 size_t count = req->misc.read.in.size;
787 size_t num_read = req->out.args[0].size;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200788 struct address_space *mapping = NULL;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800789
Miklos Szeredice534fb2010-05-25 15:06:07 +0200790 for (i = 0; mapping == NULL && i < req->num_pages; i++)
791 mapping = req->pages[i]->mapping;
792
793 if (mapping) {
794 struct inode *inode = mapping->host;
795
796 /*
797 * Short read means EOF. If file size is larger, truncate it
798 */
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400799 if (!req->out.h.error && num_read < count)
800 fuse_short_read(req, inode, req->misc.read.attr_ver);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200801
Andrew Gallagher451418f2013-11-05 03:55:43 -0800802 fuse_invalidate_atime(inode);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700803 }
804
Miklos Szeredidb50b962005-09-09 13:10:33 -0700805 for (i = 0; i < req->num_pages; i++) {
806 struct page *page = req->pages[i];
807 if (!req->out.h.error)
808 SetPageUptodate(page);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800809 else
810 SetPageError(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700811 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300812 put_page(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700813 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700814 if (req->ff)
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100815 fuse_file_put(req->ff, false);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800816}
817
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200818static void fuse_send_readpages(struct fuse_req *req, struct file *file)
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800819{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200820 struct fuse_file *ff = file->private_data;
821 struct fuse_conn *fc = ff->fc;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800822 loff_t pos = page_offset(req->pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300823 size_t count = req->num_pages << PAGE_SHIFT;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200824
825 req->out.argpages = 1;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800826 req->out.page_zeroing = 1;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200827 req->out.page_replace = 1;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200828 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700829 req->misc.read.attr_ver = fuse_get_attr_version(fc);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800830 if (fc->async_read) {
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700831 req->ff = fuse_file_get(ff);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800832 req->end = fuse_readpages_end;
Tejun Heob93f8582008-11-26 12:03:55 +0100833 fuse_request_send_background(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800834 } else {
Tejun Heob93f8582008-11-26 12:03:55 +0100835 fuse_request_send(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800836 fuse_readpages_end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100837 fuse_put_request(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800838 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700839}
840
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700841struct fuse_fill_data {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700842 struct fuse_req *req;
Miklos Szeredia6643092007-11-28 16:22:00 -0800843 struct file *file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700844 struct inode *inode;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400845 unsigned nr_pages;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700846};
847
848static int fuse_readpages_fill(void *_data, struct page *page)
849{
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700850 struct fuse_fill_data *data = _data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700851 struct fuse_req *req = data->req;
852 struct inode *inode = data->inode;
853 struct fuse_conn *fc = get_fuse_conn(inode);
854
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700855 fuse_wait_on_page_writeback(inode, page->index);
856
Miklos Szeredidb50b962005-09-09 13:10:33 -0700857 if (req->num_pages &&
858 (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300859 (req->num_pages + 1) * PAGE_SIZE > fc->max_read ||
Miklos Szeredidb50b962005-09-09 13:10:33 -0700860 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400861 int nr_alloc = min_t(unsigned, data->nr_pages,
862 FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200863 fuse_send_readpages(req, data->file);
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400864 if (fc->async_read)
865 req = fuse_get_req_for_background(fc, nr_alloc);
866 else
867 req = fuse_get_req(fc, nr_alloc);
868
869 data->req = req;
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700870 if (IS_ERR(req)) {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700871 unlock_page(page);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700872 return PTR_ERR(req);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700873 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700874 }
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400875
876 if (WARN_ON(req->num_pages >= req->max_pages)) {
Kirill Tkhai01f07722018-07-19 15:49:39 +0300877 unlock_page(page);
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400878 fuse_put_request(fc, req);
879 return -EIO;
880 }
881
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300882 get_page(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700883 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400884 req->page_descs[req->num_pages].length = PAGE_SIZE;
Miklos Szeredi1729a162008-11-26 12:03:54 +0100885 req->num_pages++;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400886 data->nr_pages--;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700887 return 0;
888}
889
890static int fuse_readpages(struct file *file, struct address_space *mapping,
891 struct list_head *pages, unsigned nr_pages)
892{
893 struct inode *inode = mapping->host;
894 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700895 struct fuse_fill_data data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700896 int err;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400897 int nr_alloc = min_t(unsigned, nr_pages, FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800898
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700899 err = -EIO;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800900 if (is_bad_inode(inode))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800901 goto out;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800902
Miklos Szeredia6643092007-11-28 16:22:00 -0800903 data.file = file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700904 data.inode = inode;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400905 if (fc->async_read)
906 data.req = fuse_get_req_for_background(fc, nr_alloc);
907 else
908 data.req = fuse_get_req(fc, nr_alloc);
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400909 data.nr_pages = nr_pages;
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700910 err = PTR_ERR(data.req);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700911 if (IS_ERR(data.req))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800912 goto out;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700913
914 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700915 if (!err) {
916 if (data.req->num_pages)
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200917 fuse_send_readpages(data.req, file);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700918 else
919 fuse_put_request(fc, data.req);
920 }
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800921out:
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700922 return err;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700923}
924
Al Viro37c20f12014-04-02 14:47:09 -0400925static ssize_t fuse_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800926{
927 struct inode *inode = iocb->ki_filp->f_mapping->host;
Brian Fostera8894272012-07-16 15:23:50 -0400928 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800929
Brian Fostera8894272012-07-16 15:23:50 -0400930 /*
931 * In auto invalidate mode, always update attributes on read.
932 * Otherwise, only update if we attempt to read past EOF (to ensure
933 * i_size is up to date).
934 */
935 if (fc->auto_inval_data ||
Al Viro37c20f12014-04-02 14:47:09 -0400936 (iocb->ki_pos + iov_iter_count(to) > i_size_read(inode))) {
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800937 int err;
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800938 err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
939 if (err)
940 return err;
941 }
942
Al Viro37c20f12014-04-02 14:47:09 -0400943 return generic_file_read_iter(iocb, to);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800944}
945
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200946static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200947 loff_t pos, size_t count)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700948{
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700949 struct fuse_write_in *inarg = &req->misc.write.in;
950 struct fuse_write_out *outarg = &req->misc.write.out;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700951
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700952 inarg->fh = ff->fh;
953 inarg->offset = pos;
954 inarg->size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700955 req->in.h.opcode = FUSE_WRITE;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200956 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700957 req->in.numargs = 2;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200958 if (ff->fc->minor < 9)
Miklos Szeredif3332112007-10-18 03:07:04 -0700959 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
960 else
961 req->in.args[0].size = sizeof(struct fuse_write_in);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700962 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700963 req->in.args[1].size = count;
964 req->out.numargs = 1;
965 req->out.args[0].size = sizeof(struct fuse_write_out);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700966 req->out.args[0].value = outarg;
967}
968
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400969static size_t fuse_send_write(struct fuse_req *req, struct fuse_io_priv *io,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200970 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700971{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400972 struct file *file = io->file;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200973 struct fuse_file *ff = file->private_data;
974 struct fuse_conn *fc = ff->fc;
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200975 struct fuse_write_in *inarg = &req->misc.write.in;
976
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200977 fuse_write_fill(req, ff, pos, count);
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200978 inarg->flags = file->f_flags;
Miklos Szeredif3332112007-10-18 03:07:04 -0700979 if (owner != NULL) {
Miklos Szeredif3332112007-10-18 03:07:04 -0700980 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
981 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
982 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400983
984 if (io->async)
985 return fuse_async_req_send(fc, req, count, io);
986
Tejun Heob93f8582008-11-26 12:03:55 +0100987 fuse_request_send(fc, req);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700988 return req->misc.write.out.size;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700989}
990
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400991bool fuse_write_update_size(struct inode *inode, loff_t pos)
Miklos Szeredi854512e2008-04-30 00:54:41 -0700992{
993 struct fuse_conn *fc = get_fuse_conn(inode);
994 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400995 bool ret = false;
Miklos Szeredi854512e2008-04-30 00:54:41 -0700996
997 spin_lock(&fc->lock);
998 fi->attr_version = ++fc->attr_version;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400999 if (pos > inode->i_size) {
Miklos Szeredi854512e2008-04-30 00:54:41 -07001000 i_size_write(inode, pos);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001001 ret = true;
1002 }
Miklos Szeredi854512e2008-04-30 00:54:41 -07001003 spin_unlock(&fc->lock);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001004
1005 return ret;
Miklos Szeredi854512e2008-04-30 00:54:41 -07001006}
1007
Nick Pigginea9b9902008-04-30 00:54:42 -07001008static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
1009 struct inode *inode, loff_t pos,
1010 size_t count)
1011{
1012 size_t res;
1013 unsigned offset;
1014 unsigned i;
Seth Forshee744742d2016-03-11 10:35:34 -06001015 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(file);
Nick Pigginea9b9902008-04-30 00:54:42 -07001016
1017 for (i = 0; i < req->num_pages; i++)
1018 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
1019
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001020 res = fuse_send_write(req, &io, pos, count, NULL);
Nick Pigginea9b9902008-04-30 00:54:42 -07001021
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001022 offset = req->page_descs[0].offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001023 count = res;
1024 for (i = 0; i < req->num_pages; i++) {
1025 struct page *page = req->pages[i];
1026
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001027 if (!req->out.h.error && !offset && count >= PAGE_SIZE)
Nick Pigginea9b9902008-04-30 00:54:42 -07001028 SetPageUptodate(page);
1029
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001030 if (count > PAGE_SIZE - offset)
1031 count -= PAGE_SIZE - offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001032 else
1033 count = 0;
1034 offset = 0;
1035
1036 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001037 put_page(page);
Nick Pigginea9b9902008-04-30 00:54:42 -07001038 }
1039
1040 return res;
1041}
1042
1043static ssize_t fuse_fill_write_pages(struct fuse_req *req,
1044 struct address_space *mapping,
1045 struct iov_iter *ii, loff_t pos)
1046{
1047 struct fuse_conn *fc = get_fuse_conn(mapping->host);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001048 unsigned offset = pos & (PAGE_SIZE - 1);
Nick Pigginea9b9902008-04-30 00:54:42 -07001049 size_t count = 0;
1050 int err;
1051
Miklos Szeredif4975c62009-04-02 14:25:34 +02001052 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001053 req->page_descs[0].offset = offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001054
1055 do {
1056 size_t tmp;
1057 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001058 pgoff_t index = pos >> PAGE_SHIFT;
1059 size_t bytes = min_t(size_t, PAGE_SIZE - offset,
Nick Pigginea9b9902008-04-30 00:54:42 -07001060 iov_iter_count(ii));
1061
1062 bytes = min_t(size_t, bytes, fc->max_write - count);
1063
1064 again:
1065 err = -EFAULT;
1066 if (iov_iter_fault_in_readable(ii, bytes))
1067 break;
1068
1069 err = -ENOMEM;
Nick Piggin54566b22009-01-04 12:00:53 -08001070 page = grab_cache_page_write_begin(mapping, index, 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001071 if (!page)
1072 break;
1073
anfei zhou931e80e2010-02-02 13:44:02 -08001074 if (mapping_writably_mapped(mapping))
1075 flush_dcache_page(page);
1076
Nick Pigginea9b9902008-04-30 00:54:42 -07001077 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
Nick Pigginea9b9902008-04-30 00:54:42 -07001078 flush_dcache_page(page);
1079
Roman Gushchin3ca81382015-10-12 16:33:44 +03001080 iov_iter_advance(ii, tmp);
Nick Pigginea9b9902008-04-30 00:54:42 -07001081 if (!tmp) {
1082 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001083 put_page(page);
Nick Pigginea9b9902008-04-30 00:54:42 -07001084 bytes = min(bytes, iov_iter_single_seg_count(ii));
1085 goto again;
1086 }
1087
1088 err = 0;
1089 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001090 req->page_descs[req->num_pages].length = tmp;
Nick Pigginea9b9902008-04-30 00:54:42 -07001091 req->num_pages++;
1092
Nick Pigginea9b9902008-04-30 00:54:42 -07001093 count += tmp;
1094 pos += tmp;
1095 offset += tmp;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001096 if (offset == PAGE_SIZE)
Nick Pigginea9b9902008-04-30 00:54:42 -07001097 offset = 0;
1098
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -07001099 if (!fc->big_writes)
1100 break;
Nick Pigginea9b9902008-04-30 00:54:42 -07001101 } while (iov_iter_count(ii) && count < fc->max_write &&
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001102 req->num_pages < req->max_pages && offset == 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001103
1104 return count > 0 ? count : err;
1105}
1106
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001107static inline unsigned fuse_wr_pages(loff_t pos, size_t len)
1108{
1109 return min_t(unsigned,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001110 ((pos + len - 1) >> PAGE_SHIFT) -
1111 (pos >> PAGE_SHIFT) + 1,
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001112 FUSE_MAX_PAGES_PER_REQ);
1113}
1114
Nick Pigginea9b9902008-04-30 00:54:42 -07001115static ssize_t fuse_perform_write(struct file *file,
1116 struct address_space *mapping,
1117 struct iov_iter *ii, loff_t pos)
1118{
1119 struct inode *inode = mapping->host;
1120 struct fuse_conn *fc = get_fuse_conn(inode);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001121 struct fuse_inode *fi = get_fuse_inode(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001122 int err = 0;
1123 ssize_t res = 0;
1124
1125 if (is_bad_inode(inode))
1126 return -EIO;
1127
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001128 if (inode->i_size < pos + iov_iter_count(ii))
1129 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1130
Nick Pigginea9b9902008-04-30 00:54:42 -07001131 do {
1132 struct fuse_req *req;
1133 ssize_t count;
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001134 unsigned nr_pages = fuse_wr_pages(pos, iov_iter_count(ii));
Nick Pigginea9b9902008-04-30 00:54:42 -07001135
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001136 req = fuse_get_req(fc, nr_pages);
Nick Pigginea9b9902008-04-30 00:54:42 -07001137 if (IS_ERR(req)) {
1138 err = PTR_ERR(req);
1139 break;
1140 }
1141
1142 count = fuse_fill_write_pages(req, mapping, ii, pos);
1143 if (count <= 0) {
1144 err = count;
1145 } else {
1146 size_t num_written;
1147
1148 num_written = fuse_send_write_pages(req, file, inode,
1149 pos, count);
1150 err = req->out.h.error;
1151 if (!err) {
1152 res += num_written;
1153 pos += num_written;
1154
1155 /* break out of the loop on short write */
1156 if (num_written != count)
1157 err = -EIO;
1158 }
1159 }
1160 fuse_put_request(fc, req);
1161 } while (!err && iov_iter_count(ii));
1162
1163 if (res > 0)
1164 fuse_write_update_size(inode, pos);
1165
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001166 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
Nick Pigginea9b9902008-04-30 00:54:42 -07001167 fuse_invalidate_attr(inode);
1168
1169 return res > 0 ? res : err;
1170}
1171
Al Viro84c3d552014-04-03 14:33:23 -04001172static ssize_t fuse_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Nick Pigginea9b9902008-04-30 00:54:42 -07001173{
1174 struct file *file = iocb->ki_filp;
1175 struct address_space *mapping = file->f_mapping;
Nick Pigginea9b9902008-04-30 00:54:42 -07001176 ssize_t written = 0;
Anand Avati4273b792012-02-17 12:46:25 -05001177 ssize_t written_buffered = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001178 struct inode *inode = mapping->host;
1179 ssize_t err;
Anand Avati4273b792012-02-17 12:46:25 -05001180 loff_t endbyte = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001181
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001182 if (get_fuse_conn(inode)->writeback_cache) {
1183 /* Update size (EOF optimization) and mode (SUID clearing) */
1184 err = fuse_update_attributes(mapping->host, NULL, file, NULL);
1185 if (err)
1186 return err;
1187
Al Viro84c3d552014-04-03 14:33:23 -04001188 return generic_file_write_iter(iocb, from);
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001189 }
1190
Al Viro59551022016-01-22 15:40:57 -05001191 inode_lock(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001192
1193 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001194 current->backing_dev_info = inode_to_bdi(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001195
Al Viro3309dd02015-04-09 12:55:47 -04001196 err = generic_write_checks(iocb, from);
1197 if (err <= 0)
Nick Pigginea9b9902008-04-30 00:54:42 -07001198 goto out;
1199
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001200 err = file_remove_privs(file);
Nick Pigginea9b9902008-04-30 00:54:42 -07001201 if (err)
1202 goto out;
1203
Josef Bacikc3b2da32012-03-26 09:59:21 -04001204 err = file_update_time(file);
1205 if (err)
1206 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001207
Al Viro2ba48ce2015-04-09 13:52:01 -04001208 if (iocb->ki_flags & IOCB_DIRECT) {
Al Viro3309dd02015-04-09 12:55:47 -04001209 loff_t pos = iocb->ki_pos;
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001210 written = generic_file_direct_write(iocb, from);
Al Viro84c3d552014-04-03 14:33:23 -04001211 if (written < 0 || !iov_iter_count(from))
Anand Avati4273b792012-02-17 12:46:25 -05001212 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001213
Anand Avati4273b792012-02-17 12:46:25 -05001214 pos += written;
Anand Avati4273b792012-02-17 12:46:25 -05001215
Al Viro84c3d552014-04-03 14:33:23 -04001216 written_buffered = fuse_perform_write(file, mapping, from, pos);
Anand Avati4273b792012-02-17 12:46:25 -05001217 if (written_buffered < 0) {
1218 err = written_buffered;
1219 goto out;
1220 }
1221 endbyte = pos + written_buffered - 1;
1222
1223 err = filemap_write_and_wait_range(file->f_mapping, pos,
1224 endbyte);
1225 if (err)
1226 goto out;
1227
1228 invalidate_mapping_pages(file->f_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001229 pos >> PAGE_SHIFT,
1230 endbyte >> PAGE_SHIFT);
Anand Avati4273b792012-02-17 12:46:25 -05001231
1232 written += written_buffered;
1233 iocb->ki_pos = pos + written_buffered;
1234 } else {
Al Viro3309dd02015-04-09 12:55:47 -04001235 written = fuse_perform_write(file, mapping, from, iocb->ki_pos);
Anand Avati4273b792012-02-17 12:46:25 -05001236 if (written >= 0)
Al Viro3309dd02015-04-09 12:55:47 -04001237 iocb->ki_pos += written;
Anand Avati4273b792012-02-17 12:46:25 -05001238 }
Nick Pigginea9b9902008-04-30 00:54:42 -07001239out:
1240 current->backing_dev_info = NULL;
Al Viro59551022016-01-22 15:40:57 -05001241 inode_unlock(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001242
1243 return written ? written : err;
1244}
1245
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001246static inline void fuse_page_descs_length_init(struct fuse_req *req,
1247 unsigned index, unsigned nr_pages)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001248{
1249 int i;
1250
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001251 for (i = index; i < index + nr_pages; i++)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001252 req->page_descs[i].length = PAGE_SIZE -
1253 req->page_descs[i].offset;
1254}
1255
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001256static inline unsigned long fuse_get_user_addr(const struct iov_iter *ii)
1257{
1258 return (unsigned long)ii->iov->iov_base + ii->iov_offset;
1259}
1260
1261static inline size_t fuse_get_frag_size(const struct iov_iter *ii,
1262 size_t max_size)
1263{
1264 return min(iov_iter_single_seg_count(ii), max_size);
1265}
1266
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001267static int fuse_get_user_pages(struct fuse_req *req, struct iov_iter *ii,
Miklos Szeredice60a2f2009-04-09 17:37:52 +02001268 size_t *nbytesp, int write)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001269{
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001270 size_t nbytes = 0; /* # bytes already packed in req */
Ashish Samant742f9922016-03-14 21:57:35 -07001271 ssize_t ret = 0;
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001272
Miklos Szeredif4975c62009-04-02 14:25:34 +02001273 /* Special case for kernel I/O: can copy directly into the buffer */
Al Viro62a80672014-04-04 23:12:29 -04001274 if (ii->type & ITER_KVEC) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001275 unsigned long user_addr = fuse_get_user_addr(ii);
1276 size_t frag_size = fuse_get_frag_size(ii, *nbytesp);
1277
Miklos Szeredif4975c62009-04-02 14:25:34 +02001278 if (write)
1279 req->in.args[1].value = (void *) user_addr;
1280 else
1281 req->out.args[0].value = (void *) user_addr;
1282
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001283 iov_iter_advance(ii, frag_size);
1284 *nbytesp = frag_size;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001285 return 0;
1286 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001287
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001288 while (nbytes < *nbytesp && req->num_pages < req->max_pages) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001289 unsigned npages;
Al Virof67da302014-03-19 01:16:16 -04001290 size_t start;
Ashish Samant742f9922016-03-14 21:57:35 -07001291 ret = iov_iter_get_pages(ii, &req->pages[req->num_pages],
Miklos Szeredi2c809292014-09-24 17:09:11 +02001292 *nbytesp - nbytes,
Al Viroc7f38882014-06-18 20:34:33 -04001293 req->max_pages - req->num_pages,
1294 &start);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001295 if (ret < 0)
Ashish Samant742f9922016-03-14 21:57:35 -07001296 break;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001297
Al Viroc9c37e22014-03-16 16:08:30 -04001298 iov_iter_advance(ii, ret);
1299 nbytes += ret;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001300
Al Viroc9c37e22014-03-16 16:08:30 -04001301 ret += start;
1302 npages = (ret + PAGE_SIZE - 1) / PAGE_SIZE;
1303
1304 req->page_descs[req->num_pages].offset = start;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001305 fuse_page_descs_length_init(req, req->num_pages, npages);
1306
1307 req->num_pages += npages;
1308 req->page_descs[req->num_pages - 1].length -=
Al Viroc9c37e22014-03-16 16:08:30 -04001309 (PAGE_SIZE - ret) & (PAGE_SIZE - 1);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001310 }
Miklos Szeredif4975c62009-04-02 14:25:34 +02001311
1312 if (write)
1313 req->in.argpages = 1;
1314 else
1315 req->out.argpages = 1;
1316
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001317 *nbytesp = nbytes;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001318
Ashish Samant2c932d42016-03-25 10:53:41 -07001319 return ret < 0 ? ret : 0;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001320}
1321
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001322static inline int fuse_iter_npages(const struct iov_iter *ii_p)
1323{
Al Virof67da302014-03-19 01:16:16 -04001324 return iov_iter_npages(ii_p, FUSE_MAX_PAGES_PER_REQ);
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001325}
1326
Al Virod22a9432014-03-16 15:50:47 -04001327ssize_t fuse_direct_io(struct fuse_io_priv *io, struct iov_iter *iter,
1328 loff_t *ppos, int flags)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001329{
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001330 int write = flags & FUSE_DIO_WRITE;
Miklos Szeredi8fba54a2016-08-24 18:17:04 +02001331 bool should_dirty = !write && iter_is_iovec(iter);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001332 int cuse = flags & FUSE_DIO_CUSE;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001333 struct file *file = io->file;
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001334 struct inode *inode = file->f_mapping->host;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001335 struct fuse_file *ff = file->private_data;
1336 struct fuse_conn *fc = ff->fc;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001337 size_t nmax = write ? fc->max_write : fc->max_read;
1338 loff_t pos = *ppos;
Al Virod22a9432014-03-16 15:50:47 -04001339 size_t count = iov_iter_count(iter);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001340 pgoff_t idx_from = pos >> PAGE_SHIFT;
1341 pgoff_t idx_to = (pos + count - 1) >> PAGE_SHIFT;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001342 ssize_t res = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001343 struct fuse_req *req;
Ashish Samant742f9922016-03-14 21:57:35 -07001344 int err = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001345
Brian Fosterde82b922013-05-14 11:25:39 -04001346 if (io->async)
Al Virod22a9432014-03-16 15:50:47 -04001347 req = fuse_get_req_for_background(fc, fuse_iter_npages(iter));
Brian Fosterde82b922013-05-14 11:25:39 -04001348 else
Al Virod22a9432014-03-16 15:50:47 -04001349 req = fuse_get_req(fc, fuse_iter_npages(iter));
Miklos Szeredice1d5a42006-04-10 22:54:58 -07001350 if (IS_ERR(req))
1351 return PTR_ERR(req);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001352
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001353 if (!cuse && fuse_range_is_writeback(inode, idx_from, idx_to)) {
1354 if (!write)
Al Viro59551022016-01-22 15:40:57 -05001355 inode_lock(inode);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001356 fuse_sync_writes(inode);
1357 if (!write)
Al Viro59551022016-01-22 15:40:57 -05001358 inode_unlock(inode);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001359 }
1360
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001361 while (count) {
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001362 size_t nres;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001363 fl_owner_t owner = current->files;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001364 size_t nbytes = min(count, nmax);
Ashish Samant742f9922016-03-14 21:57:35 -07001365 err = fuse_get_user_pages(req, iter, &nbytes, write);
1366 if (err && !nbytes)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001367 break;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001368
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001369 if (write)
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001370 nres = fuse_send_write(req, io, pos, nbytes, owner);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001371 else
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001372 nres = fuse_send_read(req, io, pos, nbytes, owner);
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001373
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001374 if (!io->async)
Miklos Szeredi8fba54a2016-08-24 18:17:04 +02001375 fuse_release_user_pages(req, should_dirty);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001376 if (req->out.h.error) {
Ashish Samant742f9922016-03-14 21:57:35 -07001377 err = req->out.h.error;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001378 break;
1379 } else if (nres > nbytes) {
Ashish Samant742f9922016-03-14 21:57:35 -07001380 res = 0;
1381 err = -EIO;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001382 break;
1383 }
1384 count -= nres;
1385 res += nres;
1386 pos += nres;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001387 if (nres != nbytes)
1388 break;
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001389 if (count) {
1390 fuse_put_request(fc, req);
Brian Fosterde82b922013-05-14 11:25:39 -04001391 if (io->async)
1392 req = fuse_get_req_for_background(fc,
Al Virod22a9432014-03-16 15:50:47 -04001393 fuse_iter_npages(iter));
Brian Fosterde82b922013-05-14 11:25:39 -04001394 else
Al Virod22a9432014-03-16 15:50:47 -04001395 req = fuse_get_req(fc, fuse_iter_npages(iter));
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001396 if (IS_ERR(req))
1397 break;
1398 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001399 }
Anand V. Avatif60311d2009-10-22 06:24:52 -07001400 if (!IS_ERR(req))
1401 fuse_put_request(fc, req);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001402 if (res > 0)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001403 *ppos = pos;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001404
Ashish Samant742f9922016-03-14 21:57:35 -07001405 return res > 0 ? res : err;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001406}
Tejun Heo08cbf542009-04-14 10:54:53 +09001407EXPORT_SYMBOL_GPL(fuse_direct_io);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001408
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001409static ssize_t __fuse_direct_read(struct fuse_io_priv *io,
Al Virod22a9432014-03-16 15:50:47 -04001410 struct iov_iter *iter,
1411 loff_t *ppos)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001412{
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001413 ssize_t res;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001414 struct file *file = io->file;
Al Viro6131ffa2013-02-27 16:59:05 -05001415 struct inode *inode = file_inode(file);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001416
1417 if (is_bad_inode(inode))
1418 return -EIO;
1419
Al Virod22a9432014-03-16 15:50:47 -04001420 res = fuse_direct_io(io, iter, ppos, 0);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001421
1422 fuse_invalidate_attr(inode);
1423
1424 return res;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001425}
1426
Al Viro15316262015-03-30 22:08:36 -04001427static ssize_t fuse_direct_read_iter(struct kiocb *iocb, struct iov_iter *to)
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001428{
Seth Forshee744742d2016-03-11 10:35:34 -06001429 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb->ki_filp);
Al Viro15316262015-03-30 22:08:36 -04001430 return __fuse_direct_read(&io, to, &iocb->ki_pos);
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001431}
1432
Al Viro15316262015-03-30 22:08:36 -04001433static ssize_t fuse_direct_write_iter(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001434{
Al Viro15316262015-03-30 22:08:36 -04001435 struct file *file = iocb->ki_filp;
Al Viro6131ffa2013-02-27 16:59:05 -05001436 struct inode *inode = file_inode(file);
Seth Forshee744742d2016-03-11 10:35:34 -06001437 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(file);
Al Viro15316262015-03-30 22:08:36 -04001438 ssize_t res;
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001439
1440 if (is_bad_inode(inode))
1441 return -EIO;
1442
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001443 /* Don't allow parallel writes to the same file */
Al Viro59551022016-01-22 15:40:57 -05001444 inode_lock(inode);
Al Viro3309dd02015-04-09 12:55:47 -04001445 res = generic_write_checks(iocb, from);
1446 if (res > 0)
Al Viro812408f2015-03-30 22:15:58 -04001447 res = fuse_direct_io(&io, from, &iocb->ki_pos, FUSE_DIO_WRITE);
Al Viro812408f2015-03-30 22:15:58 -04001448 fuse_invalidate_attr(inode);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04001449 if (res > 0)
Al Viro15316262015-03-30 22:08:36 -04001450 fuse_write_update_size(inode, iocb->ki_pos);
Al Viro59551022016-01-22 15:40:57 -05001451 inode_unlock(inode);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001452
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001453 return res;
1454}
1455
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001456static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001457{
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001458 int i;
1459
1460 for (i = 0; i < req->num_pages; i++)
1461 __free_page(req->pages[i]);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001462
1463 if (req->ff)
1464 fuse_file_put(req->ff, false);
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001465}
1466
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001467static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001468{
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001469 struct inode *inode = req->inode;
1470 struct fuse_inode *fi = get_fuse_inode(inode);
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001471 struct backing_dev_info *bdi = inode_to_bdi(inode);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001472 int i;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001473
1474 list_del(&req->writepages_entry);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001475 for (i = 0; i < req->num_pages; i++) {
Tejun Heo93f78d82015-05-22 17:13:27 -04001476 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001477 dec_node_page_state(req->pages[i], NR_WRITEBACK_TEMP);
Tejun Heo93f78d82015-05-22 17:13:27 -04001478 wb_writeout_inc(&bdi->wb);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001479 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001480 wake_up(&fi->page_waitq);
1481}
1482
1483/* Called under fc->lock, may release and reacquire it */
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001484static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req,
1485 loff_t size)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001486__releases(fc->lock)
1487__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001488{
1489 struct fuse_inode *fi = get_fuse_inode(req->inode);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001490 struct fuse_write_in *inarg = &req->misc.write.in;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001491 __u64 data_size = req->num_pages * PAGE_SIZE;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001492
1493 if (!fc->connected)
1494 goto out_free;
1495
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001496 if (inarg->offset + data_size <= size) {
1497 inarg->size = data_size;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001498 } else if (inarg->offset < size) {
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001499 inarg->size = size - inarg->offset;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001500 } else {
1501 /* Got truncated off completely */
1502 goto out_free;
1503 }
1504
1505 req->in.args[1].size = inarg->size;
1506 fi->writectr++;
Tejun Heob93f8582008-11-26 12:03:55 +01001507 fuse_request_send_background_locked(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001508 return;
1509
1510 out_free:
1511 fuse_writepage_finish(fc, req);
1512 spin_unlock(&fc->lock);
1513 fuse_writepage_free(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +01001514 fuse_put_request(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001515 spin_lock(&fc->lock);
1516}
1517
1518/*
1519 * If fi->writectr is positive (no truncate or fsync going on) send
1520 * all queued writepage requests.
1521 *
1522 * Called with fc->lock
1523 */
1524void fuse_flush_writepages(struct inode *inode)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001525__releases(fc->lock)
1526__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001527{
1528 struct fuse_conn *fc = get_fuse_conn(inode);
1529 struct fuse_inode *fi = get_fuse_inode(inode);
Miklos Szeredi3a78b1f2019-04-24 17:05:06 +02001530 loff_t crop = i_size_read(inode);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001531 struct fuse_req *req;
1532
1533 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1534 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1535 list_del_init(&req->list);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001536 fuse_send_writepage(fc, req, crop);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001537 }
1538}
1539
1540static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1541{
1542 struct inode *inode = req->inode;
1543 struct fuse_inode *fi = get_fuse_inode(inode);
1544
1545 mapping_set_error(inode->i_mapping, req->out.h.error);
1546 spin_lock(&fc->lock);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001547 while (req->misc.write.next) {
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001548 struct fuse_conn *fc = get_fuse_conn(inode);
1549 struct fuse_write_in *inarg = &req->misc.write.in;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001550 struct fuse_req *next = req->misc.write.next;
1551 req->misc.write.next = next->misc.write.next;
1552 next->misc.write.next = NULL;
Maxim Patlasovce128de2013-10-02 21:38:54 +04001553 next->ff = fuse_file_get(req->ff);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001554 list_add(&next->writepages_entry, &fi->writepages);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001555
1556 /*
1557 * Skip fuse_flush_writepages() to make it easy to crop requests
1558 * based on primary request size.
1559 *
1560 * 1st case (trivial): there are no concurrent activities using
1561 * fuse_set/release_nowrite. Then we're on safe side because
1562 * fuse_flush_writepages() would call fuse_send_writepage()
1563 * anyway.
1564 *
1565 * 2nd case: someone called fuse_set_nowrite and it is waiting
1566 * now for completion of all in-flight requests. This happens
1567 * rarely and no more than once per page, so this should be
1568 * okay.
1569 *
1570 * 3rd case: someone (e.g. fuse_do_setattr()) is in the middle
1571 * of fuse_set_nowrite..fuse_release_nowrite section. The fact
1572 * that fuse_set_nowrite returned implies that all in-flight
1573 * requests were completed along with all of their secondary
1574 * requests. Further primary requests are blocked by negative
1575 * writectr. Hence there cannot be any in-flight requests and
1576 * no invocations of fuse_writepage_end() while we're in
1577 * fuse_set_nowrite..fuse_release_nowrite section.
1578 */
1579 fuse_send_writepage(fc, next, inarg->offset + inarg->size);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001580 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001581 fi->writectr--;
1582 fuse_writepage_finish(fc, req);
1583 spin_unlock(&fc->lock);
1584 fuse_writepage_free(fc, req);
1585}
1586
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001587static struct fuse_file *__fuse_write_file_get(struct fuse_conn *fc,
1588 struct fuse_inode *fi)
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001589{
Miklos Szeredi72523422013-10-01 16:44:52 +02001590 struct fuse_file *ff = NULL;
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001591
1592 spin_lock(&fc->lock);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001593 if (!list_empty(&fi->write_files)) {
Miklos Szeredi72523422013-10-01 16:44:52 +02001594 ff = list_entry(fi->write_files.next, struct fuse_file,
1595 write_entry);
1596 fuse_file_get(ff);
1597 }
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001598 spin_unlock(&fc->lock);
1599
1600 return ff;
1601}
1602
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001603static struct fuse_file *fuse_write_file_get(struct fuse_conn *fc,
1604 struct fuse_inode *fi)
1605{
1606 struct fuse_file *ff = __fuse_write_file_get(fc, fi);
1607 WARN_ON(!ff);
1608 return ff;
1609}
1610
1611int fuse_write_inode(struct inode *inode, struct writeback_control *wbc)
1612{
1613 struct fuse_conn *fc = get_fuse_conn(inode);
1614 struct fuse_inode *fi = get_fuse_inode(inode);
1615 struct fuse_file *ff;
1616 int err;
1617
1618 ff = __fuse_write_file_get(fc, fi);
Maxim Patlasovab9e13f2014-04-28 14:19:24 +02001619 err = fuse_flush_times(inode, ff);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001620 if (ff)
1621 fuse_file_put(ff, 0);
1622
1623 return err;
1624}
1625
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001626static int fuse_writepage_locked(struct page *page)
1627{
1628 struct address_space *mapping = page->mapping;
1629 struct inode *inode = mapping->host;
1630 struct fuse_conn *fc = get_fuse_conn(inode);
1631 struct fuse_inode *fi = get_fuse_inode(inode);
1632 struct fuse_req *req;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001633 struct page *tmp_page;
Miklos Szeredi72523422013-10-01 16:44:52 +02001634 int error = -ENOMEM;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001635
1636 set_page_writeback(page);
1637
Maxim Patlasov4250c062012-10-26 19:48:07 +04001638 req = fuse_request_alloc_nofs(1);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001639 if (!req)
1640 goto err;
1641
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001642 /* writeback always goes to bg_queue */
1643 __set_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001644 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1645 if (!tmp_page)
1646 goto err_free;
1647
Miklos Szeredi72523422013-10-01 16:44:52 +02001648 error = -EIO;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001649 req->ff = fuse_write_file_get(fc, fi);
Miklos Szeredi72523422013-10-01 16:44:52 +02001650 if (!req->ff)
Maxim Patlasov27f1b362014-07-10 15:32:43 +04001651 goto err_nofile;
Miklos Szeredi72523422013-10-01 16:44:52 +02001652
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001653 fuse_write_fill(req, req->ff, page_offset(page), 0);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001654
1655 copy_highpage(tmp_page, page);
Miklos Szeredi2d698b02009-04-28 16:56:36 +02001656 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001657 req->misc.write.next = NULL;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001658 req->in.argpages = 1;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001659 req->num_pages = 1;
1660 req->pages[0] = tmp_page;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001661 req->page_descs[0].offset = 0;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001662 req->page_descs[0].length = PAGE_SIZE;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001663 req->end = fuse_writepage_end;
1664 req->inode = inode;
1665
Tejun Heo93f78d82015-05-22 17:13:27 -04001666 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001667 inc_node_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001668
1669 spin_lock(&fc->lock);
1670 list_add(&req->writepages_entry, &fi->writepages);
1671 list_add_tail(&req->list, &fi->queued_writes);
1672 fuse_flush_writepages(inode);
1673 spin_unlock(&fc->lock);
1674
Maxim Patlasov4a4ac4e2013-08-12 20:39:30 +04001675 end_page_writeback(page);
1676
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001677 return 0;
1678
Maxim Patlasov27f1b362014-07-10 15:32:43 +04001679err_nofile:
1680 __free_page(tmp_page);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001681err_free:
1682 fuse_request_free(req);
1683err:
1684 end_page_writeback(page);
Miklos Szeredi72523422013-10-01 16:44:52 +02001685 return error;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001686}
1687
1688static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1689{
1690 int err;
1691
Miklos Szerediff17be02013-10-01 16:44:53 +02001692 if (fuse_page_is_writeback(page->mapping->host, page->index)) {
1693 /*
1694 * ->writepages() should be called for sync() and friends. We
1695 * should only get here on direct reclaim and then we are
1696 * allowed to skip a page which is already in flight
1697 */
1698 WARN_ON(wbc->sync_mode == WB_SYNC_ALL);
1699
1700 redirty_page_for_writepage(wbc, page);
Vasily Averina4891542019-09-13 18:17:11 +03001701 unlock_page(page);
Miklos Szerediff17be02013-10-01 16:44:53 +02001702 return 0;
1703 }
1704
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001705 err = fuse_writepage_locked(page);
1706 unlock_page(page);
1707
1708 return err;
1709}
1710
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001711struct fuse_fill_wb_data {
1712 struct fuse_req *req;
1713 struct fuse_file *ff;
1714 struct inode *inode;
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001715 struct page **orig_pages;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001716};
1717
1718static void fuse_writepages_send(struct fuse_fill_wb_data *data)
1719{
1720 struct fuse_req *req = data->req;
1721 struct inode *inode = data->inode;
1722 struct fuse_conn *fc = get_fuse_conn(inode);
1723 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001724 int num_pages = req->num_pages;
1725 int i;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001726
1727 req->ff = fuse_file_get(data->ff);
1728 spin_lock(&fc->lock);
1729 list_add_tail(&req->list, &fi->queued_writes);
1730 fuse_flush_writepages(inode);
1731 spin_unlock(&fc->lock);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001732
1733 for (i = 0; i < num_pages; i++)
1734 end_page_writeback(data->orig_pages[i]);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001735}
1736
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001737static bool fuse_writepage_in_flight(struct fuse_req *new_req,
1738 struct page *page)
1739{
1740 struct fuse_conn *fc = get_fuse_conn(new_req->inode);
1741 struct fuse_inode *fi = get_fuse_inode(new_req->inode);
1742 struct fuse_req *tmp;
1743 struct fuse_req *old_req;
1744 bool found = false;
1745 pgoff_t curr_index;
1746
1747 BUG_ON(new_req->num_pages != 0);
1748
1749 spin_lock(&fc->lock);
1750 list_del(&new_req->writepages_entry);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001751 list_for_each_entry(old_req, &fi->writepages, writepages_entry) {
1752 BUG_ON(old_req->inode != new_req->inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001753 curr_index = old_req->misc.write.in.offset >> PAGE_SHIFT;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001754 if (curr_index <= page->index &&
1755 page->index < curr_index + old_req->num_pages) {
1756 found = true;
1757 break;
1758 }
1759 }
Maxim Patlasovf6011082013-10-02 15:01:07 +04001760 if (!found) {
1761 list_add(&new_req->writepages_entry, &fi->writepages);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001762 goto out_unlock;
Maxim Patlasovf6011082013-10-02 15:01:07 +04001763 }
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001764
Maxim Patlasovf6011082013-10-02 15:01:07 +04001765 new_req->num_pages = 1;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001766 for (tmp = old_req; tmp != NULL; tmp = tmp->misc.write.next) {
1767 BUG_ON(tmp->inode != new_req->inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001768 curr_index = tmp->misc.write.in.offset >> PAGE_SHIFT;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001769 if (tmp->num_pages == 1 &&
1770 curr_index == page->index) {
1771 old_req = tmp;
1772 }
1773 }
1774
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001775 if (old_req->num_pages == 1 && test_bit(FR_PENDING, &old_req->flags)) {
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001776 struct backing_dev_info *bdi = inode_to_bdi(page->mapping->host);
Maxim Patlasov41b6e412013-10-02 21:38:43 +04001777
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001778 copy_highpage(old_req->pages[0], page);
1779 spin_unlock(&fc->lock);
1780
Tejun Heo93f78d82015-05-22 17:13:27 -04001781 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
Miklos Szeredi4f3d6982019-01-16 10:27:59 +01001782 dec_node_page_state(new_req->pages[0], NR_WRITEBACK_TEMP);
Tejun Heo93f78d82015-05-22 17:13:27 -04001783 wb_writeout_inc(&bdi->wb);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001784 fuse_writepage_free(fc, new_req);
1785 fuse_request_free(new_req);
1786 goto out;
1787 } else {
1788 new_req->misc.write.next = old_req->misc.write.next;
1789 old_req->misc.write.next = new_req;
1790 }
1791out_unlock:
1792 spin_unlock(&fc->lock);
1793out:
1794 return found;
1795}
1796
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001797static int fuse_writepages_fill(struct page *page,
1798 struct writeback_control *wbc, void *_data)
1799{
1800 struct fuse_fill_wb_data *data = _data;
1801 struct fuse_req *req = data->req;
1802 struct inode *inode = data->inode;
1803 struct fuse_conn *fc = get_fuse_conn(inode);
1804 struct page *tmp_page;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001805 bool is_writeback;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001806 int err;
1807
1808 if (!data->ff) {
1809 err = -EIO;
1810 data->ff = fuse_write_file_get(fc, get_fuse_inode(inode));
1811 if (!data->ff)
1812 goto out_unlock;
1813 }
1814
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001815 /*
1816 * Being under writeback is unlikely but possible. For example direct
1817 * read to an mmaped fuse file will set the page dirty twice; once when
1818 * the pages are faulted with get_user_pages(), and then after the read
1819 * completed.
1820 */
1821 is_writeback = fuse_page_is_writeback(inode, page->index);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001822
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001823 if (req && req->num_pages &&
1824 (is_writeback || req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001825 (req->num_pages + 1) * PAGE_SIZE > fc->max_write ||
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001826 data->orig_pages[req->num_pages - 1]->index + 1 != page->index)) {
1827 fuse_writepages_send(data);
1828 data->req = NULL;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001829 }
1830 err = -ENOMEM;
1831 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1832 if (!tmp_page)
1833 goto out_unlock;
1834
1835 /*
1836 * The page must not be redirtied until the writeout is completed
1837 * (i.e. userspace has sent a reply to the write request). Otherwise
1838 * there could be more than one temporary page instance for each real
1839 * page.
1840 *
1841 * This is ensured by holding the page lock in page_mkwrite() while
1842 * checking fuse_page_is_writeback(). We already hold the page lock
1843 * since clear_page_dirty_for_io() and keep it held until we add the
1844 * request to the fi->writepages list and increment req->num_pages.
1845 * After this fuse_page_is_writeback() will indicate that the page is
1846 * under writeback, so we can release the page lock.
1847 */
1848 if (data->req == NULL) {
1849 struct fuse_inode *fi = get_fuse_inode(inode);
1850
1851 err = -ENOMEM;
1852 req = fuse_request_alloc_nofs(FUSE_MAX_PAGES_PER_REQ);
1853 if (!req) {
1854 __free_page(tmp_page);
1855 goto out_unlock;
1856 }
1857
1858 fuse_write_fill(req, data->ff, page_offset(page), 0);
1859 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001860 req->misc.write.next = NULL;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001861 req->in.argpages = 1;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001862 __set_bit(FR_BACKGROUND, &req->flags);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001863 req->num_pages = 0;
1864 req->end = fuse_writepage_end;
1865 req->inode = inode;
1866
1867 spin_lock(&fc->lock);
1868 list_add(&req->writepages_entry, &fi->writepages);
1869 spin_unlock(&fc->lock);
1870
1871 data->req = req;
1872 }
1873 set_page_writeback(page);
1874
1875 copy_highpage(tmp_page, page);
1876 req->pages[req->num_pages] = tmp_page;
1877 req->page_descs[req->num_pages].offset = 0;
1878 req->page_descs[req->num_pages].length = PAGE_SIZE;
1879
Tejun Heo93f78d82015-05-22 17:13:27 -04001880 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001881 inc_node_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001882
1883 err = 0;
1884 if (is_writeback && fuse_writepage_in_flight(req, page)) {
1885 end_page_writeback(page);
1886 data->req = NULL;
1887 goto out_unlock;
1888 }
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001889 data->orig_pages[req->num_pages] = page;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001890
1891 /*
1892 * Protected by fc->lock against concurrent access by
1893 * fuse_page_is_writeback().
1894 */
1895 spin_lock(&fc->lock);
1896 req->num_pages++;
1897 spin_unlock(&fc->lock);
1898
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001899out_unlock:
1900 unlock_page(page);
1901
1902 return err;
1903}
1904
1905static int fuse_writepages(struct address_space *mapping,
1906 struct writeback_control *wbc)
1907{
1908 struct inode *inode = mapping->host;
1909 struct fuse_fill_wb_data data;
1910 int err;
1911
1912 err = -EIO;
1913 if (is_bad_inode(inode))
1914 goto out;
1915
1916 data.inode = inode;
1917 data.req = NULL;
1918 data.ff = NULL;
1919
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001920 err = -ENOMEM;
Fabian Frederickf2b34552014-06-23 18:35:15 +02001921 data.orig_pages = kcalloc(FUSE_MAX_PAGES_PER_REQ,
1922 sizeof(struct page *),
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001923 GFP_NOFS);
1924 if (!data.orig_pages)
1925 goto out;
1926
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001927 err = write_cache_pages(mapping, wbc, fuse_writepages_fill, &data);
1928 if (data.req) {
1929 /* Ignore errors if we can write at least one page */
1930 BUG_ON(!data.req->num_pages);
1931 fuse_writepages_send(&data);
1932 err = 0;
1933 }
1934 if (data.ff)
1935 fuse_file_put(data.ff, false);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001936
1937 kfree(data.orig_pages);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001938out:
1939 return err;
1940}
1941
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001942/*
1943 * It's worthy to make sure that space is reserved on disk for the write,
1944 * but how to implement it without killing performance need more thinking.
1945 */
1946static int fuse_write_begin(struct file *file, struct address_space *mapping,
1947 loff_t pos, unsigned len, unsigned flags,
1948 struct page **pagep, void **fsdata)
1949{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001950 pgoff_t index = pos >> PAGE_SHIFT;
Al Viroa4555892014-10-21 20:11:25 -04001951 struct fuse_conn *fc = get_fuse_conn(file_inode(file));
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001952 struct page *page;
1953 loff_t fsize;
1954 int err = -ENOMEM;
1955
1956 WARN_ON(!fc->writeback_cache);
1957
1958 page = grab_cache_page_write_begin(mapping, index, flags);
1959 if (!page)
1960 goto error;
1961
1962 fuse_wait_on_page_writeback(mapping->host, page->index);
1963
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001964 if (PageUptodate(page) || len == PAGE_SIZE)
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001965 goto success;
1966 /*
1967 * Check if the start this page comes after the end of file, in which
1968 * case the readpage can be optimized away.
1969 */
1970 fsize = i_size_read(mapping->host);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001971 if (fsize <= (pos & PAGE_MASK)) {
1972 size_t off = pos & ~PAGE_MASK;
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001973 if (off)
1974 zero_user_segment(page, 0, off);
1975 goto success;
1976 }
1977 err = fuse_do_readpage(file, page);
1978 if (err)
1979 goto cleanup;
1980success:
1981 *pagep = page;
1982 return 0;
1983
1984cleanup:
1985 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001986 put_page(page);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001987error:
1988 return err;
1989}
1990
1991static int fuse_write_end(struct file *file, struct address_space *mapping,
1992 loff_t pos, unsigned len, unsigned copied,
1993 struct page *page, void *fsdata)
1994{
1995 struct inode *inode = page->mapping->host;
1996
Miklos Szeredi59c3b762016-08-18 09:10:44 +02001997 /* Haven't copied anything? Skip zeroing, size extending, dirtying. */
1998 if (!copied)
1999 goto unlock;
2000
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002001 if (!PageUptodate(page)) {
2002 /* Zero any unwritten bytes at the end of the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002003 size_t endoff = (pos + copied) & ~PAGE_MASK;
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002004 if (endoff)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002005 zero_user_segment(page, endoff, PAGE_SIZE);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002006 SetPageUptodate(page);
2007 }
2008
2009 fuse_write_update_size(inode, pos + copied);
2010 set_page_dirty(page);
Miklos Szeredi59c3b762016-08-18 09:10:44 +02002011
2012unlock:
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002013 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002014 put_page(page);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002015
2016 return copied;
2017}
2018
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002019static int fuse_launder_page(struct page *page)
2020{
2021 int err = 0;
2022 if (clear_page_dirty_for_io(page)) {
2023 struct inode *inode = page->mapping->host;
2024 err = fuse_writepage_locked(page);
2025 if (!err)
2026 fuse_wait_on_page_writeback(inode, page->index);
2027 }
2028 return err;
2029}
2030
2031/*
2032 * Write back dirty pages now, because there may not be any suitable
2033 * open files later
2034 */
2035static void fuse_vma_close(struct vm_area_struct *vma)
2036{
2037 filemap_write_and_wait(vma->vm_file->f_mapping);
2038}
2039
2040/*
2041 * Wait for writeback against this page to complete before allowing it
2042 * to be marked dirty again, and hence written back again, possibly
2043 * before the previous writepage completed.
2044 *
2045 * Block here, instead of in ->writepage(), so that the userspace fs
2046 * can only block processes actually operating on the filesystem.
2047 *
2048 * Otherwise unprivileged userspace fs would be able to block
2049 * unrelated:
2050 *
2051 * - page migration
2052 * - sync(2)
2053 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
2054 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07002055static int fuse_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002056{
Nick Pigginc2ec1752009-03-31 15:23:21 -07002057 struct page *page = vmf->page;
Miklos Szeredicca24372013-10-01 16:44:51 +02002058 struct inode *inode = file_inode(vma->vm_file);
2059
2060 file_update_time(vma->vm_file);
2061 lock_page(page);
2062 if (page->mapping != inode->i_mapping) {
2063 unlock_page(page);
2064 return VM_FAULT_NOPAGE;
2065 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002066
2067 fuse_wait_on_page_writeback(inode, page->index);
Miklos Szeredicca24372013-10-01 16:44:51 +02002068 return VM_FAULT_LOCKED;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002069}
2070
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002071static const struct vm_operations_struct fuse_file_vm_ops = {
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002072 .close = fuse_vma_close,
2073 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002074 .map_pages = filemap_map_pages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002075 .page_mkwrite = fuse_page_mkwrite,
2076};
2077
2078static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
2079{
Pavel Emelyanov650b22b2013-10-10 17:10:04 +04002080 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2081 fuse_link_write_file(file);
2082
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002083 file_accessed(file);
2084 vma->vm_ops = &fuse_file_vm_ops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002085 return 0;
2086}
2087
Miklos Szeredifc280c92009-04-02 14:25:35 +02002088static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
2089{
2090 /* Can't provide the coherency needed for MAP_SHARED */
2091 if (vma->vm_flags & VM_MAYSHARE)
2092 return -ENODEV;
2093
Miklos Szeredi3121bfe2009-04-09 17:37:53 +02002094 invalidate_inode_pages2(file->f_mapping);
2095
Miklos Szeredifc280c92009-04-02 14:25:35 +02002096 return generic_file_mmap(file, vma);
2097}
2098
Miklos Szeredi71421252006-06-25 05:48:52 -07002099static int convert_fuse_file_lock(const struct fuse_file_lock *ffl,
2100 struct file_lock *fl)
2101{
2102 switch (ffl->type) {
2103 case F_UNLCK:
2104 break;
2105
2106 case F_RDLCK:
2107 case F_WRLCK:
2108 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
2109 ffl->end < ffl->start)
2110 return -EIO;
2111
2112 fl->fl_start = ffl->start;
2113 fl->fl_end = ffl->end;
2114 fl->fl_pid = ffl->pid;
2115 break;
2116
2117 default:
2118 return -EIO;
2119 }
2120 fl->fl_type = ffl->type;
2121 return 0;
2122}
2123
Miklos Szeredi70781872014-12-12 09:49:05 +01002124static void fuse_lk_fill(struct fuse_args *args, struct file *file,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002125 const struct file_lock *fl, int opcode, pid_t pid,
Miklos Szeredi70781872014-12-12 09:49:05 +01002126 int flock, struct fuse_lk_in *inarg)
Miklos Szeredi71421252006-06-25 05:48:52 -07002127{
Al Viro6131ffa2013-02-27 16:59:05 -05002128 struct inode *inode = file_inode(file);
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07002129 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi71421252006-06-25 05:48:52 -07002130 struct fuse_file *ff = file->private_data;
Miklos Szeredi71421252006-06-25 05:48:52 -07002131
Miklos Szeredi70781872014-12-12 09:49:05 +01002132 memset(inarg, 0, sizeof(*inarg));
2133 inarg->fh = ff->fh;
2134 inarg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
2135 inarg->lk.start = fl->fl_start;
2136 inarg->lk.end = fl->fl_end;
2137 inarg->lk.type = fl->fl_type;
2138 inarg->lk.pid = pid;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002139 if (flock)
Miklos Szeredi70781872014-12-12 09:49:05 +01002140 inarg->lk_flags |= FUSE_LK_FLOCK;
2141 args->in.h.opcode = opcode;
2142 args->in.h.nodeid = get_node_id(inode);
2143 args->in.numargs = 1;
2144 args->in.args[0].size = sizeof(*inarg);
2145 args->in.args[0].value = inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002146}
2147
2148static int fuse_getlk(struct file *file, struct file_lock *fl)
2149{
Al Viro6131ffa2013-02-27 16:59:05 -05002150 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002151 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002152 FUSE_ARGS(args);
2153 struct fuse_lk_in inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002154 struct fuse_lk_out outarg;
2155 int err;
2156
Miklos Szeredi70781872014-12-12 09:49:05 +01002157 fuse_lk_fill(&args, file, fl, FUSE_GETLK, 0, 0, &inarg);
2158 args.out.numargs = 1;
2159 args.out.args[0].size = sizeof(outarg);
2160 args.out.args[0].value = &outarg;
2161 err = fuse_simple_request(fc, &args);
Miklos Szeredi71421252006-06-25 05:48:52 -07002162 if (!err)
2163 err = convert_fuse_file_lock(&outarg.lk, fl);
2164
2165 return err;
2166}
2167
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002168static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07002169{
Al Viro6131ffa2013-02-27 16:59:05 -05002170 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002171 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002172 FUSE_ARGS(args);
2173 struct fuse_lk_in inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002174 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
2175 pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0;
2176 int err;
2177
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04002178 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
Miklos Szeredi48e90762008-07-25 01:49:02 -07002179 /* NLM needs asynchronous locks, which we don't support yet */
2180 return -ENOLCK;
2181 }
2182
Miklos Szeredi71421252006-06-25 05:48:52 -07002183 /* Unlock on close is handled by the flush method */
2184 if (fl->fl_flags & FL_CLOSE)
2185 return 0;
2186
Miklos Szeredi70781872014-12-12 09:49:05 +01002187 fuse_lk_fill(&args, file, fl, opcode, pid, flock, &inarg);
2188 err = fuse_simple_request(fc, &args);
Miklos Szeredi71421252006-06-25 05:48:52 -07002189
Miklos Szeredia4d27e72006-06-25 05:48:54 -07002190 /* locking is restartable */
2191 if (err == -EINTR)
2192 err = -ERESTARTSYS;
Miklos Szeredi70781872014-12-12 09:49:05 +01002193
Miklos Szeredi71421252006-06-25 05:48:52 -07002194 return err;
2195}
2196
2197static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
2198{
Al Viro6131ffa2013-02-27 16:59:05 -05002199 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002200 struct fuse_conn *fc = get_fuse_conn(inode);
2201 int err;
2202
Miklos Szeredi48e90762008-07-25 01:49:02 -07002203 if (cmd == F_CANCELLK) {
2204 err = 0;
2205 } else if (cmd == F_GETLK) {
Miklos Szeredi71421252006-06-25 05:48:52 -07002206 if (fc->no_lock) {
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002207 posix_test_lock(file, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07002208 err = 0;
2209 } else
2210 err = fuse_getlk(file, fl);
2211 } else {
2212 if (fc->no_lock)
Miklos Szeredi48e90762008-07-25 01:49:02 -07002213 err = posix_lock_file(file, fl, NULL);
Miklos Szeredi71421252006-06-25 05:48:52 -07002214 else
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002215 err = fuse_setlk(file, fl, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07002216 }
2217 return err;
2218}
2219
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002220static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
2221{
Al Viro6131ffa2013-02-27 16:59:05 -05002222 struct inode *inode = file_inode(file);
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002223 struct fuse_conn *fc = get_fuse_conn(inode);
2224 int err;
2225
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002226 if (fc->no_flock) {
Benjamin Coddington4f656362015-10-22 13:38:14 -04002227 err = locks_lock_file_wait(file, fl);
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002228 } else {
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002229 struct fuse_file *ff = file->private_data;
2230
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002231 /* emulate flock with POSIX locks */
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002232 ff->flock = true;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002233 err = fuse_setlk(file, fl, 1);
2234 }
2235
2236 return err;
2237}
2238
Miklos Szeredib2d22722006-12-06 20:35:51 -08002239static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
2240{
2241 struct inode *inode = mapping->host;
2242 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002243 FUSE_ARGS(args);
Miklos Szeredib2d22722006-12-06 20:35:51 -08002244 struct fuse_bmap_in inarg;
2245 struct fuse_bmap_out outarg;
2246 int err;
2247
2248 if (!inode->i_sb->s_bdev || fc->no_bmap)
2249 return 0;
2250
Miklos Szeredib2d22722006-12-06 20:35:51 -08002251 memset(&inarg, 0, sizeof(inarg));
2252 inarg.block = block;
2253 inarg.blocksize = inode->i_sb->s_blocksize;
Miklos Szeredi70781872014-12-12 09:49:05 +01002254 args.in.h.opcode = FUSE_BMAP;
2255 args.in.h.nodeid = get_node_id(inode);
2256 args.in.numargs = 1;
2257 args.in.args[0].size = sizeof(inarg);
2258 args.in.args[0].value = &inarg;
2259 args.out.numargs = 1;
2260 args.out.args[0].size = sizeof(outarg);
2261 args.out.args[0].value = &outarg;
2262 err = fuse_simple_request(fc, &args);
Miklos Szeredib2d22722006-12-06 20:35:51 -08002263 if (err == -ENOSYS)
2264 fc->no_bmap = 1;
2265
2266 return err ? 0 : outarg.block;
2267}
2268
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302269static loff_t fuse_lseek(struct file *file, loff_t offset, int whence)
2270{
2271 struct inode *inode = file->f_mapping->host;
2272 struct fuse_conn *fc = get_fuse_conn(inode);
2273 struct fuse_file *ff = file->private_data;
2274 FUSE_ARGS(args);
2275 struct fuse_lseek_in inarg = {
2276 .fh = ff->fh,
2277 .offset = offset,
2278 .whence = whence
2279 };
2280 struct fuse_lseek_out outarg;
2281 int err;
2282
2283 if (fc->no_lseek)
2284 goto fallback;
2285
2286 args.in.h.opcode = FUSE_LSEEK;
2287 args.in.h.nodeid = ff->nodeid;
2288 args.in.numargs = 1;
2289 args.in.args[0].size = sizeof(inarg);
2290 args.in.args[0].value = &inarg;
2291 args.out.numargs = 1;
2292 args.out.args[0].size = sizeof(outarg);
2293 args.out.args[0].value = &outarg;
2294 err = fuse_simple_request(fc, &args);
2295 if (err) {
2296 if (err == -ENOSYS) {
2297 fc->no_lseek = 1;
2298 goto fallback;
2299 }
2300 return err;
2301 }
2302
2303 return vfs_setpos(file, outarg.offset, inode->i_sb->s_maxbytes);
2304
2305fallback:
2306 err = fuse_update_attributes(inode, NULL, file, NULL);
2307 if (!err)
2308 return generic_file_llseek(file, offset, whence);
2309 else
2310 return err;
2311}
2312
Andrew Morton965c8e52012-12-17 15:59:39 -08002313static loff_t fuse_file_llseek(struct file *file, loff_t offset, int whence)
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002314{
2315 loff_t retval;
Al Viro6131ffa2013-02-27 16:59:05 -05002316 struct inode *inode = file_inode(file);
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002317
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302318 switch (whence) {
2319 case SEEK_SET:
2320 case SEEK_CUR:
2321 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
Andrew Morton965c8e52012-12-17 15:59:39 -08002322 retval = generic_file_llseek(file, offset, whence);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302323 break;
2324 case SEEK_END:
Al Viro59551022016-01-22 15:40:57 -05002325 inode_lock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302326 retval = fuse_update_attributes(inode, NULL, file, NULL);
2327 if (!retval)
2328 retval = generic_file_llseek(file, offset, whence);
Al Viro59551022016-01-22 15:40:57 -05002329 inode_unlock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302330 break;
2331 case SEEK_HOLE:
2332 case SEEK_DATA:
Al Viro59551022016-01-22 15:40:57 -05002333 inode_lock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302334 retval = fuse_lseek(file, offset, whence);
Al Viro59551022016-01-22 15:40:57 -05002335 inode_unlock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302336 break;
2337 default:
2338 retval = -EINVAL;
2339 }
Miklos Szeredic07c3d12011-12-13 11:58:48 +01002340
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002341 return retval;
2342}
2343
Tejun Heo59efec72008-11-26 12:03:55 +01002344/*
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002345 * CUSE servers compiled on 32bit broke on 64bit kernels because the
2346 * ABI was defined to be 'struct iovec' which is different on 32bit
2347 * and 64bit. Fortunately we can determine which structure the server
2348 * used from the size of the reply.
2349 */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002350static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
2351 size_t transferred, unsigned count,
2352 bool is_compat)
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002353{
2354#ifdef CONFIG_COMPAT
2355 if (count * sizeof(struct compat_iovec) == transferred) {
2356 struct compat_iovec *ciov = src;
2357 unsigned i;
2358
2359 /*
2360 * With this interface a 32bit server cannot support
2361 * non-compat (i.e. ones coming from 64bit apps) ioctl
2362 * requests
2363 */
2364 if (!is_compat)
2365 return -EINVAL;
2366
2367 for (i = 0; i < count; i++) {
2368 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
2369 dst[i].iov_len = ciov[i].iov_len;
2370 }
2371 return 0;
2372 }
2373#endif
2374
2375 if (count * sizeof(struct iovec) != transferred)
2376 return -EIO;
2377
2378 memcpy(dst, src, transferred);
2379 return 0;
2380}
2381
Miklos Szeredi75727772010-11-30 16:39:27 +01002382/* Make sure iov_length() won't overflow */
2383static int fuse_verify_ioctl_iov(struct iovec *iov, size_t count)
2384{
2385 size_t n;
2386 u32 max = FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT;
2387
Zach Brownfb6ccff2012-07-24 12:10:11 -07002388 for (n = 0; n < count; n++, iov++) {
Miklos Szeredi75727772010-11-30 16:39:27 +01002389 if (iov->iov_len > (size_t) max)
2390 return -ENOMEM;
2391 max -= iov->iov_len;
2392 }
2393 return 0;
2394}
2395
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002396static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
2397 void *src, size_t transferred, unsigned count,
2398 bool is_compat)
2399{
2400 unsigned i;
2401 struct fuse_ioctl_iovec *fiov = src;
2402
2403 if (fc->minor < 16) {
2404 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
2405 count, is_compat);
2406 }
2407
2408 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
2409 return -EIO;
2410
2411 for (i = 0; i < count; i++) {
2412 /* Did the server supply an inappropriate value? */
2413 if (fiov[i].base != (unsigned long) fiov[i].base ||
2414 fiov[i].len != (unsigned long) fiov[i].len)
2415 return -EIO;
2416
2417 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
2418 dst[i].iov_len = (size_t) fiov[i].len;
2419
2420#ifdef CONFIG_COMPAT
2421 if (is_compat &&
2422 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
2423 (compat_size_t) dst[i].iov_len != fiov[i].len))
2424 return -EIO;
2425#endif
2426 }
2427
2428 return 0;
2429}
2430
2431
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002432/*
Tejun Heo59efec72008-11-26 12:03:55 +01002433 * For ioctls, there is no generic way to determine how much memory
2434 * needs to be read and/or written. Furthermore, ioctls are allowed
2435 * to dereference the passed pointer, so the parameter requires deep
2436 * copying but FUSE has no idea whatsoever about what to copy in or
2437 * out.
2438 *
2439 * This is solved by allowing FUSE server to retry ioctl with
2440 * necessary in/out iovecs. Let's assume the ioctl implementation
2441 * needs to read in the following structure.
2442 *
2443 * struct a {
2444 * char *buf;
2445 * size_t buflen;
2446 * }
2447 *
2448 * On the first callout to FUSE server, inarg->in_size and
2449 * inarg->out_size will be NULL; then, the server completes the ioctl
2450 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
2451 * the actual iov array to
2452 *
2453 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
2454 *
2455 * which tells FUSE to copy in the requested area and retry the ioctl.
2456 * On the second round, the server has access to the structure and
2457 * from that it can tell what to look for next, so on the invocation,
2458 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
2459 *
2460 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
2461 * { .iov_base = a.buf, .iov_len = a.buflen } }
2462 *
2463 * FUSE will copy both struct a and the pointed buffer from the
2464 * process doing the ioctl and retry ioctl with both struct a and the
2465 * buffer.
2466 *
2467 * This time, FUSE server has everything it needs and completes ioctl
2468 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
2469 *
2470 * Copying data out works the same way.
2471 *
2472 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
2473 * automatically initializes in and out iovs by decoding @cmd with
2474 * _IOC_* macros and the server is not allowed to request RETRY. This
2475 * limits ioctl data transfers to well-formed ioctls and is the forced
2476 * behavior for all FUSE servers.
2477 */
Tejun Heo08cbf542009-04-14 10:54:53 +09002478long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
2479 unsigned int flags)
Tejun Heo59efec72008-11-26 12:03:55 +01002480{
Tejun Heo59efec72008-11-26 12:03:55 +01002481 struct fuse_file *ff = file->private_data;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002482 struct fuse_conn *fc = ff->fc;
Tejun Heo59efec72008-11-26 12:03:55 +01002483 struct fuse_ioctl_in inarg = {
2484 .fh = ff->fh,
2485 .cmd = cmd,
2486 .arg = arg,
2487 .flags = flags
2488 };
2489 struct fuse_ioctl_out outarg;
2490 struct fuse_req *req = NULL;
2491 struct page **pages = NULL;
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002492 struct iovec *iov_page = NULL;
Tejun Heo59efec72008-11-26 12:03:55 +01002493 struct iovec *in_iov = NULL, *out_iov = NULL;
2494 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002495 size_t in_size, out_size, transferred, c;
2496 int err, i;
2497 struct iov_iter ii;
Tejun Heo59efec72008-11-26 12:03:55 +01002498
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002499#if BITS_PER_LONG == 32
2500 inarg.flags |= FUSE_IOCTL_32BIT;
2501#else
2502 if (flags & FUSE_IOCTL_COMPAT)
2503 inarg.flags |= FUSE_IOCTL_32BIT;
2504#endif
2505
Tejun Heo59efec72008-11-26 12:03:55 +01002506 /* assume all the iovs returned by client always fits in a page */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002507 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
Tejun Heo59efec72008-11-26 12:03:55 +01002508
Tejun Heo59efec72008-11-26 12:03:55 +01002509 err = -ENOMEM;
Thomas Meyerc411cc82011-11-29 22:08:00 +01002510 pages = kcalloc(FUSE_MAX_PAGES_PER_REQ, sizeof(pages[0]), GFP_KERNEL);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002511 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
Tejun Heo59efec72008-11-26 12:03:55 +01002512 if (!pages || !iov_page)
2513 goto out;
2514
2515 /*
2516 * If restricted, initialize IO parameters as encoded in @cmd.
2517 * RETRY from server is not allowed.
2518 */
2519 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002520 struct iovec *iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002521
Miklos Szeredic9f0523d2008-12-02 14:49:42 +01002522 iov->iov_base = (void __user *)arg;
Tejun Heo59efec72008-11-26 12:03:55 +01002523 iov->iov_len = _IOC_SIZE(cmd);
2524
2525 if (_IOC_DIR(cmd) & _IOC_WRITE) {
2526 in_iov = iov;
2527 in_iovs = 1;
2528 }
2529
2530 if (_IOC_DIR(cmd) & _IOC_READ) {
2531 out_iov = iov;
2532 out_iovs = 1;
2533 }
2534 }
2535
2536 retry:
2537 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
2538 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
2539
2540 /*
2541 * Out data can be used either for actual out data or iovs,
2542 * make sure there always is at least one page.
2543 */
2544 out_size = max_t(size_t, out_size, PAGE_SIZE);
2545 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
2546
2547 /* make sure there are enough buffer pages and init request with them */
2548 err = -ENOMEM;
2549 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
2550 goto out;
2551 while (num_pages < max_pages) {
2552 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2553 if (!pages[num_pages])
2554 goto out;
2555 num_pages++;
2556 }
2557
Maxim Patlasov54b96672012-10-26 19:49:13 +04002558 req = fuse_get_req(fc, num_pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002559 if (IS_ERR(req)) {
2560 err = PTR_ERR(req);
2561 req = NULL;
2562 goto out;
2563 }
2564 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
2565 req->num_pages = num_pages;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04002566 fuse_page_descs_length_init(req, 0, req->num_pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002567
2568 /* okay, let's send it to the client */
2569 req->in.h.opcode = FUSE_IOCTL;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002570 req->in.h.nodeid = ff->nodeid;
Tejun Heo59efec72008-11-26 12:03:55 +01002571 req->in.numargs = 1;
2572 req->in.args[0].size = sizeof(inarg);
2573 req->in.args[0].value = &inarg;
2574 if (in_size) {
2575 req->in.numargs++;
2576 req->in.args[1].size = in_size;
2577 req->in.argpages = 1;
2578
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002579 err = -EFAULT;
2580 iov_iter_init(&ii, WRITE, in_iov, in_iovs, in_size);
2581 for (i = 0; iov_iter_count(&ii) && !WARN_ON(i >= num_pages); i++) {
2582 c = copy_page_from_iter(pages[i], 0, PAGE_SIZE, &ii);
2583 if (c != PAGE_SIZE && iov_iter_count(&ii))
2584 goto out;
2585 }
Tejun Heo59efec72008-11-26 12:03:55 +01002586 }
2587
2588 req->out.numargs = 2;
2589 req->out.args[0].size = sizeof(outarg);
2590 req->out.args[0].value = &outarg;
2591 req->out.args[1].size = out_size;
2592 req->out.argpages = 1;
2593 req->out.argvar = 1;
2594
Tejun Heob93f8582008-11-26 12:03:55 +01002595 fuse_request_send(fc, req);
Tejun Heo59efec72008-11-26 12:03:55 +01002596 err = req->out.h.error;
2597 transferred = req->out.args[1].size;
2598 fuse_put_request(fc, req);
2599 req = NULL;
2600 if (err)
2601 goto out;
2602
2603 /* did it ask for retry? */
2604 if (outarg.flags & FUSE_IOCTL_RETRY) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002605 void *vaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01002606
2607 /* no retry if in restricted mode */
2608 err = -EIO;
2609 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
2610 goto out;
2611
2612 in_iovs = outarg.in_iovs;
2613 out_iovs = outarg.out_iovs;
2614
2615 /*
2616 * Make sure things are in boundary, separate checks
2617 * are to protect against overflow.
2618 */
2619 err = -ENOMEM;
2620 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
2621 out_iovs > FUSE_IOCTL_MAX_IOV ||
2622 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
2623 goto out;
2624
Cong Wang2408f6e2011-11-25 23:14:30 +08002625 vaddr = kmap_atomic(pages[0]);
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002626 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002627 transferred, in_iovs + out_iovs,
2628 (flags & FUSE_IOCTL_COMPAT) != 0);
Cong Wang2408f6e2011-11-25 23:14:30 +08002629 kunmap_atomic(vaddr);
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002630 if (err)
2631 goto out;
Tejun Heo59efec72008-11-26 12:03:55 +01002632
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002633 in_iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002634 out_iov = in_iov + in_iovs;
2635
Miklos Szeredi75727772010-11-30 16:39:27 +01002636 err = fuse_verify_ioctl_iov(in_iov, in_iovs);
2637 if (err)
2638 goto out;
2639
2640 err = fuse_verify_ioctl_iov(out_iov, out_iovs);
2641 if (err)
2642 goto out;
2643
Tejun Heo59efec72008-11-26 12:03:55 +01002644 goto retry;
2645 }
2646
2647 err = -EIO;
2648 if (transferred > inarg.out_size)
2649 goto out;
2650
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002651 err = -EFAULT;
2652 iov_iter_init(&ii, READ, out_iov, out_iovs, transferred);
2653 for (i = 0; iov_iter_count(&ii) && !WARN_ON(i >= num_pages); i++) {
2654 c = copy_page_to_iter(pages[i], 0, PAGE_SIZE, &ii);
2655 if (c != PAGE_SIZE && iov_iter_count(&ii))
2656 goto out;
2657 }
2658 err = 0;
Tejun Heo59efec72008-11-26 12:03:55 +01002659 out:
2660 if (req)
2661 fuse_put_request(fc, req);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002662 free_page((unsigned long) iov_page);
Tejun Heo59efec72008-11-26 12:03:55 +01002663 while (num_pages)
2664 __free_page(pages[--num_pages]);
2665 kfree(pages);
2666
2667 return err ? err : outarg.result;
2668}
Tejun Heo08cbf542009-04-14 10:54:53 +09002669EXPORT_SYMBOL_GPL(fuse_do_ioctl);
Tejun Heo59efec72008-11-26 12:03:55 +01002670
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002671long fuse_ioctl_common(struct file *file, unsigned int cmd,
2672 unsigned long arg, unsigned int flags)
Miklos Szeredid36f2482009-04-28 16:56:39 +02002673{
Al Viro6131ffa2013-02-27 16:59:05 -05002674 struct inode *inode = file_inode(file);
Miklos Szeredid36f2482009-04-28 16:56:39 +02002675 struct fuse_conn *fc = get_fuse_conn(inode);
2676
Anatol Pomozovc2132c12013-01-14 22:30:00 -08002677 if (!fuse_allow_current_process(fc))
Miklos Szeredid36f2482009-04-28 16:56:39 +02002678 return -EACCES;
2679
2680 if (is_bad_inode(inode))
2681 return -EIO;
2682
2683 return fuse_do_ioctl(file, cmd, arg, flags);
2684}
2685
Tejun Heo59efec72008-11-26 12:03:55 +01002686static long fuse_file_ioctl(struct file *file, unsigned int cmd,
2687 unsigned long arg)
2688{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002689 return fuse_ioctl_common(file, cmd, arg, 0);
Tejun Heo59efec72008-11-26 12:03:55 +01002690}
2691
2692static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
2693 unsigned long arg)
2694{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002695 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
Tejun Heo59efec72008-11-26 12:03:55 +01002696}
2697
Tejun Heo95668a62008-11-26 12:03:55 +01002698/*
2699 * All files which have been polled are linked to RB tree
2700 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2701 * find the matching one.
2702 */
2703static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2704 struct rb_node **parent_out)
2705{
2706 struct rb_node **link = &fc->polled_files.rb_node;
2707 struct rb_node *last = NULL;
2708
2709 while (*link) {
2710 struct fuse_file *ff;
2711
2712 last = *link;
2713 ff = rb_entry(last, struct fuse_file, polled_node);
2714
2715 if (kh < ff->kh)
2716 link = &last->rb_left;
2717 else if (kh > ff->kh)
2718 link = &last->rb_right;
2719 else
2720 return link;
2721 }
2722
2723 if (parent_out)
2724 *parent_out = last;
2725 return link;
2726}
2727
2728/*
2729 * The file is about to be polled. Make sure it's on the polled_files
2730 * RB tree. Note that files once added to the polled_files tree are
2731 * not removed before the file is released. This is because a file
2732 * polled once is likely to be polled again.
2733 */
2734static void fuse_register_polled_file(struct fuse_conn *fc,
2735 struct fuse_file *ff)
2736{
2737 spin_lock(&fc->lock);
2738 if (RB_EMPTY_NODE(&ff->polled_node)) {
Rajat Jainf3846262014-02-05 15:24:57 -08002739 struct rb_node **link, *uninitialized_var(parent);
Tejun Heo95668a62008-11-26 12:03:55 +01002740
2741 link = fuse_find_polled_node(fc, ff->kh, &parent);
2742 BUG_ON(*link);
2743 rb_link_node(&ff->polled_node, parent, link);
2744 rb_insert_color(&ff->polled_node, &fc->polled_files);
2745 }
2746 spin_unlock(&fc->lock);
2747}
2748
Tejun Heo08cbf542009-04-14 10:54:53 +09002749unsigned fuse_file_poll(struct file *file, poll_table *wait)
Tejun Heo95668a62008-11-26 12:03:55 +01002750{
Tejun Heo95668a62008-11-26 12:03:55 +01002751 struct fuse_file *ff = file->private_data;
Miklos Szeredi797759a2009-04-28 16:56:41 +02002752 struct fuse_conn *fc = ff->fc;
Tejun Heo95668a62008-11-26 12:03:55 +01002753 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2754 struct fuse_poll_out outarg;
Miklos Szeredi70781872014-12-12 09:49:05 +01002755 FUSE_ARGS(args);
Tejun Heo95668a62008-11-26 12:03:55 +01002756 int err;
2757
2758 if (fc->no_poll)
2759 return DEFAULT_POLLMASK;
2760
2761 poll_wait(file, &ff->poll_wait, wait);
Enke Chen0415d292013-02-04 16:14:32 +01002762 inarg.events = (__u32)poll_requested_events(wait);
Tejun Heo95668a62008-11-26 12:03:55 +01002763
2764 /*
2765 * Ask for notification iff there's someone waiting for it.
2766 * The client may ignore the flag and always notify.
2767 */
2768 if (waitqueue_active(&ff->poll_wait)) {
2769 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2770 fuse_register_polled_file(fc, ff);
2771 }
2772
Miklos Szeredi70781872014-12-12 09:49:05 +01002773 args.in.h.opcode = FUSE_POLL;
2774 args.in.h.nodeid = ff->nodeid;
2775 args.in.numargs = 1;
2776 args.in.args[0].size = sizeof(inarg);
2777 args.in.args[0].value = &inarg;
2778 args.out.numargs = 1;
2779 args.out.args[0].size = sizeof(outarg);
2780 args.out.args[0].value = &outarg;
2781 err = fuse_simple_request(fc, &args);
Tejun Heo95668a62008-11-26 12:03:55 +01002782
2783 if (!err)
2784 return outarg.revents;
2785 if (err == -ENOSYS) {
2786 fc->no_poll = 1;
2787 return DEFAULT_POLLMASK;
2788 }
2789 return POLLERR;
2790}
Tejun Heo08cbf542009-04-14 10:54:53 +09002791EXPORT_SYMBOL_GPL(fuse_file_poll);
Tejun Heo95668a62008-11-26 12:03:55 +01002792
2793/*
2794 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2795 * wakes up the poll waiters.
2796 */
2797int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2798 struct fuse_notify_poll_wakeup_out *outarg)
2799{
2800 u64 kh = outarg->kh;
2801 struct rb_node **link;
2802
2803 spin_lock(&fc->lock);
2804
2805 link = fuse_find_polled_node(fc, kh, NULL);
2806 if (*link) {
2807 struct fuse_file *ff;
2808
2809 ff = rb_entry(*link, struct fuse_file, polled_node);
2810 wake_up_interruptible_sync(&ff->poll_wait);
2811 }
2812
2813 spin_unlock(&fc->lock);
2814 return 0;
2815}
2816
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002817static void fuse_do_truncate(struct file *file)
2818{
2819 struct inode *inode = file->f_mapping->host;
2820 struct iattr attr;
2821
2822 attr.ia_valid = ATTR_SIZE;
2823 attr.ia_size = i_size_read(inode);
2824
2825 attr.ia_file = file;
2826 attr.ia_valid |= ATTR_FILE;
2827
Jan Kara62490332016-05-26 17:12:41 +02002828 fuse_do_setattr(file_dentry(file), &attr, file);
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002829}
2830
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002831static inline loff_t fuse_round_up(loff_t off)
2832{
2833 return round_up(off, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
2834}
2835
Anand Avati4273b792012-02-17 12:46:25 -05002836static ssize_t
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07002837fuse_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Anand Avati4273b792012-02-17 12:46:25 -05002838{
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002839 DECLARE_COMPLETION_ONSTACK(wait);
Anand Avati4273b792012-02-17 12:46:25 -05002840 ssize_t ret = 0;
Miklos Szeredi60b9df72013-05-01 14:37:21 +02002841 struct file *file = iocb->ki_filp;
2842 struct fuse_file *ff = file->private_data;
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002843 bool async_dio = ff->fc->async_dio;
Anand Avati4273b792012-02-17 12:46:25 -05002844 loff_t pos = 0;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002845 struct inode *inode;
2846 loff_t i_size;
Al Viroa6cbcd42014-03-04 22:38:00 -05002847 size_t count = iov_iter_count(iter);
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07002848 loff_t offset = iocb->ki_pos;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002849 struct fuse_io_priv *io;
Anand Avati4273b792012-02-17 12:46:25 -05002850
Anand Avati4273b792012-02-17 12:46:25 -05002851 pos = offset;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002852 inode = file->f_mapping->host;
2853 i_size = i_size_read(inode);
Anand Avati4273b792012-02-17 12:46:25 -05002854
Omar Sandoval6f673762015-03-16 04:33:52 -07002855 if ((iov_iter_rw(iter) == READ) && (offset > i_size))
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00002856 return 0;
2857
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002858 /* optimization for short read */
Omar Sandoval6f673762015-03-16 04:33:52 -07002859 if (async_dio && iov_iter_rw(iter) != WRITE && offset + count > i_size) {
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002860 if (offset >= i_size)
2861 return 0;
Al Viro6b775b12015-04-07 15:06:19 -04002862 iov_iter_truncate(iter, fuse_round_up(i_size - offset));
2863 count = iov_iter_count(iter);
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002864 }
2865
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002866 io = kmalloc(sizeof(struct fuse_io_priv), GFP_KERNEL);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002867 if (!io)
2868 return -ENOMEM;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002869 spin_lock_init(&io->lock);
Seth Forshee744742d2016-03-11 10:35:34 -06002870 kref_init(&io->refcnt);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002871 io->reqs = 1;
2872 io->bytes = -1;
2873 io->size = 0;
2874 io->offset = offset;
Omar Sandoval6f673762015-03-16 04:33:52 -07002875 io->write = (iov_iter_rw(iter) == WRITE);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002876 io->err = 0;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002877 io->file = file;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002878 /*
2879 * By default, we want to optimize all I/Os with async request
Miklos Szeredi60b9df72013-05-01 14:37:21 +02002880 * submission to the client filesystem if supported.
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002881 */
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002882 io->async = async_dio;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002883 io->iocb = iocb;
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302884 io->blocking = is_sync_kiocb(iocb);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002885
2886 /*
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302887 * We cannot asynchronously extend the size of a file.
2888 * In such case the aio will behave exactly like sync io.
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002889 */
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302890 if ((offset + count > i_size) && iov_iter_rw(iter) == WRITE)
2891 io->blocking = true;
Anand Avati4273b792012-02-17 12:46:25 -05002892
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302893 if (io->async && io->blocking) {
Seth Forshee744742d2016-03-11 10:35:34 -06002894 /*
2895 * Additional reference to keep io around after
2896 * calling fuse_aio_complete()
2897 */
2898 kref_get(&io->refcnt);
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002899 io->done = &wait;
Seth Forshee744742d2016-03-11 10:35:34 -06002900 }
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002901
Omar Sandoval6f673762015-03-16 04:33:52 -07002902 if (iov_iter_rw(iter) == WRITE) {
Al Viro6b775b12015-04-07 15:06:19 -04002903 ret = fuse_direct_io(io, iter, &pos, FUSE_DIO_WRITE);
Al Viro812408f2015-03-30 22:15:58 -04002904 fuse_invalidate_attr(inode);
2905 } else {
Al Virod22a9432014-03-16 15:50:47 -04002906 ret = __fuse_direct_read(io, iter, &pos);
Al Viro812408f2015-03-30 22:15:58 -04002907 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002908
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002909 if (io->async) {
Lukas Czernerfdd93792018-11-09 14:51:46 +01002910 bool blocking = io->blocking;
2911
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002912 fuse_aio_complete(io, ret < 0 ? ret : 0, -1);
2913
2914 /* we have a non-extending, async request, so return */
Lukas Czernerfdd93792018-11-09 14:51:46 +01002915 if (!blocking)
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002916 return -EIOCBQUEUED;
2917
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002918 wait_for_completion(&wait);
2919 ret = fuse_get_res_by_io(io);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002920 }
2921
Seth Forshee744742d2016-03-11 10:35:34 -06002922 kref_put(&io->refcnt, fuse_io_release);
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002923
Omar Sandoval6f673762015-03-16 04:33:52 -07002924 if (iov_iter_rw(iter) == WRITE) {
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002925 if (ret > 0)
2926 fuse_write_update_size(inode, pos);
2927 else if (ret < 0 && offset + count > i_size)
2928 fuse_do_truncate(file);
2929 }
Anand Avati4273b792012-02-17 12:46:25 -05002930
2931 return ret;
2932}
2933
Miklos Szeredicdadb112012-11-10 16:55:56 +01002934static long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
2935 loff_t length)
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002936{
2937 struct fuse_file *ff = file->private_data;
Miklos Szeredi1c682712014-12-12 10:04:51 +01002938 struct inode *inode = file_inode(file);
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002939 struct fuse_inode *fi = get_fuse_inode(inode);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002940 struct fuse_conn *fc = ff->fc;
Miklos Szeredi70781872014-12-12 09:49:05 +01002941 FUSE_ARGS(args);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002942 struct fuse_fallocate_in inarg = {
2943 .fh = ff->fh,
2944 .offset = offset,
2945 .length = length,
2946 .mode = mode
2947 };
2948 int err;
Maxim Patlasov14c14412013-06-13 12:16:39 +04002949 bool lock_inode = !(mode & FALLOC_FL_KEEP_SIZE) ||
2950 (mode & FALLOC_FL_PUNCH_HOLE);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002951
Miklos Szeredi4adb8302014-04-28 14:19:21 +02002952 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2953 return -EOPNOTSUPP;
2954
Miklos Szeredi519c6042012-04-26 10:56:36 +02002955 if (fc->no_fallocate)
2956 return -EOPNOTSUPP;
2957
Maxim Patlasov14c14412013-06-13 12:16:39 +04002958 if (lock_inode) {
Al Viro59551022016-01-22 15:40:57 -05002959 inode_lock(inode);
Maxim Patlasovbde52782013-09-13 19:19:54 +04002960 if (mode & FALLOC_FL_PUNCH_HOLE) {
2961 loff_t endbyte = offset + length - 1;
2962 err = filemap_write_and_wait_range(inode->i_mapping,
2963 offset, endbyte);
2964 if (err)
2965 goto out;
2966
2967 fuse_sync_writes(inode);
2968 }
Brian Foster3634a632013-05-17 09:30:32 -04002969 }
2970
Liu Boeb607962019-04-18 04:04:41 +08002971 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
2972 offset + length > i_size_read(inode)) {
2973 err = inode_newsize_ok(inode, offset + length);
2974 if (err)
Miklos Szeredi4fb410b2019-05-27 11:42:07 +02002975 goto out;
Liu Boeb607962019-04-18 04:04:41 +08002976 }
2977
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002978 if (!(mode & FALLOC_FL_KEEP_SIZE))
2979 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
2980
Miklos Szeredi70781872014-12-12 09:49:05 +01002981 args.in.h.opcode = FUSE_FALLOCATE;
2982 args.in.h.nodeid = ff->nodeid;
2983 args.in.numargs = 1;
2984 args.in.args[0].size = sizeof(inarg);
2985 args.in.args[0].value = &inarg;
2986 err = fuse_simple_request(fc, &args);
Miklos Szeredi519c6042012-04-26 10:56:36 +02002987 if (err == -ENOSYS) {
2988 fc->no_fallocate = 1;
2989 err = -EOPNOTSUPP;
2990 }
Brian Fosterbee6c302013-05-17 15:27:34 -04002991 if (err)
2992 goto out;
2993
2994 /* we could have extended the file */
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04002995 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
2996 bool changed = fuse_write_update_size(inode, offset + length);
2997
Miklos Szeredi93d22692014-04-28 14:19:22 +02002998 if (changed && fc->writeback_cache)
2999 file_update_time(file);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04003000 }
Brian Fosterbee6c302013-05-17 15:27:34 -04003001
3002 if (mode & FALLOC_FL_PUNCH_HOLE)
3003 truncate_pagecache_range(inode, offset, offset + length - 1);
3004
3005 fuse_invalidate_attr(inode);
3006
Brian Foster3634a632013-05-17 09:30:32 -04003007out:
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04003008 if (!(mode & FALLOC_FL_KEEP_SIZE))
3009 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
3010
Maxim Patlasovbde52782013-09-13 19:19:54 +04003011 if (lock_inode)
Al Viro59551022016-01-22 15:40:57 -05003012 inode_unlock(inode);
Brian Foster3634a632013-05-17 09:30:32 -04003013
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003014 return err;
3015}
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003016
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08003017static const struct file_operations fuse_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07003018 .llseek = fuse_file_llseek,
Al Viro37c20f12014-04-02 14:47:09 -04003019 .read_iter = fuse_file_read_iter,
Al Viro84c3d552014-04-03 14:33:23 -04003020 .write_iter = fuse_file_write_iter,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003021 .mmap = fuse_file_mmap,
3022 .open = fuse_open,
3023 .flush = fuse_flush,
3024 .release = fuse_release,
3025 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07003026 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07003027 .flock = fuse_file_flock,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02003028 .splice_read = generic_file_splice_read,
Tejun Heo59efec72008-11-26 12:03:55 +01003029 .unlocked_ioctl = fuse_file_ioctl,
3030 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01003031 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003032 .fallocate = fuse_file_fallocate,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003033};
3034
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08003035static const struct file_operations fuse_direct_io_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07003036 .llseek = fuse_file_llseek,
Al Viro15316262015-03-30 22:08:36 -04003037 .read_iter = fuse_direct_read_iter,
Al Viro15316262015-03-30 22:08:36 -04003038 .write_iter = fuse_direct_write_iter,
Miklos Szeredifc280c92009-04-02 14:25:35 +02003039 .mmap = fuse_direct_mmap,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07003040 .open = fuse_open,
3041 .flush = fuse_flush,
3042 .release = fuse_release,
3043 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07003044 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07003045 .flock = fuse_file_flock,
Tejun Heo59efec72008-11-26 12:03:55 +01003046 .unlocked_ioctl = fuse_file_ioctl,
3047 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01003048 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003049 .fallocate = fuse_file_fallocate,
Miklos Szeredifc280c92009-04-02 14:25:35 +02003050 /* no splice_read */
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07003051};
3052
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07003053static const struct address_space_operations fuse_file_aops = {
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003054 .readpage = fuse_readpage,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003055 .writepage = fuse_writepage,
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04003056 .writepages = fuse_writepages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003057 .launder_page = fuse_launder_page,
Miklos Szeredidb50b962005-09-09 13:10:33 -07003058 .readpages = fuse_readpages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003059 .set_page_dirty = __set_page_dirty_nobuffers,
Miklos Szeredib2d22722006-12-06 20:35:51 -08003060 .bmap = fuse_bmap,
Anand Avati4273b792012-02-17 12:46:25 -05003061 .direct_IO = fuse_direct_IO,
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04003062 .write_begin = fuse_write_begin,
3063 .write_end = fuse_write_end,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003064};
3065
3066void fuse_init_file_inode(struct inode *inode)
3067{
Miklos Szeredi45323fb2005-09-09 13:10:37 -07003068 inode->i_fop = &fuse_file_operations;
3069 inode->i_data.a_ops = &fuse_file_aops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003070}