blob: ff102cbf16eab45bdd74eb7cffeafc99a4d7b064 [file] [log] [blame]
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi1729a162008-11-26 12:03:54 +01003 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredib6aeade2005-09-09 13:10:30 -07004
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
9#include "fuse_i.h"
10
11#include <linux/pagemap.h>
12#include <linux/slab.h>
13#include <linux/kernel.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040014#include <linux/sched.h>
Tejun Heo08cbf542009-04-14 10:54:53 +090015#include <linux/module.h>
Miklos Szeredid9d318d2010-11-30 16:39:27 +010016#include <linux/compat.h>
Johannes Weiner478e0842011-07-25 22:35:35 +020017#include <linux/swap.h>
Brian Foster3634a632013-05-17 09:30:32 -040018#include <linux/falloc.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080019#include <linux/uio.h>
Miklos Szeredib6aeade2005-09-09 13:10:30 -070020
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080021static const struct file_operations fuse_direct_io_file_operations;
Miklos Szeredi45323fb2005-09-09 13:10:37 -070022
Miklos Szeredi91fe96b2009-04-28 16:56:37 +020023static int fuse_send_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
24 int opcode, struct fuse_open_out *outargp)
Miklos Szeredib6aeade2005-09-09 13:10:30 -070025{
Miklos Szeredib6aeade2005-09-09 13:10:30 -070026 struct fuse_open_in inarg;
Miklos Szeredi70781872014-12-12 09:49:05 +010027 FUSE_ARGS(args);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080028
29 memset(&inarg, 0, sizeof(inarg));
Miklos Szeredi6ff958e2007-10-18 03:07:02 -070030 inarg.flags = file->f_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
31 if (!fc->atomic_o_trunc)
32 inarg.flags &= ~O_TRUNC;
Miklos Szeredi70781872014-12-12 09:49:05 +010033 args.in.h.opcode = opcode;
34 args.in.h.nodeid = nodeid;
35 args.in.numargs = 1;
36 args.in.args[0].size = sizeof(inarg);
37 args.in.args[0].value = &inarg;
38 args.out.numargs = 1;
39 args.out.args[0].size = sizeof(*outargp);
40 args.out.args[0].value = outargp;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080041
Miklos Szeredi70781872014-12-12 09:49:05 +010042 return fuse_simple_request(fc, &args);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080043}
44
Tejun Heoacf99432008-11-26 12:03:55 +010045struct fuse_file *fuse_file_alloc(struct fuse_conn *fc)
Miklos Szeredifd72faa2005-11-07 00:59:51 -080046{
47 struct fuse_file *ff;
Tejun Heo6b2db282009-04-14 10:54:49 +090048
Miklos Szeredifd72faa2005-11-07 00:59:51 -080049 ff = kmalloc(sizeof(struct fuse_file), GFP_KERNEL);
Tejun Heo6b2db282009-04-14 10:54:49 +090050 if (unlikely(!ff))
51 return NULL;
52
Miklos Szeredida5e4712009-04-28 16:56:36 +020053 ff->fc = fc;
Maxim Patlasov4250c062012-10-26 19:48:07 +040054 ff->reserved_req = fuse_request_alloc(0);
Tejun Heo6b2db282009-04-14 10:54:49 +090055 if (unlikely(!ff->reserved_req)) {
56 kfree(ff);
57 return NULL;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080058 }
Tejun Heo6b2db282009-04-14 10:54:49 +090059
60 INIT_LIST_HEAD(&ff->write_entry);
61 atomic_set(&ff->count, 0);
62 RB_CLEAR_NODE(&ff->polled_node);
63 init_waitqueue_head(&ff->poll_wait);
64
65 spin_lock(&fc->lock);
66 ff->kh = ++fc->khctr;
67 spin_unlock(&fc->lock);
68
Miklos Szeredifd72faa2005-11-07 00:59:51 -080069 return ff;
70}
71
72void fuse_file_free(struct fuse_file *ff)
73{
Miklos Szeredi33649c92006-06-25 05:48:52 -070074 fuse_request_free(ff->reserved_req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080075 kfree(ff);
76}
77
Miklos Szeredic7b71432009-04-28 16:56:37 +020078struct fuse_file *fuse_file_get(struct fuse_file *ff)
Miklos Szeredic756e0a2007-10-16 23:31:00 -070079{
80 atomic_inc(&ff->count);
81 return ff;
82}
83
Miklos Szeredi5a18ec12011-02-25 14:44:58 +010084static void fuse_release_end(struct fuse_conn *fc, struct fuse_req *req)
85{
Miklos Szeredibaebccb2014-12-12 09:49:04 +010086 iput(req->misc.release.inode);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +010087}
88
89static void fuse_file_put(struct fuse_file *ff, bool sync)
Miklos Szeredic756e0a2007-10-16 23:31:00 -070090{
91 if (atomic_dec_and_test(&ff->count)) {
92 struct fuse_req *req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +020093
Andrew Gallagher7678ac52013-11-05 16:05:52 +010094 if (ff->fc->no_open) {
95 /*
96 * Drop the release request when client does not
97 * implement 'open'
98 */
99 req->background = 0;
Miklos Szeredibaebccb2014-12-12 09:49:04 +0100100 iput(req->misc.release.inode);
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100101 fuse_put_request(ff->fc, req);
102 } else if (sync) {
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400103 req->background = 0;
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100104 fuse_request_send(ff->fc, req);
Miklos Szeredibaebccb2014-12-12 09:49:04 +0100105 iput(req->misc.release.inode);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100106 fuse_put_request(ff->fc, req);
107 } else {
108 req->end = fuse_release_end;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400109 req->background = 1;
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100110 fuse_request_send_background(ff->fc, req);
111 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700112 kfree(ff);
113 }
114}
115
Tejun Heo08cbf542009-04-14 10:54:53 +0900116int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
117 bool isdir)
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200118{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200119 struct fuse_file *ff;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200120 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
121
122 ff = fuse_file_alloc(fc);
123 if (!ff)
124 return -ENOMEM;
125
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100126 ff->fh = 0;
127 ff->open_flags = FOPEN_KEEP_CACHE; /* Default for no-open */
128 if (!fc->no_open || isdir) {
129 struct fuse_open_out outarg;
130 int err;
131
132 err = fuse_send_open(fc, nodeid, file, opcode, &outarg);
133 if (!err) {
134 ff->fh = outarg.fh;
135 ff->open_flags = outarg.open_flags;
136
137 } else if (err != -ENOSYS || isdir) {
138 fuse_file_free(ff);
139 return err;
140 } else {
141 fc->no_open = 1;
142 }
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200143 }
144
145 if (isdir)
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100146 ff->open_flags &= ~FOPEN_DIRECT_IO;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200147
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200148 ff->nodeid = nodeid;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200149 file->private_data = fuse_file_get(ff);
150
151 return 0;
152}
Tejun Heo08cbf542009-04-14 10:54:53 +0900153EXPORT_SYMBOL_GPL(fuse_do_open);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200154
Pavel Emelyanov650b22b2013-10-10 17:10:04 +0400155static void fuse_link_write_file(struct file *file)
156{
157 struct inode *inode = file_inode(file);
158 struct fuse_conn *fc = get_fuse_conn(inode);
159 struct fuse_inode *fi = get_fuse_inode(inode);
160 struct fuse_file *ff = file->private_data;
161 /*
162 * file may be written through mmap, so chain it onto the
163 * inodes's write_file list
164 */
165 spin_lock(&fc->lock);
166 if (list_empty(&ff->write_entry))
167 list_add(&ff->write_entry, &fi->write_files);
168 spin_unlock(&fc->lock);
169}
170
Miklos Szeredic7b71432009-04-28 16:56:37 +0200171void fuse_finish_open(struct inode *inode, struct file *file)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800172{
Miklos Szeredic7b71432009-04-28 16:56:37 +0200173 struct fuse_file *ff = file->private_data;
Ken Sumralla0822c52010-11-24 12:57:00 -0800174 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200175
176 if (ff->open_flags & FOPEN_DIRECT_IO)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800177 file->f_op = &fuse_direct_io_file_operations;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200178 if (!(ff->open_flags & FOPEN_KEEP_CACHE))
Miklos Szeredib1009972007-10-16 23:31:01 -0700179 invalidate_inode_pages2(inode->i_mapping);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200180 if (ff->open_flags & FOPEN_NONSEEKABLE)
Tejun Heoa7c1b992008-10-16 16:08:57 +0200181 nonseekable_open(inode, file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800182 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
183 struct fuse_inode *fi = get_fuse_inode(inode);
184
185 spin_lock(&fc->lock);
186 fi->attr_version = ++fc->attr_version;
187 i_size_write(inode, 0);
188 spin_unlock(&fc->lock);
189 fuse_invalidate_attr(inode);
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200190 if (fc->writeback_cache)
191 file_update_time(file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800192 }
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +0400193 if ((file->f_mode & FMODE_WRITE) && fc->writeback_cache)
194 fuse_link_write_file(file);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800195}
196
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200197int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800198{
Tejun Heoacf99432008-11-26 12:03:55 +0100199 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700200 int err;
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200201 bool lock_inode = (file->f_flags & O_TRUNC) &&
202 fc->atomic_o_trunc &&
203 fc->writeback_cache;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700204
205 err = generic_file_open(inode, file);
206 if (err)
207 return err;
208
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200209 if (lock_inode)
210 mutex_lock(&inode->i_mutex);
211
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200212 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700213
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200214 if (!err)
215 fuse_finish_open(inode, file);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200216
Maxim Patlasov75caeec2014-04-28 14:19:22 +0200217 if (lock_inode)
218 mutex_unlock(&inode->i_mutex);
219
220 return err;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700221}
222
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200223static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800224{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200225 struct fuse_conn *fc = ff->fc;
Miklos Szeredi33649c92006-06-25 05:48:52 -0700226 struct fuse_req *req = ff->reserved_req;
Miklos Szeredib57d4262008-02-06 01:38:39 -0800227 struct fuse_release_in *inarg = &req->misc.release.in;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700228
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200229 spin_lock(&fc->lock);
230 list_del(&ff->write_entry);
231 if (!RB_EMPTY_NODE(&ff->polled_node))
232 rb_erase(&ff->polled_node, &fc->polled_files);
233 spin_unlock(&fc->lock);
234
Bryan Green357ccf22011-03-01 16:43:52 -0800235 wake_up_interruptible_all(&ff->poll_wait);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200236
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700237 inarg->fh = ff->fh;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800238 inarg->flags = flags;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700239 req->in.h.opcode = opcode;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200240 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700241 req->in.numargs = 1;
242 req->in.args[0].size = sizeof(struct fuse_release_in);
243 req->in.args[0].value = inarg;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800244}
245
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200246void fuse_release_common(struct file *file, int opcode)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800247{
Tejun Heo6b2db282009-04-14 10:54:49 +0900248 struct fuse_file *ff;
249 struct fuse_req *req;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -0700250
Tejun Heo6b2db282009-04-14 10:54:49 +0900251 ff = file->private_data;
252 if (unlikely(!ff))
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200253 return;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700254
Tejun Heo6b2db282009-04-14 10:54:49 +0900255 req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200256 fuse_prepare_release(ff, file->f_flags, opcode);
Tejun Heo95668a62008-11-26 12:03:55 +0100257
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200258 if (ff->flock) {
259 struct fuse_release_in *inarg = &req->misc.release.in;
260 inarg->release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
261 inarg->lock_owner = fuse_lock_owner_id(ff->fc,
262 (fl_owner_t) file);
263 }
Miklos Szeredibaebccb2014-12-12 09:49:04 +0100264 /* Hold inode until release is finished */
265 req->misc.release.inode = igrab(file_inode(file));
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700266
Tejun Heo6b2db282009-04-14 10:54:49 +0900267 /*
268 * Normally this will send the RELEASE request, however if
269 * some asynchronous READ or WRITE requests are outstanding,
270 * the sending will be delayed.
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100271 *
272 * Make the release synchronous if this is a fuseblk mount,
273 * synchronous RELEASE is allowed (and desirable) in this case
274 * because the server can be trusted not to screw up.
Tejun Heo6b2db282009-04-14 10:54:49 +0900275 */
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100276 fuse_file_put(ff, ff->fc->destroy_req != NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700277}
278
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700279static int fuse_open(struct inode *inode, struct file *file)
280{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200281 return fuse_open_common(inode, file, false);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700282}
283
284static int fuse_release(struct inode *inode, struct file *file)
285{
Pavel Emelyanove7cc133c2013-10-10 17:19:06 +0400286 struct fuse_conn *fc = get_fuse_conn(inode);
287
288 /* see fuse_vma_close() for !writeback_cache case */
289 if (fc->writeback_cache)
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200290 write_inode_now(inode, 1);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400291
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200292 fuse_release_common(file, FUSE_RELEASE);
293
294 /* return value is ignored by VFS */
295 return 0;
296}
297
298void fuse_sync_release(struct fuse_file *ff, int flags)
299{
300 WARN_ON(atomic_read(&ff->count) > 1);
301 fuse_prepare_release(ff, flags, FUSE_RELEASE);
302 ff->reserved_req->force = 1;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400303 ff->reserved_req->background = 0;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200304 fuse_request_send(ff->fc, ff->reserved_req);
305 fuse_put_request(ff->fc, ff->reserved_req);
306 kfree(ff);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700307}
Tejun Heo08cbf542009-04-14 10:54:53 +0900308EXPORT_SYMBOL_GPL(fuse_sync_release);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700309
Miklos Szeredi71421252006-06-25 05:48:52 -0700310/*
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700311 * Scramble the ID space with XTEA, so that the value of the files_struct
312 * pointer is not exposed to userspace.
Miklos Szeredi71421252006-06-25 05:48:52 -0700313 */
Miklos Szeredif3332112007-10-18 03:07:04 -0700314u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
Miklos Szeredi71421252006-06-25 05:48:52 -0700315{
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700316 u32 *k = fc->scramble_key;
317 u64 v = (unsigned long) id;
318 u32 v0 = v;
319 u32 v1 = v >> 32;
320 u32 sum = 0;
321 int i;
322
323 for (i = 0; i < 32; i++) {
324 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
325 sum += 0x9E3779B9;
326 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
327 }
328
329 return (u64) v0 + ((u64) v1 << 32);
Miklos Szeredi71421252006-06-25 05:48:52 -0700330}
331
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700332/*
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400333 * Check if any page in a range is under writeback
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700334 *
335 * This is currently done by walking the list of writepage requests
336 * for the inode, which can be pretty inefficient.
337 */
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400338static bool fuse_range_is_writeback(struct inode *inode, pgoff_t idx_from,
339 pgoff_t idx_to)
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700340{
341 struct fuse_conn *fc = get_fuse_conn(inode);
342 struct fuse_inode *fi = get_fuse_inode(inode);
343 struct fuse_req *req;
344 bool found = false;
345
346 spin_lock(&fc->lock);
347 list_for_each_entry(req, &fi->writepages, writepages_entry) {
348 pgoff_t curr_index;
349
350 BUG_ON(req->inode != inode);
351 curr_index = req->misc.write.in.offset >> PAGE_CACHE_SHIFT;
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400352 if (idx_from < curr_index + req->num_pages &&
353 curr_index <= idx_to) {
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700354 found = true;
355 break;
356 }
357 }
358 spin_unlock(&fc->lock);
359
360 return found;
361}
362
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400363static inline bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
364{
365 return fuse_range_is_writeback(inode, index, index);
366}
367
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700368/*
369 * Wait for page writeback to be completed.
370 *
371 * Since fuse doesn't rely on the VM writeback tracking, this has to
372 * use some other means.
373 */
374static int fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
375{
376 struct fuse_inode *fi = get_fuse_inode(inode);
377
378 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
379 return 0;
380}
381
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400382/*
383 * Wait for all pending writepages on the inode to finish.
384 *
385 * This is currently done by blocking further writes with FUSE_NOWRITE
386 * and waiting for all sent writes to complete.
387 *
388 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
389 * could conflict with truncation.
390 */
391static void fuse_sync_writes(struct inode *inode)
392{
393 fuse_set_nowrite(inode);
394 fuse_release_nowrite(inode);
395}
396
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -0700397static int fuse_flush(struct file *file, fl_owner_t id)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700398{
Al Viro6131ffa2013-02-27 16:59:05 -0500399 struct inode *inode = file_inode(file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700400 struct fuse_conn *fc = get_fuse_conn(inode);
401 struct fuse_file *ff = file->private_data;
402 struct fuse_req *req;
403 struct fuse_flush_in inarg;
404 int err;
405
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800406 if (is_bad_inode(inode))
407 return -EIO;
408
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700409 if (fc->no_flush)
410 return 0;
411
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200412 err = write_inode_now(inode, 1);
Maxim Patlasovfe38d7d2013-10-10 17:11:54 +0400413 if (err)
414 return err;
415
416 mutex_lock(&inode->i_mutex);
417 fuse_sync_writes(inode);
418 mutex_unlock(&inode->i_mutex);
419
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400420 req = fuse_get_req_nofail_nopages(fc, file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700421 memset(&inarg, 0, sizeof(inarg));
422 inarg.fh = ff->fh;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700423 inarg.lock_owner = fuse_lock_owner_id(fc, id);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700424 req->in.h.opcode = FUSE_FLUSH;
425 req->in.h.nodeid = get_node_id(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700426 req->in.numargs = 1;
427 req->in.args[0].size = sizeof(inarg);
428 req->in.args[0].value = &inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -0700429 req->force = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100430 fuse_request_send(fc, req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700431 err = req->out.h.error;
432 fuse_put_request(fc, req);
433 if (err == -ENOSYS) {
434 fc->no_flush = 1;
435 err = 0;
436 }
437 return err;
438}
439
Josef Bacik02c24a82011-07-16 20:44:56 -0400440int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
441 int datasync, int isdir)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700442{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200443 struct inode *inode = file->f_mapping->host;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700444 struct fuse_conn *fc = get_fuse_conn(inode);
445 struct fuse_file *ff = file->private_data;
Miklos Szeredi70781872014-12-12 09:49:05 +0100446 FUSE_ARGS(args);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700447 struct fuse_fsync_in inarg;
448 int err;
449
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800450 if (is_bad_inode(inode))
451 return -EIO;
452
Josef Bacik02c24a82011-07-16 20:44:56 -0400453 mutex_lock(&inode->i_mutex);
454
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700455 /*
456 * Start writeback against all dirty pages of the inode, then
457 * wait for all outstanding writes, before sending the FSYNC
458 * request.
459 */
Miklos Szeredi22401e72014-04-28 14:19:23 +0200460 err = filemap_write_and_wait_range(inode->i_mapping, start, end);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700461 if (err)
Josef Bacik02c24a82011-07-16 20:44:56 -0400462 goto out;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700463
464 fuse_sync_writes(inode);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200465 err = sync_inode_metadata(inode, 1);
466 if (err)
467 goto out;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700468
Miklos Szeredi22401e72014-04-28 14:19:23 +0200469 if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
470 goto out;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400471
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700472 memset(&inarg, 0, sizeof(inarg));
473 inarg.fh = ff->fh;
474 inarg.fsync_flags = datasync ? 1 : 0;
Miklos Szeredi70781872014-12-12 09:49:05 +0100475 args.in.h.opcode = isdir ? FUSE_FSYNCDIR : FUSE_FSYNC;
476 args.in.h.nodeid = get_node_id(inode);
477 args.in.numargs = 1;
478 args.in.args[0].size = sizeof(inarg);
479 args.in.args[0].value = &inarg;
480 err = fuse_simple_request(fc, &args);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700481 if (err == -ENOSYS) {
Miklos Szeredi82547982005-09-09 13:10:38 -0700482 if (isdir)
483 fc->no_fsyncdir = 1;
484 else
485 fc->no_fsync = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700486 err = 0;
487 }
Josef Bacik02c24a82011-07-16 20:44:56 -0400488out:
489 mutex_unlock(&inode->i_mutex);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700490 return err;
491}
492
Josef Bacik02c24a82011-07-16 20:44:56 -0400493static int fuse_fsync(struct file *file, loff_t start, loff_t end,
494 int datasync)
Miklos Szeredi82547982005-09-09 13:10:38 -0700495{
Josef Bacik02c24a82011-07-16 20:44:56 -0400496 return fuse_fsync_common(file, start, end, datasync, 0);
Miklos Szeredi82547982005-09-09 13:10:38 -0700497}
498
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200499void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
500 size_t count, int opcode)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700501{
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700502 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredia6643092007-11-28 16:22:00 -0800503 struct fuse_file *ff = file->private_data;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700504
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800505 inarg->fh = ff->fh;
506 inarg->offset = pos;
507 inarg->size = count;
Miklos Szeredia6643092007-11-28 16:22:00 -0800508 inarg->flags = file->f_flags;
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800509 req->in.h.opcode = opcode;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200510 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700511 req->in.numargs = 1;
512 req->in.args[0].size = sizeof(struct fuse_read_in);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800513 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700514 req->out.argvar = 1;
515 req->out.numargs = 1;
516 req->out.args[0].size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700517}
518
Maxim Patlasov187c5c32012-12-14 19:20:25 +0400519static void fuse_release_user_pages(struct fuse_req *req, int write)
520{
521 unsigned i;
522
523 for (i = 0; i < req->num_pages; i++) {
524 struct page *page = req->pages[i];
525 if (write)
526 set_page_dirty_lock(page);
527 put_page(page);
528 }
529}
530
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100531static ssize_t fuse_get_res_by_io(struct fuse_io_priv *io)
532{
533 if (io->err)
534 return io->err;
535
536 if (io->bytes >= 0 && io->write)
537 return -EIO;
538
539 return io->bytes < 0 ? io->size : io->bytes;
540}
541
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400542/**
543 * In case of short read, the caller sets 'pos' to the position of
544 * actual end of fuse request in IO request. Otherwise, if bytes_requested
545 * == bytes_transferred or rw == WRITE, the caller sets 'pos' to -1.
546 *
547 * An example:
548 * User requested DIO read of 64K. It was splitted into two 32K fuse requests,
549 * both submitted asynchronously. The first of them was ACKed by userspace as
550 * fully completed (req->out.args[0].size == 32K) resulting in pos == -1. The
551 * second request was ACKed as short, e.g. only 1K was read, resulting in
552 * pos == 33K.
553 *
554 * Thus, when all fuse requests are completed, the minimal non-negative 'pos'
555 * will be equal to the length of the longest contiguous fragment of
556 * transferred data starting from the beginning of IO request.
557 */
558static void fuse_aio_complete(struct fuse_io_priv *io, int err, ssize_t pos)
559{
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100560 bool is_sync = is_sync_kiocb(io->iocb);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400561 int left;
562
563 spin_lock(&io->lock);
564 if (err)
565 io->err = io->err ? : err;
566 else if (pos >= 0 && (io->bytes < 0 || pos < io->bytes))
567 io->bytes = pos;
568
569 left = --io->reqs;
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100570 if (!left && is_sync)
571 complete(io->done);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400572 spin_unlock(&io->lock);
573
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100574 if (!left && !is_sync) {
575 ssize_t res = fuse_get_res_by_io(io);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400576
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100577 if (res >= 0) {
578 struct inode *inode = file_inode(io->iocb->ki_filp);
579 struct fuse_conn *fc = get_fuse_conn(inode);
580 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400581
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100582 spin_lock(&fc->lock);
583 fi->attr_version = ++fc->attr_version;
584 spin_unlock(&fc->lock);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400585 }
586
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100587 io->iocb->ki_complete(io->iocb, res, 0);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400588 kfree(io);
589 }
590}
591
592static void fuse_aio_complete_req(struct fuse_conn *fc, struct fuse_req *req)
593{
594 struct fuse_io_priv *io = req->io;
595 ssize_t pos = -1;
596
597 fuse_release_user_pages(req, !io->write);
598
599 if (io->write) {
600 if (req->misc.write.in.size != req->misc.write.out.size)
601 pos = req->misc.write.in.offset - io->offset +
602 req->misc.write.out.size;
603 } else {
604 if (req->misc.read.in.size != req->out.args[0].size)
605 pos = req->misc.read.in.offset - io->offset +
606 req->out.args[0].size;
607 }
608
609 fuse_aio_complete(io, req->out.h.error, pos);
610}
611
612static size_t fuse_async_req_send(struct fuse_conn *fc, struct fuse_req *req,
613 size_t num_bytes, struct fuse_io_priv *io)
614{
615 spin_lock(&io->lock);
616 io->size += num_bytes;
617 io->reqs++;
618 spin_unlock(&io->lock);
619
620 req->io = io;
621 req->end = fuse_aio_complete_req;
622
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400623 __fuse_get_request(req);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400624 fuse_request_send_background(fc, req);
625
626 return num_bytes;
627}
628
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400629static size_t fuse_send_read(struct fuse_req *req, struct fuse_io_priv *io,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200630 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700631{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400632 struct file *file = io->file;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200633 struct fuse_file *ff = file->private_data;
634 struct fuse_conn *fc = ff->fc;
Miklos Szeredif3332112007-10-18 03:07:04 -0700635
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200636 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredif3332112007-10-18 03:07:04 -0700637 if (owner != NULL) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700638 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredif3332112007-10-18 03:07:04 -0700639
640 inarg->read_flags |= FUSE_READ_LOCKOWNER;
641 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
642 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400643
644 if (io->async)
645 return fuse_async_req_send(fc, req, count, io);
646
Tejun Heob93f8582008-11-26 12:03:55 +0100647 fuse_request_send(fc, req);
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800648 return req->out.args[0].size;
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700649}
650
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700651static void fuse_read_update_size(struct inode *inode, loff_t size,
652 u64 attr_ver)
653{
654 struct fuse_conn *fc = get_fuse_conn(inode);
655 struct fuse_inode *fi = get_fuse_inode(inode);
656
657 spin_lock(&fc->lock);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +0400658 if (attr_ver == fi->attr_version && size < inode->i_size &&
659 !test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700660 fi->attr_version = ++fc->attr_version;
661 i_size_write(inode, size);
662 }
663 spin_unlock(&fc->lock);
664}
665
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400666static void fuse_short_read(struct fuse_req *req, struct inode *inode,
667 u64 attr_ver)
668{
669 size_t num_read = req->out.args[0].size;
Pavel Emelyanov83732002013-10-10 17:10:46 +0400670 struct fuse_conn *fc = get_fuse_conn(inode);
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400671
Pavel Emelyanov83732002013-10-10 17:10:46 +0400672 if (fc->writeback_cache) {
673 /*
674 * A hole in a file. Some data after the hole are in page cache,
675 * but have not reached the client fs yet. So, the hole is not
676 * present there.
677 */
678 int i;
679 int start_idx = num_read >> PAGE_CACHE_SHIFT;
680 size_t off = num_read & (PAGE_CACHE_SIZE - 1);
681
682 for (i = start_idx; i < req->num_pages; i++) {
683 zero_user_segment(req->pages[i], off, PAGE_CACHE_SIZE);
684 off = 0;
685 }
686 } else {
687 loff_t pos = page_offset(req->pages[0]) + num_read;
688 fuse_read_update_size(inode, pos, attr_ver);
689 }
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400690}
691
Maxim Patlasov482fce52013-10-10 17:11:25 +0400692static int fuse_do_readpage(struct file *file, struct page *page)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700693{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400694 struct fuse_io_priv io = { .async = 0, .file = file };
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700695 struct inode *inode = page->mapping->host;
696 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800697 struct fuse_req *req;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700698 size_t num_read;
699 loff_t pos = page_offset(page);
700 size_t count = PAGE_CACHE_SIZE;
701 u64 attr_ver;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800702 int err;
703
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700704 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300705 * Page writeback can extend beyond the lifetime of the
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700706 * page-cache page, so make sure we read a properly synced
707 * page.
708 */
709 fuse_wait_on_page_writeback(inode, page->index);
710
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400711 req = fuse_get_req(fc, 1);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700712 if (IS_ERR(req))
Maxim Patlasov482fce52013-10-10 17:11:25 +0400713 return PTR_ERR(req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700714
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700715 attr_ver = fuse_get_attr_version(fc);
716
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700717 req->out.page_zeroing = 1;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200718 req->out.argpages = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700719 req->num_pages = 1;
720 req->pages[0] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400721 req->page_descs[0].length = count;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400722 num_read = fuse_send_read(req, &io, pos, count, NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700723 err = req->out.h.error;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700724
725 if (!err) {
726 /*
727 * Short read means EOF. If file size is larger, truncate it
728 */
729 if (num_read < count)
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400730 fuse_short_read(req, inode, attr_ver);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700731
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700732 SetPageUptodate(page);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700733 }
734
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400735 fuse_put_request(fc, req);
Maxim Patlasov482fce52013-10-10 17:11:25 +0400736
737 return err;
738}
739
740static int fuse_readpage(struct file *file, struct page *page)
741{
742 struct inode *inode = page->mapping->host;
743 int err;
744
745 err = -EIO;
746 if (is_bad_inode(inode))
747 goto out;
748
749 err = fuse_do_readpage(file, page);
Andrew Gallagher451418f2013-11-05 03:55:43 -0800750 fuse_invalidate_atime(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700751 out:
752 unlock_page(page);
753 return err;
754}
755
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800756static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredidb50b962005-09-09 13:10:33 -0700757{
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800758 int i;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700759 size_t count = req->misc.read.in.size;
760 size_t num_read = req->out.args[0].size;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200761 struct address_space *mapping = NULL;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800762
Miklos Szeredice534fb2010-05-25 15:06:07 +0200763 for (i = 0; mapping == NULL && i < req->num_pages; i++)
764 mapping = req->pages[i]->mapping;
765
766 if (mapping) {
767 struct inode *inode = mapping->host;
768
769 /*
770 * Short read means EOF. If file size is larger, truncate it
771 */
Pavel Emelyanova92adc82013-10-10 17:10:16 +0400772 if (!req->out.h.error && num_read < count)
773 fuse_short_read(req, inode, req->misc.read.attr_ver);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200774
Andrew Gallagher451418f2013-11-05 03:55:43 -0800775 fuse_invalidate_atime(inode);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700776 }
777
Miklos Szeredidb50b962005-09-09 13:10:33 -0700778 for (i = 0; i < req->num_pages; i++) {
779 struct page *page = req->pages[i];
780 if (!req->out.h.error)
781 SetPageUptodate(page);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800782 else
783 SetPageError(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700784 unlock_page(page);
Miklos Szeredib5dd3282010-05-25 15:06:06 +0200785 page_cache_release(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700786 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700787 if (req->ff)
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100788 fuse_file_put(req->ff, false);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800789}
790
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200791static void fuse_send_readpages(struct fuse_req *req, struct file *file)
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800792{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200793 struct fuse_file *ff = file->private_data;
794 struct fuse_conn *fc = ff->fc;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800795 loff_t pos = page_offset(req->pages[0]);
796 size_t count = req->num_pages << PAGE_CACHE_SHIFT;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200797
798 req->out.argpages = 1;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800799 req->out.page_zeroing = 1;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200800 req->out.page_replace = 1;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200801 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700802 req->misc.read.attr_ver = fuse_get_attr_version(fc);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800803 if (fc->async_read) {
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700804 req->ff = fuse_file_get(ff);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800805 req->end = fuse_readpages_end;
Tejun Heob93f8582008-11-26 12:03:55 +0100806 fuse_request_send_background(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800807 } else {
Tejun Heob93f8582008-11-26 12:03:55 +0100808 fuse_request_send(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800809 fuse_readpages_end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100810 fuse_put_request(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800811 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700812}
813
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700814struct fuse_fill_data {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700815 struct fuse_req *req;
Miklos Szeredia6643092007-11-28 16:22:00 -0800816 struct file *file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700817 struct inode *inode;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400818 unsigned nr_pages;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700819};
820
821static int fuse_readpages_fill(void *_data, struct page *page)
822{
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700823 struct fuse_fill_data *data = _data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700824 struct fuse_req *req = data->req;
825 struct inode *inode = data->inode;
826 struct fuse_conn *fc = get_fuse_conn(inode);
827
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700828 fuse_wait_on_page_writeback(inode, page->index);
829
Miklos Szeredidb50b962005-09-09 13:10:33 -0700830 if (req->num_pages &&
831 (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
832 (req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_read ||
833 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400834 int nr_alloc = min_t(unsigned, data->nr_pages,
835 FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200836 fuse_send_readpages(req, data->file);
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400837 if (fc->async_read)
838 req = fuse_get_req_for_background(fc, nr_alloc);
839 else
840 req = fuse_get_req(fc, nr_alloc);
841
842 data->req = req;
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700843 if (IS_ERR(req)) {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700844 unlock_page(page);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700845 return PTR_ERR(req);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700846 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700847 }
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400848
849 if (WARN_ON(req->num_pages >= req->max_pages)) {
850 fuse_put_request(fc, req);
851 return -EIO;
852 }
853
Miklos Szeredib5dd3282010-05-25 15:06:06 +0200854 page_cache_get(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700855 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400856 req->page_descs[req->num_pages].length = PAGE_SIZE;
Miklos Szeredi1729a162008-11-26 12:03:54 +0100857 req->num_pages++;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400858 data->nr_pages--;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700859 return 0;
860}
861
862static int fuse_readpages(struct file *file, struct address_space *mapping,
863 struct list_head *pages, unsigned nr_pages)
864{
865 struct inode *inode = mapping->host;
866 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700867 struct fuse_fill_data data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700868 int err;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400869 int nr_alloc = min_t(unsigned, nr_pages, FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800870
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700871 err = -EIO;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800872 if (is_bad_inode(inode))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800873 goto out;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800874
Miklos Szeredia6643092007-11-28 16:22:00 -0800875 data.file = file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700876 data.inode = inode;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400877 if (fc->async_read)
878 data.req = fuse_get_req_for_background(fc, nr_alloc);
879 else
880 data.req = fuse_get_req(fc, nr_alloc);
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400881 data.nr_pages = nr_pages;
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700882 err = PTR_ERR(data.req);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700883 if (IS_ERR(data.req))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800884 goto out;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700885
886 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700887 if (!err) {
888 if (data.req->num_pages)
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200889 fuse_send_readpages(data.req, file);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700890 else
891 fuse_put_request(fc, data.req);
892 }
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800893out:
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700894 return err;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700895}
896
Al Viro37c20f12014-04-02 14:47:09 -0400897static ssize_t fuse_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800898{
899 struct inode *inode = iocb->ki_filp->f_mapping->host;
Brian Fostera8894272012-07-16 15:23:50 -0400900 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800901
Brian Fostera8894272012-07-16 15:23:50 -0400902 /*
903 * In auto invalidate mode, always update attributes on read.
904 * Otherwise, only update if we attempt to read past EOF (to ensure
905 * i_size is up to date).
906 */
907 if (fc->auto_inval_data ||
Al Viro37c20f12014-04-02 14:47:09 -0400908 (iocb->ki_pos + iov_iter_count(to) > i_size_read(inode))) {
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800909 int err;
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800910 err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
911 if (err)
912 return err;
913 }
914
Al Viro37c20f12014-04-02 14:47:09 -0400915 return generic_file_read_iter(iocb, to);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800916}
917
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200918static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200919 loff_t pos, size_t count)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700920{
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700921 struct fuse_write_in *inarg = &req->misc.write.in;
922 struct fuse_write_out *outarg = &req->misc.write.out;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700923
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700924 inarg->fh = ff->fh;
925 inarg->offset = pos;
926 inarg->size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700927 req->in.h.opcode = FUSE_WRITE;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200928 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700929 req->in.numargs = 2;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200930 if (ff->fc->minor < 9)
Miklos Szeredif3332112007-10-18 03:07:04 -0700931 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
932 else
933 req->in.args[0].size = sizeof(struct fuse_write_in);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700934 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700935 req->in.args[1].size = count;
936 req->out.numargs = 1;
937 req->out.args[0].size = sizeof(struct fuse_write_out);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700938 req->out.args[0].value = outarg;
939}
940
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400941static size_t fuse_send_write(struct fuse_req *req, struct fuse_io_priv *io,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200942 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700943{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400944 struct file *file = io->file;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200945 struct fuse_file *ff = file->private_data;
946 struct fuse_conn *fc = ff->fc;
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200947 struct fuse_write_in *inarg = &req->misc.write.in;
948
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200949 fuse_write_fill(req, ff, pos, count);
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200950 inarg->flags = file->f_flags;
Miklos Szeredif3332112007-10-18 03:07:04 -0700951 if (owner != NULL) {
Miklos Szeredif3332112007-10-18 03:07:04 -0700952 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
953 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
954 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400955
956 if (io->async)
957 return fuse_async_req_send(fc, req, count, io);
958
Tejun Heob93f8582008-11-26 12:03:55 +0100959 fuse_request_send(fc, req);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700960 return req->misc.write.out.size;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700961}
962
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400963bool fuse_write_update_size(struct inode *inode, loff_t pos)
Miklos Szeredi854512e2008-04-30 00:54:41 -0700964{
965 struct fuse_conn *fc = get_fuse_conn(inode);
966 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400967 bool ret = false;
Miklos Szeredi854512e2008-04-30 00:54:41 -0700968
969 spin_lock(&fc->lock);
970 fi->attr_version = ++fc->attr_version;
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400971 if (pos > inode->i_size) {
Miklos Szeredi854512e2008-04-30 00:54:41 -0700972 i_size_write(inode, pos);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400973 ret = true;
974 }
Miklos Szeredi854512e2008-04-30 00:54:41 -0700975 spin_unlock(&fc->lock);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400976
977 return ret;
Miklos Szeredi854512e2008-04-30 00:54:41 -0700978}
979
Nick Pigginea9b9902008-04-30 00:54:42 -0700980static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
981 struct inode *inode, loff_t pos,
982 size_t count)
983{
984 size_t res;
985 unsigned offset;
986 unsigned i;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400987 struct fuse_io_priv io = { .async = 0, .file = file };
Nick Pigginea9b9902008-04-30 00:54:42 -0700988
989 for (i = 0; i < req->num_pages; i++)
990 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
991
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400992 res = fuse_send_write(req, &io, pos, count, NULL);
Nick Pigginea9b9902008-04-30 00:54:42 -0700993
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400994 offset = req->page_descs[0].offset;
Nick Pigginea9b9902008-04-30 00:54:42 -0700995 count = res;
996 for (i = 0; i < req->num_pages; i++) {
997 struct page *page = req->pages[i];
998
999 if (!req->out.h.error && !offset && count >= PAGE_CACHE_SIZE)
1000 SetPageUptodate(page);
1001
1002 if (count > PAGE_CACHE_SIZE - offset)
1003 count -= PAGE_CACHE_SIZE - offset;
1004 else
1005 count = 0;
1006 offset = 0;
1007
1008 unlock_page(page);
1009 page_cache_release(page);
1010 }
1011
1012 return res;
1013}
1014
1015static ssize_t fuse_fill_write_pages(struct fuse_req *req,
1016 struct address_space *mapping,
1017 struct iov_iter *ii, loff_t pos)
1018{
1019 struct fuse_conn *fc = get_fuse_conn(mapping->host);
1020 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
1021 size_t count = 0;
1022 int err;
1023
Miklos Szeredif4975c62009-04-02 14:25:34 +02001024 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001025 req->page_descs[0].offset = offset;
Nick Pigginea9b9902008-04-30 00:54:42 -07001026
1027 do {
1028 size_t tmp;
1029 struct page *page;
1030 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1031 size_t bytes = min_t(size_t, PAGE_CACHE_SIZE - offset,
1032 iov_iter_count(ii));
1033
1034 bytes = min_t(size_t, bytes, fc->max_write - count);
1035
1036 again:
1037 err = -EFAULT;
1038 if (iov_iter_fault_in_readable(ii, bytes))
1039 break;
1040
1041 err = -ENOMEM;
Nick Piggin54566b22009-01-04 12:00:53 -08001042 page = grab_cache_page_write_begin(mapping, index, 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001043 if (!page)
1044 break;
1045
anfei zhou931e80e2010-02-02 13:44:02 -08001046 if (mapping_writably_mapped(mapping))
1047 flush_dcache_page(page);
1048
Nick Pigginea9b9902008-04-30 00:54:42 -07001049 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
Nick Pigginea9b9902008-04-30 00:54:42 -07001050 flush_dcache_page(page);
1051
1052 if (!tmp) {
1053 unlock_page(page);
1054 page_cache_release(page);
1055 bytes = min(bytes, iov_iter_single_seg_count(ii));
1056 goto again;
1057 }
1058
1059 err = 0;
1060 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001061 req->page_descs[req->num_pages].length = tmp;
Nick Pigginea9b9902008-04-30 00:54:42 -07001062 req->num_pages++;
1063
1064 iov_iter_advance(ii, tmp);
1065 count += tmp;
1066 pos += tmp;
1067 offset += tmp;
1068 if (offset == PAGE_CACHE_SIZE)
1069 offset = 0;
1070
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -07001071 if (!fc->big_writes)
1072 break;
Nick Pigginea9b9902008-04-30 00:54:42 -07001073 } while (iov_iter_count(ii) && count < fc->max_write &&
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001074 req->num_pages < req->max_pages && offset == 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001075
1076 return count > 0 ? count : err;
1077}
1078
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001079static inline unsigned fuse_wr_pages(loff_t pos, size_t len)
1080{
1081 return min_t(unsigned,
1082 ((pos + len - 1) >> PAGE_CACHE_SHIFT) -
1083 (pos >> PAGE_CACHE_SHIFT) + 1,
1084 FUSE_MAX_PAGES_PER_REQ);
1085}
1086
Nick Pigginea9b9902008-04-30 00:54:42 -07001087static ssize_t fuse_perform_write(struct file *file,
1088 struct address_space *mapping,
1089 struct iov_iter *ii, loff_t pos)
1090{
1091 struct inode *inode = mapping->host;
1092 struct fuse_conn *fc = get_fuse_conn(inode);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001093 struct fuse_inode *fi = get_fuse_inode(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001094 int err = 0;
1095 ssize_t res = 0;
1096
1097 if (is_bad_inode(inode))
1098 return -EIO;
1099
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001100 if (inode->i_size < pos + iov_iter_count(ii))
1101 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1102
Nick Pigginea9b9902008-04-30 00:54:42 -07001103 do {
1104 struct fuse_req *req;
1105 ssize_t count;
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001106 unsigned nr_pages = fuse_wr_pages(pos, iov_iter_count(ii));
Nick Pigginea9b9902008-04-30 00:54:42 -07001107
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001108 req = fuse_get_req(fc, nr_pages);
Nick Pigginea9b9902008-04-30 00:54:42 -07001109 if (IS_ERR(req)) {
1110 err = PTR_ERR(req);
1111 break;
1112 }
1113
1114 count = fuse_fill_write_pages(req, mapping, ii, pos);
1115 if (count <= 0) {
1116 err = count;
1117 } else {
1118 size_t num_written;
1119
1120 num_written = fuse_send_write_pages(req, file, inode,
1121 pos, count);
1122 err = req->out.h.error;
1123 if (!err) {
1124 res += num_written;
1125 pos += num_written;
1126
1127 /* break out of the loop on short write */
1128 if (num_written != count)
1129 err = -EIO;
1130 }
1131 }
1132 fuse_put_request(fc, req);
1133 } while (!err && iov_iter_count(ii));
1134
1135 if (res > 0)
1136 fuse_write_update_size(inode, pos);
1137
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001138 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
Nick Pigginea9b9902008-04-30 00:54:42 -07001139 fuse_invalidate_attr(inode);
1140
1141 return res > 0 ? res : err;
1142}
1143
Al Viro84c3d552014-04-03 14:33:23 -04001144static ssize_t fuse_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Nick Pigginea9b9902008-04-30 00:54:42 -07001145{
1146 struct file *file = iocb->ki_filp;
1147 struct address_space *mapping = file->f_mapping;
Al Viro84c3d552014-04-03 14:33:23 -04001148 size_t count = iov_iter_count(from);
Nick Pigginea9b9902008-04-30 00:54:42 -07001149 ssize_t written = 0;
Anand Avati4273b792012-02-17 12:46:25 -05001150 ssize_t written_buffered = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001151 struct inode *inode = mapping->host;
1152 ssize_t err;
Anand Avati4273b792012-02-17 12:46:25 -05001153 loff_t endbyte = 0;
Al Viro84c3d552014-04-03 14:33:23 -04001154 loff_t pos = iocb->ki_pos;
Nick Pigginea9b9902008-04-30 00:54:42 -07001155
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001156 if (get_fuse_conn(inode)->writeback_cache) {
1157 /* Update size (EOF optimization) and mode (SUID clearing) */
1158 err = fuse_update_attributes(mapping->host, NULL, file, NULL);
1159 if (err)
1160 return err;
1161
Al Viro84c3d552014-04-03 14:33:23 -04001162 return generic_file_write_iter(iocb, from);
Pavel Emelyanov4d99ff82013-10-10 17:12:18 +04001163 }
1164
Nick Pigginea9b9902008-04-30 00:54:42 -07001165 mutex_lock(&inode->i_mutex);
Nick Pigginea9b9902008-04-30 00:54:42 -07001166
1167 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001168 current->backing_dev_info = inode_to_bdi(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001169
1170 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1171 if (err)
1172 goto out;
1173
1174 if (count == 0)
1175 goto out;
1176
Al Viro84c3d552014-04-03 14:33:23 -04001177 iov_iter_truncate(from, count);
Miklos Szeredi2f1936b2008-06-24 16:50:14 +02001178 err = file_remove_suid(file);
Nick Pigginea9b9902008-04-30 00:54:42 -07001179 if (err)
1180 goto out;
1181
Josef Bacikc3b2da32012-03-26 09:59:21 -04001182 err = file_update_time(file);
1183 if (err)
1184 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001185
Anand Avati4273b792012-02-17 12:46:25 -05001186 if (file->f_flags & O_DIRECT) {
Al Viro84c3d552014-04-03 14:33:23 -04001187 written = generic_file_direct_write(iocb, from, pos);
1188 if (written < 0 || !iov_iter_count(from))
Anand Avati4273b792012-02-17 12:46:25 -05001189 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001190
Anand Avati4273b792012-02-17 12:46:25 -05001191 pos += written;
Anand Avati4273b792012-02-17 12:46:25 -05001192
Al Viro84c3d552014-04-03 14:33:23 -04001193 written_buffered = fuse_perform_write(file, mapping, from, pos);
Anand Avati4273b792012-02-17 12:46:25 -05001194 if (written_buffered < 0) {
1195 err = written_buffered;
1196 goto out;
1197 }
1198 endbyte = pos + written_buffered - 1;
1199
1200 err = filemap_write_and_wait_range(file->f_mapping, pos,
1201 endbyte);
1202 if (err)
1203 goto out;
1204
1205 invalidate_mapping_pages(file->f_mapping,
1206 pos >> PAGE_CACHE_SHIFT,
1207 endbyte >> PAGE_CACHE_SHIFT);
1208
1209 written += written_buffered;
1210 iocb->ki_pos = pos + written_buffered;
1211 } else {
Al Viro84c3d552014-04-03 14:33:23 -04001212 written = fuse_perform_write(file, mapping, from, pos);
Anand Avati4273b792012-02-17 12:46:25 -05001213 if (written >= 0)
1214 iocb->ki_pos = pos + written;
1215 }
Nick Pigginea9b9902008-04-30 00:54:42 -07001216out:
1217 current->backing_dev_info = NULL;
1218 mutex_unlock(&inode->i_mutex);
1219
1220 return written ? written : err;
1221}
1222
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001223static inline void fuse_page_descs_length_init(struct fuse_req *req,
1224 unsigned index, unsigned nr_pages)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001225{
1226 int i;
1227
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001228 for (i = index; i < index + nr_pages; i++)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001229 req->page_descs[i].length = PAGE_SIZE -
1230 req->page_descs[i].offset;
1231}
1232
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001233static inline unsigned long fuse_get_user_addr(const struct iov_iter *ii)
1234{
1235 return (unsigned long)ii->iov->iov_base + ii->iov_offset;
1236}
1237
1238static inline size_t fuse_get_frag_size(const struct iov_iter *ii,
1239 size_t max_size)
1240{
1241 return min(iov_iter_single_seg_count(ii), max_size);
1242}
1243
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001244static int fuse_get_user_pages(struct fuse_req *req, struct iov_iter *ii,
Miklos Szeredice60a2f2009-04-09 17:37:52 +02001245 size_t *nbytesp, int write)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001246{
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001247 size_t nbytes = 0; /* # bytes already packed in req */
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001248
Miklos Szeredif4975c62009-04-02 14:25:34 +02001249 /* Special case for kernel I/O: can copy directly into the buffer */
Al Viro62a80672014-04-04 23:12:29 -04001250 if (ii->type & ITER_KVEC) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001251 unsigned long user_addr = fuse_get_user_addr(ii);
1252 size_t frag_size = fuse_get_frag_size(ii, *nbytesp);
1253
Miklos Szeredif4975c62009-04-02 14:25:34 +02001254 if (write)
1255 req->in.args[1].value = (void *) user_addr;
1256 else
1257 req->out.args[0].value = (void *) user_addr;
1258
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001259 iov_iter_advance(ii, frag_size);
1260 *nbytesp = frag_size;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001261 return 0;
1262 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001263
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001264 while (nbytes < *nbytesp && req->num_pages < req->max_pages) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001265 unsigned npages;
Al Virof67da302014-03-19 01:16:16 -04001266 size_t start;
Al Viroc9c37e22014-03-16 16:08:30 -04001267 ssize_t ret = iov_iter_get_pages(ii,
1268 &req->pages[req->num_pages],
Miklos Szeredi2c809292014-09-24 17:09:11 +02001269 *nbytesp - nbytes,
Al Viroc7f38882014-06-18 20:34:33 -04001270 req->max_pages - req->num_pages,
1271 &start);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001272 if (ret < 0)
1273 return ret;
1274
Al Viroc9c37e22014-03-16 16:08:30 -04001275 iov_iter_advance(ii, ret);
1276 nbytes += ret;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001277
Al Viroc9c37e22014-03-16 16:08:30 -04001278 ret += start;
1279 npages = (ret + PAGE_SIZE - 1) / PAGE_SIZE;
1280
1281 req->page_descs[req->num_pages].offset = start;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001282 fuse_page_descs_length_init(req, req->num_pages, npages);
1283
1284 req->num_pages += npages;
1285 req->page_descs[req->num_pages - 1].length -=
Al Viroc9c37e22014-03-16 16:08:30 -04001286 (PAGE_SIZE - ret) & (PAGE_SIZE - 1);
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001287 }
Miklos Szeredif4975c62009-04-02 14:25:34 +02001288
1289 if (write)
1290 req->in.argpages = 1;
1291 else
1292 req->out.argpages = 1;
1293
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001294 *nbytesp = nbytes;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001295
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001296 return 0;
1297}
1298
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001299static inline int fuse_iter_npages(const struct iov_iter *ii_p)
1300{
Al Virof67da302014-03-19 01:16:16 -04001301 return iov_iter_npages(ii_p, FUSE_MAX_PAGES_PER_REQ);
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001302}
1303
Al Virod22a9432014-03-16 15:50:47 -04001304ssize_t fuse_direct_io(struct fuse_io_priv *io, struct iov_iter *iter,
1305 loff_t *ppos, int flags)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001306{
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001307 int write = flags & FUSE_DIO_WRITE;
1308 int cuse = flags & FUSE_DIO_CUSE;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001309 struct file *file = io->file;
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001310 struct inode *inode = file->f_mapping->host;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001311 struct fuse_file *ff = file->private_data;
1312 struct fuse_conn *fc = ff->fc;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001313 size_t nmax = write ? fc->max_write : fc->max_read;
1314 loff_t pos = *ppos;
Al Virod22a9432014-03-16 15:50:47 -04001315 size_t count = iov_iter_count(iter);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001316 pgoff_t idx_from = pos >> PAGE_CACHE_SHIFT;
1317 pgoff_t idx_to = (pos + count - 1) >> PAGE_CACHE_SHIFT;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001318 ssize_t res = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001319 struct fuse_req *req;
1320
Brian Fosterde82b922013-05-14 11:25:39 -04001321 if (io->async)
Al Virod22a9432014-03-16 15:50:47 -04001322 req = fuse_get_req_for_background(fc, fuse_iter_npages(iter));
Brian Fosterde82b922013-05-14 11:25:39 -04001323 else
Al Virod22a9432014-03-16 15:50:47 -04001324 req = fuse_get_req(fc, fuse_iter_npages(iter));
Miklos Szeredice1d5a42006-04-10 22:54:58 -07001325 if (IS_ERR(req))
1326 return PTR_ERR(req);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001327
Pavel Emelyanovea8cd332013-10-10 17:12:05 +04001328 if (!cuse && fuse_range_is_writeback(inode, idx_from, idx_to)) {
1329 if (!write)
1330 mutex_lock(&inode->i_mutex);
1331 fuse_sync_writes(inode);
1332 if (!write)
1333 mutex_unlock(&inode->i_mutex);
1334 }
1335
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001336 while (count) {
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001337 size_t nres;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001338 fl_owner_t owner = current->files;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001339 size_t nbytes = min(count, nmax);
Al Virod22a9432014-03-16 15:50:47 -04001340 int err = fuse_get_user_pages(req, iter, &nbytes, write);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001341 if (err) {
1342 res = err;
1343 break;
1344 }
Miklos Szeredif4975c62009-04-02 14:25:34 +02001345
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001346 if (write)
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001347 nres = fuse_send_write(req, io, pos, nbytes, owner);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001348 else
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001349 nres = fuse_send_read(req, io, pos, nbytes, owner);
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001350
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001351 if (!io->async)
1352 fuse_release_user_pages(req, !write);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001353 if (req->out.h.error) {
1354 if (!res)
1355 res = req->out.h.error;
1356 break;
1357 } else if (nres > nbytes) {
1358 res = -EIO;
1359 break;
1360 }
1361 count -= nres;
1362 res += nres;
1363 pos += nres;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001364 if (nres != nbytes)
1365 break;
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001366 if (count) {
1367 fuse_put_request(fc, req);
Brian Fosterde82b922013-05-14 11:25:39 -04001368 if (io->async)
1369 req = fuse_get_req_for_background(fc,
Al Virod22a9432014-03-16 15:50:47 -04001370 fuse_iter_npages(iter));
Brian Fosterde82b922013-05-14 11:25:39 -04001371 else
Al Virod22a9432014-03-16 15:50:47 -04001372 req = fuse_get_req(fc, fuse_iter_npages(iter));
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001373 if (IS_ERR(req))
1374 break;
1375 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001376 }
Anand V. Avatif60311d2009-10-22 06:24:52 -07001377 if (!IS_ERR(req))
1378 fuse_put_request(fc, req);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001379 if (res > 0)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001380 *ppos = pos;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001381
1382 return res;
1383}
Tejun Heo08cbf542009-04-14 10:54:53 +09001384EXPORT_SYMBOL_GPL(fuse_direct_io);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001385
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001386static ssize_t __fuse_direct_read(struct fuse_io_priv *io,
Al Virod22a9432014-03-16 15:50:47 -04001387 struct iov_iter *iter,
1388 loff_t *ppos)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001389{
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001390 ssize_t res;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001391 struct file *file = io->file;
Al Viro6131ffa2013-02-27 16:59:05 -05001392 struct inode *inode = file_inode(file);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001393
1394 if (is_bad_inode(inode))
1395 return -EIO;
1396
Al Virod22a9432014-03-16 15:50:47 -04001397 res = fuse_direct_io(io, iter, ppos, 0);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001398
1399 fuse_invalidate_attr(inode);
1400
1401 return res;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001402}
1403
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001404static ssize_t fuse_direct_read(struct file *file, char __user *buf,
1405 size_t count, loff_t *ppos)
1406{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001407 struct fuse_io_priv io = { .async = 0, .file = file };
Miklos Szeredifb05f412012-11-10 16:55:56 +01001408 struct iovec iov = { .iov_base = buf, .iov_len = count };
Al Virod22a9432014-03-16 15:50:47 -04001409 struct iov_iter ii;
1410 iov_iter_init(&ii, READ, &iov, 1, count);
1411 return __fuse_direct_read(&io, &ii, ppos);
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001412}
1413
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001414static ssize_t __fuse_direct_write(struct fuse_io_priv *io,
Al Virod22a9432014-03-16 15:50:47 -04001415 struct iov_iter *iter,
1416 loff_t *ppos)
Anand Avati4273b792012-02-17 12:46:25 -05001417{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001418 struct file *file = io->file;
Al Viro6131ffa2013-02-27 16:59:05 -05001419 struct inode *inode = file_inode(file);
Al Virod22a9432014-03-16 15:50:47 -04001420 size_t count = iov_iter_count(iter);
Anand Avati4273b792012-02-17 12:46:25 -05001421 ssize_t res;
1422
Al Virod22a9432014-03-16 15:50:47 -04001423
Anand Avati4273b792012-02-17 12:46:25 -05001424 res = generic_write_checks(file, ppos, &count, 0);
Al Virod22a9432014-03-16 15:50:47 -04001425 if (!res) {
Al Viro0c949332014-03-22 06:51:37 -04001426 iov_iter_truncate(iter, count);
Al Virod22a9432014-03-16 15:50:47 -04001427 res = fuse_direct_io(io, iter, ppos, FUSE_DIO_WRITE);
1428 }
Anand Avati4273b792012-02-17 12:46:25 -05001429
1430 fuse_invalidate_attr(inode);
1431
1432 return res;
1433}
1434
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001435static ssize_t fuse_direct_write(struct file *file, const char __user *buf,
1436 size_t count, loff_t *ppos)
1437{
Miklos Szeredifb05f412012-11-10 16:55:56 +01001438 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = count };
Al Viro6131ffa2013-02-27 16:59:05 -05001439 struct inode *inode = file_inode(file);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001440 ssize_t res;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001441 struct fuse_io_priv io = { .async = 0, .file = file };
Al Virod22a9432014-03-16 15:50:47 -04001442 struct iov_iter ii;
1443 iov_iter_init(&ii, WRITE, &iov, 1, count);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001444
1445 if (is_bad_inode(inode))
1446 return -EIO;
1447
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001448 /* Don't allow parallel writes to the same file */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001449 mutex_lock(&inode->i_mutex);
Al Virod22a9432014-03-16 15:50:47 -04001450 res = __fuse_direct_write(&io, &ii, ppos);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04001451 if (res > 0)
1452 fuse_write_update_size(inode, *ppos);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001453 mutex_unlock(&inode->i_mutex);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001454
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001455 return res;
1456}
1457
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001458static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001459{
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001460 int i;
1461
1462 for (i = 0; i < req->num_pages; i++)
1463 __free_page(req->pages[i]);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001464
1465 if (req->ff)
1466 fuse_file_put(req->ff, false);
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001467}
1468
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001469static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001470{
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001471 struct inode *inode = req->inode;
1472 struct fuse_inode *fi = get_fuse_inode(inode);
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001473 struct backing_dev_info *bdi = inode_to_bdi(inode);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001474 int i;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001475
1476 list_del(&req->writepages_entry);
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001477 for (i = 0; i < req->num_pages; i++) {
1478 dec_bdi_stat(bdi, BDI_WRITEBACK);
1479 dec_zone_page_state(req->pages[i], NR_WRITEBACK_TEMP);
1480 bdi_writeout_inc(bdi);
1481 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001482 wake_up(&fi->page_waitq);
1483}
1484
1485/* Called under fc->lock, may release and reacquire it */
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001486static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req,
1487 loff_t size)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001488__releases(fc->lock)
1489__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001490{
1491 struct fuse_inode *fi = get_fuse_inode(req->inode);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001492 struct fuse_write_in *inarg = &req->misc.write.in;
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001493 __u64 data_size = req->num_pages * PAGE_CACHE_SIZE;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001494
1495 if (!fc->connected)
1496 goto out_free;
1497
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001498 if (inarg->offset + data_size <= size) {
1499 inarg->size = data_size;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001500 } else if (inarg->offset < size) {
Pavel Emelyanov385b1262013-06-29 21:42:48 +04001501 inarg->size = size - inarg->offset;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001502 } else {
1503 /* Got truncated off completely */
1504 goto out_free;
1505 }
1506
1507 req->in.args[1].size = inarg->size;
1508 fi->writectr++;
Tejun Heob93f8582008-11-26 12:03:55 +01001509 fuse_request_send_background_locked(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001510 return;
1511
1512 out_free:
1513 fuse_writepage_finish(fc, req);
1514 spin_unlock(&fc->lock);
1515 fuse_writepage_free(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +01001516 fuse_put_request(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001517 spin_lock(&fc->lock);
1518}
1519
1520/*
1521 * If fi->writectr is positive (no truncate or fsync going on) send
1522 * all queued writepage requests.
1523 *
1524 * Called with fc->lock
1525 */
1526void fuse_flush_writepages(struct inode *inode)
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_conn *fc = get_fuse_conn(inode);
1531 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001532 size_t crop = i_size_read(inode);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001533 struct fuse_req *req;
1534
1535 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1536 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1537 list_del_init(&req->list);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001538 fuse_send_writepage(fc, req, crop);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001539 }
1540}
1541
1542static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1543{
1544 struct inode *inode = req->inode;
1545 struct fuse_inode *fi = get_fuse_inode(inode);
1546
1547 mapping_set_error(inode->i_mapping, req->out.h.error);
1548 spin_lock(&fc->lock);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001549 while (req->misc.write.next) {
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001550 struct fuse_conn *fc = get_fuse_conn(inode);
1551 struct fuse_write_in *inarg = &req->misc.write.in;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001552 struct fuse_req *next = req->misc.write.next;
1553 req->misc.write.next = next->misc.write.next;
1554 next->misc.write.next = NULL;
Maxim Patlasovce128de2013-10-02 21:38:54 +04001555 next->ff = fuse_file_get(req->ff);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001556 list_add(&next->writepages_entry, &fi->writepages);
Maxim Patlasov6eaf4782013-10-02 21:38:32 +04001557
1558 /*
1559 * Skip fuse_flush_writepages() to make it easy to crop requests
1560 * based on primary request size.
1561 *
1562 * 1st case (trivial): there are no concurrent activities using
1563 * fuse_set/release_nowrite. Then we're on safe side because
1564 * fuse_flush_writepages() would call fuse_send_writepage()
1565 * anyway.
1566 *
1567 * 2nd case: someone called fuse_set_nowrite and it is waiting
1568 * now for completion of all in-flight requests. This happens
1569 * rarely and no more than once per page, so this should be
1570 * okay.
1571 *
1572 * 3rd case: someone (e.g. fuse_do_setattr()) is in the middle
1573 * of fuse_set_nowrite..fuse_release_nowrite section. The fact
1574 * that fuse_set_nowrite returned implies that all in-flight
1575 * requests were completed along with all of their secondary
1576 * requests. Further primary requests are blocked by negative
1577 * writectr. Hence there cannot be any in-flight requests and
1578 * no invocations of fuse_writepage_end() while we're in
1579 * fuse_set_nowrite..fuse_release_nowrite section.
1580 */
1581 fuse_send_writepage(fc, next, inarg->offset + inarg->size);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001582 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001583 fi->writectr--;
1584 fuse_writepage_finish(fc, req);
1585 spin_unlock(&fc->lock);
1586 fuse_writepage_free(fc, req);
1587}
1588
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001589static struct fuse_file *__fuse_write_file_get(struct fuse_conn *fc,
1590 struct fuse_inode *fi)
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001591{
Miklos Szeredi72523422013-10-01 16:44:52 +02001592 struct fuse_file *ff = NULL;
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001593
1594 spin_lock(&fc->lock);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001595 if (!list_empty(&fi->write_files)) {
Miklos Szeredi72523422013-10-01 16:44:52 +02001596 ff = list_entry(fi->write_files.next, struct fuse_file,
1597 write_entry);
1598 fuse_file_get(ff);
1599 }
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001600 spin_unlock(&fc->lock);
1601
1602 return ff;
1603}
1604
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001605static struct fuse_file *fuse_write_file_get(struct fuse_conn *fc,
1606 struct fuse_inode *fi)
1607{
1608 struct fuse_file *ff = __fuse_write_file_get(fc, fi);
1609 WARN_ON(!ff);
1610 return ff;
1611}
1612
1613int fuse_write_inode(struct inode *inode, struct writeback_control *wbc)
1614{
1615 struct fuse_conn *fc = get_fuse_conn(inode);
1616 struct fuse_inode *fi = get_fuse_inode(inode);
1617 struct fuse_file *ff;
1618 int err;
1619
1620 ff = __fuse_write_file_get(fc, fi);
Maxim Patlasovab9e13f2014-04-28 14:19:24 +02001621 err = fuse_flush_times(inode, ff);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +02001622 if (ff)
1623 fuse_file_put(ff, 0);
1624
1625 return err;
1626}
1627
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001628static int fuse_writepage_locked(struct page *page)
1629{
1630 struct address_space *mapping = page->mapping;
1631 struct inode *inode = mapping->host;
1632 struct fuse_conn *fc = get_fuse_conn(inode);
1633 struct fuse_inode *fi = get_fuse_inode(inode);
1634 struct fuse_req *req;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001635 struct page *tmp_page;
Miklos Szeredi72523422013-10-01 16:44:52 +02001636 int error = -ENOMEM;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001637
1638 set_page_writeback(page);
1639
Maxim Patlasov4250c062012-10-26 19:48:07 +04001640 req = fuse_request_alloc_nofs(1);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001641 if (!req)
1642 goto err;
1643
Maxim Patlasov8b41e672013-03-21 18:02:04 +04001644 req->background = 1; /* writeback always goes to bg_queue */
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001645 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1646 if (!tmp_page)
1647 goto err_free;
1648
Miklos Szeredi72523422013-10-01 16:44:52 +02001649 error = -EIO;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001650 req->ff = fuse_write_file_get(fc, fi);
Miklos Szeredi72523422013-10-01 16:44:52 +02001651 if (!req->ff)
Maxim Patlasov27f1b362014-07-10 15:32:43 +04001652 goto err_nofile;
Miklos Szeredi72523422013-10-01 16:44:52 +02001653
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001654 fuse_write_fill(req, req->ff, page_offset(page), 0);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001655
1656 copy_highpage(tmp_page, page);
Miklos Szeredi2d698b02009-04-28 16:56:36 +02001657 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001658 req->misc.write.next = NULL;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001659 req->in.argpages = 1;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001660 req->num_pages = 1;
1661 req->pages[0] = tmp_page;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001662 req->page_descs[0].offset = 0;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001663 req->page_descs[0].length = PAGE_SIZE;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001664 req->end = fuse_writepage_end;
1665 req->inode = inode;
1666
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001667 inc_bdi_stat(inode_to_bdi(inode), BDI_WRITEBACK);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001668 inc_zone_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001669
1670 spin_lock(&fc->lock);
1671 list_add(&req->writepages_entry, &fi->writepages);
1672 list_add_tail(&req->list, &fi->queued_writes);
1673 fuse_flush_writepages(inode);
1674 spin_unlock(&fc->lock);
1675
Maxim Patlasov4a4ac4e2013-08-12 20:39:30 +04001676 end_page_writeback(page);
1677
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001678 return 0;
1679
Maxim Patlasov27f1b362014-07-10 15:32:43 +04001680err_nofile:
1681 __free_page(tmp_page);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001682err_free:
1683 fuse_request_free(req);
1684err:
1685 end_page_writeback(page);
Miklos Szeredi72523422013-10-01 16:44:52 +02001686 return error;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001687}
1688
1689static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1690{
1691 int err;
1692
Miklos Szerediff17be02013-10-01 16:44:53 +02001693 if (fuse_page_is_writeback(page->mapping->host, page->index)) {
1694 /*
1695 * ->writepages() should be called for sync() and friends. We
1696 * should only get here on direct reclaim and then we are
1697 * allowed to skip a page which is already in flight
1698 */
1699 WARN_ON(wbc->sync_mode == WB_SYNC_ALL);
1700
1701 redirty_page_for_writepage(wbc, page);
1702 return 0;
1703 }
1704
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001705 err = fuse_writepage_locked(page);
1706 unlock_page(page);
1707
1708 return err;
1709}
1710
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001711struct fuse_fill_wb_data {
1712 struct fuse_req *req;
1713 struct fuse_file *ff;
1714 struct inode *inode;
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001715 struct page **orig_pages;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001716};
1717
1718static void fuse_writepages_send(struct fuse_fill_wb_data *data)
1719{
1720 struct fuse_req *req = data->req;
1721 struct inode *inode = data->inode;
1722 struct fuse_conn *fc = get_fuse_conn(inode);
1723 struct fuse_inode *fi = get_fuse_inode(inode);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001724 int num_pages = req->num_pages;
1725 int i;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001726
1727 req->ff = fuse_file_get(data->ff);
1728 spin_lock(&fc->lock);
1729 list_add_tail(&req->list, &fi->queued_writes);
1730 fuse_flush_writepages(inode);
1731 spin_unlock(&fc->lock);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001732
1733 for (i = 0; i < num_pages; i++)
1734 end_page_writeback(data->orig_pages[i]);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001735}
1736
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001737static bool fuse_writepage_in_flight(struct fuse_req *new_req,
1738 struct page *page)
1739{
1740 struct fuse_conn *fc = get_fuse_conn(new_req->inode);
1741 struct fuse_inode *fi = get_fuse_inode(new_req->inode);
1742 struct fuse_req *tmp;
1743 struct fuse_req *old_req;
1744 bool found = false;
1745 pgoff_t curr_index;
1746
1747 BUG_ON(new_req->num_pages != 0);
1748
1749 spin_lock(&fc->lock);
1750 list_del(&new_req->writepages_entry);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001751 list_for_each_entry(old_req, &fi->writepages, writepages_entry) {
1752 BUG_ON(old_req->inode != new_req->inode);
1753 curr_index = old_req->misc.write.in.offset >> PAGE_CACHE_SHIFT;
1754 if (curr_index <= page->index &&
1755 page->index < curr_index + old_req->num_pages) {
1756 found = true;
1757 break;
1758 }
1759 }
Maxim Patlasovf6011082013-10-02 15:01:07 +04001760 if (!found) {
1761 list_add(&new_req->writepages_entry, &fi->writepages);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001762 goto out_unlock;
Maxim Patlasovf6011082013-10-02 15:01:07 +04001763 }
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001764
Maxim Patlasovf6011082013-10-02 15:01:07 +04001765 new_req->num_pages = 1;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001766 for (tmp = old_req; tmp != NULL; tmp = tmp->misc.write.next) {
1767 BUG_ON(tmp->inode != new_req->inode);
1768 curr_index = tmp->misc.write.in.offset >> PAGE_CACHE_SHIFT;
1769 if (tmp->num_pages == 1 &&
1770 curr_index == page->index) {
1771 old_req = tmp;
1772 }
1773 }
1774
1775 if (old_req->num_pages == 1 && (old_req->state == FUSE_REQ_INIT ||
1776 old_req->state == FUSE_REQ_PENDING)) {
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001777 struct backing_dev_info *bdi = inode_to_bdi(page->mapping->host);
Maxim Patlasov41b6e412013-10-02 21:38:43 +04001778
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001779 copy_highpage(old_req->pages[0], page);
1780 spin_unlock(&fc->lock);
1781
Maxim Patlasov41b6e412013-10-02 21:38:43 +04001782 dec_bdi_stat(bdi, BDI_WRITEBACK);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001783 dec_zone_page_state(page, NR_WRITEBACK_TEMP);
Maxim Patlasov41b6e412013-10-02 21:38:43 +04001784 bdi_writeout_inc(bdi);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001785 fuse_writepage_free(fc, new_req);
1786 fuse_request_free(new_req);
1787 goto out;
1788 } else {
1789 new_req->misc.write.next = old_req->misc.write.next;
1790 old_req->misc.write.next = new_req;
1791 }
1792out_unlock:
1793 spin_unlock(&fc->lock);
1794out:
1795 return found;
1796}
1797
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001798static int fuse_writepages_fill(struct page *page,
1799 struct writeback_control *wbc, void *_data)
1800{
1801 struct fuse_fill_wb_data *data = _data;
1802 struct fuse_req *req = data->req;
1803 struct inode *inode = data->inode;
1804 struct fuse_conn *fc = get_fuse_conn(inode);
1805 struct page *tmp_page;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001806 bool is_writeback;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001807 int err;
1808
1809 if (!data->ff) {
1810 err = -EIO;
1811 data->ff = fuse_write_file_get(fc, get_fuse_inode(inode));
1812 if (!data->ff)
1813 goto out_unlock;
1814 }
1815
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001816 /*
1817 * Being under writeback is unlikely but possible. For example direct
1818 * read to an mmaped fuse file will set the page dirty twice; once when
1819 * the pages are faulted with get_user_pages(), and then after the read
1820 * completed.
1821 */
1822 is_writeback = fuse_page_is_writeback(inode, page->index);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001823
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001824 if (req && req->num_pages &&
1825 (is_writeback || req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
1826 (req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_write ||
1827 data->orig_pages[req->num_pages - 1]->index + 1 != page->index)) {
1828 fuse_writepages_send(data);
1829 data->req = NULL;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001830 }
1831 err = -ENOMEM;
1832 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1833 if (!tmp_page)
1834 goto out_unlock;
1835
1836 /*
1837 * The page must not be redirtied until the writeout is completed
1838 * (i.e. userspace has sent a reply to the write request). Otherwise
1839 * there could be more than one temporary page instance for each real
1840 * page.
1841 *
1842 * This is ensured by holding the page lock in page_mkwrite() while
1843 * checking fuse_page_is_writeback(). We already hold the page lock
1844 * since clear_page_dirty_for_io() and keep it held until we add the
1845 * request to the fi->writepages list and increment req->num_pages.
1846 * After this fuse_page_is_writeback() will indicate that the page is
1847 * under writeback, so we can release the page lock.
1848 */
1849 if (data->req == NULL) {
1850 struct fuse_inode *fi = get_fuse_inode(inode);
1851
1852 err = -ENOMEM;
1853 req = fuse_request_alloc_nofs(FUSE_MAX_PAGES_PER_REQ);
1854 if (!req) {
1855 __free_page(tmp_page);
1856 goto out_unlock;
1857 }
1858
1859 fuse_write_fill(req, data->ff, page_offset(page), 0);
1860 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001861 req->misc.write.next = NULL;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001862 req->in.argpages = 1;
1863 req->background = 1;
1864 req->num_pages = 0;
1865 req->end = fuse_writepage_end;
1866 req->inode = inode;
1867
1868 spin_lock(&fc->lock);
1869 list_add(&req->writepages_entry, &fi->writepages);
1870 spin_unlock(&fc->lock);
1871
1872 data->req = req;
1873 }
1874 set_page_writeback(page);
1875
1876 copy_highpage(tmp_page, page);
1877 req->pages[req->num_pages] = tmp_page;
1878 req->page_descs[req->num_pages].offset = 0;
1879 req->page_descs[req->num_pages].length = PAGE_SIZE;
1880
Christoph Hellwigde1414a2015-01-14 10:42:36 +01001881 inc_bdi_stat(inode_to_bdi(inode), BDI_WRITEBACK);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001882 inc_zone_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi8b284dc2013-10-01 16:44:53 +02001883
1884 err = 0;
1885 if (is_writeback && fuse_writepage_in_flight(req, page)) {
1886 end_page_writeback(page);
1887 data->req = NULL;
1888 goto out_unlock;
1889 }
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001890 data->orig_pages[req->num_pages] = page;
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001891
1892 /*
1893 * Protected by fc->lock against concurrent access by
1894 * fuse_page_is_writeback().
1895 */
1896 spin_lock(&fc->lock);
1897 req->num_pages++;
1898 spin_unlock(&fc->lock);
1899
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001900out_unlock:
1901 unlock_page(page);
1902
1903 return err;
1904}
1905
1906static int fuse_writepages(struct address_space *mapping,
1907 struct writeback_control *wbc)
1908{
1909 struct inode *inode = mapping->host;
1910 struct fuse_fill_wb_data data;
1911 int err;
1912
1913 err = -EIO;
1914 if (is_bad_inode(inode))
1915 goto out;
1916
1917 data.inode = inode;
1918 data.req = NULL;
1919 data.ff = NULL;
1920
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001921 err = -ENOMEM;
Fabian Frederickf2b34552014-06-23 18:35:15 +02001922 data.orig_pages = kcalloc(FUSE_MAX_PAGES_PER_REQ,
1923 sizeof(struct page *),
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001924 GFP_NOFS);
1925 if (!data.orig_pages)
1926 goto out;
1927
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001928 err = write_cache_pages(mapping, wbc, fuse_writepages_fill, &data);
1929 if (data.req) {
1930 /* Ignore errors if we can write at least one page */
1931 BUG_ON(!data.req->num_pages);
1932 fuse_writepages_send(&data);
1933 err = 0;
1934 }
1935 if (data.ff)
1936 fuse_file_put(data.ff, false);
Maxim Patlasov2d033ea2013-08-16 15:51:41 +04001937
1938 kfree(data.orig_pages);
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04001939out:
1940 return err;
1941}
1942
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001943/*
1944 * It's worthy to make sure that space is reserved on disk for the write,
1945 * but how to implement it without killing performance need more thinking.
1946 */
1947static int fuse_write_begin(struct file *file, struct address_space *mapping,
1948 loff_t pos, unsigned len, unsigned flags,
1949 struct page **pagep, void **fsdata)
1950{
1951 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
Al Viroa4555892014-10-21 20:11:25 -04001952 struct fuse_conn *fc = get_fuse_conn(file_inode(file));
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04001953 struct page *page;
1954 loff_t fsize;
1955 int err = -ENOMEM;
1956
1957 WARN_ON(!fc->writeback_cache);
1958
1959 page = grab_cache_page_write_begin(mapping, index, flags);
1960 if (!page)
1961 goto error;
1962
1963 fuse_wait_on_page_writeback(mapping->host, page->index);
1964
1965 if (PageUptodate(page) || len == PAGE_CACHE_SIZE)
1966 goto success;
1967 /*
1968 * Check if the start this page comes after the end of file, in which
1969 * case the readpage can be optimized away.
1970 */
1971 fsize = i_size_read(mapping->host);
1972 if (fsize <= (pos & PAGE_CACHE_MASK)) {
1973 size_t off = pos & ~PAGE_CACHE_MASK;
1974 if (off)
1975 zero_user_segment(page, 0, off);
1976 goto success;
1977 }
1978 err = fuse_do_readpage(file, page);
1979 if (err)
1980 goto cleanup;
1981success:
1982 *pagep = page;
1983 return 0;
1984
1985cleanup:
1986 unlock_page(page);
1987 page_cache_release(page);
1988error:
1989 return err;
1990}
1991
1992static int fuse_write_end(struct file *file, struct address_space *mapping,
1993 loff_t pos, unsigned len, unsigned copied,
1994 struct page *page, void *fsdata)
1995{
1996 struct inode *inode = page->mapping->host;
1997
1998 if (!PageUptodate(page)) {
1999 /* Zero any unwritten bytes at the end of the page */
2000 size_t endoff = (pos + copied) & ~PAGE_CACHE_MASK;
2001 if (endoff)
2002 zero_user_segment(page, endoff, PAGE_CACHE_SIZE);
2003 SetPageUptodate(page);
2004 }
2005
2006 fuse_write_update_size(inode, pos + copied);
2007 set_page_dirty(page);
2008 unlock_page(page);
2009 page_cache_release(page);
2010
2011 return copied;
2012}
2013
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002014static int fuse_launder_page(struct page *page)
2015{
2016 int err = 0;
2017 if (clear_page_dirty_for_io(page)) {
2018 struct inode *inode = page->mapping->host;
2019 err = fuse_writepage_locked(page);
2020 if (!err)
2021 fuse_wait_on_page_writeback(inode, page->index);
2022 }
2023 return err;
2024}
2025
2026/*
2027 * Write back dirty pages now, because there may not be any suitable
2028 * open files later
2029 */
2030static void fuse_vma_close(struct vm_area_struct *vma)
2031{
2032 filemap_write_and_wait(vma->vm_file->f_mapping);
2033}
2034
2035/*
2036 * Wait for writeback against this page to complete before allowing it
2037 * to be marked dirty again, and hence written back again, possibly
2038 * before the previous writepage completed.
2039 *
2040 * Block here, instead of in ->writepage(), so that the userspace fs
2041 * can only block processes actually operating on the filesystem.
2042 *
2043 * Otherwise unprivileged userspace fs would be able to block
2044 * unrelated:
2045 *
2046 * - page migration
2047 * - sync(2)
2048 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
2049 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07002050static int fuse_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002051{
Nick Pigginc2ec1752009-03-31 15:23:21 -07002052 struct page *page = vmf->page;
Miklos Szeredicca24372013-10-01 16:44:51 +02002053 struct inode *inode = file_inode(vma->vm_file);
2054
2055 file_update_time(vma->vm_file);
2056 lock_page(page);
2057 if (page->mapping != inode->i_mapping) {
2058 unlock_page(page);
2059 return VM_FAULT_NOPAGE;
2060 }
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002061
2062 fuse_wait_on_page_writeback(inode, page->index);
Miklos Szeredicca24372013-10-01 16:44:51 +02002063 return VM_FAULT_LOCKED;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002064}
2065
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002066static const struct vm_operations_struct fuse_file_vm_ops = {
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002067 .close = fuse_vma_close,
2068 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002069 .map_pages = filemap_map_pages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002070 .page_mkwrite = fuse_page_mkwrite,
2071};
2072
2073static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
2074{
Pavel Emelyanov650b22b2013-10-10 17:10:04 +04002075 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2076 fuse_link_write_file(file);
2077
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002078 file_accessed(file);
2079 vma->vm_ops = &fuse_file_vm_ops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002080 return 0;
2081}
2082
Miklos Szeredifc280c92009-04-02 14:25:35 +02002083static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
2084{
2085 /* Can't provide the coherency needed for MAP_SHARED */
2086 if (vma->vm_flags & VM_MAYSHARE)
2087 return -ENODEV;
2088
Miklos Szeredi3121bfe2009-04-09 17:37:53 +02002089 invalidate_inode_pages2(file->f_mapping);
2090
Miklos Szeredifc280c92009-04-02 14:25:35 +02002091 return generic_file_mmap(file, vma);
2092}
2093
Miklos Szeredi71421252006-06-25 05:48:52 -07002094static int convert_fuse_file_lock(const struct fuse_file_lock *ffl,
2095 struct file_lock *fl)
2096{
2097 switch (ffl->type) {
2098 case F_UNLCK:
2099 break;
2100
2101 case F_RDLCK:
2102 case F_WRLCK:
2103 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
2104 ffl->end < ffl->start)
2105 return -EIO;
2106
2107 fl->fl_start = ffl->start;
2108 fl->fl_end = ffl->end;
2109 fl->fl_pid = ffl->pid;
2110 break;
2111
2112 default:
2113 return -EIO;
2114 }
2115 fl->fl_type = ffl->type;
2116 return 0;
2117}
2118
Miklos Szeredi70781872014-12-12 09:49:05 +01002119static void fuse_lk_fill(struct fuse_args *args, struct file *file,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002120 const struct file_lock *fl, int opcode, pid_t pid,
Miklos Szeredi70781872014-12-12 09:49:05 +01002121 int flock, struct fuse_lk_in *inarg)
Miklos Szeredi71421252006-06-25 05:48:52 -07002122{
Al Viro6131ffa2013-02-27 16:59:05 -05002123 struct inode *inode = file_inode(file);
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07002124 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi71421252006-06-25 05:48:52 -07002125 struct fuse_file *ff = file->private_data;
Miklos Szeredi71421252006-06-25 05:48:52 -07002126
Miklos Szeredi70781872014-12-12 09:49:05 +01002127 memset(inarg, 0, sizeof(*inarg));
2128 inarg->fh = ff->fh;
2129 inarg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
2130 inarg->lk.start = fl->fl_start;
2131 inarg->lk.end = fl->fl_end;
2132 inarg->lk.type = fl->fl_type;
2133 inarg->lk.pid = pid;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002134 if (flock)
Miklos Szeredi70781872014-12-12 09:49:05 +01002135 inarg->lk_flags |= FUSE_LK_FLOCK;
2136 args->in.h.opcode = opcode;
2137 args->in.h.nodeid = get_node_id(inode);
2138 args->in.numargs = 1;
2139 args->in.args[0].size = sizeof(*inarg);
2140 args->in.args[0].value = inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002141}
2142
2143static int fuse_getlk(struct file *file, struct file_lock *fl)
2144{
Al Viro6131ffa2013-02-27 16:59:05 -05002145 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002146 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002147 FUSE_ARGS(args);
2148 struct fuse_lk_in inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002149 struct fuse_lk_out outarg;
2150 int err;
2151
Miklos Szeredi70781872014-12-12 09:49:05 +01002152 fuse_lk_fill(&args, file, fl, FUSE_GETLK, 0, 0, &inarg);
2153 args.out.numargs = 1;
2154 args.out.args[0].size = sizeof(outarg);
2155 args.out.args[0].value = &outarg;
2156 err = fuse_simple_request(fc, &args);
Miklos Szeredi71421252006-06-25 05:48:52 -07002157 if (!err)
2158 err = convert_fuse_file_lock(&outarg.lk, fl);
2159
2160 return err;
2161}
2162
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002163static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07002164{
Al Viro6131ffa2013-02-27 16:59:05 -05002165 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002166 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002167 FUSE_ARGS(args);
2168 struct fuse_lk_in inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -07002169 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
2170 pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0;
2171 int err;
2172
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04002173 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
Miklos Szeredi48e90762008-07-25 01:49:02 -07002174 /* NLM needs asynchronous locks, which we don't support yet */
2175 return -ENOLCK;
2176 }
2177
Miklos Szeredi71421252006-06-25 05:48:52 -07002178 /* Unlock on close is handled by the flush method */
2179 if (fl->fl_flags & FL_CLOSE)
2180 return 0;
2181
Miklos Szeredi70781872014-12-12 09:49:05 +01002182 fuse_lk_fill(&args, file, fl, opcode, pid, flock, &inarg);
2183 err = fuse_simple_request(fc, &args);
Miklos Szeredi71421252006-06-25 05:48:52 -07002184
Miklos Szeredia4d27e72006-06-25 05:48:54 -07002185 /* locking is restartable */
2186 if (err == -EINTR)
2187 err = -ERESTARTSYS;
Miklos Szeredi70781872014-12-12 09:49:05 +01002188
Miklos Szeredi71421252006-06-25 05:48:52 -07002189 return err;
2190}
2191
2192static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
2193{
Al Viro6131ffa2013-02-27 16:59:05 -05002194 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07002195 struct fuse_conn *fc = get_fuse_conn(inode);
2196 int err;
2197
Miklos Szeredi48e90762008-07-25 01:49:02 -07002198 if (cmd == F_CANCELLK) {
2199 err = 0;
2200 } else if (cmd == F_GETLK) {
Miklos Szeredi71421252006-06-25 05:48:52 -07002201 if (fc->no_lock) {
Marc Eshel9d6a8c52007-02-21 00:55:18 -05002202 posix_test_lock(file, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07002203 err = 0;
2204 } else
2205 err = fuse_getlk(file, fl);
2206 } else {
2207 if (fc->no_lock)
Miklos Szeredi48e90762008-07-25 01:49:02 -07002208 err = posix_lock_file(file, fl, NULL);
Miklos Szeredi71421252006-06-25 05:48:52 -07002209 else
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002210 err = fuse_setlk(file, fl, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07002211 }
2212 return err;
2213}
2214
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002215static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
2216{
Al Viro6131ffa2013-02-27 16:59:05 -05002217 struct inode *inode = file_inode(file);
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002218 struct fuse_conn *fc = get_fuse_conn(inode);
2219 int err;
2220
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002221 if (fc->no_flock) {
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002222 err = flock_lock_file_wait(file, fl);
2223 } else {
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002224 struct fuse_file *ff = file->private_data;
2225
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002226 /* emulate flock with POSIX locks */
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02002227 ff->flock = true;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002228 err = fuse_setlk(file, fl, 1);
2229 }
2230
2231 return err;
2232}
2233
Miklos Szeredib2d22722006-12-06 20:35:51 -08002234static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
2235{
2236 struct inode *inode = mapping->host;
2237 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi70781872014-12-12 09:49:05 +01002238 FUSE_ARGS(args);
Miklos Szeredib2d22722006-12-06 20:35:51 -08002239 struct fuse_bmap_in inarg;
2240 struct fuse_bmap_out outarg;
2241 int err;
2242
2243 if (!inode->i_sb->s_bdev || fc->no_bmap)
2244 return 0;
2245
Miklos Szeredib2d22722006-12-06 20:35:51 -08002246 memset(&inarg, 0, sizeof(inarg));
2247 inarg.block = block;
2248 inarg.blocksize = inode->i_sb->s_blocksize;
Miklos Szeredi70781872014-12-12 09:49:05 +01002249 args.in.h.opcode = FUSE_BMAP;
2250 args.in.h.nodeid = get_node_id(inode);
2251 args.in.numargs = 1;
2252 args.in.args[0].size = sizeof(inarg);
2253 args.in.args[0].value = &inarg;
2254 args.out.numargs = 1;
2255 args.out.args[0].size = sizeof(outarg);
2256 args.out.args[0].value = &outarg;
2257 err = fuse_simple_request(fc, &args);
Miklos Szeredib2d22722006-12-06 20:35:51 -08002258 if (err == -ENOSYS)
2259 fc->no_bmap = 1;
2260
2261 return err ? 0 : outarg.block;
2262}
2263
Andrew Morton965c8e52012-12-17 15:59:39 -08002264static loff_t fuse_file_llseek(struct file *file, loff_t offset, int whence)
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002265{
2266 loff_t retval;
Al Viro6131ffa2013-02-27 16:59:05 -05002267 struct inode *inode = file_inode(file);
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002268
Miklos Szeredic07c3d12011-12-13 11:58:48 +01002269 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
Andrew Morton965c8e52012-12-17 15:59:39 -08002270 if (whence == SEEK_CUR || whence == SEEK_SET)
2271 return generic_file_llseek(file, offset, whence);
Josef Bacik06222e42011-07-18 13:21:38 -04002272
Miklos Szeredic07c3d12011-12-13 11:58:48 +01002273 mutex_lock(&inode->i_mutex);
2274 retval = fuse_update_attributes(inode, NULL, file, NULL);
2275 if (!retval)
Andrew Morton965c8e52012-12-17 15:59:39 -08002276 retval = generic_file_llseek(file, offset, whence);
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002277 mutex_unlock(&inode->i_mutex);
Miklos Szeredic07c3d12011-12-13 11:58:48 +01002278
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002279 return retval;
2280}
2281
Tejun Heo59efec72008-11-26 12:03:55 +01002282static int fuse_ioctl_copy_user(struct page **pages, struct iovec *iov,
2283 unsigned int nr_segs, size_t bytes, bool to_user)
2284{
2285 struct iov_iter ii;
2286 int page_idx = 0;
2287
2288 if (!bytes)
2289 return 0;
2290
Al Viro71d8e532014-03-05 19:28:09 -05002291 iov_iter_init(&ii, to_user ? READ : WRITE, iov, nr_segs, bytes);
Tejun Heo59efec72008-11-26 12:03:55 +01002292
2293 while (iov_iter_count(&ii)) {
2294 struct page *page = pages[page_idx++];
2295 size_t todo = min_t(size_t, PAGE_SIZE, iov_iter_count(&ii));
Dan Carpenter4aa0edd2010-05-07 10:28:17 +02002296 void *kaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01002297
Dan Carpenter4aa0edd2010-05-07 10:28:17 +02002298 kaddr = kmap(page);
Tejun Heo59efec72008-11-26 12:03:55 +01002299
2300 while (todo) {
2301 char __user *uaddr = ii.iov->iov_base + ii.iov_offset;
2302 size_t iov_len = ii.iov->iov_len - ii.iov_offset;
2303 size_t copy = min(todo, iov_len);
2304 size_t left;
2305
2306 if (!to_user)
2307 left = copy_from_user(kaddr, uaddr, copy);
2308 else
2309 left = copy_to_user(uaddr, kaddr, copy);
2310
2311 if (unlikely(left))
2312 return -EFAULT;
2313
2314 iov_iter_advance(&ii, copy);
2315 todo -= copy;
2316 kaddr += copy;
2317 }
2318
Jens Axboe0bd87182009-11-03 11:40:44 +01002319 kunmap(page);
Tejun Heo59efec72008-11-26 12:03:55 +01002320 }
2321
2322 return 0;
2323}
2324
2325/*
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002326 * CUSE servers compiled on 32bit broke on 64bit kernels because the
2327 * ABI was defined to be 'struct iovec' which is different on 32bit
2328 * and 64bit. Fortunately we can determine which structure the server
2329 * used from the size of the reply.
2330 */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002331static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
2332 size_t transferred, unsigned count,
2333 bool is_compat)
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002334{
2335#ifdef CONFIG_COMPAT
2336 if (count * sizeof(struct compat_iovec) == transferred) {
2337 struct compat_iovec *ciov = src;
2338 unsigned i;
2339
2340 /*
2341 * With this interface a 32bit server cannot support
2342 * non-compat (i.e. ones coming from 64bit apps) ioctl
2343 * requests
2344 */
2345 if (!is_compat)
2346 return -EINVAL;
2347
2348 for (i = 0; i < count; i++) {
2349 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
2350 dst[i].iov_len = ciov[i].iov_len;
2351 }
2352 return 0;
2353 }
2354#endif
2355
2356 if (count * sizeof(struct iovec) != transferred)
2357 return -EIO;
2358
2359 memcpy(dst, src, transferred);
2360 return 0;
2361}
2362
Miklos Szeredi75727772010-11-30 16:39:27 +01002363/* Make sure iov_length() won't overflow */
2364static int fuse_verify_ioctl_iov(struct iovec *iov, size_t count)
2365{
2366 size_t n;
2367 u32 max = FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT;
2368
Zach Brownfb6ccff2012-07-24 12:10:11 -07002369 for (n = 0; n < count; n++, iov++) {
Miklos Szeredi75727772010-11-30 16:39:27 +01002370 if (iov->iov_len > (size_t) max)
2371 return -ENOMEM;
2372 max -= iov->iov_len;
2373 }
2374 return 0;
2375}
2376
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002377static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
2378 void *src, size_t transferred, unsigned count,
2379 bool is_compat)
2380{
2381 unsigned i;
2382 struct fuse_ioctl_iovec *fiov = src;
2383
2384 if (fc->minor < 16) {
2385 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
2386 count, is_compat);
2387 }
2388
2389 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
2390 return -EIO;
2391
2392 for (i = 0; i < count; i++) {
2393 /* Did the server supply an inappropriate value? */
2394 if (fiov[i].base != (unsigned long) fiov[i].base ||
2395 fiov[i].len != (unsigned long) fiov[i].len)
2396 return -EIO;
2397
2398 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
2399 dst[i].iov_len = (size_t) fiov[i].len;
2400
2401#ifdef CONFIG_COMPAT
2402 if (is_compat &&
2403 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
2404 (compat_size_t) dst[i].iov_len != fiov[i].len))
2405 return -EIO;
2406#endif
2407 }
2408
2409 return 0;
2410}
2411
2412
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002413/*
Tejun Heo59efec72008-11-26 12:03:55 +01002414 * For ioctls, there is no generic way to determine how much memory
2415 * needs to be read and/or written. Furthermore, ioctls are allowed
2416 * to dereference the passed pointer, so the parameter requires deep
2417 * copying but FUSE has no idea whatsoever about what to copy in or
2418 * out.
2419 *
2420 * This is solved by allowing FUSE server to retry ioctl with
2421 * necessary in/out iovecs. Let's assume the ioctl implementation
2422 * needs to read in the following structure.
2423 *
2424 * struct a {
2425 * char *buf;
2426 * size_t buflen;
2427 * }
2428 *
2429 * On the first callout to FUSE server, inarg->in_size and
2430 * inarg->out_size will be NULL; then, the server completes the ioctl
2431 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
2432 * the actual iov array to
2433 *
2434 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
2435 *
2436 * which tells FUSE to copy in the requested area and retry the ioctl.
2437 * On the second round, the server has access to the structure and
2438 * from that it can tell what to look for next, so on the invocation,
2439 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
2440 *
2441 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
2442 * { .iov_base = a.buf, .iov_len = a.buflen } }
2443 *
2444 * FUSE will copy both struct a and the pointed buffer from the
2445 * process doing the ioctl and retry ioctl with both struct a and the
2446 * buffer.
2447 *
2448 * This time, FUSE server has everything it needs and completes ioctl
2449 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
2450 *
2451 * Copying data out works the same way.
2452 *
2453 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
2454 * automatically initializes in and out iovs by decoding @cmd with
2455 * _IOC_* macros and the server is not allowed to request RETRY. This
2456 * limits ioctl data transfers to well-formed ioctls and is the forced
2457 * behavior for all FUSE servers.
2458 */
Tejun Heo08cbf542009-04-14 10:54:53 +09002459long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
2460 unsigned int flags)
Tejun Heo59efec72008-11-26 12:03:55 +01002461{
Tejun Heo59efec72008-11-26 12:03:55 +01002462 struct fuse_file *ff = file->private_data;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002463 struct fuse_conn *fc = ff->fc;
Tejun Heo59efec72008-11-26 12:03:55 +01002464 struct fuse_ioctl_in inarg = {
2465 .fh = ff->fh,
2466 .cmd = cmd,
2467 .arg = arg,
2468 .flags = flags
2469 };
2470 struct fuse_ioctl_out outarg;
2471 struct fuse_req *req = NULL;
2472 struct page **pages = NULL;
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002473 struct iovec *iov_page = NULL;
Tejun Heo59efec72008-11-26 12:03:55 +01002474 struct iovec *in_iov = NULL, *out_iov = NULL;
2475 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
2476 size_t in_size, out_size, transferred;
2477 int err;
2478
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002479#if BITS_PER_LONG == 32
2480 inarg.flags |= FUSE_IOCTL_32BIT;
2481#else
2482 if (flags & FUSE_IOCTL_COMPAT)
2483 inarg.flags |= FUSE_IOCTL_32BIT;
2484#endif
2485
Tejun Heo59efec72008-11-26 12:03:55 +01002486 /* assume all the iovs returned by client always fits in a page */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002487 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
Tejun Heo59efec72008-11-26 12:03:55 +01002488
Tejun Heo59efec72008-11-26 12:03:55 +01002489 err = -ENOMEM;
Thomas Meyerc411cc82011-11-29 22:08:00 +01002490 pages = kcalloc(FUSE_MAX_PAGES_PER_REQ, sizeof(pages[0]), GFP_KERNEL);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002491 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
Tejun Heo59efec72008-11-26 12:03:55 +01002492 if (!pages || !iov_page)
2493 goto out;
2494
2495 /*
2496 * If restricted, initialize IO parameters as encoded in @cmd.
2497 * RETRY from server is not allowed.
2498 */
2499 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002500 struct iovec *iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002501
Miklos Szeredic9f0523d2008-12-02 14:49:42 +01002502 iov->iov_base = (void __user *)arg;
Tejun Heo59efec72008-11-26 12:03:55 +01002503 iov->iov_len = _IOC_SIZE(cmd);
2504
2505 if (_IOC_DIR(cmd) & _IOC_WRITE) {
2506 in_iov = iov;
2507 in_iovs = 1;
2508 }
2509
2510 if (_IOC_DIR(cmd) & _IOC_READ) {
2511 out_iov = iov;
2512 out_iovs = 1;
2513 }
2514 }
2515
2516 retry:
2517 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
2518 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
2519
2520 /*
2521 * Out data can be used either for actual out data or iovs,
2522 * make sure there always is at least one page.
2523 */
2524 out_size = max_t(size_t, out_size, PAGE_SIZE);
2525 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
2526
2527 /* make sure there are enough buffer pages and init request with them */
2528 err = -ENOMEM;
2529 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
2530 goto out;
2531 while (num_pages < max_pages) {
2532 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2533 if (!pages[num_pages])
2534 goto out;
2535 num_pages++;
2536 }
2537
Maxim Patlasov54b96672012-10-26 19:49:13 +04002538 req = fuse_get_req(fc, num_pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002539 if (IS_ERR(req)) {
2540 err = PTR_ERR(req);
2541 req = NULL;
2542 goto out;
2543 }
2544 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
2545 req->num_pages = num_pages;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04002546 fuse_page_descs_length_init(req, 0, req->num_pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002547
2548 /* okay, let's send it to the client */
2549 req->in.h.opcode = FUSE_IOCTL;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002550 req->in.h.nodeid = ff->nodeid;
Tejun Heo59efec72008-11-26 12:03:55 +01002551 req->in.numargs = 1;
2552 req->in.args[0].size = sizeof(inarg);
2553 req->in.args[0].value = &inarg;
2554 if (in_size) {
2555 req->in.numargs++;
2556 req->in.args[1].size = in_size;
2557 req->in.argpages = 1;
2558
2559 err = fuse_ioctl_copy_user(pages, in_iov, in_iovs, in_size,
2560 false);
2561 if (err)
2562 goto out;
2563 }
2564
2565 req->out.numargs = 2;
2566 req->out.args[0].size = sizeof(outarg);
2567 req->out.args[0].value = &outarg;
2568 req->out.args[1].size = out_size;
2569 req->out.argpages = 1;
2570 req->out.argvar = 1;
2571
Tejun Heob93f8582008-11-26 12:03:55 +01002572 fuse_request_send(fc, req);
Tejun Heo59efec72008-11-26 12:03:55 +01002573 err = req->out.h.error;
2574 transferred = req->out.args[1].size;
2575 fuse_put_request(fc, req);
2576 req = NULL;
2577 if (err)
2578 goto out;
2579
2580 /* did it ask for retry? */
2581 if (outarg.flags & FUSE_IOCTL_RETRY) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002582 void *vaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01002583
2584 /* no retry if in restricted mode */
2585 err = -EIO;
2586 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
2587 goto out;
2588
2589 in_iovs = outarg.in_iovs;
2590 out_iovs = outarg.out_iovs;
2591
2592 /*
2593 * Make sure things are in boundary, separate checks
2594 * are to protect against overflow.
2595 */
2596 err = -ENOMEM;
2597 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
2598 out_iovs > FUSE_IOCTL_MAX_IOV ||
2599 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
2600 goto out;
2601
Cong Wang2408f6e2011-11-25 23:14:30 +08002602 vaddr = kmap_atomic(pages[0]);
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002603 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002604 transferred, in_iovs + out_iovs,
2605 (flags & FUSE_IOCTL_COMPAT) != 0);
Cong Wang2408f6e2011-11-25 23:14:30 +08002606 kunmap_atomic(vaddr);
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002607 if (err)
2608 goto out;
Tejun Heo59efec72008-11-26 12:03:55 +01002609
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002610 in_iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002611 out_iov = in_iov + in_iovs;
2612
Miklos Szeredi75727772010-11-30 16:39:27 +01002613 err = fuse_verify_ioctl_iov(in_iov, in_iovs);
2614 if (err)
2615 goto out;
2616
2617 err = fuse_verify_ioctl_iov(out_iov, out_iovs);
2618 if (err)
2619 goto out;
2620
Tejun Heo59efec72008-11-26 12:03:55 +01002621 goto retry;
2622 }
2623
2624 err = -EIO;
2625 if (transferred > inarg.out_size)
2626 goto out;
2627
2628 err = fuse_ioctl_copy_user(pages, out_iov, out_iovs, transferred, true);
2629 out:
2630 if (req)
2631 fuse_put_request(fc, req);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002632 free_page((unsigned long) iov_page);
Tejun Heo59efec72008-11-26 12:03:55 +01002633 while (num_pages)
2634 __free_page(pages[--num_pages]);
2635 kfree(pages);
2636
2637 return err ? err : outarg.result;
2638}
Tejun Heo08cbf542009-04-14 10:54:53 +09002639EXPORT_SYMBOL_GPL(fuse_do_ioctl);
Tejun Heo59efec72008-11-26 12:03:55 +01002640
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002641long fuse_ioctl_common(struct file *file, unsigned int cmd,
2642 unsigned long arg, unsigned int flags)
Miklos Szeredid36f2482009-04-28 16:56:39 +02002643{
Al Viro6131ffa2013-02-27 16:59:05 -05002644 struct inode *inode = file_inode(file);
Miklos Szeredid36f2482009-04-28 16:56:39 +02002645 struct fuse_conn *fc = get_fuse_conn(inode);
2646
Anatol Pomozovc2132c12013-01-14 22:30:00 -08002647 if (!fuse_allow_current_process(fc))
Miklos Szeredid36f2482009-04-28 16:56:39 +02002648 return -EACCES;
2649
2650 if (is_bad_inode(inode))
2651 return -EIO;
2652
2653 return fuse_do_ioctl(file, cmd, arg, flags);
2654}
2655
Tejun Heo59efec72008-11-26 12:03:55 +01002656static long fuse_file_ioctl(struct file *file, unsigned int cmd,
2657 unsigned long arg)
2658{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002659 return fuse_ioctl_common(file, cmd, arg, 0);
Tejun Heo59efec72008-11-26 12:03:55 +01002660}
2661
2662static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
2663 unsigned long arg)
2664{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002665 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
Tejun Heo59efec72008-11-26 12:03:55 +01002666}
2667
Tejun Heo95668a62008-11-26 12:03:55 +01002668/*
2669 * All files which have been polled are linked to RB tree
2670 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2671 * find the matching one.
2672 */
2673static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2674 struct rb_node **parent_out)
2675{
2676 struct rb_node **link = &fc->polled_files.rb_node;
2677 struct rb_node *last = NULL;
2678
2679 while (*link) {
2680 struct fuse_file *ff;
2681
2682 last = *link;
2683 ff = rb_entry(last, struct fuse_file, polled_node);
2684
2685 if (kh < ff->kh)
2686 link = &last->rb_left;
2687 else if (kh > ff->kh)
2688 link = &last->rb_right;
2689 else
2690 return link;
2691 }
2692
2693 if (parent_out)
2694 *parent_out = last;
2695 return link;
2696}
2697
2698/*
2699 * The file is about to be polled. Make sure it's on the polled_files
2700 * RB tree. Note that files once added to the polled_files tree are
2701 * not removed before the file is released. This is because a file
2702 * polled once is likely to be polled again.
2703 */
2704static void fuse_register_polled_file(struct fuse_conn *fc,
2705 struct fuse_file *ff)
2706{
2707 spin_lock(&fc->lock);
2708 if (RB_EMPTY_NODE(&ff->polled_node)) {
Rajat Jainf3846262014-02-05 15:24:57 -08002709 struct rb_node **link, *uninitialized_var(parent);
Tejun Heo95668a62008-11-26 12:03:55 +01002710
2711 link = fuse_find_polled_node(fc, ff->kh, &parent);
2712 BUG_ON(*link);
2713 rb_link_node(&ff->polled_node, parent, link);
2714 rb_insert_color(&ff->polled_node, &fc->polled_files);
2715 }
2716 spin_unlock(&fc->lock);
2717}
2718
Tejun Heo08cbf542009-04-14 10:54:53 +09002719unsigned fuse_file_poll(struct file *file, poll_table *wait)
Tejun Heo95668a62008-11-26 12:03:55 +01002720{
Tejun Heo95668a62008-11-26 12:03:55 +01002721 struct fuse_file *ff = file->private_data;
Miklos Szeredi797759a2009-04-28 16:56:41 +02002722 struct fuse_conn *fc = ff->fc;
Tejun Heo95668a62008-11-26 12:03:55 +01002723 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2724 struct fuse_poll_out outarg;
Miklos Szeredi70781872014-12-12 09:49:05 +01002725 FUSE_ARGS(args);
Tejun Heo95668a62008-11-26 12:03:55 +01002726 int err;
2727
2728 if (fc->no_poll)
2729 return DEFAULT_POLLMASK;
2730
2731 poll_wait(file, &ff->poll_wait, wait);
Enke Chen0415d292013-02-04 16:14:32 +01002732 inarg.events = (__u32)poll_requested_events(wait);
Tejun Heo95668a62008-11-26 12:03:55 +01002733
2734 /*
2735 * Ask for notification iff there's someone waiting for it.
2736 * The client may ignore the flag and always notify.
2737 */
2738 if (waitqueue_active(&ff->poll_wait)) {
2739 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2740 fuse_register_polled_file(fc, ff);
2741 }
2742
Miklos Szeredi70781872014-12-12 09:49:05 +01002743 args.in.h.opcode = FUSE_POLL;
2744 args.in.h.nodeid = ff->nodeid;
2745 args.in.numargs = 1;
2746 args.in.args[0].size = sizeof(inarg);
2747 args.in.args[0].value = &inarg;
2748 args.out.numargs = 1;
2749 args.out.args[0].size = sizeof(outarg);
2750 args.out.args[0].value = &outarg;
2751 err = fuse_simple_request(fc, &args);
Tejun Heo95668a62008-11-26 12:03:55 +01002752
2753 if (!err)
2754 return outarg.revents;
2755 if (err == -ENOSYS) {
2756 fc->no_poll = 1;
2757 return DEFAULT_POLLMASK;
2758 }
2759 return POLLERR;
2760}
Tejun Heo08cbf542009-04-14 10:54:53 +09002761EXPORT_SYMBOL_GPL(fuse_file_poll);
Tejun Heo95668a62008-11-26 12:03:55 +01002762
2763/*
2764 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2765 * wakes up the poll waiters.
2766 */
2767int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2768 struct fuse_notify_poll_wakeup_out *outarg)
2769{
2770 u64 kh = outarg->kh;
2771 struct rb_node **link;
2772
2773 spin_lock(&fc->lock);
2774
2775 link = fuse_find_polled_node(fc, kh, NULL);
2776 if (*link) {
2777 struct fuse_file *ff;
2778
2779 ff = rb_entry(*link, struct fuse_file, polled_node);
2780 wake_up_interruptible_sync(&ff->poll_wait);
2781 }
2782
2783 spin_unlock(&fc->lock);
2784 return 0;
2785}
2786
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002787static void fuse_do_truncate(struct file *file)
2788{
2789 struct inode *inode = file->f_mapping->host;
2790 struct iattr attr;
2791
2792 attr.ia_valid = ATTR_SIZE;
2793 attr.ia_size = i_size_read(inode);
2794
2795 attr.ia_file = file;
2796 attr.ia_valid |= ATTR_FILE;
2797
2798 fuse_do_setattr(inode, &attr, file);
2799}
2800
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002801static inline loff_t fuse_round_up(loff_t off)
2802{
2803 return round_up(off, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
2804}
2805
Anand Avati4273b792012-02-17 12:46:25 -05002806static ssize_t
Al Virod8d3d942014-03-04 21:27:34 -05002807fuse_direct_IO(int rw, struct kiocb *iocb, struct iov_iter *iter,
2808 loff_t offset)
Anand Avati4273b792012-02-17 12:46:25 -05002809{
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002810 DECLARE_COMPLETION_ONSTACK(wait);
Anand Avati4273b792012-02-17 12:46:25 -05002811 ssize_t ret = 0;
Miklos Szeredi60b9df72013-05-01 14:37:21 +02002812 struct file *file = iocb->ki_filp;
2813 struct fuse_file *ff = file->private_data;
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002814 bool async_dio = ff->fc->async_dio;
Anand Avati4273b792012-02-17 12:46:25 -05002815 loff_t pos = 0;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002816 struct inode *inode;
2817 loff_t i_size;
Al Viroa6cbcd42014-03-04 22:38:00 -05002818 size_t count = iov_iter_count(iter);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002819 struct fuse_io_priv *io;
Anand Avati4273b792012-02-17 12:46:25 -05002820
Anand Avati4273b792012-02-17 12:46:25 -05002821 pos = offset;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002822 inode = file->f_mapping->host;
2823 i_size = i_size_read(inode);
Anand Avati4273b792012-02-17 12:46:25 -05002824
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00002825 if ((rw == READ) && (offset > i_size))
2826 return 0;
2827
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002828 /* optimization for short read */
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002829 if (async_dio && rw != WRITE && offset + count > i_size) {
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002830 if (offset >= i_size)
2831 return 0;
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002832 count = min_t(loff_t, count, fuse_round_up(i_size - offset));
Al Viro0c949332014-03-22 06:51:37 -04002833 iov_iter_truncate(iter, count);
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002834 }
2835
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002836 io = kmalloc(sizeof(struct fuse_io_priv), GFP_KERNEL);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002837 if (!io)
2838 return -ENOMEM;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002839 spin_lock_init(&io->lock);
2840 io->reqs = 1;
2841 io->bytes = -1;
2842 io->size = 0;
2843 io->offset = offset;
2844 io->write = (rw == WRITE);
2845 io->err = 0;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002846 io->file = file;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002847 /*
2848 * By default, we want to optimize all I/Os with async request
Miklos Szeredi60b9df72013-05-01 14:37:21 +02002849 * submission to the client filesystem if supported.
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002850 */
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002851 io->async = async_dio;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002852 io->iocb = iocb;
2853
2854 /*
2855 * We cannot asynchronously extend the size of a file. We have no method
2856 * to wait on real async I/O requests, so we must submit this request
2857 * synchronously.
2858 */
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002859 if (!is_sync_kiocb(iocb) && (offset + count > i_size) && rw == WRITE)
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002860 io->async = false;
Anand Avati4273b792012-02-17 12:46:25 -05002861
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002862 if (io->async && is_sync_kiocb(iocb))
2863 io->done = &wait;
2864
Maxim Patlasovb98d0232012-10-26 19:50:15 +04002865 if (rw == WRITE)
Al Virod22a9432014-03-16 15:50:47 -04002866 ret = __fuse_direct_write(io, iter, &pos);
Maxim Patlasovb98d0232012-10-26 19:50:15 +04002867 else
Al Virod22a9432014-03-16 15:50:47 -04002868 ret = __fuse_direct_read(io, iter, &pos);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002869
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002870 if (io->async) {
2871 fuse_aio_complete(io, ret < 0 ? ret : 0, -1);
2872
2873 /* we have a non-extending, async request, so return */
Brian Fosterc9ecf982013-05-30 15:35:50 -04002874 if (!is_sync_kiocb(iocb))
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002875 return -EIOCBQUEUED;
2876
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002877 wait_for_completion(&wait);
2878 ret = fuse_get_res_by_io(io);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002879 }
2880
Christoph Hellwig9d5722b2015-02-02 14:59:43 +01002881 kfree(io);
2882
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002883 if (rw == WRITE) {
2884 if (ret > 0)
2885 fuse_write_update_size(inode, pos);
2886 else if (ret < 0 && offset + count > i_size)
2887 fuse_do_truncate(file);
2888 }
Anand Avati4273b792012-02-17 12:46:25 -05002889
2890 return ret;
2891}
2892
Miklos Szeredicdadb112012-11-10 16:55:56 +01002893static long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
2894 loff_t length)
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002895{
2896 struct fuse_file *ff = file->private_data;
Miklos Szeredi1c682712014-12-12 10:04:51 +01002897 struct inode *inode = file_inode(file);
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002898 struct fuse_inode *fi = get_fuse_inode(inode);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002899 struct fuse_conn *fc = ff->fc;
Miklos Szeredi70781872014-12-12 09:49:05 +01002900 FUSE_ARGS(args);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002901 struct fuse_fallocate_in inarg = {
2902 .fh = ff->fh,
2903 .offset = offset,
2904 .length = length,
2905 .mode = mode
2906 };
2907 int err;
Maxim Patlasov14c14412013-06-13 12:16:39 +04002908 bool lock_inode = !(mode & FALLOC_FL_KEEP_SIZE) ||
2909 (mode & FALLOC_FL_PUNCH_HOLE);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002910
Miklos Szeredi4adb8302014-04-28 14:19:21 +02002911 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2912 return -EOPNOTSUPP;
2913
Miklos Szeredi519c6042012-04-26 10:56:36 +02002914 if (fc->no_fallocate)
2915 return -EOPNOTSUPP;
2916
Maxim Patlasov14c14412013-06-13 12:16:39 +04002917 if (lock_inode) {
Brian Foster3634a632013-05-17 09:30:32 -04002918 mutex_lock(&inode->i_mutex);
Maxim Patlasovbde52782013-09-13 19:19:54 +04002919 if (mode & FALLOC_FL_PUNCH_HOLE) {
2920 loff_t endbyte = offset + length - 1;
2921 err = filemap_write_and_wait_range(inode->i_mapping,
2922 offset, endbyte);
2923 if (err)
2924 goto out;
2925
2926 fuse_sync_writes(inode);
2927 }
Brian Foster3634a632013-05-17 09:30:32 -04002928 }
2929
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002930 if (!(mode & FALLOC_FL_KEEP_SIZE))
2931 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
2932
Miklos Szeredi70781872014-12-12 09:49:05 +01002933 args.in.h.opcode = FUSE_FALLOCATE;
2934 args.in.h.nodeid = ff->nodeid;
2935 args.in.numargs = 1;
2936 args.in.args[0].size = sizeof(inarg);
2937 args.in.args[0].value = &inarg;
2938 err = fuse_simple_request(fc, &args);
Miklos Szeredi519c6042012-04-26 10:56:36 +02002939 if (err == -ENOSYS) {
2940 fc->no_fallocate = 1;
2941 err = -EOPNOTSUPP;
2942 }
Brian Fosterbee6c302013-05-17 15:27:34 -04002943 if (err)
2944 goto out;
2945
2946 /* we could have extended the file */
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04002947 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
2948 bool changed = fuse_write_update_size(inode, offset + length);
2949
Miklos Szeredi93d22692014-04-28 14:19:22 +02002950 if (changed && fc->writeback_cache)
2951 file_update_time(file);
Maxim Patlasovb0aa7602013-12-26 19:51:11 +04002952 }
Brian Fosterbee6c302013-05-17 15:27:34 -04002953
2954 if (mode & FALLOC_FL_PUNCH_HOLE)
2955 truncate_pagecache_range(inode, offset, offset + length - 1);
2956
2957 fuse_invalidate_attr(inode);
2958
Brian Foster3634a632013-05-17 09:30:32 -04002959out:
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002960 if (!(mode & FALLOC_FL_KEEP_SIZE))
2961 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
2962
Maxim Patlasovbde52782013-09-13 19:19:54 +04002963 if (lock_inode)
Brian Foster3634a632013-05-17 09:30:32 -04002964 mutex_unlock(&inode->i_mutex);
Brian Foster3634a632013-05-17 09:30:32 -04002965
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002966 return err;
2967}
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002968
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002969static const struct file_operations fuse_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002970 .llseek = fuse_file_llseek,
Al Viro37c20f12014-04-02 14:47:09 -04002971 .read = new_sync_read,
2972 .read_iter = fuse_file_read_iter,
Al Viro84c3d552014-04-03 14:33:23 -04002973 .write = new_sync_write,
2974 .write_iter = fuse_file_write_iter,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002975 .mmap = fuse_file_mmap,
2976 .open = fuse_open,
2977 .flush = fuse_flush,
2978 .release = fuse_release,
2979 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07002980 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002981 .flock = fuse_file_flock,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02002982 .splice_read = generic_file_splice_read,
Tejun Heo59efec72008-11-26 12:03:55 +01002983 .unlocked_ioctl = fuse_file_ioctl,
2984 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01002985 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002986 .fallocate = fuse_file_fallocate,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002987};
2988
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002989static const struct file_operations fuse_direct_io_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002990 .llseek = fuse_file_llseek,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07002991 .read = fuse_direct_read,
2992 .write = fuse_direct_write,
Miklos Szeredifc280c92009-04-02 14:25:35 +02002993 .mmap = fuse_direct_mmap,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07002994 .open = fuse_open,
2995 .flush = fuse_flush,
2996 .release = fuse_release,
2997 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07002998 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002999 .flock = fuse_file_flock,
Tejun Heo59efec72008-11-26 12:03:55 +01003000 .unlocked_ioctl = fuse_file_ioctl,
3001 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01003002 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07003003 .fallocate = fuse_file_fallocate,
Miklos Szeredifc280c92009-04-02 14:25:35 +02003004 /* no splice_read */
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07003005};
3006
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07003007static const struct address_space_operations fuse_file_aops = {
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003008 .readpage = fuse_readpage,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003009 .writepage = fuse_writepage,
Pavel Emelyanov26d614d2013-06-29 21:45:29 +04003010 .writepages = fuse_writepages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003011 .launder_page = fuse_launder_page,
Miklos Szeredidb50b962005-09-09 13:10:33 -07003012 .readpages = fuse_readpages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07003013 .set_page_dirty = __set_page_dirty_nobuffers,
Miklos Szeredib2d22722006-12-06 20:35:51 -08003014 .bmap = fuse_bmap,
Anand Avati4273b792012-02-17 12:46:25 -05003015 .direct_IO = fuse_direct_IO,
Pavel Emelyanov6b12c1b2013-10-10 17:11:43 +04003016 .write_begin = fuse_write_begin,
3017 .write_end = fuse_write_end,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003018};
3019
3020void fuse_init_file_inode(struct inode *inode)
3021{
Miklos Szeredi45323fb2005-09-09 13:10:37 -07003022 inode->i_fop = &fuse_file_operations;
3023 inode->i_data.a_ops = &fuse_file_aops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07003024}