blob: aab6d05355e45d32742b13e8dae3a797e7e7ed48 [file] [log] [blame]
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi1729a162008-11-26 12:03:54 +01003 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredib6aeade2005-09-09 13:10:30 -07004
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
9#include "fuse_i.h"
10
11#include <linux/pagemap.h>
12#include <linux/slab.h>
13#include <linux/kernel.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040014#include <linux/sched.h>
Tejun Heo08cbf542009-04-14 10:54:53 +090015#include <linux/module.h>
Miklos Szeredid9d318d2010-11-30 16:39:27 +010016#include <linux/compat.h>
Johannes Weiner478e0842011-07-25 22:35:35 +020017#include <linux/swap.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070018#include <linux/aio.h>
Brian Foster3634a632013-05-17 09:30:32 -040019#include <linux/falloc.h>
Miklos Szeredib6aeade2005-09-09 13:10:30 -070020
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080021static const struct file_operations fuse_direct_io_file_operations;
Miklos Szeredi45323fb2005-09-09 13:10:37 -070022
Miklos Szeredi91fe96b2009-04-28 16:56:37 +020023static int fuse_send_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
24 int opcode, struct fuse_open_out *outargp)
Miklos Szeredib6aeade2005-09-09 13:10:30 -070025{
Miklos Szeredib6aeade2005-09-09 13:10:30 -070026 struct fuse_open_in inarg;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080027 struct fuse_req *req;
28 int err;
29
Maxim Patlasovb111c8c2012-10-26 19:48:30 +040030 req = fuse_get_req_nopages(fc);
Miklos Szeredice1d5a42006-04-10 22:54:58 -070031 if (IS_ERR(req))
32 return PTR_ERR(req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080033
34 memset(&inarg, 0, sizeof(inarg));
Miklos Szeredi6ff958e2007-10-18 03:07:02 -070035 inarg.flags = file->f_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
36 if (!fc->atomic_o_trunc)
37 inarg.flags &= ~O_TRUNC;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +020038 req->in.h.opcode = opcode;
39 req->in.h.nodeid = nodeid;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080040 req->in.numargs = 1;
41 req->in.args[0].size = sizeof(inarg);
42 req->in.args[0].value = &inarg;
43 req->out.numargs = 1;
44 req->out.args[0].size = sizeof(*outargp);
45 req->out.args[0].value = outargp;
Tejun Heob93f8582008-11-26 12:03:55 +010046 fuse_request_send(fc, req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080047 err = req->out.h.error;
48 fuse_put_request(fc, req);
49
50 return err;
51}
52
Tejun Heoacf99432008-11-26 12:03:55 +010053struct fuse_file *fuse_file_alloc(struct fuse_conn *fc)
Miklos Szeredifd72faa2005-11-07 00:59:51 -080054{
55 struct fuse_file *ff;
Tejun Heo6b2db282009-04-14 10:54:49 +090056
Miklos Szeredifd72faa2005-11-07 00:59:51 -080057 ff = kmalloc(sizeof(struct fuse_file), GFP_KERNEL);
Tejun Heo6b2db282009-04-14 10:54:49 +090058 if (unlikely(!ff))
59 return NULL;
60
Miklos Szeredida5e4712009-04-28 16:56:36 +020061 ff->fc = fc;
Maxim Patlasov4250c062012-10-26 19:48:07 +040062 ff->reserved_req = fuse_request_alloc(0);
Tejun Heo6b2db282009-04-14 10:54:49 +090063 if (unlikely(!ff->reserved_req)) {
64 kfree(ff);
65 return NULL;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080066 }
Tejun Heo6b2db282009-04-14 10:54:49 +090067
68 INIT_LIST_HEAD(&ff->write_entry);
69 atomic_set(&ff->count, 0);
70 RB_CLEAR_NODE(&ff->polled_node);
71 init_waitqueue_head(&ff->poll_wait);
72
73 spin_lock(&fc->lock);
74 ff->kh = ++fc->khctr;
75 spin_unlock(&fc->lock);
76
Miklos Szeredifd72faa2005-11-07 00:59:51 -080077 return ff;
78}
79
80void fuse_file_free(struct fuse_file *ff)
81{
Miklos Szeredi33649c92006-06-25 05:48:52 -070082 fuse_request_free(ff->reserved_req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080083 kfree(ff);
84}
85
Miklos Szeredic7b71432009-04-28 16:56:37 +020086struct fuse_file *fuse_file_get(struct fuse_file *ff)
Miklos Szeredic756e0a2007-10-16 23:31:00 -070087{
88 atomic_inc(&ff->count);
89 return ff;
90}
91
Miklos Szeredi5a18ec12011-02-25 14:44:58 +010092static void fuse_release_async(struct work_struct *work)
Miklos Szeredi819c4b32007-10-16 23:31:04 -070093{
Miklos Szeredi5a18ec12011-02-25 14:44:58 +010094 struct fuse_req *req;
95 struct fuse_conn *fc;
96 struct path path;
97
98 req = container_of(work, struct fuse_req, misc.release.work);
99 path = req->misc.release.path;
100 fc = get_fuse_conn(path.dentry->d_inode);
101
102 fuse_put_request(fc, req);
103 path_put(&path);
Miklos Szeredi819c4b32007-10-16 23:31:04 -0700104}
105
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100106static void fuse_release_end(struct fuse_conn *fc, struct fuse_req *req)
107{
108 if (fc->destroy_req) {
109 /*
110 * If this is a fuseblk mount, then it's possible that
111 * releasing the path will result in releasing the
112 * super block and sending the DESTROY request. If
113 * the server is single threaded, this would hang.
114 * For this reason do the path_put() in a separate
115 * thread.
116 */
117 atomic_inc(&req->count);
118 INIT_WORK(&req->misc.release.work, fuse_release_async);
119 schedule_work(&req->misc.release.work);
120 } else {
121 path_put(&req->misc.release.path);
122 }
123}
124
125static void fuse_file_put(struct fuse_file *ff, bool sync)
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700126{
127 if (atomic_dec_and_test(&ff->count)) {
128 struct fuse_req *req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200129
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100130 if (sync) {
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400131 req->background = 0;
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100132 fuse_request_send(ff->fc, req);
133 path_put(&req->misc.release.path);
134 fuse_put_request(ff->fc, req);
135 } else {
136 req->end = fuse_release_end;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400137 req->background = 1;
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100138 fuse_request_send_background(ff->fc, req);
139 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700140 kfree(ff);
141 }
142}
143
Tejun Heo08cbf542009-04-14 10:54:53 +0900144int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
145 bool isdir)
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200146{
147 struct fuse_open_out outarg;
148 struct fuse_file *ff;
149 int err;
150 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
151
152 ff = fuse_file_alloc(fc);
153 if (!ff)
154 return -ENOMEM;
155
156 err = fuse_send_open(fc, nodeid, file, opcode, &outarg);
157 if (err) {
158 fuse_file_free(ff);
159 return err;
160 }
161
162 if (isdir)
163 outarg.open_flags &= ~FOPEN_DIRECT_IO;
164
165 ff->fh = outarg.fh;
166 ff->nodeid = nodeid;
167 ff->open_flags = outarg.open_flags;
168 file->private_data = fuse_file_get(ff);
169
170 return 0;
171}
Tejun Heo08cbf542009-04-14 10:54:53 +0900172EXPORT_SYMBOL_GPL(fuse_do_open);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200173
Miklos Szeredic7b71432009-04-28 16:56:37 +0200174void fuse_finish_open(struct inode *inode, struct file *file)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800175{
Miklos Szeredic7b71432009-04-28 16:56:37 +0200176 struct fuse_file *ff = file->private_data;
Ken Sumralla0822c52010-11-24 12:57:00 -0800177 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200178
179 if (ff->open_flags & FOPEN_DIRECT_IO)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800180 file->f_op = &fuse_direct_io_file_operations;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200181 if (!(ff->open_flags & FOPEN_KEEP_CACHE))
Miklos Szeredib1009972007-10-16 23:31:01 -0700182 invalidate_inode_pages2(inode->i_mapping);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200183 if (ff->open_flags & FOPEN_NONSEEKABLE)
Tejun Heoa7c1b992008-10-16 16:08:57 +0200184 nonseekable_open(inode, file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800185 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
186 struct fuse_inode *fi = get_fuse_inode(inode);
187
188 spin_lock(&fc->lock);
189 fi->attr_version = ++fc->attr_version;
190 i_size_write(inode, 0);
191 spin_unlock(&fc->lock);
192 fuse_invalidate_attr(inode);
193 }
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800194}
195
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200196int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800197{
Tejun Heoacf99432008-11-26 12:03:55 +0100198 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700199 int err;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700200
201 err = generic_file_open(inode, file);
202 if (err)
203 return err;
204
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200205 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800206 if (err)
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200207 return err;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700208
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200209 fuse_finish_open(inode, file);
210
211 return 0;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700212}
213
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200214static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800215{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200216 struct fuse_conn *fc = ff->fc;
Miklos Szeredi33649c92006-06-25 05:48:52 -0700217 struct fuse_req *req = ff->reserved_req;
Miklos Szeredib57d4262008-02-06 01:38:39 -0800218 struct fuse_release_in *inarg = &req->misc.release.in;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700219
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200220 spin_lock(&fc->lock);
221 list_del(&ff->write_entry);
222 if (!RB_EMPTY_NODE(&ff->polled_node))
223 rb_erase(&ff->polled_node, &fc->polled_files);
224 spin_unlock(&fc->lock);
225
Bryan Green357ccf22011-03-01 16:43:52 -0800226 wake_up_interruptible_all(&ff->poll_wait);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200227
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700228 inarg->fh = ff->fh;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800229 inarg->flags = flags;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700230 req->in.h.opcode = opcode;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200231 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700232 req->in.numargs = 1;
233 req->in.args[0].size = sizeof(struct fuse_release_in);
234 req->in.args[0].value = inarg;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800235}
236
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200237void fuse_release_common(struct file *file, int opcode)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800238{
Tejun Heo6b2db282009-04-14 10:54:49 +0900239 struct fuse_file *ff;
240 struct fuse_req *req;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -0700241
Tejun Heo6b2db282009-04-14 10:54:49 +0900242 ff = file->private_data;
243 if (unlikely(!ff))
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200244 return;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700245
Tejun Heo6b2db282009-04-14 10:54:49 +0900246 req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200247 fuse_prepare_release(ff, file->f_flags, opcode);
Tejun Heo95668a62008-11-26 12:03:55 +0100248
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200249 if (ff->flock) {
250 struct fuse_release_in *inarg = &req->misc.release.in;
251 inarg->release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
252 inarg->lock_owner = fuse_lock_owner_id(ff->fc,
253 (fl_owner_t) file);
254 }
Tejun Heo6b2db282009-04-14 10:54:49 +0900255 /* Hold vfsmount and dentry until release is finished */
Miklos Szeredib0be46e2009-04-28 16:56:36 +0200256 path_get(&file->f_path);
257 req->misc.release.path = file->f_path;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700258
Tejun Heo6b2db282009-04-14 10:54:49 +0900259 /*
260 * Normally this will send the RELEASE request, however if
261 * some asynchronous READ or WRITE requests are outstanding,
262 * the sending will be delayed.
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100263 *
264 * Make the release synchronous if this is a fuseblk mount,
265 * synchronous RELEASE is allowed (and desirable) in this case
266 * because the server can be trusted not to screw up.
Tejun Heo6b2db282009-04-14 10:54:49 +0900267 */
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100268 fuse_file_put(ff, ff->fc->destroy_req != NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700269}
270
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700271static int fuse_open(struct inode *inode, struct file *file)
272{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200273 return fuse_open_common(inode, file, false);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700274}
275
276static int fuse_release(struct inode *inode, struct file *file)
277{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200278 fuse_release_common(file, FUSE_RELEASE);
279
280 /* return value is ignored by VFS */
281 return 0;
282}
283
284void fuse_sync_release(struct fuse_file *ff, int flags)
285{
286 WARN_ON(atomic_read(&ff->count) > 1);
287 fuse_prepare_release(ff, flags, FUSE_RELEASE);
288 ff->reserved_req->force = 1;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400289 ff->reserved_req->background = 0;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200290 fuse_request_send(ff->fc, ff->reserved_req);
291 fuse_put_request(ff->fc, ff->reserved_req);
292 kfree(ff);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700293}
Tejun Heo08cbf542009-04-14 10:54:53 +0900294EXPORT_SYMBOL_GPL(fuse_sync_release);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700295
Miklos Szeredi71421252006-06-25 05:48:52 -0700296/*
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700297 * Scramble the ID space with XTEA, so that the value of the files_struct
298 * pointer is not exposed to userspace.
Miklos Szeredi71421252006-06-25 05:48:52 -0700299 */
Miklos Szeredif3332112007-10-18 03:07:04 -0700300u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
Miklos Szeredi71421252006-06-25 05:48:52 -0700301{
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700302 u32 *k = fc->scramble_key;
303 u64 v = (unsigned long) id;
304 u32 v0 = v;
305 u32 v1 = v >> 32;
306 u32 sum = 0;
307 int i;
308
309 for (i = 0; i < 32; i++) {
310 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
311 sum += 0x9E3779B9;
312 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
313 }
314
315 return (u64) v0 + ((u64) v1 << 32);
Miklos Szeredi71421252006-06-25 05:48:52 -0700316}
317
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700318/*
319 * Check if page is under writeback
320 *
321 * This is currently done by walking the list of writepage requests
322 * for the inode, which can be pretty inefficient.
323 */
324static bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
325{
326 struct fuse_conn *fc = get_fuse_conn(inode);
327 struct fuse_inode *fi = get_fuse_inode(inode);
328 struct fuse_req *req;
329 bool found = false;
330
331 spin_lock(&fc->lock);
332 list_for_each_entry(req, &fi->writepages, writepages_entry) {
333 pgoff_t curr_index;
334
335 BUG_ON(req->inode != inode);
336 curr_index = req->misc.write.in.offset >> PAGE_CACHE_SHIFT;
337 if (curr_index == index) {
338 found = true;
339 break;
340 }
341 }
342 spin_unlock(&fc->lock);
343
344 return found;
345}
346
347/*
348 * Wait for page writeback to be completed.
349 *
350 * Since fuse doesn't rely on the VM writeback tracking, this has to
351 * use some other means.
352 */
353static int fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
354{
355 struct fuse_inode *fi = get_fuse_inode(inode);
356
357 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
358 return 0;
359}
360
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -0700361static int fuse_flush(struct file *file, fl_owner_t id)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700362{
Al Viro6131ffa2013-02-27 16:59:05 -0500363 struct inode *inode = file_inode(file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700364 struct fuse_conn *fc = get_fuse_conn(inode);
365 struct fuse_file *ff = file->private_data;
366 struct fuse_req *req;
367 struct fuse_flush_in inarg;
368 int err;
369
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800370 if (is_bad_inode(inode))
371 return -EIO;
372
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700373 if (fc->no_flush)
374 return 0;
375
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400376 req = fuse_get_req_nofail_nopages(fc, file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700377 memset(&inarg, 0, sizeof(inarg));
378 inarg.fh = ff->fh;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700379 inarg.lock_owner = fuse_lock_owner_id(fc, id);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700380 req->in.h.opcode = FUSE_FLUSH;
381 req->in.h.nodeid = get_node_id(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700382 req->in.numargs = 1;
383 req->in.args[0].size = sizeof(inarg);
384 req->in.args[0].value = &inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -0700385 req->force = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100386 fuse_request_send(fc, req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700387 err = req->out.h.error;
388 fuse_put_request(fc, req);
389 if (err == -ENOSYS) {
390 fc->no_flush = 1;
391 err = 0;
392 }
393 return err;
394}
395
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700396/*
397 * Wait for all pending writepages on the inode to finish.
398 *
399 * This is currently done by blocking further writes with FUSE_NOWRITE
400 * and waiting for all sent writes to complete.
401 *
402 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
403 * could conflict with truncation.
404 */
405static void fuse_sync_writes(struct inode *inode)
406{
407 fuse_set_nowrite(inode);
408 fuse_release_nowrite(inode);
409}
410
Josef Bacik02c24a82011-07-16 20:44:56 -0400411int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
412 int datasync, int isdir)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700413{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200414 struct inode *inode = file->f_mapping->host;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700415 struct fuse_conn *fc = get_fuse_conn(inode);
416 struct fuse_file *ff = file->private_data;
417 struct fuse_req *req;
418 struct fuse_fsync_in inarg;
419 int err;
420
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800421 if (is_bad_inode(inode))
422 return -EIO;
423
Josef Bacik02c24a82011-07-16 20:44:56 -0400424 err = filemap_write_and_wait_range(inode->i_mapping, start, end);
425 if (err)
426 return err;
427
Miklos Szeredi82547982005-09-09 13:10:38 -0700428 if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700429 return 0;
430
Josef Bacik02c24a82011-07-16 20:44:56 -0400431 mutex_lock(&inode->i_mutex);
432
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700433 /*
434 * Start writeback against all dirty pages of the inode, then
435 * wait for all outstanding writes, before sending the FSYNC
436 * request.
437 */
438 err = write_inode_now(inode, 0);
439 if (err)
Josef Bacik02c24a82011-07-16 20:44:56 -0400440 goto out;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700441
442 fuse_sync_writes(inode);
443
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400444 req = fuse_get_req_nopages(fc);
Josef Bacik02c24a82011-07-16 20:44:56 -0400445 if (IS_ERR(req)) {
446 err = PTR_ERR(req);
447 goto out;
448 }
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700449
450 memset(&inarg, 0, sizeof(inarg));
451 inarg.fh = ff->fh;
452 inarg.fsync_flags = datasync ? 1 : 0;
Miklos Szeredi82547982005-09-09 13:10:38 -0700453 req->in.h.opcode = isdir ? FUSE_FSYNCDIR : FUSE_FSYNC;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700454 req->in.h.nodeid = get_node_id(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700455 req->in.numargs = 1;
456 req->in.args[0].size = sizeof(inarg);
457 req->in.args[0].value = &inarg;
Tejun Heob93f8582008-11-26 12:03:55 +0100458 fuse_request_send(fc, req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700459 err = req->out.h.error;
460 fuse_put_request(fc, req);
461 if (err == -ENOSYS) {
Miklos Szeredi82547982005-09-09 13:10:38 -0700462 if (isdir)
463 fc->no_fsyncdir = 1;
464 else
465 fc->no_fsync = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700466 err = 0;
467 }
Josef Bacik02c24a82011-07-16 20:44:56 -0400468out:
469 mutex_unlock(&inode->i_mutex);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700470 return err;
471}
472
Josef Bacik02c24a82011-07-16 20:44:56 -0400473static int fuse_fsync(struct file *file, loff_t start, loff_t end,
474 int datasync)
Miklos Szeredi82547982005-09-09 13:10:38 -0700475{
Josef Bacik02c24a82011-07-16 20:44:56 -0400476 return fuse_fsync_common(file, start, end, datasync, 0);
Miklos Szeredi82547982005-09-09 13:10:38 -0700477}
478
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200479void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
480 size_t count, int opcode)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700481{
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700482 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredia6643092007-11-28 16:22:00 -0800483 struct fuse_file *ff = file->private_data;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700484
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800485 inarg->fh = ff->fh;
486 inarg->offset = pos;
487 inarg->size = count;
Miklos Szeredia6643092007-11-28 16:22:00 -0800488 inarg->flags = file->f_flags;
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800489 req->in.h.opcode = opcode;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200490 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700491 req->in.numargs = 1;
492 req->in.args[0].size = sizeof(struct fuse_read_in);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800493 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700494 req->out.argvar = 1;
495 req->out.numargs = 1;
496 req->out.args[0].size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700497}
498
Maxim Patlasov187c5c32012-12-14 19:20:25 +0400499static void fuse_release_user_pages(struct fuse_req *req, int write)
500{
501 unsigned i;
502
503 for (i = 0; i < req->num_pages; i++) {
504 struct page *page = req->pages[i];
505 if (write)
506 set_page_dirty_lock(page);
507 put_page(page);
508 }
509}
510
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400511/**
512 * In case of short read, the caller sets 'pos' to the position of
513 * actual end of fuse request in IO request. Otherwise, if bytes_requested
514 * == bytes_transferred or rw == WRITE, the caller sets 'pos' to -1.
515 *
516 * An example:
517 * User requested DIO read of 64K. It was splitted into two 32K fuse requests,
518 * both submitted asynchronously. The first of them was ACKed by userspace as
519 * fully completed (req->out.args[0].size == 32K) resulting in pos == -1. The
520 * second request was ACKed as short, e.g. only 1K was read, resulting in
521 * pos == 33K.
522 *
523 * Thus, when all fuse requests are completed, the minimal non-negative 'pos'
524 * will be equal to the length of the longest contiguous fragment of
525 * transferred data starting from the beginning of IO request.
526 */
527static void fuse_aio_complete(struct fuse_io_priv *io, int err, ssize_t pos)
528{
529 int left;
530
531 spin_lock(&io->lock);
532 if (err)
533 io->err = io->err ? : err;
534 else if (pos >= 0 && (io->bytes < 0 || pos < io->bytes))
535 io->bytes = pos;
536
537 left = --io->reqs;
538 spin_unlock(&io->lock);
539
540 if (!left) {
541 long res;
542
543 if (io->err)
544 res = io->err;
545 else if (io->bytes >= 0 && io->write)
546 res = -EIO;
547 else {
548 res = io->bytes < 0 ? io->size : io->bytes;
549
550 if (!is_sync_kiocb(io->iocb)) {
Al Virocb5e05d2013-06-16 20:05:23 +0400551 struct inode *inode = file_inode(io->iocb->ki_filp);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400552 struct fuse_conn *fc = get_fuse_conn(inode);
553 struct fuse_inode *fi = get_fuse_inode(inode);
554
555 spin_lock(&fc->lock);
556 fi->attr_version = ++fc->attr_version;
557 spin_unlock(&fc->lock);
558 }
559 }
560
561 aio_complete(io->iocb, res, 0);
562 kfree(io);
563 }
564}
565
566static void fuse_aio_complete_req(struct fuse_conn *fc, struct fuse_req *req)
567{
568 struct fuse_io_priv *io = req->io;
569 ssize_t pos = -1;
570
571 fuse_release_user_pages(req, !io->write);
572
573 if (io->write) {
574 if (req->misc.write.in.size != req->misc.write.out.size)
575 pos = req->misc.write.in.offset - io->offset +
576 req->misc.write.out.size;
577 } else {
578 if (req->misc.read.in.size != req->out.args[0].size)
579 pos = req->misc.read.in.offset - io->offset +
580 req->out.args[0].size;
581 }
582
583 fuse_aio_complete(io, req->out.h.error, pos);
584}
585
586static size_t fuse_async_req_send(struct fuse_conn *fc, struct fuse_req *req,
587 size_t num_bytes, struct fuse_io_priv *io)
588{
589 spin_lock(&io->lock);
590 io->size += num_bytes;
591 io->reqs++;
592 spin_unlock(&io->lock);
593
594 req->io = io;
595 req->end = fuse_aio_complete_req;
596
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400597 __fuse_get_request(req);
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400598 fuse_request_send_background(fc, req);
599
600 return num_bytes;
601}
602
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400603static size_t fuse_send_read(struct fuse_req *req, struct fuse_io_priv *io,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200604 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700605{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400606 struct file *file = io->file;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200607 struct fuse_file *ff = file->private_data;
608 struct fuse_conn *fc = ff->fc;
Miklos Szeredif3332112007-10-18 03:07:04 -0700609
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200610 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredif3332112007-10-18 03:07:04 -0700611 if (owner != NULL) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700612 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredif3332112007-10-18 03:07:04 -0700613
614 inarg->read_flags |= FUSE_READ_LOCKOWNER;
615 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
616 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400617
618 if (io->async)
619 return fuse_async_req_send(fc, req, count, io);
620
Tejun Heob93f8582008-11-26 12:03:55 +0100621 fuse_request_send(fc, req);
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800622 return req->out.args[0].size;
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700623}
624
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700625static void fuse_read_update_size(struct inode *inode, loff_t size,
626 u64 attr_ver)
627{
628 struct fuse_conn *fc = get_fuse_conn(inode);
629 struct fuse_inode *fi = get_fuse_inode(inode);
630
631 spin_lock(&fc->lock);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +0400632 if (attr_ver == fi->attr_version && size < inode->i_size &&
633 !test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700634 fi->attr_version = ++fc->attr_version;
635 i_size_write(inode, size);
636 }
637 spin_unlock(&fc->lock);
638}
639
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700640static int fuse_readpage(struct file *file, struct page *page)
641{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400642 struct fuse_io_priv io = { .async = 0, .file = file };
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700643 struct inode *inode = page->mapping->host;
644 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800645 struct fuse_req *req;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700646 size_t num_read;
647 loff_t pos = page_offset(page);
648 size_t count = PAGE_CACHE_SIZE;
649 u64 attr_ver;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800650 int err;
651
652 err = -EIO;
653 if (is_bad_inode(inode))
654 goto out;
655
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700656 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300657 * Page writeback can extend beyond the lifetime of the
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700658 * page-cache page, so make sure we read a properly synced
659 * page.
660 */
661 fuse_wait_on_page_writeback(inode, page->index);
662
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400663 req = fuse_get_req(fc, 1);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700664 err = PTR_ERR(req);
665 if (IS_ERR(req))
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700666 goto out;
667
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700668 attr_ver = fuse_get_attr_version(fc);
669
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700670 req->out.page_zeroing = 1;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200671 req->out.argpages = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700672 req->num_pages = 1;
673 req->pages[0] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400674 req->page_descs[0].length = count;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400675 num_read = fuse_send_read(req, &io, pos, count, NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700676 err = req->out.h.error;
677 fuse_put_request(fc, req);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700678
679 if (!err) {
680 /*
681 * Short read means EOF. If file size is larger, truncate it
682 */
683 if (num_read < count)
684 fuse_read_update_size(inode, pos + num_read, attr_ver);
685
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700686 SetPageUptodate(page);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700687 }
688
Miklos Szeredib36c31b2005-09-09 13:10:38 -0700689 fuse_invalidate_attr(inode); /* atime changed */
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700690 out:
691 unlock_page(page);
692 return err;
693}
694
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800695static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredidb50b962005-09-09 13:10:33 -0700696{
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800697 int i;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700698 size_t count = req->misc.read.in.size;
699 size_t num_read = req->out.args[0].size;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200700 struct address_space *mapping = NULL;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800701
Miklos Szeredice534fb2010-05-25 15:06:07 +0200702 for (i = 0; mapping == NULL && i < req->num_pages; i++)
703 mapping = req->pages[i]->mapping;
704
705 if (mapping) {
706 struct inode *inode = mapping->host;
707
708 /*
709 * Short read means EOF. If file size is larger, truncate it
710 */
711 if (!req->out.h.error && num_read < count) {
712 loff_t pos;
713
714 pos = page_offset(req->pages[0]) + num_read;
715 fuse_read_update_size(inode, pos,
716 req->misc.read.attr_ver);
717 }
718 fuse_invalidate_attr(inode); /* atime changed */
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700719 }
720
Miklos Szeredidb50b962005-09-09 13:10:33 -0700721 for (i = 0; i < req->num_pages; i++) {
722 struct page *page = req->pages[i];
723 if (!req->out.h.error)
724 SetPageUptodate(page);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800725 else
726 SetPageError(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700727 unlock_page(page);
Miklos Szeredib5dd3282010-05-25 15:06:06 +0200728 page_cache_release(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700729 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700730 if (req->ff)
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100731 fuse_file_put(req->ff, false);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800732}
733
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200734static void fuse_send_readpages(struct fuse_req *req, struct file *file)
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800735{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200736 struct fuse_file *ff = file->private_data;
737 struct fuse_conn *fc = ff->fc;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800738 loff_t pos = page_offset(req->pages[0]);
739 size_t count = req->num_pages << PAGE_CACHE_SHIFT;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200740
741 req->out.argpages = 1;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800742 req->out.page_zeroing = 1;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200743 req->out.page_replace = 1;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200744 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700745 req->misc.read.attr_ver = fuse_get_attr_version(fc);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800746 if (fc->async_read) {
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700747 req->ff = fuse_file_get(ff);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800748 req->end = fuse_readpages_end;
Tejun Heob93f8582008-11-26 12:03:55 +0100749 fuse_request_send_background(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800750 } else {
Tejun Heob93f8582008-11-26 12:03:55 +0100751 fuse_request_send(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800752 fuse_readpages_end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100753 fuse_put_request(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800754 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700755}
756
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700757struct fuse_fill_data {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700758 struct fuse_req *req;
Miklos Szeredia6643092007-11-28 16:22:00 -0800759 struct file *file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700760 struct inode *inode;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400761 unsigned nr_pages;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700762};
763
764static int fuse_readpages_fill(void *_data, struct page *page)
765{
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700766 struct fuse_fill_data *data = _data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700767 struct fuse_req *req = data->req;
768 struct inode *inode = data->inode;
769 struct fuse_conn *fc = get_fuse_conn(inode);
770
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700771 fuse_wait_on_page_writeback(inode, page->index);
772
Miklos Szeredidb50b962005-09-09 13:10:33 -0700773 if (req->num_pages &&
774 (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
775 (req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_read ||
776 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400777 int nr_alloc = min_t(unsigned, data->nr_pages,
778 FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200779 fuse_send_readpages(req, data->file);
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400780 if (fc->async_read)
781 req = fuse_get_req_for_background(fc, nr_alloc);
782 else
783 req = fuse_get_req(fc, nr_alloc);
784
785 data->req = req;
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700786 if (IS_ERR(req)) {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700787 unlock_page(page);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700788 return PTR_ERR(req);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700789 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700790 }
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400791
792 if (WARN_ON(req->num_pages >= req->max_pages)) {
793 fuse_put_request(fc, req);
794 return -EIO;
795 }
796
Miklos Szeredib5dd3282010-05-25 15:06:06 +0200797 page_cache_get(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700798 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400799 req->page_descs[req->num_pages].length = PAGE_SIZE;
Miklos Szeredi1729a162008-11-26 12:03:54 +0100800 req->num_pages++;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400801 data->nr_pages--;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700802 return 0;
803}
804
805static int fuse_readpages(struct file *file, struct address_space *mapping,
806 struct list_head *pages, unsigned nr_pages)
807{
808 struct inode *inode = mapping->host;
809 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700810 struct fuse_fill_data data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700811 int err;
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400812 int nr_alloc = min_t(unsigned, nr_pages, FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800813
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700814 err = -EIO;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800815 if (is_bad_inode(inode))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800816 goto out;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800817
Miklos Szeredia6643092007-11-28 16:22:00 -0800818 data.file = file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700819 data.inode = inode;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400820 if (fc->async_read)
821 data.req = fuse_get_req_for_background(fc, nr_alloc);
822 else
823 data.req = fuse_get_req(fc, nr_alloc);
Maxim Patlasovf8dbdf82012-10-26 19:48:51 +0400824 data.nr_pages = nr_pages;
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700825 err = PTR_ERR(data.req);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700826 if (IS_ERR(data.req))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800827 goto out;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700828
829 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700830 if (!err) {
831 if (data.req->num_pages)
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200832 fuse_send_readpages(data.req, file);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700833 else
834 fuse_put_request(fc, data.req);
835 }
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800836out:
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700837 return err;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700838}
839
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800840static ssize_t fuse_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
841 unsigned long nr_segs, loff_t pos)
842{
843 struct inode *inode = iocb->ki_filp->f_mapping->host;
Brian Fostera8894272012-07-16 15:23:50 -0400844 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800845
Brian Fostera8894272012-07-16 15:23:50 -0400846 /*
847 * In auto invalidate mode, always update attributes on read.
848 * Otherwise, only update if we attempt to read past EOF (to ensure
849 * i_size is up to date).
850 */
851 if (fc->auto_inval_data ||
852 (pos + iov_length(iov, nr_segs) > i_size_read(inode))) {
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800853 int err;
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800854 err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
855 if (err)
856 return err;
857 }
858
859 return generic_file_aio_read(iocb, iov, nr_segs, pos);
860}
861
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200862static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200863 loff_t pos, size_t count)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700864{
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700865 struct fuse_write_in *inarg = &req->misc.write.in;
866 struct fuse_write_out *outarg = &req->misc.write.out;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700867
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700868 inarg->fh = ff->fh;
869 inarg->offset = pos;
870 inarg->size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700871 req->in.h.opcode = FUSE_WRITE;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200872 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700873 req->in.numargs = 2;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200874 if (ff->fc->minor < 9)
Miklos Szeredif3332112007-10-18 03:07:04 -0700875 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
876 else
877 req->in.args[0].size = sizeof(struct fuse_write_in);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700878 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700879 req->in.args[1].size = count;
880 req->out.numargs = 1;
881 req->out.args[0].size = sizeof(struct fuse_write_out);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700882 req->out.args[0].value = outarg;
883}
884
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400885static size_t fuse_send_write(struct fuse_req *req, struct fuse_io_priv *io,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200886 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700887{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400888 struct file *file = io->file;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200889 struct fuse_file *ff = file->private_data;
890 struct fuse_conn *fc = ff->fc;
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200891 struct fuse_write_in *inarg = &req->misc.write.in;
892
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200893 fuse_write_fill(req, ff, pos, count);
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200894 inarg->flags = file->f_flags;
Miklos Szeredif3332112007-10-18 03:07:04 -0700895 if (owner != NULL) {
Miklos Szeredif3332112007-10-18 03:07:04 -0700896 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
897 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
898 }
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400899
900 if (io->async)
901 return fuse_async_req_send(fc, req, count, io);
902
Tejun Heob93f8582008-11-26 12:03:55 +0100903 fuse_request_send(fc, req);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700904 return req->misc.write.out.size;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700905}
906
Miklos Szeredia1d75f22010-07-12 14:41:40 +0200907void fuse_write_update_size(struct inode *inode, loff_t pos)
Miklos Szeredi854512e2008-04-30 00:54:41 -0700908{
909 struct fuse_conn *fc = get_fuse_conn(inode);
910 struct fuse_inode *fi = get_fuse_inode(inode);
911
912 spin_lock(&fc->lock);
913 fi->attr_version = ++fc->attr_version;
914 if (pos > inode->i_size)
915 i_size_write(inode, pos);
916 spin_unlock(&fc->lock);
917}
918
Nick Pigginea9b9902008-04-30 00:54:42 -0700919static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
920 struct inode *inode, loff_t pos,
921 size_t count)
922{
923 size_t res;
924 unsigned offset;
925 unsigned i;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400926 struct fuse_io_priv io = { .async = 0, .file = file };
Nick Pigginea9b9902008-04-30 00:54:42 -0700927
928 for (i = 0; i < req->num_pages; i++)
929 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
930
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400931 res = fuse_send_write(req, &io, pos, count, NULL);
Nick Pigginea9b9902008-04-30 00:54:42 -0700932
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400933 offset = req->page_descs[0].offset;
Nick Pigginea9b9902008-04-30 00:54:42 -0700934 count = res;
935 for (i = 0; i < req->num_pages; i++) {
936 struct page *page = req->pages[i];
937
938 if (!req->out.h.error && !offset && count >= PAGE_CACHE_SIZE)
939 SetPageUptodate(page);
940
941 if (count > PAGE_CACHE_SIZE - offset)
942 count -= PAGE_CACHE_SIZE - offset;
943 else
944 count = 0;
945 offset = 0;
946
947 unlock_page(page);
948 page_cache_release(page);
949 }
950
951 return res;
952}
953
954static ssize_t fuse_fill_write_pages(struct fuse_req *req,
955 struct address_space *mapping,
956 struct iov_iter *ii, loff_t pos)
957{
958 struct fuse_conn *fc = get_fuse_conn(mapping->host);
959 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
960 size_t count = 0;
961 int err;
962
Miklos Szeredif4975c62009-04-02 14:25:34 +0200963 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400964 req->page_descs[0].offset = offset;
Nick Pigginea9b9902008-04-30 00:54:42 -0700965
966 do {
967 size_t tmp;
968 struct page *page;
969 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
970 size_t bytes = min_t(size_t, PAGE_CACHE_SIZE - offset,
971 iov_iter_count(ii));
972
973 bytes = min_t(size_t, bytes, fc->max_write - count);
974
975 again:
976 err = -EFAULT;
977 if (iov_iter_fault_in_readable(ii, bytes))
978 break;
979
980 err = -ENOMEM;
Nick Piggin54566b22009-01-04 12:00:53 -0800981 page = grab_cache_page_write_begin(mapping, index, 0);
Nick Pigginea9b9902008-04-30 00:54:42 -0700982 if (!page)
983 break;
984
anfei zhou931e80e2010-02-02 13:44:02 -0800985 if (mapping_writably_mapped(mapping))
986 flush_dcache_page(page);
987
Nick Pigginea9b9902008-04-30 00:54:42 -0700988 pagefault_disable();
989 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
990 pagefault_enable();
991 flush_dcache_page(page);
992
Johannes Weiner478e0842011-07-25 22:35:35 +0200993 mark_page_accessed(page);
994
Nick Pigginea9b9902008-04-30 00:54:42 -0700995 if (!tmp) {
996 unlock_page(page);
997 page_cache_release(page);
998 bytes = min(bytes, iov_iter_single_seg_count(ii));
999 goto again;
1000 }
1001
1002 err = 0;
1003 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001004 req->page_descs[req->num_pages].length = tmp;
Nick Pigginea9b9902008-04-30 00:54:42 -07001005 req->num_pages++;
1006
1007 iov_iter_advance(ii, tmp);
1008 count += tmp;
1009 pos += tmp;
1010 offset += tmp;
1011 if (offset == PAGE_CACHE_SIZE)
1012 offset = 0;
1013
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -07001014 if (!fc->big_writes)
1015 break;
Nick Pigginea9b9902008-04-30 00:54:42 -07001016 } while (iov_iter_count(ii) && count < fc->max_write &&
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001017 req->num_pages < req->max_pages && offset == 0);
Nick Pigginea9b9902008-04-30 00:54:42 -07001018
1019 return count > 0 ? count : err;
1020}
1021
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001022static inline unsigned fuse_wr_pages(loff_t pos, size_t len)
1023{
1024 return min_t(unsigned,
1025 ((pos + len - 1) >> PAGE_CACHE_SHIFT) -
1026 (pos >> PAGE_CACHE_SHIFT) + 1,
1027 FUSE_MAX_PAGES_PER_REQ);
1028}
1029
Nick Pigginea9b9902008-04-30 00:54:42 -07001030static ssize_t fuse_perform_write(struct file *file,
1031 struct address_space *mapping,
1032 struct iov_iter *ii, loff_t pos)
1033{
1034 struct inode *inode = mapping->host;
1035 struct fuse_conn *fc = get_fuse_conn(inode);
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001036 struct fuse_inode *fi = get_fuse_inode(inode);
Nick Pigginea9b9902008-04-30 00:54:42 -07001037 int err = 0;
1038 ssize_t res = 0;
1039
1040 if (is_bad_inode(inode))
1041 return -EIO;
1042
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001043 if (inode->i_size < pos + iov_iter_count(ii))
1044 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1045
Nick Pigginea9b9902008-04-30 00:54:42 -07001046 do {
1047 struct fuse_req *req;
1048 ssize_t count;
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001049 unsigned nr_pages = fuse_wr_pages(pos, iov_iter_count(ii));
Nick Pigginea9b9902008-04-30 00:54:42 -07001050
Maxim Patlasovd07f09f2012-10-26 19:49:00 +04001051 req = fuse_get_req(fc, nr_pages);
Nick Pigginea9b9902008-04-30 00:54:42 -07001052 if (IS_ERR(req)) {
1053 err = PTR_ERR(req);
1054 break;
1055 }
1056
1057 count = fuse_fill_write_pages(req, mapping, ii, pos);
1058 if (count <= 0) {
1059 err = count;
1060 } else {
1061 size_t num_written;
1062
1063 num_written = fuse_send_write_pages(req, file, inode,
1064 pos, count);
1065 err = req->out.h.error;
1066 if (!err) {
1067 res += num_written;
1068 pos += num_written;
1069
1070 /* break out of the loop on short write */
1071 if (num_written != count)
1072 err = -EIO;
1073 }
1074 }
1075 fuse_put_request(fc, req);
1076 } while (!err && iov_iter_count(ii));
1077
1078 if (res > 0)
1079 fuse_write_update_size(inode, pos);
1080
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +04001081 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
Nick Pigginea9b9902008-04-30 00:54:42 -07001082 fuse_invalidate_attr(inode);
1083
1084 return res > 0 ? res : err;
1085}
1086
1087static ssize_t fuse_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
1088 unsigned long nr_segs, loff_t pos)
1089{
1090 struct file *file = iocb->ki_filp;
1091 struct address_space *mapping = file->f_mapping;
1092 size_t count = 0;
Anand Avati4273b792012-02-17 12:46:25 -05001093 size_t ocount = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001094 ssize_t written = 0;
Anand Avati4273b792012-02-17 12:46:25 -05001095 ssize_t written_buffered = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001096 struct inode *inode = mapping->host;
1097 ssize_t err;
1098 struct iov_iter i;
Anand Avati4273b792012-02-17 12:46:25 -05001099 loff_t endbyte = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -07001100
1101 WARN_ON(iocb->ki_pos != pos);
1102
Anand Avati4273b792012-02-17 12:46:25 -05001103 ocount = 0;
1104 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
Nick Pigginea9b9902008-04-30 00:54:42 -07001105 if (err)
1106 return err;
1107
Anand Avati4273b792012-02-17 12:46:25 -05001108 count = ocount;
Nick Pigginea9b9902008-04-30 00:54:42 -07001109 mutex_lock(&inode->i_mutex);
Nick Pigginea9b9902008-04-30 00:54:42 -07001110
1111 /* We can write back this queue in page reclaim */
1112 current->backing_dev_info = mapping->backing_dev_info;
1113
1114 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1115 if (err)
1116 goto out;
1117
1118 if (count == 0)
1119 goto out;
1120
Miklos Szeredi2f1936b2008-06-24 16:50:14 +02001121 err = file_remove_suid(file);
Nick Pigginea9b9902008-04-30 00:54:42 -07001122 if (err)
1123 goto out;
1124
Josef Bacikc3b2da32012-03-26 09:59:21 -04001125 err = file_update_time(file);
1126 if (err)
1127 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001128
Anand Avati4273b792012-02-17 12:46:25 -05001129 if (file->f_flags & O_DIRECT) {
1130 written = generic_file_direct_write(iocb, iov, &nr_segs,
1131 pos, &iocb->ki_pos,
1132 count, ocount);
1133 if (written < 0 || written == count)
1134 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001135
Anand Avati4273b792012-02-17 12:46:25 -05001136 pos += written;
1137 count -= written;
1138
1139 iov_iter_init(&i, iov, nr_segs, count, written);
1140 written_buffered = fuse_perform_write(file, mapping, &i, pos);
1141 if (written_buffered < 0) {
1142 err = written_buffered;
1143 goto out;
1144 }
1145 endbyte = pos + written_buffered - 1;
1146
1147 err = filemap_write_and_wait_range(file->f_mapping, pos,
1148 endbyte);
1149 if (err)
1150 goto out;
1151
1152 invalidate_mapping_pages(file->f_mapping,
1153 pos >> PAGE_CACHE_SHIFT,
1154 endbyte >> PAGE_CACHE_SHIFT);
1155
1156 written += written_buffered;
1157 iocb->ki_pos = pos + written_buffered;
1158 } else {
1159 iov_iter_init(&i, iov, nr_segs, count, 0);
1160 written = fuse_perform_write(file, mapping, &i, pos);
1161 if (written >= 0)
1162 iocb->ki_pos = pos + written;
1163 }
Nick Pigginea9b9902008-04-30 00:54:42 -07001164out:
1165 current->backing_dev_info = NULL;
1166 mutex_unlock(&inode->i_mutex);
1167
1168 return written ? written : err;
1169}
1170
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001171static inline void fuse_page_descs_length_init(struct fuse_req *req,
1172 unsigned index, unsigned nr_pages)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001173{
1174 int i;
1175
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001176 for (i = index; i < index + nr_pages; i++)
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001177 req->page_descs[i].length = PAGE_SIZE -
1178 req->page_descs[i].offset;
1179}
1180
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001181static inline unsigned long fuse_get_user_addr(const struct iov_iter *ii)
1182{
1183 return (unsigned long)ii->iov->iov_base + ii->iov_offset;
1184}
1185
1186static inline size_t fuse_get_frag_size(const struct iov_iter *ii,
1187 size_t max_size)
1188{
1189 return min(iov_iter_single_seg_count(ii), max_size);
1190}
1191
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001192static int fuse_get_user_pages(struct fuse_req *req, struct iov_iter *ii,
Miklos Szeredice60a2f2009-04-09 17:37:52 +02001193 size_t *nbytesp, int write)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001194{
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001195 size_t nbytes = 0; /* # bytes already packed in req */
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001196
Miklos Szeredif4975c62009-04-02 14:25:34 +02001197 /* Special case for kernel I/O: can copy directly into the buffer */
1198 if (segment_eq(get_fs(), KERNEL_DS)) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001199 unsigned long user_addr = fuse_get_user_addr(ii);
1200 size_t frag_size = fuse_get_frag_size(ii, *nbytesp);
1201
Miklos Szeredif4975c62009-04-02 14:25:34 +02001202 if (write)
1203 req->in.args[1].value = (void *) user_addr;
1204 else
1205 req->out.args[0].value = (void *) user_addr;
1206
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001207 iov_iter_advance(ii, frag_size);
1208 *nbytesp = frag_size;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001209 return 0;
1210 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001211
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001212 while (nbytes < *nbytesp && req->num_pages < req->max_pages) {
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001213 unsigned npages;
1214 unsigned long user_addr = fuse_get_user_addr(ii);
1215 unsigned offset = user_addr & ~PAGE_MASK;
1216 size_t frag_size = fuse_get_frag_size(ii, *nbytesp - nbytes);
1217 int ret;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001218
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001219 unsigned n = req->max_pages - req->num_pages;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001220 frag_size = min_t(size_t, frag_size, n << PAGE_SHIFT);
1221
1222 npages = (frag_size + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1223 npages = clamp(npages, 1U, n);
1224
1225 ret = get_user_pages_fast(user_addr, npages, !write,
1226 &req->pages[req->num_pages]);
1227 if (ret < 0)
1228 return ret;
1229
1230 npages = ret;
1231 frag_size = min_t(size_t, frag_size,
1232 (npages << PAGE_SHIFT) - offset);
1233 iov_iter_advance(ii, frag_size);
1234
1235 req->page_descs[req->num_pages].offset = offset;
1236 fuse_page_descs_length_init(req, req->num_pages, npages);
1237
1238 req->num_pages += npages;
1239 req->page_descs[req->num_pages - 1].length -=
1240 (npages << PAGE_SHIFT) - offset - frag_size;
1241
1242 nbytes += frag_size;
1243 }
Miklos Szeredif4975c62009-04-02 14:25:34 +02001244
1245 if (write)
1246 req->in.argpages = 1;
1247 else
1248 req->out.argpages = 1;
1249
Maxim Patlasov7c190c82012-10-26 19:50:29 +04001250 *nbytesp = nbytes;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001251
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001252 return 0;
1253}
1254
Maxim Patlasov5565a9d2012-10-26 19:50:36 +04001255static inline int fuse_iter_npages(const struct iov_iter *ii_p)
1256{
1257 struct iov_iter ii = *ii_p;
1258 int npages = 0;
1259
1260 while (iov_iter_count(&ii) && npages < FUSE_MAX_PAGES_PER_REQ) {
1261 unsigned long user_addr = fuse_get_user_addr(&ii);
1262 unsigned offset = user_addr & ~PAGE_MASK;
1263 size_t frag_size = iov_iter_single_seg_count(&ii);
1264
1265 npages += (frag_size + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1266 iov_iter_advance(&ii, frag_size);
1267 }
1268
1269 return min(npages, FUSE_MAX_PAGES_PER_REQ);
1270}
1271
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001272ssize_t fuse_direct_io(struct fuse_io_priv *io, const struct iovec *iov,
Miklos Szeredifb05f412012-11-10 16:55:56 +01001273 unsigned long nr_segs, size_t count, loff_t *ppos,
1274 int write)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001275{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001276 struct file *file = io->file;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001277 struct fuse_file *ff = file->private_data;
1278 struct fuse_conn *fc = ff->fc;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001279 size_t nmax = write ? fc->max_write : fc->max_read;
1280 loff_t pos = *ppos;
1281 ssize_t res = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001282 struct fuse_req *req;
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001283 struct iov_iter ii;
1284
1285 iov_iter_init(&ii, iov, nr_segs, count, 0);
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001286
Brian Fosterde82b922013-05-14 11:25:39 -04001287 if (io->async)
1288 req = fuse_get_req_for_background(fc, fuse_iter_npages(&ii));
1289 else
1290 req = fuse_get_req(fc, fuse_iter_npages(&ii));
Miklos Szeredice1d5a42006-04-10 22:54:58 -07001291 if (IS_ERR(req))
1292 return PTR_ERR(req);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001293
1294 while (count) {
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001295 size_t nres;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001296 fl_owner_t owner = current->files;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001297 size_t nbytes = min(count, nmax);
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001298 int err = fuse_get_user_pages(req, &ii, &nbytes, write);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001299 if (err) {
1300 res = err;
1301 break;
1302 }
Miklos Szeredif4975c62009-04-02 14:25:34 +02001303
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001304 if (write)
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001305 nres = fuse_send_write(req, io, pos, nbytes, owner);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001306 else
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001307 nres = fuse_send_read(req, io, pos, nbytes, owner);
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001308
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001309 if (!io->async)
1310 fuse_release_user_pages(req, !write);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001311 if (req->out.h.error) {
1312 if (!res)
1313 res = req->out.h.error;
1314 break;
1315 } else if (nres > nbytes) {
1316 res = -EIO;
1317 break;
1318 }
1319 count -= nres;
1320 res += nres;
1321 pos += nres;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001322 if (nres != nbytes)
1323 break;
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001324 if (count) {
1325 fuse_put_request(fc, req);
Brian Fosterde82b922013-05-14 11:25:39 -04001326 if (io->async)
1327 req = fuse_get_req_for_background(fc,
1328 fuse_iter_npages(&ii));
1329 else
1330 req = fuse_get_req(fc, fuse_iter_npages(&ii));
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001331 if (IS_ERR(req))
1332 break;
1333 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001334 }
Anand V. Avatif60311d2009-10-22 06:24:52 -07001335 if (!IS_ERR(req))
1336 fuse_put_request(fc, req);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001337 if (res > 0)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001338 *ppos = pos;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001339
1340 return res;
1341}
Tejun Heo08cbf542009-04-14 10:54:53 +09001342EXPORT_SYMBOL_GPL(fuse_direct_io);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001343
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001344static ssize_t __fuse_direct_read(struct fuse_io_priv *io,
1345 const struct iovec *iov,
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04001346 unsigned long nr_segs, loff_t *ppos,
1347 size_t count)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001348{
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001349 ssize_t res;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001350 struct file *file = io->file;
Al Viro6131ffa2013-02-27 16:59:05 -05001351 struct inode *inode = file_inode(file);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001352
1353 if (is_bad_inode(inode))
1354 return -EIO;
1355
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04001356 res = fuse_direct_io(io, iov, nr_segs, count, ppos, 0);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001357
1358 fuse_invalidate_attr(inode);
1359
1360 return res;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001361}
1362
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001363static ssize_t fuse_direct_read(struct file *file, char __user *buf,
1364 size_t count, loff_t *ppos)
1365{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001366 struct fuse_io_priv io = { .async = 0, .file = file };
Miklos Szeredifb05f412012-11-10 16:55:56 +01001367 struct iovec iov = { .iov_base = buf, .iov_len = count };
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04001368 return __fuse_direct_read(&io, &iov, 1, ppos, count);
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001369}
1370
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001371static ssize_t __fuse_direct_write(struct fuse_io_priv *io,
1372 const struct iovec *iov,
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001373 unsigned long nr_segs, loff_t *ppos)
Anand Avati4273b792012-02-17 12:46:25 -05001374{
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001375 struct file *file = io->file;
Al Viro6131ffa2013-02-27 16:59:05 -05001376 struct inode *inode = file_inode(file);
Maxim Patlasovb98d0232012-10-26 19:50:15 +04001377 size_t count = iov_length(iov, nr_segs);
Anand Avati4273b792012-02-17 12:46:25 -05001378 ssize_t res;
1379
1380 res = generic_write_checks(file, ppos, &count, 0);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04001381 if (!res)
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001382 res = fuse_direct_io(io, iov, nr_segs, count, ppos, 1);
Anand Avati4273b792012-02-17 12:46:25 -05001383
1384 fuse_invalidate_attr(inode);
1385
1386 return res;
1387}
1388
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001389static ssize_t fuse_direct_write(struct file *file, const char __user *buf,
1390 size_t count, loff_t *ppos)
1391{
Miklos Szeredifb05f412012-11-10 16:55:56 +01001392 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = count };
Al Viro6131ffa2013-02-27 16:59:05 -05001393 struct inode *inode = file_inode(file);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001394 ssize_t res;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001395 struct fuse_io_priv io = { .async = 0, .file = file };
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001396
1397 if (is_bad_inode(inode))
1398 return -EIO;
1399
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001400 /* Don't allow parallel writes to the same file */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001401 mutex_lock(&inode->i_mutex);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04001402 res = __fuse_direct_write(&io, &iov, 1, ppos);
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04001403 if (res > 0)
1404 fuse_write_update_size(inode, *ppos);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001405 mutex_unlock(&inode->i_mutex);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001406
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001407 return res;
1408}
1409
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001410static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001411{
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001412 __free_page(req->pages[0]);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +01001413 fuse_file_put(req->ff, false);
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001414}
1415
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001416static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001417{
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001418 struct inode *inode = req->inode;
1419 struct fuse_inode *fi = get_fuse_inode(inode);
1420 struct backing_dev_info *bdi = inode->i_mapping->backing_dev_info;
1421
1422 list_del(&req->writepages_entry);
1423 dec_bdi_stat(bdi, BDI_WRITEBACK);
1424 dec_zone_page_state(req->pages[0], NR_WRITEBACK_TEMP);
1425 bdi_writeout_inc(bdi);
1426 wake_up(&fi->page_waitq);
1427}
1428
1429/* Called under fc->lock, may release and reacquire it */
1430static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001431__releases(fc->lock)
1432__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001433{
1434 struct fuse_inode *fi = get_fuse_inode(req->inode);
1435 loff_t size = i_size_read(req->inode);
1436 struct fuse_write_in *inarg = &req->misc.write.in;
1437
1438 if (!fc->connected)
1439 goto out_free;
1440
1441 if (inarg->offset + PAGE_CACHE_SIZE <= size) {
1442 inarg->size = PAGE_CACHE_SIZE;
1443 } else if (inarg->offset < size) {
1444 inarg->size = size & (PAGE_CACHE_SIZE - 1);
1445 } else {
1446 /* Got truncated off completely */
1447 goto out_free;
1448 }
1449
1450 req->in.args[1].size = inarg->size;
1451 fi->writectr++;
Tejun Heob93f8582008-11-26 12:03:55 +01001452 fuse_request_send_background_locked(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001453 return;
1454
1455 out_free:
1456 fuse_writepage_finish(fc, req);
1457 spin_unlock(&fc->lock);
1458 fuse_writepage_free(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +01001459 fuse_put_request(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001460 spin_lock(&fc->lock);
1461}
1462
1463/*
1464 * If fi->writectr is positive (no truncate or fsync going on) send
1465 * all queued writepage requests.
1466 *
1467 * Called with fc->lock
1468 */
1469void fuse_flush_writepages(struct inode *inode)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001470__releases(fc->lock)
1471__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001472{
1473 struct fuse_conn *fc = get_fuse_conn(inode);
1474 struct fuse_inode *fi = get_fuse_inode(inode);
1475 struct fuse_req *req;
1476
1477 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1478 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1479 list_del_init(&req->list);
1480 fuse_send_writepage(fc, req);
1481 }
1482}
1483
1484static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1485{
1486 struct inode *inode = req->inode;
1487 struct fuse_inode *fi = get_fuse_inode(inode);
1488
1489 mapping_set_error(inode->i_mapping, req->out.h.error);
1490 spin_lock(&fc->lock);
1491 fi->writectr--;
1492 fuse_writepage_finish(fc, req);
1493 spin_unlock(&fc->lock);
1494 fuse_writepage_free(fc, req);
1495}
1496
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001497static struct fuse_file *fuse_write_file(struct fuse_conn *fc,
1498 struct fuse_inode *fi)
1499{
1500 struct fuse_file *ff;
1501
1502 spin_lock(&fc->lock);
1503 BUG_ON(list_empty(&fi->write_files));
1504 ff = list_entry(fi->write_files.next, struct fuse_file, write_entry);
1505 fuse_file_get(ff);
1506 spin_unlock(&fc->lock);
1507
1508 return ff;
1509}
1510
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001511static int fuse_writepage_locked(struct page *page)
1512{
1513 struct address_space *mapping = page->mapping;
1514 struct inode *inode = mapping->host;
1515 struct fuse_conn *fc = get_fuse_conn(inode);
1516 struct fuse_inode *fi = get_fuse_inode(inode);
1517 struct fuse_req *req;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001518 struct page *tmp_page;
1519
1520 set_page_writeback(page);
1521
Maxim Patlasov4250c062012-10-26 19:48:07 +04001522 req = fuse_request_alloc_nofs(1);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001523 if (!req)
1524 goto err;
1525
Maxim Patlasov8b41e672013-03-21 18:02:04 +04001526 req->background = 1; /* writeback always goes to bg_queue */
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001527 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1528 if (!tmp_page)
1529 goto err_free;
1530
Pavel Emelyanovadcadfa2013-06-29 21:42:20 +04001531 req->ff = fuse_write_file(fc, fi);
1532 fuse_write_fill(req, req->ff, page_offset(page), 0);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001533
1534 copy_highpage(tmp_page, page);
Miklos Szeredi2d698b02009-04-28 16:56:36 +02001535 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001536 req->in.argpages = 1;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001537 req->num_pages = 1;
1538 req->pages[0] = tmp_page;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001539 req->page_descs[0].offset = 0;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001540 req->page_descs[0].length = PAGE_SIZE;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001541 req->end = fuse_writepage_end;
1542 req->inode = inode;
1543
1544 inc_bdi_stat(mapping->backing_dev_info, BDI_WRITEBACK);
1545 inc_zone_page_state(tmp_page, NR_WRITEBACK_TEMP);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001546
1547 spin_lock(&fc->lock);
1548 list_add(&req->writepages_entry, &fi->writepages);
1549 list_add_tail(&req->list, &fi->queued_writes);
1550 fuse_flush_writepages(inode);
1551 spin_unlock(&fc->lock);
1552
Maxim Patlasov4a4ac4e2013-08-12 20:39:30 +04001553 end_page_writeback(page);
1554
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001555 return 0;
1556
1557err_free:
1558 fuse_request_free(req);
1559err:
1560 end_page_writeback(page);
1561 return -ENOMEM;
1562}
1563
1564static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1565{
1566 int err;
1567
1568 err = fuse_writepage_locked(page);
1569 unlock_page(page);
1570
1571 return err;
1572}
1573
1574static int fuse_launder_page(struct page *page)
1575{
1576 int err = 0;
1577 if (clear_page_dirty_for_io(page)) {
1578 struct inode *inode = page->mapping->host;
1579 err = fuse_writepage_locked(page);
1580 if (!err)
1581 fuse_wait_on_page_writeback(inode, page->index);
1582 }
1583 return err;
1584}
1585
1586/*
1587 * Write back dirty pages now, because there may not be any suitable
1588 * open files later
1589 */
1590static void fuse_vma_close(struct vm_area_struct *vma)
1591{
1592 filemap_write_and_wait(vma->vm_file->f_mapping);
1593}
1594
1595/*
1596 * Wait for writeback against this page to complete before allowing it
1597 * to be marked dirty again, and hence written back again, possibly
1598 * before the previous writepage completed.
1599 *
1600 * Block here, instead of in ->writepage(), so that the userspace fs
1601 * can only block processes actually operating on the filesystem.
1602 *
1603 * Otherwise unprivileged userspace fs would be able to block
1604 * unrelated:
1605 *
1606 * - page migration
1607 * - sync(2)
1608 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
1609 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07001610static int fuse_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001611{
Nick Pigginc2ec1752009-03-31 15:23:21 -07001612 struct page *page = vmf->page;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001613 /*
1614 * Don't use page->mapping as it may become NULL from a
1615 * concurrent truncate.
1616 */
1617 struct inode *inode = vma->vm_file->f_mapping->host;
1618
1619 fuse_wait_on_page_writeback(inode, page->index);
1620 return 0;
1621}
1622
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001623static const struct vm_operations_struct fuse_file_vm_ops = {
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001624 .close = fuse_vma_close,
1625 .fault = filemap_fault,
1626 .page_mkwrite = fuse_page_mkwrite,
Konstantin Khlebnikov0b173bc2012-10-08 16:28:46 -07001627 .remap_pages = generic_file_remap_pages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001628};
1629
1630static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
1631{
1632 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE)) {
Al Viro6131ffa2013-02-27 16:59:05 -05001633 struct inode *inode = file_inode(file);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001634 struct fuse_conn *fc = get_fuse_conn(inode);
1635 struct fuse_inode *fi = get_fuse_inode(inode);
1636 struct fuse_file *ff = file->private_data;
1637 /*
1638 * file may be written through mmap, so chain it onto the
1639 * inodes's write_file list
1640 */
1641 spin_lock(&fc->lock);
1642 if (list_empty(&ff->write_entry))
1643 list_add(&ff->write_entry, &fi->write_files);
1644 spin_unlock(&fc->lock);
1645 }
1646 file_accessed(file);
1647 vma->vm_ops = &fuse_file_vm_ops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001648 return 0;
1649}
1650
Miklos Szeredifc280c92009-04-02 14:25:35 +02001651static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
1652{
1653 /* Can't provide the coherency needed for MAP_SHARED */
1654 if (vma->vm_flags & VM_MAYSHARE)
1655 return -ENODEV;
1656
Miklos Szeredi3121bfe2009-04-09 17:37:53 +02001657 invalidate_inode_pages2(file->f_mapping);
1658
Miklos Szeredifc280c92009-04-02 14:25:35 +02001659 return generic_file_mmap(file, vma);
1660}
1661
Miklos Szeredi71421252006-06-25 05:48:52 -07001662static int convert_fuse_file_lock(const struct fuse_file_lock *ffl,
1663 struct file_lock *fl)
1664{
1665 switch (ffl->type) {
1666 case F_UNLCK:
1667 break;
1668
1669 case F_RDLCK:
1670 case F_WRLCK:
1671 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
1672 ffl->end < ffl->start)
1673 return -EIO;
1674
1675 fl->fl_start = ffl->start;
1676 fl->fl_end = ffl->end;
1677 fl->fl_pid = ffl->pid;
1678 break;
1679
1680 default:
1681 return -EIO;
1682 }
1683 fl->fl_type = ffl->type;
1684 return 0;
1685}
1686
1687static void fuse_lk_fill(struct fuse_req *req, struct file *file,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001688 const struct file_lock *fl, int opcode, pid_t pid,
1689 int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07001690{
Al Viro6131ffa2013-02-27 16:59:05 -05001691 struct inode *inode = file_inode(file);
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07001692 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi71421252006-06-25 05:48:52 -07001693 struct fuse_file *ff = file->private_data;
1694 struct fuse_lk_in *arg = &req->misc.lk_in;
1695
1696 arg->fh = ff->fh;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07001697 arg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
Miklos Szeredi71421252006-06-25 05:48:52 -07001698 arg->lk.start = fl->fl_start;
1699 arg->lk.end = fl->fl_end;
1700 arg->lk.type = fl->fl_type;
1701 arg->lk.pid = pid;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001702 if (flock)
1703 arg->lk_flags |= FUSE_LK_FLOCK;
Miklos Szeredi71421252006-06-25 05:48:52 -07001704 req->in.h.opcode = opcode;
1705 req->in.h.nodeid = get_node_id(inode);
1706 req->in.numargs = 1;
1707 req->in.args[0].size = sizeof(*arg);
1708 req->in.args[0].value = arg;
1709}
1710
1711static int fuse_getlk(struct file *file, struct file_lock *fl)
1712{
Al Viro6131ffa2013-02-27 16:59:05 -05001713 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07001714 struct fuse_conn *fc = get_fuse_conn(inode);
1715 struct fuse_req *req;
1716 struct fuse_lk_out outarg;
1717 int err;
1718
Maxim Patlasovb111c8c2012-10-26 19:48:30 +04001719 req = fuse_get_req_nopages(fc);
Miklos Szeredi71421252006-06-25 05:48:52 -07001720 if (IS_ERR(req))
1721 return PTR_ERR(req);
1722
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001723 fuse_lk_fill(req, file, fl, FUSE_GETLK, 0, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07001724 req->out.numargs = 1;
1725 req->out.args[0].size = sizeof(outarg);
1726 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01001727 fuse_request_send(fc, req);
Miklos Szeredi71421252006-06-25 05:48:52 -07001728 err = req->out.h.error;
1729 fuse_put_request(fc, req);
1730 if (!err)
1731 err = convert_fuse_file_lock(&outarg.lk, fl);
1732
1733 return err;
1734}
1735
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001736static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07001737{
Al Viro6131ffa2013-02-27 16:59:05 -05001738 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07001739 struct fuse_conn *fc = get_fuse_conn(inode);
1740 struct fuse_req *req;
1741 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
1742 pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0;
1743 int err;
1744
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001745 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
Miklos Szeredi48e90762008-07-25 01:49:02 -07001746 /* NLM needs asynchronous locks, which we don't support yet */
1747 return -ENOLCK;
1748 }
1749
Miklos Szeredi71421252006-06-25 05:48:52 -07001750 /* Unlock on close is handled by the flush method */
1751 if (fl->fl_flags & FL_CLOSE)
1752 return 0;
1753
Maxim Patlasovb111c8c2012-10-26 19:48:30 +04001754 req = fuse_get_req_nopages(fc);
Miklos Szeredi71421252006-06-25 05:48:52 -07001755 if (IS_ERR(req))
1756 return PTR_ERR(req);
1757
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001758 fuse_lk_fill(req, file, fl, opcode, pid, flock);
Tejun Heob93f8582008-11-26 12:03:55 +01001759 fuse_request_send(fc, req);
Miklos Szeredi71421252006-06-25 05:48:52 -07001760 err = req->out.h.error;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001761 /* locking is restartable */
1762 if (err == -EINTR)
1763 err = -ERESTARTSYS;
Miklos Szeredi71421252006-06-25 05:48:52 -07001764 fuse_put_request(fc, req);
1765 return err;
1766}
1767
1768static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
1769{
Al Viro6131ffa2013-02-27 16:59:05 -05001770 struct inode *inode = file_inode(file);
Miklos Szeredi71421252006-06-25 05:48:52 -07001771 struct fuse_conn *fc = get_fuse_conn(inode);
1772 int err;
1773
Miklos Szeredi48e90762008-07-25 01:49:02 -07001774 if (cmd == F_CANCELLK) {
1775 err = 0;
1776 } else if (cmd == F_GETLK) {
Miklos Szeredi71421252006-06-25 05:48:52 -07001777 if (fc->no_lock) {
Marc Eshel9d6a8c52007-02-21 00:55:18 -05001778 posix_test_lock(file, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07001779 err = 0;
1780 } else
1781 err = fuse_getlk(file, fl);
1782 } else {
1783 if (fc->no_lock)
Miklos Szeredi48e90762008-07-25 01:49:02 -07001784 err = posix_lock_file(file, fl, NULL);
Miklos Szeredi71421252006-06-25 05:48:52 -07001785 else
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001786 err = fuse_setlk(file, fl, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07001787 }
1788 return err;
1789}
1790
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001791static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
1792{
Al Viro6131ffa2013-02-27 16:59:05 -05001793 struct inode *inode = file_inode(file);
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001794 struct fuse_conn *fc = get_fuse_conn(inode);
1795 int err;
1796
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02001797 if (fc->no_flock) {
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001798 err = flock_lock_file_wait(file, fl);
1799 } else {
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02001800 struct fuse_file *ff = file->private_data;
1801
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001802 /* emulate flock with POSIX locks */
1803 fl->fl_owner = (fl_owner_t) file;
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02001804 ff->flock = true;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001805 err = fuse_setlk(file, fl, 1);
1806 }
1807
1808 return err;
1809}
1810
Miklos Szeredib2d22722006-12-06 20:35:51 -08001811static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
1812{
1813 struct inode *inode = mapping->host;
1814 struct fuse_conn *fc = get_fuse_conn(inode);
1815 struct fuse_req *req;
1816 struct fuse_bmap_in inarg;
1817 struct fuse_bmap_out outarg;
1818 int err;
1819
1820 if (!inode->i_sb->s_bdev || fc->no_bmap)
1821 return 0;
1822
Maxim Patlasovb111c8c2012-10-26 19:48:30 +04001823 req = fuse_get_req_nopages(fc);
Miklos Szeredib2d22722006-12-06 20:35:51 -08001824 if (IS_ERR(req))
1825 return 0;
1826
1827 memset(&inarg, 0, sizeof(inarg));
1828 inarg.block = block;
1829 inarg.blocksize = inode->i_sb->s_blocksize;
1830 req->in.h.opcode = FUSE_BMAP;
1831 req->in.h.nodeid = get_node_id(inode);
1832 req->in.numargs = 1;
1833 req->in.args[0].size = sizeof(inarg);
1834 req->in.args[0].value = &inarg;
1835 req->out.numargs = 1;
1836 req->out.args[0].size = sizeof(outarg);
1837 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01001838 fuse_request_send(fc, req);
Miklos Szeredib2d22722006-12-06 20:35:51 -08001839 err = req->out.h.error;
1840 fuse_put_request(fc, req);
1841 if (err == -ENOSYS)
1842 fc->no_bmap = 1;
1843
1844 return err ? 0 : outarg.block;
1845}
1846
Andrew Morton965c8e52012-12-17 15:59:39 -08001847static loff_t fuse_file_llseek(struct file *file, loff_t offset, int whence)
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001848{
1849 loff_t retval;
Al Viro6131ffa2013-02-27 16:59:05 -05001850 struct inode *inode = file_inode(file);
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001851
Miklos Szeredic07c3d12011-12-13 11:58:48 +01001852 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
Andrew Morton965c8e52012-12-17 15:59:39 -08001853 if (whence == SEEK_CUR || whence == SEEK_SET)
1854 return generic_file_llseek(file, offset, whence);
Josef Bacik06222e42011-07-18 13:21:38 -04001855
Miklos Szeredic07c3d12011-12-13 11:58:48 +01001856 mutex_lock(&inode->i_mutex);
1857 retval = fuse_update_attributes(inode, NULL, file, NULL);
1858 if (!retval)
Andrew Morton965c8e52012-12-17 15:59:39 -08001859 retval = generic_file_llseek(file, offset, whence);
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001860 mutex_unlock(&inode->i_mutex);
Miklos Szeredic07c3d12011-12-13 11:58:48 +01001861
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001862 return retval;
1863}
1864
Tejun Heo59efec72008-11-26 12:03:55 +01001865static int fuse_ioctl_copy_user(struct page **pages, struct iovec *iov,
1866 unsigned int nr_segs, size_t bytes, bool to_user)
1867{
1868 struct iov_iter ii;
1869 int page_idx = 0;
1870
1871 if (!bytes)
1872 return 0;
1873
1874 iov_iter_init(&ii, iov, nr_segs, bytes, 0);
1875
1876 while (iov_iter_count(&ii)) {
1877 struct page *page = pages[page_idx++];
1878 size_t todo = min_t(size_t, PAGE_SIZE, iov_iter_count(&ii));
Dan Carpenter4aa0edd2010-05-07 10:28:17 +02001879 void *kaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01001880
Dan Carpenter4aa0edd2010-05-07 10:28:17 +02001881 kaddr = kmap(page);
Tejun Heo59efec72008-11-26 12:03:55 +01001882
1883 while (todo) {
1884 char __user *uaddr = ii.iov->iov_base + ii.iov_offset;
1885 size_t iov_len = ii.iov->iov_len - ii.iov_offset;
1886 size_t copy = min(todo, iov_len);
1887 size_t left;
1888
1889 if (!to_user)
1890 left = copy_from_user(kaddr, uaddr, copy);
1891 else
1892 left = copy_to_user(uaddr, kaddr, copy);
1893
1894 if (unlikely(left))
1895 return -EFAULT;
1896
1897 iov_iter_advance(&ii, copy);
1898 todo -= copy;
1899 kaddr += copy;
1900 }
1901
Jens Axboe0bd87182009-11-03 11:40:44 +01001902 kunmap(page);
Tejun Heo59efec72008-11-26 12:03:55 +01001903 }
1904
1905 return 0;
1906}
1907
1908/*
Miklos Szeredid9d318d2010-11-30 16:39:27 +01001909 * CUSE servers compiled on 32bit broke on 64bit kernels because the
1910 * ABI was defined to be 'struct iovec' which is different on 32bit
1911 * and 64bit. Fortunately we can determine which structure the server
1912 * used from the size of the reply.
1913 */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01001914static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
1915 size_t transferred, unsigned count,
1916 bool is_compat)
Miklos Szeredid9d318d2010-11-30 16:39:27 +01001917{
1918#ifdef CONFIG_COMPAT
1919 if (count * sizeof(struct compat_iovec) == transferred) {
1920 struct compat_iovec *ciov = src;
1921 unsigned i;
1922
1923 /*
1924 * With this interface a 32bit server cannot support
1925 * non-compat (i.e. ones coming from 64bit apps) ioctl
1926 * requests
1927 */
1928 if (!is_compat)
1929 return -EINVAL;
1930
1931 for (i = 0; i < count; i++) {
1932 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
1933 dst[i].iov_len = ciov[i].iov_len;
1934 }
1935 return 0;
1936 }
1937#endif
1938
1939 if (count * sizeof(struct iovec) != transferred)
1940 return -EIO;
1941
1942 memcpy(dst, src, transferred);
1943 return 0;
1944}
1945
Miklos Szeredi75727772010-11-30 16:39:27 +01001946/* Make sure iov_length() won't overflow */
1947static int fuse_verify_ioctl_iov(struct iovec *iov, size_t count)
1948{
1949 size_t n;
1950 u32 max = FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT;
1951
Zach Brownfb6ccff2012-07-24 12:10:11 -07001952 for (n = 0; n < count; n++, iov++) {
Miklos Szeredi75727772010-11-30 16:39:27 +01001953 if (iov->iov_len > (size_t) max)
1954 return -ENOMEM;
1955 max -= iov->iov_len;
1956 }
1957 return 0;
1958}
1959
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01001960static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
1961 void *src, size_t transferred, unsigned count,
1962 bool is_compat)
1963{
1964 unsigned i;
1965 struct fuse_ioctl_iovec *fiov = src;
1966
1967 if (fc->minor < 16) {
1968 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
1969 count, is_compat);
1970 }
1971
1972 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
1973 return -EIO;
1974
1975 for (i = 0; i < count; i++) {
1976 /* Did the server supply an inappropriate value? */
1977 if (fiov[i].base != (unsigned long) fiov[i].base ||
1978 fiov[i].len != (unsigned long) fiov[i].len)
1979 return -EIO;
1980
1981 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
1982 dst[i].iov_len = (size_t) fiov[i].len;
1983
1984#ifdef CONFIG_COMPAT
1985 if (is_compat &&
1986 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
1987 (compat_size_t) dst[i].iov_len != fiov[i].len))
1988 return -EIO;
1989#endif
1990 }
1991
1992 return 0;
1993}
1994
1995
Miklos Szeredid9d318d2010-11-30 16:39:27 +01001996/*
Tejun Heo59efec72008-11-26 12:03:55 +01001997 * For ioctls, there is no generic way to determine how much memory
1998 * needs to be read and/or written. Furthermore, ioctls are allowed
1999 * to dereference the passed pointer, so the parameter requires deep
2000 * copying but FUSE has no idea whatsoever about what to copy in or
2001 * out.
2002 *
2003 * This is solved by allowing FUSE server to retry ioctl with
2004 * necessary in/out iovecs. Let's assume the ioctl implementation
2005 * needs to read in the following structure.
2006 *
2007 * struct a {
2008 * char *buf;
2009 * size_t buflen;
2010 * }
2011 *
2012 * On the first callout to FUSE server, inarg->in_size and
2013 * inarg->out_size will be NULL; then, the server completes the ioctl
2014 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
2015 * the actual iov array to
2016 *
2017 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
2018 *
2019 * which tells FUSE to copy in the requested area and retry the ioctl.
2020 * On the second round, the server has access to the structure and
2021 * from that it can tell what to look for next, so on the invocation,
2022 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
2023 *
2024 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
2025 * { .iov_base = a.buf, .iov_len = a.buflen } }
2026 *
2027 * FUSE will copy both struct a and the pointed buffer from the
2028 * process doing the ioctl and retry ioctl with both struct a and the
2029 * buffer.
2030 *
2031 * This time, FUSE server has everything it needs and completes ioctl
2032 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
2033 *
2034 * Copying data out works the same way.
2035 *
2036 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
2037 * automatically initializes in and out iovs by decoding @cmd with
2038 * _IOC_* macros and the server is not allowed to request RETRY. This
2039 * limits ioctl data transfers to well-formed ioctls and is the forced
2040 * behavior for all FUSE servers.
2041 */
Tejun Heo08cbf542009-04-14 10:54:53 +09002042long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
2043 unsigned int flags)
Tejun Heo59efec72008-11-26 12:03:55 +01002044{
Tejun Heo59efec72008-11-26 12:03:55 +01002045 struct fuse_file *ff = file->private_data;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002046 struct fuse_conn *fc = ff->fc;
Tejun Heo59efec72008-11-26 12:03:55 +01002047 struct fuse_ioctl_in inarg = {
2048 .fh = ff->fh,
2049 .cmd = cmd,
2050 .arg = arg,
2051 .flags = flags
2052 };
2053 struct fuse_ioctl_out outarg;
2054 struct fuse_req *req = NULL;
2055 struct page **pages = NULL;
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002056 struct iovec *iov_page = NULL;
Tejun Heo59efec72008-11-26 12:03:55 +01002057 struct iovec *in_iov = NULL, *out_iov = NULL;
2058 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
2059 size_t in_size, out_size, transferred;
2060 int err;
2061
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002062#if BITS_PER_LONG == 32
2063 inarg.flags |= FUSE_IOCTL_32BIT;
2064#else
2065 if (flags & FUSE_IOCTL_COMPAT)
2066 inarg.flags |= FUSE_IOCTL_32BIT;
2067#endif
2068
Tejun Heo59efec72008-11-26 12:03:55 +01002069 /* assume all the iovs returned by client always fits in a page */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002070 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
Tejun Heo59efec72008-11-26 12:03:55 +01002071
Tejun Heo59efec72008-11-26 12:03:55 +01002072 err = -ENOMEM;
Thomas Meyerc411cc82011-11-29 22:08:00 +01002073 pages = kcalloc(FUSE_MAX_PAGES_PER_REQ, sizeof(pages[0]), GFP_KERNEL);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002074 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
Tejun Heo59efec72008-11-26 12:03:55 +01002075 if (!pages || !iov_page)
2076 goto out;
2077
2078 /*
2079 * If restricted, initialize IO parameters as encoded in @cmd.
2080 * RETRY from server is not allowed.
2081 */
2082 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002083 struct iovec *iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002084
Miklos Szeredic9f0523d2008-12-02 14:49:42 +01002085 iov->iov_base = (void __user *)arg;
Tejun Heo59efec72008-11-26 12:03:55 +01002086 iov->iov_len = _IOC_SIZE(cmd);
2087
2088 if (_IOC_DIR(cmd) & _IOC_WRITE) {
2089 in_iov = iov;
2090 in_iovs = 1;
2091 }
2092
2093 if (_IOC_DIR(cmd) & _IOC_READ) {
2094 out_iov = iov;
2095 out_iovs = 1;
2096 }
2097 }
2098
2099 retry:
2100 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
2101 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
2102
2103 /*
2104 * Out data can be used either for actual out data or iovs,
2105 * make sure there always is at least one page.
2106 */
2107 out_size = max_t(size_t, out_size, PAGE_SIZE);
2108 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
2109
2110 /* make sure there are enough buffer pages and init request with them */
2111 err = -ENOMEM;
2112 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
2113 goto out;
2114 while (num_pages < max_pages) {
2115 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2116 if (!pages[num_pages])
2117 goto out;
2118 num_pages++;
2119 }
2120
Maxim Patlasov54b96672012-10-26 19:49:13 +04002121 req = fuse_get_req(fc, num_pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002122 if (IS_ERR(req)) {
2123 err = PTR_ERR(req);
2124 req = NULL;
2125 goto out;
2126 }
2127 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
2128 req->num_pages = num_pages;
Maxim Patlasov7c190c82012-10-26 19:50:29 +04002129 fuse_page_descs_length_init(req, 0, req->num_pages);
Tejun Heo59efec72008-11-26 12:03:55 +01002130
2131 /* okay, let's send it to the client */
2132 req->in.h.opcode = FUSE_IOCTL;
Miklos Szeredid36f2482009-04-28 16:56:39 +02002133 req->in.h.nodeid = ff->nodeid;
Tejun Heo59efec72008-11-26 12:03:55 +01002134 req->in.numargs = 1;
2135 req->in.args[0].size = sizeof(inarg);
2136 req->in.args[0].value = &inarg;
2137 if (in_size) {
2138 req->in.numargs++;
2139 req->in.args[1].size = in_size;
2140 req->in.argpages = 1;
2141
2142 err = fuse_ioctl_copy_user(pages, in_iov, in_iovs, in_size,
2143 false);
2144 if (err)
2145 goto out;
2146 }
2147
2148 req->out.numargs = 2;
2149 req->out.args[0].size = sizeof(outarg);
2150 req->out.args[0].value = &outarg;
2151 req->out.args[1].size = out_size;
2152 req->out.argpages = 1;
2153 req->out.argvar = 1;
2154
Tejun Heob93f8582008-11-26 12:03:55 +01002155 fuse_request_send(fc, req);
Tejun Heo59efec72008-11-26 12:03:55 +01002156 err = req->out.h.error;
2157 transferred = req->out.args[1].size;
2158 fuse_put_request(fc, req);
2159 req = NULL;
2160 if (err)
2161 goto out;
2162
2163 /* did it ask for retry? */
2164 if (outarg.flags & FUSE_IOCTL_RETRY) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002165 void *vaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01002166
2167 /* no retry if in restricted mode */
2168 err = -EIO;
2169 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
2170 goto out;
2171
2172 in_iovs = outarg.in_iovs;
2173 out_iovs = outarg.out_iovs;
2174
2175 /*
2176 * Make sure things are in boundary, separate checks
2177 * are to protect against overflow.
2178 */
2179 err = -ENOMEM;
2180 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
2181 out_iovs > FUSE_IOCTL_MAX_IOV ||
2182 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
2183 goto out;
2184
Cong Wang2408f6e2011-11-25 23:14:30 +08002185 vaddr = kmap_atomic(pages[0]);
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01002186 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002187 transferred, in_iovs + out_iovs,
2188 (flags & FUSE_IOCTL_COMPAT) != 0);
Cong Wang2408f6e2011-11-25 23:14:30 +08002189 kunmap_atomic(vaddr);
Miklos Szeredid9d318d2010-11-30 16:39:27 +01002190 if (err)
2191 goto out;
Tejun Heo59efec72008-11-26 12:03:55 +01002192
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002193 in_iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01002194 out_iov = in_iov + in_iovs;
2195
Miklos Szeredi75727772010-11-30 16:39:27 +01002196 err = fuse_verify_ioctl_iov(in_iov, in_iovs);
2197 if (err)
2198 goto out;
2199
2200 err = fuse_verify_ioctl_iov(out_iov, out_iovs);
2201 if (err)
2202 goto out;
2203
Tejun Heo59efec72008-11-26 12:03:55 +01002204 goto retry;
2205 }
2206
2207 err = -EIO;
2208 if (transferred > inarg.out_size)
2209 goto out;
2210
2211 err = fuse_ioctl_copy_user(pages, out_iov, out_iovs, transferred, true);
2212 out:
2213 if (req)
2214 fuse_put_request(fc, req);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01002215 free_page((unsigned long) iov_page);
Tejun Heo59efec72008-11-26 12:03:55 +01002216 while (num_pages)
2217 __free_page(pages[--num_pages]);
2218 kfree(pages);
2219
2220 return err ? err : outarg.result;
2221}
Tejun Heo08cbf542009-04-14 10:54:53 +09002222EXPORT_SYMBOL_GPL(fuse_do_ioctl);
Tejun Heo59efec72008-11-26 12:03:55 +01002223
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002224long fuse_ioctl_common(struct file *file, unsigned int cmd,
2225 unsigned long arg, unsigned int flags)
Miklos Szeredid36f2482009-04-28 16:56:39 +02002226{
Al Viro6131ffa2013-02-27 16:59:05 -05002227 struct inode *inode = file_inode(file);
Miklos Szeredid36f2482009-04-28 16:56:39 +02002228 struct fuse_conn *fc = get_fuse_conn(inode);
2229
Anatol Pomozovc2132c12013-01-14 22:30:00 -08002230 if (!fuse_allow_current_process(fc))
Miklos Szeredid36f2482009-04-28 16:56:39 +02002231 return -EACCES;
2232
2233 if (is_bad_inode(inode))
2234 return -EIO;
2235
2236 return fuse_do_ioctl(file, cmd, arg, flags);
2237}
2238
Tejun Heo59efec72008-11-26 12:03:55 +01002239static long fuse_file_ioctl(struct file *file, unsigned int cmd,
2240 unsigned long arg)
2241{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002242 return fuse_ioctl_common(file, cmd, arg, 0);
Tejun Heo59efec72008-11-26 12:03:55 +01002243}
2244
2245static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
2246 unsigned long arg)
2247{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002248 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
Tejun Heo59efec72008-11-26 12:03:55 +01002249}
2250
Tejun Heo95668a62008-11-26 12:03:55 +01002251/*
2252 * All files which have been polled are linked to RB tree
2253 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2254 * find the matching one.
2255 */
2256static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2257 struct rb_node **parent_out)
2258{
2259 struct rb_node **link = &fc->polled_files.rb_node;
2260 struct rb_node *last = NULL;
2261
2262 while (*link) {
2263 struct fuse_file *ff;
2264
2265 last = *link;
2266 ff = rb_entry(last, struct fuse_file, polled_node);
2267
2268 if (kh < ff->kh)
2269 link = &last->rb_left;
2270 else if (kh > ff->kh)
2271 link = &last->rb_right;
2272 else
2273 return link;
2274 }
2275
2276 if (parent_out)
2277 *parent_out = last;
2278 return link;
2279}
2280
2281/*
2282 * The file is about to be polled. Make sure it's on the polled_files
2283 * RB tree. Note that files once added to the polled_files tree are
2284 * not removed before the file is released. This is because a file
2285 * polled once is likely to be polled again.
2286 */
2287static void fuse_register_polled_file(struct fuse_conn *fc,
2288 struct fuse_file *ff)
2289{
2290 spin_lock(&fc->lock);
2291 if (RB_EMPTY_NODE(&ff->polled_node)) {
2292 struct rb_node **link, *parent;
2293
2294 link = fuse_find_polled_node(fc, ff->kh, &parent);
2295 BUG_ON(*link);
2296 rb_link_node(&ff->polled_node, parent, link);
2297 rb_insert_color(&ff->polled_node, &fc->polled_files);
2298 }
2299 spin_unlock(&fc->lock);
2300}
2301
Tejun Heo08cbf542009-04-14 10:54:53 +09002302unsigned fuse_file_poll(struct file *file, poll_table *wait)
Tejun Heo95668a62008-11-26 12:03:55 +01002303{
Tejun Heo95668a62008-11-26 12:03:55 +01002304 struct fuse_file *ff = file->private_data;
Miklos Szeredi797759a2009-04-28 16:56:41 +02002305 struct fuse_conn *fc = ff->fc;
Tejun Heo95668a62008-11-26 12:03:55 +01002306 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2307 struct fuse_poll_out outarg;
2308 struct fuse_req *req;
2309 int err;
2310
2311 if (fc->no_poll)
2312 return DEFAULT_POLLMASK;
2313
2314 poll_wait(file, &ff->poll_wait, wait);
Enke Chen0415d292013-02-04 16:14:32 +01002315 inarg.events = (__u32)poll_requested_events(wait);
Tejun Heo95668a62008-11-26 12:03:55 +01002316
2317 /*
2318 * Ask for notification iff there's someone waiting for it.
2319 * The client may ignore the flag and always notify.
2320 */
2321 if (waitqueue_active(&ff->poll_wait)) {
2322 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2323 fuse_register_polled_file(fc, ff);
2324 }
2325
Maxim Patlasovb111c8c2012-10-26 19:48:30 +04002326 req = fuse_get_req_nopages(fc);
Tejun Heo95668a62008-11-26 12:03:55 +01002327 if (IS_ERR(req))
Miklos Szeredi201fa692009-06-30 20:06:24 +02002328 return POLLERR;
Tejun Heo95668a62008-11-26 12:03:55 +01002329
2330 req->in.h.opcode = FUSE_POLL;
Miklos Szeredi797759a2009-04-28 16:56:41 +02002331 req->in.h.nodeid = ff->nodeid;
Tejun Heo95668a62008-11-26 12:03:55 +01002332 req->in.numargs = 1;
2333 req->in.args[0].size = sizeof(inarg);
2334 req->in.args[0].value = &inarg;
2335 req->out.numargs = 1;
2336 req->out.args[0].size = sizeof(outarg);
2337 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01002338 fuse_request_send(fc, req);
Tejun Heo95668a62008-11-26 12:03:55 +01002339 err = req->out.h.error;
2340 fuse_put_request(fc, req);
2341
2342 if (!err)
2343 return outarg.revents;
2344 if (err == -ENOSYS) {
2345 fc->no_poll = 1;
2346 return DEFAULT_POLLMASK;
2347 }
2348 return POLLERR;
2349}
Tejun Heo08cbf542009-04-14 10:54:53 +09002350EXPORT_SYMBOL_GPL(fuse_file_poll);
Tejun Heo95668a62008-11-26 12:03:55 +01002351
2352/*
2353 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2354 * wakes up the poll waiters.
2355 */
2356int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2357 struct fuse_notify_poll_wakeup_out *outarg)
2358{
2359 u64 kh = outarg->kh;
2360 struct rb_node **link;
2361
2362 spin_lock(&fc->lock);
2363
2364 link = fuse_find_polled_node(fc, kh, NULL);
2365 if (*link) {
2366 struct fuse_file *ff;
2367
2368 ff = rb_entry(*link, struct fuse_file, polled_node);
2369 wake_up_interruptible_sync(&ff->poll_wait);
2370 }
2371
2372 spin_unlock(&fc->lock);
2373 return 0;
2374}
2375
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002376static void fuse_do_truncate(struct file *file)
2377{
2378 struct inode *inode = file->f_mapping->host;
2379 struct iattr attr;
2380
2381 attr.ia_valid = ATTR_SIZE;
2382 attr.ia_size = i_size_read(inode);
2383
2384 attr.ia_file = file;
2385 attr.ia_valid |= ATTR_FILE;
2386
2387 fuse_do_setattr(inode, &attr, file);
2388}
2389
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002390static inline loff_t fuse_round_up(loff_t off)
2391{
2392 return round_up(off, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
2393}
2394
Anand Avati4273b792012-02-17 12:46:25 -05002395static ssize_t
2396fuse_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
2397 loff_t offset, unsigned long nr_segs)
2398{
2399 ssize_t ret = 0;
Miklos Szeredi60b9df72013-05-01 14:37:21 +02002400 struct file *file = iocb->ki_filp;
2401 struct fuse_file *ff = file->private_data;
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002402 bool async_dio = ff->fc->async_dio;
Anand Avati4273b792012-02-17 12:46:25 -05002403 loff_t pos = 0;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002404 struct inode *inode;
2405 loff_t i_size;
2406 size_t count = iov_length(iov, nr_segs);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002407 struct fuse_io_priv *io;
Anand Avati4273b792012-02-17 12:46:25 -05002408
Anand Avati4273b792012-02-17 12:46:25 -05002409 pos = offset;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002410 inode = file->f_mapping->host;
2411 i_size = i_size_read(inode);
Anand Avati4273b792012-02-17 12:46:25 -05002412
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002413 /* optimization for short read */
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002414 if (async_dio && rw != WRITE && offset + count > i_size) {
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002415 if (offset >= i_size)
2416 return 0;
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002417 count = min_t(loff_t, count, fuse_round_up(i_size - offset));
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002418 }
2419
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002420 io = kmalloc(sizeof(struct fuse_io_priv), GFP_KERNEL);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002421 if (!io)
2422 return -ENOMEM;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002423 spin_lock_init(&io->lock);
2424 io->reqs = 1;
2425 io->bytes = -1;
2426 io->size = 0;
2427 io->offset = offset;
2428 io->write = (rw == WRITE);
2429 io->err = 0;
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002430 io->file = file;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002431 /*
2432 * By default, we want to optimize all I/Os with async request
Miklos Szeredi60b9df72013-05-01 14:37:21 +02002433 * submission to the client filesystem if supported.
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002434 */
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002435 io->async = async_dio;
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002436 io->iocb = iocb;
2437
2438 /*
2439 * We cannot asynchronously extend the size of a file. We have no method
2440 * to wait on real async I/O requests, so we must submit this request
2441 * synchronously.
2442 */
Maxim Patlasove5c5f052013-05-30 16:41:34 +04002443 if (!is_sync_kiocb(iocb) && (offset + count > i_size) && rw == WRITE)
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002444 io->async = false;
Anand Avati4273b792012-02-17 12:46:25 -05002445
Maxim Patlasovb98d0232012-10-26 19:50:15 +04002446 if (rw == WRITE)
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002447 ret = __fuse_direct_write(io, iov, nr_segs, &pos);
Maxim Patlasovb98d0232012-10-26 19:50:15 +04002448 else
Maxim Patlasov439ee5f2012-12-14 19:21:26 +04002449 ret = __fuse_direct_read(io, iov, nr_segs, &pos, count);
Maxim Patlasov36cf66e2012-12-14 19:20:51 +04002450
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002451 if (io->async) {
2452 fuse_aio_complete(io, ret < 0 ? ret : 0, -1);
2453
2454 /* we have a non-extending, async request, so return */
Brian Fosterc9ecf982013-05-30 15:35:50 -04002455 if (!is_sync_kiocb(iocb))
Maxim Patlasovbcba24c2012-12-14 19:21:08 +04002456 return -EIOCBQUEUED;
2457
2458 ret = wait_on_sync_kiocb(iocb);
2459 } else {
2460 kfree(io);
2461 }
2462
Maxim Patlasovefb9fa92012-12-18 14:05:08 +04002463 if (rw == WRITE) {
2464 if (ret > 0)
2465 fuse_write_update_size(inode, pos);
2466 else if (ret < 0 && offset + count > i_size)
2467 fuse_do_truncate(file);
2468 }
Anand Avati4273b792012-02-17 12:46:25 -05002469
2470 return ret;
2471}
2472
Miklos Szeredicdadb112012-11-10 16:55:56 +01002473static long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
2474 loff_t length)
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002475{
2476 struct fuse_file *ff = file->private_data;
Brian Foster3634a632013-05-17 09:30:32 -04002477 struct inode *inode = file->f_inode;
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002478 struct fuse_inode *fi = get_fuse_inode(inode);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002479 struct fuse_conn *fc = ff->fc;
2480 struct fuse_req *req;
2481 struct fuse_fallocate_in inarg = {
2482 .fh = ff->fh,
2483 .offset = offset,
2484 .length = length,
2485 .mode = mode
2486 };
2487 int err;
Maxim Patlasov14c14412013-06-13 12:16:39 +04002488 bool lock_inode = !(mode & FALLOC_FL_KEEP_SIZE) ||
2489 (mode & FALLOC_FL_PUNCH_HOLE);
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002490
Miklos Szeredi519c6042012-04-26 10:56:36 +02002491 if (fc->no_fallocate)
2492 return -EOPNOTSUPP;
2493
Maxim Patlasov14c14412013-06-13 12:16:39 +04002494 if (lock_inode) {
Brian Foster3634a632013-05-17 09:30:32 -04002495 mutex_lock(&inode->i_mutex);
Maxim Patlasovbde52782013-09-13 19:19:54 +04002496 if (mode & FALLOC_FL_PUNCH_HOLE) {
2497 loff_t endbyte = offset + length - 1;
2498 err = filemap_write_and_wait_range(inode->i_mapping,
2499 offset, endbyte);
2500 if (err)
2501 goto out;
2502
2503 fuse_sync_writes(inode);
2504 }
Brian Foster3634a632013-05-17 09:30:32 -04002505 }
2506
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002507 if (!(mode & FALLOC_FL_KEEP_SIZE))
2508 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
2509
Maxim Patlasovb111c8c2012-10-26 19:48:30 +04002510 req = fuse_get_req_nopages(fc);
Brian Foster3634a632013-05-17 09:30:32 -04002511 if (IS_ERR(req)) {
2512 err = PTR_ERR(req);
2513 goto out;
2514 }
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002515
2516 req->in.h.opcode = FUSE_FALLOCATE;
2517 req->in.h.nodeid = ff->nodeid;
2518 req->in.numargs = 1;
2519 req->in.args[0].size = sizeof(inarg);
2520 req->in.args[0].value = &inarg;
2521 fuse_request_send(fc, req);
2522 err = req->out.h.error;
Miklos Szeredi519c6042012-04-26 10:56:36 +02002523 if (err == -ENOSYS) {
2524 fc->no_fallocate = 1;
2525 err = -EOPNOTSUPP;
2526 }
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002527 fuse_put_request(fc, req);
2528
Brian Fosterbee6c302013-05-17 15:27:34 -04002529 if (err)
2530 goto out;
2531
2532 /* we could have extended the file */
2533 if (!(mode & FALLOC_FL_KEEP_SIZE))
2534 fuse_write_update_size(inode, offset + length);
2535
2536 if (mode & FALLOC_FL_PUNCH_HOLE)
2537 truncate_pagecache_range(inode, offset, offset + length - 1);
2538
2539 fuse_invalidate_attr(inode);
2540
Brian Foster3634a632013-05-17 09:30:32 -04002541out:
Maxim Patlasov0ab08f52013-09-13 19:20:16 +04002542 if (!(mode & FALLOC_FL_KEEP_SIZE))
2543 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
2544
Maxim Patlasovbde52782013-09-13 19:19:54 +04002545 if (lock_inode)
Brian Foster3634a632013-05-17 09:30:32 -04002546 mutex_unlock(&inode->i_mutex);
Brian Foster3634a632013-05-17 09:30:32 -04002547
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002548 return err;
2549}
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002550
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002551static const struct file_operations fuse_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002552 .llseek = fuse_file_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07002553 .read = do_sync_read,
Miklos Szeredibcb4be82007-11-28 16:21:59 -08002554 .aio_read = fuse_file_aio_read,
Badari Pulavarty543ade12006-09-30 23:28:48 -07002555 .write = do_sync_write,
Nick Pigginea9b9902008-04-30 00:54:42 -07002556 .aio_write = fuse_file_aio_write,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002557 .mmap = fuse_file_mmap,
2558 .open = fuse_open,
2559 .flush = fuse_flush,
2560 .release = fuse_release,
2561 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07002562 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002563 .flock = fuse_file_flock,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02002564 .splice_read = generic_file_splice_read,
Tejun Heo59efec72008-11-26 12:03:55 +01002565 .unlocked_ioctl = fuse_file_ioctl,
2566 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01002567 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002568 .fallocate = fuse_file_fallocate,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002569};
2570
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002571static const struct file_operations fuse_direct_io_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002572 .llseek = fuse_file_llseek,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07002573 .read = fuse_direct_read,
2574 .write = fuse_direct_write,
Miklos Szeredifc280c92009-04-02 14:25:35 +02002575 .mmap = fuse_direct_mmap,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07002576 .open = fuse_open,
2577 .flush = fuse_flush,
2578 .release = fuse_release,
2579 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07002580 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002581 .flock = fuse_file_flock,
Tejun Heo59efec72008-11-26 12:03:55 +01002582 .unlocked_ioctl = fuse_file_ioctl,
2583 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01002584 .poll = fuse_file_poll,
Anatol Pomozov05ba1f02012-04-22 18:45:24 -07002585 .fallocate = fuse_file_fallocate,
Miklos Szeredifc280c92009-04-02 14:25:35 +02002586 /* no splice_read */
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07002587};
2588
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07002589static const struct address_space_operations fuse_file_aops = {
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002590 .readpage = fuse_readpage,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002591 .writepage = fuse_writepage,
2592 .launder_page = fuse_launder_page,
Miklos Szeredidb50b962005-09-09 13:10:33 -07002593 .readpages = fuse_readpages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002594 .set_page_dirty = __set_page_dirty_nobuffers,
Miklos Szeredib2d22722006-12-06 20:35:51 -08002595 .bmap = fuse_bmap,
Anand Avati4273b792012-02-17 12:46:25 -05002596 .direct_IO = fuse_direct_IO,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002597};
2598
2599void fuse_init_file_inode(struct inode *inode)
2600{
Miklos Szeredi45323fb2005-09-09 13:10:37 -07002601 inode->i_fop = &fuse_file_operations;
2602 inode->i_data.a_ops = &fuse_file_aops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002603}