blob: c18913a777ae3865148c9bbd679d0c09ff092f4f [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 Szeredib6aeade2005-09-09 13:10:30 -070016
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080017static const struct file_operations fuse_direct_io_file_operations;
Miklos Szeredi45323fb2005-09-09 13:10:37 -070018
Miklos Szeredi91fe96b2009-04-28 16:56:37 +020019static int fuse_send_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
20 int opcode, struct fuse_open_out *outargp)
Miklos Szeredib6aeade2005-09-09 13:10:30 -070021{
Miklos Szeredib6aeade2005-09-09 13:10:30 -070022 struct fuse_open_in inarg;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080023 struct fuse_req *req;
24 int err;
25
Miklos Szeredice1d5a42006-04-10 22:54:58 -070026 req = fuse_get_req(fc);
27 if (IS_ERR(req))
28 return PTR_ERR(req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080029
30 memset(&inarg, 0, sizeof(inarg));
Miklos Szeredi6ff958e2007-10-18 03:07:02 -070031 inarg.flags = file->f_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
32 if (!fc->atomic_o_trunc)
33 inarg.flags &= ~O_TRUNC;
Miklos Szeredi91fe96b2009-04-28 16:56:37 +020034 req->in.h.opcode = opcode;
35 req->in.h.nodeid = nodeid;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080036 req->in.numargs = 1;
37 req->in.args[0].size = sizeof(inarg);
38 req->in.args[0].value = &inarg;
39 req->out.numargs = 1;
40 req->out.args[0].size = sizeof(*outargp);
41 req->out.args[0].value = outargp;
Tejun Heob93f8582008-11-26 12:03:55 +010042 fuse_request_send(fc, req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080043 err = req->out.h.error;
44 fuse_put_request(fc, req);
45
46 return err;
47}
48
Tejun Heoacf99432008-11-26 12:03:55 +010049struct fuse_file *fuse_file_alloc(struct fuse_conn *fc)
Miklos Szeredifd72faa2005-11-07 00:59:51 -080050{
51 struct fuse_file *ff;
Tejun Heo6b2db282009-04-14 10:54:49 +090052
Miklos Szeredifd72faa2005-11-07 00:59:51 -080053 ff = kmalloc(sizeof(struct fuse_file), GFP_KERNEL);
Tejun Heo6b2db282009-04-14 10:54:49 +090054 if (unlikely(!ff))
55 return NULL;
56
Miklos Szeredida5e4712009-04-28 16:56:36 +020057 ff->fc = fc;
Tejun Heo6b2db282009-04-14 10:54:49 +090058 ff->reserved_req = fuse_request_alloc();
59 if (unlikely(!ff->reserved_req)) {
60 kfree(ff);
61 return NULL;
Miklos Szeredifd72faa2005-11-07 00:59:51 -080062 }
Tejun Heo6b2db282009-04-14 10:54:49 +090063
64 INIT_LIST_HEAD(&ff->write_entry);
65 atomic_set(&ff->count, 0);
66 RB_CLEAR_NODE(&ff->polled_node);
67 init_waitqueue_head(&ff->poll_wait);
68
69 spin_lock(&fc->lock);
70 ff->kh = ++fc->khctr;
71 spin_unlock(&fc->lock);
72
Miklos Szeredifd72faa2005-11-07 00:59:51 -080073 return ff;
74}
75
76void fuse_file_free(struct fuse_file *ff)
77{
Miklos Szeredi33649c92006-06-25 05:48:52 -070078 fuse_request_free(ff->reserved_req);
Miklos Szeredifd72faa2005-11-07 00:59:51 -080079 kfree(ff);
80}
81
Miklos Szeredic7b71432009-04-28 16:56:37 +020082struct fuse_file *fuse_file_get(struct fuse_file *ff)
Miklos Szeredic756e0a2007-10-16 23:31:00 -070083{
84 atomic_inc(&ff->count);
85 return ff;
86}
87
Miklos Szeredi819c4b32007-10-16 23:31:04 -070088static void fuse_release_end(struct fuse_conn *fc, struct fuse_req *req)
89{
Miklos Szeredib0be46e2009-04-28 16:56:36 +020090 path_put(&req->misc.release.path);
Miklos Szeredi819c4b32007-10-16 23:31:04 -070091}
92
Miklos Szeredic756e0a2007-10-16 23:31:00 -070093static void fuse_file_put(struct fuse_file *ff)
94{
95 if (atomic_dec_and_test(&ff->count)) {
96 struct fuse_req *req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +020097
Miklos Szeredi819c4b32007-10-16 23:31:04 -070098 req->end = fuse_release_end;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +020099 fuse_request_send_background(ff->fc, req);
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700100 kfree(ff);
101 }
102}
103
Tejun Heo08cbf542009-04-14 10:54:53 +0900104int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
105 bool isdir)
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200106{
107 struct fuse_open_out outarg;
108 struct fuse_file *ff;
109 int err;
110 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
111
112 ff = fuse_file_alloc(fc);
113 if (!ff)
114 return -ENOMEM;
115
116 err = fuse_send_open(fc, nodeid, file, opcode, &outarg);
117 if (err) {
118 fuse_file_free(ff);
119 return err;
120 }
121
122 if (isdir)
123 outarg.open_flags &= ~FOPEN_DIRECT_IO;
124
125 ff->fh = outarg.fh;
126 ff->nodeid = nodeid;
127 ff->open_flags = outarg.open_flags;
128 file->private_data = fuse_file_get(ff);
129
130 return 0;
131}
Tejun Heo08cbf542009-04-14 10:54:53 +0900132EXPORT_SYMBOL_GPL(fuse_do_open);
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200133
Miklos Szeredic7b71432009-04-28 16:56:37 +0200134void fuse_finish_open(struct inode *inode, struct file *file)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800135{
Miklos Szeredic7b71432009-04-28 16:56:37 +0200136 struct fuse_file *ff = file->private_data;
137
138 if (ff->open_flags & FOPEN_DIRECT_IO)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800139 file->f_op = &fuse_direct_io_file_operations;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200140 if (!(ff->open_flags & FOPEN_KEEP_CACHE))
Miklos Szeredib1009972007-10-16 23:31:01 -0700141 invalidate_inode_pages2(inode->i_mapping);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200142 if (ff->open_flags & FOPEN_NONSEEKABLE)
Tejun Heoa7c1b992008-10-16 16:08:57 +0200143 nonseekable_open(inode, file);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800144}
145
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200146int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800147{
Tejun Heoacf99432008-11-26 12:03:55 +0100148 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700149 int err;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700150
Miklos Szeredidd190d02005-09-30 11:59:02 -0700151 /* VFS checks this, but only _after_ ->open() */
152 if (file->f_flags & O_DIRECT)
153 return -EINVAL;
154
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700155 err = generic_file_open(inode, file);
156 if (err)
157 return err;
158
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200159 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800160 if (err)
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200161 return err;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700162
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200163 fuse_finish_open(inode, file);
164
165 return 0;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700166}
167
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200168static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800169{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200170 struct fuse_conn *fc = ff->fc;
Miklos Szeredi33649c92006-06-25 05:48:52 -0700171 struct fuse_req *req = ff->reserved_req;
Miklos Szeredib57d4262008-02-06 01:38:39 -0800172 struct fuse_release_in *inarg = &req->misc.release.in;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700173
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200174 spin_lock(&fc->lock);
175 list_del(&ff->write_entry);
176 if (!RB_EMPTY_NODE(&ff->polled_node))
177 rb_erase(&ff->polled_node, &fc->polled_files);
178 spin_unlock(&fc->lock);
179
180 wake_up_interruptible_sync(&ff->poll_wait);
181
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700182 inarg->fh = ff->fh;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800183 inarg->flags = flags;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700184 req->in.h.opcode = opcode;
Miklos Szeredic7b71432009-04-28 16:56:37 +0200185 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700186 req->in.numargs = 1;
187 req->in.args[0].size = sizeof(struct fuse_release_in);
188 req->in.args[0].value = inarg;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800189}
190
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200191void fuse_release_common(struct file *file, int opcode)
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800192{
Tejun Heo6b2db282009-04-14 10:54:49 +0900193 struct fuse_file *ff;
194 struct fuse_req *req;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -0700195
Tejun Heo6b2db282009-04-14 10:54:49 +0900196 ff = file->private_data;
197 if (unlikely(!ff))
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200198 return;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700199
Tejun Heo6b2db282009-04-14 10:54:49 +0900200 req = ff->reserved_req;
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200201 fuse_prepare_release(ff, file->f_flags, opcode);
Tejun Heo95668a62008-11-26 12:03:55 +0100202
Tejun Heo6b2db282009-04-14 10:54:49 +0900203 /* Hold vfsmount and dentry until release is finished */
Miklos Szeredib0be46e2009-04-28 16:56:36 +0200204 path_get(&file->f_path);
205 req->misc.release.path = file->f_path;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700206
Tejun Heo6b2db282009-04-14 10:54:49 +0900207 /*
208 * Normally this will send the RELEASE request, however if
209 * some asynchronous READ or WRITE requests are outstanding,
210 * the sending will be delayed.
211 */
212 fuse_file_put(ff);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700213}
214
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700215static int fuse_open(struct inode *inode, struct file *file)
216{
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200217 return fuse_open_common(inode, file, false);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700218}
219
220static int fuse_release(struct inode *inode, struct file *file)
221{
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200222 fuse_release_common(file, FUSE_RELEASE);
223
224 /* return value is ignored by VFS */
225 return 0;
226}
227
228void fuse_sync_release(struct fuse_file *ff, int flags)
229{
230 WARN_ON(atomic_read(&ff->count) > 1);
231 fuse_prepare_release(ff, flags, FUSE_RELEASE);
232 ff->reserved_req->force = 1;
233 fuse_request_send(ff->fc, ff->reserved_req);
234 fuse_put_request(ff->fc, ff->reserved_req);
235 kfree(ff);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700236}
Tejun Heo08cbf542009-04-14 10:54:53 +0900237EXPORT_SYMBOL_GPL(fuse_sync_release);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700238
Miklos Szeredi71421252006-06-25 05:48:52 -0700239/*
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700240 * Scramble the ID space with XTEA, so that the value of the files_struct
241 * pointer is not exposed to userspace.
Miklos Szeredi71421252006-06-25 05:48:52 -0700242 */
Miklos Szeredif3332112007-10-18 03:07:04 -0700243u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
Miklos Szeredi71421252006-06-25 05:48:52 -0700244{
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700245 u32 *k = fc->scramble_key;
246 u64 v = (unsigned long) id;
247 u32 v0 = v;
248 u32 v1 = v >> 32;
249 u32 sum = 0;
250 int i;
251
252 for (i = 0; i < 32; i++) {
253 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
254 sum += 0x9E3779B9;
255 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
256 }
257
258 return (u64) v0 + ((u64) v1 << 32);
Miklos Szeredi71421252006-06-25 05:48:52 -0700259}
260
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700261/*
262 * Check if page is under writeback
263 *
264 * This is currently done by walking the list of writepage requests
265 * for the inode, which can be pretty inefficient.
266 */
267static bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
268{
269 struct fuse_conn *fc = get_fuse_conn(inode);
270 struct fuse_inode *fi = get_fuse_inode(inode);
271 struct fuse_req *req;
272 bool found = false;
273
274 spin_lock(&fc->lock);
275 list_for_each_entry(req, &fi->writepages, writepages_entry) {
276 pgoff_t curr_index;
277
278 BUG_ON(req->inode != inode);
279 curr_index = req->misc.write.in.offset >> PAGE_CACHE_SHIFT;
280 if (curr_index == index) {
281 found = true;
282 break;
283 }
284 }
285 spin_unlock(&fc->lock);
286
287 return found;
288}
289
290/*
291 * Wait for page writeback to be completed.
292 *
293 * Since fuse doesn't rely on the VM writeback tracking, this has to
294 * use some other means.
295 */
296static int fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
297{
298 struct fuse_inode *fi = get_fuse_inode(inode);
299
300 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
301 return 0;
302}
303
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -0700304static int fuse_flush(struct file *file, fl_owner_t id)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700305{
Josef Sipek7706a9d2006-12-08 02:37:02 -0800306 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700307 struct fuse_conn *fc = get_fuse_conn(inode);
308 struct fuse_file *ff = file->private_data;
309 struct fuse_req *req;
310 struct fuse_flush_in inarg;
311 int err;
312
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800313 if (is_bad_inode(inode))
314 return -EIO;
315
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700316 if (fc->no_flush)
317 return 0;
318
Miklos Szeredi33649c92006-06-25 05:48:52 -0700319 req = fuse_get_req_nofail(fc, file);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700320 memset(&inarg, 0, sizeof(inarg));
321 inarg.fh = ff->fh;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700322 inarg.lock_owner = fuse_lock_owner_id(fc, id);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700323 req->in.h.opcode = FUSE_FLUSH;
324 req->in.h.nodeid = get_node_id(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700325 req->in.numargs = 1;
326 req->in.args[0].size = sizeof(inarg);
327 req->in.args[0].value = &inarg;
Miklos Szeredi71421252006-06-25 05:48:52 -0700328 req->force = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100329 fuse_request_send(fc, req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700330 err = req->out.h.error;
331 fuse_put_request(fc, req);
332 if (err == -ENOSYS) {
333 fc->no_flush = 1;
334 err = 0;
335 }
336 return err;
337}
338
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700339/*
340 * Wait for all pending writepages on the inode to finish.
341 *
342 * This is currently done by blocking further writes with FUSE_NOWRITE
343 * and waiting for all sent writes to complete.
344 *
345 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
346 * could conflict with truncation.
347 */
348static void fuse_sync_writes(struct inode *inode)
349{
350 fuse_set_nowrite(inode);
351 fuse_release_nowrite(inode);
352}
353
Miklos Szeredi82547982005-09-09 13:10:38 -0700354int fuse_fsync_common(struct file *file, struct dentry *de, int datasync,
355 int isdir)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700356{
357 struct inode *inode = de->d_inode;
358 struct fuse_conn *fc = get_fuse_conn(inode);
359 struct fuse_file *ff = file->private_data;
360 struct fuse_req *req;
361 struct fuse_fsync_in inarg;
362 int err;
363
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800364 if (is_bad_inode(inode))
365 return -EIO;
366
Miklos Szeredi82547982005-09-09 13:10:38 -0700367 if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700368 return 0;
369
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700370 /*
371 * Start writeback against all dirty pages of the inode, then
372 * wait for all outstanding writes, before sending the FSYNC
373 * request.
374 */
375 err = write_inode_now(inode, 0);
376 if (err)
377 return err;
378
379 fuse_sync_writes(inode);
380
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700381 req = fuse_get_req(fc);
382 if (IS_ERR(req))
383 return PTR_ERR(req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700384
385 memset(&inarg, 0, sizeof(inarg));
386 inarg.fh = ff->fh;
387 inarg.fsync_flags = datasync ? 1 : 0;
Miklos Szeredi82547982005-09-09 13:10:38 -0700388 req->in.h.opcode = isdir ? FUSE_FSYNCDIR : FUSE_FSYNC;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700389 req->in.h.nodeid = get_node_id(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700390 req->in.numargs = 1;
391 req->in.args[0].size = sizeof(inarg);
392 req->in.args[0].value = &inarg;
Tejun Heob93f8582008-11-26 12:03:55 +0100393 fuse_request_send(fc, req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700394 err = req->out.h.error;
395 fuse_put_request(fc, req);
396 if (err == -ENOSYS) {
Miklos Szeredi82547982005-09-09 13:10:38 -0700397 if (isdir)
398 fc->no_fsyncdir = 1;
399 else
400 fc->no_fsync = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700401 err = 0;
402 }
403 return err;
404}
405
Miklos Szeredi82547982005-09-09 13:10:38 -0700406static int fuse_fsync(struct file *file, struct dentry *de, int datasync)
407{
408 return fuse_fsync_common(file, de, datasync, 0);
409}
410
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200411void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
412 size_t count, int opcode)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700413{
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700414 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredia6643092007-11-28 16:22:00 -0800415 struct fuse_file *ff = file->private_data;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700416
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800417 inarg->fh = ff->fh;
418 inarg->offset = pos;
419 inarg->size = count;
Miklos Szeredia6643092007-11-28 16:22:00 -0800420 inarg->flags = file->f_flags;
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800421 req->in.h.opcode = opcode;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200422 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700423 req->in.numargs = 1;
424 req->in.args[0].size = sizeof(struct fuse_read_in);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800425 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700426 req->out.argvar = 1;
427 req->out.numargs = 1;
428 req->out.args[0].size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700429}
430
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800431static size_t fuse_send_read(struct fuse_req *req, struct file *file,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200432 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700433{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200434 struct fuse_file *ff = file->private_data;
435 struct fuse_conn *fc = ff->fc;
Miklos Szeredif3332112007-10-18 03:07:04 -0700436
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200437 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredif3332112007-10-18 03:07:04 -0700438 if (owner != NULL) {
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700439 struct fuse_read_in *inarg = &req->misc.read.in;
Miklos Szeredif3332112007-10-18 03:07:04 -0700440
441 inarg->read_flags |= FUSE_READ_LOCKOWNER;
442 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
443 }
Tejun Heob93f8582008-11-26 12:03:55 +0100444 fuse_request_send(fc, req);
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800445 return req->out.args[0].size;
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700446}
447
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700448static void fuse_read_update_size(struct inode *inode, loff_t size,
449 u64 attr_ver)
450{
451 struct fuse_conn *fc = get_fuse_conn(inode);
452 struct fuse_inode *fi = get_fuse_inode(inode);
453
454 spin_lock(&fc->lock);
455 if (attr_ver == fi->attr_version && size < inode->i_size) {
456 fi->attr_version = ++fc->attr_version;
457 i_size_write(inode, size);
458 }
459 spin_unlock(&fc->lock);
460}
461
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700462static int fuse_readpage(struct file *file, struct page *page)
463{
464 struct inode *inode = page->mapping->host;
465 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800466 struct fuse_req *req;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700467 size_t num_read;
468 loff_t pos = page_offset(page);
469 size_t count = PAGE_CACHE_SIZE;
470 u64 attr_ver;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800471 int err;
472
473 err = -EIO;
474 if (is_bad_inode(inode))
475 goto out;
476
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700477 /*
478 * Page writeback can extend beyond the liftime of the
479 * page-cache page, so make sure we read a properly synced
480 * page.
481 */
482 fuse_wait_on_page_writeback(inode, page->index);
483
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700484 req = fuse_get_req(fc);
485 err = PTR_ERR(req);
486 if (IS_ERR(req))
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700487 goto out;
488
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700489 attr_ver = fuse_get_attr_version(fc);
490
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700491 req->out.page_zeroing = 1;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200492 req->out.argpages = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700493 req->num_pages = 1;
494 req->pages[0] = page;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200495 num_read = fuse_send_read(req, file, pos, count, NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700496 err = req->out.h.error;
497 fuse_put_request(fc, req);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700498
499 if (!err) {
500 /*
501 * Short read means EOF. If file size is larger, truncate it
502 */
503 if (num_read < count)
504 fuse_read_update_size(inode, pos + num_read, attr_ver);
505
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700506 SetPageUptodate(page);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700507 }
508
Miklos Szeredib36c31b2005-09-09 13:10:38 -0700509 fuse_invalidate_attr(inode); /* atime changed */
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700510 out:
511 unlock_page(page);
512 return err;
513}
514
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800515static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredidb50b962005-09-09 13:10:33 -0700516{
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800517 int i;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700518 size_t count = req->misc.read.in.size;
519 size_t num_read = req->out.args[0].size;
520 struct inode *inode = req->pages[0]->mapping->host;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800521
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700522 /*
523 * Short read means EOF. If file size is larger, truncate it
524 */
525 if (!req->out.h.error && num_read < count) {
526 loff_t pos = page_offset(req->pages[0]) + num_read;
527 fuse_read_update_size(inode, pos, req->misc.read.attr_ver);
528 }
529
530 fuse_invalidate_attr(inode); /* atime changed */
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800531
Miklos Szeredidb50b962005-09-09 13:10:33 -0700532 for (i = 0; i < req->num_pages; i++) {
533 struct page *page = req->pages[i];
534 if (!req->out.h.error)
535 SetPageUptodate(page);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800536 else
537 SetPageError(page);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700538 unlock_page(page);
539 }
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700540 if (req->ff)
541 fuse_file_put(req->ff);
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800542}
543
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200544static void fuse_send_readpages(struct fuse_req *req, struct file *file)
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800545{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200546 struct fuse_file *ff = file->private_data;
547 struct fuse_conn *fc = ff->fc;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800548 loff_t pos = page_offset(req->pages[0]);
549 size_t count = req->num_pages << PAGE_CACHE_SHIFT;
Miklos Szeredif4975c62009-04-02 14:25:34 +0200550
551 req->out.argpages = 1;
Miklos Szeredic1aa96a2006-01-16 22:14:46 -0800552 req->out.page_zeroing = 1;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200553 fuse_read_fill(req, file, pos, count, FUSE_READ);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700554 req->misc.read.attr_ver = fuse_get_attr_version(fc);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800555 if (fc->async_read) {
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700556 req->ff = fuse_file_get(ff);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800557 req->end = fuse_readpages_end;
Tejun Heob93f8582008-11-26 12:03:55 +0100558 fuse_request_send_background(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800559 } else {
Tejun Heob93f8582008-11-26 12:03:55 +0100560 fuse_request_send(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800561 fuse_readpages_end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100562 fuse_put_request(fc, req);
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800563 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700564}
565
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700566struct fuse_fill_data {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700567 struct fuse_req *req;
Miklos Szeredia6643092007-11-28 16:22:00 -0800568 struct file *file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700569 struct inode *inode;
570};
571
572static int fuse_readpages_fill(void *_data, struct page *page)
573{
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700574 struct fuse_fill_data *data = _data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700575 struct fuse_req *req = data->req;
576 struct inode *inode = data->inode;
577 struct fuse_conn *fc = get_fuse_conn(inode);
578
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700579 fuse_wait_on_page_writeback(inode, page->index);
580
Miklos Szeredidb50b962005-09-09 13:10:33 -0700581 if (req->num_pages &&
582 (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
583 (req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_read ||
584 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200585 fuse_send_readpages(req, data->file);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700586 data->req = req = fuse_get_req(fc);
587 if (IS_ERR(req)) {
Miklos Szeredidb50b962005-09-09 13:10:33 -0700588 unlock_page(page);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700589 return PTR_ERR(req);
Miklos Szeredidb50b962005-09-09 13:10:33 -0700590 }
Miklos Szeredidb50b962005-09-09 13:10:33 -0700591 }
592 req->pages[req->num_pages] = page;
Miklos Szeredi1729a162008-11-26 12:03:54 +0100593 req->num_pages++;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700594 return 0;
595}
596
597static int fuse_readpages(struct file *file, struct address_space *mapping,
598 struct list_head *pages, unsigned nr_pages)
599{
600 struct inode *inode = mapping->host;
601 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700602 struct fuse_fill_data data;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700603 int err;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800604
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700605 err = -EIO;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800606 if (is_bad_inode(inode))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800607 goto out;
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800608
Miklos Szeredia6643092007-11-28 16:22:00 -0800609 data.file = file;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700610 data.inode = inode;
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700611 data.req = fuse_get_req(fc);
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700612 err = PTR_ERR(data.req);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700613 if (IS_ERR(data.req))
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800614 goto out;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700615
616 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700617 if (!err) {
618 if (data.req->num_pages)
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200619 fuse_send_readpages(data.req, file);
Miklos Szeredid3406ff2006-04-10 22:54:49 -0700620 else
621 fuse_put_request(fc, data.req);
622 }
OGAWA Hirofumi2e990022006-11-02 22:07:09 -0800623out:
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700624 return err;
Miklos Szeredidb50b962005-09-09 13:10:33 -0700625}
626
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800627static ssize_t fuse_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
628 unsigned long nr_segs, loff_t pos)
629{
630 struct inode *inode = iocb->ki_filp->f_mapping->host;
631
632 if (pos + iov_length(iov, nr_segs) > i_size_read(inode)) {
633 int err;
634 /*
635 * If trying to read past EOF, make sure the i_size
636 * attribute is up-to-date.
637 */
638 err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
639 if (err)
640 return err;
641 }
642
643 return generic_file_aio_read(iocb, iov, nr_segs, pos);
644}
645
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200646static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200647 loff_t pos, size_t count)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700648{
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700649 struct fuse_write_in *inarg = &req->misc.write.in;
650 struct fuse_write_out *outarg = &req->misc.write.out;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700651
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700652 inarg->fh = ff->fh;
653 inarg->offset = pos;
654 inarg->size = count;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700655 req->in.h.opcode = FUSE_WRITE;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200656 req->in.h.nodeid = ff->nodeid;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700657 req->in.numargs = 2;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200658 if (ff->fc->minor < 9)
Miklos Szeredif3332112007-10-18 03:07:04 -0700659 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
660 else
661 req->in.args[0].size = sizeof(struct fuse_write_in);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700662 req->in.args[0].value = inarg;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700663 req->in.args[1].size = count;
664 req->out.numargs = 1;
665 req->out.args[0].size = sizeof(struct fuse_write_out);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700666 req->out.args[0].value = outarg;
667}
668
669static size_t fuse_send_write(struct fuse_req *req, struct file *file,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200670 loff_t pos, size_t count, fl_owner_t owner)
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700671{
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200672 struct fuse_file *ff = file->private_data;
673 struct fuse_conn *fc = ff->fc;
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200674 struct fuse_write_in *inarg = &req->misc.write.in;
675
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200676 fuse_write_fill(req, ff, pos, count);
Miklos Szeredi2d698b02009-04-28 16:56:36 +0200677 inarg->flags = file->f_flags;
Miklos Szeredif3332112007-10-18 03:07:04 -0700678 if (owner != NULL) {
Miklos Szeredif3332112007-10-18 03:07:04 -0700679 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
680 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
681 }
Tejun Heob93f8582008-11-26 12:03:55 +0100682 fuse_request_send(fc, req);
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700683 return req->misc.write.out.size;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700684}
685
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700686static int fuse_write_begin(struct file *file, struct address_space *mapping,
687 loff_t pos, unsigned len, unsigned flags,
688 struct page **pagep, void **fsdata)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700689{
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700690 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
691
Nick Piggin54566b22009-01-04 12:00:53 -0800692 *pagep = grab_cache_page_write_begin(mapping, index, flags);
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700693 if (!*pagep)
694 return -ENOMEM;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700695 return 0;
696}
697
Miklos Szeredi854512e2008-04-30 00:54:41 -0700698static void fuse_write_update_size(struct inode *inode, loff_t pos)
699{
700 struct fuse_conn *fc = get_fuse_conn(inode);
701 struct fuse_inode *fi = get_fuse_inode(inode);
702
703 spin_lock(&fc->lock);
704 fi->attr_version = ++fc->attr_version;
705 if (pos > inode->i_size)
706 i_size_write(inode, pos);
707 spin_unlock(&fc->lock);
708}
709
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700710static int fuse_buffered_write(struct file *file, struct inode *inode,
711 loff_t pos, unsigned count, struct page *page)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700712{
713 int err;
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700714 size_t nres;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700715 struct fuse_conn *fc = get_fuse_conn(inode);
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700716 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
Miklos Szeredi248d86e2006-01-06 00:19:39 -0800717 struct fuse_req *req;
718
719 if (is_bad_inode(inode))
720 return -EIO;
721
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700722 /*
723 * Make sure writepages on the same page are not mixed up with
724 * plain writes.
725 */
726 fuse_wait_on_page_writeback(inode, page->index);
727
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700728 req = fuse_get_req(fc);
729 if (IS_ERR(req))
730 return PTR_ERR(req);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700731
Miklos Szeredif4975c62009-04-02 14:25:34 +0200732 req->in.argpages = 1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700733 req->num_pages = 1;
734 req->pages[0] = page;
735 req->page_offset = offset;
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200736 nres = fuse_send_write(req, file, pos, count, NULL);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700737 err = req->out.h.error;
738 fuse_put_request(fc, req);
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700739 if (!err && !nres)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700740 err = -EIO;
741 if (!err) {
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700742 pos += nres;
Miklos Szeredi854512e2008-04-30 00:54:41 -0700743 fuse_write_update_size(inode, pos);
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700744 if (count == PAGE_CACHE_SIZE)
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700745 SetPageUptodate(page);
Miklos Szeredib36c31b2005-09-09 13:10:38 -0700746 }
747 fuse_invalidate_attr(inode);
Nick Piggin5e6f58a2007-10-16 01:25:17 -0700748 return err ? err : nres;
749}
750
751static int fuse_write_end(struct file *file, struct address_space *mapping,
752 loff_t pos, unsigned len, unsigned copied,
753 struct page *page, void *fsdata)
754{
755 struct inode *inode = mapping->host;
756 int res = 0;
757
758 if (copied)
759 res = fuse_buffered_write(file, inode, pos, copied, page);
760
761 unlock_page(page);
762 page_cache_release(page);
763 return res;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700764}
765
Nick Pigginea9b9902008-04-30 00:54:42 -0700766static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
767 struct inode *inode, loff_t pos,
768 size_t count)
769{
770 size_t res;
771 unsigned offset;
772 unsigned i;
773
774 for (i = 0; i < req->num_pages; i++)
775 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
776
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200777 res = fuse_send_write(req, file, pos, count, NULL);
Nick Pigginea9b9902008-04-30 00:54:42 -0700778
779 offset = req->page_offset;
780 count = res;
781 for (i = 0; i < req->num_pages; i++) {
782 struct page *page = req->pages[i];
783
784 if (!req->out.h.error && !offset && count >= PAGE_CACHE_SIZE)
785 SetPageUptodate(page);
786
787 if (count > PAGE_CACHE_SIZE - offset)
788 count -= PAGE_CACHE_SIZE - offset;
789 else
790 count = 0;
791 offset = 0;
792
793 unlock_page(page);
794 page_cache_release(page);
795 }
796
797 return res;
798}
799
800static ssize_t fuse_fill_write_pages(struct fuse_req *req,
801 struct address_space *mapping,
802 struct iov_iter *ii, loff_t pos)
803{
804 struct fuse_conn *fc = get_fuse_conn(mapping->host);
805 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
806 size_t count = 0;
807 int err;
808
Miklos Szeredif4975c62009-04-02 14:25:34 +0200809 req->in.argpages = 1;
Nick Pigginea9b9902008-04-30 00:54:42 -0700810 req->page_offset = offset;
811
812 do {
813 size_t tmp;
814 struct page *page;
815 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
816 size_t bytes = min_t(size_t, PAGE_CACHE_SIZE - offset,
817 iov_iter_count(ii));
818
819 bytes = min_t(size_t, bytes, fc->max_write - count);
820
821 again:
822 err = -EFAULT;
823 if (iov_iter_fault_in_readable(ii, bytes))
824 break;
825
826 err = -ENOMEM;
Nick Piggin54566b22009-01-04 12:00:53 -0800827 page = grab_cache_page_write_begin(mapping, index, 0);
Nick Pigginea9b9902008-04-30 00:54:42 -0700828 if (!page)
829 break;
830
831 pagefault_disable();
832 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
833 pagefault_enable();
834 flush_dcache_page(page);
835
836 if (!tmp) {
837 unlock_page(page);
838 page_cache_release(page);
839 bytes = min(bytes, iov_iter_single_seg_count(ii));
840 goto again;
841 }
842
843 err = 0;
844 req->pages[req->num_pages] = page;
845 req->num_pages++;
846
847 iov_iter_advance(ii, tmp);
848 count += tmp;
849 pos += tmp;
850 offset += tmp;
851 if (offset == PAGE_CACHE_SIZE)
852 offset = 0;
853
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -0700854 if (!fc->big_writes)
855 break;
Nick Pigginea9b9902008-04-30 00:54:42 -0700856 } while (iov_iter_count(ii) && count < fc->max_write &&
857 req->num_pages < FUSE_MAX_PAGES_PER_REQ && offset == 0);
858
859 return count > 0 ? count : err;
860}
861
862static ssize_t fuse_perform_write(struct file *file,
863 struct address_space *mapping,
864 struct iov_iter *ii, loff_t pos)
865{
866 struct inode *inode = mapping->host;
867 struct fuse_conn *fc = get_fuse_conn(inode);
868 int err = 0;
869 ssize_t res = 0;
870
871 if (is_bad_inode(inode))
872 return -EIO;
873
874 do {
875 struct fuse_req *req;
876 ssize_t count;
877
878 req = fuse_get_req(fc);
879 if (IS_ERR(req)) {
880 err = PTR_ERR(req);
881 break;
882 }
883
884 count = fuse_fill_write_pages(req, mapping, ii, pos);
885 if (count <= 0) {
886 err = count;
887 } else {
888 size_t num_written;
889
890 num_written = fuse_send_write_pages(req, file, inode,
891 pos, count);
892 err = req->out.h.error;
893 if (!err) {
894 res += num_written;
895 pos += num_written;
896
897 /* break out of the loop on short write */
898 if (num_written != count)
899 err = -EIO;
900 }
901 }
902 fuse_put_request(fc, req);
903 } while (!err && iov_iter_count(ii));
904
905 if (res > 0)
906 fuse_write_update_size(inode, pos);
907
908 fuse_invalidate_attr(inode);
909
910 return res > 0 ? res : err;
911}
912
913static ssize_t fuse_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
914 unsigned long nr_segs, loff_t pos)
915{
916 struct file *file = iocb->ki_filp;
917 struct address_space *mapping = file->f_mapping;
918 size_t count = 0;
919 ssize_t written = 0;
920 struct inode *inode = mapping->host;
921 ssize_t err;
922 struct iov_iter i;
923
924 WARN_ON(iocb->ki_pos != pos);
925
926 err = generic_segment_checks(iov, &nr_segs, &count, VERIFY_READ);
927 if (err)
928 return err;
929
930 mutex_lock(&inode->i_mutex);
931 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
932
933 /* We can write back this queue in page reclaim */
934 current->backing_dev_info = mapping->backing_dev_info;
935
936 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
937 if (err)
938 goto out;
939
940 if (count == 0)
941 goto out;
942
Miklos Szeredi2f1936b2008-06-24 16:50:14 +0200943 err = file_remove_suid(file);
Nick Pigginea9b9902008-04-30 00:54:42 -0700944 if (err)
945 goto out;
946
947 file_update_time(file);
948
949 iov_iter_init(&i, iov, nr_segs, count, 0);
950 written = fuse_perform_write(file, mapping, &i, pos);
951 if (written >= 0)
952 iocb->ki_pos = pos + written;
953
954out:
955 current->backing_dev_info = NULL;
956 mutex_unlock(&inode->i_mutex);
957
958 return written ? written : err;
959}
960
Miklos Szeredi413ef8c2005-09-09 13:10:35 -0700961static void fuse_release_user_pages(struct fuse_req *req, int write)
962{
963 unsigned i;
964
965 for (i = 0; i < req->num_pages; i++) {
966 struct page *page = req->pages[i];
967 if (write)
968 set_page_dirty_lock(page);
969 put_page(page);
970 }
971}
972
973static int fuse_get_user_pages(struct fuse_req *req, const char __user *buf,
Miklos Szeredice60a2f2009-04-09 17:37:52 +0200974 size_t *nbytesp, int write)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -0700975{
Miklos Szeredice60a2f2009-04-09 17:37:52 +0200976 size_t nbytes = *nbytesp;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -0700977 unsigned long user_addr = (unsigned long) buf;
978 unsigned offset = user_addr & ~PAGE_MASK;
979 int npages;
980
Miklos Szeredif4975c62009-04-02 14:25:34 +0200981 /* Special case for kernel I/O: can copy directly into the buffer */
982 if (segment_eq(get_fs(), KERNEL_DS)) {
983 if (write)
984 req->in.args[1].value = (void *) user_addr;
985 else
986 req->out.args[0].value = (void *) user_addr;
987
988 return 0;
989 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -0700990
Miklos Szeredice60a2f2009-04-09 17:37:52 +0200991 nbytes = min_t(size_t, nbytes, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -0700992 npages = (nbytes + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
Harvey Harrisonbd730962008-05-01 04:35:15 -0700993 npages = clamp(npages, 1, FUSE_MAX_PAGES_PER_REQ);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -0700994 down_read(&current->mm->mmap_sem);
Miklos Szeredif4975c62009-04-02 14:25:34 +0200995 npages = get_user_pages(current, current->mm, user_addr, npages, !write,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -0700996 0, req->pages, NULL);
997 up_read(&current->mm->mmap_sem);
998 if (npages < 0)
999 return npages;
1000
1001 req->num_pages = npages;
1002 req->page_offset = offset;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001003
1004 if (write)
1005 req->in.argpages = 1;
1006 else
1007 req->out.argpages = 1;
1008
1009 nbytes = (req->num_pages << PAGE_SHIFT) - req->page_offset;
1010 *nbytesp = min(*nbytesp, nbytes);
1011
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001012 return 0;
1013}
1014
Tejun Heo08cbf542009-04-14 10:54:53 +09001015ssize_t fuse_direct_io(struct file *file, const char __user *buf,
1016 size_t count, loff_t *ppos, int write)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001017{
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001018 struct fuse_file *ff = file->private_data;
1019 struct fuse_conn *fc = ff->fc;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001020 size_t nmax = write ? fc->max_write : fc->max_read;
1021 loff_t pos = *ppos;
1022 ssize_t res = 0;
Miklos Szeredi248d86e2006-01-06 00:19:39 -08001023 struct fuse_req *req;
1024
Miklos Szeredice1d5a42006-04-10 22:54:58 -07001025 req = fuse_get_req(fc);
1026 if (IS_ERR(req))
1027 return PTR_ERR(req);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001028
1029 while (count) {
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001030 size_t nres;
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001031 fl_owner_t owner = current->files;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001032 size_t nbytes = min(count, nmax);
1033 int err = fuse_get_user_pages(req, buf, &nbytes, write);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001034 if (err) {
1035 res = err;
1036 break;
1037 }
Miklos Szeredif4975c62009-04-02 14:25:34 +02001038
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001039 if (write)
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001040 nres = fuse_send_write(req, file, pos, nbytes, owner);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001041 else
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001042 nres = fuse_send_read(req, file, pos, nbytes, owner);
1043
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001044 fuse_release_user_pages(req, !write);
1045 if (req->out.h.error) {
1046 if (!res)
1047 res = req->out.h.error;
1048 break;
1049 } else if (nres > nbytes) {
1050 res = -EIO;
1051 break;
1052 }
1053 count -= nres;
1054 res += nres;
1055 pos += nres;
1056 buf += nres;
1057 if (nres != nbytes)
1058 break;
Miklos Szeredi56cf34f2006-04-11 21:16:51 +02001059 if (count) {
1060 fuse_put_request(fc, req);
1061 req = fuse_get_req(fc);
1062 if (IS_ERR(req))
1063 break;
1064 }
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001065 }
Anand V. Avatif60311d2009-10-22 06:24:52 -07001066 if (!IS_ERR(req))
1067 fuse_put_request(fc, req);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001068 if (res > 0)
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001069 *ppos = pos;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001070
1071 return res;
1072}
Tejun Heo08cbf542009-04-14 10:54:53 +09001073EXPORT_SYMBOL_GPL(fuse_direct_io);
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001074
1075static ssize_t fuse_direct_read(struct file *file, char __user *buf,
1076 size_t count, loff_t *ppos)
1077{
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001078 ssize_t res;
1079 struct inode *inode = file->f_path.dentry->d_inode;
1080
1081 if (is_bad_inode(inode))
1082 return -EIO;
1083
1084 res = fuse_direct_io(file, buf, count, ppos, 0);
1085
1086 fuse_invalidate_attr(inode);
1087
1088 return res;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001089}
1090
1091static ssize_t fuse_direct_write(struct file *file, const char __user *buf,
1092 size_t count, loff_t *ppos)
1093{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001094 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001095 ssize_t res;
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001096
1097 if (is_bad_inode(inode))
1098 return -EIO;
1099
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001100 /* Don't allow parallel writes to the same file */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001101 mutex_lock(&inode->i_mutex);
Miklos Szeredi889f7842007-05-23 13:57:54 -07001102 res = generic_write_checks(file, ppos, &count, 0);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001103 if (!res) {
Miklos Szeredi889f7842007-05-23 13:57:54 -07001104 res = fuse_direct_io(file, buf, count, ppos, 1);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001105 if (res > 0)
1106 fuse_write_update_size(inode, *ppos);
1107 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001108 mutex_unlock(&inode->i_mutex);
Miklos Szeredid09cb9d2009-04-28 16:56:36 +02001109
1110 fuse_invalidate_attr(inode);
1111
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001112 return res;
1113}
1114
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001115static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001116{
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001117 __free_page(req->pages[0]);
1118 fuse_file_put(req->ff);
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001119}
1120
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001121static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001122{
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001123 struct inode *inode = req->inode;
1124 struct fuse_inode *fi = get_fuse_inode(inode);
1125 struct backing_dev_info *bdi = inode->i_mapping->backing_dev_info;
1126
1127 list_del(&req->writepages_entry);
1128 dec_bdi_stat(bdi, BDI_WRITEBACK);
1129 dec_zone_page_state(req->pages[0], NR_WRITEBACK_TEMP);
1130 bdi_writeout_inc(bdi);
1131 wake_up(&fi->page_waitq);
1132}
1133
1134/* Called under fc->lock, may release and reacquire it */
1135static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req)
Harvey Harrison5d9ec852008-12-02 14:49:42 +01001136__releases(&fc->lock)
1137__acquires(&fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001138{
1139 struct fuse_inode *fi = get_fuse_inode(req->inode);
1140 loff_t size = i_size_read(req->inode);
1141 struct fuse_write_in *inarg = &req->misc.write.in;
1142
1143 if (!fc->connected)
1144 goto out_free;
1145
1146 if (inarg->offset + PAGE_CACHE_SIZE <= size) {
1147 inarg->size = PAGE_CACHE_SIZE;
1148 } else if (inarg->offset < size) {
1149 inarg->size = size & (PAGE_CACHE_SIZE - 1);
1150 } else {
1151 /* Got truncated off completely */
1152 goto out_free;
1153 }
1154
1155 req->in.args[1].size = inarg->size;
1156 fi->writectr++;
Tejun Heob93f8582008-11-26 12:03:55 +01001157 fuse_request_send_background_locked(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001158 return;
1159
1160 out_free:
1161 fuse_writepage_finish(fc, req);
1162 spin_unlock(&fc->lock);
1163 fuse_writepage_free(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +01001164 fuse_put_request(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001165 spin_lock(&fc->lock);
1166}
1167
1168/*
1169 * If fi->writectr is positive (no truncate or fsync going on) send
1170 * all queued writepage requests.
1171 *
1172 * Called with fc->lock
1173 */
1174void fuse_flush_writepages(struct inode *inode)
Harvey Harrison5d9ec852008-12-02 14:49:42 +01001175__releases(&fc->lock)
1176__acquires(&fc->lock)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001177{
1178 struct fuse_conn *fc = get_fuse_conn(inode);
1179 struct fuse_inode *fi = get_fuse_inode(inode);
1180 struct fuse_req *req;
1181
1182 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1183 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1184 list_del_init(&req->list);
1185 fuse_send_writepage(fc, req);
1186 }
1187}
1188
1189static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1190{
1191 struct inode *inode = req->inode;
1192 struct fuse_inode *fi = get_fuse_inode(inode);
1193
1194 mapping_set_error(inode->i_mapping, req->out.h.error);
1195 spin_lock(&fc->lock);
1196 fi->writectr--;
1197 fuse_writepage_finish(fc, req);
1198 spin_unlock(&fc->lock);
1199 fuse_writepage_free(fc, req);
1200}
1201
1202static int fuse_writepage_locked(struct page *page)
1203{
1204 struct address_space *mapping = page->mapping;
1205 struct inode *inode = mapping->host;
1206 struct fuse_conn *fc = get_fuse_conn(inode);
1207 struct fuse_inode *fi = get_fuse_inode(inode);
1208 struct fuse_req *req;
1209 struct fuse_file *ff;
1210 struct page *tmp_page;
1211
1212 set_page_writeback(page);
1213
1214 req = fuse_request_alloc_nofs();
1215 if (!req)
1216 goto err;
1217
1218 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1219 if (!tmp_page)
1220 goto err_free;
1221
1222 spin_lock(&fc->lock);
1223 BUG_ON(list_empty(&fi->write_files));
1224 ff = list_entry(fi->write_files.next, struct fuse_file, write_entry);
1225 req->ff = fuse_file_get(ff);
1226 spin_unlock(&fc->lock);
1227
Miklos Szeredi2106cb12009-04-28 16:56:37 +02001228 fuse_write_fill(req, ff, page_offset(page), 0);
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001229
1230 copy_highpage(tmp_page, page);
Miklos Szeredi2d698b02009-04-28 16:56:36 +02001231 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
Miklos Szeredif4975c62009-04-02 14:25:34 +02001232 req->in.argpages = 1;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001233 req->num_pages = 1;
1234 req->pages[0] = tmp_page;
1235 req->page_offset = 0;
1236 req->end = fuse_writepage_end;
1237 req->inode = inode;
1238
1239 inc_bdi_stat(mapping->backing_dev_info, BDI_WRITEBACK);
1240 inc_zone_page_state(tmp_page, NR_WRITEBACK_TEMP);
1241 end_page_writeback(page);
1242
1243 spin_lock(&fc->lock);
1244 list_add(&req->writepages_entry, &fi->writepages);
1245 list_add_tail(&req->list, &fi->queued_writes);
1246 fuse_flush_writepages(inode);
1247 spin_unlock(&fc->lock);
1248
1249 return 0;
1250
1251err_free:
1252 fuse_request_free(req);
1253err:
1254 end_page_writeback(page);
1255 return -ENOMEM;
1256}
1257
1258static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1259{
1260 int err;
1261
1262 err = fuse_writepage_locked(page);
1263 unlock_page(page);
1264
1265 return err;
1266}
1267
1268static int fuse_launder_page(struct page *page)
1269{
1270 int err = 0;
1271 if (clear_page_dirty_for_io(page)) {
1272 struct inode *inode = page->mapping->host;
1273 err = fuse_writepage_locked(page);
1274 if (!err)
1275 fuse_wait_on_page_writeback(inode, page->index);
1276 }
1277 return err;
1278}
1279
1280/*
1281 * Write back dirty pages now, because there may not be any suitable
1282 * open files later
1283 */
1284static void fuse_vma_close(struct vm_area_struct *vma)
1285{
1286 filemap_write_and_wait(vma->vm_file->f_mapping);
1287}
1288
1289/*
1290 * Wait for writeback against this page to complete before allowing it
1291 * to be marked dirty again, and hence written back again, possibly
1292 * before the previous writepage completed.
1293 *
1294 * Block here, instead of in ->writepage(), so that the userspace fs
1295 * can only block processes actually operating on the filesystem.
1296 *
1297 * Otherwise unprivileged userspace fs would be able to block
1298 * unrelated:
1299 *
1300 * - page migration
1301 * - sync(2)
1302 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
1303 */
Nick Pigginc2ec1752009-03-31 15:23:21 -07001304static int fuse_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001305{
Nick Pigginc2ec1752009-03-31 15:23:21 -07001306 struct page *page = vmf->page;
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001307 /*
1308 * Don't use page->mapping as it may become NULL from a
1309 * concurrent truncate.
1310 */
1311 struct inode *inode = vma->vm_file->f_mapping->host;
1312
1313 fuse_wait_on_page_writeback(inode, page->index);
1314 return 0;
1315}
1316
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001317static const struct vm_operations_struct fuse_file_vm_ops = {
Miklos Szeredi3be5a522008-04-30 00:54:41 -07001318 .close = fuse_vma_close,
1319 .fault = filemap_fault,
1320 .page_mkwrite = fuse_page_mkwrite,
1321};
1322
1323static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
1324{
1325 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE)) {
1326 struct inode *inode = file->f_dentry->d_inode;
1327 struct fuse_conn *fc = get_fuse_conn(inode);
1328 struct fuse_inode *fi = get_fuse_inode(inode);
1329 struct fuse_file *ff = file->private_data;
1330 /*
1331 * file may be written through mmap, so chain it onto the
1332 * inodes's write_file list
1333 */
1334 spin_lock(&fc->lock);
1335 if (list_empty(&ff->write_entry))
1336 list_add(&ff->write_entry, &fi->write_files);
1337 spin_unlock(&fc->lock);
1338 }
1339 file_accessed(file);
1340 vma->vm_ops = &fuse_file_vm_ops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001341 return 0;
1342}
1343
Miklos Szeredifc280c92009-04-02 14:25:35 +02001344static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
1345{
1346 /* Can't provide the coherency needed for MAP_SHARED */
1347 if (vma->vm_flags & VM_MAYSHARE)
1348 return -ENODEV;
1349
Miklos Szeredi3121bfe2009-04-09 17:37:53 +02001350 invalidate_inode_pages2(file->f_mapping);
1351
Miklos Szeredifc280c92009-04-02 14:25:35 +02001352 return generic_file_mmap(file, vma);
1353}
1354
Miklos Szeredi71421252006-06-25 05:48:52 -07001355static int convert_fuse_file_lock(const struct fuse_file_lock *ffl,
1356 struct file_lock *fl)
1357{
1358 switch (ffl->type) {
1359 case F_UNLCK:
1360 break;
1361
1362 case F_RDLCK:
1363 case F_WRLCK:
1364 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
1365 ffl->end < ffl->start)
1366 return -EIO;
1367
1368 fl->fl_start = ffl->start;
1369 fl->fl_end = ffl->end;
1370 fl->fl_pid = ffl->pid;
1371 break;
1372
1373 default:
1374 return -EIO;
1375 }
1376 fl->fl_type = ffl->type;
1377 return 0;
1378}
1379
1380static void fuse_lk_fill(struct fuse_req *req, struct file *file,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001381 const struct file_lock *fl, int opcode, pid_t pid,
1382 int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07001383{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001384 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07001385 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredi71421252006-06-25 05:48:52 -07001386 struct fuse_file *ff = file->private_data;
1387 struct fuse_lk_in *arg = &req->misc.lk_in;
1388
1389 arg->fh = ff->fh;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -07001390 arg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
Miklos Szeredi71421252006-06-25 05:48:52 -07001391 arg->lk.start = fl->fl_start;
1392 arg->lk.end = fl->fl_end;
1393 arg->lk.type = fl->fl_type;
1394 arg->lk.pid = pid;
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001395 if (flock)
1396 arg->lk_flags |= FUSE_LK_FLOCK;
Miklos Szeredi71421252006-06-25 05:48:52 -07001397 req->in.h.opcode = opcode;
1398 req->in.h.nodeid = get_node_id(inode);
1399 req->in.numargs = 1;
1400 req->in.args[0].size = sizeof(*arg);
1401 req->in.args[0].value = arg;
1402}
1403
1404static int fuse_getlk(struct file *file, struct file_lock *fl)
1405{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001406 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi71421252006-06-25 05:48:52 -07001407 struct fuse_conn *fc = get_fuse_conn(inode);
1408 struct fuse_req *req;
1409 struct fuse_lk_out outarg;
1410 int err;
1411
1412 req = fuse_get_req(fc);
1413 if (IS_ERR(req))
1414 return PTR_ERR(req);
1415
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001416 fuse_lk_fill(req, file, fl, FUSE_GETLK, 0, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07001417 req->out.numargs = 1;
1418 req->out.args[0].size = sizeof(outarg);
1419 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01001420 fuse_request_send(fc, req);
Miklos Szeredi71421252006-06-25 05:48:52 -07001421 err = req->out.h.error;
1422 fuse_put_request(fc, req);
1423 if (!err)
1424 err = convert_fuse_file_lock(&outarg.lk, fl);
1425
1426 return err;
1427}
1428
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001429static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
Miklos Szeredi71421252006-06-25 05:48:52 -07001430{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001431 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi71421252006-06-25 05:48:52 -07001432 struct fuse_conn *fc = get_fuse_conn(inode);
1433 struct fuse_req *req;
1434 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
1435 pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0;
1436 int err;
1437
Miklos Szeredi48e90762008-07-25 01:49:02 -07001438 if (fl->fl_lmops && fl->fl_lmops->fl_grant) {
1439 /* NLM needs asynchronous locks, which we don't support yet */
1440 return -ENOLCK;
1441 }
1442
Miklos Szeredi71421252006-06-25 05:48:52 -07001443 /* Unlock on close is handled by the flush method */
1444 if (fl->fl_flags & FL_CLOSE)
1445 return 0;
1446
1447 req = fuse_get_req(fc);
1448 if (IS_ERR(req))
1449 return PTR_ERR(req);
1450
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001451 fuse_lk_fill(req, file, fl, opcode, pid, flock);
Tejun Heob93f8582008-11-26 12:03:55 +01001452 fuse_request_send(fc, req);
Miklos Szeredi71421252006-06-25 05:48:52 -07001453 err = req->out.h.error;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001454 /* locking is restartable */
1455 if (err == -EINTR)
1456 err = -ERESTARTSYS;
Miklos Szeredi71421252006-06-25 05:48:52 -07001457 fuse_put_request(fc, req);
1458 return err;
1459}
1460
1461static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
1462{
Josef Sipek7706a9d2006-12-08 02:37:02 -08001463 struct inode *inode = file->f_path.dentry->d_inode;
Miklos Szeredi71421252006-06-25 05:48:52 -07001464 struct fuse_conn *fc = get_fuse_conn(inode);
1465 int err;
1466
Miklos Szeredi48e90762008-07-25 01:49:02 -07001467 if (cmd == F_CANCELLK) {
1468 err = 0;
1469 } else if (cmd == F_GETLK) {
Miklos Szeredi71421252006-06-25 05:48:52 -07001470 if (fc->no_lock) {
Marc Eshel9d6a8c52007-02-21 00:55:18 -05001471 posix_test_lock(file, fl);
Miklos Szeredi71421252006-06-25 05:48:52 -07001472 err = 0;
1473 } else
1474 err = fuse_getlk(file, fl);
1475 } else {
1476 if (fc->no_lock)
Miklos Szeredi48e90762008-07-25 01:49:02 -07001477 err = posix_lock_file(file, fl, NULL);
Miklos Szeredi71421252006-06-25 05:48:52 -07001478 else
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001479 err = fuse_setlk(file, fl, 0);
Miklos Szeredi71421252006-06-25 05:48:52 -07001480 }
1481 return err;
1482}
1483
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001484static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
1485{
1486 struct inode *inode = file->f_path.dentry->d_inode;
1487 struct fuse_conn *fc = get_fuse_conn(inode);
1488 int err;
1489
1490 if (fc->no_lock) {
1491 err = flock_lock_file_wait(file, fl);
1492 } else {
1493 /* emulate flock with POSIX locks */
1494 fl->fl_owner = (fl_owner_t) file;
1495 err = fuse_setlk(file, fl, 1);
1496 }
1497
1498 return err;
1499}
1500
Miklos Szeredib2d22722006-12-06 20:35:51 -08001501static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
1502{
1503 struct inode *inode = mapping->host;
1504 struct fuse_conn *fc = get_fuse_conn(inode);
1505 struct fuse_req *req;
1506 struct fuse_bmap_in inarg;
1507 struct fuse_bmap_out outarg;
1508 int err;
1509
1510 if (!inode->i_sb->s_bdev || fc->no_bmap)
1511 return 0;
1512
1513 req = fuse_get_req(fc);
1514 if (IS_ERR(req))
1515 return 0;
1516
1517 memset(&inarg, 0, sizeof(inarg));
1518 inarg.block = block;
1519 inarg.blocksize = inode->i_sb->s_blocksize;
1520 req->in.h.opcode = FUSE_BMAP;
1521 req->in.h.nodeid = get_node_id(inode);
1522 req->in.numargs = 1;
1523 req->in.args[0].size = sizeof(inarg);
1524 req->in.args[0].value = &inarg;
1525 req->out.numargs = 1;
1526 req->out.args[0].size = sizeof(outarg);
1527 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01001528 fuse_request_send(fc, req);
Miklos Szeredib2d22722006-12-06 20:35:51 -08001529 err = req->out.h.error;
1530 fuse_put_request(fc, req);
1531 if (err == -ENOSYS)
1532 fc->no_bmap = 1;
1533
1534 return err ? 0 : outarg.block;
1535}
1536
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001537static loff_t fuse_file_llseek(struct file *file, loff_t offset, int origin)
1538{
1539 loff_t retval;
1540 struct inode *inode = file->f_path.dentry->d_inode;
1541
1542 mutex_lock(&inode->i_mutex);
1543 switch (origin) {
1544 case SEEK_END:
Miklos Szeredi769415c2008-10-16 16:08:56 +02001545 retval = fuse_update_attributes(inode, NULL, file, NULL);
1546 if (retval)
Dan Carpenter52916582009-03-27 13:36:10 +03001547 goto exit;
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001548 offset += i_size_read(inode);
1549 break;
1550 case SEEK_CUR:
1551 offset += file->f_pos;
1552 }
1553 retval = -EINVAL;
1554 if (offset >= 0 && offset <= inode->i_sb->s_maxbytes) {
1555 if (offset != file->f_pos) {
1556 file->f_pos = offset;
1557 file->f_version = 0;
1558 }
1559 retval = offset;
1560 }
Dan Carpenter52916582009-03-27 13:36:10 +03001561exit:
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001562 mutex_unlock(&inode->i_mutex);
1563 return retval;
1564}
1565
Tejun Heo59efec72008-11-26 12:03:55 +01001566static int fuse_ioctl_copy_user(struct page **pages, struct iovec *iov,
1567 unsigned int nr_segs, size_t bytes, bool to_user)
1568{
1569 struct iov_iter ii;
1570 int page_idx = 0;
1571
1572 if (!bytes)
1573 return 0;
1574
1575 iov_iter_init(&ii, iov, nr_segs, bytes, 0);
1576
1577 while (iov_iter_count(&ii)) {
1578 struct page *page = pages[page_idx++];
1579 size_t todo = min_t(size_t, PAGE_SIZE, iov_iter_count(&ii));
1580 void *kaddr, *map;
1581
1582 kaddr = map = kmap(page);
1583
1584 while (todo) {
1585 char __user *uaddr = ii.iov->iov_base + ii.iov_offset;
1586 size_t iov_len = ii.iov->iov_len - ii.iov_offset;
1587 size_t copy = min(todo, iov_len);
1588 size_t left;
1589
1590 if (!to_user)
1591 left = copy_from_user(kaddr, uaddr, copy);
1592 else
1593 left = copy_to_user(uaddr, kaddr, copy);
1594
1595 if (unlikely(left))
1596 return -EFAULT;
1597
1598 iov_iter_advance(&ii, copy);
1599 todo -= copy;
1600 kaddr += copy;
1601 }
1602
Jens Axboe0bd87182009-11-03 11:40:44 +01001603 kunmap(page);
Tejun Heo59efec72008-11-26 12:03:55 +01001604 }
1605
1606 return 0;
1607}
1608
1609/*
1610 * For ioctls, there is no generic way to determine how much memory
1611 * needs to be read and/or written. Furthermore, ioctls are allowed
1612 * to dereference the passed pointer, so the parameter requires deep
1613 * copying but FUSE has no idea whatsoever about what to copy in or
1614 * out.
1615 *
1616 * This is solved by allowing FUSE server to retry ioctl with
1617 * necessary in/out iovecs. Let's assume the ioctl implementation
1618 * needs to read in the following structure.
1619 *
1620 * struct a {
1621 * char *buf;
1622 * size_t buflen;
1623 * }
1624 *
1625 * On the first callout to FUSE server, inarg->in_size and
1626 * inarg->out_size will be NULL; then, the server completes the ioctl
1627 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
1628 * the actual iov array to
1629 *
1630 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
1631 *
1632 * which tells FUSE to copy in the requested area and retry the ioctl.
1633 * On the second round, the server has access to the structure and
1634 * from that it can tell what to look for next, so on the invocation,
1635 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
1636 *
1637 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
1638 * { .iov_base = a.buf, .iov_len = a.buflen } }
1639 *
1640 * FUSE will copy both struct a and the pointed buffer from the
1641 * process doing the ioctl and retry ioctl with both struct a and the
1642 * buffer.
1643 *
1644 * This time, FUSE server has everything it needs and completes ioctl
1645 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
1646 *
1647 * Copying data out works the same way.
1648 *
1649 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
1650 * automatically initializes in and out iovs by decoding @cmd with
1651 * _IOC_* macros and the server is not allowed to request RETRY. This
1652 * limits ioctl data transfers to well-formed ioctls and is the forced
1653 * behavior for all FUSE servers.
1654 */
Tejun Heo08cbf542009-04-14 10:54:53 +09001655long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
1656 unsigned int flags)
Tejun Heo59efec72008-11-26 12:03:55 +01001657{
Tejun Heo59efec72008-11-26 12:03:55 +01001658 struct fuse_file *ff = file->private_data;
Miklos Szeredid36f2482009-04-28 16:56:39 +02001659 struct fuse_conn *fc = ff->fc;
Tejun Heo59efec72008-11-26 12:03:55 +01001660 struct fuse_ioctl_in inarg = {
1661 .fh = ff->fh,
1662 .cmd = cmd,
1663 .arg = arg,
1664 .flags = flags
1665 };
1666 struct fuse_ioctl_out outarg;
1667 struct fuse_req *req = NULL;
1668 struct page **pages = NULL;
1669 struct page *iov_page = NULL;
1670 struct iovec *in_iov = NULL, *out_iov = NULL;
1671 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
1672 size_t in_size, out_size, transferred;
1673 int err;
1674
1675 /* assume all the iovs returned by client always fits in a page */
1676 BUILD_BUG_ON(sizeof(struct iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
1677
Tejun Heo59efec72008-11-26 12:03:55 +01001678 err = -ENOMEM;
1679 pages = kzalloc(sizeof(pages[0]) * FUSE_MAX_PAGES_PER_REQ, GFP_KERNEL);
1680 iov_page = alloc_page(GFP_KERNEL);
1681 if (!pages || !iov_page)
1682 goto out;
1683
1684 /*
1685 * If restricted, initialize IO parameters as encoded in @cmd.
1686 * RETRY from server is not allowed.
1687 */
1688 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
1689 struct iovec *iov = page_address(iov_page);
1690
Miklos Szeredic9f0523d2008-12-02 14:49:42 +01001691 iov->iov_base = (void __user *)arg;
Tejun Heo59efec72008-11-26 12:03:55 +01001692 iov->iov_len = _IOC_SIZE(cmd);
1693
1694 if (_IOC_DIR(cmd) & _IOC_WRITE) {
1695 in_iov = iov;
1696 in_iovs = 1;
1697 }
1698
1699 if (_IOC_DIR(cmd) & _IOC_READ) {
1700 out_iov = iov;
1701 out_iovs = 1;
1702 }
1703 }
1704
1705 retry:
1706 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
1707 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
1708
1709 /*
1710 * Out data can be used either for actual out data or iovs,
1711 * make sure there always is at least one page.
1712 */
1713 out_size = max_t(size_t, out_size, PAGE_SIZE);
1714 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
1715
1716 /* make sure there are enough buffer pages and init request with them */
1717 err = -ENOMEM;
1718 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
1719 goto out;
1720 while (num_pages < max_pages) {
1721 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
1722 if (!pages[num_pages])
1723 goto out;
1724 num_pages++;
1725 }
1726
1727 req = fuse_get_req(fc);
1728 if (IS_ERR(req)) {
1729 err = PTR_ERR(req);
1730 req = NULL;
1731 goto out;
1732 }
1733 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
1734 req->num_pages = num_pages;
1735
1736 /* okay, let's send it to the client */
1737 req->in.h.opcode = FUSE_IOCTL;
Miklos Szeredid36f2482009-04-28 16:56:39 +02001738 req->in.h.nodeid = ff->nodeid;
Tejun Heo59efec72008-11-26 12:03:55 +01001739 req->in.numargs = 1;
1740 req->in.args[0].size = sizeof(inarg);
1741 req->in.args[0].value = &inarg;
1742 if (in_size) {
1743 req->in.numargs++;
1744 req->in.args[1].size = in_size;
1745 req->in.argpages = 1;
1746
1747 err = fuse_ioctl_copy_user(pages, in_iov, in_iovs, in_size,
1748 false);
1749 if (err)
1750 goto out;
1751 }
1752
1753 req->out.numargs = 2;
1754 req->out.args[0].size = sizeof(outarg);
1755 req->out.args[0].value = &outarg;
1756 req->out.args[1].size = out_size;
1757 req->out.argpages = 1;
1758 req->out.argvar = 1;
1759
Tejun Heob93f8582008-11-26 12:03:55 +01001760 fuse_request_send(fc, req);
Tejun Heo59efec72008-11-26 12:03:55 +01001761 err = req->out.h.error;
1762 transferred = req->out.args[1].size;
1763 fuse_put_request(fc, req);
1764 req = NULL;
1765 if (err)
1766 goto out;
1767
1768 /* did it ask for retry? */
1769 if (outarg.flags & FUSE_IOCTL_RETRY) {
1770 char *vaddr;
1771
1772 /* no retry if in restricted mode */
1773 err = -EIO;
1774 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
1775 goto out;
1776
1777 in_iovs = outarg.in_iovs;
1778 out_iovs = outarg.out_iovs;
1779
1780 /*
1781 * Make sure things are in boundary, separate checks
1782 * are to protect against overflow.
1783 */
1784 err = -ENOMEM;
1785 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
1786 out_iovs > FUSE_IOCTL_MAX_IOV ||
1787 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
1788 goto out;
1789
1790 err = -EIO;
1791 if ((in_iovs + out_iovs) * sizeof(struct iovec) != transferred)
1792 goto out;
1793
1794 /* okay, copy in iovs and retry */
1795 vaddr = kmap_atomic(pages[0], KM_USER0);
1796 memcpy(page_address(iov_page), vaddr, transferred);
1797 kunmap_atomic(vaddr, KM_USER0);
1798
1799 in_iov = page_address(iov_page);
1800 out_iov = in_iov + in_iovs;
1801
1802 goto retry;
1803 }
1804
1805 err = -EIO;
1806 if (transferred > inarg.out_size)
1807 goto out;
1808
1809 err = fuse_ioctl_copy_user(pages, out_iov, out_iovs, transferred, true);
1810 out:
1811 if (req)
1812 fuse_put_request(fc, req);
1813 if (iov_page)
1814 __free_page(iov_page);
1815 while (num_pages)
1816 __free_page(pages[--num_pages]);
1817 kfree(pages);
1818
1819 return err ? err : outarg.result;
1820}
Tejun Heo08cbf542009-04-14 10:54:53 +09001821EXPORT_SYMBOL_GPL(fuse_do_ioctl);
Tejun Heo59efec72008-11-26 12:03:55 +01001822
Miklos Szeredid36f2482009-04-28 16:56:39 +02001823static long fuse_file_ioctl_common(struct file *file, unsigned int cmd,
1824 unsigned long arg, unsigned int flags)
1825{
1826 struct inode *inode = file->f_dentry->d_inode;
1827 struct fuse_conn *fc = get_fuse_conn(inode);
1828
1829 if (!fuse_allow_task(fc, current))
1830 return -EACCES;
1831
1832 if (is_bad_inode(inode))
1833 return -EIO;
1834
1835 return fuse_do_ioctl(file, cmd, arg, flags);
1836}
1837
Tejun Heo59efec72008-11-26 12:03:55 +01001838static long fuse_file_ioctl(struct file *file, unsigned int cmd,
1839 unsigned long arg)
1840{
Miklos Szeredid36f2482009-04-28 16:56:39 +02001841 return fuse_file_ioctl_common(file, cmd, arg, 0);
Tejun Heo59efec72008-11-26 12:03:55 +01001842}
1843
1844static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
1845 unsigned long arg)
1846{
Miklos Szeredid36f2482009-04-28 16:56:39 +02001847 return fuse_file_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
Tejun Heo59efec72008-11-26 12:03:55 +01001848}
1849
Tejun Heo95668a62008-11-26 12:03:55 +01001850/*
1851 * All files which have been polled are linked to RB tree
1852 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
1853 * find the matching one.
1854 */
1855static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
1856 struct rb_node **parent_out)
1857{
1858 struct rb_node **link = &fc->polled_files.rb_node;
1859 struct rb_node *last = NULL;
1860
1861 while (*link) {
1862 struct fuse_file *ff;
1863
1864 last = *link;
1865 ff = rb_entry(last, struct fuse_file, polled_node);
1866
1867 if (kh < ff->kh)
1868 link = &last->rb_left;
1869 else if (kh > ff->kh)
1870 link = &last->rb_right;
1871 else
1872 return link;
1873 }
1874
1875 if (parent_out)
1876 *parent_out = last;
1877 return link;
1878}
1879
1880/*
1881 * The file is about to be polled. Make sure it's on the polled_files
1882 * RB tree. Note that files once added to the polled_files tree are
1883 * not removed before the file is released. This is because a file
1884 * polled once is likely to be polled again.
1885 */
1886static void fuse_register_polled_file(struct fuse_conn *fc,
1887 struct fuse_file *ff)
1888{
1889 spin_lock(&fc->lock);
1890 if (RB_EMPTY_NODE(&ff->polled_node)) {
1891 struct rb_node **link, *parent;
1892
1893 link = fuse_find_polled_node(fc, ff->kh, &parent);
1894 BUG_ON(*link);
1895 rb_link_node(&ff->polled_node, parent, link);
1896 rb_insert_color(&ff->polled_node, &fc->polled_files);
1897 }
1898 spin_unlock(&fc->lock);
1899}
1900
Tejun Heo08cbf542009-04-14 10:54:53 +09001901unsigned fuse_file_poll(struct file *file, poll_table *wait)
Tejun Heo95668a62008-11-26 12:03:55 +01001902{
Tejun Heo95668a62008-11-26 12:03:55 +01001903 struct fuse_file *ff = file->private_data;
Miklos Szeredi797759a2009-04-28 16:56:41 +02001904 struct fuse_conn *fc = ff->fc;
Tejun Heo95668a62008-11-26 12:03:55 +01001905 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
1906 struct fuse_poll_out outarg;
1907 struct fuse_req *req;
1908 int err;
1909
1910 if (fc->no_poll)
1911 return DEFAULT_POLLMASK;
1912
1913 poll_wait(file, &ff->poll_wait, wait);
1914
1915 /*
1916 * Ask for notification iff there's someone waiting for it.
1917 * The client may ignore the flag and always notify.
1918 */
1919 if (waitqueue_active(&ff->poll_wait)) {
1920 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
1921 fuse_register_polled_file(fc, ff);
1922 }
1923
1924 req = fuse_get_req(fc);
1925 if (IS_ERR(req))
Miklos Szeredi201fa692009-06-30 20:06:24 +02001926 return POLLERR;
Tejun Heo95668a62008-11-26 12:03:55 +01001927
1928 req->in.h.opcode = FUSE_POLL;
Miklos Szeredi797759a2009-04-28 16:56:41 +02001929 req->in.h.nodeid = ff->nodeid;
Tejun Heo95668a62008-11-26 12:03:55 +01001930 req->in.numargs = 1;
1931 req->in.args[0].size = sizeof(inarg);
1932 req->in.args[0].value = &inarg;
1933 req->out.numargs = 1;
1934 req->out.args[0].size = sizeof(outarg);
1935 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +01001936 fuse_request_send(fc, req);
Tejun Heo95668a62008-11-26 12:03:55 +01001937 err = req->out.h.error;
1938 fuse_put_request(fc, req);
1939
1940 if (!err)
1941 return outarg.revents;
1942 if (err == -ENOSYS) {
1943 fc->no_poll = 1;
1944 return DEFAULT_POLLMASK;
1945 }
1946 return POLLERR;
1947}
Tejun Heo08cbf542009-04-14 10:54:53 +09001948EXPORT_SYMBOL_GPL(fuse_file_poll);
Tejun Heo95668a62008-11-26 12:03:55 +01001949
1950/*
1951 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
1952 * wakes up the poll waiters.
1953 */
1954int fuse_notify_poll_wakeup(struct fuse_conn *fc,
1955 struct fuse_notify_poll_wakeup_out *outarg)
1956{
1957 u64 kh = outarg->kh;
1958 struct rb_node **link;
1959
1960 spin_lock(&fc->lock);
1961
1962 link = fuse_find_polled_node(fc, kh, NULL);
1963 if (*link) {
1964 struct fuse_file *ff;
1965
1966 ff = rb_entry(*link, struct fuse_file, polled_node);
1967 wake_up_interruptible_sync(&ff->poll_wait);
1968 }
1969
1970 spin_unlock(&fc->lock);
1971 return 0;
1972}
1973
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001974static const struct file_operations fuse_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001975 .llseek = fuse_file_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07001976 .read = do_sync_read,
Miklos Szeredibcb4be82007-11-28 16:21:59 -08001977 .aio_read = fuse_file_aio_read,
Badari Pulavarty543ade12006-09-30 23:28:48 -07001978 .write = do_sync_write,
Nick Pigginea9b9902008-04-30 00:54:42 -07001979 .aio_write = fuse_file_aio_write,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001980 .mmap = fuse_file_mmap,
1981 .open = fuse_open,
1982 .flush = fuse_flush,
1983 .release = fuse_release,
1984 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07001985 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07001986 .flock = fuse_file_flock,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001987 .splice_read = generic_file_splice_read,
Tejun Heo59efec72008-11-26 12:03:55 +01001988 .unlocked_ioctl = fuse_file_ioctl,
1989 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01001990 .poll = fuse_file_poll,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07001991};
1992
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001993static const struct file_operations fuse_direct_io_file_operations = {
Miklos Szeredi5559b8f2008-04-30 00:54:45 -07001994 .llseek = fuse_file_llseek,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001995 .read = fuse_direct_read,
1996 .write = fuse_direct_write,
Miklos Szeredifc280c92009-04-02 14:25:35 +02001997 .mmap = fuse_direct_mmap,
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07001998 .open = fuse_open,
1999 .flush = fuse_flush,
2000 .release = fuse_release,
2001 .fsync = fuse_fsync,
Miklos Szeredi71421252006-06-25 05:48:52 -07002002 .lock = fuse_file_lock,
Miklos Szeredia9ff4f82007-10-18 03:07:02 -07002003 .flock = fuse_file_flock,
Tejun Heo59efec72008-11-26 12:03:55 +01002004 .unlocked_ioctl = fuse_file_ioctl,
2005 .compat_ioctl = fuse_file_compat_ioctl,
Tejun Heo95668a62008-11-26 12:03:55 +01002006 .poll = fuse_file_poll,
Miklos Szeredifc280c92009-04-02 14:25:35 +02002007 /* no splice_read */
Miklos Szeredi413ef8c2005-09-09 13:10:35 -07002008};
2009
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07002010static const struct address_space_operations fuse_file_aops = {
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002011 .readpage = fuse_readpage,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002012 .writepage = fuse_writepage,
2013 .launder_page = fuse_launder_page,
Nick Piggin5e6f58a2007-10-16 01:25:17 -07002014 .write_begin = fuse_write_begin,
2015 .write_end = fuse_write_end,
Miklos Szeredidb50b962005-09-09 13:10:33 -07002016 .readpages = fuse_readpages,
Miklos Szeredi3be5a522008-04-30 00:54:41 -07002017 .set_page_dirty = __set_page_dirty_nobuffers,
Miklos Szeredib2d22722006-12-06 20:35:51 -08002018 .bmap = fuse_bmap,
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002019};
2020
2021void fuse_init_file_inode(struct inode *inode)
2022{
Miklos Szeredi45323fb2005-09-09 13:10:37 -07002023 inode->i_fop = &fuse_file_operations;
2024 inode->i_data.a_ops = &fuse_file_aops;
Miklos Szeredib6aeade2005-09-09 13:10:30 -07002025}