blob: 95da1bc1c8267a78efce954c56e7f48eb1338d42 [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>
Miklos Szeredib6aeade2005-09-09 13:10:30 -070017
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080018static const struct file_operations fuse_direct_io_file_operations;
Miklos Szeredi45323fb2005-09-09 13:10:37 -070019
Miklos Szeredi91fe96b2009-04-28 16:56:37 +020020static int fuse_send_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
21 int opcode, struct fuse_open_out *outargp)
Miklos Szeredib6aeade2005-09-09 13:10:30 -070022{
Miklos Szeredib6aeade2005-09-09 13:10:30 -070023 struct fuse_open_in inarg;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080024 struct fuse_req *req;
25 int err;
26
Miklos Szeredice1d5a42006-04-10 22:54:58 -070027 req = fuse_get_req(fc);
28 if (IS_ERR(req))
29 return PTR_ERR(req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080030
31 memset(&inarg, 0, sizeof(inarg));
Miklos Szeredi6ff958e2007-10-18 03:07:02 -070032 inarg.flags = file->f_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
33 if (!fc->atomic_o_trunc)
34 inarg.flags &= ~O_TRUNC;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +020035 req->in.h.opcode = opcode;
36 req->in.h.nodeid = nodeid;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080037 req->in.numargs = 1;
38 req->in.args[0].size = sizeof(inarg);
39 req->in.args[0].value = &inarg;
40 req->out.numargs = 1;
41 req->out.args[0].size = sizeof(*outargp);
42 req->out.args[0].value = outargp;
Tejun Heob93f8582008-11-26 12:03:55 +010043 fuse_request_send(fc, req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080044 err = req->out.h.error;
45 fuse_put_request(fc, req);
46
47 return err;
48}
49
Tejun Heoacf99432008-11-26 12:03:55 +010050struct fuse_file *fuse_file_alloc(struct fuse_conn *fc)
Miklos Szeredifd72faa2005-11-07 00:59:51 -080051{
52 struct fuse_file *ff;
Tejun Heo6b2db282009-04-14 10:54:49 +090053
Miklos Szeredifd72faa2005-11-07 00:59:51 -080054 ff = kmalloc(sizeof(struct fuse_file), GFP_KERNEL);
Tejun Heo6b2db282009-04-14 10:54:49 +090055 if (unlikely(!ff))
56 return NULL;
57
Miklos Szeredida5e4712009-04-28 16:56:36 +020058 ff->fc = fc;
Tejun Heo6b2db282009-04-14 10:54:49 +090059 ff->reserved_req = fuse_request_alloc();
60 if (unlikely(!ff->reserved_req)) {
61 kfree(ff);
62 return NULL;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080063 }
Tejun Heo6b2db282009-04-14 10:54:49 +090064
65 INIT_LIST_HEAD(&ff->write_entry);
66 atomic_set(&ff->count, 0);
67 RB_CLEAR_NODE(&ff->polled_node);
68 init_waitqueue_head(&ff->poll_wait);
69
70 spin_lock(&fc->lock);
71 ff->kh = ++fc->khctr;
72 spin_unlock(&fc->lock);
73
Miklos Szeredifd72faa2005-11-07 00:59:51 -080074 return ff;
75}
76
77void fuse_file_free(struct fuse_file *ff)
78{
Miklos Szeredi33649c92006-06-25 05:48:52 -070079 fuse_request_free(ff->reserved_req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080080 kfree(ff);
81}
82
Miklos Szeredic7b71432009-04-28 16:56:37 +020083struct fuse_file *fuse_file_get(struct fuse_file *ff)
Miklos Szeredic756e0a2007-10-16 23:31:00 -070084{
85 atomic_inc(&ff->count);
86 return ff;
87}
88
Miklos Szeredi819c4b32007-10-16 23:31:04 -070089static void fuse_release_end(struct fuse_conn *fc, struct fuse_req *req)
90{
Miklos Szeredib0be46e2009-04-28 16:56:36 +020091 path_put(&req->misc.release.path);
Miklos Szeredi819c4b32007-10-16 23:31:04 -070092}
93
Miklos Szeredic756e0a2007-10-16 23:31:00 -070094static void fuse_file_put(struct fuse_file *ff)
95{
96 if (atomic_dec_and_test(&ff->count)) {
97 struct fuse_req *req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +020098
Miklos Szeredi819c4b32007-10-16 23:31:04 -070099 req->end = fuse_release_end;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200100 fuse_request_send_background(ff->fc, req);
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700101 kfree(ff);
102 }
103}
104
Tejun Heo08cbf542009-04-14 10:54:53 +0900105int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
106 bool isdir)
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200107{
108 struct fuse_open_out outarg;
109 struct fuse_file *ff;
110 int err;
111 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
112
113 ff = fuse_file_alloc(fc);
114 if (!ff)
115 return -ENOMEM;
116
117 err = fuse_send_open(fc, nodeid, file, opcode, &outarg);
118 if (err) {
119 fuse_file_free(ff);
120 return err;
121 }
122
123 if (isdir)
124 outarg.open_flags &= ~FOPEN_DIRECT_IO;
125
126 ff->fh = outarg.fh;
127 ff->nodeid = nodeid;
128 ff->open_flags = outarg.open_flags;
129 file->private_data = fuse_file_get(ff);
130
131 return 0;
132}
Tejun Heo08cbf542009-04-14 10:54:53 +0900133EXPORT_SYMBOL_GPL(fuse_do_open);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200134
Miklos Szeredic7b71432009-04-28 16:56:37 +0200135void fuse_finish_open(struct inode *inode, struct file *file)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800136{
Miklos Szeredic7b71432009-04-28 16:56:37 +0200137 struct fuse_file *ff = file->private_data;
Ken Sumralla0822c52010-11-24 12:57:00 -0800138 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200139
140 if (ff->open_flags & FOPEN_DIRECT_IO)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800141 file->f_op = &fuse_direct_io_file_operations;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200142 if (!(ff->open_flags & FOPEN_KEEP_CACHE))
Miklos Szeredib1009972007-10-16 23:31:01 -0700143 invalidate_inode_pages2(inode->i_mapping);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200144 if (ff->open_flags & FOPEN_NONSEEKABLE)
Tejun Heoa7c1b992008-10-16 16:08:57 +0200145 nonseekable_open(inode, file);
Ken Sumralla0822c52010-11-24 12:57:00 -0800146 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
147 struct fuse_inode *fi = get_fuse_inode(inode);
148
149 spin_lock(&fc->lock);
150 fi->attr_version = ++fc->attr_version;
151 i_size_write(inode, 0);
152 spin_unlock(&fc->lock);
153 fuse_invalidate_attr(inode);
154 }
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800155}
156
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200157int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800158{
Tejun Heoacf99432008-11-26 12:03:55 +0100159 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700160 int err;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700161
Miklos Szeredidd190d02005-09-30 11:59:02 -0700162 /* VFS checks this, but only _after_ ->open() */
163 if (file->f_flags & O_DIRECT)
164 return -EINVAL;
165
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700166 err = generic_file_open(inode, file);
167 if (err)
168 return err;
169
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200170 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800171 if (err)
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200172 return err;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700173
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200174 fuse_finish_open(inode, file);
175
176 return 0;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700177}
178
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200179static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800180{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200181 struct fuse_conn *fc = ff->fc;
Miklos Szeredi33649c92006-06-25 05:48:52 -0700182 struct fuse_req *req = ff->reserved_req;
Miklos Szeredib57d4262008-02-06 01:38:39 -0800183 struct fuse_release_in *inarg = &req->misc.release.in;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700184
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200185 spin_lock(&fc->lock);
186 list_del(&ff->write_entry);
187 if (!RB_EMPTY_NODE(&ff->polled_node))
188 rb_erase(&ff->polled_node, &fc->polled_files);
189 spin_unlock(&fc->lock);
190
191 wake_up_interruptible_sync(&ff->poll_wait);
192
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700193 inarg->fh = ff->fh;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800194 inarg->flags = flags;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700195 req->in.h.opcode = opcode;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200196 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700197 req->in.numargs = 1;
198 req->in.args[0].size = sizeof(struct fuse_release_in);
199 req->in.args[0].value = inarg;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800200}
201
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200202void fuse_release_common(struct file *file, int opcode)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800203{
Tejun Heo6b2db282009-04-14 10:54:49 +0900204 struct fuse_file *ff;
205 struct fuse_req *req;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -0700206
Tejun Heo6b2db282009-04-14 10:54:49 +0900207 ff = file->private_data;
208 if (unlikely(!ff))
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200209 return;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700210
Tejun Heo6b2db282009-04-14 10:54:49 +0900211 req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200212 fuse_prepare_release(ff, file->f_flags, opcode);
Tejun Heo95668a62008-11-26 12:03:55 +0100213
Tejun Heo6b2db282009-04-14 10:54:49 +0900214 /* Hold vfsmount and dentry until release is finished */
Miklos Szeredib0be46e2009-04-28 16:56:36 +0200215 path_get(&file->f_path);
216 req->misc.release.path = file->f_path;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700217
Tejun Heo6b2db282009-04-14 10:54:49 +0900218 /*
219 * Normally this will send the RELEASE request, however if
220 * some asynchronous READ or WRITE requests are outstanding,
221 * the sending will be delayed.
222 */
223 fuse_file_put(ff);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700224}
225
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700226static int fuse_open(struct inode *inode, struct file *file)
227{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200228 return fuse_open_common(inode, file, false);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700229}
230
231static int fuse_release(struct inode *inode, struct file *file)
232{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200233 fuse_release_common(file, FUSE_RELEASE);
234
235 /* return value is ignored by VFS */
236 return 0;
237}
238
239void fuse_sync_release(struct fuse_file *ff, int flags)
240{
241 WARN_ON(atomic_read(&ff->count) > 1);
242 fuse_prepare_release(ff, flags, FUSE_RELEASE);
243 ff->reserved_req->force = 1;
244 fuse_request_send(ff->fc, ff->reserved_req);
245 fuse_put_request(ff->fc, ff->reserved_req);
246 kfree(ff);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700247}
Tejun Heo08cbf542009-04-14 10:54:53 +0900248EXPORT_SYMBOL_GPL(fuse_sync_release);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700249
Miklos Szeredi71421252006-06-25 05:48:52 -0700250/*
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700251 * Scramble the ID space with XTEA, so that the value of the files_struct
252 * pointer is not exposed to userspace.
Miklos Szeredi71421252006-06-25 05:48:52 -0700253 */
Miklos Szeredif3332112007-10-18 03:07:04 -0700254u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
Miklos Szeredi71421252006-06-25 05:48:52 -0700255{
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700256 u32 *k = fc->scramble_key;
257 u64 v = (unsigned long) id;
258 u32 v0 = v;
259 u32 v1 = v >> 32;
260 u32 sum = 0;
261 int i;
262
263 for (i = 0; i < 32; i++) {
264 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
265 sum += 0x9E3779B9;
266 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
267 }
268
269 return (u64) v0 + ((u64) v1 << 32);
Miklos Szeredi71421252006-06-25 05:48:52 -0700270}
271
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700272/*
273 * Check if page is under writeback
274 *
275 * This is currently done by walking the list of writepage requests
276 * for the inode, which can be pretty inefficient.
277 */
278static bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
279{
280 struct fuse_conn *fc = get_fuse_conn(inode);
281 struct fuse_inode *fi = get_fuse_inode(inode);
282 struct fuse_req *req;
283 bool found = false;
284
285 spin_lock(&fc->lock);
286 list_for_each_entry(req, &fi->writepages, writepages_entry) {
287 pgoff_t curr_index;
288
289 BUG_ON(req->inode != inode);
290 curr_index = req->misc.write.in.offset >> PAGE_CACHE_SHIFT;
291 if (curr_index == index) {
292 found = true;
293 break;
294 }
295 }
296 spin_unlock(&fc->lock);
297
298 return found;
299}
300
301/*
302 * Wait for page writeback to be completed.
303 *
304 * Since fuse doesn't rely on the VM writeback tracking, this has to
305 * use some other means.
306 */
307static int fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
308{
309 struct fuse_inode *fi = get_fuse_inode(inode);
310
311 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
312 return 0;
313}
314
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -0700315static int fuse_flush(struct file *file, fl_owner_t id)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700316{
Josef Sipek7706a9d2006-12-08 02:37:02 -0800317 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700318 struct fuse_conn *fc = get_fuse_conn(inode);
319 struct fuse_file *ff = file->private_data;
320 struct fuse_req *req;
321 struct fuse_flush_in inarg;
322 int err;
323
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800324 if (is_bad_inode(inode))
325 return -EIO;
326
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700327 if (fc->no_flush)
328 return 0;
329
Miklos Szeredi33649c92006-06-25 05:48:52 -0700330 req = fuse_get_req_nofail(fc, file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700331 memset(&inarg, 0, sizeof(inarg));
332 inarg.fh = ff->fh;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700333 inarg.lock_owner = fuse_lock_owner_id(fc, id);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700334 req->in.h.opcode = FUSE_FLUSH;
335 req->in.h.nodeid = get_node_id(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700336 req->in.numargs = 1;
337 req->in.args[0].size = sizeof(inarg);
338 req->in.args[0].value = &inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -0700339 req->force = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100340 fuse_request_send(fc, req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700341 err = req->out.h.error;
342 fuse_put_request(fc, req);
343 if (err == -ENOSYS) {
344 fc->no_flush = 1;
345 err = 0;
346 }
347 return err;
348}
349
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700350/*
351 * Wait for all pending writepages on the inode to finish.
352 *
353 * This is currently done by blocking further writes with FUSE_NOWRITE
354 * and waiting for all sent writes to complete.
355 *
356 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
357 * could conflict with truncation.
358 */
359static void fuse_sync_writes(struct inode *inode)
360{
361 fuse_set_nowrite(inode);
362 fuse_release_nowrite(inode);
363}
364
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200365int fuse_fsync_common(struct file *file, int datasync, int isdir)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700366{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200367 struct inode *inode = file->f_mapping->host;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700368 struct fuse_conn *fc = get_fuse_conn(inode);
369 struct fuse_file *ff = file->private_data;
370 struct fuse_req *req;
371 struct fuse_fsync_in inarg;
372 int err;
373
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800374 if (is_bad_inode(inode))
375 return -EIO;
376
Miklos Szeredi82547982005-09-09 13:10:38 -0700377 if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700378 return 0;
379
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700380 /*
381 * Start writeback against all dirty pages of the inode, then
382 * wait for all outstanding writes, before sending the FSYNC
383 * request.
384 */
385 err = write_inode_now(inode, 0);
386 if (err)
387 return err;
388
389 fuse_sync_writes(inode);
390
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700391 req = fuse_get_req(fc);
392 if (IS_ERR(req))
393 return PTR_ERR(req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700394
395 memset(&inarg, 0, sizeof(inarg));
396 inarg.fh = ff->fh;
397 inarg.fsync_flags = datasync ? 1 : 0;
Miklos Szeredi82547982005-09-09 13:10:38 -0700398 req->in.h.opcode = isdir ? FUSE_FSYNCDIR : FUSE_FSYNC;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700399 req->in.h.nodeid = get_node_id(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700400 req->in.numargs = 1;
401 req->in.args[0].size = sizeof(inarg);
402 req->in.args[0].value = &inarg;
Tejun Heob93f8582008-11-26 12:03:55 +0100403 fuse_request_send(fc, req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700404 err = req->out.h.error;
405 fuse_put_request(fc, req);
406 if (err == -ENOSYS) {
Miklos Szeredi82547982005-09-09 13:10:38 -0700407 if (isdir)
408 fc->no_fsyncdir = 1;
409 else
410 fc->no_fsync = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700411 err = 0;
412 }
413 return err;
414}
415
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200416static int fuse_fsync(struct file *file, int datasync)
Miklos Szeredi82547982005-09-09 13:10:38 -0700417{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200418 return fuse_fsync_common(file, datasync, 0);
Miklos Szeredi82547982005-09-09 13:10:38 -0700419}
420
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200421void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
422 size_t count, int opcode)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700423{
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700424 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredia6643092007-11-28 16:22:00 -0800425 struct fuse_file *ff = file->private_data;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700426
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800427 inarg->fh = ff->fh;
428 inarg->offset = pos;
429 inarg->size = count;
Miklos Szeredia6643092007-11-28 16:22:00 -0800430 inarg->flags = file->f_flags;
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800431 req->in.h.opcode = opcode;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200432 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700433 req->in.numargs = 1;
434 req->in.args[0].size = sizeof(struct fuse_read_in);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800435 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700436 req->out.argvar = 1;
437 req->out.numargs = 1;
438 req->out.args[0].size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700439}
440
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800441static size_t fuse_send_read(struct fuse_req *req, struct file *file,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200442 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700443{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200444 struct fuse_file *ff = file->private_data;
445 struct fuse_conn *fc = ff->fc;
Miklos Szeredif3332112007-10-18 03:07:04 -0700446
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200447 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredif3332112007-10-18 03:07:04 -0700448 if (owner != NULL) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700449 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredif3332112007-10-18 03:07:04 -0700450
451 inarg->read_flags |= FUSE_READ_LOCKOWNER;
452 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
453 }
Tejun Heob93f8582008-11-26 12:03:55 +0100454 fuse_request_send(fc, req);
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800455 return req->out.args[0].size;
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700456}
457
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700458static void fuse_read_update_size(struct inode *inode, loff_t size,
459 u64 attr_ver)
460{
461 struct fuse_conn *fc = get_fuse_conn(inode);
462 struct fuse_inode *fi = get_fuse_inode(inode);
463
464 spin_lock(&fc->lock);
465 if (attr_ver == fi->attr_version && size < inode->i_size) {
466 fi->attr_version = ++fc->attr_version;
467 i_size_write(inode, size);
468 }
469 spin_unlock(&fc->lock);
470}
471
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700472static int fuse_readpage(struct file *file, struct page *page)
473{
474 struct inode *inode = page->mapping->host;
475 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800476 struct fuse_req *req;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700477 size_t num_read;
478 loff_t pos = page_offset(page);
479 size_t count = PAGE_CACHE_SIZE;
480 u64 attr_ver;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800481 int err;
482
483 err = -EIO;
484 if (is_bad_inode(inode))
485 goto out;
486
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700487 /*
488 * Page writeback can extend beyond the liftime of the
489 * page-cache page, so make sure we read a properly synced
490 * page.
491 */
492 fuse_wait_on_page_writeback(inode, page->index);
493
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700494 req = fuse_get_req(fc);
495 err = PTR_ERR(req);
496 if (IS_ERR(req))
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700497 goto out;
498
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700499 attr_ver = fuse_get_attr_version(fc);
500
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700501 req->out.page_zeroing = 1;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200502 req->out.argpages = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700503 req->num_pages = 1;
504 req->pages[0] = page;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200505 num_read = fuse_send_read(req, file, pos, count, NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700506 err = req->out.h.error;
507 fuse_put_request(fc, req);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700508
509 if (!err) {
510 /*
511 * Short read means EOF. If file size is larger, truncate it
512 */
513 if (num_read < count)
514 fuse_read_update_size(inode, pos + num_read, attr_ver);
515
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700516 SetPageUptodate(page);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700517 }
518
Miklos Szeredib36c31b2005-09-09 13:10:38 -0700519 fuse_invalidate_attr(inode); /* atime changed */
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700520 out:
521 unlock_page(page);
522 return err;
523}
524
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800525static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredidb50b962005-09-09 13:10:33 -0700526{
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800527 int i;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700528 size_t count = req->misc.read.in.size;
529 size_t num_read = req->out.args[0].size;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200530 struct address_space *mapping = NULL;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800531
Miklos Szeredice534fb2010-05-25 15:06:07 +0200532 for (i = 0; mapping == NULL && i < req->num_pages; i++)
533 mapping = req->pages[i]->mapping;
534
535 if (mapping) {
536 struct inode *inode = mapping->host;
537
538 /*
539 * Short read means EOF. If file size is larger, truncate it
540 */
541 if (!req->out.h.error && num_read < count) {
542 loff_t pos;
543
544 pos = page_offset(req->pages[0]) + num_read;
545 fuse_read_update_size(inode, pos,
546 req->misc.read.attr_ver);
547 }
548 fuse_invalidate_attr(inode); /* atime changed */
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700549 }
550
Miklos Szeredidb50b962005-09-09 13:10:33 -0700551 for (i = 0; i < req->num_pages; i++) {
552 struct page *page = req->pages[i];
553 if (!req->out.h.error)
554 SetPageUptodate(page);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800555 else
556 SetPageError(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700557 unlock_page(page);
Miklos Szeredib5dd3282010-05-25 15:06:06 +0200558 page_cache_release(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700559 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700560 if (req->ff)
561 fuse_file_put(req->ff);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800562}
563
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200564static void fuse_send_readpages(struct fuse_req *req, struct file *file)
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800565{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200566 struct fuse_file *ff = file->private_data;
567 struct fuse_conn *fc = ff->fc;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800568 loff_t pos = page_offset(req->pages[0]);
569 size_t count = req->num_pages << PAGE_CACHE_SHIFT;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200570
571 req->out.argpages = 1;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800572 req->out.page_zeroing = 1;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200573 req->out.page_replace = 1;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200574 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700575 req->misc.read.attr_ver = fuse_get_attr_version(fc);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800576 if (fc->async_read) {
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700577 req->ff = fuse_file_get(ff);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800578 req->end = fuse_readpages_end;
Tejun Heob93f8582008-11-26 12:03:55 +0100579 fuse_request_send_background(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800580 } else {
Tejun Heob93f8582008-11-26 12:03:55 +0100581 fuse_request_send(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800582 fuse_readpages_end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100583 fuse_put_request(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800584 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700585}
586
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700587struct fuse_fill_data {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700588 struct fuse_req *req;
Miklos Szeredia6643092007-11-28 16:22:00 -0800589 struct file *file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700590 struct inode *inode;
591};
592
593static int fuse_readpages_fill(void *_data, struct page *page)
594{
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700595 struct fuse_fill_data *data = _data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700596 struct fuse_req *req = data->req;
597 struct inode *inode = data->inode;
598 struct fuse_conn *fc = get_fuse_conn(inode);
599
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700600 fuse_wait_on_page_writeback(inode, page->index);
601
Miklos Szeredidb50b962005-09-09 13:10:33 -0700602 if (req->num_pages &&
603 (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
604 (req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_read ||
605 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200606 fuse_send_readpages(req, data->file);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700607 data->req = req = fuse_get_req(fc);
608 if (IS_ERR(req)) {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700609 unlock_page(page);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700610 return PTR_ERR(req);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700611 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700612 }
Miklos Szeredib5dd3282010-05-25 15:06:06 +0200613 page_cache_get(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700614 req->pages[req->num_pages] = page;
Miklos Szeredi1729a162008-11-26 12:03:54 +0100615 req->num_pages++;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700616 return 0;
617}
618
619static int fuse_readpages(struct file *file, struct address_space *mapping,
620 struct list_head *pages, unsigned nr_pages)
621{
622 struct inode *inode = mapping->host;
623 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700624 struct fuse_fill_data data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700625 int err;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800626
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700627 err = -EIO;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800628 if (is_bad_inode(inode))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800629 goto out;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800630
Miklos Szeredia6643092007-11-28 16:22:00 -0800631 data.file = file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700632 data.inode = inode;
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700633 data.req = fuse_get_req(fc);
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700634 err = PTR_ERR(data.req);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700635 if (IS_ERR(data.req))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800636 goto out;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700637
638 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700639 if (!err) {
640 if (data.req->num_pages)
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200641 fuse_send_readpages(data.req, file);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700642 else
643 fuse_put_request(fc, data.req);
644 }
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800645out:
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700646 return err;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700647}
648
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800649static ssize_t fuse_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
650 unsigned long nr_segs, loff_t pos)
651{
652 struct inode *inode = iocb->ki_filp->f_mapping->host;
653
654 if (pos + iov_length(iov, nr_segs) > i_size_read(inode)) {
655 int err;
656 /*
657 * If trying to read past EOF, make sure the i_size
658 * attribute is up-to-date.
659 */
660 err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
661 if (err)
662 return err;
663 }
664
665 return generic_file_aio_read(iocb, iov, nr_segs, pos);
666}
667
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200668static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200669 loff_t pos, size_t count)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700670{
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700671 struct fuse_write_in *inarg = &req->misc.write.in;
672 struct fuse_write_out *outarg = &req->misc.write.out;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700673
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700674 inarg->fh = ff->fh;
675 inarg->offset = pos;
676 inarg->size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700677 req->in.h.opcode = FUSE_WRITE;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200678 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700679 req->in.numargs = 2;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200680 if (ff->fc->minor < 9)
Miklos Szeredif3332112007-10-18 03:07:04 -0700681 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
682 else
683 req->in.args[0].size = sizeof(struct fuse_write_in);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700684 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700685 req->in.args[1].size = count;
686 req->out.numargs = 1;
687 req->out.args[0].size = sizeof(struct fuse_write_out);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700688 req->out.args[0].value = outarg;
689}
690
691static size_t fuse_send_write(struct fuse_req *req, struct file *file,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200692 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700693{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200694 struct fuse_file *ff = file->private_data;
695 struct fuse_conn *fc = ff->fc;
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200696 struct fuse_write_in *inarg = &req->misc.write.in;
697
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200698 fuse_write_fill(req, ff, pos, count);
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200699 inarg->flags = file->f_flags;
Miklos Szeredif3332112007-10-18 03:07:04 -0700700 if (owner != NULL) {
Miklos Szeredif3332112007-10-18 03:07:04 -0700701 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
702 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
703 }
Tejun Heob93f8582008-11-26 12:03:55 +0100704 fuse_request_send(fc, req);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700705 return req->misc.write.out.size;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700706}
707
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700708static int fuse_write_begin(struct file *file, struct address_space *mapping,
709 loff_t pos, unsigned len, unsigned flags,
710 struct page **pagep, void **fsdata)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700711{
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700712 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
713
Nick Piggin54566b22009-01-04 12:00:53 -0800714 *pagep = grab_cache_page_write_begin(mapping, index, flags);
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700715 if (!*pagep)
716 return -ENOMEM;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700717 return 0;
718}
719
Miklos Szeredia1d75f22010-07-12 14:41:40 +0200720void fuse_write_update_size(struct inode *inode, loff_t pos)
Miklos Szeredi854512e2008-04-30 00:54:41 -0700721{
722 struct fuse_conn *fc = get_fuse_conn(inode);
723 struct fuse_inode *fi = get_fuse_inode(inode);
724
725 spin_lock(&fc->lock);
726 fi->attr_version = ++fc->attr_version;
727 if (pos > inode->i_size)
728 i_size_write(inode, pos);
729 spin_unlock(&fc->lock);
730}
731
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700732static int fuse_buffered_write(struct file *file, struct inode *inode,
733 loff_t pos, unsigned count, struct page *page)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700734{
735 int err;
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700736 size_t nres;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700737 struct fuse_conn *fc = get_fuse_conn(inode);
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700738 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800739 struct fuse_req *req;
740
741 if (is_bad_inode(inode))
742 return -EIO;
743
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700744 /*
745 * Make sure writepages on the same page are not mixed up with
746 * plain writes.
747 */
748 fuse_wait_on_page_writeback(inode, page->index);
749
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700750 req = fuse_get_req(fc);
751 if (IS_ERR(req))
752 return PTR_ERR(req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700753
Miklos Szeredif4975c62009-04-02 14:25:34 +0200754 req->in.argpages = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700755 req->num_pages = 1;
756 req->pages[0] = page;
757 req->page_offset = offset;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200758 nres = fuse_send_write(req, file, pos, count, NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700759 err = req->out.h.error;
760 fuse_put_request(fc, req);
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700761 if (!err && !nres)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700762 err = -EIO;
763 if (!err) {
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700764 pos += nres;
Miklos Szeredi854512e2008-04-30 00:54:41 -0700765 fuse_write_update_size(inode, pos);
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700766 if (count == PAGE_CACHE_SIZE)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700767 SetPageUptodate(page);
Miklos Szeredib36c31b2005-09-09 13:10:38 -0700768 }
769 fuse_invalidate_attr(inode);
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700770 return err ? err : nres;
771}
772
773static int fuse_write_end(struct file *file, struct address_space *mapping,
774 loff_t pos, unsigned len, unsigned copied,
775 struct page *page, void *fsdata)
776{
777 struct inode *inode = mapping->host;
778 int res = 0;
779
780 if (copied)
781 res = fuse_buffered_write(file, inode, pos, copied, page);
782
783 unlock_page(page);
784 page_cache_release(page);
785 return res;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700786}
787
Nick Pigginea9b9902008-04-30 00:54:42 -0700788static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
789 struct inode *inode, loff_t pos,
790 size_t count)
791{
792 size_t res;
793 unsigned offset;
794 unsigned i;
795
796 for (i = 0; i < req->num_pages; i++)
797 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
798
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200799 res = fuse_send_write(req, file, pos, count, NULL);
Nick Pigginea9b9902008-04-30 00:54:42 -0700800
801 offset = req->page_offset;
802 count = res;
803 for (i = 0; i < req->num_pages; i++) {
804 struct page *page = req->pages[i];
805
806 if (!req->out.h.error && !offset && count >= PAGE_CACHE_SIZE)
807 SetPageUptodate(page);
808
809 if (count > PAGE_CACHE_SIZE - offset)
810 count -= PAGE_CACHE_SIZE - offset;
811 else
812 count = 0;
813 offset = 0;
814
815 unlock_page(page);
816 page_cache_release(page);
817 }
818
819 return res;
820}
821
822static ssize_t fuse_fill_write_pages(struct fuse_req *req,
823 struct address_space *mapping,
824 struct iov_iter *ii, loff_t pos)
825{
826 struct fuse_conn *fc = get_fuse_conn(mapping->host);
827 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
828 size_t count = 0;
829 int err;
830
Miklos Szeredif4975c62009-04-02 14:25:34 +0200831 req->in.argpages = 1;
Nick Pigginea9b9902008-04-30 00:54:42 -0700832 req->page_offset = offset;
833
834 do {
835 size_t tmp;
836 struct page *page;
837 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
838 size_t bytes = min_t(size_t, PAGE_CACHE_SIZE - offset,
839 iov_iter_count(ii));
840
841 bytes = min_t(size_t, bytes, fc->max_write - count);
842
843 again:
844 err = -EFAULT;
845 if (iov_iter_fault_in_readable(ii, bytes))
846 break;
847
848 err = -ENOMEM;
Nick Piggin54566b22009-01-04 12:00:53 -0800849 page = grab_cache_page_write_begin(mapping, index, 0);
Nick Pigginea9b9902008-04-30 00:54:42 -0700850 if (!page)
851 break;
852
anfei zhou931e80e2010-02-02 13:44:02 -0800853 if (mapping_writably_mapped(mapping))
854 flush_dcache_page(page);
855
Nick Pigginea9b9902008-04-30 00:54:42 -0700856 pagefault_disable();
857 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
858 pagefault_enable();
859 flush_dcache_page(page);
860
861 if (!tmp) {
862 unlock_page(page);
863 page_cache_release(page);
864 bytes = min(bytes, iov_iter_single_seg_count(ii));
865 goto again;
866 }
867
868 err = 0;
869 req->pages[req->num_pages] = page;
870 req->num_pages++;
871
872 iov_iter_advance(ii, tmp);
873 count += tmp;
874 pos += tmp;
875 offset += tmp;
876 if (offset == PAGE_CACHE_SIZE)
877 offset = 0;
878
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -0700879 if (!fc->big_writes)
880 break;
Nick Pigginea9b9902008-04-30 00:54:42 -0700881 } while (iov_iter_count(ii) && count < fc->max_write &&
882 req->num_pages < FUSE_MAX_PAGES_PER_REQ && offset == 0);
883
884 return count > 0 ? count : err;
885}
886
887static ssize_t fuse_perform_write(struct file *file,
888 struct address_space *mapping,
889 struct iov_iter *ii, loff_t pos)
890{
891 struct inode *inode = mapping->host;
892 struct fuse_conn *fc = get_fuse_conn(inode);
893 int err = 0;
894 ssize_t res = 0;
895
896 if (is_bad_inode(inode))
897 return -EIO;
898
899 do {
900 struct fuse_req *req;
901 ssize_t count;
902
903 req = fuse_get_req(fc);
904 if (IS_ERR(req)) {
905 err = PTR_ERR(req);
906 break;
907 }
908
909 count = fuse_fill_write_pages(req, mapping, ii, pos);
910 if (count <= 0) {
911 err = count;
912 } else {
913 size_t num_written;
914
915 num_written = fuse_send_write_pages(req, file, inode,
916 pos, count);
917 err = req->out.h.error;
918 if (!err) {
919 res += num_written;
920 pos += num_written;
921
922 /* break out of the loop on short write */
923 if (num_written != count)
924 err = -EIO;
925 }
926 }
927 fuse_put_request(fc, req);
928 } while (!err && iov_iter_count(ii));
929
930 if (res > 0)
931 fuse_write_update_size(inode, pos);
932
933 fuse_invalidate_attr(inode);
934
935 return res > 0 ? res : err;
936}
937
938static ssize_t fuse_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
939 unsigned long nr_segs, loff_t pos)
940{
941 struct file *file = iocb->ki_filp;
942 struct address_space *mapping = file->f_mapping;
943 size_t count = 0;
944 ssize_t written = 0;
945 struct inode *inode = mapping->host;
946 ssize_t err;
947 struct iov_iter i;
948
949 WARN_ON(iocb->ki_pos != pos);
950
951 err = generic_segment_checks(iov, &nr_segs, &count, VERIFY_READ);
952 if (err)
953 return err;
954
955 mutex_lock(&inode->i_mutex);
956 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
957
958 /* We can write back this queue in page reclaim */
959 current->backing_dev_info = mapping->backing_dev_info;
960
961 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
962 if (err)
963 goto out;
964
965 if (count == 0)
966 goto out;
967
Miklos Szeredi2f1936b2008-06-24 16:50:14 +0200968 err = file_remove_suid(file);
Nick Pigginea9b9902008-04-30 00:54:42 -0700969 if (err)
970 goto out;
971
972 file_update_time(file);
973
974 iov_iter_init(&i, iov, nr_segs, count, 0);
975 written = fuse_perform_write(file, mapping, &i, pos);
976 if (written >= 0)
977 iocb->ki_pos = pos + written;
978
979out:
980 current->backing_dev_info = NULL;
981 mutex_unlock(&inode->i_mutex);
982
983 return written ? written : err;
984}
985
Miklos Szeredi413ef8c2005-09-09 13:10:35 -0700986static void fuse_release_user_pages(struct fuse_req *req, int write)
987{
988 unsigned i;
989
990 for (i = 0; i < req->num_pages; i++) {
991 struct page *page = req->pages[i];
992 if (write)
993 set_page_dirty_lock(page);
994 put_page(page);
995 }
996}
997
998static int fuse_get_user_pages(struct fuse_req *req, const char __user *buf,
Miklos Szeredice60a2f2009-04-09 17:37:52 +0200999 size_t *nbytesp, int write)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001000{
Miklos Szeredice60a2f2009-04-09 17:37:52 +02001001 size_t nbytes = *nbytesp;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001002 unsigned long user_addr = (unsigned long) buf;
1003 unsigned offset = user_addr & ~PAGE_MASK;
1004 int npages;
1005
Miklos Szeredif4975c62009-04-02 14:25:34 +02001006 /* Special case for kernel I/O: can copy directly into the buffer */
1007 if (segment_eq(get_fs(), KERNEL_DS)) {
1008 if (write)
1009 req->in.args[1].value = (void *) user_addr;
1010 else
1011 req->out.args[0].value = (void *) user_addr;
1012
1013 return 0;
1014 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001015
Miklos Szeredice60a2f2009-04-09 17:37:52 +02001016 nbytes = min_t(size_t, nbytes, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001017 npages = (nbytes + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
Harvey Harrisonbd730962008-05-01 04:35:15 -07001018 npages = clamp(npages, 1, FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi1bf94ca2010-05-25 15:06:06 +02001019 npages = get_user_pages_fast(user_addr, npages, !write, req->pages);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001020 if (npages < 0)
1021 return npages;
1022
1023 req->num_pages = npages;
1024 req->page_offset = offset;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001025
1026 if (write)
1027 req->in.argpages = 1;
1028 else
1029 req->out.argpages = 1;
1030
1031 nbytes = (req->num_pages << PAGE_SHIFT) - req->page_offset;
1032 *nbytesp = min(*nbytesp, nbytes);
1033
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001034 return 0;
1035}
1036
Tejun Heo08cbf542009-04-14 10:54:53 +09001037ssize_t fuse_direct_io(struct file *file, const char __user *buf,
1038 size_t count, loff_t *ppos, int write)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001039{
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001040 struct fuse_file *ff = file->private_data;
1041 struct fuse_conn *fc = ff->fc;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001042 size_t nmax = write ? fc->max_write : fc->max_read;
1043 loff_t pos = *ppos;
1044 ssize_t res = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001045 struct fuse_req *req;
1046
Miklos Szeredice1d5a42006-04-10 22:54:58 -07001047 req = fuse_get_req(fc);
1048 if (IS_ERR(req))
1049 return PTR_ERR(req);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001050
1051 while (count) {
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001052 size_t nres;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001053 fl_owner_t owner = current->files;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001054 size_t nbytes = min(count, nmax);
1055 int err = fuse_get_user_pages(req, buf, &nbytes, write);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001056 if (err) {
1057 res = err;
1058 break;
1059 }
Miklos Szeredif4975c62009-04-02 14:25:34 +02001060
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001061 if (write)
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001062 nres = fuse_send_write(req, file, pos, nbytes, owner);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001063 else
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001064 nres = fuse_send_read(req, file, pos, nbytes, owner);
1065
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001066 fuse_release_user_pages(req, !write);
1067 if (req->out.h.error) {
1068 if (!res)
1069 res = req->out.h.error;
1070 break;
1071 } else if (nres > nbytes) {
1072 res = -EIO;
1073 break;
1074 }
1075 count -= nres;
1076 res += nres;
1077 pos += nres;
1078 buf += nres;
1079 if (nres != nbytes)
1080 break;
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001081 if (count) {
1082 fuse_put_request(fc, req);
1083 req = fuse_get_req(fc);
1084 if (IS_ERR(req))
1085 break;
1086 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001087 }
Anand V. Avatif60311d2009-10-22 06:24:52 -07001088 if (!IS_ERR(req))
1089 fuse_put_request(fc, req);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001090 if (res > 0)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001091 *ppos = pos;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001092
1093 return res;
1094}
Tejun Heo08cbf542009-04-14 10:54:53 +09001095EXPORT_SYMBOL_GPL(fuse_direct_io);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001096
1097static ssize_t fuse_direct_read(struct file *file, char __user *buf,
1098 size_t count, loff_t *ppos)
1099{
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001100 ssize_t res;
1101 struct inode *inode = file->f_path.dentry->d_inode;
1102
1103 if (is_bad_inode(inode))
1104 return -EIO;
1105
1106 res = fuse_direct_io(file, buf, count, ppos, 0);
1107
1108 fuse_invalidate_attr(inode);
1109
1110 return res;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001111}
1112
1113static ssize_t fuse_direct_write(struct file *file, const char __user *buf,
1114 size_t count, loff_t *ppos)
1115{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001116 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001117 ssize_t res;
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001118
1119 if (is_bad_inode(inode))
1120 return -EIO;
1121
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001122 /* Don't allow parallel writes to the same file */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001123 mutex_lock(&inode->i_mutex);
Miklos Szeredi889f7842007-05-23 13:57:54 -07001124 res = generic_write_checks(file, ppos, &count, 0);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001125 if (!res) {
Miklos Szeredi889f7842007-05-23 13:57:54 -07001126 res = fuse_direct_io(file, buf, count, ppos, 1);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001127 if (res > 0)
1128 fuse_write_update_size(inode, *ppos);
1129 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001130 mutex_unlock(&inode->i_mutex);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001131
1132 fuse_invalidate_attr(inode);
1133
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001134 return res;
1135}
1136
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001137static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001138{
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001139 __free_page(req->pages[0]);
1140 fuse_file_put(req->ff);
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001141}
1142
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001143static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001144{
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001145 struct inode *inode = req->inode;
1146 struct fuse_inode *fi = get_fuse_inode(inode);
1147 struct backing_dev_info *bdi = inode->i_mapping->backing_dev_info;
1148
1149 list_del(&req->writepages_entry);
1150 dec_bdi_stat(bdi, BDI_WRITEBACK);
1151 dec_zone_page_state(req->pages[0], NR_WRITEBACK_TEMP);
1152 bdi_writeout_inc(bdi);
1153 wake_up(&fi->page_waitq);
1154}
1155
1156/* Called under fc->lock, may release and reacquire it */
1157static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001158__releases(fc->lock)
1159__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001160{
1161 struct fuse_inode *fi = get_fuse_inode(req->inode);
1162 loff_t size = i_size_read(req->inode);
1163 struct fuse_write_in *inarg = &req->misc.write.in;
1164
1165 if (!fc->connected)
1166 goto out_free;
1167
1168 if (inarg->offset + PAGE_CACHE_SIZE <= size) {
1169 inarg->size = PAGE_CACHE_SIZE;
1170 } else if (inarg->offset < size) {
1171 inarg->size = size & (PAGE_CACHE_SIZE - 1);
1172 } else {
1173 /* Got truncated off completely */
1174 goto out_free;
1175 }
1176
1177 req->in.args[1].size = inarg->size;
1178 fi->writectr++;
Tejun Heob93f8582008-11-26 12:03:55 +01001179 fuse_request_send_background_locked(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001180 return;
1181
1182 out_free:
1183 fuse_writepage_finish(fc, req);
1184 spin_unlock(&fc->lock);
1185 fuse_writepage_free(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +01001186 fuse_put_request(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001187 spin_lock(&fc->lock);
1188}
1189
1190/*
1191 * If fi->writectr is positive (no truncate or fsync going on) send
1192 * all queued writepage requests.
1193 *
1194 * Called with fc->lock
1195 */
1196void fuse_flush_writepages(struct inode *inode)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001197__releases(fc->lock)
1198__acquires(fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001199{
1200 struct fuse_conn *fc = get_fuse_conn(inode);
1201 struct fuse_inode *fi = get_fuse_inode(inode);
1202 struct fuse_req *req;
1203
1204 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1205 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1206 list_del_init(&req->list);
1207 fuse_send_writepage(fc, req);
1208 }
1209}
1210
1211static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1212{
1213 struct inode *inode = req->inode;
1214 struct fuse_inode *fi = get_fuse_inode(inode);
1215
1216 mapping_set_error(inode->i_mapping, req->out.h.error);
1217 spin_lock(&fc->lock);
1218 fi->writectr--;
1219 fuse_writepage_finish(fc, req);
1220 spin_unlock(&fc->lock);
1221 fuse_writepage_free(fc, req);
1222}
1223
1224static int fuse_writepage_locked(struct page *page)
1225{
1226 struct address_space *mapping = page->mapping;
1227 struct inode *inode = mapping->host;
1228 struct fuse_conn *fc = get_fuse_conn(inode);
1229 struct fuse_inode *fi = get_fuse_inode(inode);
1230 struct fuse_req *req;
1231 struct fuse_file *ff;
1232 struct page *tmp_page;
1233
1234 set_page_writeback(page);
1235
1236 req = fuse_request_alloc_nofs();
1237 if (!req)
1238 goto err;
1239
1240 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1241 if (!tmp_page)
1242 goto err_free;
1243
1244 spin_lock(&fc->lock);
1245 BUG_ON(list_empty(&fi->write_files));
1246 ff = list_entry(fi->write_files.next, struct fuse_file, write_entry);
1247 req->ff = fuse_file_get(ff);
1248 spin_unlock(&fc->lock);
1249
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001250 fuse_write_fill(req, ff, page_offset(page), 0);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001251
1252 copy_highpage(tmp_page, page);
Miklos Szeredi2d698b02009-04-28 16:56:36 +02001253 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001254 req->in.argpages = 1;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001255 req->num_pages = 1;
1256 req->pages[0] = tmp_page;
1257 req->page_offset = 0;
1258 req->end = fuse_writepage_end;
1259 req->inode = inode;
1260
1261 inc_bdi_stat(mapping->backing_dev_info, BDI_WRITEBACK);
1262 inc_zone_page_state(tmp_page, NR_WRITEBACK_TEMP);
1263 end_page_writeback(page);
1264
1265 spin_lock(&fc->lock);
1266 list_add(&req->writepages_entry, &fi->writepages);
1267 list_add_tail(&req->list, &fi->queued_writes);
1268 fuse_flush_writepages(inode);
1269 spin_unlock(&fc->lock);
1270
1271 return 0;
1272
1273err_free:
1274 fuse_request_free(req);
1275err:
1276 end_page_writeback(page);
1277 return -ENOMEM;
1278}
1279
1280static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1281{
1282 int err;
1283
1284 err = fuse_writepage_locked(page);
1285 unlock_page(page);
1286
1287 return err;
1288}
1289
1290static int fuse_launder_page(struct page *page)
1291{
1292 int err = 0;
1293 if (clear_page_dirty_for_io(page)) {
1294 struct inode *inode = page->mapping->host;
1295 err = fuse_writepage_locked(page);
1296 if (!err)
1297 fuse_wait_on_page_writeback(inode, page->index);
1298 }
1299 return err;
1300}
1301
1302/*
1303 * Write back dirty pages now, because there may not be any suitable
1304 * open files later
1305 */
1306static void fuse_vma_close(struct vm_area_struct *vma)
1307{
1308 filemap_write_and_wait(vma->vm_file->f_mapping);
1309}
1310
1311/*
1312 * Wait for writeback against this page to complete before allowing it
1313 * to be marked dirty again, and hence written back again, possibly
1314 * before the previous writepage completed.
1315 *
1316 * Block here, instead of in ->writepage(), so that the userspace fs
1317 * can only block processes actually operating on the filesystem.
1318 *
1319 * Otherwise unprivileged userspace fs would be able to block
1320 * unrelated:
1321 *
1322 * - page migration
1323 * - sync(2)
1324 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
1325 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07001326static int fuse_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001327{
Nick Pigginc2ec1752009-03-31 15:23:21 -07001328 struct page *page = vmf->page;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001329 /*
1330 * Don't use page->mapping as it may become NULL from a
1331 * concurrent truncate.
1332 */
1333 struct inode *inode = vma->vm_file->f_mapping->host;
1334
1335 fuse_wait_on_page_writeback(inode, page->index);
1336 return 0;
1337}
1338
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001339static const struct vm_operations_struct fuse_file_vm_ops = {
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001340 .close = fuse_vma_close,
1341 .fault = filemap_fault,
1342 .page_mkwrite = fuse_page_mkwrite,
1343};
1344
1345static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
1346{
1347 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE)) {
1348 struct inode *inode = file->f_dentry->d_inode;
1349 struct fuse_conn *fc = get_fuse_conn(inode);
1350 struct fuse_inode *fi = get_fuse_inode(inode);
1351 struct fuse_file *ff = file->private_data;
1352 /*
1353 * file may be written through mmap, so chain it onto the
1354 * inodes's write_file list
1355 */
1356 spin_lock(&fc->lock);
1357 if (list_empty(&ff->write_entry))
1358 list_add(&ff->write_entry, &fi->write_files);
1359 spin_unlock(&fc->lock);
1360 }
1361 file_accessed(file);
1362 vma->vm_ops = &fuse_file_vm_ops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001363 return 0;
1364}
1365
Miklos Szeredifc280c92009-04-02 14:25:35 +02001366static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
1367{
1368 /* Can't provide the coherency needed for MAP_SHARED */
1369 if (vma->vm_flags & VM_MAYSHARE)
1370 return -ENODEV;
1371
Miklos Szeredi3121bfe2009-04-09 17:37:53 +02001372 invalidate_inode_pages2(file->f_mapping);
1373
Miklos Szeredifc280c92009-04-02 14:25:35 +02001374 return generic_file_mmap(file, vma);
1375}
1376
Miklos Szeredi71421252006-06-25 05:48:52 -07001377static int convert_fuse_file_lock(const struct fuse_file_lock *ffl,
1378 struct file_lock *fl)
1379{
1380 switch (ffl->type) {
1381 case F_UNLCK:
1382 break;
1383
1384 case F_RDLCK:
1385 case F_WRLCK:
1386 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
1387 ffl->end < ffl->start)
1388 return -EIO;
1389
1390 fl->fl_start = ffl->start;
1391 fl->fl_end = ffl->end;
1392 fl->fl_pid = ffl->pid;
1393 break;
1394
1395 default:
1396 return -EIO;
1397 }
1398 fl->fl_type = ffl->type;
1399 return 0;
1400}
1401
1402static void fuse_lk_fill(struct fuse_req *req, struct file *file,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001403 const struct file_lock *fl, int opcode, pid_t pid,
1404 int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07001405{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001406 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07001407 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi71421252006-06-25 05:48:52 -07001408 struct fuse_file *ff = file->private_data;
1409 struct fuse_lk_in *arg = &req->misc.lk_in;
1410
1411 arg->fh = ff->fh;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07001412 arg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
Miklos Szeredi71421252006-06-25 05:48:52 -07001413 arg->lk.start = fl->fl_start;
1414 arg->lk.end = fl->fl_end;
1415 arg->lk.type = fl->fl_type;
1416 arg->lk.pid = pid;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001417 if (flock)
1418 arg->lk_flags |= FUSE_LK_FLOCK;
Miklos Szeredi71421252006-06-25 05:48:52 -07001419 req->in.h.opcode = opcode;
1420 req->in.h.nodeid = get_node_id(inode);
1421 req->in.numargs = 1;
1422 req->in.args[0].size = sizeof(*arg);
1423 req->in.args[0].value = arg;
1424}
1425
1426static int fuse_getlk(struct file *file, struct file_lock *fl)
1427{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001428 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi71421252006-06-25 05:48:52 -07001429 struct fuse_conn *fc = get_fuse_conn(inode);
1430 struct fuse_req *req;
1431 struct fuse_lk_out outarg;
1432 int err;
1433
1434 req = fuse_get_req(fc);
1435 if (IS_ERR(req))
1436 return PTR_ERR(req);
1437
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001438 fuse_lk_fill(req, file, fl, FUSE_GETLK, 0, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07001439 req->out.numargs = 1;
1440 req->out.args[0].size = sizeof(outarg);
1441 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01001442 fuse_request_send(fc, req);
Miklos Szeredi71421252006-06-25 05:48:52 -07001443 err = req->out.h.error;
1444 fuse_put_request(fc, req);
1445 if (!err)
1446 err = convert_fuse_file_lock(&outarg.lk, fl);
1447
1448 return err;
1449}
1450
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001451static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07001452{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001453 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi71421252006-06-25 05:48:52 -07001454 struct fuse_conn *fc = get_fuse_conn(inode);
1455 struct fuse_req *req;
1456 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
1457 pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0;
1458 int err;
1459
Miklos Szeredi48e90762008-07-25 01:49:02 -07001460 if (fl->fl_lmops && fl->fl_lmops->fl_grant) {
1461 /* NLM needs asynchronous locks, which we don't support yet */
1462 return -ENOLCK;
1463 }
1464
Miklos Szeredi71421252006-06-25 05:48:52 -07001465 /* Unlock on close is handled by the flush method */
1466 if (fl->fl_flags & FL_CLOSE)
1467 return 0;
1468
1469 req = fuse_get_req(fc);
1470 if (IS_ERR(req))
1471 return PTR_ERR(req);
1472
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001473 fuse_lk_fill(req, file, fl, opcode, pid, flock);
Tejun Heob93f8582008-11-26 12:03:55 +01001474 fuse_request_send(fc, req);
Miklos Szeredi71421252006-06-25 05:48:52 -07001475 err = req->out.h.error;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001476 /* locking is restartable */
1477 if (err == -EINTR)
1478 err = -ERESTARTSYS;
Miklos Szeredi71421252006-06-25 05:48:52 -07001479 fuse_put_request(fc, req);
1480 return err;
1481}
1482
1483static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
1484{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001485 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi71421252006-06-25 05:48:52 -07001486 struct fuse_conn *fc = get_fuse_conn(inode);
1487 int err;
1488
Miklos Szeredi48e90762008-07-25 01:49:02 -07001489 if (cmd == F_CANCELLK) {
1490 err = 0;
1491 } else if (cmd == F_GETLK) {
Miklos Szeredi71421252006-06-25 05:48:52 -07001492 if (fc->no_lock) {
Marc Eshel9d6a8c52007-02-21 00:55:18 -05001493 posix_test_lock(file, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07001494 err = 0;
1495 } else
1496 err = fuse_getlk(file, fl);
1497 } else {
1498 if (fc->no_lock)
Miklos Szeredi48e90762008-07-25 01:49:02 -07001499 err = posix_lock_file(file, fl, NULL);
Miklos Szeredi71421252006-06-25 05:48:52 -07001500 else
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001501 err = fuse_setlk(file, fl, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07001502 }
1503 return err;
1504}
1505
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001506static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
1507{
1508 struct inode *inode = file->f_path.dentry->d_inode;
1509 struct fuse_conn *fc = get_fuse_conn(inode);
1510 int err;
1511
1512 if (fc->no_lock) {
1513 err = flock_lock_file_wait(file, fl);
1514 } else {
1515 /* emulate flock with POSIX locks */
1516 fl->fl_owner = (fl_owner_t) file;
1517 err = fuse_setlk(file, fl, 1);
1518 }
1519
1520 return err;
1521}
1522
Miklos Szeredib2d22722006-12-06 20:35:51 -08001523static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
1524{
1525 struct inode *inode = mapping->host;
1526 struct fuse_conn *fc = get_fuse_conn(inode);
1527 struct fuse_req *req;
1528 struct fuse_bmap_in inarg;
1529 struct fuse_bmap_out outarg;
1530 int err;
1531
1532 if (!inode->i_sb->s_bdev || fc->no_bmap)
1533 return 0;
1534
1535 req = fuse_get_req(fc);
1536 if (IS_ERR(req))
1537 return 0;
1538
1539 memset(&inarg, 0, sizeof(inarg));
1540 inarg.block = block;
1541 inarg.blocksize = inode->i_sb->s_blocksize;
1542 req->in.h.opcode = FUSE_BMAP;
1543 req->in.h.nodeid = get_node_id(inode);
1544 req->in.numargs = 1;
1545 req->in.args[0].size = sizeof(inarg);
1546 req->in.args[0].value = &inarg;
1547 req->out.numargs = 1;
1548 req->out.args[0].size = sizeof(outarg);
1549 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01001550 fuse_request_send(fc, req);
Miklos Szeredib2d22722006-12-06 20:35:51 -08001551 err = req->out.h.error;
1552 fuse_put_request(fc, req);
1553 if (err == -ENOSYS)
1554 fc->no_bmap = 1;
1555
1556 return err ? 0 : outarg.block;
1557}
1558
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001559static loff_t fuse_file_llseek(struct file *file, loff_t offset, int origin)
1560{
1561 loff_t retval;
1562 struct inode *inode = file->f_path.dentry->d_inode;
1563
1564 mutex_lock(&inode->i_mutex);
1565 switch (origin) {
1566 case SEEK_END:
Miklos Szeredi769415c2008-10-16 16:08:56 +02001567 retval = fuse_update_attributes(inode, NULL, file, NULL);
1568 if (retval)
Dan Carpenter52916582009-03-27 13:36:10 +03001569 goto exit;
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001570 offset += i_size_read(inode);
1571 break;
1572 case SEEK_CUR:
1573 offset += file->f_pos;
1574 }
1575 retval = -EINVAL;
1576 if (offset >= 0 && offset <= inode->i_sb->s_maxbytes) {
1577 if (offset != file->f_pos) {
1578 file->f_pos = offset;
1579 file->f_version = 0;
1580 }
1581 retval = offset;
1582 }
Dan Carpenter52916582009-03-27 13:36:10 +03001583exit:
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001584 mutex_unlock(&inode->i_mutex);
1585 return retval;
1586}
1587
Tejun Heo59efec72008-11-26 12:03:55 +01001588static int fuse_ioctl_copy_user(struct page **pages, struct iovec *iov,
1589 unsigned int nr_segs, size_t bytes, bool to_user)
1590{
1591 struct iov_iter ii;
1592 int page_idx = 0;
1593
1594 if (!bytes)
1595 return 0;
1596
1597 iov_iter_init(&ii, iov, nr_segs, bytes, 0);
1598
1599 while (iov_iter_count(&ii)) {
1600 struct page *page = pages[page_idx++];
1601 size_t todo = min_t(size_t, PAGE_SIZE, iov_iter_count(&ii));
Dan Carpenter4aa0edd2010-05-07 10:28:17 +02001602 void *kaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01001603
Dan Carpenter4aa0edd2010-05-07 10:28:17 +02001604 kaddr = kmap(page);
Tejun Heo59efec72008-11-26 12:03:55 +01001605
1606 while (todo) {
1607 char __user *uaddr = ii.iov->iov_base + ii.iov_offset;
1608 size_t iov_len = ii.iov->iov_len - ii.iov_offset;
1609 size_t copy = min(todo, iov_len);
1610 size_t left;
1611
1612 if (!to_user)
1613 left = copy_from_user(kaddr, uaddr, copy);
1614 else
1615 left = copy_to_user(uaddr, kaddr, copy);
1616
1617 if (unlikely(left))
1618 return -EFAULT;
1619
1620 iov_iter_advance(&ii, copy);
1621 todo -= copy;
1622 kaddr += copy;
1623 }
1624
Jens Axboe0bd87182009-11-03 11:40:44 +01001625 kunmap(page);
Tejun Heo59efec72008-11-26 12:03:55 +01001626 }
1627
1628 return 0;
1629}
1630
1631/*
Miklos Szeredid9d318d2010-11-30 16:39:27 +01001632 * CUSE servers compiled on 32bit broke on 64bit kernels because the
1633 * ABI was defined to be 'struct iovec' which is different on 32bit
1634 * and 64bit. Fortunately we can determine which structure the server
1635 * used from the size of the reply.
1636 */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01001637static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
1638 size_t transferred, unsigned count,
1639 bool is_compat)
Miklos Szeredid9d318d2010-11-30 16:39:27 +01001640{
1641#ifdef CONFIG_COMPAT
1642 if (count * sizeof(struct compat_iovec) == transferred) {
1643 struct compat_iovec *ciov = src;
1644 unsigned i;
1645
1646 /*
1647 * With this interface a 32bit server cannot support
1648 * non-compat (i.e. ones coming from 64bit apps) ioctl
1649 * requests
1650 */
1651 if (!is_compat)
1652 return -EINVAL;
1653
1654 for (i = 0; i < count; i++) {
1655 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
1656 dst[i].iov_len = ciov[i].iov_len;
1657 }
1658 return 0;
1659 }
1660#endif
1661
1662 if (count * sizeof(struct iovec) != transferred)
1663 return -EIO;
1664
1665 memcpy(dst, src, transferred);
1666 return 0;
1667}
1668
Miklos Szeredi75727772010-11-30 16:39:27 +01001669/* Make sure iov_length() won't overflow */
1670static int fuse_verify_ioctl_iov(struct iovec *iov, size_t count)
1671{
1672 size_t n;
1673 u32 max = FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT;
1674
1675 for (n = 0; n < count; n++) {
1676 if (iov->iov_len > (size_t) max)
1677 return -ENOMEM;
1678 max -= iov->iov_len;
1679 }
1680 return 0;
1681}
1682
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01001683static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
1684 void *src, size_t transferred, unsigned count,
1685 bool is_compat)
1686{
1687 unsigned i;
1688 struct fuse_ioctl_iovec *fiov = src;
1689
1690 if (fc->minor < 16) {
1691 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
1692 count, is_compat);
1693 }
1694
1695 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
1696 return -EIO;
1697
1698 for (i = 0; i < count; i++) {
1699 /* Did the server supply an inappropriate value? */
1700 if (fiov[i].base != (unsigned long) fiov[i].base ||
1701 fiov[i].len != (unsigned long) fiov[i].len)
1702 return -EIO;
1703
1704 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
1705 dst[i].iov_len = (size_t) fiov[i].len;
1706
1707#ifdef CONFIG_COMPAT
1708 if (is_compat &&
1709 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
1710 (compat_size_t) dst[i].iov_len != fiov[i].len))
1711 return -EIO;
1712#endif
1713 }
1714
1715 return 0;
1716}
1717
1718
Miklos Szeredid9d318d2010-11-30 16:39:27 +01001719/*
Tejun Heo59efec72008-11-26 12:03:55 +01001720 * For ioctls, there is no generic way to determine how much memory
1721 * needs to be read and/or written. Furthermore, ioctls are allowed
1722 * to dereference the passed pointer, so the parameter requires deep
1723 * copying but FUSE has no idea whatsoever about what to copy in or
1724 * out.
1725 *
1726 * This is solved by allowing FUSE server to retry ioctl with
1727 * necessary in/out iovecs. Let's assume the ioctl implementation
1728 * needs to read in the following structure.
1729 *
1730 * struct a {
1731 * char *buf;
1732 * size_t buflen;
1733 * }
1734 *
1735 * On the first callout to FUSE server, inarg->in_size and
1736 * inarg->out_size will be NULL; then, the server completes the ioctl
1737 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
1738 * the actual iov array to
1739 *
1740 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
1741 *
1742 * which tells FUSE to copy in the requested area and retry the ioctl.
1743 * On the second round, the server has access to the structure and
1744 * from that it can tell what to look for next, so on the invocation,
1745 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
1746 *
1747 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
1748 * { .iov_base = a.buf, .iov_len = a.buflen } }
1749 *
1750 * FUSE will copy both struct a and the pointed buffer from the
1751 * process doing the ioctl and retry ioctl with both struct a and the
1752 * buffer.
1753 *
1754 * This time, FUSE server has everything it needs and completes ioctl
1755 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
1756 *
1757 * Copying data out works the same way.
1758 *
1759 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
1760 * automatically initializes in and out iovs by decoding @cmd with
1761 * _IOC_* macros and the server is not allowed to request RETRY. This
1762 * limits ioctl data transfers to well-formed ioctls and is the forced
1763 * behavior for all FUSE servers.
1764 */
Tejun Heo08cbf542009-04-14 10:54:53 +09001765long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
1766 unsigned int flags)
Tejun Heo59efec72008-11-26 12:03:55 +01001767{
Tejun Heo59efec72008-11-26 12:03:55 +01001768 struct fuse_file *ff = file->private_data;
Miklos Szeredid36f2482009-04-28 16:56:39 +02001769 struct fuse_conn *fc = ff->fc;
Tejun Heo59efec72008-11-26 12:03:55 +01001770 struct fuse_ioctl_in inarg = {
1771 .fh = ff->fh,
1772 .cmd = cmd,
1773 .arg = arg,
1774 .flags = flags
1775 };
1776 struct fuse_ioctl_out outarg;
1777 struct fuse_req *req = NULL;
1778 struct page **pages = NULL;
Miklos Szeredi8ac83502010-12-07 20:16:56 +01001779 struct iovec *iov_page = NULL;
Tejun Heo59efec72008-11-26 12:03:55 +01001780 struct iovec *in_iov = NULL, *out_iov = NULL;
1781 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
1782 size_t in_size, out_size, transferred;
1783 int err;
1784
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01001785#if BITS_PER_LONG == 32
1786 inarg.flags |= FUSE_IOCTL_32BIT;
1787#else
1788 if (flags & FUSE_IOCTL_COMPAT)
1789 inarg.flags |= FUSE_IOCTL_32BIT;
1790#endif
1791
Tejun Heo59efec72008-11-26 12:03:55 +01001792 /* assume all the iovs returned by client always fits in a page */
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01001793 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
Tejun Heo59efec72008-11-26 12:03:55 +01001794
Tejun Heo59efec72008-11-26 12:03:55 +01001795 err = -ENOMEM;
1796 pages = kzalloc(sizeof(pages[0]) * FUSE_MAX_PAGES_PER_REQ, GFP_KERNEL);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01001797 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
Tejun Heo59efec72008-11-26 12:03:55 +01001798 if (!pages || !iov_page)
1799 goto out;
1800
1801 /*
1802 * If restricted, initialize IO parameters as encoded in @cmd.
1803 * RETRY from server is not allowed.
1804 */
1805 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01001806 struct iovec *iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01001807
Miklos Szeredic9f0523d2008-12-02 14:49:42 +01001808 iov->iov_base = (void __user *)arg;
Tejun Heo59efec72008-11-26 12:03:55 +01001809 iov->iov_len = _IOC_SIZE(cmd);
1810
1811 if (_IOC_DIR(cmd) & _IOC_WRITE) {
1812 in_iov = iov;
1813 in_iovs = 1;
1814 }
1815
1816 if (_IOC_DIR(cmd) & _IOC_READ) {
1817 out_iov = iov;
1818 out_iovs = 1;
1819 }
1820 }
1821
1822 retry:
1823 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
1824 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
1825
1826 /*
1827 * Out data can be used either for actual out data or iovs,
1828 * make sure there always is at least one page.
1829 */
1830 out_size = max_t(size_t, out_size, PAGE_SIZE);
1831 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
1832
1833 /* make sure there are enough buffer pages and init request with them */
1834 err = -ENOMEM;
1835 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
1836 goto out;
1837 while (num_pages < max_pages) {
1838 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
1839 if (!pages[num_pages])
1840 goto out;
1841 num_pages++;
1842 }
1843
1844 req = fuse_get_req(fc);
1845 if (IS_ERR(req)) {
1846 err = PTR_ERR(req);
1847 req = NULL;
1848 goto out;
1849 }
1850 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
1851 req->num_pages = num_pages;
1852
1853 /* okay, let's send it to the client */
1854 req->in.h.opcode = FUSE_IOCTL;
Miklos Szeredid36f2482009-04-28 16:56:39 +02001855 req->in.h.nodeid = ff->nodeid;
Tejun Heo59efec72008-11-26 12:03:55 +01001856 req->in.numargs = 1;
1857 req->in.args[0].size = sizeof(inarg);
1858 req->in.args[0].value = &inarg;
1859 if (in_size) {
1860 req->in.numargs++;
1861 req->in.args[1].size = in_size;
1862 req->in.argpages = 1;
1863
1864 err = fuse_ioctl_copy_user(pages, in_iov, in_iovs, in_size,
1865 false);
1866 if (err)
1867 goto out;
1868 }
1869
1870 req->out.numargs = 2;
1871 req->out.args[0].size = sizeof(outarg);
1872 req->out.args[0].value = &outarg;
1873 req->out.args[1].size = out_size;
1874 req->out.argpages = 1;
1875 req->out.argvar = 1;
1876
Tejun Heob93f8582008-11-26 12:03:55 +01001877 fuse_request_send(fc, req);
Tejun Heo59efec72008-11-26 12:03:55 +01001878 err = req->out.h.error;
1879 transferred = req->out.args[1].size;
1880 fuse_put_request(fc, req);
1881 req = NULL;
1882 if (err)
1883 goto out;
1884
1885 /* did it ask for retry? */
1886 if (outarg.flags & FUSE_IOCTL_RETRY) {
Miklos Szeredi8ac83502010-12-07 20:16:56 +01001887 void *vaddr;
Tejun Heo59efec72008-11-26 12:03:55 +01001888
1889 /* no retry if in restricted mode */
1890 err = -EIO;
1891 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
1892 goto out;
1893
1894 in_iovs = outarg.in_iovs;
1895 out_iovs = outarg.out_iovs;
1896
1897 /*
1898 * Make sure things are in boundary, separate checks
1899 * are to protect against overflow.
1900 */
1901 err = -ENOMEM;
1902 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
1903 out_iovs > FUSE_IOCTL_MAX_IOV ||
1904 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
1905 goto out;
1906
Tejun Heo59efec72008-11-26 12:03:55 +01001907 vaddr = kmap_atomic(pages[0], KM_USER0);
Miklos Szeredi1baa26b2010-12-07 20:16:56 +01001908 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
Miklos Szeredid9d318d2010-11-30 16:39:27 +01001909 transferred, in_iovs + out_iovs,
1910 (flags & FUSE_IOCTL_COMPAT) != 0);
Tejun Heo59efec72008-11-26 12:03:55 +01001911 kunmap_atomic(vaddr, KM_USER0);
Miklos Szeredid9d318d2010-11-30 16:39:27 +01001912 if (err)
1913 goto out;
Tejun Heo59efec72008-11-26 12:03:55 +01001914
Miklos Szeredi8ac83502010-12-07 20:16:56 +01001915 in_iov = iov_page;
Tejun Heo59efec72008-11-26 12:03:55 +01001916 out_iov = in_iov + in_iovs;
1917
Miklos Szeredi75727772010-11-30 16:39:27 +01001918 err = fuse_verify_ioctl_iov(in_iov, in_iovs);
1919 if (err)
1920 goto out;
1921
1922 err = fuse_verify_ioctl_iov(out_iov, out_iovs);
1923 if (err)
1924 goto out;
1925
Tejun Heo59efec72008-11-26 12:03:55 +01001926 goto retry;
1927 }
1928
1929 err = -EIO;
1930 if (transferred > inarg.out_size)
1931 goto out;
1932
1933 err = fuse_ioctl_copy_user(pages, out_iov, out_iovs, transferred, true);
1934 out:
1935 if (req)
1936 fuse_put_request(fc, req);
Miklos Szeredi8ac83502010-12-07 20:16:56 +01001937 free_page((unsigned long) iov_page);
Tejun Heo59efec72008-11-26 12:03:55 +01001938 while (num_pages)
1939 __free_page(pages[--num_pages]);
1940 kfree(pages);
1941
1942 return err ? err : outarg.result;
1943}
Tejun Heo08cbf542009-04-14 10:54:53 +09001944EXPORT_SYMBOL_GPL(fuse_do_ioctl);
Tejun Heo59efec72008-11-26 12:03:55 +01001945
Miklos Szeredid36f2482009-04-28 16:56:39 +02001946static long fuse_file_ioctl_common(struct file *file, unsigned int cmd,
1947 unsigned long arg, unsigned int flags)
1948{
1949 struct inode *inode = file->f_dentry->d_inode;
1950 struct fuse_conn *fc = get_fuse_conn(inode);
1951
1952 if (!fuse_allow_task(fc, current))
1953 return -EACCES;
1954
1955 if (is_bad_inode(inode))
1956 return -EIO;
1957
1958 return fuse_do_ioctl(file, cmd, arg, flags);
1959}
1960
Tejun Heo59efec72008-11-26 12:03:55 +01001961static long fuse_file_ioctl(struct file *file, unsigned int cmd,
1962 unsigned long arg)
1963{
Miklos Szeredid36f2482009-04-28 16:56:39 +02001964 return fuse_file_ioctl_common(file, cmd, arg, 0);
Tejun Heo59efec72008-11-26 12:03:55 +01001965}
1966
1967static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
1968 unsigned long arg)
1969{
Miklos Szeredid36f2482009-04-28 16:56:39 +02001970 return fuse_file_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
Tejun Heo59efec72008-11-26 12:03:55 +01001971}
1972
Tejun Heo95668a62008-11-26 12:03:55 +01001973/*
1974 * All files which have been polled are linked to RB tree
1975 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
1976 * find the matching one.
1977 */
1978static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
1979 struct rb_node **parent_out)
1980{
1981 struct rb_node **link = &fc->polled_files.rb_node;
1982 struct rb_node *last = NULL;
1983
1984 while (*link) {
1985 struct fuse_file *ff;
1986
1987 last = *link;
1988 ff = rb_entry(last, struct fuse_file, polled_node);
1989
1990 if (kh < ff->kh)
1991 link = &last->rb_left;
1992 else if (kh > ff->kh)
1993 link = &last->rb_right;
1994 else
1995 return link;
1996 }
1997
1998 if (parent_out)
1999 *parent_out = last;
2000 return link;
2001}
2002
2003/*
2004 * The file is about to be polled. Make sure it's on the polled_files
2005 * RB tree. Note that files once added to the polled_files tree are
2006 * not removed before the file is released. This is because a file
2007 * polled once is likely to be polled again.
2008 */
2009static void fuse_register_polled_file(struct fuse_conn *fc,
2010 struct fuse_file *ff)
2011{
2012 spin_lock(&fc->lock);
2013 if (RB_EMPTY_NODE(&ff->polled_node)) {
2014 struct rb_node **link, *parent;
2015
2016 link = fuse_find_polled_node(fc, ff->kh, &parent);
2017 BUG_ON(*link);
2018 rb_link_node(&ff->polled_node, parent, link);
2019 rb_insert_color(&ff->polled_node, &fc->polled_files);
2020 }
2021 spin_unlock(&fc->lock);
2022}
2023
Tejun Heo08cbf542009-04-14 10:54:53 +09002024unsigned fuse_file_poll(struct file *file, poll_table *wait)
Tejun Heo95668a62008-11-26 12:03:55 +01002025{
Tejun Heo95668a62008-11-26 12:03:55 +01002026 struct fuse_file *ff = file->private_data;
Miklos Szeredi797759a2009-04-28 16:56:41 +02002027 struct fuse_conn *fc = ff->fc;
Tejun Heo95668a62008-11-26 12:03:55 +01002028 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2029 struct fuse_poll_out outarg;
2030 struct fuse_req *req;
2031 int err;
2032
2033 if (fc->no_poll)
2034 return DEFAULT_POLLMASK;
2035
2036 poll_wait(file, &ff->poll_wait, wait);
2037
2038 /*
2039 * Ask for notification iff there's someone waiting for it.
2040 * The client may ignore the flag and always notify.
2041 */
2042 if (waitqueue_active(&ff->poll_wait)) {
2043 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2044 fuse_register_polled_file(fc, ff);
2045 }
2046
2047 req = fuse_get_req(fc);
2048 if (IS_ERR(req))
Miklos Szeredi201fa692009-06-30 20:06:24 +02002049 return POLLERR;
Tejun Heo95668a62008-11-26 12:03:55 +01002050
2051 req->in.h.opcode = FUSE_POLL;
Miklos Szeredi797759a2009-04-28 16:56:41 +02002052 req->in.h.nodeid = ff->nodeid;
Tejun Heo95668a62008-11-26 12:03:55 +01002053 req->in.numargs = 1;
2054 req->in.args[0].size = sizeof(inarg);
2055 req->in.args[0].value = &inarg;
2056 req->out.numargs = 1;
2057 req->out.args[0].size = sizeof(outarg);
2058 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01002059 fuse_request_send(fc, req);
Tejun Heo95668a62008-11-26 12:03:55 +01002060 err = req->out.h.error;
2061 fuse_put_request(fc, req);
2062
2063 if (!err)
2064 return outarg.revents;
2065 if (err == -ENOSYS) {
2066 fc->no_poll = 1;
2067 return DEFAULT_POLLMASK;
2068 }
2069 return POLLERR;
2070}
Tejun Heo08cbf542009-04-14 10:54:53 +09002071EXPORT_SYMBOL_GPL(fuse_file_poll);
Tejun Heo95668a62008-11-26 12:03:55 +01002072
2073/*
2074 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2075 * wakes up the poll waiters.
2076 */
2077int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2078 struct fuse_notify_poll_wakeup_out *outarg)
2079{
2080 u64 kh = outarg->kh;
2081 struct rb_node **link;
2082
2083 spin_lock(&fc->lock);
2084
2085 link = fuse_find_polled_node(fc, kh, NULL);
2086 if (*link) {
2087 struct fuse_file *ff;
2088
2089 ff = rb_entry(*link, struct fuse_file, polled_node);
2090 wake_up_interruptible_sync(&ff->poll_wait);
2091 }
2092
2093 spin_unlock(&fc->lock);
2094 return 0;
2095}
2096
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002097static const struct file_operations fuse_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002098 .llseek = fuse_file_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07002099 .read = do_sync_read,
Miklos Szeredibcb4be82007-11-28 16:21:59 -08002100 .aio_read = fuse_file_aio_read,
Badari Pulavarty543ade12006-09-30 23:28:48 -07002101 .write = do_sync_write,
Nick Pigginea9b9902008-04-30 00:54:42 -07002102 .aio_write = fuse_file_aio_write,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002103 .mmap = fuse_file_mmap,
2104 .open = fuse_open,
2105 .flush = fuse_flush,
2106 .release = fuse_release,
2107 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07002108 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002109 .flock = fuse_file_flock,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02002110 .splice_read = generic_file_splice_read,
Tejun Heo59efec72008-11-26 12:03:55 +01002111 .unlocked_ioctl = fuse_file_ioctl,
2112 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01002113 .poll = fuse_file_poll,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002114};
2115
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002116static const struct file_operations fuse_direct_io_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07002117 .llseek = fuse_file_llseek,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07002118 .read = fuse_direct_read,
2119 .write = fuse_direct_write,
Miklos Szeredifc280c92009-04-02 14:25:35 +02002120 .mmap = fuse_direct_mmap,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07002121 .open = fuse_open,
2122 .flush = fuse_flush,
2123 .release = fuse_release,
2124 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07002125 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002126 .flock = fuse_file_flock,
Tejun Heo59efec72008-11-26 12:03:55 +01002127 .unlocked_ioctl = fuse_file_ioctl,
2128 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01002129 .poll = fuse_file_poll,
Miklos Szeredifc280c92009-04-02 14:25:35 +02002130 /* no splice_read */
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07002131};
2132
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07002133static const struct address_space_operations fuse_file_aops = {
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002134 .readpage = fuse_readpage,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002135 .writepage = fuse_writepage,
2136 .launder_page = fuse_launder_page,
Nick Piggin5e6f58a2007-10-16 01:25:17 -07002137 .write_begin = fuse_write_begin,
2138 .write_end = fuse_write_end,
Miklos Szeredidb50b962005-09-09 13:10:33 -07002139 .readpages = fuse_readpages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002140 .set_page_dirty = __set_page_dirty_nobuffers,
Miklos Szeredib2d22722006-12-06 20:35:51 -08002141 .bmap = fuse_bmap,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002142};
2143
2144void fuse_init_file_inode(struct inode *inode)
2145{
Miklos Szeredi45323fb2005-09-09 13:10:37 -07002146 inode->i_fop = &fuse_file_operations;
2147 inode->i_data.a_ops = &fuse_file_aops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002148}