blob: 6b8322225a1059dd0c0d26fc1709686e5f9db667 [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>
Miklos Szeredib6aeade2005-09-09 13:10:30 -070018
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080019static const struct file_operations fuse_direct_io_file_operations;
Miklos Szeredi45323fb2005-09-09 13:10:37 -070020
Miklos Szeredi91fe96b2009-04-28 16:56:37 +020021static int fuse_send_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
22 int opcode, struct fuse_open_out *outargp)
Miklos Szeredib6aeade2005-09-09 13:10:30 -070023{
Miklos Szeredib6aeade2005-09-09 13:10:30 -070024 struct fuse_open_in inarg;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080025 struct fuse_req *req;
26 int err;
27
Miklos Szeredice1d5a42006-04-10 22:54:58 -070028 req = fuse_get_req(fc);
29 if (IS_ERR(req))
30 return PTR_ERR(req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080031
32 memset(&inarg, 0, sizeof(inarg));
Miklos Szeredi6ff958e2007-10-18 03:07:02 -070033 inarg.flags = file->f_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
34 if (!fc->atomic_o_trunc)
35 inarg.flags &= ~O_TRUNC;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +020036 req->in.h.opcode = opcode;
37 req->in.h.nodeid = nodeid;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080038 req->in.numargs = 1;
39 req->in.args[0].size = sizeof(inarg);
40 req->in.args[0].value = &inarg;
41 req->out.numargs = 1;
42 req->out.args[0].size = sizeof(*outargp);
43 req->out.args[0].value = outargp;
Tejun Heob93f8582008-11-26 12:03:55 +010044 fuse_request_send(fc, req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080045 err = req->out.h.error;
46 fuse_put_request(fc, req);
47
48 return err;
49}
50
Tejun Heoacf99432008-11-26 12:03:55 +010051struct fuse_file *fuse_file_alloc(struct fuse_conn *fc)
Miklos Szeredifd72faa2005-11-07 00:59:51 -080052{
53 struct fuse_file *ff;
Tejun Heo6b2db282009-04-14 10:54:49 +090054
Miklos Szeredifd72faa2005-11-07 00:59:51 -080055 ff = kmalloc(sizeof(struct fuse_file), GFP_KERNEL);
Tejun Heo6b2db282009-04-14 10:54:49 +090056 if (unlikely(!ff))
57 return NULL;
58
Miklos Szeredida5e4712009-04-28 16:56:36 +020059 ff->fc = fc;
Tejun Heo6b2db282009-04-14 10:54:49 +090060 ff->reserved_req = fuse_request_alloc();
61 if (unlikely(!ff->reserved_req)) {
62 kfree(ff);
63 return NULL;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080064 }
Tejun Heo6b2db282009-04-14 10:54:49 +090065
66 INIT_LIST_HEAD(&ff->write_entry);
67 atomic_set(&ff->count, 0);
68 RB_CLEAR_NODE(&ff->polled_node);
69 init_waitqueue_head(&ff->poll_wait);
70
71 spin_lock(&fc->lock);
72 ff->kh = ++fc->khctr;
73 spin_unlock(&fc->lock);
74
Miklos Szeredifd72faa2005-11-07 00:59:51 -080075 return ff;
76}
77
78void fuse_file_free(struct fuse_file *ff)
79{
Miklos Szeredi33649c92006-06-25 05:48:52 -070080 fuse_request_free(ff->reserved_req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080081 kfree(ff);
82}
83
Miklos Szeredic7b71432009-04-28 16:56:37 +020084struct fuse_file *fuse_file_get(struct fuse_file *ff)
Miklos Szeredic756e0a2007-10-16 23:31:00 -070085{
86 atomic_inc(&ff->count);
87 return ff;
88}
89
Miklos Szeredi5a18ec12011-02-25 14:44:58 +010090static void fuse_release_async(struct work_struct *work)
Miklos Szeredi819c4b32007-10-16 23:31:04 -070091{
Miklos Szeredi5a18ec12011-02-25 14:44:58 +010092 struct fuse_req *req;
93 struct fuse_conn *fc;
94 struct path path;
95
96 req = container_of(work, struct fuse_req, misc.release.work);
97 path = req->misc.release.path;
98 fc = get_fuse_conn(path.dentry->d_inode);
99
100 fuse_put_request(fc, req);
101 path_put(&path);
Miklos Szeredi819c4b32007-10-16 23:31:04 -0700102}
103
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100104static void fuse_release_end(struct fuse_conn *fc, struct fuse_req *req)
105{
106 if (fc->destroy_req) {
107 /*
108 * If this is a fuseblk mount, then it's possible that
109 * releasing the path will result in releasing the
110 * super block and sending the DESTROY request. If
111 * the server is single threaded, this would hang.
112 * For this reason do the path_put() in a separate
113 * thread.
114 */
115 atomic_inc(&req->count);
116 INIT_WORK(&req->misc.release.work, fuse_release_async);
117 schedule_work(&req->misc.release.work);
118 } else {
119 path_put(&req->misc.release.path);
120 }
121}
122
123static void fuse_file_put(struct fuse_file *ff, bool sync)
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700124{
125 if (atomic_dec_and_test(&ff->count)) {
126 struct fuse_req *req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200127
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100128 if (sync) {
129 fuse_request_send(ff->fc, req);
130 path_put(&req->misc.release.path);
131 fuse_put_request(ff->fc, req);
132 } else {
133 req->end = fuse_release_end;
134 fuse_request_send_background(ff->fc, req);
135 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700136 kfree(ff);
137 }
138}
139
Tejun Heo08cbf542009-04-14 10:54:53 +0900140int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
141 bool isdir)
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200142{
143 struct fuse_open_out outarg;
144 struct fuse_file *ff;
145 int err;
146 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
147
148 ff = fuse_file_alloc(fc);
149 if (!ff)
150 return -ENOMEM;
151
152 err = fuse_send_open(fc, nodeid, file, opcode, &outarg);
153 if (err) {
154 fuse_file_free(ff);
155 return err;
156 }
157
158 if (isdir)
159 outarg.open_flags &= ~FOPEN_DIRECT_IO;
160
161 ff->fh = outarg.fh;
162 ff->nodeid = nodeid;
163 ff->open_flags = outarg.open_flags;
164 file->private_data = fuse_file_get(ff);
165
166 return 0;
167}
Tejun Heo08cbf542009-04-14 10:54:53 +0900168EXPORT_SYMBOL_GPL(fuse_do_open);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200169
Miklos Szeredic7b71432009-04-28 16:56:37 +0200170void fuse_finish_open(struct inode *inode, struct file *file)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800171{
Miklos Szeredic7b71432009-04-28 16:56:37 +0200172 struct fuse_file *ff = file->private_data;
Ken Sumralla0822c52010-11-24 12:57:00 -0800173 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200174
175 if (ff->open_flags & FOPEN_DIRECT_IO)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800176 file->f_op = &fuse_direct_io_file_operations;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200177 if (!(ff->open_flags & FOPEN_KEEP_CACHE))
Miklos Szeredib1009972007-10-16 23:31:01 -0700178 invalidate_inode_pages2(inode->i_mapping);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200179 if (ff->open_flags & FOPEN_NONSEEKABLE)
Tejun Heoa7c1b992008-10-16 16:08:57 +0200180 nonseekable_open(inode, file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800181 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
182 struct fuse_inode *fi = get_fuse_inode(inode);
183
184 spin_lock(&fc->lock);
185 fi->attr_version = ++fc->attr_version;
186 i_size_write(inode, 0);
187 spin_unlock(&fc->lock);
188 fuse_invalidate_attr(inode);
189 }
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800190}
191
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200192int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800193{
Tejun Heoacf99432008-11-26 12:03:55 +0100194 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700195 int err;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700196
197 err = generic_file_open(inode, file);
198 if (err)
199 return err;
200
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200201 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800202 if (err)
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200203 return err;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700204
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200205 fuse_finish_open(inode, file);
206
207 return 0;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700208}
209
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200210static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800211{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200212 struct fuse_conn *fc = ff->fc;
Miklos Szeredi33649c92006-06-25 05:48:52 -0700213 struct fuse_req *req = ff->reserved_req;
Miklos Szeredib57d4262008-02-06 01:38:39 -0800214 struct fuse_release_in *inarg = &req->misc.release.in;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700215
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200216 spin_lock(&fc->lock);
217 list_del(&ff->write_entry);
218 if (!RB_EMPTY_NODE(&ff->polled_node))
219 rb_erase(&ff->polled_node, &fc->polled_files);
220 spin_unlock(&fc->lock);
221
Bryan Green357ccf22011-03-01 16:43:52 -0800222 wake_up_interruptible_all(&ff->poll_wait);
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200223
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700224 inarg->fh = ff->fh;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800225 inarg->flags = flags;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700226 req->in.h.opcode = opcode;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200227 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700228 req->in.numargs = 1;
229 req->in.args[0].size = sizeof(struct fuse_release_in);
230 req->in.args[0].value = inarg;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800231}
232
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200233void fuse_release_common(struct file *file, int opcode)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800234{
Tejun Heo6b2db282009-04-14 10:54:49 +0900235 struct fuse_file *ff;
236 struct fuse_req *req;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -0700237
Tejun Heo6b2db282009-04-14 10:54:49 +0900238 ff = file->private_data;
239 if (unlikely(!ff))
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200240 return;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700241
Tejun Heo6b2db282009-04-14 10:54:49 +0900242 req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200243 fuse_prepare_release(ff, file->f_flags, opcode);
Tejun Heo95668a62008-11-26 12:03:55 +0100244
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200245 if (ff->flock) {
246 struct fuse_release_in *inarg = &req->misc.release.in;
247 inarg->release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
248 inarg->lock_owner = fuse_lock_owner_id(ff->fc,
249 (fl_owner_t) file);
250 }
Tejun Heo6b2db282009-04-14 10:54:49 +0900251 /* Hold vfsmount and dentry until release is finished */
Miklos Szeredib0be46e2009-04-28 16:56:36 +0200252 path_get(&file->f_path);
253 req->misc.release.path = file->f_path;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700254
Tejun Heo6b2db282009-04-14 10:54:49 +0900255 /*
256 * Normally this will send the RELEASE request, however if
257 * some asynchronous READ or WRITE requests are outstanding,
258 * the sending will be delayed.
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100259 *
260 * Make the release synchronous if this is a fuseblk mount,
261 * synchronous RELEASE is allowed (and desirable) in this case
262 * because the server can be trusted not to screw up.
Tejun Heo6b2db282009-04-14 10:54:49 +0900263 */
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100264 fuse_file_put(ff, ff->fc->destroy_req != NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700265}
266
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700267static int fuse_open(struct inode *inode, struct file *file)
268{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200269 return fuse_open_common(inode, file, false);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700270}
271
272static int fuse_release(struct inode *inode, struct file *file)
273{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200274 fuse_release_common(file, FUSE_RELEASE);
275
276 /* return value is ignored by VFS */
277 return 0;
278}
279
280void fuse_sync_release(struct fuse_file *ff, int flags)
281{
282 WARN_ON(atomic_read(&ff->count) > 1);
283 fuse_prepare_release(ff, flags, FUSE_RELEASE);
284 ff->reserved_req->force = 1;
285 fuse_request_send(ff->fc, ff->reserved_req);
286 fuse_put_request(ff->fc, ff->reserved_req);
287 kfree(ff);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700288}
Tejun Heo08cbf542009-04-14 10:54:53 +0900289EXPORT_SYMBOL_GPL(fuse_sync_release);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700290
Miklos Szeredi71421252006-06-25 05:48:52 -0700291/*
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700292 * Scramble the ID space with XTEA, so that the value of the files_struct
293 * pointer is not exposed to userspace.
Miklos Szeredi71421252006-06-25 05:48:52 -0700294 */
Miklos Szeredif3332112007-10-18 03:07:04 -0700295u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
Miklos Szeredi71421252006-06-25 05:48:52 -0700296{
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700297 u32 *k = fc->scramble_key;
298 u64 v = (unsigned long) id;
299 u32 v0 = v;
300 u32 v1 = v >> 32;
301 u32 sum = 0;
302 int i;
303
304 for (i = 0; i < 32; i++) {
305 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
306 sum += 0x9E3779B9;
307 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
308 }
309
310 return (u64) v0 + ((u64) v1 << 32);
Miklos Szeredi71421252006-06-25 05:48:52 -0700311}
312
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700313/*
314 * Check if page is under writeback
315 *
316 * This is currently done by walking the list of writepage requests
317 * for the inode, which can be pretty inefficient.
318 */
319static bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
320{
321 struct fuse_conn *fc = get_fuse_conn(inode);
322 struct fuse_inode *fi = get_fuse_inode(inode);
323 struct fuse_req *req;
324 bool found = false;
325
326 spin_lock(&fc->lock);
327 list_for_each_entry(req, &fi->writepages, writepages_entry) {
328 pgoff_t curr_index;
329
330 BUG_ON(req->inode != inode);
331 curr_index = req->misc.write.in.offset >> PAGE_CACHE_SHIFT;
332 if (curr_index == index) {
333 found = true;
334 break;
335 }
336 }
337 spin_unlock(&fc->lock);
338
339 return found;
340}
341
342/*
343 * Wait for page writeback to be completed.
344 *
345 * Since fuse doesn't rely on the VM writeback tracking, this has to
346 * use some other means.
347 */
348static int fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
349{
350 struct fuse_inode *fi = get_fuse_inode(inode);
351
352 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
353 return 0;
354}
355
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -0700356static int fuse_flush(struct file *file, fl_owner_t id)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700357{
Josef Sipek7706a9d2006-12-08 02:37:02 -0800358 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700359 struct fuse_conn *fc = get_fuse_conn(inode);
360 struct fuse_file *ff = file->private_data;
361 struct fuse_req *req;
362 struct fuse_flush_in inarg;
363 int err;
364
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800365 if (is_bad_inode(inode))
366 return -EIO;
367
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700368 if (fc->no_flush)
369 return 0;
370
Miklos Szeredi33649c92006-06-25 05:48:52 -0700371 req = fuse_get_req_nofail(fc, file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700372 memset(&inarg, 0, sizeof(inarg));
373 inarg.fh = ff->fh;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700374 inarg.lock_owner = fuse_lock_owner_id(fc, id);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700375 req->in.h.opcode = FUSE_FLUSH;
376 req->in.h.nodeid = get_node_id(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700377 req->in.numargs = 1;
378 req->in.args[0].size = sizeof(inarg);
379 req->in.args[0].value = &inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -0700380 req->force = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100381 fuse_request_send(fc, req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700382 err = req->out.h.error;
383 fuse_put_request(fc, req);
384 if (err == -ENOSYS) {
385 fc->no_flush = 1;
386 err = 0;
387 }
388 return err;
389}
390
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700391/*
392 * Wait for all pending writepages on the inode to finish.
393 *
394 * This is currently done by blocking further writes with FUSE_NOWRITE
395 * and waiting for all sent writes to complete.
396 *
397 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
398 * could conflict with truncation.
399 */
400static void fuse_sync_writes(struct inode *inode)
401{
402 fuse_set_nowrite(inode);
403 fuse_release_nowrite(inode);
404}
405
Josef Bacik02c24a82011-07-16 20:44:56 -0400406int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
407 int datasync, int isdir)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700408{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200409 struct inode *inode = file->f_mapping->host;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700410 struct fuse_conn *fc = get_fuse_conn(inode);
411 struct fuse_file *ff = file->private_data;
412 struct fuse_req *req;
413 struct fuse_fsync_in inarg;
414 int err;
415
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800416 if (is_bad_inode(inode))
417 return -EIO;
418
Josef Bacik02c24a82011-07-16 20:44:56 -0400419 err = filemap_write_and_wait_range(inode->i_mapping, start, end);
420 if (err)
421 return err;
422
Miklos Szeredi82547982005-09-09 13:10:38 -0700423 if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700424 return 0;
425
Josef Bacik02c24a82011-07-16 20:44:56 -0400426 mutex_lock(&inode->i_mutex);
427
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700428 /*
429 * Start writeback against all dirty pages of the inode, then
430 * wait for all outstanding writes, before sending the FSYNC
431 * request.
432 */
433 err = write_inode_now(inode, 0);
434 if (err)
Josef Bacik02c24a82011-07-16 20:44:56 -0400435 goto out;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700436
437 fuse_sync_writes(inode);
438
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700439 req = fuse_get_req(fc);
Josef Bacik02c24a82011-07-16 20:44:56 -0400440 if (IS_ERR(req)) {
441 err = PTR_ERR(req);
442 goto out;
443 }
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700444
445 memset(&inarg, 0, sizeof(inarg));
446 inarg.fh = ff->fh;
447 inarg.fsync_flags = datasync ? 1 : 0;
Miklos Szeredi82547982005-09-09 13:10:38 -0700448 req->in.h.opcode = isdir ? FUSE_FSYNCDIR : FUSE_FSYNC;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700449 req->in.h.nodeid = get_node_id(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700450 req->in.numargs = 1;
451 req->in.args[0].size = sizeof(inarg);
452 req->in.args[0].value = &inarg;
Tejun Heob93f8582008-11-26 12:03:55 +0100453 fuse_request_send(fc, req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700454 err = req->out.h.error;
455 fuse_put_request(fc, req);
456 if (err == -ENOSYS) {
Miklos Szeredi82547982005-09-09 13:10:38 -0700457 if (isdir)
458 fc->no_fsyncdir = 1;
459 else
460 fc->no_fsync = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700461 err = 0;
462 }
Josef Bacik02c24a82011-07-16 20:44:56 -0400463out:
464 mutex_unlock(&inode->i_mutex);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700465 return err;
466}
467
Josef Bacik02c24a82011-07-16 20:44:56 -0400468static int fuse_fsync(struct file *file, loff_t start, loff_t end,
469 int datasync)
Miklos Szeredi82547982005-09-09 13:10:38 -0700470{
Josef Bacik02c24a82011-07-16 20:44:56 -0400471 return fuse_fsync_common(file, start, end, datasync, 0);
Miklos Szeredi82547982005-09-09 13:10:38 -0700472}
473
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200474void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
475 size_t count, int opcode)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700476{
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700477 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredia6643092007-11-28 16:22:00 -0800478 struct fuse_file *ff = file->private_data;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700479
Miklos Szeredi361b1eb2006-01-16 22:14:45 -0800480 inarg->fh = ff->fh;
481 inarg->offset = pos;
482 inarg->size = count;
Miklos Szeredia6643092007-11-28 16:22:00 -0800483 inarg->flags = file->f_flags;
Miklos Szeredi361b1eb2006-01-16 22:14:45 -0800484 req->in.h.opcode = opcode;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200485 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700486 req->in.numargs = 1;
487 req->in.args[0].size = sizeof(struct fuse_read_in);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800488 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700489 req->out.argvar = 1;
490 req->out.numargs = 1;
491 req->out.args[0].size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700492}
493
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800494static size_t fuse_send_read(struct fuse_req *req, struct file *file,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200495 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700496{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200497 struct fuse_file *ff = file->private_data;
498 struct fuse_conn *fc = ff->fc;
Miklos Szeredif3332112007-10-18 03:07:04 -0700499
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200500 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredif3332112007-10-18 03:07:04 -0700501 if (owner != NULL) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700502 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredif3332112007-10-18 03:07:04 -0700503
504 inarg->read_flags |= FUSE_READ_LOCKOWNER;
505 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
506 }
Tejun Heob93f8582008-11-26 12:03:55 +0100507 fuse_request_send(fc, req);
Miklos Szeredi361b1eb2006-01-16 22:14:45 -0800508 return req->out.args[0].size;
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700509}
510
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700511static void fuse_read_update_size(struct inode *inode, loff_t size,
512 u64 attr_ver)
513{
514 struct fuse_conn *fc = get_fuse_conn(inode);
515 struct fuse_inode *fi = get_fuse_inode(inode);
516
517 spin_lock(&fc->lock);
518 if (attr_ver == fi->attr_version && size < inode->i_size) {
519 fi->attr_version = ++fc->attr_version;
520 i_size_write(inode, size);
521 }
522 spin_unlock(&fc->lock);
523}
524
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700525static int fuse_readpage(struct file *file, struct page *page)
526{
527 struct inode *inode = page->mapping->host;
528 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800529 struct fuse_req *req;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700530 size_t num_read;
531 loff_t pos = page_offset(page);
532 size_t count = PAGE_CACHE_SIZE;
533 u64 attr_ver;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800534 int err;
535
536 err = -EIO;
537 if (is_bad_inode(inode))
538 goto out;
539
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700540 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300541 * Page writeback can extend beyond the lifetime of the
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700542 * page-cache page, so make sure we read a properly synced
543 * page.
544 */
545 fuse_wait_on_page_writeback(inode, page->index);
546
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700547 req = fuse_get_req(fc);
548 err = PTR_ERR(req);
549 if (IS_ERR(req))
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700550 goto out;
551
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700552 attr_ver = fuse_get_attr_version(fc);
553
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700554 req->out.page_zeroing = 1;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200555 req->out.argpages = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700556 req->num_pages = 1;
557 req->pages[0] = page;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200558 num_read = fuse_send_read(req, file, pos, count, NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700559 err = req->out.h.error;
560 fuse_put_request(fc, req);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700561
562 if (!err) {
563 /*
564 * Short read means EOF. If file size is larger, truncate it
565 */
566 if (num_read < count)
567 fuse_read_update_size(inode, pos + num_read, attr_ver);
568
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700569 SetPageUptodate(page);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700570 }
571
Miklos Szeredib36c31b2005-09-09 13:10:38 -0700572 fuse_invalidate_attr(inode); /* atime changed */
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700573 out:
574 unlock_page(page);
575 return err;
576}
577
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800578static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredidb50b962005-09-09 13:10:33 -0700579{
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800580 int i;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700581 size_t count = req->misc.read.in.size;
582 size_t num_read = req->out.args[0].size;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200583 struct address_space *mapping = NULL;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800584
Miklos Szeredice534fb2010-05-25 15:06:07 +0200585 for (i = 0; mapping == NULL && i < req->num_pages; i++)
586 mapping = req->pages[i]->mapping;
587
588 if (mapping) {
589 struct inode *inode = mapping->host;
590
591 /*
592 * Short read means EOF. If file size is larger, truncate it
593 */
594 if (!req->out.h.error && num_read < count) {
595 loff_t pos;
596
597 pos = page_offset(req->pages[0]) + num_read;
598 fuse_read_update_size(inode, pos,
599 req->misc.read.attr_ver);
600 }
601 fuse_invalidate_attr(inode); /* atime changed */
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700602 }
603
Miklos Szeredidb50b962005-09-09 13:10:33 -0700604 for (i = 0; i < req->num_pages; i++) {
605 struct page *page = req->pages[i];
606 if (!req->out.h.error)
607 SetPageUptodate(page);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800608 else
609 SetPageError(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700610 unlock_page(page);
Miklos Szeredib5dd3282010-05-25 15:06:06 +0200611 page_cache_release(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700612 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700613 if (req->ff)
Miklos Szeredi5a18ec12011-02-25 14:44:58 +0100614 fuse_file_put(req->ff, false);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800615}
616
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200617static void fuse_send_readpages(struct fuse_req *req, struct file *file)
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800618{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200619 struct fuse_file *ff = file->private_data;
620 struct fuse_conn *fc = ff->fc;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800621 loff_t pos = page_offset(req->pages[0]);
622 size_t count = req->num_pages << PAGE_CACHE_SHIFT;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200623
624 req->out.argpages = 1;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800625 req->out.page_zeroing = 1;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200626 req->out.page_replace = 1;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200627 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700628 req->misc.read.attr_ver = fuse_get_attr_version(fc);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800629 if (fc->async_read) {
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700630 req->ff = fuse_file_get(ff);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800631 req->end = fuse_readpages_end;
Tejun Heob93f8582008-11-26 12:03:55 +0100632 fuse_request_send_background(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800633 } else {
Tejun Heob93f8582008-11-26 12:03:55 +0100634 fuse_request_send(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800635 fuse_readpages_end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100636 fuse_put_request(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800637 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700638}
639
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700640struct fuse_fill_data {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700641 struct fuse_req *req;
Miklos Szeredia6643092007-11-28 16:22:00 -0800642 struct file *file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700643 struct inode *inode;
644};
645
646static int fuse_readpages_fill(void *_data, struct page *page)
647{
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700648 struct fuse_fill_data *data = _data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700649 struct fuse_req *req = data->req;
650 struct inode *inode = data->inode;
651 struct fuse_conn *fc = get_fuse_conn(inode);
652
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700653 fuse_wait_on_page_writeback(inode, page->index);
654
Miklos Szeredidb50b962005-09-09 13:10:33 -0700655 if (req->num_pages &&
656 (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
657 (req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_read ||
658 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200659 fuse_send_readpages(req, data->file);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700660 data->req = req = fuse_get_req(fc);
661 if (IS_ERR(req)) {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700662 unlock_page(page);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700663 return PTR_ERR(req);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700664 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700665 }
Laura Abbottfcedafa2012-12-03 17:50:34 -0800666
Laura Abbott69755292012-12-17 18:33:37 -0800667#ifdef CONFIG_CMA
Laura Abbottfcedafa2012-12-03 17:50:34 -0800668 if (is_cma_pageblock(page)) {
669 struct page *oldpage = page, *newpage;
670 int err;
671
672 /* make sure that old page is not free in-between the calls */
673 page_cache_get(oldpage);
674
675 newpage = alloc_page(GFP_HIGHUSER);
676 if (!newpage) {
677 page_cache_release(oldpage);
678 return -ENOMEM;
679 }
680
681 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
682 if (err) {
683 __free_page(newpage);
684 page_cache_release(oldpage);
685 return err;
686 }
687
688 /*
689 * Decrement the count on new page to make page cache the only
690 * owner of it
691 */
692 lock_page(newpage);
693 put_page(newpage);
694
695 /* finally release the old page and swap pointers */
696 unlock_page(oldpage);
697 page_cache_release(oldpage);
698 page = newpage;
699 }
700#endif
701
Miklos Szeredib5dd3282010-05-25 15:06:06 +0200702 page_cache_get(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700703 req->pages[req->num_pages] = page;
Miklos Szeredi1729a162008-11-26 12:03:54 +0100704 req->num_pages++;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700705 return 0;
706}
707
708static int fuse_readpages(struct file *file, struct address_space *mapping,
709 struct list_head *pages, unsigned nr_pages)
710{
711 struct inode *inode = mapping->host;
712 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700713 struct fuse_fill_data data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700714 int err;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800715
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700716 err = -EIO;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800717 if (is_bad_inode(inode))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800718 goto out;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800719
Miklos Szeredia6643092007-11-28 16:22:00 -0800720 data.file = file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700721 data.inode = inode;
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700722 data.req = fuse_get_req(fc);
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700723 err = PTR_ERR(data.req);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700724 if (IS_ERR(data.req))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800725 goto out;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700726
727 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700728 if (!err) {
729 if (data.req->num_pages)
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200730 fuse_send_readpages(data.req, file);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700731 else
732 fuse_put_request(fc, data.req);
733 }
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800734out:
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700735 return err;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700736}
737
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800738static ssize_t fuse_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
739 unsigned long nr_segs, loff_t pos)
740{
741 struct inode *inode = iocb->ki_filp->f_mapping->host;
742
743 if (pos + iov_length(iov, nr_segs) > i_size_read(inode)) {
744 int err;
745 /*
746 * If trying to read past EOF, make sure the i_size
747 * attribute is up-to-date.
748 */
749 err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
750 if (err)
751 return err;
752 }
753
754 return generic_file_aio_read(iocb, iov, nr_segs, pos);
755}
756
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200757static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200758 loff_t pos, size_t count)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700759{
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700760 struct fuse_write_in *inarg = &req->misc.write.in;
761 struct fuse_write_out *outarg = &req->misc.write.out;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700762
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700763 inarg->fh = ff->fh;
764 inarg->offset = pos;
765 inarg->size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700766 req->in.h.opcode = FUSE_WRITE;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200767 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700768 req->in.numargs = 2;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200769 if (ff->fc->minor < 9)
Miklos Szeredif3332112007-10-18 03:07:04 -0700770 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
771 else
772 req->in.args[0].size = sizeof(struct fuse_write_in);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700773 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700774 req->in.args[1].size = count;
775 req->out.numargs = 1;
776 req->out.args[0].size = sizeof(struct fuse_write_out);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700777 req->out.args[0].value = outarg;
778}
779
780static size_t fuse_send_write(struct fuse_req *req, struct file *file,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200781 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700782{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200783 struct fuse_file *ff = file->private_data;
784 struct fuse_conn *fc = ff->fc;
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200785 struct fuse_write_in *inarg = &req->misc.write.in;
786
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200787 fuse_write_fill(req, ff, pos, count);
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200788 inarg->flags = file->f_flags;
Miklos Szeredif3332112007-10-18 03:07:04 -0700789 if (owner != NULL) {
Miklos Szeredif3332112007-10-18 03:07:04 -0700790 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
791 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
792 }
Tejun Heob93f8582008-11-26 12:03:55 +0100793 fuse_request_send(fc, req);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700794 return req->misc.write.out.size;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700795}
796
Miklos Szeredia1d75f22010-07-12 14:41:40 +0200797void fuse_write_update_size(struct inode *inode, loff_t pos)
Miklos Szeredi854512e2008-04-30 00:54:41 -0700798{
799 struct fuse_conn *fc = get_fuse_conn(inode);
800 struct fuse_inode *fi = get_fuse_inode(inode);
801
802 spin_lock(&fc->lock);
803 fi->attr_version = ++fc->attr_version;
804 if (pos > inode->i_size)
805 i_size_write(inode, pos);
806 spin_unlock(&fc->lock);
807}
808
Nick Pigginea9b9902008-04-30 00:54:42 -0700809static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
810 struct inode *inode, loff_t pos,
811 size_t count)
812{
813 size_t res;
814 unsigned offset;
815 unsigned i;
816
817 for (i = 0; i < req->num_pages; i++)
818 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
819
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200820 res = fuse_send_write(req, file, pos, count, NULL);
Nick Pigginea9b9902008-04-30 00:54:42 -0700821
822 offset = req->page_offset;
823 count = res;
824 for (i = 0; i < req->num_pages; i++) {
825 struct page *page = req->pages[i];
826
827 if (!req->out.h.error && !offset && count >= PAGE_CACHE_SIZE)
828 SetPageUptodate(page);
829
830 if (count > PAGE_CACHE_SIZE - offset)
831 count -= PAGE_CACHE_SIZE - offset;
832 else
833 count = 0;
834 offset = 0;
835
836 unlock_page(page);
837 page_cache_release(page);
838 }
839
840 return res;
841}
842
843static ssize_t fuse_fill_write_pages(struct fuse_req *req,
844 struct address_space *mapping,
845 struct iov_iter *ii, loff_t pos)
846{
847 struct fuse_conn *fc = get_fuse_conn(mapping->host);
848 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
849 size_t count = 0;
850 int err;
851
Miklos Szeredif4975c62009-04-02 14:25:34 +0200852 req->in.argpages = 1;
Nick Pigginea9b9902008-04-30 00:54:42 -0700853 req->page_offset = offset;
854
855 do {
856 size_t tmp;
857 struct page *page;
858 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
859 size_t bytes = min_t(size_t, PAGE_CACHE_SIZE - offset,
860 iov_iter_count(ii));
861
862 bytes = min_t(size_t, bytes, fc->max_write - count);
863
864 again:
865 err = -EFAULT;
866 if (iov_iter_fault_in_readable(ii, bytes))
867 break;
868
869 err = -ENOMEM;
Nick Piggin54566b22009-01-04 12:00:53 -0800870 page = grab_cache_page_write_begin(mapping, index, 0);
Nick Pigginea9b9902008-04-30 00:54:42 -0700871 if (!page)
872 break;
873
anfei zhou931e80e2010-02-02 13:44:02 -0800874 if (mapping_writably_mapped(mapping))
875 flush_dcache_page(page);
876
Nick Pigginea9b9902008-04-30 00:54:42 -0700877 pagefault_disable();
878 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
879 pagefault_enable();
880 flush_dcache_page(page);
881
Johannes Weiner478e0842011-07-25 22:35:35 +0200882 mark_page_accessed(page);
883
Nick Pigginea9b9902008-04-30 00:54:42 -0700884 if (!tmp) {
885 unlock_page(page);
886 page_cache_release(page);
887 bytes = min(bytes, iov_iter_single_seg_count(ii));
888 goto again;
889 }
890
891 err = 0;
892 req->pages[req->num_pages] = page;
893 req->num_pages++;
894
895 iov_iter_advance(ii, tmp);
896 count += tmp;
897 pos += tmp;
898 offset += tmp;
899 if (offset == PAGE_CACHE_SIZE)
900 offset = 0;
901
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -0700902 if (!fc->big_writes)
903 break;
Nick Pigginea9b9902008-04-30 00:54:42 -0700904 } while (iov_iter_count(ii) && count < fc->max_write &&
905 req->num_pages < FUSE_MAX_PAGES_PER_REQ && offset == 0);
906
907 return count > 0 ? count : err;
908}
909
910static ssize_t fuse_perform_write(struct file *file,
911 struct address_space *mapping,
912 struct iov_iter *ii, loff_t pos)
913{
914 struct inode *inode = mapping->host;
915 struct fuse_conn *fc = get_fuse_conn(inode);
916 int err = 0;
917 ssize_t res = 0;
918
919 if (is_bad_inode(inode))
920 return -EIO;
921
922 do {
923 struct fuse_req *req;
924 ssize_t count;
925
926 req = fuse_get_req(fc);
927 if (IS_ERR(req)) {
928 err = PTR_ERR(req);
929 break;
930 }
931
932 count = fuse_fill_write_pages(req, mapping, ii, pos);
933 if (count <= 0) {
934 err = count;
935 } else {
936 size_t num_written;
937
938 num_written = fuse_send_write_pages(req, file, inode,
939 pos, count);
940 err = req->out.h.error;
941 if (!err) {
942 res += num_written;
943 pos += num_written;
944
945 /* break out of the loop on short write */
946 if (num_written != count)
947 err = -EIO;
948 }
949 }
950 fuse_put_request(fc, req);
951 } while (!err && iov_iter_count(ii));
952
953 if (res > 0)
954 fuse_write_update_size(inode, pos);
955
956 fuse_invalidate_attr(inode);
957
958 return res > 0 ? res : err;
959}
960
961static ssize_t fuse_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
962 unsigned long nr_segs, loff_t pos)
963{
964 struct file *file = iocb->ki_filp;
965 struct address_space *mapping = file->f_mapping;
966 size_t count = 0;
Anand Avati4273b792012-02-17 12:46:25 -0500967 size_t ocount = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -0700968 ssize_t written = 0;
Anand Avati4273b792012-02-17 12:46:25 -0500969 ssize_t written_buffered = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -0700970 struct inode *inode = mapping->host;
971 ssize_t err;
972 struct iov_iter i;
Anand Avati4273b792012-02-17 12:46:25 -0500973 loff_t endbyte = 0;
Nick Pigginea9b9902008-04-30 00:54:42 -0700974
975 WARN_ON(iocb->ki_pos != pos);
976
Anand Avati4273b792012-02-17 12:46:25 -0500977 ocount = 0;
978 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
Nick Pigginea9b9902008-04-30 00:54:42 -0700979 if (err)
980 return err;
981
Anand Avati4273b792012-02-17 12:46:25 -0500982 count = ocount;
983
Nick Pigginea9b9902008-04-30 00:54:42 -0700984 mutex_lock(&inode->i_mutex);
985 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
986
987 /* We can write back this queue in page reclaim */
988 current->backing_dev_info = mapping->backing_dev_info;
989
990 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
991 if (err)
992 goto out;
993
994 if (count == 0)
995 goto out;
996
Miklos Szeredi2f1936b2008-06-24 16:50:14 +0200997 err = file_remove_suid(file);
Nick Pigginea9b9902008-04-30 00:54:42 -0700998 if (err)
999 goto out;
1000
1001 file_update_time(file);
1002
Anand Avati4273b792012-02-17 12:46:25 -05001003 if (file->f_flags & O_DIRECT) {
1004 written = generic_file_direct_write(iocb, iov, &nr_segs,
1005 pos, &iocb->ki_pos,
1006 count, ocount);
1007 if (written < 0 || written == count)
1008 goto out;
Nick Pigginea9b9902008-04-30 00:54:42 -07001009
Anand Avati4273b792012-02-17 12:46:25 -05001010 pos += written;
1011 count -= written;
1012
1013 iov_iter_init(&i, iov, nr_segs, count, written);
1014 written_buffered = fuse_perform_write(file, mapping, &i, pos);
1015 if (written_buffered < 0) {
1016 err = written_buffered;
1017 goto out;
1018 }
1019 endbyte = pos + written_buffered - 1;
1020
1021 err = filemap_write_and_wait_range(file->f_mapping, pos,
1022 endbyte);
1023 if (err)
1024 goto out;
1025
1026 invalidate_mapping_pages(file->f_mapping,
1027 pos >> PAGE_CACHE_SHIFT,
1028 endbyte >> PAGE_CACHE_SHIFT);
1029
1030 written += written_buffered;
1031 iocb->ki_pos = pos + written_buffered;
1032 } else {
1033 iov_iter_init(&i, iov, nr_segs, count, 0);
1034 written = fuse_perform_write(file, mapping, &i, pos);
1035 if (written >= 0)
1036 iocb->ki_pos = pos + written;
1037 }
Nick Pigginea9b9902008-04-30 00:54:42 -07001038out:
1039 current->backing_dev_info = NULL;
1040 mutex_unlock(&inode->i_mutex);
1041
1042 return written ? written : err;
1043}
1044
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001045static void fuse_release_user_pages(struct fuse_req *req, int write)
1046{
1047 unsigned i;
1048
1049 for (i = 0; i < req->num_pages; i++) {
1050 struct page *page = req->pages[i];
1051 if (write)
1052 set_page_dirty_lock(page);
1053 put_page(page);
1054 }
1055}
1056
1057static int fuse_get_user_pages(struct fuse_req *req, const char __user *buf,
Miklos Szeredice60a2f2009-04-09 17:37:52 +02001058 size_t *nbytesp, int write)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001059{
Miklos Szeredice60a2f2009-04-09 17:37:52 +02001060 size_t nbytes = *nbytesp;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001061 unsigned long user_addr = (unsigned long) buf;
1062 unsigned offset = user_addr & ~PAGE_MASK;
1063 int npages;
1064
Miklos Szeredif4975c62009-04-02 14:25:34 +02001065 /* Special case for kernel I/O: can copy directly into the buffer */
1066 if (segment_eq(get_fs(), KERNEL_DS)) {
1067 if (write)
1068 req->in.args[1].value = (void *) user_addr;
1069 else
1070 req->out.args[0].value = (void *) user_addr;
1071
1072 return 0;
1073 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001074
Miklos Szeredice60a2f2009-04-09 17:37:52 +02001075 nbytes = min_t(size_t, nbytes, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001076 npages = (nbytes + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
Harvey Harrisonbd730962008-05-01 04:35:15 -07001077 npages = clamp(npages, 1, FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi1bf94ca2010-05-25 15:06:06 +02001078 npages = get_user_pages_fast(user_addr, npages, !write, req->pages);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001079 if (npages < 0)
1080 return npages;
1081
1082 req->num_pages = npages;
1083 req->page_offset = offset;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001084
1085 if (write)
1086 req->in.argpages = 1;
1087 else
1088 req->out.argpages = 1;
1089
1090 nbytes = (req->num_pages << PAGE_SHIFT) - req->page_offset;
1091 *nbytesp = min(*nbytesp, nbytes);
1092
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001093 return 0;
1094}
1095
Tejun Heo08cbf542009-04-14 10:54:53 +09001096ssize_t fuse_direct_io(struct file *file, const char __user *buf,
1097 size_t count, loff_t *ppos, int write)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001098{
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001099 struct fuse_file *ff = file->private_data;
1100 struct fuse_conn *fc = ff->fc;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001101 size_t nmax = write ? fc->max_write : fc->max_read;
1102 loff_t pos = *ppos;
1103 ssize_t res = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001104 struct fuse_req *req;
1105
Miklos Szeredice1d5a42006-04-10 22:54:58 -07001106 req = fuse_get_req(fc);
1107 if (IS_ERR(req))
1108 return PTR_ERR(req);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001109
1110 while (count) {
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001111 size_t nres;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001112 fl_owner_t owner = current->files;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001113 size_t nbytes = min(count, nmax);
1114 int err = fuse_get_user_pages(req, buf, &nbytes, write);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001115 if (err) {
1116 res = err;
1117 break;
1118 }
Miklos Szeredif4975c62009-04-02 14:25:34 +02001119
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001120 if (write)
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001121 nres = fuse_send_write(req, file, pos, nbytes, owner);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001122 else
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001123 nres = fuse_send_read(req, file, pos, nbytes, owner);
1124
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001125 fuse_release_user_pages(req, !write);
1126 if (req->out.h.error) {
1127 if (!res)
1128 res = req->out.h.error;
1129 break;
1130 } else if (nres > nbytes) {
1131 res = -EIO;
1132 break;
1133 }
1134 count -= nres;
1135 res += nres;
1136 pos += nres;
1137 buf += nres;
1138 if (nres != nbytes)
1139 break;
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001140 if (count) {
1141 fuse_put_request(fc, req);
1142 req = fuse_get_req(fc);
1143 if (IS_ERR(req))
1144 break;
1145 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001146 }
Anand V. Avatif60311d2009-10-22 06:24:52 -07001147 if (!IS_ERR(req))
1148 fuse_put_request(fc, req);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001149 if (res > 0)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001150 *ppos = pos;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001151
1152 return res;
1153}
Tejun Heo08cbf542009-04-14 10:54:53 +09001154EXPORT_SYMBOL_GPL(fuse_direct_io);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001155
1156static ssize_t fuse_direct_read(struct file *file, char __user *buf,
1157 size_t count, loff_t *ppos)
1158{
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001159 ssize_t res;
1160 struct inode *inode = file->f_path.dentry->d_inode;
1161
1162 if (is_bad_inode(inode))
1163 return -EIO;
1164
1165 res = fuse_direct_io(file, buf, count, ppos, 0);
1166
1167 fuse_invalidate_attr(inode);
1168
1169 return res;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001170}
1171
Anand Avati4273b792012-02-17 12:46:25 -05001172static ssize_t __fuse_direct_write(struct file *file, const char __user *buf,
1173 size_t count, loff_t *ppos)
1174{
1175 struct inode *inode = file->f_path.dentry->d_inode;
1176 ssize_t res;
1177
1178 res = generic_write_checks(file, ppos, &count, 0);
1179 if (!res) {
1180 res = fuse_direct_io(file, buf, count, ppos, 1);
1181 if (res > 0)
1182 fuse_write_update_size(inode, *ppos);
1183 }
1184
1185 fuse_invalidate_attr(inode);
1186
1187 return res;
1188}
1189
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001190static ssize_t fuse_direct_write(struct file *file, const char __user *buf,
1191 size_t count, loff_t *ppos)
1192{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001193 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001194 ssize_t res;
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001195
1196 if (is_bad_inode(inode))
1197 return -EIO;
1198
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001199 /* Don't allow parallel writes to the same file */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001200 mutex_lock(&inode->i_mutex);
Anand Avati4273b792012-02-17 12:46:25 -05001201 res = __fuse_direct_write(file, buf, count, ppos);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001202 mutex_unlock(&inode->i_mutex);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001203
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001204 return res;
1205}
1206
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001207static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001208{
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001209 __free_page(req->pages[0]);
Miklos Szeredi5a18ec12011-02-25 14:44:58 +01001210 fuse_file_put(req->ff, false);
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001211}
1212
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001213static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001214{
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001215 struct inode *inode = req->inode;
1216 struct fuse_inode *fi = get_fuse_inode(inode);
1217 struct backing_dev_info *bdi = inode->i_mapping->backing_dev_info;
1218
1219 list_del(&req->writepages_entry);
1220 dec_bdi_stat(bdi, BDI_WRITEBACK);
1221 dec_zone_page_state(req->pages[0], NR_WRITEBACK_TEMP);
1222 bdi_writeout_inc(bdi);
1223 wake_up(&fi->page_waitq);
1224}
1225
1226/* Called under fc->lock, may release and reacquire it */
1227static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001228__releases(fc->lock)
1229__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001230{
1231 struct fuse_inode *fi = get_fuse_inode(req->inode);
1232 loff_t size = i_size_read(req->inode);
1233 struct fuse_write_in *inarg = &req->misc.write.in;
1234
1235 if (!fc->connected)
1236 goto out_free;
1237
1238 if (inarg->offset + PAGE_CACHE_SIZE <= size) {
1239 inarg->size = PAGE_CACHE_SIZE;
1240 } else if (inarg->offset < size) {
1241 inarg->size = size & (PAGE_CACHE_SIZE - 1);
1242 } else {
1243 /* Got truncated off completely */
1244 goto out_free;
1245 }
1246
1247 req->in.args[1].size = inarg->size;
1248 fi->writectr++;
Tejun Heob93f8582008-11-26 12:03:55 +01001249 fuse_request_send_background_locked(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001250 return;
1251
1252 out_free:
1253 fuse_writepage_finish(fc, req);
1254 spin_unlock(&fc->lock);
1255 fuse_writepage_free(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +01001256 fuse_put_request(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001257 spin_lock(&fc->lock);
1258}
1259
1260/*
1261 * If fi->writectr is positive (no truncate or fsync going on) send
1262 * all queued writepage requests.
1263 *
1264 * Called with fc->lock
1265 */
1266void fuse_flush_writepages(struct inode *inode)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001267__releases(fc->lock)
1268__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001269{
1270 struct fuse_conn *fc = get_fuse_conn(inode);
1271 struct fuse_inode *fi = get_fuse_inode(inode);
1272 struct fuse_req *req;
1273
1274 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1275 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1276 list_del_init(&req->list);
1277 fuse_send_writepage(fc, req);
1278 }
1279}
1280
1281static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1282{
1283 struct inode *inode = req->inode;
1284 struct fuse_inode *fi = get_fuse_inode(inode);
1285
1286 mapping_set_error(inode->i_mapping, req->out.h.error);
1287 spin_lock(&fc->lock);
1288 fi->writectr--;
1289 fuse_writepage_finish(fc, req);
1290 spin_unlock(&fc->lock);
1291 fuse_writepage_free(fc, req);
1292}
1293
1294static int fuse_writepage_locked(struct page *page)
1295{
1296 struct address_space *mapping = page->mapping;
1297 struct inode *inode = mapping->host;
1298 struct fuse_conn *fc = get_fuse_conn(inode);
1299 struct fuse_inode *fi = get_fuse_inode(inode);
1300 struct fuse_req *req;
1301 struct fuse_file *ff;
1302 struct page *tmp_page;
1303
1304 set_page_writeback(page);
1305
1306 req = fuse_request_alloc_nofs();
1307 if (!req)
1308 goto err;
1309
1310 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1311 if (!tmp_page)
1312 goto err_free;
1313
1314 spin_lock(&fc->lock);
1315 BUG_ON(list_empty(&fi->write_files));
1316 ff = list_entry(fi->write_files.next, struct fuse_file, write_entry);
1317 req->ff = fuse_file_get(ff);
1318 spin_unlock(&fc->lock);
1319
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001320 fuse_write_fill(req, ff, page_offset(page), 0);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001321
1322 copy_highpage(tmp_page, page);
Miklos Szeredi2d698b02009-04-28 16:56:36 +02001323 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001324 req->in.argpages = 1;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001325 req->num_pages = 1;
1326 req->pages[0] = tmp_page;
1327 req->page_offset = 0;
1328 req->end = fuse_writepage_end;
1329 req->inode = inode;
1330
1331 inc_bdi_stat(mapping->backing_dev_info, BDI_WRITEBACK);
1332 inc_zone_page_state(tmp_page, NR_WRITEBACK_TEMP);
1333 end_page_writeback(page);
1334
1335 spin_lock(&fc->lock);
1336 list_add(&req->writepages_entry, &fi->writepages);
1337 list_add_tail(&req->list, &fi->queued_writes);
1338 fuse_flush_writepages(inode);
1339 spin_unlock(&fc->lock);
1340
1341 return 0;
1342
1343err_free:
1344 fuse_request_free(req);
1345err:
1346 end_page_writeback(page);
1347 return -ENOMEM;
1348}
1349
1350static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1351{
1352 int err;
1353
1354 err = fuse_writepage_locked(page);
1355 unlock_page(page);
1356
1357 return err;
1358}
1359
1360static int fuse_launder_page(struct page *page)
1361{
1362 int err = 0;
1363 if (clear_page_dirty_for_io(page)) {
1364 struct inode *inode = page->mapping->host;
1365 err = fuse_writepage_locked(page);
1366 if (!err)
1367 fuse_wait_on_page_writeback(inode, page->index);
1368 }
1369 return err;
1370}
1371
1372/*
1373 * Write back dirty pages now, because there may not be any suitable
1374 * open files later
1375 */
1376static void fuse_vma_close(struct vm_area_struct *vma)
1377{
1378 filemap_write_and_wait(vma->vm_file->f_mapping);
1379}
1380
1381/*
1382 * Wait for writeback against this page to complete before allowing it
1383 * to be marked dirty again, and hence written back again, possibly
1384 * before the previous writepage completed.
1385 *
1386 * Block here, instead of in ->writepage(), so that the userspace fs
1387 * can only block processes actually operating on the filesystem.
1388 *
1389 * Otherwise unprivileged userspace fs would be able to block
1390 * unrelated:
1391 *
1392 * - page migration
1393 * - sync(2)
1394 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
1395 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07001396static int fuse_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001397{
Nick Pigginc2ec1752009-03-31 15:23:21 -07001398 struct page *page = vmf->page;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001399 /*
1400 * Don't use page->mapping as it may become NULL from a
1401 * concurrent truncate.
1402 */
1403 struct inode *inode = vma->vm_file->f_mapping->host;
1404
1405 fuse_wait_on_page_writeback(inode, page->index);
1406 return 0;
1407}
1408
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001409static const struct vm_operations_struct fuse_file_vm_ops = {
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001410 .close = fuse_vma_close,
1411 .fault = filemap_fault,
1412 .page_mkwrite = fuse_page_mkwrite,
1413};
1414
1415static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
1416{
1417 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE)) {
1418 struct inode *inode = file->f_dentry->d_inode;
1419 struct fuse_conn *fc = get_fuse_conn(inode);
1420 struct fuse_inode *fi = get_fuse_inode(inode);
1421 struct fuse_file *ff = file->private_data;
1422 /*
1423 * file may be written through mmap, so chain it onto the
1424 * inodes's write_file list
1425 */
1426 spin_lock(&fc->lock);
1427 if (list_empty(&ff->write_entry))
1428 list_add(&ff->write_entry, &fi->write_files);
1429 spin_unlock(&fc->lock);
1430 }
1431 file_accessed(file);
1432 vma->vm_ops = &fuse_file_vm_ops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001433 return 0;
1434}
1435
Miklos Szeredifc280c92009-04-02 14:25:35 +02001436static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
1437{
1438 /* Can't provide the coherency needed for MAP_SHARED */
1439 if (vma->vm_flags & VM_MAYSHARE)
1440 return -ENODEV;
1441
Miklos Szeredi3121bfe2009-04-09 17:37:53 +02001442 invalidate_inode_pages2(file->f_mapping);
1443
Miklos Szeredifc280c92009-04-02 14:25:35 +02001444 return generic_file_mmap(file, vma);
1445}
1446
Miklos Szeredi71421252006-06-25 05:48:52 -07001447static int convert_fuse_file_lock(const struct fuse_file_lock *ffl,
1448 struct file_lock *fl)
1449{
1450 switch (ffl->type) {
1451 case F_UNLCK:
1452 break;
1453
1454 case F_RDLCK:
1455 case F_WRLCK:
1456 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
1457 ffl->end < ffl->start)
1458 return -EIO;
1459
1460 fl->fl_start = ffl->start;
1461 fl->fl_end = ffl->end;
1462 fl->fl_pid = ffl->pid;
1463 break;
1464
1465 default:
1466 return -EIO;
1467 }
1468 fl->fl_type = ffl->type;
1469 return 0;
1470}
1471
1472static void fuse_lk_fill(struct fuse_req *req, struct file *file,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001473 const struct file_lock *fl, int opcode, pid_t pid,
1474 int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07001475{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001476 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07001477 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi71421252006-06-25 05:48:52 -07001478 struct fuse_file *ff = file->private_data;
1479 struct fuse_lk_in *arg = &req->misc.lk_in;
1480
1481 arg->fh = ff->fh;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07001482 arg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
Miklos Szeredi71421252006-06-25 05:48:52 -07001483 arg->lk.start = fl->fl_start;
1484 arg->lk.end = fl->fl_end;
1485 arg->lk.type = fl->fl_type;
1486 arg->lk.pid = pid;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001487 if (flock)
1488 arg->lk_flags |= FUSE_LK_FLOCK;
Miklos Szeredi71421252006-06-25 05:48:52 -07001489 req->in.h.opcode = opcode;
1490 req->in.h.nodeid = get_node_id(inode);
1491 req->in.numargs = 1;
1492 req->in.args[0].size = sizeof(*arg);
1493 req->in.args[0].value = arg;
1494}
1495
1496static int fuse_getlk(struct file *file, struct file_lock *fl)
1497{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001498 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi71421252006-06-25 05:48:52 -07001499 struct fuse_conn *fc = get_fuse_conn(inode);
1500 struct fuse_req *req;
1501 struct fuse_lk_out outarg;
1502 int err;
1503
1504 req = fuse_get_req(fc);
1505 if (IS_ERR(req))
1506 return PTR_ERR(req);
1507
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001508 fuse_lk_fill(req, file, fl, FUSE_GETLK, 0, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07001509 req->out.numargs = 1;
1510 req->out.args[0].size = sizeof(outarg);
1511 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01001512 fuse_request_send(fc, req);
Miklos Szeredi71421252006-06-25 05:48:52 -07001513 err = req->out.h.error;
1514 fuse_put_request(fc, req);
1515 if (!err)
1516 err = convert_fuse_file_lock(&outarg.lk, fl);
1517
1518 return err;
1519}
1520
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001521static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07001522{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001523 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi71421252006-06-25 05:48:52 -07001524 struct fuse_conn *fc = get_fuse_conn(inode);
1525 struct fuse_req *req;
1526 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
1527 pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0;
1528 int err;
1529
J. Bruce Fields8fb47a42011-07-20 20:21:59 -04001530 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
Miklos Szeredi48e90762008-07-25 01:49:02 -07001531 /* NLM needs asynchronous locks, which we don't support yet */
1532 return -ENOLCK;
1533 }
1534
Miklos Szeredi71421252006-06-25 05:48:52 -07001535 /* Unlock on close is handled by the flush method */
1536 if (fl->fl_flags & FL_CLOSE)
1537 return 0;
1538
1539 req = fuse_get_req(fc);
1540 if (IS_ERR(req))
1541 return PTR_ERR(req);
1542
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001543 fuse_lk_fill(req, file, fl, opcode, pid, flock);
Tejun Heob93f8582008-11-26 12:03:55 +01001544 fuse_request_send(fc, req);
Miklos Szeredi71421252006-06-25 05:48:52 -07001545 err = req->out.h.error;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001546 /* locking is restartable */
1547 if (err == -EINTR)
1548 err = -ERESTARTSYS;
Miklos Szeredi71421252006-06-25 05:48:52 -07001549 fuse_put_request(fc, req);
1550 return err;
1551}
1552
1553static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
1554{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001555 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi71421252006-06-25 05:48:52 -07001556 struct fuse_conn *fc = get_fuse_conn(inode);
1557 int err;
1558
Miklos Szeredi48e90762008-07-25 01:49:02 -07001559 if (cmd == F_CANCELLK) {
1560 err = 0;
1561 } else if (cmd == F_GETLK) {
Miklos Szeredi71421252006-06-25 05:48:52 -07001562 if (fc->no_lock) {
Marc Eshel9d6a8c52007-02-21 00:55:18 -05001563 posix_test_lock(file, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07001564 err = 0;
1565 } else
1566 err = fuse_getlk(file, fl);
1567 } else {
1568 if (fc->no_lock)
Miklos Szeredi48e90762008-07-25 01:49:02 -07001569 err = posix_lock_file(file, fl, NULL);
Miklos Szeredi71421252006-06-25 05:48:52 -07001570 else
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001571 err = fuse_setlk(file, fl, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07001572 }
1573 return err;
1574}
1575
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001576static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
1577{
1578 struct inode *inode = file->f_path.dentry->d_inode;
1579 struct fuse_conn *fc = get_fuse_conn(inode);
1580 int err;
1581
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02001582 if (fc->no_flock) {
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001583 err = flock_lock_file_wait(file, fl);
1584 } else {
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02001585 struct fuse_file *ff = file->private_data;
1586
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001587 /* emulate flock with POSIX locks */
1588 fl->fl_owner = (fl_owner_t) file;
Miklos Szeredi37fb3a32011-08-08 16:08:08 +02001589 ff->flock = true;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001590 err = fuse_setlk(file, fl, 1);
1591 }
1592
1593 return err;
1594}
1595
Miklos Szeredib2d22722006-12-06 20:35:51 -08001596static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
1597{
1598 struct inode *inode = mapping->host;
1599 struct fuse_conn *fc = get_fuse_conn(inode);
1600 struct fuse_req *req;
1601 struct fuse_bmap_in inarg;
1602 struct fuse_bmap_out outarg;
1603 int err;
1604
1605 if (!inode->i_sb->s_bdev || fc->no_bmap)
1606 return 0;
1607
1608 req = fuse_get_req(fc);
1609 if (IS_ERR(req))
1610 return 0;
1611
1612 memset(&inarg, 0, sizeof(inarg));
1613 inarg.block = block;
1614 inarg.blocksize = inode->i_sb->s_blocksize;
1615 req->in.h.opcode = FUSE_BMAP;
1616 req->in.h.nodeid = get_node_id(inode);
1617 req->in.numargs = 1;
1618 req->in.args[0].size = sizeof(inarg);
1619 req->in.args[0].value = &inarg;
1620 req->out.numargs = 1;
1621 req->out.args[0].size = sizeof(outarg);
1622 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01001623 fuse_request_send(fc, req);
Miklos Szeredib2d22722006-12-06 20:35:51 -08001624 err = req->out.h.error;
1625 fuse_put_request(fc, req);
1626 if (err == -ENOSYS)
1627 fc->no_bmap = 1;
1628
1629 return err ? 0 : outarg.block;
1630}
1631
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001632static loff_t fuse_file_llseek(struct file *file, loff_t offset, int origin)
1633{
1634 loff_t retval;
1635 struct inode *inode = file->f_path.dentry->d_inode;
1636
Miklos Szeredic07c3d12011-12-13 11:58:48 +01001637 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
1638 if (origin == SEEK_CUR || origin == SEEK_SET)
1639 return generic_file_llseek(file, offset, origin);
Josef Bacik06222e42011-07-18 13:21:38 -04001640
Miklos Szeredic07c3d12011-12-13 11:58:48 +01001641 mutex_lock(&inode->i_mutex);
1642 retval = fuse_update_attributes(inode, NULL, file, NULL);
1643 if (!retval)
1644 retval = generic_file_llseek(file, offset, origin);
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001645 mutex_unlock(&inode->i_mutex);
Miklos Szeredic07c3d12011-12-13 11:58:48 +01001646
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001647 return retval;
1648}
1649
Tejun Heo59efec72008-11-26 12:03:55 +01001650static int fuse_ioctl_copy_user(struct page **pages, struct iovec *iov,
1651 unsigned int nr_segs, size_t bytes, bool to_user)
1652{
1653 struct iov_iter ii;
1654 int page_idx = 0;
1655
1656 if (!bytes)
1657 return 0;
1658
1659 iov_iter_init(&ii, iov, nr_segs, bytes, 0);
1660
1661 while (iov_iter_count(&ii)) {
1662 struct page *page = pages[page_idx++];
1663 size_t todo = min_t(size_t, PAGE_SIZE, iov_iter_count(&ii));
Dan Carpenter4aa0edd2010-05-07 10:28:17 +02001664 void *kaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01001665
Dan Carpenter4aa0edd2010-05-07 10:28:17 +02001666 kaddr = kmap(page);
Tejun Heo59efec72008-11-26 12:03:55 +01001667
1668 while (todo) {
1669 char __user *uaddr = ii.iov->iov_base + ii.iov_offset;
1670 size_t iov_len = ii.iov->iov_len - ii.iov_offset;
1671 size_t copy = min(todo, iov_len);
1672 size_t left;
1673
1674 if (!to_user)
1675 left = copy_from_user(kaddr, uaddr, copy);
1676 else
1677 left = copy_to_user(uaddr, kaddr, copy);
1678
1679 if (unlikely(left))
1680 return -EFAULT;
1681
1682 iov_iter_advance(&ii, copy);
1683 todo -= copy;
1684 kaddr += copy;
1685 }
1686
Jens Axboe0bd87182009-11-03 11:40:44 +01001687 kunmap(page);
Tejun Heo59efec72008-11-26 12:03:55 +01001688 }
1689
1690 return 0;
1691}
1692
1693/*
Miklos Szeredid9d318d2010-11-30 16:39:27 +01001694 * CUSE servers compiled on 32bit broke on 64bit kernels because the
1695 * ABI was defined to be 'struct iovec' which is different on 32bit
1696 * and 64bit. Fortunately we can determine which structure the server
1697 * used from the size of the reply.
1698 */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01001699static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
1700 size_t transferred, unsigned count,
1701 bool is_compat)
Miklos Szeredid9d318d2010-11-30 16:39:27 +01001702{
1703#ifdef CONFIG_COMPAT
1704 if (count * sizeof(struct compat_iovec) == transferred) {
1705 struct compat_iovec *ciov = src;
1706 unsigned i;
1707
1708 /*
1709 * With this interface a 32bit server cannot support
1710 * non-compat (i.e. ones coming from 64bit apps) ioctl
1711 * requests
1712 */
1713 if (!is_compat)
1714 return -EINVAL;
1715
1716 for (i = 0; i < count; i++) {
1717 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
1718 dst[i].iov_len = ciov[i].iov_len;
1719 }
1720 return 0;
1721 }
1722#endif
1723
1724 if (count * sizeof(struct iovec) != transferred)
1725 return -EIO;
1726
1727 memcpy(dst, src, transferred);
1728 return 0;
1729}
1730
Miklos Szeredi75727772010-11-30 16:39:27 +01001731/* Make sure iov_length() won't overflow */
1732static int fuse_verify_ioctl_iov(struct iovec *iov, size_t count)
1733{
1734 size_t n;
1735 u32 max = FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT;
1736
1737 for (n = 0; n < count; n++) {
1738 if (iov->iov_len > (size_t) max)
1739 return -ENOMEM;
1740 max -= iov->iov_len;
1741 }
1742 return 0;
1743}
1744
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01001745static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
1746 void *src, size_t transferred, unsigned count,
1747 bool is_compat)
1748{
1749 unsigned i;
1750 struct fuse_ioctl_iovec *fiov = src;
1751
1752 if (fc->minor < 16) {
1753 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
1754 count, is_compat);
1755 }
1756
1757 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
1758 return -EIO;
1759
1760 for (i = 0; i < count; i++) {
1761 /* Did the server supply an inappropriate value? */
1762 if (fiov[i].base != (unsigned long) fiov[i].base ||
1763 fiov[i].len != (unsigned long) fiov[i].len)
1764 return -EIO;
1765
1766 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
1767 dst[i].iov_len = (size_t) fiov[i].len;
1768
1769#ifdef CONFIG_COMPAT
1770 if (is_compat &&
1771 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
1772 (compat_size_t) dst[i].iov_len != fiov[i].len))
1773 return -EIO;
1774#endif
1775 }
1776
1777 return 0;
1778}
1779
1780
Miklos Szeredid9d318d2010-11-30 16:39:27 +01001781/*
Tejun Heo59efec72008-11-26 12:03:55 +01001782 * For ioctls, there is no generic way to determine how much memory
1783 * needs to be read and/or written. Furthermore, ioctls are allowed
1784 * to dereference the passed pointer, so the parameter requires deep
1785 * copying but FUSE has no idea whatsoever about what to copy in or
1786 * out.
1787 *
1788 * This is solved by allowing FUSE server to retry ioctl with
1789 * necessary in/out iovecs. Let's assume the ioctl implementation
1790 * needs to read in the following structure.
1791 *
1792 * struct a {
1793 * char *buf;
1794 * size_t buflen;
1795 * }
1796 *
1797 * On the first callout to FUSE server, inarg->in_size and
1798 * inarg->out_size will be NULL; then, the server completes the ioctl
1799 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
1800 * the actual iov array to
1801 *
1802 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
1803 *
1804 * which tells FUSE to copy in the requested area and retry the ioctl.
1805 * On the second round, the server has access to the structure and
1806 * from that it can tell what to look for next, so on the invocation,
1807 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
1808 *
1809 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
1810 * { .iov_base = a.buf, .iov_len = a.buflen } }
1811 *
1812 * FUSE will copy both struct a and the pointed buffer from the
1813 * process doing the ioctl and retry ioctl with both struct a and the
1814 * buffer.
1815 *
1816 * This time, FUSE server has everything it needs and completes ioctl
1817 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
1818 *
1819 * Copying data out works the same way.
1820 *
1821 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
1822 * automatically initializes in and out iovs by decoding @cmd with
1823 * _IOC_* macros and the server is not allowed to request RETRY. This
1824 * limits ioctl data transfers to well-formed ioctls and is the forced
1825 * behavior for all FUSE servers.
1826 */
Tejun Heo08cbf542009-04-14 10:54:53 +09001827long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
1828 unsigned int flags)
Tejun Heo59efec72008-11-26 12:03:55 +01001829{
Tejun Heo59efec72008-11-26 12:03:55 +01001830 struct fuse_file *ff = file->private_data;
Miklos Szeredid36f2482009-04-28 16:56:39 +02001831 struct fuse_conn *fc = ff->fc;
Tejun Heo59efec72008-11-26 12:03:55 +01001832 struct fuse_ioctl_in inarg = {
1833 .fh = ff->fh,
1834 .cmd = cmd,
1835 .arg = arg,
1836 .flags = flags
1837 };
1838 struct fuse_ioctl_out outarg;
1839 struct fuse_req *req = NULL;
1840 struct page **pages = NULL;
Miklos Szeredi8ac83502010-12-07 20:16:56 +01001841 struct iovec *iov_page = NULL;
Tejun Heo59efec72008-11-26 12:03:55 +01001842 struct iovec *in_iov = NULL, *out_iov = NULL;
1843 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
1844 size_t in_size, out_size, transferred;
1845 int err;
1846
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01001847#if BITS_PER_LONG == 32
1848 inarg.flags |= FUSE_IOCTL_32BIT;
1849#else
1850 if (flags & FUSE_IOCTL_COMPAT)
1851 inarg.flags |= FUSE_IOCTL_32BIT;
1852#endif
1853
Tejun Heo59efec72008-11-26 12:03:55 +01001854 /* assume all the iovs returned by client always fits in a page */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01001855 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
Tejun Heo59efec72008-11-26 12:03:55 +01001856
Tejun Heo59efec72008-11-26 12:03:55 +01001857 err = -ENOMEM;
Thomas Meyerc411cc82011-11-29 22:08:00 +01001858 pages = kcalloc(FUSE_MAX_PAGES_PER_REQ, sizeof(pages[0]), GFP_KERNEL);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01001859 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
Tejun Heo59efec72008-11-26 12:03:55 +01001860 if (!pages || !iov_page)
1861 goto out;
1862
1863 /*
1864 * If restricted, initialize IO parameters as encoded in @cmd.
1865 * RETRY from server is not allowed.
1866 */
1867 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01001868 struct iovec *iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01001869
Miklos Szeredic9f05232008-12-02 14:49:42 +01001870 iov->iov_base = (void __user *)arg;
Tejun Heo59efec72008-11-26 12:03:55 +01001871 iov->iov_len = _IOC_SIZE(cmd);
1872
1873 if (_IOC_DIR(cmd) & _IOC_WRITE) {
1874 in_iov = iov;
1875 in_iovs = 1;
1876 }
1877
1878 if (_IOC_DIR(cmd) & _IOC_READ) {
1879 out_iov = iov;
1880 out_iovs = 1;
1881 }
1882 }
1883
1884 retry:
1885 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
1886 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
1887
1888 /*
1889 * Out data can be used either for actual out data or iovs,
1890 * make sure there always is at least one page.
1891 */
1892 out_size = max_t(size_t, out_size, PAGE_SIZE);
1893 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
1894
1895 /* make sure there are enough buffer pages and init request with them */
1896 err = -ENOMEM;
1897 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
1898 goto out;
1899 while (num_pages < max_pages) {
1900 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
1901 if (!pages[num_pages])
1902 goto out;
1903 num_pages++;
1904 }
1905
1906 req = fuse_get_req(fc);
1907 if (IS_ERR(req)) {
1908 err = PTR_ERR(req);
1909 req = NULL;
1910 goto out;
1911 }
1912 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
1913 req->num_pages = num_pages;
1914
1915 /* okay, let's send it to the client */
1916 req->in.h.opcode = FUSE_IOCTL;
Miklos Szeredid36f2482009-04-28 16:56:39 +02001917 req->in.h.nodeid = ff->nodeid;
Tejun Heo59efec72008-11-26 12:03:55 +01001918 req->in.numargs = 1;
1919 req->in.args[0].size = sizeof(inarg);
1920 req->in.args[0].value = &inarg;
1921 if (in_size) {
1922 req->in.numargs++;
1923 req->in.args[1].size = in_size;
1924 req->in.argpages = 1;
1925
1926 err = fuse_ioctl_copy_user(pages, in_iov, in_iovs, in_size,
1927 false);
1928 if (err)
1929 goto out;
1930 }
1931
1932 req->out.numargs = 2;
1933 req->out.args[0].size = sizeof(outarg);
1934 req->out.args[0].value = &outarg;
1935 req->out.args[1].size = out_size;
1936 req->out.argpages = 1;
1937 req->out.argvar = 1;
1938
Tejun Heob93f8582008-11-26 12:03:55 +01001939 fuse_request_send(fc, req);
Tejun Heo59efec72008-11-26 12:03:55 +01001940 err = req->out.h.error;
1941 transferred = req->out.args[1].size;
1942 fuse_put_request(fc, req);
1943 req = NULL;
1944 if (err)
1945 goto out;
1946
1947 /* did it ask for retry? */
1948 if (outarg.flags & FUSE_IOCTL_RETRY) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01001949 void *vaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01001950
1951 /* no retry if in restricted mode */
1952 err = -EIO;
1953 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
1954 goto out;
1955
1956 in_iovs = outarg.in_iovs;
1957 out_iovs = outarg.out_iovs;
1958
1959 /*
1960 * Make sure things are in boundary, separate checks
1961 * are to protect against overflow.
1962 */
1963 err = -ENOMEM;
1964 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
1965 out_iovs > FUSE_IOCTL_MAX_IOV ||
1966 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
1967 goto out;
1968
Cong Wang2408f6e2011-11-25 23:14:30 +08001969 vaddr = kmap_atomic(pages[0]);
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01001970 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
Miklos Szeredid9d318d2010-11-30 16:39:27 +01001971 transferred, in_iovs + out_iovs,
1972 (flags & FUSE_IOCTL_COMPAT) != 0);
Cong Wang2408f6e2011-11-25 23:14:30 +08001973 kunmap_atomic(vaddr);
Miklos Szeredid9d318d2010-11-30 16:39:27 +01001974 if (err)
1975 goto out;
Tejun Heo59efec72008-11-26 12:03:55 +01001976
Miklos Szeredi8ac83502010-12-07 20:16:56 +01001977 in_iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01001978 out_iov = in_iov + in_iovs;
1979
Miklos Szeredi75727772010-11-30 16:39:27 +01001980 err = fuse_verify_ioctl_iov(in_iov, in_iovs);
1981 if (err)
1982 goto out;
1983
1984 err = fuse_verify_ioctl_iov(out_iov, out_iovs);
1985 if (err)
1986 goto out;
1987
Tejun Heo59efec72008-11-26 12:03:55 +01001988 goto retry;
1989 }
1990
1991 err = -EIO;
1992 if (transferred > inarg.out_size)
1993 goto out;
1994
1995 err = fuse_ioctl_copy_user(pages, out_iov, out_iovs, transferred, true);
1996 out:
1997 if (req)
1998 fuse_put_request(fc, req);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01001999 free_page((unsigned long) iov_page);
Tejun Heo59efec72008-11-26 12:03:55 +01002000 while (num_pages)
2001 __free_page(pages[--num_pages]);
2002 kfree(pages);
2003
2004 return err ? err : outarg.result;
2005}
Tejun Heo08cbf542009-04-14 10:54:53 +09002006EXPORT_SYMBOL_GPL(fuse_do_ioctl);
Tejun Heo59efec72008-11-26 12:03:55 +01002007
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002008long fuse_ioctl_common(struct file *file, unsigned int cmd,
2009 unsigned long arg, unsigned int flags)
Miklos Szeredid36f2482009-04-28 16:56:39 +02002010{
2011 struct inode *inode = file->f_dentry->d_inode;
2012 struct fuse_conn *fc = get_fuse_conn(inode);
2013
2014 if (!fuse_allow_task(fc, current))
2015 return -EACCES;
2016
2017 if (is_bad_inode(inode))
2018 return -EIO;
2019
2020 return fuse_do_ioctl(file, cmd, arg, flags);
2021}
2022
Tejun Heo59efec72008-11-26 12:03:55 +01002023static long fuse_file_ioctl(struct file *file, unsigned int cmd,
2024 unsigned long arg)
2025{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002026 return fuse_ioctl_common(file, cmd, arg, 0);
Tejun Heo59efec72008-11-26 12:03:55 +01002027}
2028
2029static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
2030 unsigned long arg)
2031{
Miklos Szeredib18da0c2011-12-13 11:58:49 +01002032 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
Tejun Heo59efec72008-11-26 12:03:55 +01002033}
2034
Tejun Heo95668a62008-11-26 12:03:55 +01002035/*
2036 * All files which have been polled are linked to RB tree
2037 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2038 * find the matching one.
2039 */
2040static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2041 struct rb_node **parent_out)
2042{
2043 struct rb_node **link = &fc->polled_files.rb_node;
2044 struct rb_node *last = NULL;
2045
2046 while (*link) {
2047 struct fuse_file *ff;
2048
2049 last = *link;
2050 ff = rb_entry(last, struct fuse_file, polled_node);
2051
2052 if (kh < ff->kh)
2053 link = &last->rb_left;
2054 else if (kh > ff->kh)
2055 link = &last->rb_right;
2056 else
2057 return link;
2058 }
2059
2060 if (parent_out)
2061 *parent_out = last;
2062 return link;
2063}
2064
2065/*
2066 * The file is about to be polled. Make sure it's on the polled_files
2067 * RB tree. Note that files once added to the polled_files tree are
2068 * not removed before the file is released. This is because a file
2069 * polled once is likely to be polled again.
2070 */
2071static void fuse_register_polled_file(struct fuse_conn *fc,
2072 struct fuse_file *ff)
2073{
2074 spin_lock(&fc->lock);
2075 if (RB_EMPTY_NODE(&ff->polled_node)) {
2076 struct rb_node **link, *parent;
2077
2078 link = fuse_find_polled_node(fc, ff->kh, &parent);
2079 BUG_ON(*link);
2080 rb_link_node(&ff->polled_node, parent, link);
2081 rb_insert_color(&ff->polled_node, &fc->polled_files);
2082 }
2083 spin_unlock(&fc->lock);
2084}
2085
Tejun Heo08cbf542009-04-14 10:54:53 +09002086unsigned fuse_file_poll(struct file *file, poll_table *wait)
Tejun Heo95668a62008-11-26 12:03:55 +01002087{
Tejun Heo95668a62008-11-26 12:03:55 +01002088 struct fuse_file *ff = file->private_data;
Miklos Szeredi797759a2009-04-28 16:56:41 +02002089 struct fuse_conn *fc = ff->fc;
Tejun Heo95668a62008-11-26 12:03:55 +01002090 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2091 struct fuse_poll_out outarg;
2092 struct fuse_req *req;
2093 int err;
2094
2095 if (fc->no_poll)
2096 return DEFAULT_POLLMASK;
2097
2098 poll_wait(file, &ff->poll_wait, wait);
2099
2100 /*
2101 * Ask for notification iff there's someone waiting for it.
2102 * The client may ignore the flag and always notify.
2103 */
2104 if (waitqueue_active(&ff->poll_wait)) {
2105 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2106 fuse_register_polled_file(fc, ff);
2107 }
2108
2109 req = fuse_get_req(fc);
2110 if (IS_ERR(req))
Miklos Szeredi201fa692009-06-30 20:06:24 +02002111 return POLLERR;
Tejun Heo95668a62008-11-26 12:03:55 +01002112
2113 req->in.h.opcode = FUSE_POLL;
Miklos Szeredi797759a2009-04-28 16:56:41 +02002114 req->in.h.nodeid = ff->nodeid;
Tejun Heo95668a62008-11-26 12:03:55 +01002115 req->in.numargs = 1;
2116 req->in.args[0].size = sizeof(inarg);
2117 req->in.args[0].value = &inarg;
2118 req->out.numargs = 1;
2119 req->out.args[0].size = sizeof(outarg);
2120 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01002121 fuse_request_send(fc, req);
Tejun Heo95668a62008-11-26 12:03:55 +01002122 err = req->out.h.error;
2123 fuse_put_request(fc, req);
2124
2125 if (!err)
2126 return outarg.revents;
2127 if (err == -ENOSYS) {
2128 fc->no_poll = 1;
2129 return DEFAULT_POLLMASK;
2130 }
2131 return POLLERR;
2132}
Tejun Heo08cbf542009-04-14 10:54:53 +09002133EXPORT_SYMBOL_GPL(fuse_file_poll);
Tejun Heo95668a62008-11-26 12:03:55 +01002134
2135/*
2136 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2137 * wakes up the poll waiters.
2138 */
2139int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2140 struct fuse_notify_poll_wakeup_out *outarg)
2141{
2142 u64 kh = outarg->kh;
2143 struct rb_node **link;
2144
2145 spin_lock(&fc->lock);
2146
2147 link = fuse_find_polled_node(fc, kh, NULL);
2148 if (*link) {
2149 struct fuse_file *ff;
2150
2151 ff = rb_entry(*link, struct fuse_file, polled_node);
2152 wake_up_interruptible_sync(&ff->poll_wait);
2153 }
2154
2155 spin_unlock(&fc->lock);
2156 return 0;
2157}
2158
Anand Avati4273b792012-02-17 12:46:25 -05002159static ssize_t fuse_loop_dio(struct file *filp, const struct iovec *iov,
2160 unsigned long nr_segs, loff_t *ppos, int rw)
2161{
2162 const struct iovec *vector = iov;
2163 ssize_t ret = 0;
2164
2165 while (nr_segs > 0) {
2166 void __user *base;
2167 size_t len;
2168 ssize_t nr;
2169
2170 base = vector->iov_base;
2171 len = vector->iov_len;
2172 vector++;
2173 nr_segs--;
2174
2175 if (rw == WRITE)
2176 nr = __fuse_direct_write(filp, base, len, ppos);
2177 else
2178 nr = fuse_direct_read(filp, base, len, ppos);
2179
2180 if (nr < 0) {
2181 if (!ret)
2182 ret = nr;
2183 break;
2184 }
2185 ret += nr;
2186 if (nr != len)
2187 break;
2188 }
2189
2190 return ret;
2191}
2192
2193
2194static ssize_t
2195fuse_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
2196 loff_t offset, unsigned long nr_segs)
2197{
2198 ssize_t ret = 0;
2199 struct file *file = NULL;
2200 loff_t pos = 0;
2201
2202 file = iocb->ki_filp;
2203 pos = offset;
2204
2205 ret = fuse_loop_dio(file, iov, nr_segs, &pos, rw);
2206
2207 return ret;
2208}
2209
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002210static const struct file_operations fuse_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002211 .llseek = fuse_file_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07002212 .read = do_sync_read,
Miklos Szeredibcb4be82007-11-28 16:21:59 -08002213 .aio_read = fuse_file_aio_read,
Badari Pulavarty543ade12006-09-30 23:28:48 -07002214 .write = do_sync_write,
Nick Pigginea9b9902008-04-30 00:54:42 -07002215 .aio_write = fuse_file_aio_write,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002216 .mmap = fuse_file_mmap,
2217 .open = fuse_open,
2218 .flush = fuse_flush,
2219 .release = fuse_release,
2220 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07002221 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002222 .flock = fuse_file_flock,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02002223 .splice_read = generic_file_splice_read,
Tejun Heo59efec72008-11-26 12:03:55 +01002224 .unlocked_ioctl = fuse_file_ioctl,
2225 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01002226 .poll = fuse_file_poll,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002227};
2228
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002229static const struct file_operations fuse_direct_io_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002230 .llseek = fuse_file_llseek,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07002231 .read = fuse_direct_read,
2232 .write = fuse_direct_write,
Miklos Szeredifc280c92009-04-02 14:25:35 +02002233 .mmap = fuse_direct_mmap,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07002234 .open = fuse_open,
2235 .flush = fuse_flush,
2236 .release = fuse_release,
2237 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07002238 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002239 .flock = fuse_file_flock,
Tejun Heo59efec72008-11-26 12:03:55 +01002240 .unlocked_ioctl = fuse_file_ioctl,
2241 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01002242 .poll = fuse_file_poll,
Miklos Szeredifc280c92009-04-02 14:25:35 +02002243 /* no splice_read */
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07002244};
2245
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07002246static const struct address_space_operations fuse_file_aops = {
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002247 .readpage = fuse_readpage,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002248 .writepage = fuse_writepage,
2249 .launder_page = fuse_launder_page,
Miklos Szeredidb50b962005-09-09 13:10:33 -07002250 .readpages = fuse_readpages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002251 .set_page_dirty = __set_page_dirty_nobuffers,
Miklos Szeredib2d22722006-12-06 20:35:51 -08002252 .bmap = fuse_bmap,
Anand Avati4273b792012-02-17 12:46:25 -05002253 .direct_IO = fuse_direct_IO,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002254};
2255
2256void fuse_init_file_inode(struct inode *inode)
2257{
Miklos Szeredi45323fb2005-09-09 13:10:37 -07002258 inode->i_fop = &fuse_file_operations;
2259 inode->i_data.a_ops = &fuse_file_aops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002260}