blob: a201fb0ac64f9cd7f978a82806167db6f9555aeb [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 Jurczyk68227c02017-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);
Elena Reshetova4e8c2eb2017-03-03 11:04:03 +020061 refcount_set(&ff->count, 1);
Tejun Heo6b2db282009-04-14 10:54:49 +090062 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 Szeredi267d8442017-02-22 20:08:25 +010078static struct fuse_file *fuse_file_get(struct fuse_file *ff)
Miklos Szeredic756e0a2007-10-16 23:31:00 -070079{
Elena Reshetova4e8c2eb2017-03-03 11:04:03 +020080 refcount_inc(&ff->count);
Miklos Szeredic756e0a2007-10-16 23:31:00 -070081 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{
Elena Reshetova4e8c2eb2017-03-03 11:04:03 +020091 if (refcount_dec_and_test(&ff->count)) {
Miklos Szeredic756e0a2007-10-16 23:31:00 -070092 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 Szeredi2e38bea2017-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 Szeredi267d8442017-02-22 20:08:25 +0100150 file->private_data = ff;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200151
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);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200181 if (ff->open_flags & FOPEN_NONSEEKABLE)
Tejun Heoa7c1b992008-10-16 16:08:57 +0200182 nonseekable_open(inode, file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800183 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
184 struct fuse_inode *fi = get_fuse_inode(inode);
185
186 spin_lock(&fc->lock);
187 fi->attr_version = ++fc->attr_version;
188 i_size_write(inode, 0);
189 spin_unlock(&fc->lock);
190 fuse_invalidate_attr(inode);
Maxim Patlasov75caeecd2014-04-28 14:19:22 +0200191 if (fc->writeback_cache)
192 file_update_time(file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800193 }
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +0400194 if ((file->f_mode & FMODE_WRITE) && fc->writeback_cache)
195 fuse_link_write_file(file);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800196}
197
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200198int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800199{
Tejun Heoacf99432008-11-26 12:03:55 +0100200 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700201 int err;
Maxim Patlasov75caeecd2014-04-28 14:19:22 +0200202 bool lock_inode = (file->f_flags & O_TRUNC) &&
203 fc->atomic_o_trunc &&
204 fc->writeback_cache;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700205
206 err = generic_file_open(inode, file);
207 if (err)
208 return err;
209
Maxim Patlasov75caeecd2014-04-28 14:19:22 +0200210 if (lock_inode)
Al Viro59551022016-01-22 15:40:57 -0500211 inode_lock(inode);
Maxim Patlasov75caeecd2014-04-28 14:19:22 +0200212
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200213 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700214
Maxim Patlasov75caeecd2014-04-28 14:19:22 +0200215 if (!err)
216 fuse_finish_open(inode, file);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200217
Maxim Patlasov75caeecd2014-04-28 14:19:22 +0200218 if (lock_inode)
Al Viro59551022016-01-22 15:40:57 -0500219 inode_unlock(inode);
Maxim Patlasov75caeecd2014-04-28 14:19:22 +0200220
221 return err;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700222}
223
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200224static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800225{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200226 struct fuse_conn *fc = ff->fc;
Miklos Szeredi33649c92006-06-25 05:48:52 -0700227 struct fuse_req *req = ff->reserved_req;
Miklos Szeredib57d4262008-02-06 01:38:39 -0800228 struct fuse_release_in *inarg = &req->misc.release.in;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700229
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200230 spin_lock(&fc->lock);
231 list_del(&ff->write_entry);
232 if (!RB_EMPTY_NODE(&ff->polled_node))
233 rb_erase(&ff->polled_node, &fc->polled_files);
234 spin_unlock(&fc->lock);
235
Bryan Green357ccf22011-03-01 16:43:52 -0800236 wake_up_interruptible_all(&ff->poll_wait);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200237
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700238 inarg->fh = ff->fh;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800239 inarg->flags = flags;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700240 req->in.h.opcode = opcode;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200241 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700242 req->in.numargs = 1;
243 req->in.args[0].size = sizeof(struct fuse_release_in);
244 req->in.args[0].value = inarg;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800245}
246
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200247void fuse_release_common(struct file *file, int opcode)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800248{
Miklos Szeredi9a87ad32017-02-22 20:08:25 +0100249 struct fuse_file *ff = file->private_data;
250 struct fuse_req *req = ff->reserved_req;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -0700251
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200252 fuse_prepare_release(ff, file->f_flags, opcode);
Tejun Heo95668a62008-11-26 12:03:55 +0100253
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200254 if (ff->flock) {
255 struct fuse_release_in *inarg = &req->misc.release.in;
256 inarg->release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
257 inarg->lock_owner = fuse_lock_owner_id(ff->fc,
258 (fl_owner_t) file);
259 }
Miklos Szeredibaebccb2014-12-12 09:49:04 +0100260 /* Hold inode until release is finished */
261 req->misc.release.inode = igrab(file_inode(file));
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700262
Tejun Heo6b2db282009-04-14 10:54:49 +0900263 /*
264 * Normally this will send the RELEASE request, however if
265 * some asynchronous READ or WRITE requests are outstanding,
266 * the sending will be delayed.
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100267 *
268 * Make the release synchronous if this is a fuseblk mount,
269 * synchronous RELEASE is allowed (and desirable) in this case
270 * because the server can be trusted not to screw up.
Tejun Heo6b2db282009-04-14 10:54:49 +0900271 */
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100272 fuse_file_put(ff, ff->fc->destroy_req != NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700273}
274
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700275static int fuse_open(struct inode *inode, struct file *file)
276{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200277 return fuse_open_common(inode, file, false);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700278}
279
280static int fuse_release(struct inode *inode, struct file *file)
281{
Pavel Emelyanove7cc133c2013-10-10 17:19:06 +0400282 struct fuse_conn *fc = get_fuse_conn(inode);
283
284 /* see fuse_vma_close() for !writeback_cache case */
285 if (fc->writeback_cache)
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200286 write_inode_now(inode, 1);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400287
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200288 fuse_release_common(file, FUSE_RELEASE);
289
290 /* return value is ignored by VFS */
291 return 0;
292}
293
294void fuse_sync_release(struct fuse_file *ff, int flags)
295{
Elena Reshetova4e8c2eb2017-03-03 11:04:03 +0200296 WARN_ON(refcount_read(&ff->count) > 1);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200297 fuse_prepare_release(ff, flags, FUSE_RELEASE);
Miklos Szeredi267d8442017-02-22 20:08:25 +0100298 /*
299 * iput(NULL) is a no-op and since the refcount is 1 and everything's
300 * synchronous, we are fine with not doing igrab() here"
301 */
302 fuse_file_put(ff, true);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700303}
Tejun Heo08cbf542009-04-14 10:54:53 +0900304EXPORT_SYMBOL_GPL(fuse_sync_release);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700305
Miklos Szeredi71421252006-06-25 05:48:52 -0700306/*
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700307 * Scramble the ID space with XTEA, so that the value of the files_struct
308 * pointer is not exposed to userspace.
Miklos Szeredi71421252006-06-25 05:48:52 -0700309 */
Miklos Szeredif3332112007-10-18 03:07:04 -0700310u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
Miklos Szeredi71421252006-06-25 05:48:52 -0700311{
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700312 u32 *k = fc->scramble_key;
313 u64 v = (unsigned long) id;
314 u32 v0 = v;
315 u32 v1 = v >> 32;
316 u32 sum = 0;
317 int i;
318
319 for (i = 0; i < 32; i++) {
320 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
321 sum += 0x9E3779B9;
322 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
323 }
324
325 return (u64) v0 + ((u64) v1 << 32);
Miklos Szeredi71421252006-06-25 05:48:52 -0700326}
327
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700328/*
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400329 * Check if any page in a range is under writeback
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700330 *
331 * This is currently done by walking the list of writepage requests
332 * for the inode, which can be pretty inefficient.
333 */
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400334static bool fuse_range_is_writeback(struct inode *inode, pgoff_t idx_from,
335 pgoff_t idx_to)
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700336{
337 struct fuse_conn *fc = get_fuse_conn(inode);
338 struct fuse_inode *fi = get_fuse_inode(inode);
339 struct fuse_req *req;
340 bool found = false;
341
342 spin_lock(&fc->lock);
343 list_for_each_entry(req, &fi->writepages, writepages_entry) {
344 pgoff_t curr_index;
345
346 BUG_ON(req->inode != inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300347 curr_index = req->misc.write.in.offset >> PAGE_SHIFT;
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400348 if (idx_from < curr_index + req->num_pages &&
349 curr_index <= idx_to) {
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700350 found = true;
351 break;
352 }
353 }
354 spin_unlock(&fc->lock);
355
356 return found;
357}
358
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400359static inline bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
360{
361 return fuse_range_is_writeback(inode, index, index);
362}
363
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700364/*
365 * Wait for page writeback to be completed.
366 *
367 * Since fuse doesn't rely on the VM writeback tracking, this has to
368 * use some other means.
369 */
370static int fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
371{
372 struct fuse_inode *fi = get_fuse_inode(inode);
373
374 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
375 return 0;
376}
377
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400378/*
379 * Wait for all pending writepages on the inode to finish.
380 *
381 * This is currently done by blocking further writes with FUSE_NOWRITE
382 * and waiting for all sent writes to complete.
383 *
384 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
385 * could conflict with truncation.
386 */
387static void fuse_sync_writes(struct inode *inode)
388{
389 fuse_set_nowrite(inode);
390 fuse_release_nowrite(inode);
391}
392
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -0700393static int fuse_flush(struct file *file, fl_owner_t id)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700394{
Al Viro6131ffa2013-02-27 16:59:05 -0500395 struct inode *inode = file_inode(file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700396 struct fuse_conn *fc = get_fuse_conn(inode);
397 struct fuse_file *ff = file->private_data;
398 struct fuse_req *req;
399 struct fuse_flush_in inarg;
400 int err;
401
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800402 if (is_bad_inode(inode))
403 return -EIO;
404
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700405 if (fc->no_flush)
406 return 0;
407
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200408 err = write_inode_now(inode, 1);
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400409 if (err)
410 return err;
411
Al Viro59551022016-01-22 15:40:57 -0500412 inode_lock(inode);
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400413 fuse_sync_writes(inode);
Al Viro59551022016-01-22 15:40:57 -0500414 inode_unlock(inode);
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400415
Miklos Szeredi4a7f4e82016-07-29 14:10:57 +0200416 err = filemap_check_errors(file->f_mapping);
Maxim Patlasov9ebce592016-07-19 18:12:26 -0700417 if (err)
418 return err;
419
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400420 req = fuse_get_req_nofail_nopages(fc, file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700421 memset(&inarg, 0, sizeof(inarg));
422 inarg.fh = ff->fh;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700423 inarg.lock_owner = fuse_lock_owner_id(fc, id);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700424 req->in.h.opcode = FUSE_FLUSH;
425 req->in.h.nodeid = get_node_id(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700426 req->in.numargs = 1;
427 req->in.args[0].size = sizeof(inarg);
428 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200429 __set_bit(FR_FORCE, &req->flags);
Tejun Heob93f8582008-11-26 12:03:55 +0100430 fuse_request_send(fc, req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700431 err = req->out.h.error;
432 fuse_put_request(fc, req);
433 if (err == -ENOSYS) {
434 fc->no_flush = 1;
435 err = 0;
436 }
437 return err;
438}
439
Josef Bacik02c24a82011-07-16 20:44:56 -0400440int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
441 int datasync, int isdir)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700442{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200443 struct inode *inode = file->f_mapping->host;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700444 struct fuse_conn *fc = get_fuse_conn(inode);
445 struct fuse_file *ff = file->private_data;
Miklos Szeredi70781872014-12-12 09:49:05 +0100446 FUSE_ARGS(args);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700447 struct fuse_fsync_in inarg;
448 int err;
449
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800450 if (is_bad_inode(inode))
451 return -EIO;
452
Al Viro59551022016-01-22 15:40:57 -0500453 inode_lock(inode);
Josef Bacik02c24a82011-07-16 20:44:56 -0400454
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700455 /*
456 * Start writeback against all dirty pages of the inode, then
457 * wait for all outstanding writes, before sending the FSYNC
458 * request.
459 */
Jeff Layton7e51fe12017-07-22 09:27:43 -0400460 err = file_write_and_wait_range(file, start, end);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700461 if (err)
Josef Bacik02c24a82011-07-16 20:44:56 -0400462 goto out;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700463
464 fuse_sync_writes(inode);
Alexey Kuznetsovac7f0522016-07-19 12:48:01 -0700465
466 /*
467 * Due to implementation of fuse writeback
Jeff Layton7e51fe12017-07-22 09:27:43 -0400468 * file_write_and_wait_range() does not catch errors.
Alexey Kuznetsovac7f0522016-07-19 12:48:01 -0700469 * We have to do this directly after fuse_sync_writes()
470 */
Jeff Layton7e51fe12017-07-22 09:27:43 -0400471 err = file_check_and_advance_wb_err(file);
Alexey Kuznetsovac7f0522016-07-19 12:48:01 -0700472 if (err)
473 goto out;
474
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200475 err = sync_inode_metadata(inode, 1);
476 if (err)
477 goto out;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700478
Miklos Szeredi22401e72014-04-28 14:19:23 +0200479 if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
480 goto out;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400481
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700482 memset(&inarg, 0, sizeof(inarg));
483 inarg.fh = ff->fh;
484 inarg.fsync_flags = datasync ? 1 : 0;
Miklos Szeredi70781872014-12-12 09:49:05 +0100485 args.in.h.opcode = isdir ? FUSE_FSYNCDIR : FUSE_FSYNC;
486 args.in.h.nodeid = get_node_id(inode);
487 args.in.numargs = 1;
488 args.in.args[0].size = sizeof(inarg);
489 args.in.args[0].value = &inarg;
490 err = fuse_simple_request(fc, &args);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700491 if (err == -ENOSYS) {
Miklos Szeredi82547982005-09-09 13:10:38 -0700492 if (isdir)
493 fc->no_fsyncdir = 1;
494 else
495 fc->no_fsync = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700496 err = 0;
497 }
Josef Bacik02c24a82011-07-16 20:44:56 -0400498out:
Al Viro59551022016-01-22 15:40:57 -0500499 inode_unlock(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700500 return err;
501}
502
Josef Bacik02c24a82011-07-16 20:44:56 -0400503static int fuse_fsync(struct file *file, loff_t start, loff_t end,
504 int datasync)
Miklos Szeredi82547982005-09-09 13:10:38 -0700505{
Josef Bacik02c24a82011-07-16 20:44:56 -0400506 return fuse_fsync_common(file, start, end, datasync, 0);
Miklos Szeredi82547982005-09-09 13:10:38 -0700507}
508
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200509void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
510 size_t count, int opcode)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700511{
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700512 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredia6643092007-11-28 16:22:00 -0800513 struct fuse_file *ff = file->private_data;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700514
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800515 inarg->fh = ff->fh;
516 inarg->offset = pos;
517 inarg->size = count;
Miklos Szeredia6643092007-11-28 16:22:00 -0800518 inarg->flags = file->f_flags;
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800519 req->in.h.opcode = opcode;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200520 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700521 req->in.numargs = 1;
522 req->in.args[0].size = sizeof(struct fuse_read_in);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800523 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700524 req->out.argvar = 1;
525 req->out.numargs = 1;
526 req->out.args[0].size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700527}
528
Miklos Szeredi8fba54a2016-08-24 18:17:04 +0200529static void fuse_release_user_pages(struct fuse_req *req, bool should_dirty)
Maxim Patlasov187c5c32012-12-14 19:20:25 +0400530{
531 unsigned i;
532
533 for (i = 0; i < req->num_pages; i++) {
534 struct page *page = req->pages[i];
Miklos Szeredi8fba54a2016-08-24 18:17:04 +0200535 if (should_dirty)
Maxim Patlasov187c5c32012-12-14 19:20:25 +0400536 set_page_dirty_lock(page);
537 put_page(page);
538 }
539}
540
Seth Forshee744742d2016-03-11 10:35:34 -0600541static void fuse_io_release(struct kref *kref)
542{
543 kfree(container_of(kref, struct fuse_io_priv, refcnt));
544}
545
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100546static ssize_t fuse_get_res_by_io(struct fuse_io_priv *io)
547{
548 if (io->err)
549 return io->err;
550
551 if (io->bytes >= 0 && io->write)
552 return -EIO;
553
554 return io->bytes < 0 ? io->size : io->bytes;
555}
556
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400557/**
558 * In case of short read, the caller sets 'pos' to the position of
559 * actual end of fuse request in IO request. Otherwise, if bytes_requested
560 * == bytes_transferred or rw == WRITE, the caller sets 'pos' to -1.
561 *
562 * An example:
563 * User requested DIO read of 64K. It was splitted into two 32K fuse requests,
564 * both submitted asynchronously. The first of them was ACKed by userspace as
565 * fully completed (req->out.args[0].size == 32K) resulting in pos == -1. The
566 * second request was ACKed as short, e.g. only 1K was read, resulting in
567 * pos == 33K.
568 *
569 * Thus, when all fuse requests are completed, the minimal non-negative 'pos'
570 * will be equal to the length of the longest contiguous fragment of
571 * transferred data starting from the beginning of IO request.
572 */
573static void fuse_aio_complete(struct fuse_io_priv *io, int err, ssize_t pos)
574{
575 int left;
576
577 spin_lock(&io->lock);
578 if (err)
579 io->err = io->err ? : err;
580 else if (pos >= 0 && (io->bytes < 0 || pos < io->bytes))
581 io->bytes = pos;
582
583 left = --io->reqs;
Ashish Sangwan7879c4e2016-04-07 17:18:11 +0530584 if (!left && io->blocking)
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100585 complete(io->done);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400586 spin_unlock(&io->lock);
587
Ashish Sangwan7879c4e2016-04-07 17:18:11 +0530588 if (!left && !io->blocking) {
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100589 ssize_t res = fuse_get_res_by_io(io);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400590
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100591 if (res >= 0) {
592 struct inode *inode = file_inode(io->iocb->ki_filp);
593 struct fuse_conn *fc = get_fuse_conn(inode);
594 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400595
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100596 spin_lock(&fc->lock);
597 fi->attr_version = ++fc->attr_version;
598 spin_unlock(&fc->lock);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400599 }
600
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100601 io->iocb->ki_complete(io->iocb, res, 0);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400602 }
Seth Forshee744742d2016-03-11 10:35:34 -0600603
604 kref_put(&io->refcnt, fuse_io_release);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400605}
606
607static void fuse_aio_complete_req(struct fuse_conn *fc, struct fuse_req *req)
608{
609 struct fuse_io_priv *io = req->io;
610 ssize_t pos = -1;
611
Ashish Samant61c12b42017-07-12 19:26:58 -0700612 fuse_release_user_pages(req, io->should_dirty);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400613
614 if (io->write) {
615 if (req->misc.write.in.size != req->misc.write.out.size)
616 pos = req->misc.write.in.offset - io->offset +
617 req->misc.write.out.size;
618 } else {
619 if (req->misc.read.in.size != req->out.args[0].size)
620 pos = req->misc.read.in.offset - io->offset +
621 req->out.args[0].size;
622 }
623
624 fuse_aio_complete(io, req->out.h.error, pos);
625}
626
627static size_t fuse_async_req_send(struct fuse_conn *fc, struct fuse_req *req,
628 size_t num_bytes, struct fuse_io_priv *io)
629{
630 spin_lock(&io->lock);
Seth Forshee744742d2016-03-11 10:35:34 -0600631 kref_get(&io->refcnt);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400632 io->size += num_bytes;
633 io->reqs++;
634 spin_unlock(&io->lock);
635
636 req->io = io;
637 req->end = fuse_aio_complete_req;
638
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400639 __fuse_get_request(req);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400640 fuse_request_send_background(fc, req);
641
642 return num_bytes;
643}
644
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400645static size_t fuse_send_read(struct fuse_req *req, struct fuse_io_priv *io,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200646 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700647{
Miklos Szeredie1c0eec2017-09-12 16:57:53 +0200648 struct file *file = io->iocb->ki_filp;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200649 struct fuse_file *ff = file->private_data;
650 struct fuse_conn *fc = ff->fc;
Miklos Szeredif3332112007-10-18 03:07:04 -0700651
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200652 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredif3332112007-10-18 03:07:04 -0700653 if (owner != NULL) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700654 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredif3332112007-10-18 03:07:04 -0700655
656 inarg->read_flags |= FUSE_READ_LOCKOWNER;
657 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
658 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400659
660 if (io->async)
661 return fuse_async_req_send(fc, req, count, io);
662
Tejun Heob93f8582008-11-26 12:03:55 +0100663 fuse_request_send(fc, req);
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800664 return req->out.args[0].size;
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700665}
666
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700667static void fuse_read_update_size(struct inode *inode, loff_t size,
668 u64 attr_ver)
669{
670 struct fuse_conn *fc = get_fuse_conn(inode);
671 struct fuse_inode *fi = get_fuse_inode(inode);
672
673 spin_lock(&fc->lock);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +0400674 if (attr_ver == fi->attr_version && size < inode->i_size &&
675 !test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700676 fi->attr_version = ++fc->attr_version;
677 i_size_write(inode, size);
678 }
679 spin_unlock(&fc->lock);
680}
681
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400682static void fuse_short_read(struct fuse_req *req, struct inode *inode,
683 u64 attr_ver)
684{
685 size_t num_read = req->out.args[0].size;
Pavel Emelyanov83732002013-10-10 17:10:46 +0400686 struct fuse_conn *fc = get_fuse_conn(inode);
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400687
Pavel Emelyanov83732002013-10-10 17:10:46 +0400688 if (fc->writeback_cache) {
689 /*
690 * A hole in a file. Some data after the hole are in page cache,
691 * but have not reached the client fs yet. So, the hole is not
692 * present there.
693 */
694 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300695 int start_idx = num_read >> PAGE_SHIFT;
696 size_t off = num_read & (PAGE_SIZE - 1);
Pavel Emelyanov83732002013-10-10 17:10:46 +0400697
698 for (i = start_idx; i < req->num_pages; i++) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300699 zero_user_segment(req->pages[i], off, PAGE_SIZE);
Pavel Emelyanov83732002013-10-10 17:10:46 +0400700 off = 0;
701 }
702 } else {
703 loff_t pos = page_offset(req->pages[0]) + num_read;
704 fuse_read_update_size(inode, pos, attr_ver);
705 }
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400706}
707
Maxim Patlasov482fce52013-10-10 17:11:25 +0400708static int fuse_do_readpage(struct file *file, struct page *page)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700709{
Miklos Szeredie1c0eec2017-09-12 16:57:53 +0200710 struct kiocb iocb;
711 struct fuse_io_priv io;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700712 struct inode *inode = page->mapping->host;
713 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800714 struct fuse_req *req;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700715 size_t num_read;
716 loff_t pos = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300717 size_t count = PAGE_SIZE;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700718 u64 attr_ver;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800719 int err;
720
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700721 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300722 * Page writeback can extend beyond the lifetime of the
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700723 * page-cache page, so make sure we read a properly synced
724 * page.
725 */
726 fuse_wait_on_page_writeback(inode, page->index);
727
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400728 req = fuse_get_req(fc, 1);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700729 if (IS_ERR(req))
Maxim Patlasov482fce52013-10-10 17:11:25 +0400730 return PTR_ERR(req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700731
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700732 attr_ver = fuse_get_attr_version(fc);
733
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700734 req->out.page_zeroing = 1;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200735 req->out.argpages = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700736 req->num_pages = 1;
737 req->pages[0] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400738 req->page_descs[0].length = count;
Miklos Szeredie1c0eec2017-09-12 16:57:53 +0200739 init_sync_kiocb(&iocb, file);
740 io = (struct fuse_io_priv) FUSE_IO_PRIV_SYNC(&iocb);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400741 num_read = fuse_send_read(req, &io, pos, count, NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700742 err = req->out.h.error;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700743
744 if (!err) {
745 /*
746 * Short read means EOF. If file size is larger, truncate it
747 */
748 if (num_read < count)
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400749 fuse_short_read(req, inode, attr_ver);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700750
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700751 SetPageUptodate(page);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700752 }
753
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400754 fuse_put_request(fc, req);
Maxim Patlasov482fce52013-10-10 17:11:25 +0400755
756 return err;
757}
758
759static int fuse_readpage(struct file *file, struct page *page)
760{
761 struct inode *inode = page->mapping->host;
762 int err;
763
764 err = -EIO;
765 if (is_bad_inode(inode))
766 goto out;
767
768 err = fuse_do_readpage(file, page);
Andrew Gallagher451418f2013-11-05 03:55:43 -0800769 fuse_invalidate_atime(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700770 out:
771 unlock_page(page);
772 return err;
773}
774
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800775static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredidb50b962005-09-09 13:10:33 -0700776{
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800777 int i;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700778 size_t count = req->misc.read.in.size;
779 size_t num_read = req->out.args[0].size;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200780 struct address_space *mapping = NULL;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800781
Miklos Szeredice534fb2010-05-25 15:06:07 +0200782 for (i = 0; mapping == NULL && i < req->num_pages; i++)
783 mapping = req->pages[i]->mapping;
784
785 if (mapping) {
786 struct inode *inode = mapping->host;
787
788 /*
789 * Short read means EOF. If file size is larger, truncate it
790 */
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400791 if (!req->out.h.error && num_read < count)
792 fuse_short_read(req, inode, req->misc.read.attr_ver);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200793
Andrew Gallagher451418f2013-11-05 03:55:43 -0800794 fuse_invalidate_atime(inode);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700795 }
796
Miklos Szeredidb50b962005-09-09 13:10:33 -0700797 for (i = 0; i < req->num_pages; i++) {
798 struct page *page = req->pages[i];
799 if (!req->out.h.error)
800 SetPageUptodate(page);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800801 else
802 SetPageError(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700803 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300804 put_page(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700805 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700806 if (req->ff)
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100807 fuse_file_put(req->ff, false);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800808}
809
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200810static void fuse_send_readpages(struct fuse_req *req, struct file *file)
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800811{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200812 struct fuse_file *ff = file->private_data;
813 struct fuse_conn *fc = ff->fc;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800814 loff_t pos = page_offset(req->pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300815 size_t count = req->num_pages << PAGE_SHIFT;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200816
817 req->out.argpages = 1;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800818 req->out.page_zeroing = 1;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200819 req->out.page_replace = 1;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200820 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700821 req->misc.read.attr_ver = fuse_get_attr_version(fc);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800822 if (fc->async_read) {
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700823 req->ff = fuse_file_get(ff);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800824 req->end = fuse_readpages_end;
Tejun Heob93f8582008-11-26 12:03:55 +0100825 fuse_request_send_background(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800826 } else {
Tejun Heob93f8582008-11-26 12:03:55 +0100827 fuse_request_send(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800828 fuse_readpages_end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100829 fuse_put_request(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800830 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700831}
832
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700833struct fuse_fill_data {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700834 struct fuse_req *req;
Miklos Szeredia6643092007-11-28 16:22:00 -0800835 struct file *file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700836 struct inode *inode;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400837 unsigned nr_pages;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700838};
839
840static int fuse_readpages_fill(void *_data, struct page *page)
841{
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700842 struct fuse_fill_data *data = _data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700843 struct fuse_req *req = data->req;
844 struct inode *inode = data->inode;
845 struct fuse_conn *fc = get_fuse_conn(inode);
846
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700847 fuse_wait_on_page_writeback(inode, page->index);
848
Miklos Szeredidb50b962005-09-09 13:10:33 -0700849 if (req->num_pages &&
850 (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300851 (req->num_pages + 1) * PAGE_SIZE > fc->max_read ||
Miklos Szeredidb50b962005-09-09 13:10:33 -0700852 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400853 int nr_alloc = min_t(unsigned, data->nr_pages,
854 FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200855 fuse_send_readpages(req, data->file);
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400856 if (fc->async_read)
857 req = fuse_get_req_for_background(fc, nr_alloc);
858 else
859 req = fuse_get_req(fc, nr_alloc);
860
861 data->req = req;
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700862 if (IS_ERR(req)) {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700863 unlock_page(page);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700864 return PTR_ERR(req);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700865 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700866 }
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400867
868 if (WARN_ON(req->num_pages >= req->max_pages)) {
869 fuse_put_request(fc, req);
870 return -EIO;
871 }
872
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300873 get_page(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700874 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400875 req->page_descs[req->num_pages].length = PAGE_SIZE;
Miklos Szeredi1729a162008-11-26 12:03:54 +0100876 req->num_pages++;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400877 data->nr_pages--;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700878 return 0;
879}
880
881static int fuse_readpages(struct file *file, struct address_space *mapping,
882 struct list_head *pages, unsigned nr_pages)
883{
884 struct inode *inode = mapping->host;
885 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700886 struct fuse_fill_data data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700887 int err;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400888 int nr_alloc = min_t(unsigned, nr_pages, FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800889
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700890 err = -EIO;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800891 if (is_bad_inode(inode))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800892 goto out;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800893
Miklos Szeredia6643092007-11-28 16:22:00 -0800894 data.file = file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700895 data.inode = inode;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400896 if (fc->async_read)
897 data.req = fuse_get_req_for_background(fc, nr_alloc);
898 else
899 data.req = fuse_get_req(fc, nr_alloc);
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400900 data.nr_pages = nr_pages;
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700901 err = PTR_ERR(data.req);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700902 if (IS_ERR(data.req))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800903 goto out;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700904
905 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700906 if (!err) {
907 if (data.req->num_pages)
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200908 fuse_send_readpages(data.req, file);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700909 else
910 fuse_put_request(fc, data.req);
911 }
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800912out:
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700913 return err;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700914}
915
Al Viro37c20f12014-04-02 14:47:09 -0400916static ssize_t fuse_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800917{
918 struct inode *inode = iocb->ki_filp->f_mapping->host;
Brian Fostera8894272012-07-16 15:23:50 -0400919 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800920
Brian Fostera8894272012-07-16 15:23:50 -0400921 /*
922 * In auto invalidate mode, always update attributes on read.
923 * Otherwise, only update if we attempt to read past EOF (to ensure
924 * i_size is up to date).
925 */
926 if (fc->auto_inval_data ||
Al Viro37c20f12014-04-02 14:47:09 -0400927 (iocb->ki_pos + iov_iter_count(to) > i_size_read(inode))) {
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800928 int err;
Miklos Szeredi5b97eea2017-09-12 16:57:54 +0200929 err = fuse_update_attributes(inode, iocb->ki_filp);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800930 if (err)
931 return err;
932 }
933
Al Viro37c20f12014-04-02 14:47:09 -0400934 return generic_file_read_iter(iocb, to);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800935}
936
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200937static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200938 loff_t pos, size_t count)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700939{
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700940 struct fuse_write_in *inarg = &req->misc.write.in;
941 struct fuse_write_out *outarg = &req->misc.write.out;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700942
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700943 inarg->fh = ff->fh;
944 inarg->offset = pos;
945 inarg->size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700946 req->in.h.opcode = FUSE_WRITE;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200947 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700948 req->in.numargs = 2;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200949 if (ff->fc->minor < 9)
Miklos Szeredif3332112007-10-18 03:07:04 -0700950 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
951 else
952 req->in.args[0].size = sizeof(struct fuse_write_in);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700953 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700954 req->in.args[1].size = count;
955 req->out.numargs = 1;
956 req->out.args[0].size = sizeof(struct fuse_write_out);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700957 req->out.args[0].value = outarg;
958}
959
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400960static size_t fuse_send_write(struct fuse_req *req, struct fuse_io_priv *io,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200961 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700962{
Miklos Szeredie1c0eec2017-09-12 16:57:53 +0200963 struct kiocb *iocb = io->iocb;
964 struct file *file = iocb->ki_filp;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200965 struct fuse_file *ff = file->private_data;
966 struct fuse_conn *fc = ff->fc;
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200967 struct fuse_write_in *inarg = &req->misc.write.in;
968
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200969 fuse_write_fill(req, ff, pos, count);
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200970 inarg->flags = file->f_flags;
Miklos Szeredie1c0eec2017-09-12 16:57:53 +0200971 if (iocb->ki_flags & IOCB_DSYNC)
972 inarg->flags |= O_DSYNC;
973 if (iocb->ki_flags & IOCB_SYNC)
974 inarg->flags |= O_SYNC;
Miklos Szeredif3332112007-10-18 03:07:04 -0700975 if (owner != NULL) {
Miklos Szeredif3332112007-10-18 03:07:04 -0700976 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
977 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
978 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400979
980 if (io->async)
981 return fuse_async_req_send(fc, req, count, io);
982
Tejun Heob93f8582008-11-26 12:03:55 +0100983 fuse_request_send(fc, req);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700984 return req->misc.write.out.size;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700985}
986
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400987bool fuse_write_update_size(struct inode *inode, loff_t pos)
Miklos Szeredi854512e2008-04-30 00:54:41 -0700988{
989 struct fuse_conn *fc = get_fuse_conn(inode);
990 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400991 bool ret = false;
Miklos Szeredi854512e2008-04-30 00:54:41 -0700992
993 spin_lock(&fc->lock);
994 fi->attr_version = ++fc->attr_version;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400995 if (pos > inode->i_size) {
Miklos Szeredi854512e2008-04-30 00:54:41 -0700996 i_size_write(inode, pos);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400997 ret = true;
998 }
Miklos Szeredi854512e2008-04-30 00:54:41 -0700999 spin_unlock(&fc->lock);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001000
1001 return ret;
Miklos Szeredi854512e2008-04-30 00:54:41 -07001002}
1003
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001004static size_t fuse_send_write_pages(struct fuse_req *req, struct kiocb *iocb,
Nick Pigginea9b9902008-04-30 00:54:42 -07001005 struct inode *inode, loff_t pos,
1006 size_t count)
1007{
1008 size_t res;
1009 unsigned offset;
1010 unsigned i;
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001011 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb);
Nick Pigginea9b9902008-04-30 00:54:42 -07001012
1013 for (i = 0; i < req->num_pages; i++)
1014 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
1015
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001016 res = fuse_send_write(req, &io, pos, count, NULL);
Nick Pigginea9b9902008-04-30 00:54:42 -07001017
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001018 offset = req->page_descs[0].offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001019 count = res;
1020 for (i = 0; i < req->num_pages; i++) {
1021 struct page *page = req->pages[i];
1022
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001023 if (!req->out.h.error && !offset && count >= PAGE_SIZE)
Nick Pigginea9b9902008-04-30 00:54:42 -07001024 SetPageUptodate(page);
1025
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001026 if (count > PAGE_SIZE - offset)
1027 count -= PAGE_SIZE - offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001028 else
1029 count = 0;
1030 offset = 0;
1031
1032 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001033 put_page(page);
Nick Pigginea9b9902008-04-30 00:54:42 -07001034 }
1035
1036 return res;
1037}
1038
1039static ssize_t fuse_fill_write_pages(struct fuse_req *req,
1040 struct address_space *mapping,
1041 struct iov_iter *ii, loff_t pos)
1042{
1043 struct fuse_conn *fc = get_fuse_conn(mapping->host);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001044 unsigned offset = pos & (PAGE_SIZE - 1);
Nick Pigginea9b9902008-04-30 00:54:42 -07001045 size_t count = 0;
1046 int err;
1047
Miklos Szeredif4975c62009-04-02 14:25:34 +02001048 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001049 req->page_descs[0].offset = offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001050
1051 do {
1052 size_t tmp;
1053 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001054 pgoff_t index = pos >> PAGE_SHIFT;
1055 size_t bytes = min_t(size_t, PAGE_SIZE - offset,
Nick Pigginea9b9902008-04-30 00:54:42 -07001056 iov_iter_count(ii));
1057
1058 bytes = min_t(size_t, bytes, fc->max_write - count);
1059
1060 again:
1061 err = -EFAULT;
1062 if (iov_iter_fault_in_readable(ii, bytes))
1063 break;
1064
1065 err = -ENOMEM;
Nick Piggin54566b22009-01-04 12:00:53 -08001066 page = grab_cache_page_write_begin(mapping, index, 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001067 if (!page)
1068 break;
1069
anfei zhou931e80e2010-02-02 13:44:02 -08001070 if (mapping_writably_mapped(mapping))
1071 flush_dcache_page(page);
1072
Nick Pigginea9b9902008-04-30 00:54:42 -07001073 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
Nick Pigginea9b9902008-04-30 00:54:42 -07001074 flush_dcache_page(page);
1075
Roman Gushchin3ca81382015-10-12 16:33:44 +03001076 iov_iter_advance(ii, tmp);
Nick Pigginea9b9902008-04-30 00:54:42 -07001077 if (!tmp) {
1078 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001079 put_page(page);
Nick Pigginea9b9902008-04-30 00:54:42 -07001080 bytes = min(bytes, iov_iter_single_seg_count(ii));
1081 goto again;
1082 }
1083
1084 err = 0;
1085 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001086 req->page_descs[req->num_pages].length = tmp;
Nick Pigginea9b9902008-04-30 00:54:42 -07001087 req->num_pages++;
1088
Nick Pigginea9b9902008-04-30 00:54:42 -07001089 count += tmp;
1090 pos += tmp;
1091 offset += tmp;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001092 if (offset == PAGE_SIZE)
Nick Pigginea9b9902008-04-30 00:54:42 -07001093 offset = 0;
1094
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -07001095 if (!fc->big_writes)
1096 break;
Nick Pigginea9b9902008-04-30 00:54:42 -07001097 } while (iov_iter_count(ii) && count < fc->max_write &&
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001098 req->num_pages < req->max_pages && offset == 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001099
1100 return count > 0 ? count : err;
1101}
1102
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001103static inline unsigned fuse_wr_pages(loff_t pos, size_t len)
1104{
1105 return min_t(unsigned,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001106 ((pos + len - 1) >> PAGE_SHIFT) -
1107 (pos >> PAGE_SHIFT) + 1,
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001108 FUSE_MAX_PAGES_PER_REQ);
1109}
1110
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001111static ssize_t fuse_perform_write(struct kiocb *iocb,
Nick Pigginea9b9902008-04-30 00:54:42 -07001112 struct address_space *mapping,
1113 struct iov_iter *ii, loff_t pos)
1114{
1115 struct inode *inode = mapping->host;
1116 struct fuse_conn *fc = get_fuse_conn(inode);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001117 struct fuse_inode *fi = get_fuse_inode(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001118 int err = 0;
1119 ssize_t res = 0;
1120
1121 if (is_bad_inode(inode))
1122 return -EIO;
1123
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001124 if (inode->i_size < pos + iov_iter_count(ii))
1125 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1126
Nick Pigginea9b9902008-04-30 00:54:42 -07001127 do {
1128 struct fuse_req *req;
1129 ssize_t count;
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001130 unsigned nr_pages = fuse_wr_pages(pos, iov_iter_count(ii));
Nick Pigginea9b9902008-04-30 00:54:42 -07001131
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001132 req = fuse_get_req(fc, nr_pages);
Nick Pigginea9b9902008-04-30 00:54:42 -07001133 if (IS_ERR(req)) {
1134 err = PTR_ERR(req);
1135 break;
1136 }
1137
1138 count = fuse_fill_write_pages(req, mapping, ii, pos);
1139 if (count <= 0) {
1140 err = count;
1141 } else {
1142 size_t num_written;
1143
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001144 num_written = fuse_send_write_pages(req, iocb, inode,
Nick Pigginea9b9902008-04-30 00:54:42 -07001145 pos, count);
1146 err = req->out.h.error;
1147 if (!err) {
1148 res += num_written;
1149 pos += num_written;
1150
1151 /* break out of the loop on short write */
1152 if (num_written != count)
1153 err = -EIO;
1154 }
1155 }
1156 fuse_put_request(fc, req);
1157 } while (!err && iov_iter_count(ii));
1158
1159 if (res > 0)
1160 fuse_write_update_size(inode, pos);
1161
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001162 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
Nick Pigginea9b9902008-04-30 00:54:42 -07001163 fuse_invalidate_attr(inode);
1164
1165 return res > 0 ? res : err;
1166}
1167
Al Viro84c3d552014-04-03 14:33:23 -04001168static ssize_t fuse_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Nick Pigginea9b9902008-04-30 00:54:42 -07001169{
1170 struct file *file = iocb->ki_filp;
1171 struct address_space *mapping = file->f_mapping;
Nick Pigginea9b9902008-04-30 00:54:42 -07001172 ssize_t written = 0;
Anand Avati4273b792012-02-17 12:46:25 -05001173 ssize_t written_buffered = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001174 struct inode *inode = mapping->host;
1175 ssize_t err;
Anand Avati4273b792012-02-17 12:46:25 -05001176 loff_t endbyte = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001177
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001178 if (get_fuse_conn(inode)->writeback_cache) {
1179 /* Update size (EOF optimization) and mode (SUID clearing) */
Miklos Szeredi5b97eea2017-09-12 16:57:54 +02001180 err = fuse_update_attributes(mapping->host, file);
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001181 if (err)
1182 return err;
1183
Al Viro84c3d552014-04-03 14:33:23 -04001184 return generic_file_write_iter(iocb, from);
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001185 }
1186
Al Viro59551022016-01-22 15:40:57 -05001187 inode_lock(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001188
1189 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001190 current->backing_dev_info = inode_to_bdi(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001191
Al Viro3309dd02015-04-09 12:55:47 -04001192 err = generic_write_checks(iocb, from);
1193 if (err <= 0)
Nick Pigginea9b9902008-04-30 00:54:42 -07001194 goto out;
1195
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001196 err = file_remove_privs(file);
Nick Pigginea9b9902008-04-30 00:54:42 -07001197 if (err)
1198 goto out;
1199
Josef Bacikc3b2da32012-03-26 09:59:21 -04001200 err = file_update_time(file);
1201 if (err)
1202 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001203
Al Viro2ba48ce2015-04-09 13:52:01 -04001204 if (iocb->ki_flags & IOCB_DIRECT) {
Al Viro3309dd02015-04-09 12:55:47 -04001205 loff_t pos = iocb->ki_pos;
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001206 written = generic_file_direct_write(iocb, from);
Al Viro84c3d552014-04-03 14:33:23 -04001207 if (written < 0 || !iov_iter_count(from))
Anand Avati4273b792012-02-17 12:46:25 -05001208 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001209
Anand Avati4273b792012-02-17 12:46:25 -05001210 pos += written;
Anand Avati4273b792012-02-17 12:46:25 -05001211
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001212 written_buffered = fuse_perform_write(iocb, mapping, from, pos);
Anand Avati4273b792012-02-17 12:46:25 -05001213 if (written_buffered < 0) {
1214 err = written_buffered;
1215 goto out;
1216 }
1217 endbyte = pos + written_buffered - 1;
1218
1219 err = filemap_write_and_wait_range(file->f_mapping, pos,
1220 endbyte);
1221 if (err)
1222 goto out;
1223
1224 invalidate_mapping_pages(file->f_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001225 pos >> PAGE_SHIFT,
1226 endbyte >> PAGE_SHIFT);
Anand Avati4273b792012-02-17 12:46:25 -05001227
1228 written += written_buffered;
1229 iocb->ki_pos = pos + written_buffered;
1230 } else {
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001231 written = fuse_perform_write(iocb, mapping, from, iocb->ki_pos);
Anand Avati4273b792012-02-17 12:46:25 -05001232 if (written >= 0)
Al Viro3309dd02015-04-09 12:55:47 -04001233 iocb->ki_pos += written;
Anand Avati4273b792012-02-17 12:46:25 -05001234 }
Nick Pigginea9b9902008-04-30 00:54:42 -07001235out:
1236 current->backing_dev_info = NULL;
Al Viro59551022016-01-22 15:40:57 -05001237 inode_unlock(inode);
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001238 if (written > 0)
1239 written = generic_write_sync(iocb, written);
Nick Pigginea9b9902008-04-30 00:54:42 -07001240
1241 return written ? written : err;
1242}
1243
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001244static inline void fuse_page_descs_length_init(struct fuse_req *req,
1245 unsigned index, unsigned nr_pages)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001246{
1247 int i;
1248
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001249 for (i = index; i < index + nr_pages; i++)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001250 req->page_descs[i].length = PAGE_SIZE -
1251 req->page_descs[i].offset;
1252}
1253
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001254static inline unsigned long fuse_get_user_addr(const struct iov_iter *ii)
1255{
1256 return (unsigned long)ii->iov->iov_base + ii->iov_offset;
1257}
1258
1259static inline size_t fuse_get_frag_size(const struct iov_iter *ii,
1260 size_t max_size)
1261{
1262 return min(iov_iter_single_seg_count(ii), max_size);
1263}
1264
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001265static int fuse_get_user_pages(struct fuse_req *req, struct iov_iter *ii,
Miklos Szeredice60a2f2009-04-09 17:37:52 +02001266 size_t *nbytesp, int write)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001267{
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001268 size_t nbytes = 0; /* # bytes already packed in req */
Ashish Samant742f9922016-03-14 21:57:35 -07001269 ssize_t ret = 0;
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001270
Miklos Szeredif4975c62009-04-02 14:25:34 +02001271 /* Special case for kernel I/O: can copy directly into the buffer */
Al Viro62a80672014-04-04 23:12:29 -04001272 if (ii->type & ITER_KVEC) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001273 unsigned long user_addr = fuse_get_user_addr(ii);
1274 size_t frag_size = fuse_get_frag_size(ii, *nbytesp);
1275
Miklos Szeredif4975c62009-04-02 14:25:34 +02001276 if (write)
1277 req->in.args[1].value = (void *) user_addr;
1278 else
1279 req->out.args[0].value = (void *) user_addr;
1280
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001281 iov_iter_advance(ii, frag_size);
1282 *nbytesp = frag_size;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001283 return 0;
1284 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001285
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001286 while (nbytes < *nbytesp && req->num_pages < req->max_pages) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001287 unsigned npages;
Al Virof67da302014-03-19 01:16:16 -04001288 size_t start;
Ashish Samant742f9922016-03-14 21:57:35 -07001289 ret = iov_iter_get_pages(ii, &req->pages[req->num_pages],
Miklos Szeredi2c809292014-09-24 17:09:11 +02001290 *nbytesp - nbytes,
Al Viroc7f38882014-06-18 20:34:33 -04001291 req->max_pages - req->num_pages,
1292 &start);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001293 if (ret < 0)
Ashish Samant742f9922016-03-14 21:57:35 -07001294 break;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001295
Al Viroc9c37e22014-03-16 16:08:30 -04001296 iov_iter_advance(ii, ret);
1297 nbytes += ret;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001298
Al Viroc9c37e22014-03-16 16:08:30 -04001299 ret += start;
1300 npages = (ret + PAGE_SIZE - 1) / PAGE_SIZE;
1301
1302 req->page_descs[req->num_pages].offset = start;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001303 fuse_page_descs_length_init(req, req->num_pages, npages);
1304
1305 req->num_pages += npages;
1306 req->page_descs[req->num_pages - 1].length -=
Al Viroc9c37e22014-03-16 16:08:30 -04001307 (PAGE_SIZE - ret) & (PAGE_SIZE - 1);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001308 }
Miklos Szeredif4975c62009-04-02 14:25:34 +02001309
1310 if (write)
1311 req->in.argpages = 1;
1312 else
1313 req->out.argpages = 1;
1314
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001315 *nbytesp = nbytes;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001316
Ashish Samant2c932d42016-03-25 10:53:41 -07001317 return ret < 0 ? ret : 0;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001318}
1319
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001320static inline int fuse_iter_npages(const struct iov_iter *ii_p)
1321{
Al Virof67da302014-03-19 01:16:16 -04001322 return iov_iter_npages(ii_p, FUSE_MAX_PAGES_PER_REQ);
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001323}
1324
Al Virod22a9432014-03-16 15:50:47 -04001325ssize_t fuse_direct_io(struct fuse_io_priv *io, struct iov_iter *iter,
1326 loff_t *ppos, int flags)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001327{
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001328 int write = flags & FUSE_DIO_WRITE;
1329 int cuse = flags & FUSE_DIO_CUSE;
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001330 struct file *file = io->iocb->ki_filp;
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001331 struct inode *inode = file->f_mapping->host;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001332 struct fuse_file *ff = file->private_data;
1333 struct fuse_conn *fc = ff->fc;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001334 size_t nmax = write ? fc->max_write : fc->max_read;
1335 loff_t pos = *ppos;
Al Virod22a9432014-03-16 15:50:47 -04001336 size_t count = iov_iter_count(iter);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001337 pgoff_t idx_from = pos >> PAGE_SHIFT;
1338 pgoff_t idx_to = (pos + count - 1) >> PAGE_SHIFT;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001339 ssize_t res = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001340 struct fuse_req *req;
Ashish Samant742f9922016-03-14 21:57:35 -07001341 int err = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001342
Brian Fosterde82b922013-05-14 11:25:39 -04001343 if (io->async)
Al Virod22a9432014-03-16 15:50:47 -04001344 req = fuse_get_req_for_background(fc, fuse_iter_npages(iter));
Brian Fosterde82b922013-05-14 11:25:39 -04001345 else
Al Virod22a9432014-03-16 15:50:47 -04001346 req = fuse_get_req(fc, fuse_iter_npages(iter));
Miklos Szeredice1d5a42006-04-10 22:54:58 -07001347 if (IS_ERR(req))
1348 return PTR_ERR(req);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001349
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001350 if (!cuse && fuse_range_is_writeback(inode, idx_from, idx_to)) {
1351 if (!write)
Al Viro59551022016-01-22 15:40:57 -05001352 inode_lock(inode);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001353 fuse_sync_writes(inode);
1354 if (!write)
Al Viro59551022016-01-22 15:40:57 -05001355 inode_unlock(inode);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001356 }
1357
Ashish Samant61c12b42017-07-12 19:26:58 -07001358 io->should_dirty = !write && iter_is_iovec(iter);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001359 while (count) {
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001360 size_t nres;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001361 fl_owner_t owner = current->files;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001362 size_t nbytes = min(count, nmax);
Ashish Samant742f9922016-03-14 21:57:35 -07001363 err = fuse_get_user_pages(req, iter, &nbytes, write);
1364 if (err && !nbytes)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001365 break;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001366
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001367 if (write)
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001368 nres = fuse_send_write(req, io, pos, nbytes, owner);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001369 else
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001370 nres = fuse_send_read(req, io, pos, nbytes, owner);
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001371
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001372 if (!io->async)
Ashish Samant61c12b42017-07-12 19:26:58 -07001373 fuse_release_user_pages(req, io->should_dirty);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001374 if (req->out.h.error) {
Ashish Samant742f9922016-03-14 21:57:35 -07001375 err = req->out.h.error;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001376 break;
1377 } else if (nres > nbytes) {
Ashish Samant742f9922016-03-14 21:57:35 -07001378 res = 0;
1379 err = -EIO;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001380 break;
1381 }
1382 count -= nres;
1383 res += nres;
1384 pos += nres;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001385 if (nres != nbytes)
1386 break;
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001387 if (count) {
1388 fuse_put_request(fc, req);
Brian Fosterde82b922013-05-14 11:25:39 -04001389 if (io->async)
1390 req = fuse_get_req_for_background(fc,
Al Virod22a9432014-03-16 15:50:47 -04001391 fuse_iter_npages(iter));
Brian Fosterde82b922013-05-14 11:25:39 -04001392 else
Al Virod22a9432014-03-16 15:50:47 -04001393 req = fuse_get_req(fc, fuse_iter_npages(iter));
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001394 if (IS_ERR(req))
1395 break;
1396 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001397 }
Anand V. Avatif60311d2009-10-22 06:24:52 -07001398 if (!IS_ERR(req))
1399 fuse_put_request(fc, req);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001400 if (res > 0)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001401 *ppos = pos;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001402
Ashish Samant742f9922016-03-14 21:57:35 -07001403 return res > 0 ? res : err;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001404}
Tejun Heo08cbf542009-04-14 10:54:53 +09001405EXPORT_SYMBOL_GPL(fuse_direct_io);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001406
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001407static ssize_t __fuse_direct_read(struct fuse_io_priv *io,
Al Virod22a9432014-03-16 15:50:47 -04001408 struct iov_iter *iter,
1409 loff_t *ppos)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001410{
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001411 ssize_t res;
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001412 struct inode *inode = file_inode(io->iocb->ki_filp);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001413
1414 if (is_bad_inode(inode))
1415 return -EIO;
1416
Al Virod22a9432014-03-16 15:50:47 -04001417 res = fuse_direct_io(io, iter, ppos, 0);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001418
1419 fuse_invalidate_attr(inode);
1420
1421 return res;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001422}
1423
Al Viro153162632015-03-30 22:08:36 -04001424static ssize_t fuse_direct_read_iter(struct kiocb *iocb, struct iov_iter *to)
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001425{
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001426 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb);
Al Viro153162632015-03-30 22:08:36 -04001427 return __fuse_direct_read(&io, to, &iocb->ki_pos);
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001428}
1429
Al Viro153162632015-03-30 22:08:36 -04001430static ssize_t fuse_direct_write_iter(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001431{
Miklos Szeredie1c0eec2017-09-12 16:57:53 +02001432 struct inode *inode = file_inode(iocb->ki_filp);
1433 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb);
Al Viro153162632015-03-30 22:08:36 -04001434 ssize_t res;
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001435
1436 if (is_bad_inode(inode))
1437 return -EIO;
1438
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001439 /* Don't allow parallel writes to the same file */
Al Viro59551022016-01-22 15:40:57 -05001440 inode_lock(inode);
Al Viro3309dd02015-04-09 12:55:47 -04001441 res = generic_write_checks(iocb, from);
1442 if (res > 0)
Al Viro812408f2015-03-30 22:15:58 -04001443 res = fuse_direct_io(&io, from, &iocb->ki_pos, FUSE_DIO_WRITE);
Al Viro812408f2015-03-30 22:15:58 -04001444 fuse_invalidate_attr(inode);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04001445 if (res > 0)
Al Viro153162632015-03-30 22:08:36 -04001446 fuse_write_update_size(inode, iocb->ki_pos);
Al Viro59551022016-01-22 15:40:57 -05001447 inode_unlock(inode);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001448
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001449 return res;
1450}
1451
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001452static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001453{
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001454 int i;
1455
1456 for (i = 0; i < req->num_pages; i++)
1457 __free_page(req->pages[i]);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001458
1459 if (req->ff)
1460 fuse_file_put(req->ff, false);
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001461}
1462
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001463static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001464{
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001465 struct inode *inode = req->inode;
1466 struct fuse_inode *fi = get_fuse_inode(inode);
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001467 struct backing_dev_info *bdi = inode_to_bdi(inode);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001468 int i;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001469
1470 list_del(&req->writepages_entry);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001471 for (i = 0; i < req->num_pages; i++) {
Tejun Heo93f78d82015-05-22 17:13:27 -04001472 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001473 dec_node_page_state(req->pages[i], NR_WRITEBACK_TEMP);
Tejun Heo93f78d82015-05-22 17:13:27 -04001474 wb_writeout_inc(&bdi->wb);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001475 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001476 wake_up(&fi->page_waitq);
1477}
1478
1479/* Called under fc->lock, may release and reacquire it */
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001480static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req,
1481 loff_t size)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001482__releases(fc->lock)
1483__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001484{
1485 struct fuse_inode *fi = get_fuse_inode(req->inode);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001486 struct fuse_write_in *inarg = &req->misc.write.in;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001487 __u64 data_size = req->num_pages * PAGE_SIZE;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001488
1489 if (!fc->connected)
1490 goto out_free;
1491
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001492 if (inarg->offset + data_size <= size) {
1493 inarg->size = data_size;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001494 } else if (inarg->offset < size) {
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001495 inarg->size = size - inarg->offset;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001496 } else {
1497 /* Got truncated off completely */
1498 goto out_free;
1499 }
1500
1501 req->in.args[1].size = inarg->size;
1502 fi->writectr++;
Tejun Heob93f8582008-11-26 12:03:55 +01001503 fuse_request_send_background_locked(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001504 return;
1505
1506 out_free:
1507 fuse_writepage_finish(fc, req);
1508 spin_unlock(&fc->lock);
1509 fuse_writepage_free(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +01001510 fuse_put_request(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001511 spin_lock(&fc->lock);
1512}
1513
1514/*
1515 * If fi->writectr is positive (no truncate or fsync going on) send
1516 * all queued writepage requests.
1517 *
1518 * Called with fc->lock
1519 */
1520void fuse_flush_writepages(struct inode *inode)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001521__releases(fc->lock)
1522__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001523{
1524 struct fuse_conn *fc = get_fuse_conn(inode);
1525 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001526 size_t crop = i_size_read(inode);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001527 struct fuse_req *req;
1528
1529 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1530 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1531 list_del_init(&req->list);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001532 fuse_send_writepage(fc, req, crop);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001533 }
1534}
1535
1536static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1537{
1538 struct inode *inode = req->inode;
1539 struct fuse_inode *fi = get_fuse_inode(inode);
1540
1541 mapping_set_error(inode->i_mapping, req->out.h.error);
1542 spin_lock(&fc->lock);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001543 while (req->misc.write.next) {
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001544 struct fuse_conn *fc = get_fuse_conn(inode);
1545 struct fuse_write_in *inarg = &req->misc.write.in;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001546 struct fuse_req *next = req->misc.write.next;
1547 req->misc.write.next = next->misc.write.next;
1548 next->misc.write.next = NULL;
Maxim Patlasovce128de2013-10-02 21:38:54 +04001549 next->ff = fuse_file_get(req->ff);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001550 list_add(&next->writepages_entry, &fi->writepages);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001551
1552 /*
1553 * Skip fuse_flush_writepages() to make it easy to crop requests
1554 * based on primary request size.
1555 *
1556 * 1st case (trivial): there are no concurrent activities using
1557 * fuse_set/release_nowrite. Then we're on safe side because
1558 * fuse_flush_writepages() would call fuse_send_writepage()
1559 * anyway.
1560 *
1561 * 2nd case: someone called fuse_set_nowrite and it is waiting
1562 * now for completion of all in-flight requests. This happens
1563 * rarely and no more than once per page, so this should be
1564 * okay.
1565 *
1566 * 3rd case: someone (e.g. fuse_do_setattr()) is in the middle
1567 * of fuse_set_nowrite..fuse_release_nowrite section. The fact
1568 * that fuse_set_nowrite returned implies that all in-flight
1569 * requests were completed along with all of their secondary
1570 * requests. Further primary requests are blocked by negative
1571 * writectr. Hence there cannot be any in-flight requests and
1572 * no invocations of fuse_writepage_end() while we're in
1573 * fuse_set_nowrite..fuse_release_nowrite section.
1574 */
1575 fuse_send_writepage(fc, next, inarg->offset + inarg->size);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001576 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001577 fi->writectr--;
1578 fuse_writepage_finish(fc, req);
1579 spin_unlock(&fc->lock);
1580 fuse_writepage_free(fc, req);
1581}
1582
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001583static struct fuse_file *__fuse_write_file_get(struct fuse_conn *fc,
1584 struct fuse_inode *fi)
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001585{
Miklos Szeredi72523422013-10-01 16:44:52 +02001586 struct fuse_file *ff = NULL;
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001587
1588 spin_lock(&fc->lock);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001589 if (!list_empty(&fi->write_files)) {
Miklos Szeredi72523422013-10-01 16:44:52 +02001590 ff = list_entry(fi->write_files.next, struct fuse_file,
1591 write_entry);
1592 fuse_file_get(ff);
1593 }
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001594 spin_unlock(&fc->lock);
1595
1596 return ff;
1597}
1598
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001599static struct fuse_file *fuse_write_file_get(struct fuse_conn *fc,
1600 struct fuse_inode *fi)
1601{
1602 struct fuse_file *ff = __fuse_write_file_get(fc, fi);
1603 WARN_ON(!ff);
1604 return ff;
1605}
1606
1607int fuse_write_inode(struct inode *inode, struct writeback_control *wbc)
1608{
1609 struct fuse_conn *fc = get_fuse_conn(inode);
1610 struct fuse_inode *fi = get_fuse_inode(inode);
1611 struct fuse_file *ff;
1612 int err;
1613
1614 ff = __fuse_write_file_get(fc, fi);
Maxim Patlasovab9e13f2014-04-28 14:19:24 +02001615 err = fuse_flush_times(inode, ff);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001616 if (ff)
1617 fuse_file_put(ff, 0);
1618
1619 return err;
1620}
1621
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001622static int fuse_writepage_locked(struct page *page)
1623{
1624 struct address_space *mapping = page->mapping;
1625 struct inode *inode = mapping->host;
1626 struct fuse_conn *fc = get_fuse_conn(inode);
1627 struct fuse_inode *fi = get_fuse_inode(inode);
1628 struct fuse_req *req;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001629 struct page *tmp_page;
Miklos Szeredi72523422013-10-01 16:44:52 +02001630 int error = -ENOMEM;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001631
1632 set_page_writeback(page);
1633
Maxim Patlasov4250c062012-10-26 19:48:07 +04001634 req = fuse_request_alloc_nofs(1);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001635 if (!req)
1636 goto err;
1637
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001638 /* writeback always goes to bg_queue */
1639 __set_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001640 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1641 if (!tmp_page)
1642 goto err_free;
1643
Miklos Szeredi72523422013-10-01 16:44:52 +02001644 error = -EIO;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001645 req->ff = fuse_write_file_get(fc, fi);
Miklos Szeredi72523422013-10-01 16:44:52 +02001646 if (!req->ff)
Maxim Patlasov27f1b362014-07-10 15:32:43 +04001647 goto err_nofile;
Miklos Szeredi72523422013-10-01 16:44:52 +02001648
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001649 fuse_write_fill(req, req->ff, page_offset(page), 0);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001650
1651 copy_highpage(tmp_page, page);
Miklos Szeredi2d698b02009-04-28 16:56:36 +02001652 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001653 req->misc.write.next = NULL;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001654 req->in.argpages = 1;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001655 req->num_pages = 1;
1656 req->pages[0] = tmp_page;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001657 req->page_descs[0].offset = 0;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001658 req->page_descs[0].length = PAGE_SIZE;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001659 req->end = fuse_writepage_end;
1660 req->inode = inode;
1661
Tejun Heo93f78d82015-05-22 17:13:27 -04001662 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001663 inc_node_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001664
1665 spin_lock(&fc->lock);
1666 list_add(&req->writepages_entry, &fi->writepages);
1667 list_add_tail(&req->list, &fi->queued_writes);
1668 fuse_flush_writepages(inode);
1669 spin_unlock(&fc->lock);
1670
Maxim Patlasov4a4ac4e2013-08-12 20:39:30 +04001671 end_page_writeback(page);
1672
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001673 return 0;
1674
Maxim Patlasov27f1b362014-07-10 15:32:43 +04001675err_nofile:
1676 __free_page(tmp_page);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001677err_free:
1678 fuse_request_free(req);
1679err:
Jeff Layton91839762017-05-25 06:57:50 -04001680 mapping_set_error(page->mapping, error);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001681 end_page_writeback(page);
Miklos Szeredi72523422013-10-01 16:44:52 +02001682 return error;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001683}
1684
1685static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1686{
1687 int err;
1688
Miklos Szerediff17be02013-10-01 16:44:53 +02001689 if (fuse_page_is_writeback(page->mapping->host, page->index)) {
1690 /*
1691 * ->writepages() should be called for sync() and friends. We
1692 * should only get here on direct reclaim and then we are
1693 * allowed to skip a page which is already in flight
1694 */
1695 WARN_ON(wbc->sync_mode == WB_SYNC_ALL);
1696
1697 redirty_page_for_writepage(wbc, page);
1698 return 0;
1699 }
1700
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001701 err = fuse_writepage_locked(page);
1702 unlock_page(page);
1703
1704 return err;
1705}
1706
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001707struct fuse_fill_wb_data {
1708 struct fuse_req *req;
1709 struct fuse_file *ff;
1710 struct inode *inode;
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001711 struct page **orig_pages;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001712};
1713
1714static void fuse_writepages_send(struct fuse_fill_wb_data *data)
1715{
1716 struct fuse_req *req = data->req;
1717 struct inode *inode = data->inode;
1718 struct fuse_conn *fc = get_fuse_conn(inode);
1719 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001720 int num_pages = req->num_pages;
1721 int i;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001722
1723 req->ff = fuse_file_get(data->ff);
1724 spin_lock(&fc->lock);
1725 list_add_tail(&req->list, &fi->queued_writes);
1726 fuse_flush_writepages(inode);
1727 spin_unlock(&fc->lock);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001728
1729 for (i = 0; i < num_pages; i++)
1730 end_page_writeback(data->orig_pages[i]);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001731}
1732
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001733static bool fuse_writepage_in_flight(struct fuse_req *new_req,
1734 struct page *page)
1735{
1736 struct fuse_conn *fc = get_fuse_conn(new_req->inode);
1737 struct fuse_inode *fi = get_fuse_inode(new_req->inode);
1738 struct fuse_req *tmp;
1739 struct fuse_req *old_req;
1740 bool found = false;
1741 pgoff_t curr_index;
1742
1743 BUG_ON(new_req->num_pages != 0);
1744
1745 spin_lock(&fc->lock);
1746 list_del(&new_req->writepages_entry);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001747 list_for_each_entry(old_req, &fi->writepages, writepages_entry) {
1748 BUG_ON(old_req->inode != new_req->inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001749 curr_index = old_req->misc.write.in.offset >> PAGE_SHIFT;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001750 if (curr_index <= page->index &&
1751 page->index < curr_index + old_req->num_pages) {
1752 found = true;
1753 break;
1754 }
1755 }
Maxim Patlasovf6011082013-10-02 15:01:07 +04001756 if (!found) {
1757 list_add(&new_req->writepages_entry, &fi->writepages);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001758 goto out_unlock;
Maxim Patlasovf6011082013-10-02 15:01:07 +04001759 }
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001760
Maxim Patlasovf6011082013-10-02 15:01:07 +04001761 new_req->num_pages = 1;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001762 for (tmp = old_req; tmp != NULL; tmp = tmp->misc.write.next) {
1763 BUG_ON(tmp->inode != new_req->inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001764 curr_index = tmp->misc.write.in.offset >> PAGE_SHIFT;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001765 if (tmp->num_pages == 1 &&
1766 curr_index == page->index) {
1767 old_req = tmp;
1768 }
1769 }
1770
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001771 if (old_req->num_pages == 1 && test_bit(FR_PENDING, &old_req->flags)) {
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001772 struct backing_dev_info *bdi = inode_to_bdi(page->mapping->host);
Maxim Patlasov41b6e412013-10-02 21:38:43 +04001773
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001774 copy_highpage(old_req->pages[0], page);
1775 spin_unlock(&fc->lock);
1776
Tejun Heo93f78d82015-05-22 17:13:27 -04001777 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001778 dec_node_page_state(page, NR_WRITEBACK_TEMP);
Tejun Heo93f78d82015-05-22 17:13:27 -04001779 wb_writeout_inc(&bdi->wb);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001780 fuse_writepage_free(fc, new_req);
1781 fuse_request_free(new_req);
1782 goto out;
1783 } else {
1784 new_req->misc.write.next = old_req->misc.write.next;
1785 old_req->misc.write.next = new_req;
1786 }
1787out_unlock:
1788 spin_unlock(&fc->lock);
1789out:
1790 return found;
1791}
1792
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001793static int fuse_writepages_fill(struct page *page,
1794 struct writeback_control *wbc, void *_data)
1795{
1796 struct fuse_fill_wb_data *data = _data;
1797 struct fuse_req *req = data->req;
1798 struct inode *inode = data->inode;
1799 struct fuse_conn *fc = get_fuse_conn(inode);
1800 struct page *tmp_page;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001801 bool is_writeback;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001802 int err;
1803
1804 if (!data->ff) {
1805 err = -EIO;
1806 data->ff = fuse_write_file_get(fc, get_fuse_inode(inode));
1807 if (!data->ff)
1808 goto out_unlock;
1809 }
1810
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001811 /*
1812 * Being under writeback is unlikely but possible. For example direct
1813 * read to an mmaped fuse file will set the page dirty twice; once when
1814 * the pages are faulted with get_user_pages(), and then after the read
1815 * completed.
1816 */
1817 is_writeback = fuse_page_is_writeback(inode, page->index);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001818
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001819 if (req && req->num_pages &&
1820 (is_writeback || req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001821 (req->num_pages + 1) * PAGE_SIZE > fc->max_write ||
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001822 data->orig_pages[req->num_pages - 1]->index + 1 != page->index)) {
1823 fuse_writepages_send(data);
1824 data->req = NULL;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001825 }
1826 err = -ENOMEM;
1827 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1828 if (!tmp_page)
1829 goto out_unlock;
1830
1831 /*
1832 * The page must not be redirtied until the writeout is completed
1833 * (i.e. userspace has sent a reply to the write request). Otherwise
1834 * there could be more than one temporary page instance for each real
1835 * page.
1836 *
1837 * This is ensured by holding the page lock in page_mkwrite() while
1838 * checking fuse_page_is_writeback(). We already hold the page lock
1839 * since clear_page_dirty_for_io() and keep it held until we add the
1840 * request to the fi->writepages list and increment req->num_pages.
1841 * After this fuse_page_is_writeback() will indicate that the page is
1842 * under writeback, so we can release the page lock.
1843 */
1844 if (data->req == NULL) {
1845 struct fuse_inode *fi = get_fuse_inode(inode);
1846
1847 err = -ENOMEM;
1848 req = fuse_request_alloc_nofs(FUSE_MAX_PAGES_PER_REQ);
1849 if (!req) {
1850 __free_page(tmp_page);
1851 goto out_unlock;
1852 }
1853
1854 fuse_write_fill(req, data->ff, page_offset(page), 0);
1855 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001856 req->misc.write.next = NULL;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001857 req->in.argpages = 1;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001858 __set_bit(FR_BACKGROUND, &req->flags);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001859 req->num_pages = 0;
1860 req->end = fuse_writepage_end;
1861 req->inode = inode;
1862
1863 spin_lock(&fc->lock);
1864 list_add(&req->writepages_entry, &fi->writepages);
1865 spin_unlock(&fc->lock);
1866
1867 data->req = req;
1868 }
1869 set_page_writeback(page);
1870
1871 copy_highpage(tmp_page, page);
1872 req->pages[req->num_pages] = tmp_page;
1873 req->page_descs[req->num_pages].offset = 0;
1874 req->page_descs[req->num_pages].length = PAGE_SIZE;
1875
Tejun Heo93f78d82015-05-22 17:13:27 -04001876 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001877 inc_node_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001878
1879 err = 0;
1880 if (is_writeback && fuse_writepage_in_flight(req, page)) {
1881 end_page_writeback(page);
1882 data->req = NULL;
1883 goto out_unlock;
1884 }
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001885 data->orig_pages[req->num_pages] = page;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001886
1887 /*
1888 * Protected by fc->lock against concurrent access by
1889 * fuse_page_is_writeback().
1890 */
1891 spin_lock(&fc->lock);
1892 req->num_pages++;
1893 spin_unlock(&fc->lock);
1894
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001895out_unlock:
1896 unlock_page(page);
1897
1898 return err;
1899}
1900
1901static int fuse_writepages(struct address_space *mapping,
1902 struct writeback_control *wbc)
1903{
1904 struct inode *inode = mapping->host;
1905 struct fuse_fill_wb_data data;
1906 int err;
1907
1908 err = -EIO;
1909 if (is_bad_inode(inode))
1910 goto out;
1911
1912 data.inode = inode;
1913 data.req = NULL;
1914 data.ff = NULL;
1915
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001916 err = -ENOMEM;
Fabian Frederickf2b34552014-06-23 18:35:15 +02001917 data.orig_pages = kcalloc(FUSE_MAX_PAGES_PER_REQ,
1918 sizeof(struct page *),
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001919 GFP_NOFS);
1920 if (!data.orig_pages)
1921 goto out;
1922
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001923 err = write_cache_pages(mapping, wbc, fuse_writepages_fill, &data);
1924 if (data.req) {
1925 /* Ignore errors if we can write at least one page */
1926 BUG_ON(!data.req->num_pages);
1927 fuse_writepages_send(&data);
1928 err = 0;
1929 }
1930 if (data.ff)
1931 fuse_file_put(data.ff, false);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001932
1933 kfree(data.orig_pages);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001934out:
1935 return err;
1936}
1937
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001938/*
1939 * It's worthy to make sure that space is reserved on disk for the write,
1940 * but how to implement it without killing performance need more thinking.
1941 */
1942static int fuse_write_begin(struct file *file, struct address_space *mapping,
1943 loff_t pos, unsigned len, unsigned flags,
1944 struct page **pagep, void **fsdata)
1945{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001946 pgoff_t index = pos >> PAGE_SHIFT;
Al Viroa4555892014-10-21 20:11:25 -04001947 struct fuse_conn *fc = get_fuse_conn(file_inode(file));
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001948 struct page *page;
1949 loff_t fsize;
1950 int err = -ENOMEM;
1951
1952 WARN_ON(!fc->writeback_cache);
1953
1954 page = grab_cache_page_write_begin(mapping, index, flags);
1955 if (!page)
1956 goto error;
1957
1958 fuse_wait_on_page_writeback(mapping->host, page->index);
1959
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001960 if (PageUptodate(page) || len == PAGE_SIZE)
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001961 goto success;
1962 /*
1963 * Check if the start this page comes after the end of file, in which
1964 * case the readpage can be optimized away.
1965 */
1966 fsize = i_size_read(mapping->host);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001967 if (fsize <= (pos & PAGE_MASK)) {
1968 size_t off = pos & ~PAGE_MASK;
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001969 if (off)
1970 zero_user_segment(page, 0, off);
1971 goto success;
1972 }
1973 err = fuse_do_readpage(file, page);
1974 if (err)
1975 goto cleanup;
1976success:
1977 *pagep = page;
1978 return 0;
1979
1980cleanup:
1981 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001982 put_page(page);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001983error:
1984 return err;
1985}
1986
1987static int fuse_write_end(struct file *file, struct address_space *mapping,
1988 loff_t pos, unsigned len, unsigned copied,
1989 struct page *page, void *fsdata)
1990{
1991 struct inode *inode = page->mapping->host;
1992
Miklos Szeredi59c3b762016-08-18 09:10:44 +02001993 /* Haven't copied anything? Skip zeroing, size extending, dirtying. */
1994 if (!copied)
1995 goto unlock;
1996
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001997 if (!PageUptodate(page)) {
1998 /* Zero any unwritten bytes at the end of the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001999 size_t endoff = (pos + copied) & ~PAGE_MASK;
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002000 if (endoff)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002001 zero_user_segment(page, endoff, PAGE_SIZE);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002002 SetPageUptodate(page);
2003 }
2004
2005 fuse_write_update_size(inode, pos + copied);
2006 set_page_dirty(page);
Miklos Szeredi59c3b762016-08-18 09:10:44 +02002007
2008unlock:
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002009 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002010 put_page(page);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002011
2012 return copied;
2013}
2014
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002015static int fuse_launder_page(struct page *page)
2016{
2017 int err = 0;
2018 if (clear_page_dirty_for_io(page)) {
2019 struct inode *inode = page->mapping->host;
2020 err = fuse_writepage_locked(page);
2021 if (!err)
2022 fuse_wait_on_page_writeback(inode, page->index);
2023 }
2024 return err;
2025}
2026
2027/*
2028 * Write back dirty pages now, because there may not be any suitable
2029 * open files later
2030 */
2031static void fuse_vma_close(struct vm_area_struct *vma)
2032{
2033 filemap_write_and_wait(vma->vm_file->f_mapping);
2034}
2035
2036/*
2037 * Wait for writeback against this page to complete before allowing it
2038 * to be marked dirty again, and hence written back again, possibly
2039 * before the previous writepage completed.
2040 *
2041 * Block here, instead of in ->writepage(), so that the userspace fs
2042 * can only block processes actually operating on the filesystem.
2043 *
2044 * Otherwise unprivileged userspace fs would be able to block
2045 * unrelated:
2046 *
2047 * - page migration
2048 * - sync(2)
2049 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
2050 */
Dave Jiang11bac802017-02-24 14:56:41 -08002051static int fuse_page_mkwrite(struct vm_fault *vmf)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002052{
Nick Pigginc2ec1752009-03-31 15:23:21 -07002053 struct page *page = vmf->page;
Dave Jiang11bac802017-02-24 14:56:41 -08002054 struct inode *inode = file_inode(vmf->vma->vm_file);
Miklos Szeredicca24372013-10-01 16:44:51 +02002055
Dave Jiang11bac802017-02-24 14:56:41 -08002056 file_update_time(vmf->vma->vm_file);
Miklos Szeredicca24372013-10-01 16:44:51 +02002057 lock_page(page);
2058 if (page->mapping != inode->i_mapping) {
2059 unlock_page(page);
2060 return VM_FAULT_NOPAGE;
2061 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002062
2063 fuse_wait_on_page_writeback(inode, page->index);
Miklos Szeredicca24372013-10-01 16:44:51 +02002064 return VM_FAULT_LOCKED;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002065}
2066
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002067static const struct vm_operations_struct fuse_file_vm_ops = {
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002068 .close = fuse_vma_close,
2069 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002070 .map_pages = filemap_map_pages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002071 .page_mkwrite = fuse_page_mkwrite,
2072};
2073
2074static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
2075{
Pavel Emelyanov650b22b2013-10-10 17:10:04 +04002076 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2077 fuse_link_write_file(file);
2078
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002079 file_accessed(file);
2080 vma->vm_ops = &fuse_file_vm_ops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002081 return 0;
2082}
2083
Miklos Szeredifc280c92009-04-02 14:25:35 +02002084static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
2085{
2086 /* Can't provide the coherency needed for MAP_SHARED */
2087 if (vma->vm_flags & VM_MAYSHARE)
2088 return -ENODEV;
2089
Miklos Szeredi3121bfe2009-04-09 17:37:53 +02002090 invalidate_inode_pages2(file->f_mapping);
2091
Miklos Szeredifc280c92009-04-02 14:25:35 +02002092 return generic_file_mmap(file, vma);
2093}
2094
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002095static int convert_fuse_file_lock(struct fuse_conn *fc,
2096 const struct fuse_file_lock *ffl,
Miklos Szeredi71421252006-06-25 05:48:52 -07002097 struct file_lock *fl)
2098{
2099 switch (ffl->type) {
2100 case F_UNLCK:
2101 break;
2102
2103 case F_RDLCK:
2104 case F_WRLCK:
2105 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
2106 ffl->end < ffl->start)
2107 return -EIO;
2108
2109 fl->fl_start = ffl->start;
2110 fl->fl_end = ffl->end;
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002111
2112 /*
Benjamin Coddington9d5b86a2017-07-16 10:28:22 -04002113 * Convert pid into init's pid namespace. The locks API will
2114 * translate it into the caller's pid namespace.
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002115 */
2116 rcu_read_lock();
Benjamin Coddington9d5b86a2017-07-16 10:28:22 -04002117 fl->fl_pid = pid_nr_ns(find_pid_ns(ffl->pid, fc->pid_ns), &init_pid_ns);
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002118 rcu_read_unlock();
Miklos Szeredi71421252006-06-25 05:48:52 -07002119 break;
2120
2121 default:
2122 return -EIO;
2123 }
2124 fl->fl_type = ffl->type;
2125 return 0;
2126}
2127
Miklos Szeredi70781872014-12-12 09:49:05 +01002128static void fuse_lk_fill(struct fuse_args *args, struct file *file,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002129 const struct file_lock *fl, int opcode, pid_t pid,
Miklos Szeredi70781872014-12-12 09:49:05 +01002130 int flock, struct fuse_lk_in *inarg)
Miklos Szeredi71421252006-06-25 05:48:52 -07002131{
Al Viro6131ffa2013-02-27 16:59:05 -05002132 struct inode *inode = file_inode(file);
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07002133 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi71421252006-06-25 05:48:52 -07002134 struct fuse_file *ff = file->private_data;
Miklos Szeredi71421252006-06-25 05:48:52 -07002135
Miklos Szeredi70781872014-12-12 09:49:05 +01002136 memset(inarg, 0, sizeof(*inarg));
2137 inarg->fh = ff->fh;
2138 inarg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
2139 inarg->lk.start = fl->fl_start;
2140 inarg->lk.end = fl->fl_end;
2141 inarg->lk.type = fl->fl_type;
2142 inarg->lk.pid = pid;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002143 if (flock)
Miklos Szeredi70781872014-12-12 09:49:05 +01002144 inarg->lk_flags |= FUSE_LK_FLOCK;
2145 args->in.h.opcode = opcode;
2146 args->in.h.nodeid = get_node_id(inode);
2147 args->in.numargs = 1;
2148 args->in.args[0].size = sizeof(*inarg);
2149 args->in.args[0].value = inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002150}
2151
2152static int fuse_getlk(struct file *file, struct file_lock *fl)
2153{
Al Viro6131ffa2013-02-27 16:59:05 -05002154 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002155 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002156 FUSE_ARGS(args);
2157 struct fuse_lk_in inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002158 struct fuse_lk_out outarg;
2159 int err;
2160
Miklos Szeredi70781872014-12-12 09:49:05 +01002161 fuse_lk_fill(&args, file, fl, FUSE_GETLK, 0, 0, &inarg);
2162 args.out.numargs = 1;
2163 args.out.args[0].size = sizeof(outarg);
2164 args.out.args[0].value = &outarg;
2165 err = fuse_simple_request(fc, &args);
Miklos Szeredi71421252006-06-25 05:48:52 -07002166 if (!err)
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002167 err = convert_fuse_file_lock(fc, &outarg.lk, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07002168
2169 return err;
2170}
2171
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002172static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07002173{
Al Viro6131ffa2013-02-27 16:59:05 -05002174 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002175 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002176 FUSE_ARGS(args);
2177 struct fuse_lk_in inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002178 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002179 struct pid *pid = fl->fl_type != F_UNLCK ? task_tgid(current) : NULL;
2180 pid_t pid_nr = pid_nr_ns(pid, fc->pid_ns);
Miklos Szeredi71421252006-06-25 05:48:52 -07002181 int err;
2182
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04002183 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
Miklos Szeredi48e90762008-07-25 01:49:02 -07002184 /* NLM needs asynchronous locks, which we don't support yet */
2185 return -ENOLCK;
2186 }
2187
Miklos Szeredi71421252006-06-25 05:48:52 -07002188 /* Unlock on close is handled by the flush method */
Benjamin Coddington50f21122017-04-11 12:50:09 -04002189 if ((fl->fl_flags & FL_CLOSE_POSIX) == FL_CLOSE_POSIX)
Miklos Szeredi71421252006-06-25 05:48:52 -07002190 return 0;
2191
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002192 fuse_lk_fill(&args, file, fl, opcode, pid_nr, flock, &inarg);
Miklos Szeredi70781872014-12-12 09:49:05 +01002193 err = fuse_simple_request(fc, &args);
Miklos Szeredi71421252006-06-25 05:48:52 -07002194
Miklos Szeredia4d27e72006-06-25 05:48:54 -07002195 /* locking is restartable */
2196 if (err == -EINTR)
2197 err = -ERESTARTSYS;
Miklos Szeredi70781872014-12-12 09:49:05 +01002198
Miklos Szeredi71421252006-06-25 05:48:52 -07002199 return err;
2200}
2201
2202static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
2203{
Al Viro6131ffa2013-02-27 16:59:05 -05002204 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002205 struct fuse_conn *fc = get_fuse_conn(inode);
2206 int err;
2207
Miklos Szeredi48e90762008-07-25 01:49:02 -07002208 if (cmd == F_CANCELLK) {
2209 err = 0;
2210 } else if (cmd == F_GETLK) {
Miklos Szeredi71421252006-06-25 05:48:52 -07002211 if (fc->no_lock) {
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002212 posix_test_lock(file, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07002213 err = 0;
2214 } else
2215 err = fuse_getlk(file, fl);
2216 } else {
2217 if (fc->no_lock)
Miklos Szeredi48e90762008-07-25 01:49:02 -07002218 err = posix_lock_file(file, fl, NULL);
Miklos Szeredi71421252006-06-25 05:48:52 -07002219 else
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002220 err = fuse_setlk(file, fl, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07002221 }
2222 return err;
2223}
2224
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002225static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
2226{
Al Viro6131ffa2013-02-27 16:59:05 -05002227 struct inode *inode = file_inode(file);
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002228 struct fuse_conn *fc = get_fuse_conn(inode);
2229 int err;
2230
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002231 if (fc->no_flock) {
Benjamin Coddington4f656362015-10-22 13:38:14 -04002232 err = locks_lock_file_wait(file, fl);
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002233 } else {
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002234 struct fuse_file *ff = file->private_data;
2235
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002236 /* emulate flock with POSIX locks */
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002237 ff->flock = true;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002238 err = fuse_setlk(file, fl, 1);
2239 }
2240
2241 return err;
2242}
2243
Miklos Szeredib2d22722006-12-06 20:35:51 -08002244static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
2245{
2246 struct inode *inode = mapping->host;
2247 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002248 FUSE_ARGS(args);
Miklos Szeredib2d22722006-12-06 20:35:51 -08002249 struct fuse_bmap_in inarg;
2250 struct fuse_bmap_out outarg;
2251 int err;
2252
2253 if (!inode->i_sb->s_bdev || fc->no_bmap)
2254 return 0;
2255
Miklos Szeredib2d22722006-12-06 20:35:51 -08002256 memset(&inarg, 0, sizeof(inarg));
2257 inarg.block = block;
2258 inarg.blocksize = inode->i_sb->s_blocksize;
Miklos Szeredi70781872014-12-12 09:49:05 +01002259 args.in.h.opcode = FUSE_BMAP;
2260 args.in.h.nodeid = get_node_id(inode);
2261 args.in.numargs = 1;
2262 args.in.args[0].size = sizeof(inarg);
2263 args.in.args[0].value = &inarg;
2264 args.out.numargs = 1;
2265 args.out.args[0].size = sizeof(outarg);
2266 args.out.args[0].value = &outarg;
2267 err = fuse_simple_request(fc, &args);
Miklos Szeredib2d22722006-12-06 20:35:51 -08002268 if (err == -ENOSYS)
2269 fc->no_bmap = 1;
2270
2271 return err ? 0 : outarg.block;
2272}
2273
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302274static loff_t fuse_lseek(struct file *file, loff_t offset, int whence)
2275{
2276 struct inode *inode = file->f_mapping->host;
2277 struct fuse_conn *fc = get_fuse_conn(inode);
2278 struct fuse_file *ff = file->private_data;
2279 FUSE_ARGS(args);
2280 struct fuse_lseek_in inarg = {
2281 .fh = ff->fh,
2282 .offset = offset,
2283 .whence = whence
2284 };
2285 struct fuse_lseek_out outarg;
2286 int err;
2287
2288 if (fc->no_lseek)
2289 goto fallback;
2290
2291 args.in.h.opcode = FUSE_LSEEK;
2292 args.in.h.nodeid = ff->nodeid;
2293 args.in.numargs = 1;
2294 args.in.args[0].size = sizeof(inarg);
2295 args.in.args[0].value = &inarg;
2296 args.out.numargs = 1;
2297 args.out.args[0].size = sizeof(outarg);
2298 args.out.args[0].value = &outarg;
2299 err = fuse_simple_request(fc, &args);
2300 if (err) {
2301 if (err == -ENOSYS) {
2302 fc->no_lseek = 1;
2303 goto fallback;
2304 }
2305 return err;
2306 }
2307
2308 return vfs_setpos(file, outarg.offset, inode->i_sb->s_maxbytes);
2309
2310fallback:
Miklos Szeredi5b97eea2017-09-12 16:57:54 +02002311 err = fuse_update_attributes(inode, file);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302312 if (!err)
2313 return generic_file_llseek(file, offset, whence);
2314 else
2315 return err;
2316}
2317
Andrew Morton965c8e52012-12-17 15:59:39 -08002318static loff_t fuse_file_llseek(struct file *file, loff_t offset, int whence)
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002319{
2320 loff_t retval;
Al Viro6131ffa2013-02-27 16:59:05 -05002321 struct inode *inode = file_inode(file);
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002322
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302323 switch (whence) {
2324 case SEEK_SET:
2325 case SEEK_CUR:
2326 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
Andrew Morton965c8e52012-12-17 15:59:39 -08002327 retval = generic_file_llseek(file, offset, whence);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302328 break;
2329 case SEEK_END:
Al Viro59551022016-01-22 15:40:57 -05002330 inode_lock(inode);
Miklos Szeredi5b97eea2017-09-12 16:57:54 +02002331 retval = fuse_update_attributes(inode, file);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302332 if (!retval)
2333 retval = generic_file_llseek(file, offset, whence);
Al Viro59551022016-01-22 15:40:57 -05002334 inode_unlock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302335 break;
2336 case SEEK_HOLE:
2337 case SEEK_DATA:
Al Viro59551022016-01-22 15:40:57 -05002338 inode_lock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302339 retval = fuse_lseek(file, offset, whence);
Al Viro59551022016-01-22 15:40:57 -05002340 inode_unlock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302341 break;
2342 default:
2343 retval = -EINVAL;
2344 }
Miklos Szeredic07c3d12011-12-13 11:58:48 +01002345
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002346 return retval;
2347}
2348
Tejun Heo59efec72008-11-26 12:03:55 +01002349/*
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002350 * CUSE servers compiled on 32bit broke on 64bit kernels because the
2351 * ABI was defined to be 'struct iovec' which is different on 32bit
2352 * and 64bit. Fortunately we can determine which structure the server
2353 * used from the size of the reply.
2354 */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002355static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
2356 size_t transferred, unsigned count,
2357 bool is_compat)
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002358{
2359#ifdef CONFIG_COMPAT
2360 if (count * sizeof(struct compat_iovec) == transferred) {
2361 struct compat_iovec *ciov = src;
2362 unsigned i;
2363
2364 /*
2365 * With this interface a 32bit server cannot support
2366 * non-compat (i.e. ones coming from 64bit apps) ioctl
2367 * requests
2368 */
2369 if (!is_compat)
2370 return -EINVAL;
2371
2372 for (i = 0; i < count; i++) {
2373 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
2374 dst[i].iov_len = ciov[i].iov_len;
2375 }
2376 return 0;
2377 }
2378#endif
2379
2380 if (count * sizeof(struct iovec) != transferred)
2381 return -EIO;
2382
2383 memcpy(dst, src, transferred);
2384 return 0;
2385}
2386
Miklos Szeredi75727772010-11-30 16:39:27 +01002387/* Make sure iov_length() won't overflow */
2388static int fuse_verify_ioctl_iov(struct iovec *iov, size_t count)
2389{
2390 size_t n;
2391 u32 max = FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT;
2392
Zach Brownfb6ccff2012-07-24 12:10:11 -07002393 for (n = 0; n < count; n++, iov++) {
Miklos Szeredi75727772010-11-30 16:39:27 +01002394 if (iov->iov_len > (size_t) max)
2395 return -ENOMEM;
2396 max -= iov->iov_len;
2397 }
2398 return 0;
2399}
2400
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002401static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
2402 void *src, size_t transferred, unsigned count,
2403 bool is_compat)
2404{
2405 unsigned i;
2406 struct fuse_ioctl_iovec *fiov = src;
2407
2408 if (fc->minor < 16) {
2409 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
2410 count, is_compat);
2411 }
2412
2413 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
2414 return -EIO;
2415
2416 for (i = 0; i < count; i++) {
2417 /* Did the server supply an inappropriate value? */
2418 if (fiov[i].base != (unsigned long) fiov[i].base ||
2419 fiov[i].len != (unsigned long) fiov[i].len)
2420 return -EIO;
2421
2422 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
2423 dst[i].iov_len = (size_t) fiov[i].len;
2424
2425#ifdef CONFIG_COMPAT
2426 if (is_compat &&
2427 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
2428 (compat_size_t) dst[i].iov_len != fiov[i].len))
2429 return -EIO;
2430#endif
2431 }
2432
2433 return 0;
2434}
2435
2436
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002437/*
Tejun Heo59efec72008-11-26 12:03:55 +01002438 * For ioctls, there is no generic way to determine how much memory
2439 * needs to be read and/or written. Furthermore, ioctls are allowed
2440 * to dereference the passed pointer, so the parameter requires deep
2441 * copying but FUSE has no idea whatsoever about what to copy in or
2442 * out.
2443 *
2444 * This is solved by allowing FUSE server to retry ioctl with
2445 * necessary in/out iovecs. Let's assume the ioctl implementation
2446 * needs to read in the following structure.
2447 *
2448 * struct a {
2449 * char *buf;
2450 * size_t buflen;
2451 * }
2452 *
2453 * On the first callout to FUSE server, inarg->in_size and
2454 * inarg->out_size will be NULL; then, the server completes the ioctl
2455 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
2456 * the actual iov array to
2457 *
2458 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
2459 *
2460 * which tells FUSE to copy in the requested area and retry the ioctl.
2461 * On the second round, the server has access to the structure and
2462 * from that it can tell what to look for next, so on the invocation,
2463 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
2464 *
2465 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
2466 * { .iov_base = a.buf, .iov_len = a.buflen } }
2467 *
2468 * FUSE will copy both struct a and the pointed buffer from the
2469 * process doing the ioctl and retry ioctl with both struct a and the
2470 * buffer.
2471 *
2472 * This time, FUSE server has everything it needs and completes ioctl
2473 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
2474 *
2475 * Copying data out works the same way.
2476 *
2477 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
2478 * automatically initializes in and out iovs by decoding @cmd with
2479 * _IOC_* macros and the server is not allowed to request RETRY. This
2480 * limits ioctl data transfers to well-formed ioctls and is the forced
2481 * behavior for all FUSE servers.
2482 */
Tejun Heo08cbf542009-04-14 10:54:53 +09002483long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
2484 unsigned int flags)
Tejun Heo59efec72008-11-26 12:03:55 +01002485{
Tejun Heo59efec72008-11-26 12:03:55 +01002486 struct fuse_file *ff = file->private_data;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002487 struct fuse_conn *fc = ff->fc;
Tejun Heo59efec72008-11-26 12:03:55 +01002488 struct fuse_ioctl_in inarg = {
2489 .fh = ff->fh,
2490 .cmd = cmd,
2491 .arg = arg,
2492 .flags = flags
2493 };
2494 struct fuse_ioctl_out outarg;
2495 struct fuse_req *req = NULL;
2496 struct page **pages = NULL;
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002497 struct iovec *iov_page = NULL;
Tejun Heo59efec72008-11-26 12:03:55 +01002498 struct iovec *in_iov = NULL, *out_iov = NULL;
2499 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002500 size_t in_size, out_size, transferred, c;
2501 int err, i;
2502 struct iov_iter ii;
Tejun Heo59efec72008-11-26 12:03:55 +01002503
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002504#if BITS_PER_LONG == 32
2505 inarg.flags |= FUSE_IOCTL_32BIT;
2506#else
2507 if (flags & FUSE_IOCTL_COMPAT)
2508 inarg.flags |= FUSE_IOCTL_32BIT;
2509#endif
2510
Tejun Heo59efec72008-11-26 12:03:55 +01002511 /* assume all the iovs returned by client always fits in a page */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002512 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
Tejun Heo59efec72008-11-26 12:03:55 +01002513
Tejun Heo59efec72008-11-26 12:03:55 +01002514 err = -ENOMEM;
Thomas Meyerc411cc82011-11-29 22:08:00 +01002515 pages = kcalloc(FUSE_MAX_PAGES_PER_REQ, sizeof(pages[0]), GFP_KERNEL);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002516 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
Tejun Heo59efec72008-11-26 12:03:55 +01002517 if (!pages || !iov_page)
2518 goto out;
2519
2520 /*
2521 * If restricted, initialize IO parameters as encoded in @cmd.
2522 * RETRY from server is not allowed.
2523 */
2524 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002525 struct iovec *iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002526
Miklos Szeredic9f0523d2008-12-02 14:49:42 +01002527 iov->iov_base = (void __user *)arg;
Tejun Heo59efec72008-11-26 12:03:55 +01002528 iov->iov_len = _IOC_SIZE(cmd);
2529
2530 if (_IOC_DIR(cmd) & _IOC_WRITE) {
2531 in_iov = iov;
2532 in_iovs = 1;
2533 }
2534
2535 if (_IOC_DIR(cmd) & _IOC_READ) {
2536 out_iov = iov;
2537 out_iovs = 1;
2538 }
2539 }
2540
2541 retry:
2542 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
2543 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
2544
2545 /*
2546 * Out data can be used either for actual out data or iovs,
2547 * make sure there always is at least one page.
2548 */
2549 out_size = max_t(size_t, out_size, PAGE_SIZE);
2550 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
2551
2552 /* make sure there are enough buffer pages and init request with them */
2553 err = -ENOMEM;
2554 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
2555 goto out;
2556 while (num_pages < max_pages) {
2557 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2558 if (!pages[num_pages])
2559 goto out;
2560 num_pages++;
2561 }
2562
Maxim Patlasov54b96672012-10-26 19:49:13 +04002563 req = fuse_get_req(fc, num_pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002564 if (IS_ERR(req)) {
2565 err = PTR_ERR(req);
2566 req = NULL;
2567 goto out;
2568 }
2569 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
2570 req->num_pages = num_pages;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04002571 fuse_page_descs_length_init(req, 0, req->num_pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002572
2573 /* okay, let's send it to the client */
2574 req->in.h.opcode = FUSE_IOCTL;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002575 req->in.h.nodeid = ff->nodeid;
Tejun Heo59efec72008-11-26 12:03:55 +01002576 req->in.numargs = 1;
2577 req->in.args[0].size = sizeof(inarg);
2578 req->in.args[0].value = &inarg;
2579 if (in_size) {
2580 req->in.numargs++;
2581 req->in.args[1].size = in_size;
2582 req->in.argpages = 1;
2583
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002584 err = -EFAULT;
2585 iov_iter_init(&ii, WRITE, in_iov, in_iovs, in_size);
2586 for (i = 0; iov_iter_count(&ii) && !WARN_ON(i >= num_pages); i++) {
2587 c = copy_page_from_iter(pages[i], 0, PAGE_SIZE, &ii);
2588 if (c != PAGE_SIZE && iov_iter_count(&ii))
2589 goto out;
2590 }
Tejun Heo59efec72008-11-26 12:03:55 +01002591 }
2592
2593 req->out.numargs = 2;
2594 req->out.args[0].size = sizeof(outarg);
2595 req->out.args[0].value = &outarg;
2596 req->out.args[1].size = out_size;
2597 req->out.argpages = 1;
2598 req->out.argvar = 1;
2599
Tejun Heob93f8582008-11-26 12:03:55 +01002600 fuse_request_send(fc, req);
Tejun Heo59efec72008-11-26 12:03:55 +01002601 err = req->out.h.error;
2602 transferred = req->out.args[1].size;
2603 fuse_put_request(fc, req);
2604 req = NULL;
2605 if (err)
2606 goto out;
2607
2608 /* did it ask for retry? */
2609 if (outarg.flags & FUSE_IOCTL_RETRY) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002610 void *vaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01002611
2612 /* no retry if in restricted mode */
2613 err = -EIO;
2614 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
2615 goto out;
2616
2617 in_iovs = outarg.in_iovs;
2618 out_iovs = outarg.out_iovs;
2619
2620 /*
2621 * Make sure things are in boundary, separate checks
2622 * are to protect against overflow.
2623 */
2624 err = -ENOMEM;
2625 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
2626 out_iovs > FUSE_IOCTL_MAX_IOV ||
2627 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
2628 goto out;
2629
Cong Wang2408f6e2011-11-25 23:14:30 +08002630 vaddr = kmap_atomic(pages[0]);
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002631 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002632 transferred, in_iovs + out_iovs,
2633 (flags & FUSE_IOCTL_COMPAT) != 0);
Cong Wang2408f6e2011-11-25 23:14:30 +08002634 kunmap_atomic(vaddr);
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002635 if (err)
2636 goto out;
Tejun Heo59efec72008-11-26 12:03:55 +01002637
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002638 in_iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002639 out_iov = in_iov + in_iovs;
2640
Miklos Szeredi75727772010-11-30 16:39:27 +01002641 err = fuse_verify_ioctl_iov(in_iov, in_iovs);
2642 if (err)
2643 goto out;
2644
2645 err = fuse_verify_ioctl_iov(out_iov, out_iovs);
2646 if (err)
2647 goto out;
2648
Tejun Heo59efec72008-11-26 12:03:55 +01002649 goto retry;
2650 }
2651
2652 err = -EIO;
2653 if (transferred > inarg.out_size)
2654 goto out;
2655
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002656 err = -EFAULT;
2657 iov_iter_init(&ii, READ, out_iov, out_iovs, transferred);
2658 for (i = 0; iov_iter_count(&ii) && !WARN_ON(i >= num_pages); i++) {
2659 c = copy_page_to_iter(pages[i], 0, PAGE_SIZE, &ii);
2660 if (c != PAGE_SIZE && iov_iter_count(&ii))
2661 goto out;
2662 }
2663 err = 0;
Tejun Heo59efec72008-11-26 12:03:55 +01002664 out:
2665 if (req)
2666 fuse_put_request(fc, req);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002667 free_page((unsigned long) iov_page);
Tejun Heo59efec72008-11-26 12:03:55 +01002668 while (num_pages)
2669 __free_page(pages[--num_pages]);
2670 kfree(pages);
2671
2672 return err ? err : outarg.result;
2673}
Tejun Heo08cbf542009-04-14 10:54:53 +09002674EXPORT_SYMBOL_GPL(fuse_do_ioctl);
Tejun Heo59efec72008-11-26 12:03:55 +01002675
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002676long fuse_ioctl_common(struct file *file, unsigned int cmd,
2677 unsigned long arg, unsigned int flags)
Miklos Szeredid36f2482009-04-28 16:56:39 +02002678{
Al Viro6131ffa2013-02-27 16:59:05 -05002679 struct inode *inode = file_inode(file);
Miklos Szeredid36f2482009-04-28 16:56:39 +02002680 struct fuse_conn *fc = get_fuse_conn(inode);
2681
Anatol Pomozovc2132c12013-01-14 22:30:00 -08002682 if (!fuse_allow_current_process(fc))
Miklos Szeredid36f2482009-04-28 16:56:39 +02002683 return -EACCES;
2684
2685 if (is_bad_inode(inode))
2686 return -EIO;
2687
2688 return fuse_do_ioctl(file, cmd, arg, flags);
2689}
2690
Tejun Heo59efec72008-11-26 12:03:55 +01002691static long fuse_file_ioctl(struct file *file, unsigned int cmd,
2692 unsigned long arg)
2693{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002694 return fuse_ioctl_common(file, cmd, arg, 0);
Tejun Heo59efec72008-11-26 12:03:55 +01002695}
2696
2697static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
2698 unsigned long arg)
2699{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002700 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
Tejun Heo59efec72008-11-26 12:03:55 +01002701}
2702
Tejun Heo95668a62008-11-26 12:03:55 +01002703/*
2704 * All files which have been polled are linked to RB tree
2705 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2706 * find the matching one.
2707 */
2708static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2709 struct rb_node **parent_out)
2710{
2711 struct rb_node **link = &fc->polled_files.rb_node;
2712 struct rb_node *last = NULL;
2713
2714 while (*link) {
2715 struct fuse_file *ff;
2716
2717 last = *link;
2718 ff = rb_entry(last, struct fuse_file, polled_node);
2719
2720 if (kh < ff->kh)
2721 link = &last->rb_left;
2722 else if (kh > ff->kh)
2723 link = &last->rb_right;
2724 else
2725 return link;
2726 }
2727
2728 if (parent_out)
2729 *parent_out = last;
2730 return link;
2731}
2732
2733/*
2734 * The file is about to be polled. Make sure it's on the polled_files
2735 * RB tree. Note that files once added to the polled_files tree are
2736 * not removed before the file is released. This is because a file
2737 * polled once is likely to be polled again.
2738 */
2739static void fuse_register_polled_file(struct fuse_conn *fc,
2740 struct fuse_file *ff)
2741{
2742 spin_lock(&fc->lock);
2743 if (RB_EMPTY_NODE(&ff->polled_node)) {
Rajat Jainf3846262014-02-05 15:24:57 -08002744 struct rb_node **link, *uninitialized_var(parent);
Tejun Heo95668a62008-11-26 12:03:55 +01002745
2746 link = fuse_find_polled_node(fc, ff->kh, &parent);
2747 BUG_ON(*link);
2748 rb_link_node(&ff->polled_node, parent, link);
2749 rb_insert_color(&ff->polled_node, &fc->polled_files);
2750 }
2751 spin_unlock(&fc->lock);
2752}
2753
Al Viro076ccb72017-07-03 01:02:18 -04002754__poll_t fuse_file_poll(struct file *file, poll_table *wait)
Tejun Heo95668a62008-11-26 12:03:55 +01002755{
Tejun Heo95668a62008-11-26 12:03:55 +01002756 struct fuse_file *ff = file->private_data;
Miklos Szeredi797759a2009-04-28 16:56:41 +02002757 struct fuse_conn *fc = ff->fc;
Tejun Heo95668a62008-11-26 12:03:55 +01002758 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2759 struct fuse_poll_out outarg;
Miklos Szeredi70781872014-12-12 09:49:05 +01002760 FUSE_ARGS(args);
Tejun Heo95668a62008-11-26 12:03:55 +01002761 int err;
2762
2763 if (fc->no_poll)
2764 return DEFAULT_POLLMASK;
2765
2766 poll_wait(file, &ff->poll_wait, wait);
Al Viroc71d2272017-11-29 19:00:41 -05002767 inarg.events = mangle_poll(poll_requested_events(wait));
Tejun Heo95668a62008-11-26 12:03:55 +01002768
2769 /*
2770 * Ask for notification iff there's someone waiting for it.
2771 * The client may ignore the flag and always notify.
2772 */
2773 if (waitqueue_active(&ff->poll_wait)) {
2774 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2775 fuse_register_polled_file(fc, ff);
2776 }
2777
Miklos Szeredi70781872014-12-12 09:49:05 +01002778 args.in.h.opcode = FUSE_POLL;
2779 args.in.h.nodeid = ff->nodeid;
2780 args.in.numargs = 1;
2781 args.in.args[0].size = sizeof(inarg);
2782 args.in.args[0].value = &inarg;
2783 args.out.numargs = 1;
2784 args.out.args[0].size = sizeof(outarg);
2785 args.out.args[0].value = &outarg;
2786 err = fuse_simple_request(fc, &args);
Tejun Heo95668a62008-11-26 12:03:55 +01002787
2788 if (!err)
Al Viroc71d2272017-11-29 19:00:41 -05002789 return demangle_poll(outarg.revents);
Tejun Heo95668a62008-11-26 12:03:55 +01002790 if (err == -ENOSYS) {
2791 fc->no_poll = 1;
2792 return DEFAULT_POLLMASK;
2793 }
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002794 return EPOLLERR;
Tejun Heo95668a62008-11-26 12:03:55 +01002795}
Tejun Heo08cbf542009-04-14 10:54:53 +09002796EXPORT_SYMBOL_GPL(fuse_file_poll);
Tejun Heo95668a62008-11-26 12:03:55 +01002797
2798/*
2799 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2800 * wakes up the poll waiters.
2801 */
2802int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2803 struct fuse_notify_poll_wakeup_out *outarg)
2804{
2805 u64 kh = outarg->kh;
2806 struct rb_node **link;
2807
2808 spin_lock(&fc->lock);
2809
2810 link = fuse_find_polled_node(fc, kh, NULL);
2811 if (*link) {
2812 struct fuse_file *ff;
2813
2814 ff = rb_entry(*link, struct fuse_file, polled_node);
2815 wake_up_interruptible_sync(&ff->poll_wait);
2816 }
2817
2818 spin_unlock(&fc->lock);
2819 return 0;
2820}
2821
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002822static void fuse_do_truncate(struct file *file)
2823{
2824 struct inode *inode = file->f_mapping->host;
2825 struct iattr attr;
2826
2827 attr.ia_valid = ATTR_SIZE;
2828 attr.ia_size = i_size_read(inode);
2829
2830 attr.ia_file = file;
2831 attr.ia_valid |= ATTR_FILE;
2832
Jan Kara62490332016-05-26 17:12:41 +02002833 fuse_do_setattr(file_dentry(file), &attr, file);
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002834}
2835
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002836static inline loff_t fuse_round_up(loff_t off)
2837{
2838 return round_up(off, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
2839}
2840
Anand Avati4273b792012-02-17 12:46:25 -05002841static ssize_t
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07002842fuse_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Anand Avati4273b792012-02-17 12:46:25 -05002843{
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002844 DECLARE_COMPLETION_ONSTACK(wait);
Anand Avati4273b792012-02-17 12:46:25 -05002845 ssize_t ret = 0;
Miklos Szeredi60b9df72013-05-01 14:37:21 +02002846 struct file *file = iocb->ki_filp;
2847 struct fuse_file *ff = file->private_data;
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002848 bool async_dio = ff->fc->async_dio;
Anand Avati4273b792012-02-17 12:46:25 -05002849 loff_t pos = 0;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002850 struct inode *inode;
2851 loff_t i_size;
Al Viroa6cbcd42014-03-04 22:38:00 -05002852 size_t count = iov_iter_count(iter);
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07002853 loff_t offset = iocb->ki_pos;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002854 struct fuse_io_priv *io;
Anand Avati4273b792012-02-17 12:46:25 -05002855
Anand Avati4273b792012-02-17 12:46:25 -05002856 pos = offset;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002857 inode = file->f_mapping->host;
2858 i_size = i_size_read(inode);
Anand Avati4273b792012-02-17 12:46:25 -05002859
Omar Sandoval6f673762015-03-16 04:33:52 -07002860 if ((iov_iter_rw(iter) == READ) && (offset > i_size))
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00002861 return 0;
2862
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002863 /* optimization for short read */
Omar Sandoval6f673762015-03-16 04:33:52 -07002864 if (async_dio && iov_iter_rw(iter) != WRITE && offset + count > i_size) {
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002865 if (offset >= i_size)
2866 return 0;
Al Viro6b775b12015-04-07 15:06:19 -04002867 iov_iter_truncate(iter, fuse_round_up(i_size - offset));
2868 count = iov_iter_count(iter);
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002869 }
2870
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002871 io = kmalloc(sizeof(struct fuse_io_priv), GFP_KERNEL);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002872 if (!io)
2873 return -ENOMEM;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002874 spin_lock_init(&io->lock);
Seth Forshee744742d2016-03-11 10:35:34 -06002875 kref_init(&io->refcnt);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002876 io->reqs = 1;
2877 io->bytes = -1;
2878 io->size = 0;
2879 io->offset = offset;
Omar Sandoval6f673762015-03-16 04:33:52 -07002880 io->write = (iov_iter_rw(iter) == WRITE);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002881 io->err = 0;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002882 /*
2883 * By default, we want to optimize all I/Os with async request
Miklos Szeredi60b9df72013-05-01 14:37:21 +02002884 * submission to the client filesystem if supported.
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002885 */
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002886 io->async = async_dio;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002887 io->iocb = iocb;
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302888 io->blocking = is_sync_kiocb(iocb);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002889
2890 /*
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302891 * We cannot asynchronously extend the size of a file.
2892 * In such case the aio will behave exactly like sync io.
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002893 */
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302894 if ((offset + count > i_size) && iov_iter_rw(iter) == WRITE)
2895 io->blocking = true;
Anand Avati4273b792012-02-17 12:46:25 -05002896
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302897 if (io->async && io->blocking) {
Seth Forshee744742d2016-03-11 10:35:34 -06002898 /*
2899 * Additional reference to keep io around after
2900 * calling fuse_aio_complete()
2901 */
2902 kref_get(&io->refcnt);
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002903 io->done = &wait;
Seth Forshee744742d2016-03-11 10:35:34 -06002904 }
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002905
Omar Sandoval6f673762015-03-16 04:33:52 -07002906 if (iov_iter_rw(iter) == WRITE) {
Al Viro6b775b12015-04-07 15:06:19 -04002907 ret = fuse_direct_io(io, iter, &pos, FUSE_DIO_WRITE);
Al Viro812408f2015-03-30 22:15:58 -04002908 fuse_invalidate_attr(inode);
2909 } else {
Al Virod22a9432014-03-16 15:50:47 -04002910 ret = __fuse_direct_read(io, iter, &pos);
Al Viro812408f2015-03-30 22:15:58 -04002911 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002912
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002913 if (io->async) {
2914 fuse_aio_complete(io, ret < 0 ? ret : 0, -1);
2915
2916 /* we have a non-extending, async request, so return */
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302917 if (!io->blocking)
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002918 return -EIOCBQUEUED;
2919
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002920 wait_for_completion(&wait);
2921 ret = fuse_get_res_by_io(io);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002922 }
2923
Seth Forshee744742d2016-03-11 10:35:34 -06002924 kref_put(&io->refcnt, fuse_io_release);
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002925
Omar Sandoval6f673762015-03-16 04:33:52 -07002926 if (iov_iter_rw(iter) == WRITE) {
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002927 if (ret > 0)
2928 fuse_write_update_size(inode, pos);
2929 else if (ret < 0 && offset + count > i_size)
2930 fuse_do_truncate(file);
2931 }
Anand Avati4273b792012-02-17 12:46:25 -05002932
2933 return ret;
2934}
2935
Miklos Szeredicdadb112012-11-10 16:55:56 +01002936static long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
2937 loff_t length)
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002938{
2939 struct fuse_file *ff = file->private_data;
Miklos Szeredi1c682712014-12-12 10:04:51 +01002940 struct inode *inode = file_inode(file);
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002941 struct fuse_inode *fi = get_fuse_inode(inode);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002942 struct fuse_conn *fc = ff->fc;
Miklos Szeredi70781872014-12-12 09:49:05 +01002943 FUSE_ARGS(args);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002944 struct fuse_fallocate_in inarg = {
2945 .fh = ff->fh,
2946 .offset = offset,
2947 .length = length,
2948 .mode = mode
2949 };
2950 int err;
Maxim Patlasov14c14412013-06-13 12:16:39 +04002951 bool lock_inode = !(mode & FALLOC_FL_KEEP_SIZE) ||
2952 (mode & FALLOC_FL_PUNCH_HOLE);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002953
Miklos Szeredi4adb8302014-04-28 14:19:21 +02002954 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2955 return -EOPNOTSUPP;
2956
Miklos Szeredi519c6042012-04-26 10:56:36 +02002957 if (fc->no_fallocate)
2958 return -EOPNOTSUPP;
2959
Maxim Patlasov14c14412013-06-13 12:16:39 +04002960 if (lock_inode) {
Al Viro59551022016-01-22 15:40:57 -05002961 inode_lock(inode);
Maxim Patlasovbde52782013-09-13 19:19:54 +04002962 if (mode & FALLOC_FL_PUNCH_HOLE) {
2963 loff_t endbyte = offset + length - 1;
2964 err = filemap_write_and_wait_range(inode->i_mapping,
2965 offset, endbyte);
2966 if (err)
2967 goto out;
2968
2969 fuse_sync_writes(inode);
2970 }
Brian Foster3634a632013-05-17 09:30:32 -04002971 }
2972
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002973 if (!(mode & FALLOC_FL_KEEP_SIZE))
2974 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
2975
Miklos Szeredi70781872014-12-12 09:49:05 +01002976 args.in.h.opcode = FUSE_FALLOCATE;
2977 args.in.h.nodeid = ff->nodeid;
2978 args.in.numargs = 1;
2979 args.in.args[0].size = sizeof(inarg);
2980 args.in.args[0].value = &inarg;
2981 err = fuse_simple_request(fc, &args);
Miklos Szeredi519c6042012-04-26 10:56:36 +02002982 if (err == -ENOSYS) {
2983 fc->no_fallocate = 1;
2984 err = -EOPNOTSUPP;
2985 }
Brian Fosterbee6c302013-05-17 15:27:34 -04002986 if (err)
2987 goto out;
2988
2989 /* we could have extended the file */
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04002990 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
2991 bool changed = fuse_write_update_size(inode, offset + length);
2992
Miklos Szeredi93d22692014-04-28 14:19:22 +02002993 if (changed && fc->writeback_cache)
2994 file_update_time(file);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04002995 }
Brian Fosterbee6c302013-05-17 15:27:34 -04002996
2997 if (mode & FALLOC_FL_PUNCH_HOLE)
2998 truncate_pagecache_range(inode, offset, offset + length - 1);
2999
3000 fuse_invalidate_attr(inode);
3001
Brian Foster3634a632013-05-17 09:30:32 -04003002out:
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04003003 if (!(mode & FALLOC_FL_KEEP_SIZE))
3004 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
3005
Maxim Patlasovbde52782013-09-13 19:19:54 +04003006 if (lock_inode)
Al Viro59551022016-01-22 15:40:57 -05003007 inode_unlock(inode);
Brian Foster3634a632013-05-17 09:30:32 -04003008
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003009 return err;
3010}
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003011
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08003012static const struct file_operations fuse_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07003013 .llseek = fuse_file_llseek,
Al Viro37c20f12014-04-02 14:47:09 -04003014 .read_iter = fuse_file_read_iter,
Al Viro84c3d552014-04-03 14:33:23 -04003015 .write_iter = fuse_file_write_iter,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003016 .mmap = fuse_file_mmap,
3017 .open = fuse_open,
3018 .flush = fuse_flush,
3019 .release = fuse_release,
3020 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07003021 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07003022 .flock = fuse_file_flock,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02003023 .splice_read = generic_file_splice_read,
Tejun Heo59efec72008-11-26 12:03:55 +01003024 .unlocked_ioctl = fuse_file_ioctl,
3025 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01003026 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003027 .fallocate = fuse_file_fallocate,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003028};
3029
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08003030static const struct file_operations fuse_direct_io_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07003031 .llseek = fuse_file_llseek,
Al Viro153162632015-03-30 22:08:36 -04003032 .read_iter = fuse_direct_read_iter,
Al Viro153162632015-03-30 22:08:36 -04003033 .write_iter = fuse_direct_write_iter,
Miklos Szeredifc280c92009-04-02 14:25:35 +02003034 .mmap = fuse_direct_mmap,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07003035 .open = fuse_open,
3036 .flush = fuse_flush,
3037 .release = fuse_release,
3038 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07003039 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07003040 .flock = fuse_file_flock,
Tejun Heo59efec72008-11-26 12:03:55 +01003041 .unlocked_ioctl = fuse_file_ioctl,
3042 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01003043 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003044 .fallocate = fuse_file_fallocate,
Miklos Szeredifc280c92009-04-02 14:25:35 +02003045 /* no splice_read */
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07003046};
3047
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07003048static const struct address_space_operations fuse_file_aops = {
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003049 .readpage = fuse_readpage,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003050 .writepage = fuse_writepage,
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04003051 .writepages = fuse_writepages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003052 .launder_page = fuse_launder_page,
Miklos Szeredidb50b962005-09-09 13:10:33 -07003053 .readpages = fuse_readpages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003054 .set_page_dirty = __set_page_dirty_nobuffers,
Miklos Szeredib2d22722006-12-06 20:35:51 -08003055 .bmap = fuse_bmap,
Anand Avati4273b792012-02-17 12:46:25 -05003056 .direct_IO = fuse_direct_IO,
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04003057 .write_begin = fuse_write_begin,
3058 .write_end = fuse_write_end,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003059};
3060
3061void fuse_init_file_inode(struct inode *inode)
3062{
Miklos Szeredi45323fb2005-09-09 13:10:37 -07003063 inode->i_fop = &fuse_file_operations;
3064 inode->i_data.a_ops = &fuse_file_aops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003065}