fuse: pass iov[] to fuse_get_user_pages()
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / fuse / file.c
CommitLineData
b6aeaded
MS
1/*
2 FUSE: Filesystem in Userspace
1729a16c 3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
b6aeaded
MS
4
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>
e8edc6e0 14#include <linux/sched.h>
08cbf542 15#include <linux/module.h>
d9d318d3 16#include <linux/compat.h>
478e0841 17#include <linux/swap.h>
b6aeaded 18
4b6f5d20 19static const struct file_operations fuse_direct_io_file_operations;
45323fb7 20
91fe96b4
MS
21static int fuse_send_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
22 int opcode, struct fuse_open_out *outargp)
b6aeaded 23{
b6aeaded 24 struct fuse_open_in inarg;
fd72faac
MS
25 struct fuse_req *req;
26 int err;
27
b111c8c0 28 req = fuse_get_req_nopages(fc);
ce1d5a49
MS
29 if (IS_ERR(req))
30 return PTR_ERR(req);
fd72faac
MS
31
32 memset(&inarg, 0, sizeof(inarg));
6ff958ed
MS
33 inarg.flags = file->f_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
34 if (!fc->atomic_o_trunc)
35 inarg.flags &= ~O_TRUNC;
91fe96b4
MS
36 req->in.h.opcode = opcode;
37 req->in.h.nodeid = nodeid;
fd72faac
MS
38 req->in.numargs = 1;
39 req->in.args[0].size = sizeof(inarg);
40 req->in.args[0].value = &inarg;
41 req->out.numargs = 1;
42 req->out.args[0].size = sizeof(*outargp);
43 req->out.args[0].value = outargp;
b93f858a 44 fuse_request_send(fc, req);
fd72faac
MS
45 err = req->out.h.error;
46 fuse_put_request(fc, req);
47
48 return err;
49}
50
acf99433 51struct fuse_file *fuse_file_alloc(struct fuse_conn *fc)
fd72faac
MS
52{
53 struct fuse_file *ff;
6b2db28a 54
fd72faac 55 ff = kmalloc(sizeof(struct fuse_file), GFP_KERNEL);
6b2db28a
TH
56 if (unlikely(!ff))
57 return NULL;
58
da5e4714 59 ff->fc = fc;
4250c066 60 ff->reserved_req = fuse_request_alloc(0);
6b2db28a
TH
61 if (unlikely(!ff->reserved_req)) {
62 kfree(ff);
63 return NULL;
fd72faac 64 }
6b2db28a
TH
65
66 INIT_LIST_HEAD(&ff->write_entry);
67 atomic_set(&ff->count, 0);
68 RB_CLEAR_NODE(&ff->polled_node);
69 init_waitqueue_head(&ff->poll_wait);
70
71 spin_lock(&fc->lock);
72 ff->kh = ++fc->khctr;
73 spin_unlock(&fc->lock);
74
fd72faac
MS
75 return ff;
76}
77
78void fuse_file_free(struct fuse_file *ff)
79{
33649c91 80 fuse_request_free(ff->reserved_req);
fd72faac
MS
81 kfree(ff);
82}
83
c7b7143c 84struct fuse_file *fuse_file_get(struct fuse_file *ff)
c756e0a4
MS
85{
86 atomic_inc(&ff->count);
87 return ff;
88}
89
5a18ec17
MS
90static void fuse_release_async(struct work_struct *work)
91{
92 struct fuse_req *req;
93 struct fuse_conn *fc;
94 struct path path;
95
96 req = container_of(work, struct fuse_req, misc.release.work);
97 path = req->misc.release.path;
98 fc = get_fuse_conn(path.dentry->d_inode);
99
100 fuse_put_request(fc, req);
101 path_put(&path);
102}
103
819c4b3b
MS
104static void fuse_release_end(struct fuse_conn *fc, struct fuse_req *req)
105{
5a18ec17
MS
106 if (fc->destroy_req) {
107 /*
108 * If this is a fuseblk mount, then it's possible that
109 * releasing the path will result in releasing the
110 * super block and sending the DESTROY request. If
111 * the server is single threaded, this would hang.
112 * For this reason do the path_put() in a separate
113 * thread.
114 */
115 atomic_inc(&req->count);
116 INIT_WORK(&req->misc.release.work, fuse_release_async);
117 schedule_work(&req->misc.release.work);
118 } else {
119 path_put(&req->misc.release.path);
120 }
819c4b3b
MS
121}
122
5a18ec17 123static void fuse_file_put(struct fuse_file *ff, bool sync)
c756e0a4
MS
124{
125 if (atomic_dec_and_test(&ff->count)) {
126 struct fuse_req *req = ff->reserved_req;
8b0797a4 127
5a18ec17
MS
128 if (sync) {
129 fuse_request_send(ff->fc, req);
130 path_put(&req->misc.release.path);
131 fuse_put_request(ff->fc, req);
132 } else {
133 req->end = fuse_release_end;
134 fuse_request_send_background(ff->fc, req);
135 }
c756e0a4
MS
136 kfree(ff);
137 }
138}
139
08cbf542
TH
140int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
141 bool isdir)
91fe96b4
MS
142{
143 struct fuse_open_out outarg;
144 struct fuse_file *ff;
145 int err;
146 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
147
148 ff = fuse_file_alloc(fc);
149 if (!ff)
150 return -ENOMEM;
151
152 err = fuse_send_open(fc, nodeid, file, opcode, &outarg);
153 if (err) {
154 fuse_file_free(ff);
155 return err;
156 }
157
158 if (isdir)
159 outarg.open_flags &= ~FOPEN_DIRECT_IO;
160
161 ff->fh = outarg.fh;
162 ff->nodeid = nodeid;
163 ff->open_flags = outarg.open_flags;
164 file->private_data = fuse_file_get(ff);
165
166 return 0;
167}
08cbf542 168EXPORT_SYMBOL_GPL(fuse_do_open);
91fe96b4 169
c7b7143c 170void fuse_finish_open(struct inode *inode, struct file *file)
fd72faac 171{
c7b7143c 172 struct fuse_file *ff = file->private_data;
a0822c55 173 struct fuse_conn *fc = get_fuse_conn(inode);
c7b7143c
MS
174
175 if (ff->open_flags & FOPEN_DIRECT_IO)
fd72faac 176 file->f_op = &fuse_direct_io_file_operations;
c7b7143c 177 if (!(ff->open_flags & FOPEN_KEEP_CACHE))
b1009979 178 invalidate_inode_pages2(inode->i_mapping);
c7b7143c 179 if (ff->open_flags & FOPEN_NONSEEKABLE)
a7c1b990 180 nonseekable_open(inode, file);
a0822c55
KS
181 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
182 struct fuse_inode *fi = get_fuse_inode(inode);
183
184 spin_lock(&fc->lock);
185 fi->attr_version = ++fc->attr_version;
186 i_size_write(inode, 0);
187 spin_unlock(&fc->lock);
188 fuse_invalidate_attr(inode);
189 }
fd72faac
MS
190}
191
91fe96b4 192int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
fd72faac 193{
acf99433 194 struct fuse_conn *fc = get_fuse_conn(inode);
b6aeaded 195 int err;
b6aeaded
MS
196
197 err = generic_file_open(inode, file);
198 if (err)
199 return err;
200
91fe96b4 201 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
fd72faac 202 if (err)
91fe96b4 203 return err;
b6aeaded 204
91fe96b4
MS
205 fuse_finish_open(inode, file);
206
207 return 0;
b6aeaded
MS
208}
209
8b0797a4 210static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
64c6d8ed 211{
8b0797a4 212 struct fuse_conn *fc = ff->fc;
33649c91 213 struct fuse_req *req = ff->reserved_req;
b57d4264 214 struct fuse_release_in *inarg = &req->misc.release.in;
b6aeaded 215
8b0797a4
MS
216 spin_lock(&fc->lock);
217 list_del(&ff->write_entry);
218 if (!RB_EMPTY_NODE(&ff->polled_node))
219 rb_erase(&ff->polled_node, &fc->polled_files);
220 spin_unlock(&fc->lock);
221
357ccf2b 222 wake_up_interruptible_all(&ff->poll_wait);
8b0797a4 223
b6aeaded 224 inarg->fh = ff->fh;
fd72faac 225 inarg->flags = flags;
51eb01e7 226 req->in.h.opcode = opcode;
c7b7143c 227 req->in.h.nodeid = ff->nodeid;
b6aeaded
MS
228 req->in.numargs = 1;
229 req->in.args[0].size = sizeof(struct fuse_release_in);
230 req->in.args[0].value = inarg;
fd72faac
MS
231}
232
8b0797a4 233void fuse_release_common(struct file *file, int opcode)
fd72faac 234{
6b2db28a
TH
235 struct fuse_file *ff;
236 struct fuse_req *req;
b6aeaded 237
6b2db28a
TH
238 ff = file->private_data;
239 if (unlikely(!ff))
8b0797a4 240 return;
6b2db28a 241
6b2db28a 242 req = ff->reserved_req;
8b0797a4 243 fuse_prepare_release(ff, file->f_flags, opcode);
6b2db28a 244
37fb3a30
MS
245 if (ff->flock) {
246 struct fuse_release_in *inarg = &req->misc.release.in;
247 inarg->release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
248 inarg->lock_owner = fuse_lock_owner_id(ff->fc,
249 (fl_owner_t) file);
250 }
6b2db28a 251 /* Hold vfsmount and dentry until release is finished */
b0be46eb
MS
252 path_get(&file->f_path);
253 req->misc.release.path = file->f_path;
6b2db28a 254
6b2db28a
TH
255 /*
256 * Normally this will send the RELEASE request, however if
257 * some asynchronous READ or WRITE requests are outstanding,
258 * the sending will be delayed.
5a18ec17
MS
259 *
260 * Make the release synchronous if this is a fuseblk mount,
261 * synchronous RELEASE is allowed (and desirable) in this case
262 * because the server can be trusted not to screw up.
6b2db28a 263 */
5a18ec17 264 fuse_file_put(ff, ff->fc->destroy_req != NULL);
b6aeaded
MS
265}
266
04730fef
MS
267static int fuse_open(struct inode *inode, struct file *file)
268{
91fe96b4 269 return fuse_open_common(inode, file, false);
04730fef
MS
270}
271
272static int fuse_release(struct inode *inode, struct file *file)
273{
8b0797a4
MS
274 fuse_release_common(file, FUSE_RELEASE);
275
276 /* return value is ignored by VFS */
277 return 0;
278}
279
280void fuse_sync_release(struct fuse_file *ff, int flags)
281{
282 WARN_ON(atomic_read(&ff->count) > 1);
283 fuse_prepare_release(ff, flags, FUSE_RELEASE);
284 ff->reserved_req->force = 1;
285 fuse_request_send(ff->fc, ff->reserved_req);
286 fuse_put_request(ff->fc, ff->reserved_req);
287 kfree(ff);
04730fef 288}
08cbf542 289EXPORT_SYMBOL_GPL(fuse_sync_release);
04730fef 290
71421259 291/*
9c8ef561
MS
292 * Scramble the ID space with XTEA, so that the value of the files_struct
293 * pointer is not exposed to userspace.
71421259 294 */
f3332114 295u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
71421259 296{
9c8ef561
MS
297 u32 *k = fc->scramble_key;
298 u64 v = (unsigned long) id;
299 u32 v0 = v;
300 u32 v1 = v >> 32;
301 u32 sum = 0;
302 int i;
303
304 for (i = 0; i < 32; i++) {
305 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
306 sum += 0x9E3779B9;
307 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
308 }
309
310 return (u64) v0 + ((u64) v1 << 32);
71421259
MS
311}
312
3be5a52b
MS
313/*
314 * Check if page is under writeback
315 *
316 * This is currently done by walking the list of writepage requests
317 * for the inode, which can be pretty inefficient.
318 */
319static bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
320{
321 struct fuse_conn *fc = get_fuse_conn(inode);
322 struct fuse_inode *fi = get_fuse_inode(inode);
323 struct fuse_req *req;
324 bool found = false;
325
326 spin_lock(&fc->lock);
327 list_for_each_entry(req, &fi->writepages, writepages_entry) {
328 pgoff_t curr_index;
329
330 BUG_ON(req->inode != inode);
331 curr_index = req->misc.write.in.offset >> PAGE_CACHE_SHIFT;
332 if (curr_index == index) {
333 found = true;
334 break;
335 }
336 }
337 spin_unlock(&fc->lock);
338
339 return found;
340}
341
342/*
343 * Wait for page writeback to be completed.
344 *
345 * Since fuse doesn't rely on the VM writeback tracking, this has to
346 * use some other means.
347 */
348static int fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
349{
350 struct fuse_inode *fi = get_fuse_inode(inode);
351
352 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
353 return 0;
354}
355
75e1fcc0 356static int fuse_flush(struct file *file, fl_owner_t id)
b6aeaded 357{
7706a9d6 358 struct inode *inode = file->f_path.dentry->d_inode;
b6aeaded
MS
359 struct fuse_conn *fc = get_fuse_conn(inode);
360 struct fuse_file *ff = file->private_data;
361 struct fuse_req *req;
362 struct fuse_flush_in inarg;
363 int err;
364
248d86e8
MS
365 if (is_bad_inode(inode))
366 return -EIO;
367
b6aeaded
MS
368 if (fc->no_flush)
369 return 0;
370
b111c8c0 371 req = fuse_get_req_nofail_nopages(fc, file);
b6aeaded
MS
372 memset(&inarg, 0, sizeof(inarg));
373 inarg.fh = ff->fh;
9c8ef561 374 inarg.lock_owner = fuse_lock_owner_id(fc, id);
b6aeaded
MS
375 req->in.h.opcode = FUSE_FLUSH;
376 req->in.h.nodeid = get_node_id(inode);
b6aeaded
MS
377 req->in.numargs = 1;
378 req->in.args[0].size = sizeof(inarg);
379 req->in.args[0].value = &inarg;
71421259 380 req->force = 1;
b93f858a 381 fuse_request_send(fc, req);
b6aeaded
MS
382 err = req->out.h.error;
383 fuse_put_request(fc, req);
384 if (err == -ENOSYS) {
385 fc->no_flush = 1;
386 err = 0;
387 }
388 return err;
389}
390
3be5a52b
MS
391/*
392 * Wait for all pending writepages on the inode to finish.
393 *
394 * This is currently done by blocking further writes with FUSE_NOWRITE
395 * and waiting for all sent writes to complete.
396 *
397 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
398 * could conflict with truncation.
399 */
400static void fuse_sync_writes(struct inode *inode)
401{
402 fuse_set_nowrite(inode);
403 fuse_release_nowrite(inode);
404}
405
02c24a82
JB
406int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
407 int datasync, int isdir)
b6aeaded 408{
7ea80859 409 struct inode *inode = file->f_mapping->host;
b6aeaded
MS
410 struct fuse_conn *fc = get_fuse_conn(inode);
411 struct fuse_file *ff = file->private_data;
412 struct fuse_req *req;
413 struct fuse_fsync_in inarg;
414 int err;
415
248d86e8
MS
416 if (is_bad_inode(inode))
417 return -EIO;
418
02c24a82
JB
419 err = filemap_write_and_wait_range(inode->i_mapping, start, end);
420 if (err)
421 return err;
422
82547981 423 if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
b6aeaded
MS
424 return 0;
425
02c24a82
JB
426 mutex_lock(&inode->i_mutex);
427
3be5a52b
MS
428 /*
429 * Start writeback against all dirty pages of the inode, then
430 * wait for all outstanding writes, before sending the FSYNC
431 * request.
432 */
433 err = write_inode_now(inode, 0);
434 if (err)
02c24a82 435 goto out;
3be5a52b
MS
436
437 fuse_sync_writes(inode);
438
b111c8c0 439 req = fuse_get_req_nopages(fc);
02c24a82
JB
440 if (IS_ERR(req)) {
441 err = PTR_ERR(req);
442 goto out;
443 }
b6aeaded
MS
444
445 memset(&inarg, 0, sizeof(inarg));
446 inarg.fh = ff->fh;
447 inarg.fsync_flags = datasync ? 1 : 0;
82547981 448 req->in.h.opcode = isdir ? FUSE_FSYNCDIR : FUSE_FSYNC;
b6aeaded 449 req->in.h.nodeid = get_node_id(inode);
b6aeaded
MS
450 req->in.numargs = 1;
451 req->in.args[0].size = sizeof(inarg);
452 req->in.args[0].value = &inarg;
b93f858a 453 fuse_request_send(fc, req);
b6aeaded
MS
454 err = req->out.h.error;
455 fuse_put_request(fc, req);
456 if (err == -ENOSYS) {
82547981
MS
457 if (isdir)
458 fc->no_fsyncdir = 1;
459 else
460 fc->no_fsync = 1;
b6aeaded
MS
461 err = 0;
462 }
02c24a82
JB
463out:
464 mutex_unlock(&inode->i_mutex);
b6aeaded
MS
465 return err;
466}
467
02c24a82
JB
468static int fuse_fsync(struct file *file, loff_t start, loff_t end,
469 int datasync)
82547981 470{
02c24a82 471 return fuse_fsync_common(file, start, end, datasync, 0);
82547981
MS
472}
473
2106cb18
MS
474void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
475 size_t count, int opcode)
b6aeaded 476{
5c5c5e51 477 struct fuse_read_in *inarg = &req->misc.read.in;
a6643094 478 struct fuse_file *ff = file->private_data;
b6aeaded 479
361b1eb5
MS
480 inarg->fh = ff->fh;
481 inarg->offset = pos;
482 inarg->size = count;
a6643094 483 inarg->flags = file->f_flags;
361b1eb5 484 req->in.h.opcode = opcode;
2106cb18 485 req->in.h.nodeid = ff->nodeid;
b6aeaded
MS
486 req->in.numargs = 1;
487 req->in.args[0].size = sizeof(struct fuse_read_in);
c1aa96a5 488 req->in.args[0].value = inarg;
b6aeaded
MS
489 req->out.argvar = 1;
490 req->out.numargs = 1;
491 req->out.args[0].size = count;
b6aeaded
MS
492}
493
8bfc016d 494static size_t fuse_send_read(struct fuse_req *req, struct file *file,
2106cb18 495 loff_t pos, size_t count, fl_owner_t owner)
04730fef 496{
2106cb18
MS
497 struct fuse_file *ff = file->private_data;
498 struct fuse_conn *fc = ff->fc;
f3332114 499
2106cb18 500 fuse_read_fill(req, file, pos, count, FUSE_READ);
f3332114 501 if (owner != NULL) {
5c5c5e51 502 struct fuse_read_in *inarg = &req->misc.read.in;
f3332114
MS
503
504 inarg->read_flags |= FUSE_READ_LOCKOWNER;
505 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
506 }
b93f858a 507 fuse_request_send(fc, req);
361b1eb5 508 return req->out.args[0].size;
04730fef
MS
509}
510
5c5c5e51
MS
511static void fuse_read_update_size(struct inode *inode, loff_t size,
512 u64 attr_ver)
513{
514 struct fuse_conn *fc = get_fuse_conn(inode);
515 struct fuse_inode *fi = get_fuse_inode(inode);
516
517 spin_lock(&fc->lock);
518 if (attr_ver == fi->attr_version && size < inode->i_size) {
519 fi->attr_version = ++fc->attr_version;
520 i_size_write(inode, size);
521 }
522 spin_unlock(&fc->lock);
523}
524
b6aeaded
MS
525static int fuse_readpage(struct file *file, struct page *page)
526{
527 struct inode *inode = page->mapping->host;
528 struct fuse_conn *fc = get_fuse_conn(inode);
248d86e8 529 struct fuse_req *req;
5c5c5e51
MS
530 size_t num_read;
531 loff_t pos = page_offset(page);
532 size_t count = PAGE_CACHE_SIZE;
533 u64 attr_ver;
248d86e8
MS
534 int err;
535
536 err = -EIO;
537 if (is_bad_inode(inode))
538 goto out;
539
3be5a52b 540 /*
25985edc 541 * Page writeback can extend beyond the lifetime of the
3be5a52b
MS
542 * page-cache page, so make sure we read a properly synced
543 * page.
544 */
545 fuse_wait_on_page_writeback(inode, page->index);
546
b111c8c0 547 req = fuse_get_req(fc, 1);
ce1d5a49
MS
548 err = PTR_ERR(req);
549 if (IS_ERR(req))
b6aeaded
MS
550 goto out;
551
5c5c5e51
MS
552 attr_ver = fuse_get_attr_version(fc);
553
b6aeaded 554 req->out.page_zeroing = 1;
f4975c67 555 req->out.argpages = 1;
b6aeaded
MS
556 req->num_pages = 1;
557 req->pages[0] = page;
85f40aec 558 req->page_descs[0].length = count;
2106cb18 559 num_read = fuse_send_read(req, file, pos, count, NULL);
b6aeaded
MS
560 err = req->out.h.error;
561 fuse_put_request(fc, req);
5c5c5e51
MS
562
563 if (!err) {
564 /*
565 * Short read means EOF. If file size is larger, truncate it
566 */
567 if (num_read < count)
568 fuse_read_update_size(inode, pos + num_read, attr_ver);
569
b6aeaded 570 SetPageUptodate(page);
5c5c5e51
MS
571 }
572
b36c31ba 573 fuse_invalidate_attr(inode); /* atime changed */
b6aeaded
MS
574 out:
575 unlock_page(page);
576 return err;
577}
578
c1aa96a5 579static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
db50b96c 580{
c1aa96a5 581 int i;
5c5c5e51
MS
582 size_t count = req->misc.read.in.size;
583 size_t num_read = req->out.args[0].size;
ce534fb0 584 struct address_space *mapping = NULL;
c1aa96a5 585
ce534fb0
MS
586 for (i = 0; mapping == NULL && i < req->num_pages; i++)
587 mapping = req->pages[i]->mapping;
5c5c5e51 588
ce534fb0
MS
589 if (mapping) {
590 struct inode *inode = mapping->host;
591
592 /*
593 * Short read means EOF. If file size is larger, truncate it
594 */
595 if (!req->out.h.error && num_read < count) {
596 loff_t pos;
597
598 pos = page_offset(req->pages[0]) + num_read;
599 fuse_read_update_size(inode, pos,
600 req->misc.read.attr_ver);
601 }
602 fuse_invalidate_attr(inode); /* atime changed */
603 }
c1aa96a5 604
db50b96c
MS
605 for (i = 0; i < req->num_pages; i++) {
606 struct page *page = req->pages[i];
607 if (!req->out.h.error)
608 SetPageUptodate(page);
c1aa96a5
MS
609 else
610 SetPageError(page);
db50b96c 611 unlock_page(page);
b5dd3285 612 page_cache_release(page);
db50b96c 613 }
c756e0a4 614 if (req->ff)
5a18ec17 615 fuse_file_put(req->ff, false);
c1aa96a5
MS
616}
617
2106cb18 618static void fuse_send_readpages(struct fuse_req *req, struct file *file)
c1aa96a5 619{
2106cb18
MS
620 struct fuse_file *ff = file->private_data;
621 struct fuse_conn *fc = ff->fc;
c1aa96a5
MS
622 loff_t pos = page_offset(req->pages[0]);
623 size_t count = req->num_pages << PAGE_CACHE_SHIFT;
f4975c67
MS
624
625 req->out.argpages = 1;
c1aa96a5 626 req->out.page_zeroing = 1;
ce534fb0 627 req->out.page_replace = 1;
2106cb18 628 fuse_read_fill(req, file, pos, count, FUSE_READ);
5c5c5e51 629 req->misc.read.attr_ver = fuse_get_attr_version(fc);
9cd68455 630 if (fc->async_read) {
c756e0a4 631 req->ff = fuse_file_get(ff);
9cd68455 632 req->end = fuse_readpages_end;
b93f858a 633 fuse_request_send_background(fc, req);
9cd68455 634 } else {
b93f858a 635 fuse_request_send(fc, req);
9cd68455 636 fuse_readpages_end(fc, req);
e9bb09dd 637 fuse_put_request(fc, req);
9cd68455 638 }
db50b96c
MS
639}
640
c756e0a4 641struct fuse_fill_data {
db50b96c 642 struct fuse_req *req;
a6643094 643 struct file *file;
db50b96c 644 struct inode *inode;
f8dbdf81 645 unsigned nr_pages;
db50b96c
MS
646};
647
648static int fuse_readpages_fill(void *_data, struct page *page)
649{
c756e0a4 650 struct fuse_fill_data *data = _data;
db50b96c
MS
651 struct fuse_req *req = data->req;
652 struct inode *inode = data->inode;
653 struct fuse_conn *fc = get_fuse_conn(inode);
654
3be5a52b
MS
655 fuse_wait_on_page_writeback(inode, page->index);
656
db50b96c
MS
657 if (req->num_pages &&
658 (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
659 (req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_read ||
660 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
f8dbdf81
MP
661 int nr_alloc = min_t(unsigned, data->nr_pages,
662 FUSE_MAX_PAGES_PER_REQ);
2106cb18 663 fuse_send_readpages(req, data->file);
f8dbdf81 664 data->req = req = fuse_get_req(fc, nr_alloc);
ce1d5a49 665 if (IS_ERR(req)) {
db50b96c 666 unlock_page(page);
ce1d5a49 667 return PTR_ERR(req);
db50b96c 668 }
db50b96c 669 }
f8dbdf81
MP
670
671 if (WARN_ON(req->num_pages >= req->max_pages)) {
672 fuse_put_request(fc, req);
673 return -EIO;
674 }
675
b5dd3285 676 page_cache_get(page);
db50b96c 677 req->pages[req->num_pages] = page;
85f40aec 678 req->page_descs[req->num_pages].length = PAGE_SIZE;
1729a16c 679 req->num_pages++;
f8dbdf81 680 data->nr_pages--;
db50b96c
MS
681 return 0;
682}
683
684static int fuse_readpages(struct file *file, struct address_space *mapping,
685 struct list_head *pages, unsigned nr_pages)
686{
687 struct inode *inode = mapping->host;
688 struct fuse_conn *fc = get_fuse_conn(inode);
c756e0a4 689 struct fuse_fill_data data;
db50b96c 690 int err;
f8dbdf81 691 int nr_alloc = min_t(unsigned, nr_pages, FUSE_MAX_PAGES_PER_REQ);
248d86e8 692
1d7ea732 693 err = -EIO;
248d86e8 694 if (is_bad_inode(inode))
2e990021 695 goto out;
248d86e8 696
a6643094 697 data.file = file;
db50b96c 698 data.inode = inode;
f8dbdf81
MP
699 data.req = fuse_get_req(fc, nr_alloc);
700 data.nr_pages = nr_pages;
1d7ea732 701 err = PTR_ERR(data.req);
ce1d5a49 702 if (IS_ERR(data.req))
2e990021 703 goto out;
db50b96c
MS
704
705 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
d3406ffa
MS
706 if (!err) {
707 if (data.req->num_pages)
2106cb18 708 fuse_send_readpages(data.req, file);
d3406ffa
MS
709 else
710 fuse_put_request(fc, data.req);
711 }
2e990021 712out:
1d7ea732 713 return err;
db50b96c
MS
714}
715
bcb4be80
MS
716static ssize_t fuse_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
717 unsigned long nr_segs, loff_t pos)
718{
719 struct inode *inode = iocb->ki_filp->f_mapping->host;
a8894274 720 struct fuse_conn *fc = get_fuse_conn(inode);
bcb4be80 721
a8894274
BF
722 /*
723 * In auto invalidate mode, always update attributes on read.
724 * Otherwise, only update if we attempt to read past EOF (to ensure
725 * i_size is up to date).
726 */
727 if (fc->auto_inval_data ||
728 (pos + iov_length(iov, nr_segs) > i_size_read(inode))) {
bcb4be80 729 int err;
bcb4be80
MS
730 err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
731 if (err)
732 return err;
733 }
734
735 return generic_file_aio_read(iocb, iov, nr_segs, pos);
736}
737
2d698b07 738static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
2106cb18 739 loff_t pos, size_t count)
b6aeaded 740{
b25e82e5
MS
741 struct fuse_write_in *inarg = &req->misc.write.in;
742 struct fuse_write_out *outarg = &req->misc.write.out;
b6aeaded 743
b25e82e5
MS
744 inarg->fh = ff->fh;
745 inarg->offset = pos;
746 inarg->size = count;
b6aeaded 747 req->in.h.opcode = FUSE_WRITE;
2106cb18 748 req->in.h.nodeid = ff->nodeid;
b6aeaded 749 req->in.numargs = 2;
2106cb18 750 if (ff->fc->minor < 9)
f3332114
MS
751 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
752 else
753 req->in.args[0].size = sizeof(struct fuse_write_in);
b25e82e5 754 req->in.args[0].value = inarg;
b6aeaded
MS
755 req->in.args[1].size = count;
756 req->out.numargs = 1;
757 req->out.args[0].size = sizeof(struct fuse_write_out);
b25e82e5
MS
758 req->out.args[0].value = outarg;
759}
760
761static size_t fuse_send_write(struct fuse_req *req, struct file *file,
2106cb18 762 loff_t pos, size_t count, fl_owner_t owner)
b25e82e5 763{
2106cb18
MS
764 struct fuse_file *ff = file->private_data;
765 struct fuse_conn *fc = ff->fc;
2d698b07
MS
766 struct fuse_write_in *inarg = &req->misc.write.in;
767
2106cb18 768 fuse_write_fill(req, ff, pos, count);
2d698b07 769 inarg->flags = file->f_flags;
f3332114 770 if (owner != NULL) {
f3332114
MS
771 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
772 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
773 }
b93f858a 774 fuse_request_send(fc, req);
b25e82e5 775 return req->misc.write.out.size;
b6aeaded
MS
776}
777
a1d75f25 778void fuse_write_update_size(struct inode *inode, loff_t pos)
854512ec
MS
779{
780 struct fuse_conn *fc = get_fuse_conn(inode);
781 struct fuse_inode *fi = get_fuse_inode(inode);
782
783 spin_lock(&fc->lock);
784 fi->attr_version = ++fc->attr_version;
785 if (pos > inode->i_size)
786 i_size_write(inode, pos);
787 spin_unlock(&fc->lock);
788}
789
ea9b9907
NP
790static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
791 struct inode *inode, loff_t pos,
792 size_t count)
793{
794 size_t res;
795 unsigned offset;
796 unsigned i;
797
798 for (i = 0; i < req->num_pages; i++)
799 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
800
2106cb18 801 res = fuse_send_write(req, file, pos, count, NULL);
ea9b9907 802
b2430d75 803 offset = req->page_descs[0].offset;
ea9b9907
NP
804 count = res;
805 for (i = 0; i < req->num_pages; i++) {
806 struct page *page = req->pages[i];
807
808 if (!req->out.h.error && !offset && count >= PAGE_CACHE_SIZE)
809 SetPageUptodate(page);
810
811 if (count > PAGE_CACHE_SIZE - offset)
812 count -= PAGE_CACHE_SIZE - offset;
813 else
814 count = 0;
815 offset = 0;
816
817 unlock_page(page);
818 page_cache_release(page);
819 }
820
821 return res;
822}
823
824static ssize_t fuse_fill_write_pages(struct fuse_req *req,
825 struct address_space *mapping,
826 struct iov_iter *ii, loff_t pos)
827{
828 struct fuse_conn *fc = get_fuse_conn(mapping->host);
829 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
830 size_t count = 0;
831 int err;
832
f4975c67 833 req->in.argpages = 1;
b2430d75 834 req->page_descs[0].offset = offset;
ea9b9907
NP
835
836 do {
837 size_t tmp;
838 struct page *page;
839 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
840 size_t bytes = min_t(size_t, PAGE_CACHE_SIZE - offset,
841 iov_iter_count(ii));
842
843 bytes = min_t(size_t, bytes, fc->max_write - count);
844
845 again:
846 err = -EFAULT;
847 if (iov_iter_fault_in_readable(ii, bytes))
848 break;
849
850 err = -ENOMEM;
54566b2c 851 page = grab_cache_page_write_begin(mapping, index, 0);
ea9b9907
NP
852 if (!page)
853 break;
854
931e80e4 855 if (mapping_writably_mapped(mapping))
856 flush_dcache_page(page);
857
ea9b9907
NP
858 pagefault_disable();
859 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
860 pagefault_enable();
861 flush_dcache_page(page);
862
478e0841
JW
863 mark_page_accessed(page);
864
ea9b9907
NP
865 if (!tmp) {
866 unlock_page(page);
867 page_cache_release(page);
868 bytes = min(bytes, iov_iter_single_seg_count(ii));
869 goto again;
870 }
871
872 err = 0;
873 req->pages[req->num_pages] = page;
85f40aec 874 req->page_descs[req->num_pages].length = tmp;
ea9b9907
NP
875 req->num_pages++;
876
877 iov_iter_advance(ii, tmp);
878 count += tmp;
879 pos += tmp;
880 offset += tmp;
881 if (offset == PAGE_CACHE_SIZE)
882 offset = 0;
883
78bb6cb9
MS
884 if (!fc->big_writes)
885 break;
ea9b9907 886 } while (iov_iter_count(ii) && count < fc->max_write &&
d07f09f5 887 req->num_pages < req->max_pages && offset == 0);
ea9b9907
NP
888
889 return count > 0 ? count : err;
890}
891
d07f09f5
MP
892static inline unsigned fuse_wr_pages(loff_t pos, size_t len)
893{
894 return min_t(unsigned,
895 ((pos + len - 1) >> PAGE_CACHE_SHIFT) -
896 (pos >> PAGE_CACHE_SHIFT) + 1,
897 FUSE_MAX_PAGES_PER_REQ);
898}
899
ea9b9907
NP
900static ssize_t fuse_perform_write(struct file *file,
901 struct address_space *mapping,
902 struct iov_iter *ii, loff_t pos)
903{
904 struct inode *inode = mapping->host;
905 struct fuse_conn *fc = get_fuse_conn(inode);
906 int err = 0;
907 ssize_t res = 0;
908
909 if (is_bad_inode(inode))
910 return -EIO;
911
912 do {
913 struct fuse_req *req;
914 ssize_t count;
d07f09f5 915 unsigned nr_pages = fuse_wr_pages(pos, iov_iter_count(ii));
ea9b9907 916
d07f09f5 917 req = fuse_get_req(fc, nr_pages);
ea9b9907
NP
918 if (IS_ERR(req)) {
919 err = PTR_ERR(req);
920 break;
921 }
922
923 count = fuse_fill_write_pages(req, mapping, ii, pos);
924 if (count <= 0) {
925 err = count;
926 } else {
927 size_t num_written;
928
929 num_written = fuse_send_write_pages(req, file, inode,
930 pos, count);
931 err = req->out.h.error;
932 if (!err) {
933 res += num_written;
934 pos += num_written;
935
936 /* break out of the loop on short write */
937 if (num_written != count)
938 err = -EIO;
939 }
940 }
941 fuse_put_request(fc, req);
942 } while (!err && iov_iter_count(ii));
943
944 if (res > 0)
945 fuse_write_update_size(inode, pos);
946
947 fuse_invalidate_attr(inode);
948
949 return res > 0 ? res : err;
950}
951
952static ssize_t fuse_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
953 unsigned long nr_segs, loff_t pos)
954{
955 struct file *file = iocb->ki_filp;
956 struct address_space *mapping = file->f_mapping;
957 size_t count = 0;
4273b793 958 size_t ocount = 0;
ea9b9907 959 ssize_t written = 0;
4273b793 960 ssize_t written_buffered = 0;
ea9b9907
NP
961 struct inode *inode = mapping->host;
962 ssize_t err;
963 struct iov_iter i;
4273b793 964 loff_t endbyte = 0;
ea9b9907
NP
965
966 WARN_ON(iocb->ki_pos != pos);
967
4273b793
AA
968 ocount = 0;
969 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
ea9b9907
NP
970 if (err)
971 return err;
972
4273b793 973 count = ocount;
58ef6a75 974 sb_start_write(inode->i_sb);
ea9b9907 975 mutex_lock(&inode->i_mutex);
ea9b9907
NP
976
977 /* We can write back this queue in page reclaim */
978 current->backing_dev_info = mapping->backing_dev_info;
979
980 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
981 if (err)
982 goto out;
983
984 if (count == 0)
985 goto out;
986
2f1936b8 987 err = file_remove_suid(file);
ea9b9907
NP
988 if (err)
989 goto out;
990
c3b2da31
JB
991 err = file_update_time(file);
992 if (err)
993 goto out;
ea9b9907 994
4273b793
AA
995 if (file->f_flags & O_DIRECT) {
996 written = generic_file_direct_write(iocb, iov, &nr_segs,
997 pos, &iocb->ki_pos,
998 count, ocount);
999 if (written < 0 || written == count)
1000 goto out;
1001
1002 pos += written;
1003 count -= written;
ea9b9907 1004
4273b793
AA
1005 iov_iter_init(&i, iov, nr_segs, count, written);
1006 written_buffered = fuse_perform_write(file, mapping, &i, pos);
1007 if (written_buffered < 0) {
1008 err = written_buffered;
1009 goto out;
1010 }
1011 endbyte = pos + written_buffered - 1;
1012
1013 err = filemap_write_and_wait_range(file->f_mapping, pos,
1014 endbyte);
1015 if (err)
1016 goto out;
1017
1018 invalidate_mapping_pages(file->f_mapping,
1019 pos >> PAGE_CACHE_SHIFT,
1020 endbyte >> PAGE_CACHE_SHIFT);
1021
1022 written += written_buffered;
1023 iocb->ki_pos = pos + written_buffered;
1024 } else {
1025 iov_iter_init(&i, iov, nr_segs, count, 0);
1026 written = fuse_perform_write(file, mapping, &i, pos);
1027 if (written >= 0)
1028 iocb->ki_pos = pos + written;
1029 }
ea9b9907
NP
1030out:
1031 current->backing_dev_info = NULL;
1032 mutex_unlock(&inode->i_mutex);
58ef6a75 1033 sb_end_write(inode->i_sb);
ea9b9907
NP
1034
1035 return written ? written : err;
1036}
1037
413ef8cb
MS
1038static void fuse_release_user_pages(struct fuse_req *req, int write)
1039{
1040 unsigned i;
1041
1042 for (i = 0; i < req->num_pages; i++) {
1043 struct page *page = req->pages[i];
1044 if (write)
1045 set_page_dirty_lock(page);
1046 put_page(page);
1047 }
1048}
1049
85f40aec
MP
1050static inline void fuse_page_descs_length_init(struct fuse_req *req)
1051{
1052 int i;
1053
1054 for (i = 0; i < req->num_pages; i++)
1055 req->page_descs[i].length = PAGE_SIZE -
1056 req->page_descs[i].offset;
1057}
1058
b98d023a 1059static int fuse_get_user_pages(struct fuse_req *req, struct iov_iter *ii,
ce60a2f1 1060 size_t *nbytesp, int write)
413ef8cb 1061{
ce60a2f1 1062 size_t nbytes = *nbytesp;
b98d023a
MP
1063 size_t frag_size = min(iov_iter_single_seg_count(ii), nbytes);
1064 unsigned long user_addr;
1065 unsigned offset;
413ef8cb
MS
1066 int npages;
1067
b98d023a
MP
1068 user_addr = (unsigned long)ii->iov->iov_base + ii->iov_offset;
1069 offset = user_addr & ~PAGE_MASK;
1070
f4975c67
MS
1071 /* Special case for kernel I/O: can copy directly into the buffer */
1072 if (segment_eq(get_fs(), KERNEL_DS)) {
1073 if (write)
1074 req->in.args[1].value = (void *) user_addr;
1075 else
1076 req->out.args[0].value = (void *) user_addr;
1077
b98d023a
MP
1078 iov_iter_advance(ii, frag_size);
1079 *nbytesp = frag_size;
f4975c67
MS
1080 return 0;
1081 }
413ef8cb 1082
b98d023a 1083 nbytes = min_t(size_t, frag_size, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
413ef8cb 1084 npages = (nbytes + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
bd730967 1085 npages = clamp(npages, 1, FUSE_MAX_PAGES_PER_REQ);
1bf94ca7 1086 npages = get_user_pages_fast(user_addr, npages, !write, req->pages);
413ef8cb
MS
1087 if (npages < 0)
1088 return npages;
1089
1090 req->num_pages = npages;
b2430d75 1091 req->page_descs[0].offset = offset;
85f40aec 1092 fuse_page_descs_length_init(req);
f4975c67
MS
1093
1094 if (write)
1095 req->in.argpages = 1;
1096 else
1097 req->out.argpages = 1;
1098
b2430d75 1099 nbytes = (req->num_pages << PAGE_SHIFT) - req->page_descs[0].offset;
85f40aec 1100
b98d023a 1101 if (frag_size < nbytes)
85f40aec 1102 req->page_descs[req->num_pages - 1].length -=
b98d023a 1103 nbytes - frag_size;
85f40aec 1104
b98d023a
MP
1105 *nbytesp = min(frag_size, nbytes);
1106 iov_iter_advance(ii, *nbytesp);
f4975c67 1107
413ef8cb
MS
1108 return 0;
1109}
1110
b98d023a
MP
1111static ssize_t __fuse_direct_io(struct file *file, const struct iovec *iov,
1112 unsigned long nr_segs, size_t count,
1113 loff_t *ppos, int write)
413ef8cb 1114{
2106cb18
MS
1115 struct fuse_file *ff = file->private_data;
1116 struct fuse_conn *fc = ff->fc;
413ef8cb
MS
1117 size_t nmax = write ? fc->max_write : fc->max_read;
1118 loff_t pos = *ppos;
1119 ssize_t res = 0;
248d86e8 1120 struct fuse_req *req;
b98d023a
MP
1121 struct iov_iter ii;
1122
1123 iov_iter_init(&ii, iov, nr_segs, count, 0);
248d86e8 1124
b111c8c0 1125 req = fuse_get_req(fc, FUSE_MAX_PAGES_PER_REQ);
ce1d5a49
MS
1126 if (IS_ERR(req))
1127 return PTR_ERR(req);
413ef8cb
MS
1128
1129 while (count) {
413ef8cb 1130 size_t nres;
2106cb18 1131 fl_owner_t owner = current->files;
f4975c67 1132 size_t nbytes = min(count, nmax);
b98d023a 1133 int err = fuse_get_user_pages(req, &ii, &nbytes, write);
413ef8cb
MS
1134 if (err) {
1135 res = err;
1136 break;
1137 }
f4975c67 1138
413ef8cb 1139 if (write)
2106cb18 1140 nres = fuse_send_write(req, file, pos, nbytes, owner);
413ef8cb 1141 else
2106cb18
MS
1142 nres = fuse_send_read(req, file, pos, nbytes, owner);
1143
413ef8cb
MS
1144 fuse_release_user_pages(req, !write);
1145 if (req->out.h.error) {
1146 if (!res)
1147 res = req->out.h.error;
1148 break;
1149 } else if (nres > nbytes) {
1150 res = -EIO;
1151 break;
1152 }
1153 count -= nres;
1154 res += nres;
1155 pos += nres;
413ef8cb
MS
1156 if (nres != nbytes)
1157 break;
56cf34ff
MS
1158 if (count) {
1159 fuse_put_request(fc, req);
b111c8c0 1160 req = fuse_get_req(fc, FUSE_MAX_PAGES_PER_REQ);
56cf34ff
MS
1161 if (IS_ERR(req))
1162 break;
1163 }
413ef8cb 1164 }
f60311d5
AA
1165 if (!IS_ERR(req))
1166 fuse_put_request(fc, req);
d09cb9d7 1167 if (res > 0)
413ef8cb 1168 *ppos = pos;
413ef8cb
MS
1169
1170 return res;
1171}
b98d023a
MP
1172
1173ssize_t fuse_direct_io(struct file *file, const char __user *buf,
1174 size_t count, loff_t *ppos, int write)
1175{
1176 struct iovec iov = { .iov_base = (void *)buf, .iov_len = count };
1177 return __fuse_direct_io(file, &iov, 1, count, ppos, write);
1178}
08cbf542 1179EXPORT_SYMBOL_GPL(fuse_direct_io);
413ef8cb 1180
b98d023a
MP
1181static ssize_t __fuse_direct_read(struct file *file, const struct iovec *iov,
1182 unsigned long nr_segs, loff_t *ppos)
413ef8cb 1183{
d09cb9d7
MS
1184 ssize_t res;
1185 struct inode *inode = file->f_path.dentry->d_inode;
1186
1187 if (is_bad_inode(inode))
1188 return -EIO;
1189
b98d023a
MP
1190 res = __fuse_direct_io(file, iov, nr_segs, iov_length(iov, nr_segs),
1191 ppos, 0);
d09cb9d7
MS
1192
1193 fuse_invalidate_attr(inode);
1194
1195 return res;
413ef8cb
MS
1196}
1197
b98d023a
MP
1198static ssize_t fuse_direct_read(struct file *file, char __user *buf,
1199 size_t count, loff_t *ppos)
1200{
1201 struct iovec iov = { .iov_base = (void *)buf, .iov_len = count };
1202 return __fuse_direct_read(file, &iov, 1, ppos);
1203}
1204
1205static ssize_t __fuse_direct_write(struct file *file, const struct iovec *iov,
1206 unsigned long nr_segs, loff_t *ppos)
413ef8cb 1207{
7706a9d6 1208 struct inode *inode = file->f_path.dentry->d_inode;
b98d023a 1209 size_t count = iov_length(iov, nr_segs);
413ef8cb 1210 ssize_t res;
d09cb9d7 1211
889f7848 1212 res = generic_write_checks(file, ppos, &count, 0);
d09cb9d7 1213 if (!res) {
b98d023a 1214 res = __fuse_direct_io(file, iov, nr_segs, count, ppos, 1);
d09cb9d7
MS
1215 if (res > 0)
1216 fuse_write_update_size(inode, *ppos);
1217 }
d09cb9d7
MS
1218
1219 fuse_invalidate_attr(inode);
1220
413ef8cb
MS
1221 return res;
1222}
1223
4273b793
AA
1224static ssize_t fuse_direct_write(struct file *file, const char __user *buf,
1225 size_t count, loff_t *ppos)
1226{
b98d023a 1227 struct iovec iov = { .iov_base = (void *)buf, .iov_len = count };
4273b793
AA
1228 struct inode *inode = file->f_path.dentry->d_inode;
1229 ssize_t res;
1230
1231 if (is_bad_inode(inode))
1232 return -EIO;
1233
1234 /* Don't allow parallel writes to the same file */
1235 mutex_lock(&inode->i_mutex);
b98d023a 1236 res = __fuse_direct_write(file, &iov, 1, ppos);
4273b793
AA
1237 mutex_unlock(&inode->i_mutex);
1238
1239 return res;
1240}
1241
3be5a52b 1242static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
b6aeaded 1243{
3be5a52b 1244 __free_page(req->pages[0]);
5a18ec17 1245 fuse_file_put(req->ff, false);
3be5a52b
MS
1246}
1247
1248static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
1249{
1250 struct inode *inode = req->inode;
1251 struct fuse_inode *fi = get_fuse_inode(inode);
1252 struct backing_dev_info *bdi = inode->i_mapping->backing_dev_info;
1253
1254 list_del(&req->writepages_entry);
1255 dec_bdi_stat(bdi, BDI_WRITEBACK);
1256 dec_zone_page_state(req->pages[0], NR_WRITEBACK_TEMP);
1257 bdi_writeout_inc(bdi);
1258 wake_up(&fi->page_waitq);
1259}
1260
1261/* Called under fc->lock, may release and reacquire it */
1262static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req)
b9ca67b2
MS
1263__releases(fc->lock)
1264__acquires(fc->lock)
3be5a52b
MS
1265{
1266 struct fuse_inode *fi = get_fuse_inode(req->inode);
1267 loff_t size = i_size_read(req->inode);
1268 struct fuse_write_in *inarg = &req->misc.write.in;
1269
1270 if (!fc->connected)
1271 goto out_free;
1272
1273 if (inarg->offset + PAGE_CACHE_SIZE <= size) {
1274 inarg->size = PAGE_CACHE_SIZE;
1275 } else if (inarg->offset < size) {
1276 inarg->size = size & (PAGE_CACHE_SIZE - 1);
1277 } else {
1278 /* Got truncated off completely */
1279 goto out_free;
b6aeaded 1280 }
3be5a52b
MS
1281
1282 req->in.args[1].size = inarg->size;
1283 fi->writectr++;
b93f858a 1284 fuse_request_send_background_locked(fc, req);
3be5a52b
MS
1285 return;
1286
1287 out_free:
1288 fuse_writepage_finish(fc, req);
1289 spin_unlock(&fc->lock);
1290 fuse_writepage_free(fc, req);
e9bb09dd 1291 fuse_put_request(fc, req);
3be5a52b 1292 spin_lock(&fc->lock);
b6aeaded
MS
1293}
1294
3be5a52b
MS
1295/*
1296 * If fi->writectr is positive (no truncate or fsync going on) send
1297 * all queued writepage requests.
1298 *
1299 * Called with fc->lock
1300 */
1301void fuse_flush_writepages(struct inode *inode)
b9ca67b2
MS
1302__releases(fc->lock)
1303__acquires(fc->lock)
b6aeaded 1304{
3be5a52b
MS
1305 struct fuse_conn *fc = get_fuse_conn(inode);
1306 struct fuse_inode *fi = get_fuse_inode(inode);
1307 struct fuse_req *req;
1308
1309 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1310 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1311 list_del_init(&req->list);
1312 fuse_send_writepage(fc, req);
1313 }
1314}
1315
1316static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1317{
1318 struct inode *inode = req->inode;
1319 struct fuse_inode *fi = get_fuse_inode(inode);
1320
1321 mapping_set_error(inode->i_mapping, req->out.h.error);
1322 spin_lock(&fc->lock);
1323 fi->writectr--;
1324 fuse_writepage_finish(fc, req);
1325 spin_unlock(&fc->lock);
1326 fuse_writepage_free(fc, req);
1327}
1328
1329static int fuse_writepage_locked(struct page *page)
1330{
1331 struct address_space *mapping = page->mapping;
1332 struct inode *inode = mapping->host;
1333 struct fuse_conn *fc = get_fuse_conn(inode);
1334 struct fuse_inode *fi = get_fuse_inode(inode);
1335 struct fuse_req *req;
1336 struct fuse_file *ff;
1337 struct page *tmp_page;
1338
1339 set_page_writeback(page);
1340
4250c066 1341 req = fuse_request_alloc_nofs(1);
3be5a52b
MS
1342 if (!req)
1343 goto err;
1344
1345 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1346 if (!tmp_page)
1347 goto err_free;
1348
1349 spin_lock(&fc->lock);
1350 BUG_ON(list_empty(&fi->write_files));
1351 ff = list_entry(fi->write_files.next, struct fuse_file, write_entry);
1352 req->ff = fuse_file_get(ff);
1353 spin_unlock(&fc->lock);
1354
2106cb18 1355 fuse_write_fill(req, ff, page_offset(page), 0);
3be5a52b
MS
1356
1357 copy_highpage(tmp_page, page);
2d698b07 1358 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
f4975c67 1359 req->in.argpages = 1;
3be5a52b
MS
1360 req->num_pages = 1;
1361 req->pages[0] = tmp_page;
b2430d75 1362 req->page_descs[0].offset = 0;
85f40aec 1363 req->page_descs[0].length = PAGE_SIZE;
3be5a52b
MS
1364 req->end = fuse_writepage_end;
1365 req->inode = inode;
1366
1367 inc_bdi_stat(mapping->backing_dev_info, BDI_WRITEBACK);
1368 inc_zone_page_state(tmp_page, NR_WRITEBACK_TEMP);
1369 end_page_writeback(page);
1370
1371 spin_lock(&fc->lock);
1372 list_add(&req->writepages_entry, &fi->writepages);
1373 list_add_tail(&req->list, &fi->queued_writes);
1374 fuse_flush_writepages(inode);
1375 spin_unlock(&fc->lock);
1376
1377 return 0;
1378
1379err_free:
1380 fuse_request_free(req);
1381err:
1382 end_page_writeback(page);
1383 return -ENOMEM;
1384}
1385
1386static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1387{
1388 int err;
1389
1390 err = fuse_writepage_locked(page);
1391 unlock_page(page);
1392
1393 return err;
1394}
1395
1396static int fuse_launder_page(struct page *page)
1397{
1398 int err = 0;
1399 if (clear_page_dirty_for_io(page)) {
1400 struct inode *inode = page->mapping->host;
1401 err = fuse_writepage_locked(page);
1402 if (!err)
1403 fuse_wait_on_page_writeback(inode, page->index);
1404 }
1405 return err;
1406}
1407
1408/*
1409 * Write back dirty pages now, because there may not be any suitable
1410 * open files later
1411 */
1412static void fuse_vma_close(struct vm_area_struct *vma)
1413{
1414 filemap_write_and_wait(vma->vm_file->f_mapping);
1415}
1416
1417/*
1418 * Wait for writeback against this page to complete before allowing it
1419 * to be marked dirty again, and hence written back again, possibly
1420 * before the previous writepage completed.
1421 *
1422 * Block here, instead of in ->writepage(), so that the userspace fs
1423 * can only block processes actually operating on the filesystem.
1424 *
1425 * Otherwise unprivileged userspace fs would be able to block
1426 * unrelated:
1427 *
1428 * - page migration
1429 * - sync(2)
1430 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
1431 */
c2ec175c 1432static int fuse_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
3be5a52b 1433{
c2ec175c 1434 struct page *page = vmf->page;
3be5a52b
MS
1435 /*
1436 * Don't use page->mapping as it may become NULL from a
1437 * concurrent truncate.
1438 */
1439 struct inode *inode = vma->vm_file->f_mapping->host;
1440
1441 fuse_wait_on_page_writeback(inode, page->index);
1442 return 0;
1443}
1444
f0f37e2f 1445static const struct vm_operations_struct fuse_file_vm_ops = {
3be5a52b
MS
1446 .close = fuse_vma_close,
1447 .fault = filemap_fault,
1448 .page_mkwrite = fuse_page_mkwrite,
0b173bc4 1449 .remap_pages = generic_file_remap_pages,
3be5a52b
MS
1450};
1451
1452static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
1453{
1454 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE)) {
1455 struct inode *inode = file->f_dentry->d_inode;
1456 struct fuse_conn *fc = get_fuse_conn(inode);
1457 struct fuse_inode *fi = get_fuse_inode(inode);
1458 struct fuse_file *ff = file->private_data;
1459 /*
1460 * file may be written through mmap, so chain it onto the
1461 * inodes's write_file list
1462 */
1463 spin_lock(&fc->lock);
1464 if (list_empty(&ff->write_entry))
1465 list_add(&ff->write_entry, &fi->write_files);
1466 spin_unlock(&fc->lock);
1467 }
1468 file_accessed(file);
1469 vma->vm_ops = &fuse_file_vm_ops;
b6aeaded
MS
1470 return 0;
1471}
1472
fc280c96
MS
1473static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
1474{
1475 /* Can't provide the coherency needed for MAP_SHARED */
1476 if (vma->vm_flags & VM_MAYSHARE)
1477 return -ENODEV;
1478
3121bfe7
MS
1479 invalidate_inode_pages2(file->f_mapping);
1480
fc280c96
MS
1481 return generic_file_mmap(file, vma);
1482}
1483
71421259
MS
1484static int convert_fuse_file_lock(const struct fuse_file_lock *ffl,
1485 struct file_lock *fl)
1486{
1487 switch (ffl->type) {
1488 case F_UNLCK:
1489 break;
1490
1491 case F_RDLCK:
1492 case F_WRLCK:
1493 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
1494 ffl->end < ffl->start)
1495 return -EIO;
1496
1497 fl->fl_start = ffl->start;
1498 fl->fl_end = ffl->end;
1499 fl->fl_pid = ffl->pid;
1500 break;
1501
1502 default:
1503 return -EIO;
1504 }
1505 fl->fl_type = ffl->type;
1506 return 0;
1507}
1508
1509static void fuse_lk_fill(struct fuse_req *req, struct file *file,
a9ff4f87
MS
1510 const struct file_lock *fl, int opcode, pid_t pid,
1511 int flock)
71421259 1512{
7706a9d6 1513 struct inode *inode = file->f_path.dentry->d_inode;
9c8ef561 1514 struct fuse_conn *fc = get_fuse_conn(inode);
71421259
MS
1515 struct fuse_file *ff = file->private_data;
1516 struct fuse_lk_in *arg = &req->misc.lk_in;
1517
1518 arg->fh = ff->fh;
9c8ef561 1519 arg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
71421259
MS
1520 arg->lk.start = fl->fl_start;
1521 arg->lk.end = fl->fl_end;
1522 arg->lk.type = fl->fl_type;
1523 arg->lk.pid = pid;
a9ff4f87
MS
1524 if (flock)
1525 arg->lk_flags |= FUSE_LK_FLOCK;
71421259
MS
1526 req->in.h.opcode = opcode;
1527 req->in.h.nodeid = get_node_id(inode);
1528 req->in.numargs = 1;
1529 req->in.args[0].size = sizeof(*arg);
1530 req->in.args[0].value = arg;
1531}
1532
1533static int fuse_getlk(struct file *file, struct file_lock *fl)
1534{
7706a9d6 1535 struct inode *inode = file->f_path.dentry->d_inode;
71421259
MS
1536 struct fuse_conn *fc = get_fuse_conn(inode);
1537 struct fuse_req *req;
1538 struct fuse_lk_out outarg;
1539 int err;
1540
b111c8c0 1541 req = fuse_get_req_nopages(fc);
71421259
MS
1542 if (IS_ERR(req))
1543 return PTR_ERR(req);
1544
a9ff4f87 1545 fuse_lk_fill(req, file, fl, FUSE_GETLK, 0, 0);
71421259
MS
1546 req->out.numargs = 1;
1547 req->out.args[0].size = sizeof(outarg);
1548 req->out.args[0].value = &outarg;
b93f858a 1549 fuse_request_send(fc, req);
71421259
MS
1550 err = req->out.h.error;
1551 fuse_put_request(fc, req);
1552 if (!err)
1553 err = convert_fuse_file_lock(&outarg.lk, fl);
1554
1555 return err;
1556}
1557
a9ff4f87 1558static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
71421259 1559{
7706a9d6 1560 struct inode *inode = file->f_path.dentry->d_inode;
71421259
MS
1561 struct fuse_conn *fc = get_fuse_conn(inode);
1562 struct fuse_req *req;
1563 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
1564 pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0;
1565 int err;
1566
8fb47a4f 1567 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
48e90761
MS
1568 /* NLM needs asynchronous locks, which we don't support yet */
1569 return -ENOLCK;
1570 }
1571
71421259
MS
1572 /* Unlock on close is handled by the flush method */
1573 if (fl->fl_flags & FL_CLOSE)
1574 return 0;
1575
b111c8c0 1576 req = fuse_get_req_nopages(fc);
71421259
MS
1577 if (IS_ERR(req))
1578 return PTR_ERR(req);
1579
a9ff4f87 1580 fuse_lk_fill(req, file, fl, opcode, pid, flock);
b93f858a 1581 fuse_request_send(fc, req);
71421259 1582 err = req->out.h.error;
a4d27e75
MS
1583 /* locking is restartable */
1584 if (err == -EINTR)
1585 err = -ERESTARTSYS;
71421259
MS
1586 fuse_put_request(fc, req);
1587 return err;
1588}
1589
1590static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
1591{
7706a9d6 1592 struct inode *inode = file->f_path.dentry->d_inode;
71421259
MS
1593 struct fuse_conn *fc = get_fuse_conn(inode);
1594 int err;
1595
48e90761
MS
1596 if (cmd == F_CANCELLK) {
1597 err = 0;
1598 } else if (cmd == F_GETLK) {
71421259 1599 if (fc->no_lock) {
9d6a8c5c 1600 posix_test_lock(file, fl);
71421259
MS
1601 err = 0;
1602 } else
1603 err = fuse_getlk(file, fl);
1604 } else {
1605 if (fc->no_lock)
48e90761 1606 err = posix_lock_file(file, fl, NULL);
71421259 1607 else
a9ff4f87 1608 err = fuse_setlk(file, fl, 0);
71421259
MS
1609 }
1610 return err;
1611}
1612
a9ff4f87
MS
1613static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
1614{
1615 struct inode *inode = file->f_path.dentry->d_inode;
1616 struct fuse_conn *fc = get_fuse_conn(inode);
1617 int err;
1618
37fb3a30 1619 if (fc->no_flock) {
a9ff4f87
MS
1620 err = flock_lock_file_wait(file, fl);
1621 } else {
37fb3a30
MS
1622 struct fuse_file *ff = file->private_data;
1623
a9ff4f87
MS
1624 /* emulate flock with POSIX locks */
1625 fl->fl_owner = (fl_owner_t) file;
37fb3a30 1626 ff->flock = true;
a9ff4f87
MS
1627 err = fuse_setlk(file, fl, 1);
1628 }
1629
1630 return err;
1631}
1632
b2d2272f
MS
1633static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
1634{
1635 struct inode *inode = mapping->host;
1636 struct fuse_conn *fc = get_fuse_conn(inode);
1637 struct fuse_req *req;
1638 struct fuse_bmap_in inarg;
1639 struct fuse_bmap_out outarg;
1640 int err;
1641
1642 if (!inode->i_sb->s_bdev || fc->no_bmap)
1643 return 0;
1644
b111c8c0 1645 req = fuse_get_req_nopages(fc);
b2d2272f
MS
1646 if (IS_ERR(req))
1647 return 0;
1648
1649 memset(&inarg, 0, sizeof(inarg));
1650 inarg.block = block;
1651 inarg.blocksize = inode->i_sb->s_blocksize;
1652 req->in.h.opcode = FUSE_BMAP;
1653 req->in.h.nodeid = get_node_id(inode);
1654 req->in.numargs = 1;
1655 req->in.args[0].size = sizeof(inarg);
1656 req->in.args[0].value = &inarg;
1657 req->out.numargs = 1;
1658 req->out.args[0].size = sizeof(outarg);
1659 req->out.args[0].value = &outarg;
b93f858a 1660 fuse_request_send(fc, req);
b2d2272f
MS
1661 err = req->out.h.error;
1662 fuse_put_request(fc, req);
1663 if (err == -ENOSYS)
1664 fc->no_bmap = 1;
1665
1666 return err ? 0 : outarg.block;
1667}
1668
965c8e59 1669static loff_t fuse_file_llseek(struct file *file, loff_t offset, int whence)
5559b8f4
MS
1670{
1671 loff_t retval;
1672 struct inode *inode = file->f_path.dentry->d_inode;
1673
c07c3d19 1674 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
965c8e59
AM
1675 if (whence == SEEK_CUR || whence == SEEK_SET)
1676 return generic_file_llseek(file, offset, whence);
06222e49 1677
c07c3d19
MS
1678 mutex_lock(&inode->i_mutex);
1679 retval = fuse_update_attributes(inode, NULL, file, NULL);
1680 if (!retval)
965c8e59 1681 retval = generic_file_llseek(file, offset, whence);
5559b8f4 1682 mutex_unlock(&inode->i_mutex);
c07c3d19 1683
5559b8f4
MS
1684 return retval;
1685}
1686
59efec7b
TH
1687static int fuse_ioctl_copy_user(struct page **pages, struct iovec *iov,
1688 unsigned int nr_segs, size_t bytes, bool to_user)
1689{
1690 struct iov_iter ii;
1691 int page_idx = 0;
1692
1693 if (!bytes)
1694 return 0;
1695
1696 iov_iter_init(&ii, iov, nr_segs, bytes, 0);
1697
1698 while (iov_iter_count(&ii)) {
1699 struct page *page = pages[page_idx++];
1700 size_t todo = min_t(size_t, PAGE_SIZE, iov_iter_count(&ii));
4aa0edd2 1701 void *kaddr;
59efec7b 1702
4aa0edd2 1703 kaddr = kmap(page);
59efec7b
TH
1704
1705 while (todo) {
1706 char __user *uaddr = ii.iov->iov_base + ii.iov_offset;
1707 size_t iov_len = ii.iov->iov_len - ii.iov_offset;
1708 size_t copy = min(todo, iov_len);
1709 size_t left;
1710
1711 if (!to_user)
1712 left = copy_from_user(kaddr, uaddr, copy);
1713 else
1714 left = copy_to_user(uaddr, kaddr, copy);
1715
1716 if (unlikely(left))
1717 return -EFAULT;
1718
1719 iov_iter_advance(&ii, copy);
1720 todo -= copy;
1721 kaddr += copy;
1722 }
1723
0bd87182 1724 kunmap(page);
59efec7b
TH
1725 }
1726
1727 return 0;
1728}
1729
d9d318d3
MS
1730/*
1731 * CUSE servers compiled on 32bit broke on 64bit kernels because the
1732 * ABI was defined to be 'struct iovec' which is different on 32bit
1733 * and 64bit. Fortunately we can determine which structure the server
1734 * used from the size of the reply.
1735 */
1baa26b2
MS
1736static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
1737 size_t transferred, unsigned count,
1738 bool is_compat)
d9d318d3
MS
1739{
1740#ifdef CONFIG_COMPAT
1741 if (count * sizeof(struct compat_iovec) == transferred) {
1742 struct compat_iovec *ciov = src;
1743 unsigned i;
1744
1745 /*
1746 * With this interface a 32bit server cannot support
1747 * non-compat (i.e. ones coming from 64bit apps) ioctl
1748 * requests
1749 */
1750 if (!is_compat)
1751 return -EINVAL;
1752
1753 for (i = 0; i < count; i++) {
1754 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
1755 dst[i].iov_len = ciov[i].iov_len;
1756 }
1757 return 0;
1758 }
1759#endif
1760
1761 if (count * sizeof(struct iovec) != transferred)
1762 return -EIO;
1763
1764 memcpy(dst, src, transferred);
1765 return 0;
1766}
1767
7572777e
MS
1768/* Make sure iov_length() won't overflow */
1769static int fuse_verify_ioctl_iov(struct iovec *iov, size_t count)
1770{
1771 size_t n;
1772 u32 max = FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT;
1773
fb6ccff6 1774 for (n = 0; n < count; n++, iov++) {
7572777e
MS
1775 if (iov->iov_len > (size_t) max)
1776 return -ENOMEM;
1777 max -= iov->iov_len;
1778 }
1779 return 0;
1780}
1781
1baa26b2
MS
1782static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
1783 void *src, size_t transferred, unsigned count,
1784 bool is_compat)
1785{
1786 unsigned i;
1787 struct fuse_ioctl_iovec *fiov = src;
1788
1789 if (fc->minor < 16) {
1790 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
1791 count, is_compat);
1792 }
1793
1794 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
1795 return -EIO;
1796
1797 for (i = 0; i < count; i++) {
1798 /* Did the server supply an inappropriate value? */
1799 if (fiov[i].base != (unsigned long) fiov[i].base ||
1800 fiov[i].len != (unsigned long) fiov[i].len)
1801 return -EIO;
1802
1803 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
1804 dst[i].iov_len = (size_t) fiov[i].len;
1805
1806#ifdef CONFIG_COMPAT
1807 if (is_compat &&
1808 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
1809 (compat_size_t) dst[i].iov_len != fiov[i].len))
1810 return -EIO;
1811#endif
1812 }
1813
1814 return 0;
1815}
1816
1817
59efec7b
TH
1818/*
1819 * For ioctls, there is no generic way to determine how much memory
1820 * needs to be read and/or written. Furthermore, ioctls are allowed
1821 * to dereference the passed pointer, so the parameter requires deep
1822 * copying but FUSE has no idea whatsoever about what to copy in or
1823 * out.
1824 *
1825 * This is solved by allowing FUSE server to retry ioctl with
1826 * necessary in/out iovecs. Let's assume the ioctl implementation
1827 * needs to read in the following structure.
1828 *
1829 * struct a {
1830 * char *buf;
1831 * size_t buflen;
1832 * }
1833 *
1834 * On the first callout to FUSE server, inarg->in_size and
1835 * inarg->out_size will be NULL; then, the server completes the ioctl
1836 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
1837 * the actual iov array to
1838 *
1839 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
1840 *
1841 * which tells FUSE to copy in the requested area and retry the ioctl.
1842 * On the second round, the server has access to the structure and
1843 * from that it can tell what to look for next, so on the invocation,
1844 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
1845 *
1846 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
1847 * { .iov_base = a.buf, .iov_len = a.buflen } }
1848 *
1849 * FUSE will copy both struct a and the pointed buffer from the
1850 * process doing the ioctl and retry ioctl with both struct a and the
1851 * buffer.
1852 *
1853 * This time, FUSE server has everything it needs and completes ioctl
1854 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
1855 *
1856 * Copying data out works the same way.
1857 *
1858 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
1859 * automatically initializes in and out iovs by decoding @cmd with
1860 * _IOC_* macros and the server is not allowed to request RETRY. This
1861 * limits ioctl data transfers to well-formed ioctls and is the forced
1862 * behavior for all FUSE servers.
1863 */
08cbf542
TH
1864long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
1865 unsigned int flags)
59efec7b 1866{
59efec7b 1867 struct fuse_file *ff = file->private_data;
d36f2487 1868 struct fuse_conn *fc = ff->fc;
59efec7b
TH
1869 struct fuse_ioctl_in inarg = {
1870 .fh = ff->fh,
1871 .cmd = cmd,
1872 .arg = arg,
1873 .flags = flags
1874 };
1875 struct fuse_ioctl_out outarg;
1876 struct fuse_req *req = NULL;
1877 struct page **pages = NULL;
8ac83505 1878 struct iovec *iov_page = NULL;
59efec7b
TH
1879 struct iovec *in_iov = NULL, *out_iov = NULL;
1880 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
1881 size_t in_size, out_size, transferred;
1882 int err;
1883
1baa26b2
MS
1884#if BITS_PER_LONG == 32
1885 inarg.flags |= FUSE_IOCTL_32BIT;
1886#else
1887 if (flags & FUSE_IOCTL_COMPAT)
1888 inarg.flags |= FUSE_IOCTL_32BIT;
1889#endif
1890
59efec7b 1891 /* assume all the iovs returned by client always fits in a page */
1baa26b2 1892 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
59efec7b 1893
59efec7b 1894 err = -ENOMEM;
c411cc88 1895 pages = kcalloc(FUSE_MAX_PAGES_PER_REQ, sizeof(pages[0]), GFP_KERNEL);
8ac83505 1896 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
59efec7b
TH
1897 if (!pages || !iov_page)
1898 goto out;
1899
1900 /*
1901 * If restricted, initialize IO parameters as encoded in @cmd.
1902 * RETRY from server is not allowed.
1903 */
1904 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
8ac83505 1905 struct iovec *iov = iov_page;
59efec7b 1906
c9f0523d 1907 iov->iov_base = (void __user *)arg;
59efec7b
TH
1908 iov->iov_len = _IOC_SIZE(cmd);
1909
1910 if (_IOC_DIR(cmd) & _IOC_WRITE) {
1911 in_iov = iov;
1912 in_iovs = 1;
1913 }
1914
1915 if (_IOC_DIR(cmd) & _IOC_READ) {
1916 out_iov = iov;
1917 out_iovs = 1;
1918 }
1919 }
1920
1921 retry:
1922 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
1923 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
1924
1925 /*
1926 * Out data can be used either for actual out data or iovs,
1927 * make sure there always is at least one page.
1928 */
1929 out_size = max_t(size_t, out_size, PAGE_SIZE);
1930 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
1931
1932 /* make sure there are enough buffer pages and init request with them */
1933 err = -ENOMEM;
1934 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
1935 goto out;
1936 while (num_pages < max_pages) {
1937 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
1938 if (!pages[num_pages])
1939 goto out;
1940 num_pages++;
1941 }
1942
54b96670 1943 req = fuse_get_req(fc, num_pages);
59efec7b
TH
1944 if (IS_ERR(req)) {
1945 err = PTR_ERR(req);
1946 req = NULL;
1947 goto out;
1948 }
1949 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
1950 req->num_pages = num_pages;
85f40aec 1951 fuse_page_descs_length_init(req);
59efec7b
TH
1952
1953 /* okay, let's send it to the client */
1954 req->in.h.opcode = FUSE_IOCTL;
d36f2487 1955 req->in.h.nodeid = ff->nodeid;
59efec7b
TH
1956 req->in.numargs = 1;
1957 req->in.args[0].size = sizeof(inarg);
1958 req->in.args[0].value = &inarg;
1959 if (in_size) {
1960 req->in.numargs++;
1961 req->in.args[1].size = in_size;
1962 req->in.argpages = 1;
1963
1964 err = fuse_ioctl_copy_user(pages, in_iov, in_iovs, in_size,
1965 false);
1966 if (err)
1967 goto out;
1968 }
1969
1970 req->out.numargs = 2;
1971 req->out.args[0].size = sizeof(outarg);
1972 req->out.args[0].value = &outarg;
1973 req->out.args[1].size = out_size;
1974 req->out.argpages = 1;
1975 req->out.argvar = 1;
1976
b93f858a 1977 fuse_request_send(fc, req);
59efec7b
TH
1978 err = req->out.h.error;
1979 transferred = req->out.args[1].size;
1980 fuse_put_request(fc, req);
1981 req = NULL;
1982 if (err)
1983 goto out;
1984
1985 /* did it ask for retry? */
1986 if (outarg.flags & FUSE_IOCTL_RETRY) {
8ac83505 1987 void *vaddr;
59efec7b
TH
1988
1989 /* no retry if in restricted mode */
1990 err = -EIO;
1991 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
1992 goto out;
1993
1994 in_iovs = outarg.in_iovs;
1995 out_iovs = outarg.out_iovs;
1996
1997 /*
1998 * Make sure things are in boundary, separate checks
1999 * are to protect against overflow.
2000 */
2001 err = -ENOMEM;
2002 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
2003 out_iovs > FUSE_IOCTL_MAX_IOV ||
2004 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
2005 goto out;
2006
2408f6ef 2007 vaddr = kmap_atomic(pages[0]);
1baa26b2 2008 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
d9d318d3
MS
2009 transferred, in_iovs + out_iovs,
2010 (flags & FUSE_IOCTL_COMPAT) != 0);
2408f6ef 2011 kunmap_atomic(vaddr);
d9d318d3
MS
2012 if (err)
2013 goto out;
59efec7b 2014
8ac83505 2015 in_iov = iov_page;
59efec7b
TH
2016 out_iov = in_iov + in_iovs;
2017
7572777e
MS
2018 err = fuse_verify_ioctl_iov(in_iov, in_iovs);
2019 if (err)
2020 goto out;
2021
2022 err = fuse_verify_ioctl_iov(out_iov, out_iovs);
2023 if (err)
2024 goto out;
2025
59efec7b
TH
2026 goto retry;
2027 }
2028
2029 err = -EIO;
2030 if (transferred > inarg.out_size)
2031 goto out;
2032
2033 err = fuse_ioctl_copy_user(pages, out_iov, out_iovs, transferred, true);
2034 out:
2035 if (req)
2036 fuse_put_request(fc, req);
8ac83505 2037 free_page((unsigned long) iov_page);
59efec7b
TH
2038 while (num_pages)
2039 __free_page(pages[--num_pages]);
2040 kfree(pages);
2041
2042 return err ? err : outarg.result;
2043}
08cbf542 2044EXPORT_SYMBOL_GPL(fuse_do_ioctl);
59efec7b 2045
b18da0c5
MS
2046long fuse_ioctl_common(struct file *file, unsigned int cmd,
2047 unsigned long arg, unsigned int flags)
d36f2487
MS
2048{
2049 struct inode *inode = file->f_dentry->d_inode;
2050 struct fuse_conn *fc = get_fuse_conn(inode);
2051
2052 if (!fuse_allow_task(fc, current))
2053 return -EACCES;
2054
2055 if (is_bad_inode(inode))
2056 return -EIO;
2057
2058 return fuse_do_ioctl(file, cmd, arg, flags);
2059}
2060
59efec7b
TH
2061static long fuse_file_ioctl(struct file *file, unsigned int cmd,
2062 unsigned long arg)
2063{
b18da0c5 2064 return fuse_ioctl_common(file, cmd, arg, 0);
59efec7b
TH
2065}
2066
2067static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
2068 unsigned long arg)
2069{
b18da0c5 2070 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
59efec7b
TH
2071}
2072
95668a69
TH
2073/*
2074 * All files which have been polled are linked to RB tree
2075 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2076 * find the matching one.
2077 */
2078static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2079 struct rb_node **parent_out)
2080{
2081 struct rb_node **link = &fc->polled_files.rb_node;
2082 struct rb_node *last = NULL;
2083
2084 while (*link) {
2085 struct fuse_file *ff;
2086
2087 last = *link;
2088 ff = rb_entry(last, struct fuse_file, polled_node);
2089
2090 if (kh < ff->kh)
2091 link = &last->rb_left;
2092 else if (kh > ff->kh)
2093 link = &last->rb_right;
2094 else
2095 return link;
2096 }
2097
2098 if (parent_out)
2099 *parent_out = last;
2100 return link;
2101}
2102
2103/*
2104 * The file is about to be polled. Make sure it's on the polled_files
2105 * RB tree. Note that files once added to the polled_files tree are
2106 * not removed before the file is released. This is because a file
2107 * polled once is likely to be polled again.
2108 */
2109static void fuse_register_polled_file(struct fuse_conn *fc,
2110 struct fuse_file *ff)
2111{
2112 spin_lock(&fc->lock);
2113 if (RB_EMPTY_NODE(&ff->polled_node)) {
2114 struct rb_node **link, *parent;
2115
2116 link = fuse_find_polled_node(fc, ff->kh, &parent);
2117 BUG_ON(*link);
2118 rb_link_node(&ff->polled_node, parent, link);
2119 rb_insert_color(&ff->polled_node, &fc->polled_files);
2120 }
2121 spin_unlock(&fc->lock);
2122}
2123
08cbf542 2124unsigned fuse_file_poll(struct file *file, poll_table *wait)
95668a69 2125{
95668a69 2126 struct fuse_file *ff = file->private_data;
797759aa 2127 struct fuse_conn *fc = ff->fc;
95668a69
TH
2128 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2129 struct fuse_poll_out outarg;
2130 struct fuse_req *req;
2131 int err;
2132
2133 if (fc->no_poll)
2134 return DEFAULT_POLLMASK;
2135
2136 poll_wait(file, &ff->poll_wait, wait);
2137
2138 /*
2139 * Ask for notification iff there's someone waiting for it.
2140 * The client may ignore the flag and always notify.
2141 */
2142 if (waitqueue_active(&ff->poll_wait)) {
2143 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2144 fuse_register_polled_file(fc, ff);
2145 }
2146
b111c8c0 2147 req = fuse_get_req_nopages(fc);
95668a69 2148 if (IS_ERR(req))
201fa69a 2149 return POLLERR;
95668a69
TH
2150
2151 req->in.h.opcode = FUSE_POLL;
797759aa 2152 req->in.h.nodeid = ff->nodeid;
95668a69
TH
2153 req->in.numargs = 1;
2154 req->in.args[0].size = sizeof(inarg);
2155 req->in.args[0].value = &inarg;
2156 req->out.numargs = 1;
2157 req->out.args[0].size = sizeof(outarg);
2158 req->out.args[0].value = &outarg;
b93f858a 2159 fuse_request_send(fc, req);
95668a69
TH
2160 err = req->out.h.error;
2161 fuse_put_request(fc, req);
2162
2163 if (!err)
2164 return outarg.revents;
2165 if (err == -ENOSYS) {
2166 fc->no_poll = 1;
2167 return DEFAULT_POLLMASK;
2168 }
2169 return POLLERR;
2170}
08cbf542 2171EXPORT_SYMBOL_GPL(fuse_file_poll);
95668a69
TH
2172
2173/*
2174 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2175 * wakes up the poll waiters.
2176 */
2177int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2178 struct fuse_notify_poll_wakeup_out *outarg)
2179{
2180 u64 kh = outarg->kh;
2181 struct rb_node **link;
2182
2183 spin_lock(&fc->lock);
2184
2185 link = fuse_find_polled_node(fc, kh, NULL);
2186 if (*link) {
2187 struct fuse_file *ff;
2188
2189 ff = rb_entry(*link, struct fuse_file, polled_node);
2190 wake_up_interruptible_sync(&ff->poll_wait);
2191 }
2192
2193 spin_unlock(&fc->lock);
2194 return 0;
2195}
2196
4273b793
AA
2197static ssize_t
2198fuse_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
2199 loff_t offset, unsigned long nr_segs)
2200{
2201 ssize_t ret = 0;
2202 struct file *file = NULL;
2203 loff_t pos = 0;
2204
2205 file = iocb->ki_filp;
2206 pos = offset;
2207
b98d023a
MP
2208 if (rw == WRITE)
2209 ret = __fuse_direct_write(file, iov, nr_segs, &pos);
2210 else
2211 ret = __fuse_direct_read(file, iov, nr_segs, &pos);
4273b793
AA
2212
2213 return ret;
2214}
2215
cdadb11c
MS
2216static long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
2217 loff_t length)
05ba1f08
AP
2218{
2219 struct fuse_file *ff = file->private_data;
2220 struct fuse_conn *fc = ff->fc;
2221 struct fuse_req *req;
2222 struct fuse_fallocate_in inarg = {
2223 .fh = ff->fh,
2224 .offset = offset,
2225 .length = length,
2226 .mode = mode
2227 };
2228 int err;
2229
519c6040
MS
2230 if (fc->no_fallocate)
2231 return -EOPNOTSUPP;
2232
b111c8c0 2233 req = fuse_get_req_nopages(fc);
05ba1f08
AP
2234 if (IS_ERR(req))
2235 return PTR_ERR(req);
2236
2237 req->in.h.opcode = FUSE_FALLOCATE;
2238 req->in.h.nodeid = ff->nodeid;
2239 req->in.numargs = 1;
2240 req->in.args[0].size = sizeof(inarg);
2241 req->in.args[0].value = &inarg;
2242 fuse_request_send(fc, req);
2243 err = req->out.h.error;
519c6040
MS
2244 if (err == -ENOSYS) {
2245 fc->no_fallocate = 1;
2246 err = -EOPNOTSUPP;
2247 }
05ba1f08
AP
2248 fuse_put_request(fc, req);
2249
2250 return err;
2251}
05ba1f08 2252
4b6f5d20 2253static const struct file_operations fuse_file_operations = {
5559b8f4 2254 .llseek = fuse_file_llseek,
543ade1f 2255 .read = do_sync_read,
bcb4be80 2256 .aio_read = fuse_file_aio_read,
543ade1f 2257 .write = do_sync_write,
ea9b9907 2258 .aio_write = fuse_file_aio_write,
b6aeaded
MS
2259 .mmap = fuse_file_mmap,
2260 .open = fuse_open,
2261 .flush = fuse_flush,
2262 .release = fuse_release,
2263 .fsync = fuse_fsync,
71421259 2264 .lock = fuse_file_lock,
a9ff4f87 2265 .flock = fuse_file_flock,
5ffc4ef4 2266 .splice_read = generic_file_splice_read,
59efec7b
TH
2267 .unlocked_ioctl = fuse_file_ioctl,
2268 .compat_ioctl = fuse_file_compat_ioctl,
95668a69 2269 .poll = fuse_file_poll,
05ba1f08 2270 .fallocate = fuse_file_fallocate,
b6aeaded
MS
2271};
2272
4b6f5d20 2273static const struct file_operations fuse_direct_io_file_operations = {
5559b8f4 2274 .llseek = fuse_file_llseek,
413ef8cb
MS
2275 .read = fuse_direct_read,
2276 .write = fuse_direct_write,
fc280c96 2277 .mmap = fuse_direct_mmap,
413ef8cb
MS
2278 .open = fuse_open,
2279 .flush = fuse_flush,
2280 .release = fuse_release,
2281 .fsync = fuse_fsync,
71421259 2282 .lock = fuse_file_lock,
a9ff4f87 2283 .flock = fuse_file_flock,
59efec7b
TH
2284 .unlocked_ioctl = fuse_file_ioctl,
2285 .compat_ioctl = fuse_file_compat_ioctl,
95668a69 2286 .poll = fuse_file_poll,
05ba1f08 2287 .fallocate = fuse_file_fallocate,
fc280c96 2288 /* no splice_read */
413ef8cb
MS
2289};
2290
f5e54d6e 2291static const struct address_space_operations fuse_file_aops = {
b6aeaded 2292 .readpage = fuse_readpage,
3be5a52b
MS
2293 .writepage = fuse_writepage,
2294 .launder_page = fuse_launder_page,
db50b96c 2295 .readpages = fuse_readpages,
3be5a52b 2296 .set_page_dirty = __set_page_dirty_nobuffers,
b2d2272f 2297 .bmap = fuse_bmap,
4273b793 2298 .direct_IO = fuse_direct_IO,
b6aeaded
MS
2299};
2300
2301void fuse_init_file_inode(struct inode *inode)
2302{
45323fb7
MS
2303 inode->i_fop = &fuse_file_operations;
2304 inode->i_data.a_ops = &fuse_file_aops;
b6aeaded 2305}