blob: caa8d95b24e843581342c80c2552b69d6cfd223f [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>
Kent Overstreeta27bb332013-05-07 16:19:08 -070018#include <linux/aio.h>
Brian Foster3634a632013-05-17 09:30:32 -040019#include <linux/falloc.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 Szeredifd72faa2005-11-07 00:59:51 -080027 struct fuse_req *req;
28 int err;
29
Maxim Patlasovb111c8c2012-10-26 19:48:30 +040030 req = fuse_get_req_nopages(fc);
Miklos Szeredice1d5a42006-04-10 22:54:58 -070031 if (IS_ERR(req))
32 return PTR_ERR(req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080033
34 memset(&inarg, 0, sizeof(inarg));
Miklos Szeredi6ff958e2007-10-18 03:07:02 -070035 inarg.flags = file->f_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
36 if (!fc->atomic_o_trunc)
37 inarg.flags &= ~O_TRUNC;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +020038 req->in.h.opcode = opcode;
39 req->in.h.nodeid = nodeid;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080040 req->in.numargs = 1;
41 req->in.args[0].size = sizeof(inarg);
42 req->in.args[0].value = &inarg;
43 req->out.numargs = 1;
44 req->out.args[0].size = sizeof(*outargp);
45 req->out.args[0].value = outargp;
Tejun Heob93f8582008-11-26 12:03:55 +010046 fuse_request_send(fc, req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080047 err = req->out.h.error;
48 fuse_put_request(fc, req);
49
50 return err;
51}
52
Tejun Heoacf99432008-11-26 12:03:55 +010053struct fuse_file *fuse_file_alloc(struct fuse_conn *fc)
Miklos Szeredifd72faa2005-11-07 00:59:51 -080054{
55 struct fuse_file *ff;
Tejun Heo6b2db282009-04-14 10:54:49 +090056
Miklos Szeredifd72faa2005-11-07 00:59:51 -080057 ff = kmalloc(sizeof(struct fuse_file), GFP_KERNEL);
Tejun Heo6b2db282009-04-14 10:54:49 +090058 if (unlikely(!ff))
59 return NULL;
60
Miklos Szeredida5e4712009-04-28 16:56:36 +020061 ff->fc = fc;
Maxim Patlasov4250c062012-10-26 19:48:07 +040062 ff->reserved_req = fuse_request_alloc(0);
Tejun Heo6b2db282009-04-14 10:54:49 +090063 if (unlikely(!ff->reserved_req)) {
64 kfree(ff);
65 return NULL;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080066 }
Tejun Heo6b2db282009-04-14 10:54:49 +090067
68 INIT_LIST_HEAD(&ff->write_entry);
69 atomic_set(&ff->count, 0);
70 RB_CLEAR_NODE(&ff->polled_node);
71 init_waitqueue_head(&ff->poll_wait);
72
73 spin_lock(&fc->lock);
74 ff->kh = ++fc->khctr;
75 spin_unlock(&fc->lock);
76
Miklos Szeredifd72faa2005-11-07 00:59:51 -080077 return ff;
78}
79
80void fuse_file_free(struct fuse_file *ff)
81{
Miklos Szeredi33649c92006-06-25 05:48:52 -070082 fuse_request_free(ff->reserved_req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080083 kfree(ff);
84}
85
Miklos Szeredic7b71432009-04-28 16:56:37 +020086struct fuse_file *fuse_file_get(struct fuse_file *ff)
Miklos Szeredic756e0a2007-10-16 23:31:00 -070087{
88 atomic_inc(&ff->count);
89 return ff;
90}
91
Miklos Szeredi5a18ec12011-02-25 14:44:58 +010092static void fuse_release_async(struct work_struct *work)
Miklos Szeredi819c4b32007-10-16 23:31:04 -070093{
Miklos Szeredi5a18ec12011-02-25 14:44:58 +010094 struct fuse_req *req;
95 struct fuse_conn *fc;
96 struct path path;
97
98 req = container_of(work, struct fuse_req, misc.release.work);
99 path = req->misc.release.path;
100 fc = get_fuse_conn(path.dentry->d_inode);
101
102 fuse_put_request(fc, req);
103 path_put(&path);
Miklos Szeredi819c4b32007-10-16 23:31:04 -0700104}
105
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100106static void fuse_release_end(struct fuse_conn *fc, struct fuse_req *req)
107{
108 if (fc->destroy_req) {
109 /*
110 * If this is a fuseblk mount, then it's possible that
111 * releasing the path will result in releasing the
112 * super block and sending the DESTROY request. If
113 * the server is single threaded, this would hang.
114 * For this reason do the path_put() in a separate
115 * thread.
116 */
117 atomic_inc(&req->count);
118 INIT_WORK(&req->misc.release.work, fuse_release_async);
119 schedule_work(&req->misc.release.work);
120 } else {
121 path_put(&req->misc.release.path);
122 }
123}
124
125static void fuse_file_put(struct fuse_file *ff, bool sync)
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700126{
127 if (atomic_dec_and_test(&ff->count)) {
128 struct fuse_req *req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200129
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100130 if (ff->fc->no_open) {
131 /*
132 * Drop the release request when client does not
133 * implement 'open'
134 */
135 req->background = 0;
136 path_put(&req->misc.release.path);
137 fuse_put_request(ff->fc, req);
138 } else if (sync) {
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400139 req->background = 0;
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100140 fuse_request_send(ff->fc, req);
141 path_put(&req->misc.release.path);
142 fuse_put_request(ff->fc, req);
143 } else {
144 req->end = fuse_release_end;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400145 req->background = 1;
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100146 fuse_request_send_background(ff->fc, req);
147 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700148 kfree(ff);
149 }
150}
151
Tejun Heo08cbf542009-04-14 10:54:53 +0900152int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
153 bool isdir)
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200154{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200155 struct fuse_file *ff;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200156 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
157
158 ff = fuse_file_alloc(fc);
159 if (!ff)
160 return -ENOMEM;
161
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100162 ff->fh = 0;
163 ff->open_flags = FOPEN_KEEP_CACHE; /* Default for no-open */
164 if (!fc->no_open || isdir) {
165 struct fuse_open_out outarg;
166 int err;
167
168 err = fuse_send_open(fc, nodeid, file, opcode, &outarg);
169 if (!err) {
170 ff->fh = outarg.fh;
171 ff->open_flags = outarg.open_flags;
172
173 } else if (err != -ENOSYS || isdir) {
174 fuse_file_free(ff);
175 return err;
176 } else {
177 fc->no_open = 1;
178 }
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200179 }
180
181 if (isdir)
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100182 ff->open_flags &= ~FOPEN_DIRECT_IO;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200183
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200184 ff->nodeid = nodeid;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200185 file->private_data = fuse_file_get(ff);
186
187 return 0;
188}
Tejun Heo08cbf542009-04-14 10:54:53 +0900189EXPORT_SYMBOL_GPL(fuse_do_open);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200190
Pavel Emelyanov650b22b2013-10-10 17:10:04 +0400191static void fuse_link_write_file(struct file *file)
192{
193 struct inode *inode = file_inode(file);
194 struct fuse_conn *fc = get_fuse_conn(inode);
195 struct fuse_inode *fi = get_fuse_inode(inode);
196 struct fuse_file *ff = file->private_data;
197 /*
198 * file may be written through mmap, so chain it onto the
199 * inodes's write_file list
200 */
201 spin_lock(&fc->lock);
202 if (list_empty(&ff->write_entry))
203 list_add(&ff->write_entry, &fi->write_files);
204 spin_unlock(&fc->lock);
205}
206
Miklos Szeredic7b71432009-04-28 16:56:37 +0200207void fuse_finish_open(struct inode *inode, struct file *file)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800208{
Miklos Szeredic7b71432009-04-28 16:56:37 +0200209 struct fuse_file *ff = file->private_data;
Ken Sumralla0822c52010-11-24 12:57:00 -0800210 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200211
212 if (ff->open_flags & FOPEN_DIRECT_IO)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800213 file->f_op = &fuse_direct_io_file_operations;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200214 if (!(ff->open_flags & FOPEN_KEEP_CACHE))
Miklos Szeredib1009972007-10-16 23:31:01 -0700215 invalidate_inode_pages2(inode->i_mapping);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200216 if (ff->open_flags & FOPEN_NONSEEKABLE)
Tejun Heoa7c1b992008-10-16 16:08:57 +0200217 nonseekable_open(inode, file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800218 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
219 struct fuse_inode *fi = get_fuse_inode(inode);
220
221 spin_lock(&fc->lock);
222 fi->attr_version = ++fc->attr_version;
223 i_size_write(inode, 0);
224 spin_unlock(&fc->lock);
225 fuse_invalidate_attr(inode);
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200226 if (fc->writeback_cache)
227 file_update_time(file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800228 }
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +0400229 if ((file->f_mode & FMODE_WRITE) && fc->writeback_cache)
230 fuse_link_write_file(file);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800231}
232
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200233int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800234{
Tejun Heoacf99432008-11-26 12:03:55 +0100235 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700236 int err;
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200237 bool lock_inode = (file->f_flags & O_TRUNC) &&
238 fc->atomic_o_trunc &&
239 fc->writeback_cache;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700240
241 err = generic_file_open(inode, file);
242 if (err)
243 return err;
244
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200245 if (lock_inode)
246 mutex_lock(&inode->i_mutex);
247
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200248 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700249
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200250 if (!err)
251 fuse_finish_open(inode, file);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200252
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200253 if (lock_inode)
254 mutex_unlock(&inode->i_mutex);
255
256 return err;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700257}
258
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200259static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800260{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200261 struct fuse_conn *fc = ff->fc;
Miklos Szeredi33649c92006-06-25 05:48:52 -0700262 struct fuse_req *req = ff->reserved_req;
Miklos Szeredib57d4262008-02-06 01:38:39 -0800263 struct fuse_release_in *inarg = &req->misc.release.in;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700264
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200265 spin_lock(&fc->lock);
266 list_del(&ff->write_entry);
267 if (!RB_EMPTY_NODE(&ff->polled_node))
268 rb_erase(&ff->polled_node, &fc->polled_files);
269 spin_unlock(&fc->lock);
270
Bryan Green357ccf22011-03-01 16:43:52 -0800271 wake_up_interruptible_all(&ff->poll_wait);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200272
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700273 inarg->fh = ff->fh;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800274 inarg->flags = flags;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700275 req->in.h.opcode = opcode;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200276 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700277 req->in.numargs = 1;
278 req->in.args[0].size = sizeof(struct fuse_release_in);
279 req->in.args[0].value = inarg;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800280}
281
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200282void fuse_release_common(struct file *file, int opcode)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800283{
Tejun Heo6b2db282009-04-14 10:54:49 +0900284 struct fuse_file *ff;
285 struct fuse_req *req;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -0700286
Tejun Heo6b2db282009-04-14 10:54:49 +0900287 ff = file->private_data;
288 if (unlikely(!ff))
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200289 return;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700290
Tejun Heo6b2db282009-04-14 10:54:49 +0900291 req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200292 fuse_prepare_release(ff, file->f_flags, opcode);
Tejun Heo95668a62008-11-26 12:03:55 +0100293
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200294 if (ff->flock) {
295 struct fuse_release_in *inarg = &req->misc.release.in;
296 inarg->release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
297 inarg->lock_owner = fuse_lock_owner_id(ff->fc,
298 (fl_owner_t) file);
299 }
Tejun Heo6b2db282009-04-14 10:54:49 +0900300 /* Hold vfsmount and dentry until release is finished */
Miklos Szeredib0be46e2009-04-28 16:56:36 +0200301 path_get(&file->f_path);
302 req->misc.release.path = file->f_path;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700303
Tejun Heo6b2db282009-04-14 10:54:49 +0900304 /*
305 * Normally this will send the RELEASE request, however if
306 * some asynchronous READ or WRITE requests are outstanding,
307 * the sending will be delayed.
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100308 *
309 * Make the release synchronous if this is a fuseblk mount,
310 * synchronous RELEASE is allowed (and desirable) in this case
311 * because the server can be trusted not to screw up.
Tejun Heo6b2db282009-04-14 10:54:49 +0900312 */
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100313 fuse_file_put(ff, ff->fc->destroy_req != NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700314}
315
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700316static int fuse_open(struct inode *inode, struct file *file)
317{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200318 return fuse_open_common(inode, file, false);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700319}
320
321static int fuse_release(struct inode *inode, struct file *file)
322{
Pavel Emelyanove7cc133c2013-10-10 17:19:06 +0400323 struct fuse_conn *fc = get_fuse_conn(inode);
324
325 /* see fuse_vma_close() for !writeback_cache case */
326 if (fc->writeback_cache)
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200327 write_inode_now(inode, 1);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400328
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200329 fuse_release_common(file, FUSE_RELEASE);
330
331 /* return value is ignored by VFS */
332 return 0;
333}
334
335void fuse_sync_release(struct fuse_file *ff, int flags)
336{
337 WARN_ON(atomic_read(&ff->count) > 1);
338 fuse_prepare_release(ff, flags, FUSE_RELEASE);
339 ff->reserved_req->force = 1;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400340 ff->reserved_req->background = 0;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200341 fuse_request_send(ff->fc, ff->reserved_req);
342 fuse_put_request(ff->fc, ff->reserved_req);
343 kfree(ff);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700344}
Tejun Heo08cbf542009-04-14 10:54:53 +0900345EXPORT_SYMBOL_GPL(fuse_sync_release);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700346
Miklos Szeredi71421252006-06-25 05:48:52 -0700347/*
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700348 * Scramble the ID space with XTEA, so that the value of the files_struct
349 * pointer is not exposed to userspace.
Miklos Szeredi71421252006-06-25 05:48:52 -0700350 */
Miklos Szeredif3332112007-10-18 03:07:04 -0700351u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
Miklos Szeredi71421252006-06-25 05:48:52 -0700352{
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700353 u32 *k = fc->scramble_key;
354 u64 v = (unsigned long) id;
355 u32 v0 = v;
356 u32 v1 = v >> 32;
357 u32 sum = 0;
358 int i;
359
360 for (i = 0; i < 32; i++) {
361 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
362 sum += 0x9E3779B9;
363 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
364 }
365
366 return (u64) v0 + ((u64) v1 << 32);
Miklos Szeredi71421252006-06-25 05:48:52 -0700367}
368
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700369/*
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400370 * Check if any page in a range is under writeback
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700371 *
372 * This is currently done by walking the list of writepage requests
373 * for the inode, which can be pretty inefficient.
374 */
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400375static bool fuse_range_is_writeback(struct inode *inode, pgoff_t idx_from,
376 pgoff_t idx_to)
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700377{
378 struct fuse_conn *fc = get_fuse_conn(inode);
379 struct fuse_inode *fi = get_fuse_inode(inode);
380 struct fuse_req *req;
381 bool found = false;
382
383 spin_lock(&fc->lock);
384 list_for_each_entry(req, &fi->writepages, writepages_entry) {
385 pgoff_t curr_index;
386
387 BUG_ON(req->inode != inode);
388 curr_index = req->misc.write.in.offset >> PAGE_CACHE_SHIFT;
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400389 if (idx_from < curr_index + req->num_pages &&
390 curr_index <= idx_to) {
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700391 found = true;
392 break;
393 }
394 }
395 spin_unlock(&fc->lock);
396
397 return found;
398}
399
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400400static inline bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
401{
402 return fuse_range_is_writeback(inode, index, index);
403}
404
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700405/*
406 * Wait for page writeback to be completed.
407 *
408 * Since fuse doesn't rely on the VM writeback tracking, this has to
409 * use some other means.
410 */
411static int fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
412{
413 struct fuse_inode *fi = get_fuse_inode(inode);
414
415 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
416 return 0;
417}
418
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400419/*
420 * Wait for all pending writepages on the inode to finish.
421 *
422 * This is currently done by blocking further writes with FUSE_NOWRITE
423 * and waiting for all sent writes to complete.
424 *
425 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
426 * could conflict with truncation.
427 */
428static void fuse_sync_writes(struct inode *inode)
429{
430 fuse_set_nowrite(inode);
431 fuse_release_nowrite(inode);
432}
433
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -0700434static int fuse_flush(struct file *file, fl_owner_t id)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700435{
Al Viro6131ffa2013-02-27 16:59:05 -0500436 struct inode *inode = file_inode(file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700437 struct fuse_conn *fc = get_fuse_conn(inode);
438 struct fuse_file *ff = file->private_data;
439 struct fuse_req *req;
440 struct fuse_flush_in inarg;
441 int err;
442
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800443 if (is_bad_inode(inode))
444 return -EIO;
445
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700446 if (fc->no_flush)
447 return 0;
448
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200449 err = write_inode_now(inode, 1);
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400450 if (err)
451 return err;
452
453 mutex_lock(&inode->i_mutex);
454 fuse_sync_writes(inode);
455 mutex_unlock(&inode->i_mutex);
456
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400457 req = fuse_get_req_nofail_nopages(fc, file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700458 memset(&inarg, 0, sizeof(inarg));
459 inarg.fh = ff->fh;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700460 inarg.lock_owner = fuse_lock_owner_id(fc, id);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700461 req->in.h.opcode = FUSE_FLUSH;
462 req->in.h.nodeid = get_node_id(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700463 req->in.numargs = 1;
464 req->in.args[0].size = sizeof(inarg);
465 req->in.args[0].value = &inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -0700466 req->force = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100467 fuse_request_send(fc, req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700468 err = req->out.h.error;
469 fuse_put_request(fc, req);
470 if (err == -ENOSYS) {
471 fc->no_flush = 1;
472 err = 0;
473 }
474 return err;
475}
476
Josef Bacik02c24a82011-07-16 20:44:56 -0400477int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
478 int datasync, int isdir)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700479{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200480 struct inode *inode = file->f_mapping->host;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700481 struct fuse_conn *fc = get_fuse_conn(inode);
482 struct fuse_file *ff = file->private_data;
483 struct fuse_req *req;
484 struct fuse_fsync_in inarg;
485 int err;
486
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800487 if (is_bad_inode(inode))
488 return -EIO;
489
Josef Bacik02c24a82011-07-16 20:44:56 -0400490 mutex_lock(&inode->i_mutex);
491
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700492 /*
493 * Start writeback against all dirty pages of the inode, then
494 * wait for all outstanding writes, before sending the FSYNC
495 * request.
496 */
Miklos Szeredi22401e72014-04-28 14:19:23 +0200497 err = filemap_write_and_wait_range(inode->i_mapping, start, end);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700498 if (err)
Josef Bacik02c24a82011-07-16 20:44:56 -0400499 goto out;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700500
501 fuse_sync_writes(inode);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200502 err = sync_inode_metadata(inode, 1);
503 if (err)
504 goto out;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700505
Miklos Szeredi22401e72014-04-28 14:19:23 +0200506 if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
507 goto out;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400508
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400509 req = fuse_get_req_nopages(fc);
Josef Bacik02c24a82011-07-16 20:44:56 -0400510 if (IS_ERR(req)) {
511 err = PTR_ERR(req);
512 goto out;
513 }
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700514
515 memset(&inarg, 0, sizeof(inarg));
516 inarg.fh = ff->fh;
517 inarg.fsync_flags = datasync ? 1 : 0;
Miklos Szeredi82547982005-09-09 13:10:38 -0700518 req->in.h.opcode = isdir ? FUSE_FSYNCDIR : FUSE_FSYNC;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700519 req->in.h.nodeid = get_node_id(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700520 req->in.numargs = 1;
521 req->in.args[0].size = sizeof(inarg);
522 req->in.args[0].value = &inarg;
Tejun Heob93f8582008-11-26 12:03:55 +0100523 fuse_request_send(fc, req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700524 err = req->out.h.error;
525 fuse_put_request(fc, req);
526 if (err == -ENOSYS) {
Miklos Szeredi82547982005-09-09 13:10:38 -0700527 if (isdir)
528 fc->no_fsyncdir = 1;
529 else
530 fc->no_fsync = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700531 err = 0;
532 }
Josef Bacik02c24a82011-07-16 20:44:56 -0400533out:
534 mutex_unlock(&inode->i_mutex);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700535 return err;
536}
537
Josef Bacik02c24a82011-07-16 20:44:56 -0400538static int fuse_fsync(struct file *file, loff_t start, loff_t end,
539 int datasync)
Miklos Szeredi82547982005-09-09 13:10:38 -0700540{
Josef Bacik02c24a82011-07-16 20:44:56 -0400541 return fuse_fsync_common(file, start, end, datasync, 0);
Miklos Szeredi82547982005-09-09 13:10:38 -0700542}
543
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200544void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
545 size_t count, int opcode)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700546{
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700547 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredia6643092007-11-28 16:22:00 -0800548 struct fuse_file *ff = file->private_data;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700549
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800550 inarg->fh = ff->fh;
551 inarg->offset = pos;
552 inarg->size = count;
Miklos Szeredia6643092007-11-28 16:22:00 -0800553 inarg->flags = file->f_flags;
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800554 req->in.h.opcode = opcode;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200555 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700556 req->in.numargs = 1;
557 req->in.args[0].size = sizeof(struct fuse_read_in);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800558 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700559 req->out.argvar = 1;
560 req->out.numargs = 1;
561 req->out.args[0].size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700562}
563
Maxim Patlasov187c5c32012-12-14 19:20:25 +0400564static void fuse_release_user_pages(struct fuse_req *req, int write)
565{
566 unsigned i;
567
568 for (i = 0; i < req->num_pages; i++) {
569 struct page *page = req->pages[i];
570 if (write)
571 set_page_dirty_lock(page);
572 put_page(page);
573 }
574}
575
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400576/**
577 * In case of short read, the caller sets 'pos' to the position of
578 * actual end of fuse request in IO request. Otherwise, if bytes_requested
579 * == bytes_transferred or rw == WRITE, the caller sets 'pos' to -1.
580 *
581 * An example:
582 * User requested DIO read of 64K. It was splitted into two 32K fuse requests,
583 * both submitted asynchronously. The first of them was ACKed by userspace as
584 * fully completed (req->out.args[0].size == 32K) resulting in pos == -1. The
585 * second request was ACKed as short, e.g. only 1K was read, resulting in
586 * pos == 33K.
587 *
588 * Thus, when all fuse requests are completed, the minimal non-negative 'pos'
589 * will be equal to the length of the longest contiguous fragment of
590 * transferred data starting from the beginning of IO request.
591 */
592static void fuse_aio_complete(struct fuse_io_priv *io, int err, ssize_t pos)
593{
594 int left;
595
596 spin_lock(&io->lock);
597 if (err)
598 io->err = io->err ? : err;
599 else if (pos >= 0 && (io->bytes < 0 || pos < io->bytes))
600 io->bytes = pos;
601
602 left = --io->reqs;
603 spin_unlock(&io->lock);
604
605 if (!left) {
606 long res;
607
608 if (io->err)
609 res = io->err;
610 else if (io->bytes >= 0 && io->write)
611 res = -EIO;
612 else {
613 res = io->bytes < 0 ? io->size : io->bytes;
614
615 if (!is_sync_kiocb(io->iocb)) {
Al Virocb5e05d2013-06-16 20:05:23 +0400616 struct inode *inode = file_inode(io->iocb->ki_filp);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400617 struct fuse_conn *fc = get_fuse_conn(inode);
618 struct fuse_inode *fi = get_fuse_inode(inode);
619
620 spin_lock(&fc->lock);
621 fi->attr_version = ++fc->attr_version;
622 spin_unlock(&fc->lock);
623 }
624 }
625
626 aio_complete(io->iocb, res, 0);
627 kfree(io);
628 }
629}
630
631static void fuse_aio_complete_req(struct fuse_conn *fc, struct fuse_req *req)
632{
633 struct fuse_io_priv *io = req->io;
634 ssize_t pos = -1;
635
636 fuse_release_user_pages(req, !io->write);
637
638 if (io->write) {
639 if (req->misc.write.in.size != req->misc.write.out.size)
640 pos = req->misc.write.in.offset - io->offset +
641 req->misc.write.out.size;
642 } else {
643 if (req->misc.read.in.size != req->out.args[0].size)
644 pos = req->misc.read.in.offset - io->offset +
645 req->out.args[0].size;
646 }
647
648 fuse_aio_complete(io, req->out.h.error, pos);
649}
650
651static size_t fuse_async_req_send(struct fuse_conn *fc, struct fuse_req *req,
652 size_t num_bytes, struct fuse_io_priv *io)
653{
654 spin_lock(&io->lock);
655 io->size += num_bytes;
656 io->reqs++;
657 spin_unlock(&io->lock);
658
659 req->io = io;
660 req->end = fuse_aio_complete_req;
661
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400662 __fuse_get_request(req);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400663 fuse_request_send_background(fc, req);
664
665 return num_bytes;
666}
667
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400668static size_t fuse_send_read(struct fuse_req *req, struct fuse_io_priv *io,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200669 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700670{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400671 struct file *file = io->file;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200672 struct fuse_file *ff = file->private_data;
673 struct fuse_conn *fc = ff->fc;
Miklos Szeredif3332112007-10-18 03:07:04 -0700674
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200675 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredif3332112007-10-18 03:07:04 -0700676 if (owner != NULL) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700677 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredif3332112007-10-18 03:07:04 -0700678
679 inarg->read_flags |= FUSE_READ_LOCKOWNER;
680 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
681 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400682
683 if (io->async)
684 return fuse_async_req_send(fc, req, count, io);
685
Tejun Heob93f8582008-11-26 12:03:55 +0100686 fuse_request_send(fc, req);
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800687 return req->out.args[0].size;
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700688}
689
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700690static void fuse_read_update_size(struct inode *inode, loff_t size,
691 u64 attr_ver)
692{
693 struct fuse_conn *fc = get_fuse_conn(inode);
694 struct fuse_inode *fi = get_fuse_inode(inode);
695
696 spin_lock(&fc->lock);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +0400697 if (attr_ver == fi->attr_version && size < inode->i_size &&
698 !test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700699 fi->attr_version = ++fc->attr_version;
700 i_size_write(inode, size);
701 }
702 spin_unlock(&fc->lock);
703}
704
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400705static void fuse_short_read(struct fuse_req *req, struct inode *inode,
706 u64 attr_ver)
707{
708 size_t num_read = req->out.args[0].size;
Pavel Emelyanov83732002013-10-10 17:10:46 +0400709 struct fuse_conn *fc = get_fuse_conn(inode);
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400710
Pavel Emelyanov83732002013-10-10 17:10:46 +0400711 if (fc->writeback_cache) {
712 /*
713 * A hole in a file. Some data after the hole are in page cache,
714 * but have not reached the client fs yet. So, the hole is not
715 * present there.
716 */
717 int i;
718 int start_idx = num_read >> PAGE_CACHE_SHIFT;
719 size_t off = num_read & (PAGE_CACHE_SIZE - 1);
720
721 for (i = start_idx; i < req->num_pages; i++) {
722 zero_user_segment(req->pages[i], off, PAGE_CACHE_SIZE);
723 off = 0;
724 }
725 } else {
726 loff_t pos = page_offset(req->pages[0]) + num_read;
727 fuse_read_update_size(inode, pos, attr_ver);
728 }
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400729}
730
Maxim Patlasov482fce52013-10-10 17:11:25 +0400731static int fuse_do_readpage(struct file *file, struct page *page)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700732{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400733 struct fuse_io_priv io = { .async = 0, .file = file };
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700734 struct inode *inode = page->mapping->host;
735 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800736 struct fuse_req *req;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700737 size_t num_read;
738 loff_t pos = page_offset(page);
739 size_t count = PAGE_CACHE_SIZE;
740 u64 attr_ver;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800741 int err;
742
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700743 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300744 * Page writeback can extend beyond the lifetime of the
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700745 * page-cache page, so make sure we read a properly synced
746 * page.
747 */
748 fuse_wait_on_page_writeback(inode, page->index);
749
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400750 req = fuse_get_req(fc, 1);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700751 if (IS_ERR(req))
Maxim Patlasov482fce52013-10-10 17:11:25 +0400752 return PTR_ERR(req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700753
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700754 attr_ver = fuse_get_attr_version(fc);
755
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700756 req->out.page_zeroing = 1;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200757 req->out.argpages = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700758 req->num_pages = 1;
759 req->pages[0] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400760 req->page_descs[0].length = count;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400761 num_read = fuse_send_read(req, &io, pos, count, NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700762 err = req->out.h.error;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700763
764 if (!err) {
765 /*
766 * Short read means EOF. If file size is larger, truncate it
767 */
768 if (num_read < count)
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400769 fuse_short_read(req, inode, attr_ver);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700770
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700771 SetPageUptodate(page);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700772 }
773
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400774 fuse_put_request(fc, req);
Maxim Patlasov482fce52013-10-10 17:11:25 +0400775
776 return err;
777}
778
779static int fuse_readpage(struct file *file, struct page *page)
780{
781 struct inode *inode = page->mapping->host;
782 int err;
783
784 err = -EIO;
785 if (is_bad_inode(inode))
786 goto out;
787
788 err = fuse_do_readpage(file, page);
Andrew Gallagher451418f2013-11-05 03:55:43 -0800789 fuse_invalidate_atime(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700790 out:
791 unlock_page(page);
792 return err;
793}
794
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800795static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredidb50b962005-09-09 13:10:33 -0700796{
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800797 int i;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700798 size_t count = req->misc.read.in.size;
799 size_t num_read = req->out.args[0].size;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200800 struct address_space *mapping = NULL;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800801
Miklos Szeredice534fb2010-05-25 15:06:07 +0200802 for (i = 0; mapping == NULL && i < req->num_pages; i++)
803 mapping = req->pages[i]->mapping;
804
805 if (mapping) {
806 struct inode *inode = mapping->host;
807
808 /*
809 * Short read means EOF. If file size is larger, truncate it
810 */
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400811 if (!req->out.h.error && num_read < count)
812 fuse_short_read(req, inode, req->misc.read.attr_ver);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200813
Andrew Gallagher451418f2013-11-05 03:55:43 -0800814 fuse_invalidate_atime(inode);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700815 }
816
Miklos Szeredidb50b962005-09-09 13:10:33 -0700817 for (i = 0; i < req->num_pages; i++) {
818 struct page *page = req->pages[i];
819 if (!req->out.h.error)
820 SetPageUptodate(page);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800821 else
822 SetPageError(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700823 unlock_page(page);
Miklos Szeredib5dd3282010-05-25 15:06:06 +0200824 page_cache_release(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700825 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700826 if (req->ff)
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100827 fuse_file_put(req->ff, false);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800828}
829
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200830static void fuse_send_readpages(struct fuse_req *req, struct file *file)
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800831{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200832 struct fuse_file *ff = file->private_data;
833 struct fuse_conn *fc = ff->fc;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800834 loff_t pos = page_offset(req->pages[0]);
835 size_t count = req->num_pages << PAGE_CACHE_SHIFT;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200836
837 req->out.argpages = 1;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800838 req->out.page_zeroing = 1;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200839 req->out.page_replace = 1;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200840 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700841 req->misc.read.attr_ver = fuse_get_attr_version(fc);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800842 if (fc->async_read) {
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700843 req->ff = fuse_file_get(ff);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800844 req->end = fuse_readpages_end;
Tejun Heob93f8582008-11-26 12:03:55 +0100845 fuse_request_send_background(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800846 } else {
Tejun Heob93f8582008-11-26 12:03:55 +0100847 fuse_request_send(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800848 fuse_readpages_end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100849 fuse_put_request(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800850 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700851}
852
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700853struct fuse_fill_data {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700854 struct fuse_req *req;
Miklos Szeredia6643092007-11-28 16:22:00 -0800855 struct file *file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700856 struct inode *inode;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400857 unsigned nr_pages;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700858};
859
860static int fuse_readpages_fill(void *_data, struct page *page)
861{
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700862 struct fuse_fill_data *data = _data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700863 struct fuse_req *req = data->req;
864 struct inode *inode = data->inode;
865 struct fuse_conn *fc = get_fuse_conn(inode);
866
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700867 fuse_wait_on_page_writeback(inode, page->index);
868
Miklos Szeredidb50b962005-09-09 13:10:33 -0700869 if (req->num_pages &&
870 (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
871 (req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_read ||
872 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400873 int nr_alloc = min_t(unsigned, data->nr_pages,
874 FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200875 fuse_send_readpages(req, data->file);
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400876 if (fc->async_read)
877 req = fuse_get_req_for_background(fc, nr_alloc);
878 else
879 req = fuse_get_req(fc, nr_alloc);
880
881 data->req = req;
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700882 if (IS_ERR(req)) {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700883 unlock_page(page);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700884 return PTR_ERR(req);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700885 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700886 }
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400887
888 if (WARN_ON(req->num_pages >= req->max_pages)) {
889 fuse_put_request(fc, req);
890 return -EIO;
891 }
892
Miklos Szeredib5dd3282010-05-25 15:06:06 +0200893 page_cache_get(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700894 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400895 req->page_descs[req->num_pages].length = PAGE_SIZE;
Miklos Szeredi1729a162008-11-26 12:03:54 +0100896 req->num_pages++;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400897 data->nr_pages--;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700898 return 0;
899}
900
901static int fuse_readpages(struct file *file, struct address_space *mapping,
902 struct list_head *pages, unsigned nr_pages)
903{
904 struct inode *inode = mapping->host;
905 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700906 struct fuse_fill_data data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700907 int err;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400908 int nr_alloc = min_t(unsigned, nr_pages, FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800909
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700910 err = -EIO;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800911 if (is_bad_inode(inode))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800912 goto out;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800913
Miklos Szeredia6643092007-11-28 16:22:00 -0800914 data.file = file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700915 data.inode = inode;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400916 if (fc->async_read)
917 data.req = fuse_get_req_for_background(fc, nr_alloc);
918 else
919 data.req = fuse_get_req(fc, nr_alloc);
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400920 data.nr_pages = nr_pages;
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700921 err = PTR_ERR(data.req);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700922 if (IS_ERR(data.req))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800923 goto out;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700924
925 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700926 if (!err) {
927 if (data.req->num_pages)
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200928 fuse_send_readpages(data.req, file);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700929 else
930 fuse_put_request(fc, data.req);
931 }
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800932out:
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700933 return err;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700934}
935
Al Viro37c20f12014-04-02 14:47:09 -0400936static ssize_t fuse_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800937{
938 struct inode *inode = iocb->ki_filp->f_mapping->host;
Brian Fostera8894272012-07-16 15:23:50 -0400939 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800940
Brian Fostera8894272012-07-16 15:23:50 -0400941 /*
942 * In auto invalidate mode, always update attributes on read.
943 * Otherwise, only update if we attempt to read past EOF (to ensure
944 * i_size is up to date).
945 */
946 if (fc->auto_inval_data ||
Al Viro37c20f12014-04-02 14:47:09 -0400947 (iocb->ki_pos + iov_iter_count(to) > i_size_read(inode))) {
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800948 int err;
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800949 err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
950 if (err)
951 return err;
952 }
953
Al Viro37c20f12014-04-02 14:47:09 -0400954 return generic_file_read_iter(iocb, to);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800955}
956
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200957static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200958 loff_t pos, size_t count)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700959{
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700960 struct fuse_write_in *inarg = &req->misc.write.in;
961 struct fuse_write_out *outarg = &req->misc.write.out;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700962
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700963 inarg->fh = ff->fh;
964 inarg->offset = pos;
965 inarg->size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700966 req->in.h.opcode = FUSE_WRITE;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200967 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700968 req->in.numargs = 2;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200969 if (ff->fc->minor < 9)
Miklos Szeredif3332112007-10-18 03:07:04 -0700970 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
971 else
972 req->in.args[0].size = sizeof(struct fuse_write_in);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700973 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700974 req->in.args[1].size = count;
975 req->out.numargs = 1;
976 req->out.args[0].size = sizeof(struct fuse_write_out);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700977 req->out.args[0].value = outarg;
978}
979
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400980static size_t fuse_send_write(struct fuse_req *req, struct fuse_io_priv *io,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200981 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700982{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400983 struct file *file = io->file;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200984 struct fuse_file *ff = file->private_data;
985 struct fuse_conn *fc = ff->fc;
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200986 struct fuse_write_in *inarg = &req->misc.write.in;
987
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200988 fuse_write_fill(req, ff, pos, count);
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200989 inarg->flags = file->f_flags;
Miklos Szeredif3332112007-10-18 03:07:04 -0700990 if (owner != NULL) {
Miklos Szeredif3332112007-10-18 03:07:04 -0700991 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
992 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
993 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400994
995 if (io->async)
996 return fuse_async_req_send(fc, req, count, io);
997
Tejun Heob93f8582008-11-26 12:03:55 +0100998 fuse_request_send(fc, req);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700999 return req->misc.write.out.size;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001000}
1001
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001002bool fuse_write_update_size(struct inode *inode, loff_t pos)
Miklos Szeredi854512e2008-04-30 00:54:41 -07001003{
1004 struct fuse_conn *fc = get_fuse_conn(inode);
1005 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001006 bool ret = false;
Miklos Szeredi854512e2008-04-30 00:54:41 -07001007
1008 spin_lock(&fc->lock);
1009 fi->attr_version = ++fc->attr_version;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001010 if (pos > inode->i_size) {
Miklos Szeredi854512e2008-04-30 00:54:41 -07001011 i_size_write(inode, pos);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001012 ret = true;
1013 }
Miklos Szeredi854512e2008-04-30 00:54:41 -07001014 spin_unlock(&fc->lock);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04001015
1016 return ret;
Miklos Szeredi854512e2008-04-30 00:54:41 -07001017}
1018
Nick Pigginea9b9902008-04-30 00:54:42 -07001019static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
1020 struct inode *inode, loff_t pos,
1021 size_t count)
1022{
1023 size_t res;
1024 unsigned offset;
1025 unsigned i;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001026 struct fuse_io_priv io = { .async = 0, .file = file };
Nick Pigginea9b9902008-04-30 00:54:42 -07001027
1028 for (i = 0; i < req->num_pages; i++)
1029 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
1030
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001031 res = fuse_send_write(req, &io, pos, count, NULL);
Nick Pigginea9b9902008-04-30 00:54:42 -07001032
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001033 offset = req->page_descs[0].offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001034 count = res;
1035 for (i = 0; i < req->num_pages; i++) {
1036 struct page *page = req->pages[i];
1037
1038 if (!req->out.h.error && !offset && count >= PAGE_CACHE_SIZE)
1039 SetPageUptodate(page);
1040
1041 if (count > PAGE_CACHE_SIZE - offset)
1042 count -= PAGE_CACHE_SIZE - offset;
1043 else
1044 count = 0;
1045 offset = 0;
1046
1047 unlock_page(page);
1048 page_cache_release(page);
1049 }
1050
1051 return res;
1052}
1053
1054static ssize_t fuse_fill_write_pages(struct fuse_req *req,
1055 struct address_space *mapping,
1056 struct iov_iter *ii, loff_t pos)
1057{
1058 struct fuse_conn *fc = get_fuse_conn(mapping->host);
1059 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
1060 size_t count = 0;
1061 int err;
1062
Miklos Szeredif4975c62009-04-02 14:25:34 +02001063 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001064 req->page_descs[0].offset = offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001065
1066 do {
1067 size_t tmp;
1068 struct page *page;
1069 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1070 size_t bytes = min_t(size_t, PAGE_CACHE_SIZE - offset,
1071 iov_iter_count(ii));
1072
1073 bytes = min_t(size_t, bytes, fc->max_write - count);
1074
1075 again:
1076 err = -EFAULT;
1077 if (iov_iter_fault_in_readable(ii, bytes))
1078 break;
1079
1080 err = -ENOMEM;
Nick Piggin54566b22009-01-04 12:00:53 -08001081 page = grab_cache_page_write_begin(mapping, index, 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001082 if (!page)
1083 break;
1084
anfei zhou931e80e2010-02-02 13:44:02 -08001085 if (mapping_writably_mapped(mapping))
1086 flush_dcache_page(page);
1087
Nick Pigginea9b9902008-04-30 00:54:42 -07001088 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
Nick Pigginea9b9902008-04-30 00:54:42 -07001089 flush_dcache_page(page);
1090
1091 if (!tmp) {
1092 unlock_page(page);
1093 page_cache_release(page);
1094 bytes = min(bytes, iov_iter_single_seg_count(ii));
1095 goto again;
1096 }
1097
1098 err = 0;
1099 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001100 req->page_descs[req->num_pages].length = tmp;
Nick Pigginea9b9902008-04-30 00:54:42 -07001101 req->num_pages++;
1102
1103 iov_iter_advance(ii, tmp);
1104 count += tmp;
1105 pos += tmp;
1106 offset += tmp;
1107 if (offset == PAGE_CACHE_SIZE)
1108 offset = 0;
1109
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -07001110 if (!fc->big_writes)
1111 break;
Nick Pigginea9b9902008-04-30 00:54:42 -07001112 } while (iov_iter_count(ii) && count < fc->max_write &&
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001113 req->num_pages < req->max_pages && offset == 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001114
1115 return count > 0 ? count : err;
1116}
1117
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001118static inline unsigned fuse_wr_pages(loff_t pos, size_t len)
1119{
1120 return min_t(unsigned,
1121 ((pos + len - 1) >> PAGE_CACHE_SHIFT) -
1122 (pos >> PAGE_CACHE_SHIFT) + 1,
1123 FUSE_MAX_PAGES_PER_REQ);
1124}
1125
Nick Pigginea9b9902008-04-30 00:54:42 -07001126static ssize_t fuse_perform_write(struct file *file,
1127 struct address_space *mapping,
1128 struct iov_iter *ii, loff_t pos)
1129{
1130 struct inode *inode = mapping->host;
1131 struct fuse_conn *fc = get_fuse_conn(inode);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001132 struct fuse_inode *fi = get_fuse_inode(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001133 int err = 0;
1134 ssize_t res = 0;
1135
1136 if (is_bad_inode(inode))
1137 return -EIO;
1138
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001139 if (inode->i_size < pos + iov_iter_count(ii))
1140 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1141
Nick Pigginea9b9902008-04-30 00:54:42 -07001142 do {
1143 struct fuse_req *req;
1144 ssize_t count;
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001145 unsigned nr_pages = fuse_wr_pages(pos, iov_iter_count(ii));
Nick Pigginea9b9902008-04-30 00:54:42 -07001146
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001147 req = fuse_get_req(fc, nr_pages);
Nick Pigginea9b9902008-04-30 00:54:42 -07001148 if (IS_ERR(req)) {
1149 err = PTR_ERR(req);
1150 break;
1151 }
1152
1153 count = fuse_fill_write_pages(req, mapping, ii, pos);
1154 if (count <= 0) {
1155 err = count;
1156 } else {
1157 size_t num_written;
1158
1159 num_written = fuse_send_write_pages(req, file, inode,
1160 pos, count);
1161 err = req->out.h.error;
1162 if (!err) {
1163 res += num_written;
1164 pos += num_written;
1165
1166 /* break out of the loop on short write */
1167 if (num_written != count)
1168 err = -EIO;
1169 }
1170 }
1171 fuse_put_request(fc, req);
1172 } while (!err && iov_iter_count(ii));
1173
1174 if (res > 0)
1175 fuse_write_update_size(inode, pos);
1176
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001177 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
Nick Pigginea9b9902008-04-30 00:54:42 -07001178 fuse_invalidate_attr(inode);
1179
1180 return res > 0 ? res : err;
1181}
1182
Al Viro84c3d552014-04-03 14:33:23 -04001183static ssize_t fuse_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Nick Pigginea9b9902008-04-30 00:54:42 -07001184{
1185 struct file *file = iocb->ki_filp;
1186 struct address_space *mapping = file->f_mapping;
Al Viro84c3d552014-04-03 14:33:23 -04001187 size_t count = iov_iter_count(from);
Nick Pigginea9b9902008-04-30 00:54:42 -07001188 ssize_t written = 0;
Anand Avati4273b792012-02-17 12:46:25 -05001189 ssize_t written_buffered = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001190 struct inode *inode = mapping->host;
1191 ssize_t err;
Anand Avati4273b792012-02-17 12:46:25 -05001192 loff_t endbyte = 0;
Al Viro84c3d552014-04-03 14:33:23 -04001193 loff_t pos = iocb->ki_pos;
Nick Pigginea9b9902008-04-30 00:54:42 -07001194
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001195 if (get_fuse_conn(inode)->writeback_cache) {
1196 /* Update size (EOF optimization) and mode (SUID clearing) */
1197 err = fuse_update_attributes(mapping->host, NULL, file, NULL);
1198 if (err)
1199 return err;
1200
Al Viro84c3d552014-04-03 14:33:23 -04001201 return generic_file_write_iter(iocb, from);
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001202 }
1203
Nick Pigginea9b9902008-04-30 00:54:42 -07001204 mutex_lock(&inode->i_mutex);
Nick Pigginea9b9902008-04-30 00:54:42 -07001205
1206 /* We can write back this queue in page reclaim */
1207 current->backing_dev_info = mapping->backing_dev_info;
1208
1209 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1210 if (err)
1211 goto out;
1212
1213 if (count == 0)
1214 goto out;
1215
Al Viro84c3d552014-04-03 14:33:23 -04001216 iov_iter_truncate(from, count);
Miklos Szeredi2f1936b2008-06-24 16:50:14 +02001217 err = file_remove_suid(file);
Nick Pigginea9b9902008-04-30 00:54:42 -07001218 if (err)
1219 goto out;
1220
Josef Bacikc3b2da32012-03-26 09:59:21 -04001221 err = file_update_time(file);
1222 if (err)
1223 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001224
Anand Avati4273b792012-02-17 12:46:25 -05001225 if (file->f_flags & O_DIRECT) {
Al Viro84c3d552014-04-03 14:33:23 -04001226 written = generic_file_direct_write(iocb, from, pos);
1227 if (written < 0 || !iov_iter_count(from))
Anand Avati4273b792012-02-17 12:46:25 -05001228 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001229
Anand Avati4273b792012-02-17 12:46:25 -05001230 pos += written;
Anand Avati4273b792012-02-17 12:46:25 -05001231
Al Viro84c3d552014-04-03 14:33:23 -04001232 written_buffered = fuse_perform_write(file, mapping, from, pos);
Anand Avati4273b792012-02-17 12:46:25 -05001233 if (written_buffered < 0) {
1234 err = written_buffered;
1235 goto out;
1236 }
1237 endbyte = pos + written_buffered - 1;
1238
1239 err = filemap_write_and_wait_range(file->f_mapping, pos,
1240 endbyte);
1241 if (err)
1242 goto out;
1243
1244 invalidate_mapping_pages(file->f_mapping,
1245 pos >> PAGE_CACHE_SHIFT,
1246 endbyte >> PAGE_CACHE_SHIFT);
1247
1248 written += written_buffered;
1249 iocb->ki_pos = pos + written_buffered;
1250 } else {
Al Viro84c3d552014-04-03 14:33:23 -04001251 written = fuse_perform_write(file, mapping, from, pos);
Anand Avati4273b792012-02-17 12:46:25 -05001252 if (written >= 0)
1253 iocb->ki_pos = pos + written;
1254 }
Nick Pigginea9b9902008-04-30 00:54:42 -07001255out:
1256 current->backing_dev_info = NULL;
1257 mutex_unlock(&inode->i_mutex);
1258
1259 return written ? written : err;
1260}
1261
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001262static inline void fuse_page_descs_length_init(struct fuse_req *req,
1263 unsigned index, unsigned nr_pages)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001264{
1265 int i;
1266
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001267 for (i = index; i < index + nr_pages; i++)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001268 req->page_descs[i].length = PAGE_SIZE -
1269 req->page_descs[i].offset;
1270}
1271
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001272static inline unsigned long fuse_get_user_addr(const struct iov_iter *ii)
1273{
1274 return (unsigned long)ii->iov->iov_base + ii->iov_offset;
1275}
1276
1277static inline size_t fuse_get_frag_size(const struct iov_iter *ii,
1278 size_t max_size)
1279{
1280 return min(iov_iter_single_seg_count(ii), max_size);
1281}
1282
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001283static int fuse_get_user_pages(struct fuse_req *req, struct iov_iter *ii,
Miklos Szeredice60a2f2009-04-09 17:37:52 +02001284 size_t *nbytesp, int write)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001285{
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001286 size_t nbytes = 0; /* # bytes already packed in req */
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001287
Miklos Szeredif4975c62009-04-02 14:25:34 +02001288 /* Special case for kernel I/O: can copy directly into the buffer */
Al Viro62a80672014-04-04 23:12:29 -04001289 if (ii->type & ITER_KVEC) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001290 unsigned long user_addr = fuse_get_user_addr(ii);
1291 size_t frag_size = fuse_get_frag_size(ii, *nbytesp);
1292
Miklos Szeredif4975c62009-04-02 14:25:34 +02001293 if (write)
1294 req->in.args[1].value = (void *) user_addr;
1295 else
1296 req->out.args[0].value = (void *) user_addr;
1297
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001298 iov_iter_advance(ii, frag_size);
1299 *nbytesp = frag_size;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001300 return 0;
1301 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001302
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001303 while (nbytes < *nbytesp && req->num_pages < req->max_pages) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001304 unsigned npages;
Al Virof67da302014-03-19 01:16:16 -04001305 size_t start;
Al Viroc9c37e22014-03-16 16:08:30 -04001306 ssize_t ret = iov_iter_get_pages(ii,
1307 &req->pages[req->num_pages],
Miklos Szeredi2c809292014-09-24 17:09:11 +02001308 *nbytesp - nbytes,
Al Viroc7f38882014-06-18 20:34:33 -04001309 req->max_pages - req->num_pages,
1310 &start);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001311 if (ret < 0)
1312 return ret;
1313
Al Viroc9c37e22014-03-16 16:08:30 -04001314 iov_iter_advance(ii, ret);
1315 nbytes += ret;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001316
Al Viroc9c37e22014-03-16 16:08:30 -04001317 ret += start;
1318 npages = (ret + PAGE_SIZE - 1) / PAGE_SIZE;
1319
1320 req->page_descs[req->num_pages].offset = start;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001321 fuse_page_descs_length_init(req, req->num_pages, npages);
1322
1323 req->num_pages += npages;
1324 req->page_descs[req->num_pages - 1].length -=
Al Viroc9c37e22014-03-16 16:08:30 -04001325 (PAGE_SIZE - ret) & (PAGE_SIZE - 1);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001326 }
Miklos Szeredif4975c62009-04-02 14:25:34 +02001327
1328 if (write)
1329 req->in.argpages = 1;
1330 else
1331 req->out.argpages = 1;
1332
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001333 *nbytesp = nbytes;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001334
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001335 return 0;
1336}
1337
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001338static inline int fuse_iter_npages(const struct iov_iter *ii_p)
1339{
Al Virof67da302014-03-19 01:16:16 -04001340 return iov_iter_npages(ii_p, FUSE_MAX_PAGES_PER_REQ);
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001341}
1342
Al Virod22a9432014-03-16 15:50:47 -04001343ssize_t fuse_direct_io(struct fuse_io_priv *io, struct iov_iter *iter,
1344 loff_t *ppos, int flags)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001345{
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001346 int write = flags & FUSE_DIO_WRITE;
1347 int cuse = flags & FUSE_DIO_CUSE;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001348 struct file *file = io->file;
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001349 struct inode *inode = file->f_mapping->host;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001350 struct fuse_file *ff = file->private_data;
1351 struct fuse_conn *fc = ff->fc;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001352 size_t nmax = write ? fc->max_write : fc->max_read;
1353 loff_t pos = *ppos;
Al Virod22a9432014-03-16 15:50:47 -04001354 size_t count = iov_iter_count(iter);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001355 pgoff_t idx_from = pos >> PAGE_CACHE_SHIFT;
1356 pgoff_t idx_to = (pos + count - 1) >> PAGE_CACHE_SHIFT;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001357 ssize_t res = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001358 struct fuse_req *req;
1359
Brian Fosterde82b922013-05-14 11:25:39 -04001360 if (io->async)
Al Virod22a9432014-03-16 15:50:47 -04001361 req = fuse_get_req_for_background(fc, fuse_iter_npages(iter));
Brian Fosterde82b922013-05-14 11:25:39 -04001362 else
Al Virod22a9432014-03-16 15:50:47 -04001363 req = fuse_get_req(fc, fuse_iter_npages(iter));
Miklos Szeredice1d5a42006-04-10 22:54:58 -07001364 if (IS_ERR(req))
1365 return PTR_ERR(req);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001366
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001367 if (!cuse && fuse_range_is_writeback(inode, idx_from, idx_to)) {
1368 if (!write)
1369 mutex_lock(&inode->i_mutex);
1370 fuse_sync_writes(inode);
1371 if (!write)
1372 mutex_unlock(&inode->i_mutex);
1373 }
1374
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001375 while (count) {
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001376 size_t nres;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001377 fl_owner_t owner = current->files;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001378 size_t nbytes = min(count, nmax);
Al Virod22a9432014-03-16 15:50:47 -04001379 int err = fuse_get_user_pages(req, iter, &nbytes, write);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001380 if (err) {
1381 res = err;
1382 break;
1383 }
Miklos Szeredif4975c62009-04-02 14:25:34 +02001384
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001385 if (write)
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001386 nres = fuse_send_write(req, io, pos, nbytes, owner);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001387 else
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001388 nres = fuse_send_read(req, io, pos, nbytes, owner);
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001389
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001390 if (!io->async)
1391 fuse_release_user_pages(req, !write);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001392 if (req->out.h.error) {
1393 if (!res)
1394 res = req->out.h.error;
1395 break;
1396 } else if (nres > nbytes) {
1397 res = -EIO;
1398 break;
1399 }
1400 count -= nres;
1401 res += nres;
1402 pos += nres;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001403 if (nres != nbytes)
1404 break;
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001405 if (count) {
1406 fuse_put_request(fc, req);
Brian Fosterde82b922013-05-14 11:25:39 -04001407 if (io->async)
1408 req = fuse_get_req_for_background(fc,
Al Virod22a9432014-03-16 15:50:47 -04001409 fuse_iter_npages(iter));
Brian Fosterde82b922013-05-14 11:25:39 -04001410 else
Al Virod22a9432014-03-16 15:50:47 -04001411 req = fuse_get_req(fc, fuse_iter_npages(iter));
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001412 if (IS_ERR(req))
1413 break;
1414 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001415 }
Anand V. Avatif60311d2009-10-22 06:24:52 -07001416 if (!IS_ERR(req))
1417 fuse_put_request(fc, req);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001418 if (res > 0)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001419 *ppos = pos;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001420
1421 return res;
1422}
Tejun Heo08cbf542009-04-14 10:54:53 +09001423EXPORT_SYMBOL_GPL(fuse_direct_io);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001424
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001425static ssize_t __fuse_direct_read(struct fuse_io_priv *io,
Al Virod22a9432014-03-16 15:50:47 -04001426 struct iov_iter *iter,
1427 loff_t *ppos)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001428{
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001429 ssize_t res;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001430 struct file *file = io->file;
Al Viro6131ffa2013-02-27 16:59:05 -05001431 struct inode *inode = file_inode(file);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001432
1433 if (is_bad_inode(inode))
1434 return -EIO;
1435
Al Virod22a9432014-03-16 15:50:47 -04001436 res = fuse_direct_io(io, iter, ppos, 0);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001437
1438 fuse_invalidate_attr(inode);
1439
1440 return res;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001441}
1442
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001443static ssize_t fuse_direct_read(struct file *file, char __user *buf,
1444 size_t count, loff_t *ppos)
1445{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001446 struct fuse_io_priv io = { .async = 0, .file = file };
Miklos Szeredifb05f412012-11-10 16:55:56 +01001447 struct iovec iov = { .iov_base = buf, .iov_len = count };
Al Virod22a9432014-03-16 15:50:47 -04001448 struct iov_iter ii;
1449 iov_iter_init(&ii, READ, &iov, 1, count);
1450 return __fuse_direct_read(&io, &ii, ppos);
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001451}
1452
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001453static ssize_t __fuse_direct_write(struct fuse_io_priv *io,
Al Virod22a9432014-03-16 15:50:47 -04001454 struct iov_iter *iter,
1455 loff_t *ppos)
Anand Avati4273b792012-02-17 12:46:25 -05001456{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001457 struct file *file = io->file;
Al Viro6131ffa2013-02-27 16:59:05 -05001458 struct inode *inode = file_inode(file);
Al Virod22a9432014-03-16 15:50:47 -04001459 size_t count = iov_iter_count(iter);
Anand Avati4273b792012-02-17 12:46:25 -05001460 ssize_t res;
1461
Al Virod22a9432014-03-16 15:50:47 -04001462
Anand Avati4273b792012-02-17 12:46:25 -05001463 res = generic_write_checks(file, ppos, &count, 0);
Al Virod22a9432014-03-16 15:50:47 -04001464 if (!res) {
Al Viro0c949332014-03-22 06:51:37 -04001465 iov_iter_truncate(iter, count);
Al Virod22a9432014-03-16 15:50:47 -04001466 res = fuse_direct_io(io, iter, ppos, FUSE_DIO_WRITE);
1467 }
Anand Avati4273b792012-02-17 12:46:25 -05001468
1469 fuse_invalidate_attr(inode);
1470
1471 return res;
1472}
1473
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001474static ssize_t fuse_direct_write(struct file *file, const char __user *buf,
1475 size_t count, loff_t *ppos)
1476{
Miklos Szeredifb05f412012-11-10 16:55:56 +01001477 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = count };
Al Viro6131ffa2013-02-27 16:59:05 -05001478 struct inode *inode = file_inode(file);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001479 ssize_t res;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001480 struct fuse_io_priv io = { .async = 0, .file = file };
Al Virod22a9432014-03-16 15:50:47 -04001481 struct iov_iter ii;
1482 iov_iter_init(&ii, WRITE, &iov, 1, count);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001483
1484 if (is_bad_inode(inode))
1485 return -EIO;
1486
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001487 /* Don't allow parallel writes to the same file */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001488 mutex_lock(&inode->i_mutex);
Al Virod22a9432014-03-16 15:50:47 -04001489 res = __fuse_direct_write(&io, &ii, ppos);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04001490 if (res > 0)
1491 fuse_write_update_size(inode, *ppos);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001492 mutex_unlock(&inode->i_mutex);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001493
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001494 return res;
1495}
1496
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001497static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001498{
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001499 int i;
1500
1501 for (i = 0; i < req->num_pages; i++)
1502 __free_page(req->pages[i]);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001503
1504 if (req->ff)
1505 fuse_file_put(req->ff, false);
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001506}
1507
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001508static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001509{
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001510 struct inode *inode = req->inode;
1511 struct fuse_inode *fi = get_fuse_inode(inode);
1512 struct backing_dev_info *bdi = inode->i_mapping->backing_dev_info;
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001513 int i;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001514
1515 list_del(&req->writepages_entry);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001516 for (i = 0; i < req->num_pages; i++) {
1517 dec_bdi_stat(bdi, BDI_WRITEBACK);
1518 dec_zone_page_state(req->pages[i], NR_WRITEBACK_TEMP);
1519 bdi_writeout_inc(bdi);
1520 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001521 wake_up(&fi->page_waitq);
1522}
1523
1524/* Called under fc->lock, may release and reacquire it */
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001525static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req,
1526 loff_t size)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001527__releases(fc->lock)
1528__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001529{
1530 struct fuse_inode *fi = get_fuse_inode(req->inode);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001531 struct fuse_write_in *inarg = &req->misc.write.in;
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001532 __u64 data_size = req->num_pages * PAGE_CACHE_SIZE;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001533
1534 if (!fc->connected)
1535 goto out_free;
1536
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001537 if (inarg->offset + data_size <= size) {
1538 inarg->size = data_size;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001539 } else if (inarg->offset < size) {
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001540 inarg->size = size - inarg->offset;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001541 } else {
1542 /* Got truncated off completely */
1543 goto out_free;
1544 }
1545
1546 req->in.args[1].size = inarg->size;
1547 fi->writectr++;
Tejun Heob93f8582008-11-26 12:03:55 +01001548 fuse_request_send_background_locked(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001549 return;
1550
1551 out_free:
1552 fuse_writepage_finish(fc, req);
1553 spin_unlock(&fc->lock);
1554 fuse_writepage_free(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +01001555 fuse_put_request(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001556 spin_lock(&fc->lock);
1557}
1558
1559/*
1560 * If fi->writectr is positive (no truncate or fsync going on) send
1561 * all queued writepage requests.
1562 *
1563 * Called with fc->lock
1564 */
1565void fuse_flush_writepages(struct inode *inode)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001566__releases(fc->lock)
1567__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001568{
1569 struct fuse_conn *fc = get_fuse_conn(inode);
1570 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001571 size_t crop = i_size_read(inode);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001572 struct fuse_req *req;
1573
1574 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1575 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1576 list_del_init(&req->list);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001577 fuse_send_writepage(fc, req, crop);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001578 }
1579}
1580
1581static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1582{
1583 struct inode *inode = req->inode;
1584 struct fuse_inode *fi = get_fuse_inode(inode);
1585
1586 mapping_set_error(inode->i_mapping, req->out.h.error);
1587 spin_lock(&fc->lock);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001588 while (req->misc.write.next) {
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001589 struct fuse_conn *fc = get_fuse_conn(inode);
1590 struct fuse_write_in *inarg = &req->misc.write.in;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001591 struct fuse_req *next = req->misc.write.next;
1592 req->misc.write.next = next->misc.write.next;
1593 next->misc.write.next = NULL;
Maxim Patlasovce128de2013-10-02 21:38:54 +04001594 next->ff = fuse_file_get(req->ff);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001595 list_add(&next->writepages_entry, &fi->writepages);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001596
1597 /*
1598 * Skip fuse_flush_writepages() to make it easy to crop requests
1599 * based on primary request size.
1600 *
1601 * 1st case (trivial): there are no concurrent activities using
1602 * fuse_set/release_nowrite. Then we're on safe side because
1603 * fuse_flush_writepages() would call fuse_send_writepage()
1604 * anyway.
1605 *
1606 * 2nd case: someone called fuse_set_nowrite and it is waiting
1607 * now for completion of all in-flight requests. This happens
1608 * rarely and no more than once per page, so this should be
1609 * okay.
1610 *
1611 * 3rd case: someone (e.g. fuse_do_setattr()) is in the middle
1612 * of fuse_set_nowrite..fuse_release_nowrite section. The fact
1613 * that fuse_set_nowrite returned implies that all in-flight
1614 * requests were completed along with all of their secondary
1615 * requests. Further primary requests are blocked by negative
1616 * writectr. Hence there cannot be any in-flight requests and
1617 * no invocations of fuse_writepage_end() while we're in
1618 * fuse_set_nowrite..fuse_release_nowrite section.
1619 */
1620 fuse_send_writepage(fc, next, inarg->offset + inarg->size);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001621 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001622 fi->writectr--;
1623 fuse_writepage_finish(fc, req);
1624 spin_unlock(&fc->lock);
1625 fuse_writepage_free(fc, req);
1626}
1627
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001628static struct fuse_file *__fuse_write_file_get(struct fuse_conn *fc,
1629 struct fuse_inode *fi)
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001630{
Miklos Szeredi72523422013-10-01 16:44:52 +02001631 struct fuse_file *ff = NULL;
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001632
1633 spin_lock(&fc->lock);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001634 if (!list_empty(&fi->write_files)) {
Miklos Szeredi72523422013-10-01 16:44:52 +02001635 ff = list_entry(fi->write_files.next, struct fuse_file,
1636 write_entry);
1637 fuse_file_get(ff);
1638 }
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001639 spin_unlock(&fc->lock);
1640
1641 return ff;
1642}
1643
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001644static struct fuse_file *fuse_write_file_get(struct fuse_conn *fc,
1645 struct fuse_inode *fi)
1646{
1647 struct fuse_file *ff = __fuse_write_file_get(fc, fi);
1648 WARN_ON(!ff);
1649 return ff;
1650}
1651
1652int fuse_write_inode(struct inode *inode, struct writeback_control *wbc)
1653{
1654 struct fuse_conn *fc = get_fuse_conn(inode);
1655 struct fuse_inode *fi = get_fuse_inode(inode);
1656 struct fuse_file *ff;
1657 int err;
1658
1659 ff = __fuse_write_file_get(fc, fi);
Maxim Patlasovab9e13f2014-04-28 14:19:24 +02001660 err = fuse_flush_times(inode, ff);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001661 if (ff)
1662 fuse_file_put(ff, 0);
1663
1664 return err;
1665}
1666
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001667static int fuse_writepage_locked(struct page *page)
1668{
1669 struct address_space *mapping = page->mapping;
1670 struct inode *inode = mapping->host;
1671 struct fuse_conn *fc = get_fuse_conn(inode);
1672 struct fuse_inode *fi = get_fuse_inode(inode);
1673 struct fuse_req *req;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001674 struct page *tmp_page;
Miklos Szeredi72523422013-10-01 16:44:52 +02001675 int error = -ENOMEM;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001676
1677 set_page_writeback(page);
1678
Maxim Patlasov4250c062012-10-26 19:48:07 +04001679 req = fuse_request_alloc_nofs(1);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001680 if (!req)
1681 goto err;
1682
Maxim Patlasov8b41e672013-03-21 18:02:04 +04001683 req->background = 1; /* writeback always goes to bg_queue */
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001684 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1685 if (!tmp_page)
1686 goto err_free;
1687
Miklos Szeredi72523422013-10-01 16:44:52 +02001688 error = -EIO;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001689 req->ff = fuse_write_file_get(fc, fi);
Miklos Szeredi72523422013-10-01 16:44:52 +02001690 if (!req->ff)
Maxim Patlasov27f1b362014-07-10 15:32:43 +04001691 goto err_nofile;
Miklos Szeredi72523422013-10-01 16:44:52 +02001692
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001693 fuse_write_fill(req, req->ff, page_offset(page), 0);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001694
1695 copy_highpage(tmp_page, page);
Miklos Szeredi2d698b02009-04-28 16:56:36 +02001696 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001697 req->misc.write.next = NULL;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001698 req->in.argpages = 1;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001699 req->num_pages = 1;
1700 req->pages[0] = tmp_page;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001701 req->page_descs[0].offset = 0;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001702 req->page_descs[0].length = PAGE_SIZE;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001703 req->end = fuse_writepage_end;
1704 req->inode = inode;
1705
1706 inc_bdi_stat(mapping->backing_dev_info, BDI_WRITEBACK);
1707 inc_zone_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001708
1709 spin_lock(&fc->lock);
1710 list_add(&req->writepages_entry, &fi->writepages);
1711 list_add_tail(&req->list, &fi->queued_writes);
1712 fuse_flush_writepages(inode);
1713 spin_unlock(&fc->lock);
1714
Maxim Patlasov4a4ac4e2013-08-12 20:39:30 +04001715 end_page_writeback(page);
1716
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001717 return 0;
1718
Maxim Patlasov27f1b362014-07-10 15:32:43 +04001719err_nofile:
1720 __free_page(tmp_page);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001721err_free:
1722 fuse_request_free(req);
1723err:
1724 end_page_writeback(page);
Miklos Szeredi72523422013-10-01 16:44:52 +02001725 return error;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001726}
1727
1728static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1729{
1730 int err;
1731
Miklos Szerediff17be02013-10-01 16:44:53 +02001732 if (fuse_page_is_writeback(page->mapping->host, page->index)) {
1733 /*
1734 * ->writepages() should be called for sync() and friends. We
1735 * should only get here on direct reclaim and then we are
1736 * allowed to skip a page which is already in flight
1737 */
1738 WARN_ON(wbc->sync_mode == WB_SYNC_ALL);
1739
1740 redirty_page_for_writepage(wbc, page);
1741 return 0;
1742 }
1743
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001744 err = fuse_writepage_locked(page);
1745 unlock_page(page);
1746
1747 return err;
1748}
1749
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001750struct fuse_fill_wb_data {
1751 struct fuse_req *req;
1752 struct fuse_file *ff;
1753 struct inode *inode;
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001754 struct page **orig_pages;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001755};
1756
1757static void fuse_writepages_send(struct fuse_fill_wb_data *data)
1758{
1759 struct fuse_req *req = data->req;
1760 struct inode *inode = data->inode;
1761 struct fuse_conn *fc = get_fuse_conn(inode);
1762 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001763 int num_pages = req->num_pages;
1764 int i;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001765
1766 req->ff = fuse_file_get(data->ff);
1767 spin_lock(&fc->lock);
1768 list_add_tail(&req->list, &fi->queued_writes);
1769 fuse_flush_writepages(inode);
1770 spin_unlock(&fc->lock);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001771
1772 for (i = 0; i < num_pages; i++)
1773 end_page_writeback(data->orig_pages[i]);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001774}
1775
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001776static bool fuse_writepage_in_flight(struct fuse_req *new_req,
1777 struct page *page)
1778{
1779 struct fuse_conn *fc = get_fuse_conn(new_req->inode);
1780 struct fuse_inode *fi = get_fuse_inode(new_req->inode);
1781 struct fuse_req *tmp;
1782 struct fuse_req *old_req;
1783 bool found = false;
1784 pgoff_t curr_index;
1785
1786 BUG_ON(new_req->num_pages != 0);
1787
1788 spin_lock(&fc->lock);
1789 list_del(&new_req->writepages_entry);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001790 list_for_each_entry(old_req, &fi->writepages, writepages_entry) {
1791 BUG_ON(old_req->inode != new_req->inode);
1792 curr_index = old_req->misc.write.in.offset >> PAGE_CACHE_SHIFT;
1793 if (curr_index <= page->index &&
1794 page->index < curr_index + old_req->num_pages) {
1795 found = true;
1796 break;
1797 }
1798 }
Maxim Patlasovf6011082013-10-02 15:01:07 +04001799 if (!found) {
1800 list_add(&new_req->writepages_entry, &fi->writepages);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001801 goto out_unlock;
Maxim Patlasovf6011082013-10-02 15:01:07 +04001802 }
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001803
Maxim Patlasovf6011082013-10-02 15:01:07 +04001804 new_req->num_pages = 1;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001805 for (tmp = old_req; tmp != NULL; tmp = tmp->misc.write.next) {
1806 BUG_ON(tmp->inode != new_req->inode);
1807 curr_index = tmp->misc.write.in.offset >> PAGE_CACHE_SHIFT;
1808 if (tmp->num_pages == 1 &&
1809 curr_index == page->index) {
1810 old_req = tmp;
1811 }
1812 }
1813
1814 if (old_req->num_pages == 1 && (old_req->state == FUSE_REQ_INIT ||
1815 old_req->state == FUSE_REQ_PENDING)) {
Maxim Patlasov41b6e412013-10-02 21:38:43 +04001816 struct backing_dev_info *bdi = page->mapping->backing_dev_info;
1817
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001818 copy_highpage(old_req->pages[0], page);
1819 spin_unlock(&fc->lock);
1820
Maxim Patlasov41b6e412013-10-02 21:38:43 +04001821 dec_bdi_stat(bdi, BDI_WRITEBACK);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001822 dec_zone_page_state(page, NR_WRITEBACK_TEMP);
Maxim Patlasov41b6e412013-10-02 21:38:43 +04001823 bdi_writeout_inc(bdi);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001824 fuse_writepage_free(fc, new_req);
1825 fuse_request_free(new_req);
1826 goto out;
1827 } else {
1828 new_req->misc.write.next = old_req->misc.write.next;
1829 old_req->misc.write.next = new_req;
1830 }
1831out_unlock:
1832 spin_unlock(&fc->lock);
1833out:
1834 return found;
1835}
1836
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001837static int fuse_writepages_fill(struct page *page,
1838 struct writeback_control *wbc, void *_data)
1839{
1840 struct fuse_fill_wb_data *data = _data;
1841 struct fuse_req *req = data->req;
1842 struct inode *inode = data->inode;
1843 struct fuse_conn *fc = get_fuse_conn(inode);
1844 struct page *tmp_page;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001845 bool is_writeback;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001846 int err;
1847
1848 if (!data->ff) {
1849 err = -EIO;
1850 data->ff = fuse_write_file_get(fc, get_fuse_inode(inode));
1851 if (!data->ff)
1852 goto out_unlock;
1853 }
1854
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001855 /*
1856 * Being under writeback is unlikely but possible. For example direct
1857 * read to an mmaped fuse file will set the page dirty twice; once when
1858 * the pages are faulted with get_user_pages(), and then after the read
1859 * completed.
1860 */
1861 is_writeback = fuse_page_is_writeback(inode, page->index);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001862
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001863 if (req && req->num_pages &&
1864 (is_writeback || req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
1865 (req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_write ||
1866 data->orig_pages[req->num_pages - 1]->index + 1 != page->index)) {
1867 fuse_writepages_send(data);
1868 data->req = NULL;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001869 }
1870 err = -ENOMEM;
1871 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1872 if (!tmp_page)
1873 goto out_unlock;
1874
1875 /*
1876 * The page must not be redirtied until the writeout is completed
1877 * (i.e. userspace has sent a reply to the write request). Otherwise
1878 * there could be more than one temporary page instance for each real
1879 * page.
1880 *
1881 * This is ensured by holding the page lock in page_mkwrite() while
1882 * checking fuse_page_is_writeback(). We already hold the page lock
1883 * since clear_page_dirty_for_io() and keep it held until we add the
1884 * request to the fi->writepages list and increment req->num_pages.
1885 * After this fuse_page_is_writeback() will indicate that the page is
1886 * under writeback, so we can release the page lock.
1887 */
1888 if (data->req == NULL) {
1889 struct fuse_inode *fi = get_fuse_inode(inode);
1890
1891 err = -ENOMEM;
1892 req = fuse_request_alloc_nofs(FUSE_MAX_PAGES_PER_REQ);
1893 if (!req) {
1894 __free_page(tmp_page);
1895 goto out_unlock;
1896 }
1897
1898 fuse_write_fill(req, data->ff, page_offset(page), 0);
1899 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001900 req->misc.write.next = NULL;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001901 req->in.argpages = 1;
1902 req->background = 1;
1903 req->num_pages = 0;
1904 req->end = fuse_writepage_end;
1905 req->inode = inode;
1906
1907 spin_lock(&fc->lock);
1908 list_add(&req->writepages_entry, &fi->writepages);
1909 spin_unlock(&fc->lock);
1910
1911 data->req = req;
1912 }
1913 set_page_writeback(page);
1914
1915 copy_highpage(tmp_page, page);
1916 req->pages[req->num_pages] = tmp_page;
1917 req->page_descs[req->num_pages].offset = 0;
1918 req->page_descs[req->num_pages].length = PAGE_SIZE;
1919
1920 inc_bdi_stat(page->mapping->backing_dev_info, BDI_WRITEBACK);
1921 inc_zone_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001922
1923 err = 0;
1924 if (is_writeback && fuse_writepage_in_flight(req, page)) {
1925 end_page_writeback(page);
1926 data->req = NULL;
1927 goto out_unlock;
1928 }
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001929 data->orig_pages[req->num_pages] = page;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001930
1931 /*
1932 * Protected by fc->lock against concurrent access by
1933 * fuse_page_is_writeback().
1934 */
1935 spin_lock(&fc->lock);
1936 req->num_pages++;
1937 spin_unlock(&fc->lock);
1938
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001939out_unlock:
1940 unlock_page(page);
1941
1942 return err;
1943}
1944
1945static int fuse_writepages(struct address_space *mapping,
1946 struct writeback_control *wbc)
1947{
1948 struct inode *inode = mapping->host;
1949 struct fuse_fill_wb_data data;
1950 int err;
1951
1952 err = -EIO;
1953 if (is_bad_inode(inode))
1954 goto out;
1955
1956 data.inode = inode;
1957 data.req = NULL;
1958 data.ff = NULL;
1959
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001960 err = -ENOMEM;
Fabian Frederickf2b34552014-06-23 18:35:15 +02001961 data.orig_pages = kcalloc(FUSE_MAX_PAGES_PER_REQ,
1962 sizeof(struct page *),
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001963 GFP_NOFS);
1964 if (!data.orig_pages)
1965 goto out;
1966
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001967 err = write_cache_pages(mapping, wbc, fuse_writepages_fill, &data);
1968 if (data.req) {
1969 /* Ignore errors if we can write at least one page */
1970 BUG_ON(!data.req->num_pages);
1971 fuse_writepages_send(&data);
1972 err = 0;
1973 }
1974 if (data.ff)
1975 fuse_file_put(data.ff, false);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001976
1977 kfree(data.orig_pages);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001978out:
1979 return err;
1980}
1981
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001982/*
1983 * It's worthy to make sure that space is reserved on disk for the write,
1984 * but how to implement it without killing performance need more thinking.
1985 */
1986static int fuse_write_begin(struct file *file, struct address_space *mapping,
1987 loff_t pos, unsigned len, unsigned flags,
1988 struct page **pagep, void **fsdata)
1989{
1990 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1991 struct fuse_conn *fc = get_fuse_conn(file->f_dentry->d_inode);
1992 struct page *page;
1993 loff_t fsize;
1994 int err = -ENOMEM;
1995
1996 WARN_ON(!fc->writeback_cache);
1997
1998 page = grab_cache_page_write_begin(mapping, index, flags);
1999 if (!page)
2000 goto error;
2001
2002 fuse_wait_on_page_writeback(mapping->host, page->index);
2003
2004 if (PageUptodate(page) || len == PAGE_CACHE_SIZE)
2005 goto success;
2006 /*
2007 * Check if the start this page comes after the end of file, in which
2008 * case the readpage can be optimized away.
2009 */
2010 fsize = i_size_read(mapping->host);
2011 if (fsize <= (pos & PAGE_CACHE_MASK)) {
2012 size_t off = pos & ~PAGE_CACHE_MASK;
2013 if (off)
2014 zero_user_segment(page, 0, off);
2015 goto success;
2016 }
2017 err = fuse_do_readpage(file, page);
2018 if (err)
2019 goto cleanup;
2020success:
2021 *pagep = page;
2022 return 0;
2023
2024cleanup:
2025 unlock_page(page);
2026 page_cache_release(page);
2027error:
2028 return err;
2029}
2030
2031static int fuse_write_end(struct file *file, struct address_space *mapping,
2032 loff_t pos, unsigned len, unsigned copied,
2033 struct page *page, void *fsdata)
2034{
2035 struct inode *inode = page->mapping->host;
2036
2037 if (!PageUptodate(page)) {
2038 /* Zero any unwritten bytes at the end of the page */
2039 size_t endoff = (pos + copied) & ~PAGE_CACHE_MASK;
2040 if (endoff)
2041 zero_user_segment(page, endoff, PAGE_CACHE_SIZE);
2042 SetPageUptodate(page);
2043 }
2044
2045 fuse_write_update_size(inode, pos + copied);
2046 set_page_dirty(page);
2047 unlock_page(page);
2048 page_cache_release(page);
2049
2050 return copied;
2051}
2052
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002053static int fuse_launder_page(struct page *page)
2054{
2055 int err = 0;
2056 if (clear_page_dirty_for_io(page)) {
2057 struct inode *inode = page->mapping->host;
2058 err = fuse_writepage_locked(page);
2059 if (!err)
2060 fuse_wait_on_page_writeback(inode, page->index);
2061 }
2062 return err;
2063}
2064
2065/*
2066 * Write back dirty pages now, because there may not be any suitable
2067 * open files later
2068 */
2069static void fuse_vma_close(struct vm_area_struct *vma)
2070{
2071 filemap_write_and_wait(vma->vm_file->f_mapping);
2072}
2073
2074/*
2075 * Wait for writeback against this page to complete before allowing it
2076 * to be marked dirty again, and hence written back again, possibly
2077 * before the previous writepage completed.
2078 *
2079 * Block here, instead of in ->writepage(), so that the userspace fs
2080 * can only block processes actually operating on the filesystem.
2081 *
2082 * Otherwise unprivileged userspace fs would be able to block
2083 * unrelated:
2084 *
2085 * - page migration
2086 * - sync(2)
2087 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
2088 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07002089static int fuse_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002090{
Nick Pigginc2ec1752009-03-31 15:23:21 -07002091 struct page *page = vmf->page;
Miklos Szeredicca24372013-10-01 16:44:51 +02002092 struct inode *inode = file_inode(vma->vm_file);
2093
2094 file_update_time(vma->vm_file);
2095 lock_page(page);
2096 if (page->mapping != inode->i_mapping) {
2097 unlock_page(page);
2098 return VM_FAULT_NOPAGE;
2099 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002100
2101 fuse_wait_on_page_writeback(inode, page->index);
Miklos Szeredicca24372013-10-01 16:44:51 +02002102 return VM_FAULT_LOCKED;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002103}
2104
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002105static const struct vm_operations_struct fuse_file_vm_ops = {
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002106 .close = fuse_vma_close,
2107 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002108 .map_pages = filemap_map_pages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002109 .page_mkwrite = fuse_page_mkwrite,
Konstantin Khlebnikov0b173bc2012-10-08 16:28:46 -07002110 .remap_pages = generic_file_remap_pages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002111};
2112
2113static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
2114{
Pavel Emelyanov650b22b2013-10-10 17:10:04 +04002115 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2116 fuse_link_write_file(file);
2117
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002118 file_accessed(file);
2119 vma->vm_ops = &fuse_file_vm_ops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002120 return 0;
2121}
2122
Miklos Szeredifc280c92009-04-02 14:25:35 +02002123static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
2124{
2125 /* Can't provide the coherency needed for MAP_SHARED */
2126 if (vma->vm_flags & VM_MAYSHARE)
2127 return -ENODEV;
2128
Miklos Szeredi3121bfe2009-04-09 17:37:53 +02002129 invalidate_inode_pages2(file->f_mapping);
2130
Miklos Szeredifc280c92009-04-02 14:25:35 +02002131 return generic_file_mmap(file, vma);
2132}
2133
Miklos Szeredi71421252006-06-25 05:48:52 -07002134static int convert_fuse_file_lock(const struct fuse_file_lock *ffl,
2135 struct file_lock *fl)
2136{
2137 switch (ffl->type) {
2138 case F_UNLCK:
2139 break;
2140
2141 case F_RDLCK:
2142 case F_WRLCK:
2143 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
2144 ffl->end < ffl->start)
2145 return -EIO;
2146
2147 fl->fl_start = ffl->start;
2148 fl->fl_end = ffl->end;
2149 fl->fl_pid = ffl->pid;
2150 break;
2151
2152 default:
2153 return -EIO;
2154 }
2155 fl->fl_type = ffl->type;
2156 return 0;
2157}
2158
2159static void fuse_lk_fill(struct fuse_req *req, struct file *file,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002160 const struct file_lock *fl, int opcode, pid_t pid,
2161 int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07002162{
Al Viro6131ffa2013-02-27 16:59:05 -05002163 struct inode *inode = file_inode(file);
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07002164 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi71421252006-06-25 05:48:52 -07002165 struct fuse_file *ff = file->private_data;
2166 struct fuse_lk_in *arg = &req->misc.lk_in;
2167
2168 arg->fh = ff->fh;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07002169 arg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
Miklos Szeredi71421252006-06-25 05:48:52 -07002170 arg->lk.start = fl->fl_start;
2171 arg->lk.end = fl->fl_end;
2172 arg->lk.type = fl->fl_type;
2173 arg->lk.pid = pid;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002174 if (flock)
2175 arg->lk_flags |= FUSE_LK_FLOCK;
Miklos Szeredi71421252006-06-25 05:48:52 -07002176 req->in.h.opcode = opcode;
2177 req->in.h.nodeid = get_node_id(inode);
2178 req->in.numargs = 1;
2179 req->in.args[0].size = sizeof(*arg);
2180 req->in.args[0].value = arg;
2181}
2182
2183static int fuse_getlk(struct file *file, struct file_lock *fl)
2184{
Al Viro6131ffa2013-02-27 16:59:05 -05002185 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002186 struct fuse_conn *fc = get_fuse_conn(inode);
2187 struct fuse_req *req;
2188 struct fuse_lk_out outarg;
2189 int err;
2190
Maxim Patlasovb111c8c2012-10-26 19:48:30 +04002191 req = fuse_get_req_nopages(fc);
Miklos Szeredi71421252006-06-25 05:48:52 -07002192 if (IS_ERR(req))
2193 return PTR_ERR(req);
2194
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002195 fuse_lk_fill(req, file, fl, FUSE_GETLK, 0, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07002196 req->out.numargs = 1;
2197 req->out.args[0].size = sizeof(outarg);
2198 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01002199 fuse_request_send(fc, req);
Miklos Szeredi71421252006-06-25 05:48:52 -07002200 err = req->out.h.error;
2201 fuse_put_request(fc, req);
2202 if (!err)
2203 err = convert_fuse_file_lock(&outarg.lk, fl);
2204
2205 return err;
2206}
2207
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002208static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07002209{
Al Viro6131ffa2013-02-27 16:59:05 -05002210 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002211 struct fuse_conn *fc = get_fuse_conn(inode);
2212 struct fuse_req *req;
2213 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
2214 pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0;
2215 int err;
2216
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04002217 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
Miklos Szeredi48e90762008-07-25 01:49:02 -07002218 /* NLM needs asynchronous locks, which we don't support yet */
2219 return -ENOLCK;
2220 }
2221
Miklos Szeredi71421252006-06-25 05:48:52 -07002222 /* Unlock on close is handled by the flush method */
2223 if (fl->fl_flags & FL_CLOSE)
2224 return 0;
2225
Maxim Patlasovb111c8c2012-10-26 19:48:30 +04002226 req = fuse_get_req_nopages(fc);
Miklos Szeredi71421252006-06-25 05:48:52 -07002227 if (IS_ERR(req))
2228 return PTR_ERR(req);
2229
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002230 fuse_lk_fill(req, file, fl, opcode, pid, flock);
Tejun Heob93f8582008-11-26 12:03:55 +01002231 fuse_request_send(fc, req);
Miklos Szeredi71421252006-06-25 05:48:52 -07002232 err = req->out.h.error;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07002233 /* locking is restartable */
2234 if (err == -EINTR)
2235 err = -ERESTARTSYS;
Miklos Szeredi71421252006-06-25 05:48:52 -07002236 fuse_put_request(fc, req);
2237 return err;
2238}
2239
2240static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
2241{
Al Viro6131ffa2013-02-27 16:59:05 -05002242 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002243 struct fuse_conn *fc = get_fuse_conn(inode);
2244 int err;
2245
Miklos Szeredi48e90762008-07-25 01:49:02 -07002246 if (cmd == F_CANCELLK) {
2247 err = 0;
2248 } else if (cmd == F_GETLK) {
Miklos Szeredi71421252006-06-25 05:48:52 -07002249 if (fc->no_lock) {
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002250 posix_test_lock(file, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07002251 err = 0;
2252 } else
2253 err = fuse_getlk(file, fl);
2254 } else {
2255 if (fc->no_lock)
Miklos Szeredi48e90762008-07-25 01:49:02 -07002256 err = posix_lock_file(file, fl, NULL);
Miklos Szeredi71421252006-06-25 05:48:52 -07002257 else
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002258 err = fuse_setlk(file, fl, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07002259 }
2260 return err;
2261}
2262
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002263static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
2264{
Al Viro6131ffa2013-02-27 16:59:05 -05002265 struct inode *inode = file_inode(file);
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002266 struct fuse_conn *fc = get_fuse_conn(inode);
2267 int err;
2268
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002269 if (fc->no_flock) {
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002270 err = flock_lock_file_wait(file, fl);
2271 } else {
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002272 struct fuse_file *ff = file->private_data;
2273
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002274 /* emulate flock with POSIX locks */
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002275 ff->flock = true;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002276 err = fuse_setlk(file, fl, 1);
2277 }
2278
2279 return err;
2280}
2281
Miklos Szeredib2d22722006-12-06 20:35:51 -08002282static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
2283{
2284 struct inode *inode = mapping->host;
2285 struct fuse_conn *fc = get_fuse_conn(inode);
2286 struct fuse_req *req;
2287 struct fuse_bmap_in inarg;
2288 struct fuse_bmap_out outarg;
2289 int err;
2290
2291 if (!inode->i_sb->s_bdev || fc->no_bmap)
2292 return 0;
2293
Maxim Patlasovb111c8c2012-10-26 19:48:30 +04002294 req = fuse_get_req_nopages(fc);
Miklos Szeredib2d22722006-12-06 20:35:51 -08002295 if (IS_ERR(req))
2296 return 0;
2297
2298 memset(&inarg, 0, sizeof(inarg));
2299 inarg.block = block;
2300 inarg.blocksize = inode->i_sb->s_blocksize;
2301 req->in.h.opcode = FUSE_BMAP;
2302 req->in.h.nodeid = get_node_id(inode);
2303 req->in.numargs = 1;
2304 req->in.args[0].size = sizeof(inarg);
2305 req->in.args[0].value = &inarg;
2306 req->out.numargs = 1;
2307 req->out.args[0].size = sizeof(outarg);
2308 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01002309 fuse_request_send(fc, req);
Miklos Szeredib2d22722006-12-06 20:35:51 -08002310 err = req->out.h.error;
2311 fuse_put_request(fc, req);
2312 if (err == -ENOSYS)
2313 fc->no_bmap = 1;
2314
2315 return err ? 0 : outarg.block;
2316}
2317
Andrew Morton965c8e52012-12-17 15:59:39 -08002318static loff_t fuse_file_llseek(struct file *file, loff_t offset, int whence)
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002319{
2320 loff_t retval;
Al Viro6131ffa2013-02-27 16:59:05 -05002321 struct inode *inode = file_inode(file);
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002322
Miklos Szeredic07c3d12011-12-13 11:58:48 +01002323 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
Andrew Morton965c8e52012-12-17 15:59:39 -08002324 if (whence == SEEK_CUR || whence == SEEK_SET)
2325 return generic_file_llseek(file, offset, whence);
Josef Bacik06222e42011-07-18 13:21:38 -04002326
Miklos Szeredic07c3d12011-12-13 11:58:48 +01002327 mutex_lock(&inode->i_mutex);
2328 retval = fuse_update_attributes(inode, NULL, file, NULL);
2329 if (!retval)
Andrew Morton965c8e52012-12-17 15:59:39 -08002330 retval = generic_file_llseek(file, offset, whence);
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002331 mutex_unlock(&inode->i_mutex);
Miklos Szeredic07c3d12011-12-13 11:58:48 +01002332
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002333 return retval;
2334}
2335
Tejun Heo59efec72008-11-26 12:03:55 +01002336static int fuse_ioctl_copy_user(struct page **pages, struct iovec *iov,
2337 unsigned int nr_segs, size_t bytes, bool to_user)
2338{
2339 struct iov_iter ii;
2340 int page_idx = 0;
2341
2342 if (!bytes)
2343 return 0;
2344
Al Viro71d8e532014-03-05 19:28:09 -05002345 iov_iter_init(&ii, to_user ? READ : WRITE, iov, nr_segs, bytes);
Tejun Heo59efec72008-11-26 12:03:55 +01002346
2347 while (iov_iter_count(&ii)) {
2348 struct page *page = pages[page_idx++];
2349 size_t todo = min_t(size_t, PAGE_SIZE, iov_iter_count(&ii));
Dan Carpenter4aa0edd2010-05-07 10:28:17 +02002350 void *kaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01002351
Dan Carpenter4aa0edd2010-05-07 10:28:17 +02002352 kaddr = kmap(page);
Tejun Heo59efec72008-11-26 12:03:55 +01002353
2354 while (todo) {
2355 char __user *uaddr = ii.iov->iov_base + ii.iov_offset;
2356 size_t iov_len = ii.iov->iov_len - ii.iov_offset;
2357 size_t copy = min(todo, iov_len);
2358 size_t left;
2359
2360 if (!to_user)
2361 left = copy_from_user(kaddr, uaddr, copy);
2362 else
2363 left = copy_to_user(uaddr, kaddr, copy);
2364
2365 if (unlikely(left))
2366 return -EFAULT;
2367
2368 iov_iter_advance(&ii, copy);
2369 todo -= copy;
2370 kaddr += copy;
2371 }
2372
Jens Axboe0bd87182009-11-03 11:40:44 +01002373 kunmap(page);
Tejun Heo59efec72008-11-26 12:03:55 +01002374 }
2375
2376 return 0;
2377}
2378
2379/*
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002380 * CUSE servers compiled on 32bit broke on 64bit kernels because the
2381 * ABI was defined to be 'struct iovec' which is different on 32bit
2382 * and 64bit. Fortunately we can determine which structure the server
2383 * used from the size of the reply.
2384 */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002385static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
2386 size_t transferred, unsigned count,
2387 bool is_compat)
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002388{
2389#ifdef CONFIG_COMPAT
2390 if (count * sizeof(struct compat_iovec) == transferred) {
2391 struct compat_iovec *ciov = src;
2392 unsigned i;
2393
2394 /*
2395 * With this interface a 32bit server cannot support
2396 * non-compat (i.e. ones coming from 64bit apps) ioctl
2397 * requests
2398 */
2399 if (!is_compat)
2400 return -EINVAL;
2401
2402 for (i = 0; i < count; i++) {
2403 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
2404 dst[i].iov_len = ciov[i].iov_len;
2405 }
2406 return 0;
2407 }
2408#endif
2409
2410 if (count * sizeof(struct iovec) != transferred)
2411 return -EIO;
2412
2413 memcpy(dst, src, transferred);
2414 return 0;
2415}
2416
Miklos Szeredi75727772010-11-30 16:39:27 +01002417/* Make sure iov_length() won't overflow */
2418static int fuse_verify_ioctl_iov(struct iovec *iov, size_t count)
2419{
2420 size_t n;
2421 u32 max = FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT;
2422
Zach Brownfb6ccff2012-07-24 12:10:11 -07002423 for (n = 0; n < count; n++, iov++) {
Miklos Szeredi75727772010-11-30 16:39:27 +01002424 if (iov->iov_len > (size_t) max)
2425 return -ENOMEM;
2426 max -= iov->iov_len;
2427 }
2428 return 0;
2429}
2430
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002431static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
2432 void *src, size_t transferred, unsigned count,
2433 bool is_compat)
2434{
2435 unsigned i;
2436 struct fuse_ioctl_iovec *fiov = src;
2437
2438 if (fc->minor < 16) {
2439 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
2440 count, is_compat);
2441 }
2442
2443 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
2444 return -EIO;
2445
2446 for (i = 0; i < count; i++) {
2447 /* Did the server supply an inappropriate value? */
2448 if (fiov[i].base != (unsigned long) fiov[i].base ||
2449 fiov[i].len != (unsigned long) fiov[i].len)
2450 return -EIO;
2451
2452 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
2453 dst[i].iov_len = (size_t) fiov[i].len;
2454
2455#ifdef CONFIG_COMPAT
2456 if (is_compat &&
2457 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
2458 (compat_size_t) dst[i].iov_len != fiov[i].len))
2459 return -EIO;
2460#endif
2461 }
2462
2463 return 0;
2464}
2465
2466
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002467/*
Tejun Heo59efec72008-11-26 12:03:55 +01002468 * For ioctls, there is no generic way to determine how much memory
2469 * needs to be read and/or written. Furthermore, ioctls are allowed
2470 * to dereference the passed pointer, so the parameter requires deep
2471 * copying but FUSE has no idea whatsoever about what to copy in or
2472 * out.
2473 *
2474 * This is solved by allowing FUSE server to retry ioctl with
2475 * necessary in/out iovecs. Let's assume the ioctl implementation
2476 * needs to read in the following structure.
2477 *
2478 * struct a {
2479 * char *buf;
2480 * size_t buflen;
2481 * }
2482 *
2483 * On the first callout to FUSE server, inarg->in_size and
2484 * inarg->out_size will be NULL; then, the server completes the ioctl
2485 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
2486 * the actual iov array to
2487 *
2488 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
2489 *
2490 * which tells FUSE to copy in the requested area and retry the ioctl.
2491 * On the second round, the server has access to the structure and
2492 * from that it can tell what to look for next, so on the invocation,
2493 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
2494 *
2495 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
2496 * { .iov_base = a.buf, .iov_len = a.buflen } }
2497 *
2498 * FUSE will copy both struct a and the pointed buffer from the
2499 * process doing the ioctl and retry ioctl with both struct a and the
2500 * buffer.
2501 *
2502 * This time, FUSE server has everything it needs and completes ioctl
2503 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
2504 *
2505 * Copying data out works the same way.
2506 *
2507 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
2508 * automatically initializes in and out iovs by decoding @cmd with
2509 * _IOC_* macros and the server is not allowed to request RETRY. This
2510 * limits ioctl data transfers to well-formed ioctls and is the forced
2511 * behavior for all FUSE servers.
2512 */
Tejun Heo08cbf542009-04-14 10:54:53 +09002513long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
2514 unsigned int flags)
Tejun Heo59efec72008-11-26 12:03:55 +01002515{
Tejun Heo59efec72008-11-26 12:03:55 +01002516 struct fuse_file *ff = file->private_data;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002517 struct fuse_conn *fc = ff->fc;
Tejun Heo59efec72008-11-26 12:03:55 +01002518 struct fuse_ioctl_in inarg = {
2519 .fh = ff->fh,
2520 .cmd = cmd,
2521 .arg = arg,
2522 .flags = flags
2523 };
2524 struct fuse_ioctl_out outarg;
2525 struct fuse_req *req = NULL;
2526 struct page **pages = NULL;
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002527 struct iovec *iov_page = NULL;
Tejun Heo59efec72008-11-26 12:03:55 +01002528 struct iovec *in_iov = NULL, *out_iov = NULL;
2529 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
2530 size_t in_size, out_size, transferred;
2531 int err;
2532
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002533#if BITS_PER_LONG == 32
2534 inarg.flags |= FUSE_IOCTL_32BIT;
2535#else
2536 if (flags & FUSE_IOCTL_COMPAT)
2537 inarg.flags |= FUSE_IOCTL_32BIT;
2538#endif
2539
Tejun Heo59efec72008-11-26 12:03:55 +01002540 /* assume all the iovs returned by client always fits in a page */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002541 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
Tejun Heo59efec72008-11-26 12:03:55 +01002542
Tejun Heo59efec72008-11-26 12:03:55 +01002543 err = -ENOMEM;
Thomas Meyerc411cc82011-11-29 22:08:00 +01002544 pages = kcalloc(FUSE_MAX_PAGES_PER_REQ, sizeof(pages[0]), GFP_KERNEL);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002545 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
Tejun Heo59efec72008-11-26 12:03:55 +01002546 if (!pages || !iov_page)
2547 goto out;
2548
2549 /*
2550 * If restricted, initialize IO parameters as encoded in @cmd.
2551 * RETRY from server is not allowed.
2552 */
2553 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002554 struct iovec *iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002555
Miklos Szeredic9f0523d2008-12-02 14:49:42 +01002556 iov->iov_base = (void __user *)arg;
Tejun Heo59efec72008-11-26 12:03:55 +01002557 iov->iov_len = _IOC_SIZE(cmd);
2558
2559 if (_IOC_DIR(cmd) & _IOC_WRITE) {
2560 in_iov = iov;
2561 in_iovs = 1;
2562 }
2563
2564 if (_IOC_DIR(cmd) & _IOC_READ) {
2565 out_iov = iov;
2566 out_iovs = 1;
2567 }
2568 }
2569
2570 retry:
2571 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
2572 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
2573
2574 /*
2575 * Out data can be used either for actual out data or iovs,
2576 * make sure there always is at least one page.
2577 */
2578 out_size = max_t(size_t, out_size, PAGE_SIZE);
2579 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
2580
2581 /* make sure there are enough buffer pages and init request with them */
2582 err = -ENOMEM;
2583 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
2584 goto out;
2585 while (num_pages < max_pages) {
2586 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2587 if (!pages[num_pages])
2588 goto out;
2589 num_pages++;
2590 }
2591
Maxim Patlasov54b96672012-10-26 19:49:13 +04002592 req = fuse_get_req(fc, num_pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002593 if (IS_ERR(req)) {
2594 err = PTR_ERR(req);
2595 req = NULL;
2596 goto out;
2597 }
2598 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
2599 req->num_pages = num_pages;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04002600 fuse_page_descs_length_init(req, 0, req->num_pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002601
2602 /* okay, let's send it to the client */
2603 req->in.h.opcode = FUSE_IOCTL;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002604 req->in.h.nodeid = ff->nodeid;
Tejun Heo59efec72008-11-26 12:03:55 +01002605 req->in.numargs = 1;
2606 req->in.args[0].size = sizeof(inarg);
2607 req->in.args[0].value = &inarg;
2608 if (in_size) {
2609 req->in.numargs++;
2610 req->in.args[1].size = in_size;
2611 req->in.argpages = 1;
2612
2613 err = fuse_ioctl_copy_user(pages, in_iov, in_iovs, in_size,
2614 false);
2615 if (err)
2616 goto out;
2617 }
2618
2619 req->out.numargs = 2;
2620 req->out.args[0].size = sizeof(outarg);
2621 req->out.args[0].value = &outarg;
2622 req->out.args[1].size = out_size;
2623 req->out.argpages = 1;
2624 req->out.argvar = 1;
2625
Tejun Heob93f8582008-11-26 12:03:55 +01002626 fuse_request_send(fc, req);
Tejun Heo59efec72008-11-26 12:03:55 +01002627 err = req->out.h.error;
2628 transferred = req->out.args[1].size;
2629 fuse_put_request(fc, req);
2630 req = NULL;
2631 if (err)
2632 goto out;
2633
2634 /* did it ask for retry? */
2635 if (outarg.flags & FUSE_IOCTL_RETRY) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002636 void *vaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01002637
2638 /* no retry if in restricted mode */
2639 err = -EIO;
2640 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
2641 goto out;
2642
2643 in_iovs = outarg.in_iovs;
2644 out_iovs = outarg.out_iovs;
2645
2646 /*
2647 * Make sure things are in boundary, separate checks
2648 * are to protect against overflow.
2649 */
2650 err = -ENOMEM;
2651 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
2652 out_iovs > FUSE_IOCTL_MAX_IOV ||
2653 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
2654 goto out;
2655
Cong Wang2408f6e2011-11-25 23:14:30 +08002656 vaddr = kmap_atomic(pages[0]);
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002657 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002658 transferred, in_iovs + out_iovs,
2659 (flags & FUSE_IOCTL_COMPAT) != 0);
Cong Wang2408f6e2011-11-25 23:14:30 +08002660 kunmap_atomic(vaddr);
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002661 if (err)
2662 goto out;
Tejun Heo59efec72008-11-26 12:03:55 +01002663
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002664 in_iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002665 out_iov = in_iov + in_iovs;
2666
Miklos Szeredi75727772010-11-30 16:39:27 +01002667 err = fuse_verify_ioctl_iov(in_iov, in_iovs);
2668 if (err)
2669 goto out;
2670
2671 err = fuse_verify_ioctl_iov(out_iov, out_iovs);
2672 if (err)
2673 goto out;
2674
Tejun Heo59efec72008-11-26 12:03:55 +01002675 goto retry;
2676 }
2677
2678 err = -EIO;
2679 if (transferred > inarg.out_size)
2680 goto out;
2681
2682 err = fuse_ioctl_copy_user(pages, out_iov, out_iovs, transferred, true);
2683 out:
2684 if (req)
2685 fuse_put_request(fc, req);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002686 free_page((unsigned long) iov_page);
Tejun Heo59efec72008-11-26 12:03:55 +01002687 while (num_pages)
2688 __free_page(pages[--num_pages]);
2689 kfree(pages);
2690
2691 return err ? err : outarg.result;
2692}
Tejun Heo08cbf542009-04-14 10:54:53 +09002693EXPORT_SYMBOL_GPL(fuse_do_ioctl);
Tejun Heo59efec72008-11-26 12:03:55 +01002694
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002695long fuse_ioctl_common(struct file *file, unsigned int cmd,
2696 unsigned long arg, unsigned int flags)
Miklos Szeredid36f2482009-04-28 16:56:39 +02002697{
Al Viro6131ffa2013-02-27 16:59:05 -05002698 struct inode *inode = file_inode(file);
Miklos Szeredid36f2482009-04-28 16:56:39 +02002699 struct fuse_conn *fc = get_fuse_conn(inode);
2700
Anatol Pomozovc2132c12013-01-14 22:30:00 -08002701 if (!fuse_allow_current_process(fc))
Miklos Szeredid36f2482009-04-28 16:56:39 +02002702 return -EACCES;
2703
2704 if (is_bad_inode(inode))
2705 return -EIO;
2706
2707 return fuse_do_ioctl(file, cmd, arg, flags);
2708}
2709
Tejun Heo59efec72008-11-26 12:03:55 +01002710static long fuse_file_ioctl(struct file *file, unsigned int cmd,
2711 unsigned long arg)
2712{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002713 return fuse_ioctl_common(file, cmd, arg, 0);
Tejun Heo59efec72008-11-26 12:03:55 +01002714}
2715
2716static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
2717 unsigned long arg)
2718{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002719 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
Tejun Heo59efec72008-11-26 12:03:55 +01002720}
2721
Tejun Heo95668a62008-11-26 12:03:55 +01002722/*
2723 * All files which have been polled are linked to RB tree
2724 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2725 * find the matching one.
2726 */
2727static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2728 struct rb_node **parent_out)
2729{
2730 struct rb_node **link = &fc->polled_files.rb_node;
2731 struct rb_node *last = NULL;
2732
2733 while (*link) {
2734 struct fuse_file *ff;
2735
2736 last = *link;
2737 ff = rb_entry(last, struct fuse_file, polled_node);
2738
2739 if (kh < ff->kh)
2740 link = &last->rb_left;
2741 else if (kh > ff->kh)
2742 link = &last->rb_right;
2743 else
2744 return link;
2745 }
2746
2747 if (parent_out)
2748 *parent_out = last;
2749 return link;
2750}
2751
2752/*
2753 * The file is about to be polled. Make sure it's on the polled_files
2754 * RB tree. Note that files once added to the polled_files tree are
2755 * not removed before the file is released. This is because a file
2756 * polled once is likely to be polled again.
2757 */
2758static void fuse_register_polled_file(struct fuse_conn *fc,
2759 struct fuse_file *ff)
2760{
2761 spin_lock(&fc->lock);
2762 if (RB_EMPTY_NODE(&ff->polled_node)) {
Rajat Jainf3846262014-02-05 15:24:57 -08002763 struct rb_node **link, *uninitialized_var(parent);
Tejun Heo95668a62008-11-26 12:03:55 +01002764
2765 link = fuse_find_polled_node(fc, ff->kh, &parent);
2766 BUG_ON(*link);
2767 rb_link_node(&ff->polled_node, parent, link);
2768 rb_insert_color(&ff->polled_node, &fc->polled_files);
2769 }
2770 spin_unlock(&fc->lock);
2771}
2772
Tejun Heo08cbf542009-04-14 10:54:53 +09002773unsigned fuse_file_poll(struct file *file, poll_table *wait)
Tejun Heo95668a62008-11-26 12:03:55 +01002774{
Tejun Heo95668a62008-11-26 12:03:55 +01002775 struct fuse_file *ff = file->private_data;
Miklos Szeredi797759a2009-04-28 16:56:41 +02002776 struct fuse_conn *fc = ff->fc;
Tejun Heo95668a62008-11-26 12:03:55 +01002777 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2778 struct fuse_poll_out outarg;
2779 struct fuse_req *req;
2780 int err;
2781
2782 if (fc->no_poll)
2783 return DEFAULT_POLLMASK;
2784
2785 poll_wait(file, &ff->poll_wait, wait);
Enke Chen0415d292013-02-04 16:14:32 +01002786 inarg.events = (__u32)poll_requested_events(wait);
Tejun Heo95668a62008-11-26 12:03:55 +01002787
2788 /*
2789 * Ask for notification iff there's someone waiting for it.
2790 * The client may ignore the flag and always notify.
2791 */
2792 if (waitqueue_active(&ff->poll_wait)) {
2793 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2794 fuse_register_polled_file(fc, ff);
2795 }
2796
Maxim Patlasovb111c8c2012-10-26 19:48:30 +04002797 req = fuse_get_req_nopages(fc);
Tejun Heo95668a62008-11-26 12:03:55 +01002798 if (IS_ERR(req))
Miklos Szeredi201fa692009-06-30 20:06:24 +02002799 return POLLERR;
Tejun Heo95668a62008-11-26 12:03:55 +01002800
2801 req->in.h.opcode = FUSE_POLL;
Miklos Szeredi797759a2009-04-28 16:56:41 +02002802 req->in.h.nodeid = ff->nodeid;
Tejun Heo95668a62008-11-26 12:03:55 +01002803 req->in.numargs = 1;
2804 req->in.args[0].size = sizeof(inarg);
2805 req->in.args[0].value = &inarg;
2806 req->out.numargs = 1;
2807 req->out.args[0].size = sizeof(outarg);
2808 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01002809 fuse_request_send(fc, req);
Tejun Heo95668a62008-11-26 12:03:55 +01002810 err = req->out.h.error;
2811 fuse_put_request(fc, req);
2812
2813 if (!err)
2814 return outarg.revents;
2815 if (err == -ENOSYS) {
2816 fc->no_poll = 1;
2817 return DEFAULT_POLLMASK;
2818 }
2819 return POLLERR;
2820}
Tejun Heo08cbf542009-04-14 10:54:53 +09002821EXPORT_SYMBOL_GPL(fuse_file_poll);
Tejun Heo95668a62008-11-26 12:03:55 +01002822
2823/*
2824 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2825 * wakes up the poll waiters.
2826 */
2827int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2828 struct fuse_notify_poll_wakeup_out *outarg)
2829{
2830 u64 kh = outarg->kh;
2831 struct rb_node **link;
2832
2833 spin_lock(&fc->lock);
2834
2835 link = fuse_find_polled_node(fc, kh, NULL);
2836 if (*link) {
2837 struct fuse_file *ff;
2838
2839 ff = rb_entry(*link, struct fuse_file, polled_node);
2840 wake_up_interruptible_sync(&ff->poll_wait);
2841 }
2842
2843 spin_unlock(&fc->lock);
2844 return 0;
2845}
2846
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002847static void fuse_do_truncate(struct file *file)
2848{
2849 struct inode *inode = file->f_mapping->host;
2850 struct iattr attr;
2851
2852 attr.ia_valid = ATTR_SIZE;
2853 attr.ia_size = i_size_read(inode);
2854
2855 attr.ia_file = file;
2856 attr.ia_valid |= ATTR_FILE;
2857
2858 fuse_do_setattr(inode, &attr, file);
2859}
2860
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002861static inline loff_t fuse_round_up(loff_t off)
2862{
2863 return round_up(off, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
2864}
2865
Anand Avati4273b792012-02-17 12:46:25 -05002866static ssize_t
Al Virod8d3d942014-03-04 21:27:34 -05002867fuse_direct_IO(int rw, struct kiocb *iocb, struct iov_iter *iter,
2868 loff_t offset)
Anand Avati4273b792012-02-17 12:46:25 -05002869{
2870 ssize_t ret = 0;
Miklos Szeredi60b9df72013-05-01 14:37:21 +02002871 struct file *file = iocb->ki_filp;
2872 struct fuse_file *ff = file->private_data;
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002873 bool async_dio = ff->fc->async_dio;
Anand Avati4273b792012-02-17 12:46:25 -05002874 loff_t pos = 0;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002875 struct inode *inode;
2876 loff_t i_size;
Al Viroa6cbcd42014-03-04 22:38:00 -05002877 size_t count = iov_iter_count(iter);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002878 struct fuse_io_priv *io;
Anand Avati4273b792012-02-17 12:46:25 -05002879
Anand Avati4273b792012-02-17 12:46:25 -05002880 pos = offset;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002881 inode = file->f_mapping->host;
2882 i_size = i_size_read(inode);
Anand Avati4273b792012-02-17 12:46:25 -05002883
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00002884 if ((rw == READ) && (offset > i_size))
2885 return 0;
2886
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002887 /* optimization for short read */
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002888 if (async_dio && rw != WRITE && offset + count > i_size) {
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002889 if (offset >= i_size)
2890 return 0;
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002891 count = min_t(loff_t, count, fuse_round_up(i_size - offset));
Al Viro0c949332014-03-22 06:51:37 -04002892 iov_iter_truncate(iter, count);
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002893 }
2894
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002895 io = kmalloc(sizeof(struct fuse_io_priv), GFP_KERNEL);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002896 if (!io)
2897 return -ENOMEM;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002898 spin_lock_init(&io->lock);
2899 io->reqs = 1;
2900 io->bytes = -1;
2901 io->size = 0;
2902 io->offset = offset;
2903 io->write = (rw == WRITE);
2904 io->err = 0;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002905 io->file = file;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002906 /*
2907 * By default, we want to optimize all I/Os with async request
Miklos Szeredi60b9df72013-05-01 14:37:21 +02002908 * submission to the client filesystem if supported.
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002909 */
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002910 io->async = async_dio;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002911 io->iocb = iocb;
2912
2913 /*
2914 * We cannot asynchronously extend the size of a file. We have no method
2915 * to wait on real async I/O requests, so we must submit this request
2916 * synchronously.
2917 */
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002918 if (!is_sync_kiocb(iocb) && (offset + count > i_size) && rw == WRITE)
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002919 io->async = false;
Anand Avati4273b792012-02-17 12:46:25 -05002920
Maxim Patlasovb98d0232012-10-26 19:50:15 +04002921 if (rw == WRITE)
Al Virod22a9432014-03-16 15:50:47 -04002922 ret = __fuse_direct_write(io, iter, &pos);
Maxim Patlasovb98d0232012-10-26 19:50:15 +04002923 else
Al Virod22a9432014-03-16 15:50:47 -04002924 ret = __fuse_direct_read(io, iter, &pos);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002925
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002926 if (io->async) {
2927 fuse_aio_complete(io, ret < 0 ? ret : 0, -1);
2928
2929 /* we have a non-extending, async request, so return */
Brian Fosterc9ecf982013-05-30 15:35:50 -04002930 if (!is_sync_kiocb(iocb))
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002931 return -EIOCBQUEUED;
2932
2933 ret = wait_on_sync_kiocb(iocb);
2934 } else {
2935 kfree(io);
2936 }
2937
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002938 if (rw == WRITE) {
2939 if (ret > 0)
2940 fuse_write_update_size(inode, pos);
2941 else if (ret < 0 && offset + count > i_size)
2942 fuse_do_truncate(file);
2943 }
Anand Avati4273b792012-02-17 12:46:25 -05002944
2945 return ret;
2946}
2947
Miklos Szeredicdadb112012-11-10 16:55:56 +01002948static long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
2949 loff_t length)
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002950{
2951 struct fuse_file *ff = file->private_data;
Brian Foster3634a632013-05-17 09:30:32 -04002952 struct inode *inode = file->f_inode;
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002953 struct fuse_inode *fi = get_fuse_inode(inode);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002954 struct fuse_conn *fc = ff->fc;
2955 struct fuse_req *req;
2956 struct fuse_fallocate_in inarg = {
2957 .fh = ff->fh,
2958 .offset = offset,
2959 .length = length,
2960 .mode = mode
2961 };
2962 int err;
Maxim Patlasov14c14412013-06-13 12:16:39 +04002963 bool lock_inode = !(mode & FALLOC_FL_KEEP_SIZE) ||
2964 (mode & FALLOC_FL_PUNCH_HOLE);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002965
Miklos Szeredi4adb8302014-04-28 14:19:21 +02002966 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2967 return -EOPNOTSUPP;
2968
Miklos Szeredi519c6042012-04-26 10:56:36 +02002969 if (fc->no_fallocate)
2970 return -EOPNOTSUPP;
2971
Maxim Patlasov14c14412013-06-13 12:16:39 +04002972 if (lock_inode) {
Brian Foster3634a632013-05-17 09:30:32 -04002973 mutex_lock(&inode->i_mutex);
Maxim Patlasovbde52782013-09-13 19:19:54 +04002974 if (mode & FALLOC_FL_PUNCH_HOLE) {
2975 loff_t endbyte = offset + length - 1;
2976 err = filemap_write_and_wait_range(inode->i_mapping,
2977 offset, endbyte);
2978 if (err)
2979 goto out;
2980
2981 fuse_sync_writes(inode);
2982 }
Brian Foster3634a632013-05-17 09:30:32 -04002983 }
2984
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002985 if (!(mode & FALLOC_FL_KEEP_SIZE))
2986 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
2987
Maxim Patlasovb111c8c2012-10-26 19:48:30 +04002988 req = fuse_get_req_nopages(fc);
Brian Foster3634a632013-05-17 09:30:32 -04002989 if (IS_ERR(req)) {
2990 err = PTR_ERR(req);
2991 goto out;
2992 }
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002993
2994 req->in.h.opcode = FUSE_FALLOCATE;
2995 req->in.h.nodeid = ff->nodeid;
2996 req->in.numargs = 1;
2997 req->in.args[0].size = sizeof(inarg);
2998 req->in.args[0].value = &inarg;
2999 fuse_request_send(fc, req);
3000 err = req->out.h.error;
Miklos Szeredi519c6042012-04-26 10:56:36 +02003001 if (err == -ENOSYS) {
3002 fc->no_fallocate = 1;
3003 err = -EOPNOTSUPP;
3004 }
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003005 fuse_put_request(fc, req);
3006
Brian Fosterbee6c302013-05-17 15:27:34 -04003007 if (err)
3008 goto out;
3009
3010 /* we could have extended the file */
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04003011 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
3012 bool changed = fuse_write_update_size(inode, offset + length);
3013
Miklos Szeredi93d22692014-04-28 14:19:22 +02003014 if (changed && fc->writeback_cache)
3015 file_update_time(file);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04003016 }
Brian Fosterbee6c302013-05-17 15:27:34 -04003017
3018 if (mode & FALLOC_FL_PUNCH_HOLE)
3019 truncate_pagecache_range(inode, offset, offset + length - 1);
3020
3021 fuse_invalidate_attr(inode);
3022
Brian Foster3634a632013-05-17 09:30:32 -04003023out:
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04003024 if (!(mode & FALLOC_FL_KEEP_SIZE))
3025 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
3026
Maxim Patlasovbde52782013-09-13 19:19:54 +04003027 if (lock_inode)
Brian Foster3634a632013-05-17 09:30:32 -04003028 mutex_unlock(&inode->i_mutex);
Brian Foster3634a632013-05-17 09:30:32 -04003029
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003030 return err;
3031}
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003032
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08003033static const struct file_operations fuse_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07003034 .llseek = fuse_file_llseek,
Al Viro37c20f12014-04-02 14:47:09 -04003035 .read = new_sync_read,
3036 .read_iter = fuse_file_read_iter,
Al Viro84c3d552014-04-03 14:33:23 -04003037 .write = new_sync_write,
3038 .write_iter = fuse_file_write_iter,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003039 .mmap = fuse_file_mmap,
3040 .open = fuse_open,
3041 .flush = fuse_flush,
3042 .release = fuse_release,
3043 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07003044 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07003045 .flock = fuse_file_flock,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02003046 .splice_read = generic_file_splice_read,
Tejun Heo59efec72008-11-26 12:03:55 +01003047 .unlocked_ioctl = fuse_file_ioctl,
3048 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01003049 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003050 .fallocate = fuse_file_fallocate,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003051};
3052
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08003053static const struct file_operations fuse_direct_io_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07003054 .llseek = fuse_file_llseek,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07003055 .read = fuse_direct_read,
3056 .write = fuse_direct_write,
Miklos Szeredifc280c92009-04-02 14:25:35 +02003057 .mmap = fuse_direct_mmap,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07003058 .open = fuse_open,
3059 .flush = fuse_flush,
3060 .release = fuse_release,
3061 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07003062 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07003063 .flock = fuse_file_flock,
Tejun Heo59efec72008-11-26 12:03:55 +01003064 .unlocked_ioctl = fuse_file_ioctl,
3065 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01003066 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003067 .fallocate = fuse_file_fallocate,
Miklos Szeredifc280c92009-04-02 14:25:35 +02003068 /* no splice_read */
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07003069};
3070
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07003071static const struct address_space_operations fuse_file_aops = {
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003072 .readpage = fuse_readpage,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003073 .writepage = fuse_writepage,
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04003074 .writepages = fuse_writepages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003075 .launder_page = fuse_launder_page,
Miklos Szeredidb50b962005-09-09 13:10:33 -07003076 .readpages = fuse_readpages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003077 .set_page_dirty = __set_page_dirty_nobuffers,
Miklos Szeredib2d22722006-12-06 20:35:51 -08003078 .bmap = fuse_bmap,
Anand Avati4273b792012-02-17 12:46:25 -05003079 .direct_IO = fuse_direct_IO,
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04003080 .write_begin = fuse_write_begin,
3081 .write_end = fuse_write_end,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003082};
3083
3084void fuse_init_file_inode(struct inode *inode)
3085{
Miklos Szeredi45323fb2005-09-09 13:10:37 -07003086 inode->i_fop = &fuse_file_operations;
3087 inode->i_data.a_ops = &fuse_file_aops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003088}