blob: 3ee4fdc3da9ec359ad847afa36354240329a2da6 [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
Miklos Szeredifd72faa2005-11-07 00:59:51 -080049 ff = kmalloc(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 Patlasov75caeec2014-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 Patlasov75caeec2014-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 Patlasov75caeec2014-04-28 14:19:22 +0200210 if (lock_inode)
Al Viro59551022016-01-22 15:40:57 -0500211 inode_lock(inode);
Maxim Patlasov75caeec2014-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 Patlasov75caeec2014-04-28 14:19:22 +0200215 if (!err)
216 fuse_finish_open(inode, file);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200217
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200218 if (lock_inode)
Al Viro59551022016-01-22 15:40:57 -0500219 inode_unlock(inode);
Maxim Patlasov75caeec2014-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 */
Miklos Szeredi22401e72014-04-28 14:19:23 +0200460 err = filemap_write_and_wait_range(inode->i_mapping, 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
468 * filemap_write_and_wait_range() does not catch errors.
469 * We have to do this directly after fuse_sync_writes()
470 */
Miklos Szeredi4a7f4e82016-07-29 14:10:57 +0200471 err = filemap_check_errors(file->f_mapping);
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
612 fuse_release_user_pages(req, !io->write);
613
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{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400648 struct file *file = io->file;
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{
Seth Forshee744742d2016-03-11 10:35:34 -0600710 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700711 struct inode *inode = page->mapping->host;
712 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800713 struct fuse_req *req;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700714 size_t num_read;
715 loff_t pos = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300716 size_t count = PAGE_SIZE;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700717 u64 attr_ver;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800718 int err;
719
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700720 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300721 * Page writeback can extend beyond the lifetime of the
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700722 * page-cache page, so make sure we read a properly synced
723 * page.
724 */
725 fuse_wait_on_page_writeback(inode, page->index);
726
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400727 req = fuse_get_req(fc, 1);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700728 if (IS_ERR(req))
Maxim Patlasov482fce52013-10-10 17:11:25 +0400729 return PTR_ERR(req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700730
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700731 attr_ver = fuse_get_attr_version(fc);
732
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700733 req->out.page_zeroing = 1;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200734 req->out.argpages = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700735 req->num_pages = 1;
736 req->pages[0] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400737 req->page_descs[0].length = count;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400738 num_read = fuse_send_read(req, &io, pos, count, NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700739 err = req->out.h.error;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700740
741 if (!err) {
742 /*
743 * Short read means EOF. If file size is larger, truncate it
744 */
745 if (num_read < count)
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400746 fuse_short_read(req, inode, attr_ver);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700747
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700748 SetPageUptodate(page);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700749 }
750
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400751 fuse_put_request(fc, req);
Maxim Patlasov482fce52013-10-10 17:11:25 +0400752
753 return err;
754}
755
756static int fuse_readpage(struct file *file, struct page *page)
757{
758 struct inode *inode = page->mapping->host;
759 int err;
760
761 err = -EIO;
762 if (is_bad_inode(inode))
763 goto out;
764
765 err = fuse_do_readpage(file, page);
Andrew Gallagher451418f2013-11-05 03:55:43 -0800766 fuse_invalidate_atime(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700767 out:
768 unlock_page(page);
769 return err;
770}
771
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800772static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredidb50b962005-09-09 13:10:33 -0700773{
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800774 int i;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700775 size_t count = req->misc.read.in.size;
776 size_t num_read = req->out.args[0].size;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200777 struct address_space *mapping = NULL;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800778
Miklos Szeredice534fb2010-05-25 15:06:07 +0200779 for (i = 0; mapping == NULL && i < req->num_pages; i++)
780 mapping = req->pages[i]->mapping;
781
782 if (mapping) {
783 struct inode *inode = mapping->host;
784
785 /*
786 * Short read means EOF. If file size is larger, truncate it
787 */
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400788 if (!req->out.h.error && num_read < count)
789 fuse_short_read(req, inode, req->misc.read.attr_ver);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200790
Andrew Gallagher451418f2013-11-05 03:55:43 -0800791 fuse_invalidate_atime(inode);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700792 }
793
Miklos Szeredidb50b962005-09-09 13:10:33 -0700794 for (i = 0; i < req->num_pages; i++) {
795 struct page *page = req->pages[i];
796 if (!req->out.h.error)
797 SetPageUptodate(page);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800798 else
799 SetPageError(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700800 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300801 put_page(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700802 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700803 if (req->ff)
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100804 fuse_file_put(req->ff, false);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800805}
806
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200807static void fuse_send_readpages(struct fuse_req *req, struct file *file)
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800808{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200809 struct fuse_file *ff = file->private_data;
810 struct fuse_conn *fc = ff->fc;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800811 loff_t pos = page_offset(req->pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300812 size_t count = req->num_pages << PAGE_SHIFT;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200813
814 req->out.argpages = 1;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800815 req->out.page_zeroing = 1;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200816 req->out.page_replace = 1;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200817 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700818 req->misc.read.attr_ver = fuse_get_attr_version(fc);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800819 if (fc->async_read) {
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700820 req->ff = fuse_file_get(ff);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800821 req->end = fuse_readpages_end;
Tejun Heob93f8582008-11-26 12:03:55 +0100822 fuse_request_send_background(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800823 } else {
Tejun Heob93f8582008-11-26 12:03:55 +0100824 fuse_request_send(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800825 fuse_readpages_end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100826 fuse_put_request(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800827 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700828}
829
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700830struct fuse_fill_data {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700831 struct fuse_req *req;
Miklos Szeredia6643092007-11-28 16:22:00 -0800832 struct file *file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700833 struct inode *inode;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400834 unsigned nr_pages;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700835};
836
837static int fuse_readpages_fill(void *_data, struct page *page)
838{
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700839 struct fuse_fill_data *data = _data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700840 struct fuse_req *req = data->req;
841 struct inode *inode = data->inode;
842 struct fuse_conn *fc = get_fuse_conn(inode);
843
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700844 fuse_wait_on_page_writeback(inode, page->index);
845
Miklos Szeredidb50b962005-09-09 13:10:33 -0700846 if (req->num_pages &&
847 (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300848 (req->num_pages + 1) * PAGE_SIZE > fc->max_read ||
Miklos Szeredidb50b962005-09-09 13:10:33 -0700849 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400850 int nr_alloc = min_t(unsigned, data->nr_pages,
851 FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200852 fuse_send_readpages(req, data->file);
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400853 if (fc->async_read)
854 req = fuse_get_req_for_background(fc, nr_alloc);
855 else
856 req = fuse_get_req(fc, nr_alloc);
857
858 data->req = req;
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700859 if (IS_ERR(req)) {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700860 unlock_page(page);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700861 return PTR_ERR(req);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700862 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700863 }
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400864
865 if (WARN_ON(req->num_pages >= req->max_pages)) {
866 fuse_put_request(fc, req);
867 return -EIO;
868 }
869
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300870 get_page(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700871 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400872 req->page_descs[req->num_pages].length = PAGE_SIZE;
Miklos Szeredi1729a162008-11-26 12:03:54 +0100873 req->num_pages++;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400874 data->nr_pages--;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700875 return 0;
876}
877
878static int fuse_readpages(struct file *file, struct address_space *mapping,
879 struct list_head *pages, unsigned nr_pages)
880{
881 struct inode *inode = mapping->host;
882 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700883 struct fuse_fill_data data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700884 int err;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400885 int nr_alloc = min_t(unsigned, nr_pages, FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800886
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700887 err = -EIO;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800888 if (is_bad_inode(inode))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800889 goto out;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800890
Miklos Szeredia6643092007-11-28 16:22:00 -0800891 data.file = file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700892 data.inode = inode;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400893 if (fc->async_read)
894 data.req = fuse_get_req_for_background(fc, nr_alloc);
895 else
896 data.req = fuse_get_req(fc, nr_alloc);
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400897 data.nr_pages = nr_pages;
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700898 err = PTR_ERR(data.req);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700899 if (IS_ERR(data.req))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800900 goto out;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700901
902 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700903 if (!err) {
904 if (data.req->num_pages)
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200905 fuse_send_readpages(data.req, file);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700906 else
907 fuse_put_request(fc, data.req);
908 }
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800909out:
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700910 return err;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700911}
912
Al Viro37c20f12014-04-02 14:47:09 -0400913static ssize_t fuse_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800914{
915 struct inode *inode = iocb->ki_filp->f_mapping->host;
Brian Fostera8894272012-07-16 15:23:50 -0400916 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800917
Brian Fostera8894272012-07-16 15:23:50 -0400918 /*
919 * In auto invalidate mode, always update attributes on read.
920 * Otherwise, only update if we attempt to read past EOF (to ensure
921 * i_size is up to date).
922 */
923 if (fc->auto_inval_data ||
Al Viro37c20f12014-04-02 14:47:09 -0400924 (iocb->ki_pos + iov_iter_count(to) > i_size_read(inode))) {
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800925 int err;
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800926 err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
927 if (err)
928 return err;
929 }
930
Al Viro37c20f12014-04-02 14:47:09 -0400931 return generic_file_read_iter(iocb, to);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800932}
933
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200934static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200935 loff_t pos, size_t count)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700936{
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700937 struct fuse_write_in *inarg = &req->misc.write.in;
938 struct fuse_write_out *outarg = &req->misc.write.out;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700939
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700940 inarg->fh = ff->fh;
941 inarg->offset = pos;
942 inarg->size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700943 req->in.h.opcode = FUSE_WRITE;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200944 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700945 req->in.numargs = 2;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200946 if (ff->fc->minor < 9)
Miklos Szeredif3332112007-10-18 03:07:04 -0700947 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
948 else
949 req->in.args[0].size = sizeof(struct fuse_write_in);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700950 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700951 req->in.args[1].size = count;
952 req->out.numargs = 1;
953 req->out.args[0].size = sizeof(struct fuse_write_out);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700954 req->out.args[0].value = outarg;
955}
956
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400957static size_t fuse_send_write(struct fuse_req *req, struct fuse_io_priv *io,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200958 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700959{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400960 struct file *file = io->file;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200961 struct fuse_file *ff = file->private_data;
962 struct fuse_conn *fc = ff->fc;
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200963 struct fuse_write_in *inarg = &req->misc.write.in;
964
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200965 fuse_write_fill(req, ff, pos, count);
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200966 inarg->flags = file->f_flags;
Miklos Szeredif3332112007-10-18 03:07:04 -0700967 if (owner != NULL) {
Miklos Szeredif3332112007-10-18 03:07:04 -0700968 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
969 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
970 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400971
972 if (io->async)
973 return fuse_async_req_send(fc, req, count, io);
974
Tejun Heob93f8582008-11-26 12:03:55 +0100975 fuse_request_send(fc, req);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700976 return req->misc.write.out.size;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700977}
978
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400979bool fuse_write_update_size(struct inode *inode, loff_t pos)
Miklos Szeredi854512e2008-04-30 00:54:41 -0700980{
981 struct fuse_conn *fc = get_fuse_conn(inode);
982 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400983 bool ret = false;
Miklos Szeredi854512e2008-04-30 00:54:41 -0700984
985 spin_lock(&fc->lock);
986 fi->attr_version = ++fc->attr_version;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400987 if (pos > inode->i_size) {
Miklos Szeredi854512e2008-04-30 00:54:41 -0700988 i_size_write(inode, pos);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400989 ret = true;
990 }
Miklos Szeredi854512e2008-04-30 00:54:41 -0700991 spin_unlock(&fc->lock);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400992
993 return ret;
Miklos Szeredi854512e2008-04-30 00:54:41 -0700994}
995
Nick Pigginea9b9902008-04-30 00:54:42 -0700996static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
997 struct inode *inode, loff_t pos,
998 size_t count)
999{
1000 size_t res;
1001 unsigned offset;
1002 unsigned i;
Seth Forshee744742d2016-03-11 10:35:34 -06001003 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(file);
Nick Pigginea9b9902008-04-30 00:54:42 -07001004
1005 for (i = 0; i < req->num_pages; i++)
1006 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
1007
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001008 res = fuse_send_write(req, &io, pos, count, NULL);
Nick Pigginea9b9902008-04-30 00:54:42 -07001009
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001010 offset = req->page_descs[0].offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001011 count = res;
1012 for (i = 0; i < req->num_pages; i++) {
1013 struct page *page = req->pages[i];
1014
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001015 if (!req->out.h.error && !offset && count >= PAGE_SIZE)
Nick Pigginea9b9902008-04-30 00:54:42 -07001016 SetPageUptodate(page);
1017
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001018 if (count > PAGE_SIZE - offset)
1019 count -= PAGE_SIZE - offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001020 else
1021 count = 0;
1022 offset = 0;
1023
1024 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001025 put_page(page);
Nick Pigginea9b9902008-04-30 00:54:42 -07001026 }
1027
1028 return res;
1029}
1030
1031static ssize_t fuse_fill_write_pages(struct fuse_req *req,
1032 struct address_space *mapping,
1033 struct iov_iter *ii, loff_t pos)
1034{
1035 struct fuse_conn *fc = get_fuse_conn(mapping->host);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001036 unsigned offset = pos & (PAGE_SIZE - 1);
Nick Pigginea9b9902008-04-30 00:54:42 -07001037 size_t count = 0;
1038 int err;
1039
Miklos Szeredif4975c62009-04-02 14:25:34 +02001040 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001041 req->page_descs[0].offset = offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001042
1043 do {
1044 size_t tmp;
1045 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001046 pgoff_t index = pos >> PAGE_SHIFT;
1047 size_t bytes = min_t(size_t, PAGE_SIZE - offset,
Nick Pigginea9b9902008-04-30 00:54:42 -07001048 iov_iter_count(ii));
1049
1050 bytes = min_t(size_t, bytes, fc->max_write - count);
1051
1052 again:
1053 err = -EFAULT;
1054 if (iov_iter_fault_in_readable(ii, bytes))
1055 break;
1056
1057 err = -ENOMEM;
Nick Piggin54566b22009-01-04 12:00:53 -08001058 page = grab_cache_page_write_begin(mapping, index, 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001059 if (!page)
1060 break;
1061
anfei zhou931e80e2010-02-02 13:44:02 -08001062 if (mapping_writably_mapped(mapping))
1063 flush_dcache_page(page);
1064
Nick Pigginea9b9902008-04-30 00:54:42 -07001065 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
Nick Pigginea9b9902008-04-30 00:54:42 -07001066 flush_dcache_page(page);
1067
Roman Gushchin3ca81382015-10-12 16:33:44 +03001068 iov_iter_advance(ii, tmp);
Nick Pigginea9b9902008-04-30 00:54:42 -07001069 if (!tmp) {
1070 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001071 put_page(page);
Nick Pigginea9b9902008-04-30 00:54:42 -07001072 bytes = min(bytes, iov_iter_single_seg_count(ii));
1073 goto again;
1074 }
1075
1076 err = 0;
1077 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001078 req->page_descs[req->num_pages].length = tmp;
Nick Pigginea9b9902008-04-30 00:54:42 -07001079 req->num_pages++;
1080
Nick Pigginea9b9902008-04-30 00:54:42 -07001081 count += tmp;
1082 pos += tmp;
1083 offset += tmp;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001084 if (offset == PAGE_SIZE)
Nick Pigginea9b9902008-04-30 00:54:42 -07001085 offset = 0;
1086
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -07001087 if (!fc->big_writes)
1088 break;
Nick Pigginea9b9902008-04-30 00:54:42 -07001089 } while (iov_iter_count(ii) && count < fc->max_write &&
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001090 req->num_pages < req->max_pages && offset == 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001091
1092 return count > 0 ? count : err;
1093}
1094
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001095static inline unsigned fuse_wr_pages(loff_t pos, size_t len)
1096{
1097 return min_t(unsigned,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001098 ((pos + len - 1) >> PAGE_SHIFT) -
1099 (pos >> PAGE_SHIFT) + 1,
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001100 FUSE_MAX_PAGES_PER_REQ);
1101}
1102
Nick Pigginea9b9902008-04-30 00:54:42 -07001103static ssize_t fuse_perform_write(struct file *file,
1104 struct address_space *mapping,
1105 struct iov_iter *ii, loff_t pos)
1106{
1107 struct inode *inode = mapping->host;
1108 struct fuse_conn *fc = get_fuse_conn(inode);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001109 struct fuse_inode *fi = get_fuse_inode(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001110 int err = 0;
1111 ssize_t res = 0;
1112
1113 if (is_bad_inode(inode))
1114 return -EIO;
1115
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001116 if (inode->i_size < pos + iov_iter_count(ii))
1117 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1118
Nick Pigginea9b9902008-04-30 00:54:42 -07001119 do {
1120 struct fuse_req *req;
1121 ssize_t count;
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001122 unsigned nr_pages = fuse_wr_pages(pos, iov_iter_count(ii));
Nick Pigginea9b9902008-04-30 00:54:42 -07001123
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001124 req = fuse_get_req(fc, nr_pages);
Nick Pigginea9b9902008-04-30 00:54:42 -07001125 if (IS_ERR(req)) {
1126 err = PTR_ERR(req);
1127 break;
1128 }
1129
1130 count = fuse_fill_write_pages(req, mapping, ii, pos);
1131 if (count <= 0) {
1132 err = count;
1133 } else {
1134 size_t num_written;
1135
1136 num_written = fuse_send_write_pages(req, file, inode,
1137 pos, count);
1138 err = req->out.h.error;
1139 if (!err) {
1140 res += num_written;
1141 pos += num_written;
1142
1143 /* break out of the loop on short write */
1144 if (num_written != count)
1145 err = -EIO;
1146 }
1147 }
1148 fuse_put_request(fc, req);
1149 } while (!err && iov_iter_count(ii));
1150
1151 if (res > 0)
1152 fuse_write_update_size(inode, pos);
1153
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001154 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
Nick Pigginea9b9902008-04-30 00:54:42 -07001155 fuse_invalidate_attr(inode);
1156
1157 return res > 0 ? res : err;
1158}
1159
Al Viro84c3d552014-04-03 14:33:23 -04001160static ssize_t fuse_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Nick Pigginea9b9902008-04-30 00:54:42 -07001161{
1162 struct file *file = iocb->ki_filp;
1163 struct address_space *mapping = file->f_mapping;
Nick Pigginea9b9902008-04-30 00:54:42 -07001164 ssize_t written = 0;
Anand Avati4273b792012-02-17 12:46:25 -05001165 ssize_t written_buffered = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001166 struct inode *inode = mapping->host;
1167 ssize_t err;
Anand Avati4273b792012-02-17 12:46:25 -05001168 loff_t endbyte = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001169
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001170 if (get_fuse_conn(inode)->writeback_cache) {
1171 /* Update size (EOF optimization) and mode (SUID clearing) */
1172 err = fuse_update_attributes(mapping->host, NULL, file, NULL);
1173 if (err)
1174 return err;
1175
Al Viro84c3d552014-04-03 14:33:23 -04001176 return generic_file_write_iter(iocb, from);
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001177 }
1178
Al Viro59551022016-01-22 15:40:57 -05001179 inode_lock(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001180
1181 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001182 current->backing_dev_info = inode_to_bdi(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001183
Al Viro3309dd02015-04-09 12:55:47 -04001184 err = generic_write_checks(iocb, from);
1185 if (err <= 0)
Nick Pigginea9b9902008-04-30 00:54:42 -07001186 goto out;
1187
Jan Kara5fa8e0a2015-05-21 16:05:53 +02001188 err = file_remove_privs(file);
Nick Pigginea9b9902008-04-30 00:54:42 -07001189 if (err)
1190 goto out;
1191
Josef Bacikc3b2da32012-03-26 09:59:21 -04001192 err = file_update_time(file);
1193 if (err)
1194 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001195
Al Viro2ba48ce2015-04-09 13:52:01 -04001196 if (iocb->ki_flags & IOCB_DIRECT) {
Al Viro3309dd02015-04-09 12:55:47 -04001197 loff_t pos = iocb->ki_pos;
Christoph Hellwig1af5bb42016-04-07 08:51:56 -07001198 written = generic_file_direct_write(iocb, from);
Al Viro84c3d552014-04-03 14:33:23 -04001199 if (written < 0 || !iov_iter_count(from))
Anand Avati4273b792012-02-17 12:46:25 -05001200 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001201
Anand Avati4273b792012-02-17 12:46:25 -05001202 pos += written;
Anand Avati4273b792012-02-17 12:46:25 -05001203
Al Viro84c3d552014-04-03 14:33:23 -04001204 written_buffered = fuse_perform_write(file, mapping, from, pos);
Anand Avati4273b792012-02-17 12:46:25 -05001205 if (written_buffered < 0) {
1206 err = written_buffered;
1207 goto out;
1208 }
1209 endbyte = pos + written_buffered - 1;
1210
1211 err = filemap_write_and_wait_range(file->f_mapping, pos,
1212 endbyte);
1213 if (err)
1214 goto out;
1215
1216 invalidate_mapping_pages(file->f_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001217 pos >> PAGE_SHIFT,
1218 endbyte >> PAGE_SHIFT);
Anand Avati4273b792012-02-17 12:46:25 -05001219
1220 written += written_buffered;
1221 iocb->ki_pos = pos + written_buffered;
1222 } else {
Al Viro3309dd02015-04-09 12:55:47 -04001223 written = fuse_perform_write(file, mapping, from, iocb->ki_pos);
Anand Avati4273b792012-02-17 12:46:25 -05001224 if (written >= 0)
Al Viro3309dd02015-04-09 12:55:47 -04001225 iocb->ki_pos += written;
Anand Avati4273b792012-02-17 12:46:25 -05001226 }
Nick Pigginea9b9902008-04-30 00:54:42 -07001227out:
1228 current->backing_dev_info = NULL;
Al Viro59551022016-01-22 15:40:57 -05001229 inode_unlock(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001230
1231 return written ? written : err;
1232}
1233
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001234static inline void fuse_page_descs_length_init(struct fuse_req *req,
1235 unsigned index, unsigned nr_pages)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001236{
1237 int i;
1238
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001239 for (i = index; i < index + nr_pages; i++)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001240 req->page_descs[i].length = PAGE_SIZE -
1241 req->page_descs[i].offset;
1242}
1243
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001244static inline unsigned long fuse_get_user_addr(const struct iov_iter *ii)
1245{
1246 return (unsigned long)ii->iov->iov_base + ii->iov_offset;
1247}
1248
1249static inline size_t fuse_get_frag_size(const struct iov_iter *ii,
1250 size_t max_size)
1251{
1252 return min(iov_iter_single_seg_count(ii), max_size);
1253}
1254
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001255static int fuse_get_user_pages(struct fuse_req *req, struct iov_iter *ii,
Miklos Szeredice60a2f2009-04-09 17:37:52 +02001256 size_t *nbytesp, int write)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001257{
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001258 size_t nbytes = 0; /* # bytes already packed in req */
Ashish Samant742f9922016-03-14 21:57:35 -07001259 ssize_t ret = 0;
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001260
Miklos Szeredif4975c62009-04-02 14:25:34 +02001261 /* Special case for kernel I/O: can copy directly into the buffer */
Al Viro62a80672014-04-04 23:12:29 -04001262 if (ii->type & ITER_KVEC) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001263 unsigned long user_addr = fuse_get_user_addr(ii);
1264 size_t frag_size = fuse_get_frag_size(ii, *nbytesp);
1265
Miklos Szeredif4975c62009-04-02 14:25:34 +02001266 if (write)
1267 req->in.args[1].value = (void *) user_addr;
1268 else
1269 req->out.args[0].value = (void *) user_addr;
1270
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001271 iov_iter_advance(ii, frag_size);
1272 *nbytesp = frag_size;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001273 return 0;
1274 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001275
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001276 while (nbytes < *nbytesp && req->num_pages < req->max_pages) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001277 unsigned npages;
Al Virof67da302014-03-19 01:16:16 -04001278 size_t start;
Ashish Samant742f9922016-03-14 21:57:35 -07001279 ret = iov_iter_get_pages(ii, &req->pages[req->num_pages],
Miklos Szeredi2c809292014-09-24 17:09:11 +02001280 *nbytesp - nbytes,
Al Viroc7f38882014-06-18 20:34:33 -04001281 req->max_pages - req->num_pages,
1282 &start);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001283 if (ret < 0)
Ashish Samant742f9922016-03-14 21:57:35 -07001284 break;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001285
Al Viroc9c37e22014-03-16 16:08:30 -04001286 iov_iter_advance(ii, ret);
1287 nbytes += ret;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001288
Al Viroc9c37e22014-03-16 16:08:30 -04001289 ret += start;
1290 npages = (ret + PAGE_SIZE - 1) / PAGE_SIZE;
1291
1292 req->page_descs[req->num_pages].offset = start;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001293 fuse_page_descs_length_init(req, req->num_pages, npages);
1294
1295 req->num_pages += npages;
1296 req->page_descs[req->num_pages - 1].length -=
Al Viroc9c37e22014-03-16 16:08:30 -04001297 (PAGE_SIZE - ret) & (PAGE_SIZE - 1);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001298 }
Miklos Szeredif4975c62009-04-02 14:25:34 +02001299
1300 if (write)
1301 req->in.argpages = 1;
1302 else
1303 req->out.argpages = 1;
1304
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001305 *nbytesp = nbytes;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001306
Ashish Samant2c932d42016-03-25 10:53:41 -07001307 return ret < 0 ? ret : 0;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001308}
1309
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001310static inline int fuse_iter_npages(const struct iov_iter *ii_p)
1311{
Al Virof67da302014-03-19 01:16:16 -04001312 return iov_iter_npages(ii_p, FUSE_MAX_PAGES_PER_REQ);
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001313}
1314
Al Virod22a9432014-03-16 15:50:47 -04001315ssize_t fuse_direct_io(struct fuse_io_priv *io, struct iov_iter *iter,
1316 loff_t *ppos, int flags)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001317{
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001318 int write = flags & FUSE_DIO_WRITE;
Miklos Szeredi8fba54a2016-08-24 18:17:04 +02001319 bool should_dirty = !write && iter_is_iovec(iter);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001320 int cuse = flags & FUSE_DIO_CUSE;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001321 struct file *file = io->file;
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001322 struct inode *inode = file->f_mapping->host;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001323 struct fuse_file *ff = file->private_data;
1324 struct fuse_conn *fc = ff->fc;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001325 size_t nmax = write ? fc->max_write : fc->max_read;
1326 loff_t pos = *ppos;
Al Virod22a9432014-03-16 15:50:47 -04001327 size_t count = iov_iter_count(iter);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001328 pgoff_t idx_from = pos >> PAGE_SHIFT;
1329 pgoff_t idx_to = (pos + count - 1) >> PAGE_SHIFT;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001330 ssize_t res = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001331 struct fuse_req *req;
Ashish Samant742f9922016-03-14 21:57:35 -07001332 int err = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001333
Brian Fosterde82b922013-05-14 11:25:39 -04001334 if (io->async)
Al Virod22a9432014-03-16 15:50:47 -04001335 req = fuse_get_req_for_background(fc, fuse_iter_npages(iter));
Brian Fosterde82b922013-05-14 11:25:39 -04001336 else
Al Virod22a9432014-03-16 15:50:47 -04001337 req = fuse_get_req(fc, fuse_iter_npages(iter));
Miklos Szeredice1d5a42006-04-10 22:54:58 -07001338 if (IS_ERR(req))
1339 return PTR_ERR(req);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001340
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001341 if (!cuse && fuse_range_is_writeback(inode, idx_from, idx_to)) {
1342 if (!write)
Al Viro59551022016-01-22 15:40:57 -05001343 inode_lock(inode);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001344 fuse_sync_writes(inode);
1345 if (!write)
Al Viro59551022016-01-22 15:40:57 -05001346 inode_unlock(inode);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001347 }
1348
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001349 while (count) {
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001350 size_t nres;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001351 fl_owner_t owner = current->files;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001352 size_t nbytes = min(count, nmax);
Ashish Samant742f9922016-03-14 21:57:35 -07001353 err = fuse_get_user_pages(req, iter, &nbytes, write);
1354 if (err && !nbytes)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001355 break;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001356
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001357 if (write)
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001358 nres = fuse_send_write(req, io, pos, nbytes, owner);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001359 else
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001360 nres = fuse_send_read(req, io, pos, nbytes, owner);
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001361
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001362 if (!io->async)
Miklos Szeredi8fba54a2016-08-24 18:17:04 +02001363 fuse_release_user_pages(req, should_dirty);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001364 if (req->out.h.error) {
Ashish Samant742f9922016-03-14 21:57:35 -07001365 err = req->out.h.error;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001366 break;
1367 } else if (nres > nbytes) {
Ashish Samant742f9922016-03-14 21:57:35 -07001368 res = 0;
1369 err = -EIO;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001370 break;
1371 }
1372 count -= nres;
1373 res += nres;
1374 pos += nres;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001375 if (nres != nbytes)
1376 break;
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001377 if (count) {
1378 fuse_put_request(fc, req);
Brian Fosterde82b922013-05-14 11:25:39 -04001379 if (io->async)
1380 req = fuse_get_req_for_background(fc,
Al Virod22a9432014-03-16 15:50:47 -04001381 fuse_iter_npages(iter));
Brian Fosterde82b922013-05-14 11:25:39 -04001382 else
Al Virod22a9432014-03-16 15:50:47 -04001383 req = fuse_get_req(fc, fuse_iter_npages(iter));
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001384 if (IS_ERR(req))
1385 break;
1386 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001387 }
Anand V. Avatif60311d2009-10-22 06:24:52 -07001388 if (!IS_ERR(req))
1389 fuse_put_request(fc, req);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001390 if (res > 0)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001391 *ppos = pos;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001392
Ashish Samant742f9922016-03-14 21:57:35 -07001393 return res > 0 ? res : err;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001394}
Tejun Heo08cbf542009-04-14 10:54:53 +09001395EXPORT_SYMBOL_GPL(fuse_direct_io);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001396
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001397static ssize_t __fuse_direct_read(struct fuse_io_priv *io,
Al Virod22a9432014-03-16 15:50:47 -04001398 struct iov_iter *iter,
1399 loff_t *ppos)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001400{
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001401 ssize_t res;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001402 struct file *file = io->file;
Al Viro6131ffa2013-02-27 16:59:05 -05001403 struct inode *inode = file_inode(file);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001404
1405 if (is_bad_inode(inode))
1406 return -EIO;
1407
Al Virod22a9432014-03-16 15:50:47 -04001408 res = fuse_direct_io(io, iter, ppos, 0);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001409
1410 fuse_invalidate_attr(inode);
1411
1412 return res;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001413}
1414
Al Viro15316262015-03-30 22:08:36 -04001415static ssize_t fuse_direct_read_iter(struct kiocb *iocb, struct iov_iter *to)
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001416{
Seth Forshee744742d2016-03-11 10:35:34 -06001417 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb->ki_filp);
Al Viro15316262015-03-30 22:08:36 -04001418 return __fuse_direct_read(&io, to, &iocb->ki_pos);
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001419}
1420
Al Viro15316262015-03-30 22:08:36 -04001421static ssize_t fuse_direct_write_iter(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001422{
Al Viro15316262015-03-30 22:08:36 -04001423 struct file *file = iocb->ki_filp;
Al Viro6131ffa2013-02-27 16:59:05 -05001424 struct inode *inode = file_inode(file);
Seth Forshee744742d2016-03-11 10:35:34 -06001425 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(file);
Al Viro15316262015-03-30 22:08:36 -04001426 ssize_t res;
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001427
1428 if (is_bad_inode(inode))
1429 return -EIO;
1430
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001431 /* Don't allow parallel writes to the same file */
Al Viro59551022016-01-22 15:40:57 -05001432 inode_lock(inode);
Al Viro3309dd02015-04-09 12:55:47 -04001433 res = generic_write_checks(iocb, from);
1434 if (res > 0)
Al Viro812408f2015-03-30 22:15:58 -04001435 res = fuse_direct_io(&io, from, &iocb->ki_pos, FUSE_DIO_WRITE);
Al Viro812408f2015-03-30 22:15:58 -04001436 fuse_invalidate_attr(inode);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04001437 if (res > 0)
Al Viro15316262015-03-30 22:08:36 -04001438 fuse_write_update_size(inode, iocb->ki_pos);
Al Viro59551022016-01-22 15:40:57 -05001439 inode_unlock(inode);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001440
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001441 return res;
1442}
1443
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001444static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001445{
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001446 int i;
1447
1448 for (i = 0; i < req->num_pages; i++)
1449 __free_page(req->pages[i]);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001450
1451 if (req->ff)
1452 fuse_file_put(req->ff, false);
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001453}
1454
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001455static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001456{
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001457 struct inode *inode = req->inode;
1458 struct fuse_inode *fi = get_fuse_inode(inode);
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001459 struct backing_dev_info *bdi = inode_to_bdi(inode);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001460 int i;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001461
1462 list_del(&req->writepages_entry);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001463 for (i = 0; i < req->num_pages; i++) {
Tejun Heo93f78d82015-05-22 17:13:27 -04001464 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001465 dec_node_page_state(req->pages[i], NR_WRITEBACK_TEMP);
Tejun Heo93f78d82015-05-22 17:13:27 -04001466 wb_writeout_inc(&bdi->wb);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001467 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001468 wake_up(&fi->page_waitq);
1469}
1470
1471/* Called under fc->lock, may release and reacquire it */
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001472static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req,
1473 loff_t size)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001474__releases(fc->lock)
1475__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001476{
1477 struct fuse_inode *fi = get_fuse_inode(req->inode);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001478 struct fuse_write_in *inarg = &req->misc.write.in;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001479 __u64 data_size = req->num_pages * PAGE_SIZE;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001480
1481 if (!fc->connected)
1482 goto out_free;
1483
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001484 if (inarg->offset + data_size <= size) {
1485 inarg->size = data_size;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001486 } else if (inarg->offset < size) {
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001487 inarg->size = size - inarg->offset;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001488 } else {
1489 /* Got truncated off completely */
1490 goto out_free;
1491 }
1492
1493 req->in.args[1].size = inarg->size;
1494 fi->writectr++;
Tejun Heob93f8582008-11-26 12:03:55 +01001495 fuse_request_send_background_locked(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001496 return;
1497
1498 out_free:
1499 fuse_writepage_finish(fc, req);
1500 spin_unlock(&fc->lock);
1501 fuse_writepage_free(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +01001502 fuse_put_request(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001503 spin_lock(&fc->lock);
1504}
1505
1506/*
1507 * If fi->writectr is positive (no truncate or fsync going on) send
1508 * all queued writepage requests.
1509 *
1510 * Called with fc->lock
1511 */
1512void fuse_flush_writepages(struct inode *inode)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001513__releases(fc->lock)
1514__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001515{
1516 struct fuse_conn *fc = get_fuse_conn(inode);
1517 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001518 size_t crop = i_size_read(inode);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001519 struct fuse_req *req;
1520
1521 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1522 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1523 list_del_init(&req->list);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001524 fuse_send_writepage(fc, req, crop);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001525 }
1526}
1527
1528static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1529{
1530 struct inode *inode = req->inode;
1531 struct fuse_inode *fi = get_fuse_inode(inode);
1532
1533 mapping_set_error(inode->i_mapping, req->out.h.error);
1534 spin_lock(&fc->lock);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001535 while (req->misc.write.next) {
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001536 struct fuse_conn *fc = get_fuse_conn(inode);
1537 struct fuse_write_in *inarg = &req->misc.write.in;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001538 struct fuse_req *next = req->misc.write.next;
1539 req->misc.write.next = next->misc.write.next;
1540 next->misc.write.next = NULL;
Maxim Patlasovce128de2013-10-02 21:38:54 +04001541 next->ff = fuse_file_get(req->ff);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001542 list_add(&next->writepages_entry, &fi->writepages);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001543
1544 /*
1545 * Skip fuse_flush_writepages() to make it easy to crop requests
1546 * based on primary request size.
1547 *
1548 * 1st case (trivial): there are no concurrent activities using
1549 * fuse_set/release_nowrite. Then we're on safe side because
1550 * fuse_flush_writepages() would call fuse_send_writepage()
1551 * anyway.
1552 *
1553 * 2nd case: someone called fuse_set_nowrite and it is waiting
1554 * now for completion of all in-flight requests. This happens
1555 * rarely and no more than once per page, so this should be
1556 * okay.
1557 *
1558 * 3rd case: someone (e.g. fuse_do_setattr()) is in the middle
1559 * of fuse_set_nowrite..fuse_release_nowrite section. The fact
1560 * that fuse_set_nowrite returned implies that all in-flight
1561 * requests were completed along with all of their secondary
1562 * requests. Further primary requests are blocked by negative
1563 * writectr. Hence there cannot be any in-flight requests and
1564 * no invocations of fuse_writepage_end() while we're in
1565 * fuse_set_nowrite..fuse_release_nowrite section.
1566 */
1567 fuse_send_writepage(fc, next, inarg->offset + inarg->size);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001568 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001569 fi->writectr--;
1570 fuse_writepage_finish(fc, req);
1571 spin_unlock(&fc->lock);
1572 fuse_writepage_free(fc, req);
1573}
1574
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001575static struct fuse_file *__fuse_write_file_get(struct fuse_conn *fc,
1576 struct fuse_inode *fi)
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001577{
Miklos Szeredi72523422013-10-01 16:44:52 +02001578 struct fuse_file *ff = NULL;
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001579
1580 spin_lock(&fc->lock);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001581 if (!list_empty(&fi->write_files)) {
Miklos Szeredi72523422013-10-01 16:44:52 +02001582 ff = list_entry(fi->write_files.next, struct fuse_file,
1583 write_entry);
1584 fuse_file_get(ff);
1585 }
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001586 spin_unlock(&fc->lock);
1587
1588 return ff;
1589}
1590
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001591static struct fuse_file *fuse_write_file_get(struct fuse_conn *fc,
1592 struct fuse_inode *fi)
1593{
1594 struct fuse_file *ff = __fuse_write_file_get(fc, fi);
1595 WARN_ON(!ff);
1596 return ff;
1597}
1598
1599int fuse_write_inode(struct inode *inode, struct writeback_control *wbc)
1600{
1601 struct fuse_conn *fc = get_fuse_conn(inode);
1602 struct fuse_inode *fi = get_fuse_inode(inode);
1603 struct fuse_file *ff;
1604 int err;
1605
1606 ff = __fuse_write_file_get(fc, fi);
Maxim Patlasovab9e13f2014-04-28 14:19:24 +02001607 err = fuse_flush_times(inode, ff);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001608 if (ff)
1609 fuse_file_put(ff, 0);
1610
1611 return err;
1612}
1613
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001614static int fuse_writepage_locked(struct page *page)
1615{
1616 struct address_space *mapping = page->mapping;
1617 struct inode *inode = mapping->host;
1618 struct fuse_conn *fc = get_fuse_conn(inode);
1619 struct fuse_inode *fi = get_fuse_inode(inode);
1620 struct fuse_req *req;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001621 struct page *tmp_page;
Miklos Szeredi72523422013-10-01 16:44:52 +02001622 int error = -ENOMEM;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001623
1624 set_page_writeback(page);
1625
Maxim Patlasov4250c062012-10-26 19:48:07 +04001626 req = fuse_request_alloc_nofs(1);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001627 if (!req)
1628 goto err;
1629
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001630 /* writeback always goes to bg_queue */
1631 __set_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001632 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1633 if (!tmp_page)
1634 goto err_free;
1635
Miklos Szeredi72523422013-10-01 16:44:52 +02001636 error = -EIO;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001637 req->ff = fuse_write_file_get(fc, fi);
Miklos Szeredi72523422013-10-01 16:44:52 +02001638 if (!req->ff)
Maxim Patlasov27f1b362014-07-10 15:32:43 +04001639 goto err_nofile;
Miklos Szeredi72523422013-10-01 16:44:52 +02001640
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001641 fuse_write_fill(req, req->ff, page_offset(page), 0);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001642
1643 copy_highpage(tmp_page, page);
Miklos Szeredi2d698b02009-04-28 16:56:36 +02001644 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001645 req->misc.write.next = NULL;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001646 req->in.argpages = 1;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001647 req->num_pages = 1;
1648 req->pages[0] = tmp_page;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001649 req->page_descs[0].offset = 0;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001650 req->page_descs[0].length = PAGE_SIZE;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001651 req->end = fuse_writepage_end;
1652 req->inode = inode;
1653
Tejun Heo93f78d82015-05-22 17:13:27 -04001654 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001655 inc_node_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001656
1657 spin_lock(&fc->lock);
1658 list_add(&req->writepages_entry, &fi->writepages);
1659 list_add_tail(&req->list, &fi->queued_writes);
1660 fuse_flush_writepages(inode);
1661 spin_unlock(&fc->lock);
1662
Maxim Patlasov4a4ac4e2013-08-12 20:39:30 +04001663 end_page_writeback(page);
1664
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001665 return 0;
1666
Maxim Patlasov27f1b362014-07-10 15:32:43 +04001667err_nofile:
1668 __free_page(tmp_page);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001669err_free:
1670 fuse_request_free(req);
1671err:
1672 end_page_writeback(page);
Miklos Szeredi72523422013-10-01 16:44:52 +02001673 return error;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001674}
1675
1676static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1677{
1678 int err;
1679
Miklos Szerediff17be02013-10-01 16:44:53 +02001680 if (fuse_page_is_writeback(page->mapping->host, page->index)) {
1681 /*
1682 * ->writepages() should be called for sync() and friends. We
1683 * should only get here on direct reclaim and then we are
1684 * allowed to skip a page which is already in flight
1685 */
1686 WARN_ON(wbc->sync_mode == WB_SYNC_ALL);
1687
1688 redirty_page_for_writepage(wbc, page);
1689 return 0;
1690 }
1691
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001692 err = fuse_writepage_locked(page);
1693 unlock_page(page);
1694
1695 return err;
1696}
1697
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001698struct fuse_fill_wb_data {
1699 struct fuse_req *req;
1700 struct fuse_file *ff;
1701 struct inode *inode;
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001702 struct page **orig_pages;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001703};
1704
1705static void fuse_writepages_send(struct fuse_fill_wb_data *data)
1706{
1707 struct fuse_req *req = data->req;
1708 struct inode *inode = data->inode;
1709 struct fuse_conn *fc = get_fuse_conn(inode);
1710 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001711 int num_pages = req->num_pages;
1712 int i;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001713
1714 req->ff = fuse_file_get(data->ff);
1715 spin_lock(&fc->lock);
1716 list_add_tail(&req->list, &fi->queued_writes);
1717 fuse_flush_writepages(inode);
1718 spin_unlock(&fc->lock);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001719
1720 for (i = 0; i < num_pages; i++)
1721 end_page_writeback(data->orig_pages[i]);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001722}
1723
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001724static bool fuse_writepage_in_flight(struct fuse_req *new_req,
1725 struct page *page)
1726{
1727 struct fuse_conn *fc = get_fuse_conn(new_req->inode);
1728 struct fuse_inode *fi = get_fuse_inode(new_req->inode);
1729 struct fuse_req *tmp;
1730 struct fuse_req *old_req;
1731 bool found = false;
1732 pgoff_t curr_index;
1733
1734 BUG_ON(new_req->num_pages != 0);
1735
1736 spin_lock(&fc->lock);
1737 list_del(&new_req->writepages_entry);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001738 list_for_each_entry(old_req, &fi->writepages, writepages_entry) {
1739 BUG_ON(old_req->inode != new_req->inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001740 curr_index = old_req->misc.write.in.offset >> PAGE_SHIFT;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001741 if (curr_index <= page->index &&
1742 page->index < curr_index + old_req->num_pages) {
1743 found = true;
1744 break;
1745 }
1746 }
Maxim Patlasovf6011082013-10-02 15:01:07 +04001747 if (!found) {
1748 list_add(&new_req->writepages_entry, &fi->writepages);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001749 goto out_unlock;
Maxim Patlasovf6011082013-10-02 15:01:07 +04001750 }
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001751
Maxim Patlasovf6011082013-10-02 15:01:07 +04001752 new_req->num_pages = 1;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001753 for (tmp = old_req; tmp != NULL; tmp = tmp->misc.write.next) {
1754 BUG_ON(tmp->inode != new_req->inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001755 curr_index = tmp->misc.write.in.offset >> PAGE_SHIFT;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001756 if (tmp->num_pages == 1 &&
1757 curr_index == page->index) {
1758 old_req = tmp;
1759 }
1760 }
1761
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001762 if (old_req->num_pages == 1 && test_bit(FR_PENDING, &old_req->flags)) {
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001763 struct backing_dev_info *bdi = inode_to_bdi(page->mapping->host);
Maxim Patlasov41b6e412013-10-02 21:38:43 +04001764
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001765 copy_highpage(old_req->pages[0], page);
1766 spin_unlock(&fc->lock);
1767
Tejun Heo93f78d82015-05-22 17:13:27 -04001768 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001769 dec_node_page_state(page, NR_WRITEBACK_TEMP);
Tejun Heo93f78d82015-05-22 17:13:27 -04001770 wb_writeout_inc(&bdi->wb);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001771 fuse_writepage_free(fc, new_req);
1772 fuse_request_free(new_req);
1773 goto out;
1774 } else {
1775 new_req->misc.write.next = old_req->misc.write.next;
1776 old_req->misc.write.next = new_req;
1777 }
1778out_unlock:
1779 spin_unlock(&fc->lock);
1780out:
1781 return found;
1782}
1783
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001784static int fuse_writepages_fill(struct page *page,
1785 struct writeback_control *wbc, void *_data)
1786{
1787 struct fuse_fill_wb_data *data = _data;
1788 struct fuse_req *req = data->req;
1789 struct inode *inode = data->inode;
1790 struct fuse_conn *fc = get_fuse_conn(inode);
1791 struct page *tmp_page;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001792 bool is_writeback;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001793 int err;
1794
1795 if (!data->ff) {
1796 err = -EIO;
1797 data->ff = fuse_write_file_get(fc, get_fuse_inode(inode));
1798 if (!data->ff)
1799 goto out_unlock;
1800 }
1801
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001802 /*
1803 * Being under writeback is unlikely but possible. For example direct
1804 * read to an mmaped fuse file will set the page dirty twice; once when
1805 * the pages are faulted with get_user_pages(), and then after the read
1806 * completed.
1807 */
1808 is_writeback = fuse_page_is_writeback(inode, page->index);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001809
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001810 if (req && req->num_pages &&
1811 (is_writeback || req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001812 (req->num_pages + 1) * PAGE_SIZE > fc->max_write ||
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001813 data->orig_pages[req->num_pages - 1]->index + 1 != page->index)) {
1814 fuse_writepages_send(data);
1815 data->req = NULL;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001816 }
1817 err = -ENOMEM;
1818 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1819 if (!tmp_page)
1820 goto out_unlock;
1821
1822 /*
1823 * The page must not be redirtied until the writeout is completed
1824 * (i.e. userspace has sent a reply to the write request). Otherwise
1825 * there could be more than one temporary page instance for each real
1826 * page.
1827 *
1828 * This is ensured by holding the page lock in page_mkwrite() while
1829 * checking fuse_page_is_writeback(). We already hold the page lock
1830 * since clear_page_dirty_for_io() and keep it held until we add the
1831 * request to the fi->writepages list and increment req->num_pages.
1832 * After this fuse_page_is_writeback() will indicate that the page is
1833 * under writeback, so we can release the page lock.
1834 */
1835 if (data->req == NULL) {
1836 struct fuse_inode *fi = get_fuse_inode(inode);
1837
1838 err = -ENOMEM;
1839 req = fuse_request_alloc_nofs(FUSE_MAX_PAGES_PER_REQ);
1840 if (!req) {
1841 __free_page(tmp_page);
1842 goto out_unlock;
1843 }
1844
1845 fuse_write_fill(req, data->ff, page_offset(page), 0);
1846 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001847 req->misc.write.next = NULL;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001848 req->in.argpages = 1;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001849 __set_bit(FR_BACKGROUND, &req->flags);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001850 req->num_pages = 0;
1851 req->end = fuse_writepage_end;
1852 req->inode = inode;
1853
1854 spin_lock(&fc->lock);
1855 list_add(&req->writepages_entry, &fi->writepages);
1856 spin_unlock(&fc->lock);
1857
1858 data->req = req;
1859 }
1860 set_page_writeback(page);
1861
1862 copy_highpage(tmp_page, page);
1863 req->pages[req->num_pages] = tmp_page;
1864 req->page_descs[req->num_pages].offset = 0;
1865 req->page_descs[req->num_pages].length = PAGE_SIZE;
1866
Tejun Heo93f78d82015-05-22 17:13:27 -04001867 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
Mel Gorman11fb9982016-07-28 15:46:20 -07001868 inc_node_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001869
1870 err = 0;
1871 if (is_writeback && fuse_writepage_in_flight(req, page)) {
1872 end_page_writeback(page);
1873 data->req = NULL;
1874 goto out_unlock;
1875 }
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001876 data->orig_pages[req->num_pages] = page;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001877
1878 /*
1879 * Protected by fc->lock against concurrent access by
1880 * fuse_page_is_writeback().
1881 */
1882 spin_lock(&fc->lock);
1883 req->num_pages++;
1884 spin_unlock(&fc->lock);
1885
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001886out_unlock:
1887 unlock_page(page);
1888
1889 return err;
1890}
1891
1892static int fuse_writepages(struct address_space *mapping,
1893 struct writeback_control *wbc)
1894{
1895 struct inode *inode = mapping->host;
1896 struct fuse_fill_wb_data data;
1897 int err;
1898
1899 err = -EIO;
1900 if (is_bad_inode(inode))
1901 goto out;
1902
1903 data.inode = inode;
1904 data.req = NULL;
1905 data.ff = NULL;
1906
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001907 err = -ENOMEM;
Fabian Frederickf2b34552014-06-23 18:35:15 +02001908 data.orig_pages = kcalloc(FUSE_MAX_PAGES_PER_REQ,
1909 sizeof(struct page *),
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001910 GFP_NOFS);
1911 if (!data.orig_pages)
1912 goto out;
1913
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001914 err = write_cache_pages(mapping, wbc, fuse_writepages_fill, &data);
1915 if (data.req) {
1916 /* Ignore errors if we can write at least one page */
1917 BUG_ON(!data.req->num_pages);
1918 fuse_writepages_send(&data);
1919 err = 0;
1920 }
1921 if (data.ff)
1922 fuse_file_put(data.ff, false);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001923
1924 kfree(data.orig_pages);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001925out:
1926 return err;
1927}
1928
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001929/*
1930 * It's worthy to make sure that space is reserved on disk for the write,
1931 * but how to implement it without killing performance need more thinking.
1932 */
1933static int fuse_write_begin(struct file *file, struct address_space *mapping,
1934 loff_t pos, unsigned len, unsigned flags,
1935 struct page **pagep, void **fsdata)
1936{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001937 pgoff_t index = pos >> PAGE_SHIFT;
Al Viroa4555892014-10-21 20:11:25 -04001938 struct fuse_conn *fc = get_fuse_conn(file_inode(file));
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001939 struct page *page;
1940 loff_t fsize;
1941 int err = -ENOMEM;
1942
1943 WARN_ON(!fc->writeback_cache);
1944
1945 page = grab_cache_page_write_begin(mapping, index, flags);
1946 if (!page)
1947 goto error;
1948
1949 fuse_wait_on_page_writeback(mapping->host, page->index);
1950
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001951 if (PageUptodate(page) || len == PAGE_SIZE)
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001952 goto success;
1953 /*
1954 * Check if the start this page comes after the end of file, in which
1955 * case the readpage can be optimized away.
1956 */
1957 fsize = i_size_read(mapping->host);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001958 if (fsize <= (pos & PAGE_MASK)) {
1959 size_t off = pos & ~PAGE_MASK;
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001960 if (off)
1961 zero_user_segment(page, 0, off);
1962 goto success;
1963 }
1964 err = fuse_do_readpage(file, page);
1965 if (err)
1966 goto cleanup;
1967success:
1968 *pagep = page;
1969 return 0;
1970
1971cleanup:
1972 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001973 put_page(page);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001974error:
1975 return err;
1976}
1977
1978static int fuse_write_end(struct file *file, struct address_space *mapping,
1979 loff_t pos, unsigned len, unsigned copied,
1980 struct page *page, void *fsdata)
1981{
1982 struct inode *inode = page->mapping->host;
1983
Miklos Szeredi59c3b762016-08-18 09:10:44 +02001984 /* Haven't copied anything? Skip zeroing, size extending, dirtying. */
1985 if (!copied)
1986 goto unlock;
1987
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001988 if (!PageUptodate(page)) {
1989 /* Zero any unwritten bytes at the end of the page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001990 size_t endoff = (pos + copied) & ~PAGE_MASK;
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001991 if (endoff)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001992 zero_user_segment(page, endoff, PAGE_SIZE);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001993 SetPageUptodate(page);
1994 }
1995
1996 fuse_write_update_size(inode, pos + copied);
1997 set_page_dirty(page);
Miklos Szeredi59c3b762016-08-18 09:10:44 +02001998
1999unlock:
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002000 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002001 put_page(page);
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04002002
2003 return copied;
2004}
2005
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002006static int fuse_launder_page(struct page *page)
2007{
2008 int err = 0;
2009 if (clear_page_dirty_for_io(page)) {
2010 struct inode *inode = page->mapping->host;
2011 err = fuse_writepage_locked(page);
2012 if (!err)
2013 fuse_wait_on_page_writeback(inode, page->index);
2014 }
2015 return err;
2016}
2017
2018/*
2019 * Write back dirty pages now, because there may not be any suitable
2020 * open files later
2021 */
2022static void fuse_vma_close(struct vm_area_struct *vma)
2023{
2024 filemap_write_and_wait(vma->vm_file->f_mapping);
2025}
2026
2027/*
2028 * Wait for writeback against this page to complete before allowing it
2029 * to be marked dirty again, and hence written back again, possibly
2030 * before the previous writepage completed.
2031 *
2032 * Block here, instead of in ->writepage(), so that the userspace fs
2033 * can only block processes actually operating on the filesystem.
2034 *
2035 * Otherwise unprivileged userspace fs would be able to block
2036 * unrelated:
2037 *
2038 * - page migration
2039 * - sync(2)
2040 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
2041 */
Dave Jiang11bac802017-02-24 14:56:41 -08002042static int fuse_page_mkwrite(struct vm_fault *vmf)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002043{
Nick Pigginc2ec1752009-03-31 15:23:21 -07002044 struct page *page = vmf->page;
Dave Jiang11bac802017-02-24 14:56:41 -08002045 struct inode *inode = file_inode(vmf->vma->vm_file);
Miklos Szeredicca24372013-10-01 16:44:51 +02002046
Dave Jiang11bac802017-02-24 14:56:41 -08002047 file_update_time(vmf->vma->vm_file);
Miklos Szeredicca24372013-10-01 16:44:51 +02002048 lock_page(page);
2049 if (page->mapping != inode->i_mapping) {
2050 unlock_page(page);
2051 return VM_FAULT_NOPAGE;
2052 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002053
2054 fuse_wait_on_page_writeback(inode, page->index);
Miklos Szeredicca24372013-10-01 16:44:51 +02002055 return VM_FAULT_LOCKED;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002056}
2057
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002058static const struct vm_operations_struct fuse_file_vm_ops = {
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002059 .close = fuse_vma_close,
2060 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002061 .map_pages = filemap_map_pages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002062 .page_mkwrite = fuse_page_mkwrite,
2063};
2064
2065static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
2066{
Pavel Emelyanov650b22b2013-10-10 17:10:04 +04002067 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2068 fuse_link_write_file(file);
2069
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002070 file_accessed(file);
2071 vma->vm_ops = &fuse_file_vm_ops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002072 return 0;
2073}
2074
Miklos Szeredifc280c92009-04-02 14:25:35 +02002075static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
2076{
2077 /* Can't provide the coherency needed for MAP_SHARED */
2078 if (vma->vm_flags & VM_MAYSHARE)
2079 return -ENODEV;
2080
Miklos Szeredi3121bfe2009-04-09 17:37:53 +02002081 invalidate_inode_pages2(file->f_mapping);
2082
Miklos Szeredifc280c92009-04-02 14:25:35 +02002083 return generic_file_mmap(file, vma);
2084}
2085
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002086static int convert_fuse_file_lock(struct fuse_conn *fc,
2087 const struct fuse_file_lock *ffl,
Miklos Szeredi71421252006-06-25 05:48:52 -07002088 struct file_lock *fl)
2089{
2090 switch (ffl->type) {
2091 case F_UNLCK:
2092 break;
2093
2094 case F_RDLCK:
2095 case F_WRLCK:
2096 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
2097 ffl->end < ffl->start)
2098 return -EIO;
2099
2100 fl->fl_start = ffl->start;
2101 fl->fl_end = ffl->end;
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002102
2103 /*
2104 * Convert pid into the caller's pid namespace. If the pid
2105 * does not map into the namespace fl_pid will get set to 0.
2106 */
2107 rcu_read_lock();
2108 fl->fl_pid = pid_vnr(find_pid_ns(ffl->pid, fc->pid_ns));
2109 rcu_read_unlock();
Miklos Szeredi71421252006-06-25 05:48:52 -07002110 break;
2111
2112 default:
2113 return -EIO;
2114 }
2115 fl->fl_type = ffl->type;
2116 return 0;
2117}
2118
Miklos Szeredi70781872014-12-12 09:49:05 +01002119static void fuse_lk_fill(struct fuse_args *args, struct file *file,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002120 const struct file_lock *fl, int opcode, pid_t pid,
Miklos Szeredi70781872014-12-12 09:49:05 +01002121 int flock, struct fuse_lk_in *inarg)
Miklos Szeredi71421252006-06-25 05:48:52 -07002122{
Al Viro6131ffa2013-02-27 16:59:05 -05002123 struct inode *inode = file_inode(file);
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07002124 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi71421252006-06-25 05:48:52 -07002125 struct fuse_file *ff = file->private_data;
Miklos Szeredi71421252006-06-25 05:48:52 -07002126
Miklos Szeredi70781872014-12-12 09:49:05 +01002127 memset(inarg, 0, sizeof(*inarg));
2128 inarg->fh = ff->fh;
2129 inarg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
2130 inarg->lk.start = fl->fl_start;
2131 inarg->lk.end = fl->fl_end;
2132 inarg->lk.type = fl->fl_type;
2133 inarg->lk.pid = pid;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002134 if (flock)
Miklos Szeredi70781872014-12-12 09:49:05 +01002135 inarg->lk_flags |= FUSE_LK_FLOCK;
2136 args->in.h.opcode = opcode;
2137 args->in.h.nodeid = get_node_id(inode);
2138 args->in.numargs = 1;
2139 args->in.args[0].size = sizeof(*inarg);
2140 args->in.args[0].value = inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002141}
2142
2143static int fuse_getlk(struct file *file, struct file_lock *fl)
2144{
Al Viro6131ffa2013-02-27 16:59:05 -05002145 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002146 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002147 FUSE_ARGS(args);
2148 struct fuse_lk_in inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002149 struct fuse_lk_out outarg;
2150 int err;
2151
Miklos Szeredi70781872014-12-12 09:49:05 +01002152 fuse_lk_fill(&args, file, fl, FUSE_GETLK, 0, 0, &inarg);
2153 args.out.numargs = 1;
2154 args.out.args[0].size = sizeof(outarg);
2155 args.out.args[0].value = &outarg;
2156 err = fuse_simple_request(fc, &args);
Miklos Szeredi71421252006-06-25 05:48:52 -07002157 if (!err)
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002158 err = convert_fuse_file_lock(fc, &outarg.lk, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07002159
2160 return err;
2161}
2162
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002163static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07002164{
Al Viro6131ffa2013-02-27 16:59:05 -05002165 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002166 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002167 FUSE_ARGS(args);
2168 struct fuse_lk_in inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002169 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002170 struct pid *pid = fl->fl_type != F_UNLCK ? task_tgid(current) : NULL;
2171 pid_t pid_nr = pid_nr_ns(pid, fc->pid_ns);
Miklos Szeredi71421252006-06-25 05:48:52 -07002172 int err;
2173
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04002174 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
Miklos Szeredi48e90762008-07-25 01:49:02 -07002175 /* NLM needs asynchronous locks, which we don't support yet */
2176 return -ENOLCK;
2177 }
2178
Miklos Szeredi71421252006-06-25 05:48:52 -07002179 /* Unlock on close is handled by the flush method */
Benjamin Coddington50f21122017-04-11 12:50:09 -04002180 if ((fl->fl_flags & FL_CLOSE_POSIX) == FL_CLOSE_POSIX)
Miklos Szeredi71421252006-06-25 05:48:52 -07002181 return 0;
2182
Seth Forshee0b6e9ea2014-07-02 16:29:19 -05002183 if (pid && pid_nr == 0)
2184 return -EOVERFLOW;
2185
2186 fuse_lk_fill(&args, file, fl, opcode, pid_nr, flock, &inarg);
Miklos Szeredi70781872014-12-12 09:49:05 +01002187 err = fuse_simple_request(fc, &args);
Miklos Szeredi71421252006-06-25 05:48:52 -07002188
Miklos Szeredia4d27e72006-06-25 05:48:54 -07002189 /* locking is restartable */
2190 if (err == -EINTR)
2191 err = -ERESTARTSYS;
Miklos Szeredi70781872014-12-12 09:49:05 +01002192
Miklos Szeredi71421252006-06-25 05:48:52 -07002193 return err;
2194}
2195
2196static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
2197{
Al Viro6131ffa2013-02-27 16:59:05 -05002198 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002199 struct fuse_conn *fc = get_fuse_conn(inode);
2200 int err;
2201
Miklos Szeredi48e90762008-07-25 01:49:02 -07002202 if (cmd == F_CANCELLK) {
2203 err = 0;
2204 } else if (cmd == F_GETLK) {
Miklos Szeredi71421252006-06-25 05:48:52 -07002205 if (fc->no_lock) {
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002206 posix_test_lock(file, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07002207 err = 0;
2208 } else
2209 err = fuse_getlk(file, fl);
2210 } else {
2211 if (fc->no_lock)
Miklos Szeredi48e90762008-07-25 01:49:02 -07002212 err = posix_lock_file(file, fl, NULL);
Miklos Szeredi71421252006-06-25 05:48:52 -07002213 else
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002214 err = fuse_setlk(file, fl, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07002215 }
2216 return err;
2217}
2218
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002219static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
2220{
Al Viro6131ffa2013-02-27 16:59:05 -05002221 struct inode *inode = file_inode(file);
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002222 struct fuse_conn *fc = get_fuse_conn(inode);
2223 int err;
2224
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002225 if (fc->no_flock) {
Benjamin Coddington4f656362015-10-22 13:38:14 -04002226 err = locks_lock_file_wait(file, fl);
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002227 } else {
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002228 struct fuse_file *ff = file->private_data;
2229
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002230 /* emulate flock with POSIX locks */
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002231 ff->flock = true;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002232 err = fuse_setlk(file, fl, 1);
2233 }
2234
2235 return err;
2236}
2237
Miklos Szeredib2d22722006-12-06 20:35:51 -08002238static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
2239{
2240 struct inode *inode = mapping->host;
2241 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002242 FUSE_ARGS(args);
Miklos Szeredib2d22722006-12-06 20:35:51 -08002243 struct fuse_bmap_in inarg;
2244 struct fuse_bmap_out outarg;
2245 int err;
2246
2247 if (!inode->i_sb->s_bdev || fc->no_bmap)
2248 return 0;
2249
Miklos Szeredib2d22722006-12-06 20:35:51 -08002250 memset(&inarg, 0, sizeof(inarg));
2251 inarg.block = block;
2252 inarg.blocksize = inode->i_sb->s_blocksize;
Miklos Szeredi70781872014-12-12 09:49:05 +01002253 args.in.h.opcode = FUSE_BMAP;
2254 args.in.h.nodeid = get_node_id(inode);
2255 args.in.numargs = 1;
2256 args.in.args[0].size = sizeof(inarg);
2257 args.in.args[0].value = &inarg;
2258 args.out.numargs = 1;
2259 args.out.args[0].size = sizeof(outarg);
2260 args.out.args[0].value = &outarg;
2261 err = fuse_simple_request(fc, &args);
Miklos Szeredib2d22722006-12-06 20:35:51 -08002262 if (err == -ENOSYS)
2263 fc->no_bmap = 1;
2264
2265 return err ? 0 : outarg.block;
2266}
2267
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302268static loff_t fuse_lseek(struct file *file, loff_t offset, int whence)
2269{
2270 struct inode *inode = file->f_mapping->host;
2271 struct fuse_conn *fc = get_fuse_conn(inode);
2272 struct fuse_file *ff = file->private_data;
2273 FUSE_ARGS(args);
2274 struct fuse_lseek_in inarg = {
2275 .fh = ff->fh,
2276 .offset = offset,
2277 .whence = whence
2278 };
2279 struct fuse_lseek_out outarg;
2280 int err;
2281
2282 if (fc->no_lseek)
2283 goto fallback;
2284
2285 args.in.h.opcode = FUSE_LSEEK;
2286 args.in.h.nodeid = ff->nodeid;
2287 args.in.numargs = 1;
2288 args.in.args[0].size = sizeof(inarg);
2289 args.in.args[0].value = &inarg;
2290 args.out.numargs = 1;
2291 args.out.args[0].size = sizeof(outarg);
2292 args.out.args[0].value = &outarg;
2293 err = fuse_simple_request(fc, &args);
2294 if (err) {
2295 if (err == -ENOSYS) {
2296 fc->no_lseek = 1;
2297 goto fallback;
2298 }
2299 return err;
2300 }
2301
2302 return vfs_setpos(file, outarg.offset, inode->i_sb->s_maxbytes);
2303
2304fallback:
2305 err = fuse_update_attributes(inode, NULL, file, NULL);
2306 if (!err)
2307 return generic_file_llseek(file, offset, whence);
2308 else
2309 return err;
2310}
2311
Andrew Morton965c8e52012-12-17 15:59:39 -08002312static loff_t fuse_file_llseek(struct file *file, loff_t offset, int whence)
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002313{
2314 loff_t retval;
Al Viro6131ffa2013-02-27 16:59:05 -05002315 struct inode *inode = file_inode(file);
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002316
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302317 switch (whence) {
2318 case SEEK_SET:
2319 case SEEK_CUR:
2320 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
Andrew Morton965c8e52012-12-17 15:59:39 -08002321 retval = generic_file_llseek(file, offset, whence);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302322 break;
2323 case SEEK_END:
Al Viro59551022016-01-22 15:40:57 -05002324 inode_lock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302325 retval = fuse_update_attributes(inode, NULL, file, NULL);
2326 if (!retval)
2327 retval = generic_file_llseek(file, offset, whence);
Al Viro59551022016-01-22 15:40:57 -05002328 inode_unlock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302329 break;
2330 case SEEK_HOLE:
2331 case SEEK_DATA:
Al Viro59551022016-01-22 15:40:57 -05002332 inode_lock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302333 retval = fuse_lseek(file, offset, whence);
Al Viro59551022016-01-22 15:40:57 -05002334 inode_unlock(inode);
Ravishankar N0b5da8d2015-06-30 23:40:22 +05302335 break;
2336 default:
2337 retval = -EINVAL;
2338 }
Miklos Szeredic07c3d12011-12-13 11:58:48 +01002339
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002340 return retval;
2341}
2342
Tejun Heo59efec72008-11-26 12:03:55 +01002343/*
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002344 * CUSE servers compiled on 32bit broke on 64bit kernels because the
2345 * ABI was defined to be 'struct iovec' which is different on 32bit
2346 * and 64bit. Fortunately we can determine which structure the server
2347 * used from the size of the reply.
2348 */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002349static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
2350 size_t transferred, unsigned count,
2351 bool is_compat)
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002352{
2353#ifdef CONFIG_COMPAT
2354 if (count * sizeof(struct compat_iovec) == transferred) {
2355 struct compat_iovec *ciov = src;
2356 unsigned i;
2357
2358 /*
2359 * With this interface a 32bit server cannot support
2360 * non-compat (i.e. ones coming from 64bit apps) ioctl
2361 * requests
2362 */
2363 if (!is_compat)
2364 return -EINVAL;
2365
2366 for (i = 0; i < count; i++) {
2367 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
2368 dst[i].iov_len = ciov[i].iov_len;
2369 }
2370 return 0;
2371 }
2372#endif
2373
2374 if (count * sizeof(struct iovec) != transferred)
2375 return -EIO;
2376
2377 memcpy(dst, src, transferred);
2378 return 0;
2379}
2380
Miklos Szeredi75727772010-11-30 16:39:27 +01002381/* Make sure iov_length() won't overflow */
2382static int fuse_verify_ioctl_iov(struct iovec *iov, size_t count)
2383{
2384 size_t n;
2385 u32 max = FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT;
2386
Zach Brownfb6ccff2012-07-24 12:10:11 -07002387 for (n = 0; n < count; n++, iov++) {
Miklos Szeredi75727772010-11-30 16:39:27 +01002388 if (iov->iov_len > (size_t) max)
2389 return -ENOMEM;
2390 max -= iov->iov_len;
2391 }
2392 return 0;
2393}
2394
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002395static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
2396 void *src, size_t transferred, unsigned count,
2397 bool is_compat)
2398{
2399 unsigned i;
2400 struct fuse_ioctl_iovec *fiov = src;
2401
2402 if (fc->minor < 16) {
2403 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
2404 count, is_compat);
2405 }
2406
2407 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
2408 return -EIO;
2409
2410 for (i = 0; i < count; i++) {
2411 /* Did the server supply an inappropriate value? */
2412 if (fiov[i].base != (unsigned long) fiov[i].base ||
2413 fiov[i].len != (unsigned long) fiov[i].len)
2414 return -EIO;
2415
2416 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
2417 dst[i].iov_len = (size_t) fiov[i].len;
2418
2419#ifdef CONFIG_COMPAT
2420 if (is_compat &&
2421 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
2422 (compat_size_t) dst[i].iov_len != fiov[i].len))
2423 return -EIO;
2424#endif
2425 }
2426
2427 return 0;
2428}
2429
2430
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002431/*
Tejun Heo59efec72008-11-26 12:03:55 +01002432 * For ioctls, there is no generic way to determine how much memory
2433 * needs to be read and/or written. Furthermore, ioctls are allowed
2434 * to dereference the passed pointer, so the parameter requires deep
2435 * copying but FUSE has no idea whatsoever about what to copy in or
2436 * out.
2437 *
2438 * This is solved by allowing FUSE server to retry ioctl with
2439 * necessary in/out iovecs. Let's assume the ioctl implementation
2440 * needs to read in the following structure.
2441 *
2442 * struct a {
2443 * char *buf;
2444 * size_t buflen;
2445 * }
2446 *
2447 * On the first callout to FUSE server, inarg->in_size and
2448 * inarg->out_size will be NULL; then, the server completes the ioctl
2449 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
2450 * the actual iov array to
2451 *
2452 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
2453 *
2454 * which tells FUSE to copy in the requested area and retry the ioctl.
2455 * On the second round, the server has access to the structure and
2456 * from that it can tell what to look for next, so on the invocation,
2457 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
2458 *
2459 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
2460 * { .iov_base = a.buf, .iov_len = a.buflen } }
2461 *
2462 * FUSE will copy both struct a and the pointed buffer from the
2463 * process doing the ioctl and retry ioctl with both struct a and the
2464 * buffer.
2465 *
2466 * This time, FUSE server has everything it needs and completes ioctl
2467 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
2468 *
2469 * Copying data out works the same way.
2470 *
2471 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
2472 * automatically initializes in and out iovs by decoding @cmd with
2473 * _IOC_* macros and the server is not allowed to request RETRY. This
2474 * limits ioctl data transfers to well-formed ioctls and is the forced
2475 * behavior for all FUSE servers.
2476 */
Tejun Heo08cbf542009-04-14 10:54:53 +09002477long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
2478 unsigned int flags)
Tejun Heo59efec72008-11-26 12:03:55 +01002479{
Tejun Heo59efec72008-11-26 12:03:55 +01002480 struct fuse_file *ff = file->private_data;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002481 struct fuse_conn *fc = ff->fc;
Tejun Heo59efec72008-11-26 12:03:55 +01002482 struct fuse_ioctl_in inarg = {
2483 .fh = ff->fh,
2484 .cmd = cmd,
2485 .arg = arg,
2486 .flags = flags
2487 };
2488 struct fuse_ioctl_out outarg;
2489 struct fuse_req *req = NULL;
2490 struct page **pages = NULL;
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002491 struct iovec *iov_page = NULL;
Tejun Heo59efec72008-11-26 12:03:55 +01002492 struct iovec *in_iov = NULL, *out_iov = NULL;
2493 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002494 size_t in_size, out_size, transferred, c;
2495 int err, i;
2496 struct iov_iter ii;
Tejun Heo59efec72008-11-26 12:03:55 +01002497
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002498#if BITS_PER_LONG == 32
2499 inarg.flags |= FUSE_IOCTL_32BIT;
2500#else
2501 if (flags & FUSE_IOCTL_COMPAT)
2502 inarg.flags |= FUSE_IOCTL_32BIT;
2503#endif
2504
Tejun Heo59efec72008-11-26 12:03:55 +01002505 /* assume all the iovs returned by client always fits in a page */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002506 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
Tejun Heo59efec72008-11-26 12:03:55 +01002507
Tejun Heo59efec72008-11-26 12:03:55 +01002508 err = -ENOMEM;
Thomas Meyerc411cc82011-11-29 22:08:00 +01002509 pages = kcalloc(FUSE_MAX_PAGES_PER_REQ, sizeof(pages[0]), GFP_KERNEL);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002510 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
Tejun Heo59efec72008-11-26 12:03:55 +01002511 if (!pages || !iov_page)
2512 goto out;
2513
2514 /*
2515 * If restricted, initialize IO parameters as encoded in @cmd.
2516 * RETRY from server is not allowed.
2517 */
2518 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002519 struct iovec *iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002520
Miklos Szeredic9f0523d2008-12-02 14:49:42 +01002521 iov->iov_base = (void __user *)arg;
Tejun Heo59efec72008-11-26 12:03:55 +01002522 iov->iov_len = _IOC_SIZE(cmd);
2523
2524 if (_IOC_DIR(cmd) & _IOC_WRITE) {
2525 in_iov = iov;
2526 in_iovs = 1;
2527 }
2528
2529 if (_IOC_DIR(cmd) & _IOC_READ) {
2530 out_iov = iov;
2531 out_iovs = 1;
2532 }
2533 }
2534
2535 retry:
2536 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
2537 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
2538
2539 /*
2540 * Out data can be used either for actual out data or iovs,
2541 * make sure there always is at least one page.
2542 */
2543 out_size = max_t(size_t, out_size, PAGE_SIZE);
2544 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
2545
2546 /* make sure there are enough buffer pages and init request with them */
2547 err = -ENOMEM;
2548 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
2549 goto out;
2550 while (num_pages < max_pages) {
2551 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2552 if (!pages[num_pages])
2553 goto out;
2554 num_pages++;
2555 }
2556
Maxim Patlasov54b96672012-10-26 19:49:13 +04002557 req = fuse_get_req(fc, num_pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002558 if (IS_ERR(req)) {
2559 err = PTR_ERR(req);
2560 req = NULL;
2561 goto out;
2562 }
2563 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
2564 req->num_pages = num_pages;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04002565 fuse_page_descs_length_init(req, 0, req->num_pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002566
2567 /* okay, let's send it to the client */
2568 req->in.h.opcode = FUSE_IOCTL;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002569 req->in.h.nodeid = ff->nodeid;
Tejun Heo59efec72008-11-26 12:03:55 +01002570 req->in.numargs = 1;
2571 req->in.args[0].size = sizeof(inarg);
2572 req->in.args[0].value = &inarg;
2573 if (in_size) {
2574 req->in.numargs++;
2575 req->in.args[1].size = in_size;
2576 req->in.argpages = 1;
2577
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002578 err = -EFAULT;
2579 iov_iter_init(&ii, WRITE, in_iov, in_iovs, in_size);
2580 for (i = 0; iov_iter_count(&ii) && !WARN_ON(i >= num_pages); i++) {
2581 c = copy_page_from_iter(pages[i], 0, PAGE_SIZE, &ii);
2582 if (c != PAGE_SIZE && iov_iter_count(&ii))
2583 goto out;
2584 }
Tejun Heo59efec72008-11-26 12:03:55 +01002585 }
2586
2587 req->out.numargs = 2;
2588 req->out.args[0].size = sizeof(outarg);
2589 req->out.args[0].value = &outarg;
2590 req->out.args[1].size = out_size;
2591 req->out.argpages = 1;
2592 req->out.argvar = 1;
2593
Tejun Heob93f8582008-11-26 12:03:55 +01002594 fuse_request_send(fc, req);
Tejun Heo59efec72008-11-26 12:03:55 +01002595 err = req->out.h.error;
2596 transferred = req->out.args[1].size;
2597 fuse_put_request(fc, req);
2598 req = NULL;
2599 if (err)
2600 goto out;
2601
2602 /* did it ask for retry? */
2603 if (outarg.flags & FUSE_IOCTL_RETRY) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002604 void *vaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01002605
2606 /* no retry if in restricted mode */
2607 err = -EIO;
2608 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
2609 goto out;
2610
2611 in_iovs = outarg.in_iovs;
2612 out_iovs = outarg.out_iovs;
2613
2614 /*
2615 * Make sure things are in boundary, separate checks
2616 * are to protect against overflow.
2617 */
2618 err = -ENOMEM;
2619 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
2620 out_iovs > FUSE_IOCTL_MAX_IOV ||
2621 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
2622 goto out;
2623
Cong Wang2408f6e2011-11-25 23:14:30 +08002624 vaddr = kmap_atomic(pages[0]);
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002625 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002626 transferred, in_iovs + out_iovs,
2627 (flags & FUSE_IOCTL_COMPAT) != 0);
Cong Wang2408f6e2011-11-25 23:14:30 +08002628 kunmap_atomic(vaddr);
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002629 if (err)
2630 goto out;
Tejun Heo59efec72008-11-26 12:03:55 +01002631
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002632 in_iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002633 out_iov = in_iov + in_iovs;
2634
Miklos Szeredi75727772010-11-30 16:39:27 +01002635 err = fuse_verify_ioctl_iov(in_iov, in_iovs);
2636 if (err)
2637 goto out;
2638
2639 err = fuse_verify_ioctl_iov(out_iov, out_iovs);
2640 if (err)
2641 goto out;
2642
Tejun Heo59efec72008-11-26 12:03:55 +01002643 goto retry;
2644 }
2645
2646 err = -EIO;
2647 if (transferred > inarg.out_size)
2648 goto out;
2649
Miklos Szerediacbe5fd2016-10-01 07:32:33 +02002650 err = -EFAULT;
2651 iov_iter_init(&ii, READ, out_iov, out_iovs, transferred);
2652 for (i = 0; iov_iter_count(&ii) && !WARN_ON(i >= num_pages); i++) {
2653 c = copy_page_to_iter(pages[i], 0, PAGE_SIZE, &ii);
2654 if (c != PAGE_SIZE && iov_iter_count(&ii))
2655 goto out;
2656 }
2657 err = 0;
Tejun Heo59efec72008-11-26 12:03:55 +01002658 out:
2659 if (req)
2660 fuse_put_request(fc, req);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002661 free_page((unsigned long) iov_page);
Tejun Heo59efec72008-11-26 12:03:55 +01002662 while (num_pages)
2663 __free_page(pages[--num_pages]);
2664 kfree(pages);
2665
2666 return err ? err : outarg.result;
2667}
Tejun Heo08cbf542009-04-14 10:54:53 +09002668EXPORT_SYMBOL_GPL(fuse_do_ioctl);
Tejun Heo59efec72008-11-26 12:03:55 +01002669
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002670long fuse_ioctl_common(struct file *file, unsigned int cmd,
2671 unsigned long arg, unsigned int flags)
Miklos Szeredid36f2482009-04-28 16:56:39 +02002672{
Al Viro6131ffa2013-02-27 16:59:05 -05002673 struct inode *inode = file_inode(file);
Miklos Szeredid36f2482009-04-28 16:56:39 +02002674 struct fuse_conn *fc = get_fuse_conn(inode);
2675
Anatol Pomozovc2132c12013-01-14 22:30:00 -08002676 if (!fuse_allow_current_process(fc))
Miklos Szeredid36f2482009-04-28 16:56:39 +02002677 return -EACCES;
2678
2679 if (is_bad_inode(inode))
2680 return -EIO;
2681
2682 return fuse_do_ioctl(file, cmd, arg, flags);
2683}
2684
Tejun Heo59efec72008-11-26 12:03:55 +01002685static long fuse_file_ioctl(struct file *file, unsigned int cmd,
2686 unsigned long arg)
2687{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002688 return fuse_ioctl_common(file, cmd, arg, 0);
Tejun Heo59efec72008-11-26 12:03:55 +01002689}
2690
2691static long fuse_file_compat_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, FUSE_IOCTL_COMPAT);
Tejun Heo59efec72008-11-26 12:03:55 +01002695}
2696
Tejun Heo95668a62008-11-26 12:03:55 +01002697/*
2698 * All files which have been polled are linked to RB tree
2699 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2700 * find the matching one.
2701 */
2702static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2703 struct rb_node **parent_out)
2704{
2705 struct rb_node **link = &fc->polled_files.rb_node;
2706 struct rb_node *last = NULL;
2707
2708 while (*link) {
2709 struct fuse_file *ff;
2710
2711 last = *link;
2712 ff = rb_entry(last, struct fuse_file, polled_node);
2713
2714 if (kh < ff->kh)
2715 link = &last->rb_left;
2716 else if (kh > ff->kh)
2717 link = &last->rb_right;
2718 else
2719 return link;
2720 }
2721
2722 if (parent_out)
2723 *parent_out = last;
2724 return link;
2725}
2726
2727/*
2728 * The file is about to be polled. Make sure it's on the polled_files
2729 * RB tree. Note that files once added to the polled_files tree are
2730 * not removed before the file is released. This is because a file
2731 * polled once is likely to be polled again.
2732 */
2733static void fuse_register_polled_file(struct fuse_conn *fc,
2734 struct fuse_file *ff)
2735{
2736 spin_lock(&fc->lock);
2737 if (RB_EMPTY_NODE(&ff->polled_node)) {
Rajat Jainf3846262014-02-05 15:24:57 -08002738 struct rb_node **link, *uninitialized_var(parent);
Tejun Heo95668a62008-11-26 12:03:55 +01002739
2740 link = fuse_find_polled_node(fc, ff->kh, &parent);
2741 BUG_ON(*link);
2742 rb_link_node(&ff->polled_node, parent, link);
2743 rb_insert_color(&ff->polled_node, &fc->polled_files);
2744 }
2745 spin_unlock(&fc->lock);
2746}
2747
Tejun Heo08cbf542009-04-14 10:54:53 +09002748unsigned fuse_file_poll(struct file *file, poll_table *wait)
Tejun Heo95668a62008-11-26 12:03:55 +01002749{
Tejun Heo95668a62008-11-26 12:03:55 +01002750 struct fuse_file *ff = file->private_data;
Miklos Szeredi797759a2009-04-28 16:56:41 +02002751 struct fuse_conn *fc = ff->fc;
Tejun Heo95668a62008-11-26 12:03:55 +01002752 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2753 struct fuse_poll_out outarg;
Miklos Szeredi70781872014-12-12 09:49:05 +01002754 FUSE_ARGS(args);
Tejun Heo95668a62008-11-26 12:03:55 +01002755 int err;
2756
2757 if (fc->no_poll)
2758 return DEFAULT_POLLMASK;
2759
2760 poll_wait(file, &ff->poll_wait, wait);
Enke Chen0415d292013-02-04 16:14:32 +01002761 inarg.events = (__u32)poll_requested_events(wait);
Tejun Heo95668a62008-11-26 12:03:55 +01002762
2763 /*
2764 * Ask for notification iff there's someone waiting for it.
2765 * The client may ignore the flag and always notify.
2766 */
2767 if (waitqueue_active(&ff->poll_wait)) {
2768 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2769 fuse_register_polled_file(fc, ff);
2770 }
2771
Miklos Szeredi70781872014-12-12 09:49:05 +01002772 args.in.h.opcode = FUSE_POLL;
2773 args.in.h.nodeid = ff->nodeid;
2774 args.in.numargs = 1;
2775 args.in.args[0].size = sizeof(inarg);
2776 args.in.args[0].value = &inarg;
2777 args.out.numargs = 1;
2778 args.out.args[0].size = sizeof(outarg);
2779 args.out.args[0].value = &outarg;
2780 err = fuse_simple_request(fc, &args);
Tejun Heo95668a62008-11-26 12:03:55 +01002781
2782 if (!err)
2783 return outarg.revents;
2784 if (err == -ENOSYS) {
2785 fc->no_poll = 1;
2786 return DEFAULT_POLLMASK;
2787 }
2788 return POLLERR;
2789}
Tejun Heo08cbf542009-04-14 10:54:53 +09002790EXPORT_SYMBOL_GPL(fuse_file_poll);
Tejun Heo95668a62008-11-26 12:03:55 +01002791
2792/*
2793 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2794 * wakes up the poll waiters.
2795 */
2796int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2797 struct fuse_notify_poll_wakeup_out *outarg)
2798{
2799 u64 kh = outarg->kh;
2800 struct rb_node **link;
2801
2802 spin_lock(&fc->lock);
2803
2804 link = fuse_find_polled_node(fc, kh, NULL);
2805 if (*link) {
2806 struct fuse_file *ff;
2807
2808 ff = rb_entry(*link, struct fuse_file, polled_node);
2809 wake_up_interruptible_sync(&ff->poll_wait);
2810 }
2811
2812 spin_unlock(&fc->lock);
2813 return 0;
2814}
2815
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002816static void fuse_do_truncate(struct file *file)
2817{
2818 struct inode *inode = file->f_mapping->host;
2819 struct iattr attr;
2820
2821 attr.ia_valid = ATTR_SIZE;
2822 attr.ia_size = i_size_read(inode);
2823
2824 attr.ia_file = file;
2825 attr.ia_valid |= ATTR_FILE;
2826
Jan Kara62490332016-05-26 17:12:41 +02002827 fuse_do_setattr(file_dentry(file), &attr, file);
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002828}
2829
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002830static inline loff_t fuse_round_up(loff_t off)
2831{
2832 return round_up(off, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
2833}
2834
Anand Avati4273b792012-02-17 12:46:25 -05002835static ssize_t
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07002836fuse_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Anand Avati4273b792012-02-17 12:46:25 -05002837{
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002838 DECLARE_COMPLETION_ONSTACK(wait);
Anand Avati4273b792012-02-17 12:46:25 -05002839 ssize_t ret = 0;
Miklos Szeredi60b9df72013-05-01 14:37:21 +02002840 struct file *file = iocb->ki_filp;
2841 struct fuse_file *ff = file->private_data;
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002842 bool async_dio = ff->fc->async_dio;
Anand Avati4273b792012-02-17 12:46:25 -05002843 loff_t pos = 0;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002844 struct inode *inode;
2845 loff_t i_size;
Al Viroa6cbcd42014-03-04 22:38:00 -05002846 size_t count = iov_iter_count(iter);
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07002847 loff_t offset = iocb->ki_pos;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002848 struct fuse_io_priv *io;
Anand Avati4273b792012-02-17 12:46:25 -05002849
Anand Avati4273b792012-02-17 12:46:25 -05002850 pos = offset;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002851 inode = file->f_mapping->host;
2852 i_size = i_size_read(inode);
Anand Avati4273b792012-02-17 12:46:25 -05002853
Omar Sandoval6f673762015-03-16 04:33:52 -07002854 if ((iov_iter_rw(iter) == READ) && (offset > i_size))
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00002855 return 0;
2856
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002857 /* optimization for short read */
Omar Sandoval6f673762015-03-16 04:33:52 -07002858 if (async_dio && iov_iter_rw(iter) != WRITE && offset + count > i_size) {
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002859 if (offset >= i_size)
2860 return 0;
Al Viro6b775b12015-04-07 15:06:19 -04002861 iov_iter_truncate(iter, fuse_round_up(i_size - offset));
2862 count = iov_iter_count(iter);
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002863 }
2864
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002865 io = kmalloc(sizeof(struct fuse_io_priv), GFP_KERNEL);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002866 if (!io)
2867 return -ENOMEM;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002868 spin_lock_init(&io->lock);
Seth Forshee744742d2016-03-11 10:35:34 -06002869 kref_init(&io->refcnt);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002870 io->reqs = 1;
2871 io->bytes = -1;
2872 io->size = 0;
2873 io->offset = offset;
Omar Sandoval6f673762015-03-16 04:33:52 -07002874 io->write = (iov_iter_rw(iter) == WRITE);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002875 io->err = 0;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002876 io->file = file;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002877 /*
2878 * By default, we want to optimize all I/Os with async request
Miklos Szeredi60b9df72013-05-01 14:37:21 +02002879 * submission to the client filesystem if supported.
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002880 */
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002881 io->async = async_dio;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002882 io->iocb = iocb;
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302883 io->blocking = is_sync_kiocb(iocb);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002884
2885 /*
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302886 * We cannot asynchronously extend the size of a file.
2887 * In such case the aio will behave exactly like sync io.
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002888 */
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302889 if ((offset + count > i_size) && iov_iter_rw(iter) == WRITE)
2890 io->blocking = true;
Anand Avati4273b792012-02-17 12:46:25 -05002891
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302892 if (io->async && io->blocking) {
Seth Forshee744742d2016-03-11 10:35:34 -06002893 /*
2894 * Additional reference to keep io around after
2895 * calling fuse_aio_complete()
2896 */
2897 kref_get(&io->refcnt);
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002898 io->done = &wait;
Seth Forshee744742d2016-03-11 10:35:34 -06002899 }
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002900
Omar Sandoval6f673762015-03-16 04:33:52 -07002901 if (iov_iter_rw(iter) == WRITE) {
Al Viro6b775b12015-04-07 15:06:19 -04002902 ret = fuse_direct_io(io, iter, &pos, FUSE_DIO_WRITE);
Al Viro812408f2015-03-30 22:15:58 -04002903 fuse_invalidate_attr(inode);
2904 } else {
Al Virod22a9432014-03-16 15:50:47 -04002905 ret = __fuse_direct_read(io, iter, &pos);
Al Viro812408f2015-03-30 22:15:58 -04002906 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002907
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002908 if (io->async) {
2909 fuse_aio_complete(io, ret < 0 ? ret : 0, -1);
2910
2911 /* we have a non-extending, async request, so return */
Ashish Sangwan7879c4e2016-04-07 17:18:11 +05302912 if (!io->blocking)
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002913 return -EIOCBQUEUED;
2914
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002915 wait_for_completion(&wait);
2916 ret = fuse_get_res_by_io(io);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002917 }
2918
Seth Forshee744742d2016-03-11 10:35:34 -06002919 kref_put(&io->refcnt, fuse_io_release);
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002920
Omar Sandoval6f673762015-03-16 04:33:52 -07002921 if (iov_iter_rw(iter) == WRITE) {
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002922 if (ret > 0)
2923 fuse_write_update_size(inode, pos);
2924 else if (ret < 0 && offset + count > i_size)
2925 fuse_do_truncate(file);
2926 }
Anand Avati4273b792012-02-17 12:46:25 -05002927
2928 return ret;
2929}
2930
Miklos Szeredicdadb112012-11-10 16:55:56 +01002931static long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
2932 loff_t length)
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002933{
2934 struct fuse_file *ff = file->private_data;
Miklos Szeredi1c682712014-12-12 10:04:51 +01002935 struct inode *inode = file_inode(file);
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002936 struct fuse_inode *fi = get_fuse_inode(inode);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002937 struct fuse_conn *fc = ff->fc;
Miklos Szeredi70781872014-12-12 09:49:05 +01002938 FUSE_ARGS(args);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002939 struct fuse_fallocate_in inarg = {
2940 .fh = ff->fh,
2941 .offset = offset,
2942 .length = length,
2943 .mode = mode
2944 };
2945 int err;
Maxim Patlasov14c14412013-06-13 12:16:39 +04002946 bool lock_inode = !(mode & FALLOC_FL_KEEP_SIZE) ||
2947 (mode & FALLOC_FL_PUNCH_HOLE);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002948
Miklos Szeredi4adb8302014-04-28 14:19:21 +02002949 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2950 return -EOPNOTSUPP;
2951
Miklos Szeredi519c6042012-04-26 10:56:36 +02002952 if (fc->no_fallocate)
2953 return -EOPNOTSUPP;
2954
Maxim Patlasov14c14412013-06-13 12:16:39 +04002955 if (lock_inode) {
Al Viro59551022016-01-22 15:40:57 -05002956 inode_lock(inode);
Maxim Patlasovbde52782013-09-13 19:19:54 +04002957 if (mode & FALLOC_FL_PUNCH_HOLE) {
2958 loff_t endbyte = offset + length - 1;
2959 err = filemap_write_and_wait_range(inode->i_mapping,
2960 offset, endbyte);
2961 if (err)
2962 goto out;
2963
2964 fuse_sync_writes(inode);
2965 }
Brian Foster3634a632013-05-17 09:30:32 -04002966 }
2967
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002968 if (!(mode & FALLOC_FL_KEEP_SIZE))
2969 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
2970
Miklos Szeredi70781872014-12-12 09:49:05 +01002971 args.in.h.opcode = FUSE_FALLOCATE;
2972 args.in.h.nodeid = ff->nodeid;
2973 args.in.numargs = 1;
2974 args.in.args[0].size = sizeof(inarg);
2975 args.in.args[0].value = &inarg;
2976 err = fuse_simple_request(fc, &args);
Miklos Szeredi519c6042012-04-26 10:56:36 +02002977 if (err == -ENOSYS) {
2978 fc->no_fallocate = 1;
2979 err = -EOPNOTSUPP;
2980 }
Brian Fosterbee6c302013-05-17 15:27:34 -04002981 if (err)
2982 goto out;
2983
2984 /* we could have extended the file */
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04002985 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
2986 bool changed = fuse_write_update_size(inode, offset + length);
2987
Miklos Szeredi93d22692014-04-28 14:19:22 +02002988 if (changed && fc->writeback_cache)
2989 file_update_time(file);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04002990 }
Brian Fosterbee6c302013-05-17 15:27:34 -04002991
2992 if (mode & FALLOC_FL_PUNCH_HOLE)
2993 truncate_pagecache_range(inode, offset, offset + length - 1);
2994
2995 fuse_invalidate_attr(inode);
2996
Brian Foster3634a632013-05-17 09:30:32 -04002997out:
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002998 if (!(mode & FALLOC_FL_KEEP_SIZE))
2999 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
3000
Maxim Patlasovbde52782013-09-13 19:19:54 +04003001 if (lock_inode)
Al Viro59551022016-01-22 15:40:57 -05003002 inode_unlock(inode);
Brian Foster3634a632013-05-17 09:30:32 -04003003
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003004 return err;
3005}
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003006
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08003007static const struct file_operations fuse_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07003008 .llseek = fuse_file_llseek,
Al Viro37c20f12014-04-02 14:47:09 -04003009 .read_iter = fuse_file_read_iter,
Al Viro84c3d552014-04-03 14:33:23 -04003010 .write_iter = fuse_file_write_iter,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003011 .mmap = fuse_file_mmap,
3012 .open = fuse_open,
3013 .flush = fuse_flush,
3014 .release = fuse_release,
3015 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07003016 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07003017 .flock = fuse_file_flock,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02003018 .splice_read = generic_file_splice_read,
Tejun Heo59efec72008-11-26 12:03:55 +01003019 .unlocked_ioctl = fuse_file_ioctl,
3020 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01003021 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003022 .fallocate = fuse_file_fallocate,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003023};
3024
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08003025static const struct file_operations fuse_direct_io_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07003026 .llseek = fuse_file_llseek,
Al Viro15316262015-03-30 22:08:36 -04003027 .read_iter = fuse_direct_read_iter,
Al Viro15316262015-03-30 22:08:36 -04003028 .write_iter = fuse_direct_write_iter,
Miklos Szeredifc280c92009-04-02 14:25:35 +02003029 .mmap = fuse_direct_mmap,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07003030 .open = fuse_open,
3031 .flush = fuse_flush,
3032 .release = fuse_release,
3033 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07003034 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07003035 .flock = fuse_file_flock,
Tejun Heo59efec72008-11-26 12:03:55 +01003036 .unlocked_ioctl = fuse_file_ioctl,
3037 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01003038 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003039 .fallocate = fuse_file_fallocate,
Miklos Szeredifc280c92009-04-02 14:25:35 +02003040 /* no splice_read */
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07003041};
3042
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07003043static const struct address_space_operations fuse_file_aops = {
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003044 .readpage = fuse_readpage,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003045 .writepage = fuse_writepage,
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04003046 .writepages = fuse_writepages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003047 .launder_page = fuse_launder_page,
Miklos Szeredidb50b962005-09-09 13:10:33 -07003048 .readpages = fuse_readpages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003049 .set_page_dirty = __set_page_dirty_nobuffers,
Miklos Szeredib2d22722006-12-06 20:35:51 -08003050 .bmap = fuse_bmap,
Anand Avati4273b792012-02-17 12:46:25 -05003051 .direct_IO = fuse_direct_IO,
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04003052 .write_begin = fuse_write_begin,
3053 .write_end = fuse_write_end,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003054};
3055
3056void fuse_init_file_inode(struct inode *inode)
3057{
Miklos Szeredi45323fb2005-09-09 13:10:37 -07003058 inode->i_fop = &fuse_file_operations;
3059 inode->i_data.a_ops = &fuse_file_aops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003060}