fuse: switch fuse_direct_io_file_operations to ->{read,write}_iter()
[GitHub/exynos8895/android_kernel_samsung_universal8895.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>
3634a632 18#include <linux/falloc.h>
e2e40f2c 19#include <linux/uio.h>
b6aeaded 20
4b6f5d20 21static const struct file_operations fuse_direct_io_file_operations;
45323fb7 22
91fe96b4
MS
23static int fuse_send_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
24 int opcode, struct fuse_open_out *outargp)
b6aeaded 25{
b6aeaded 26 struct fuse_open_in inarg;
7078187a 27 FUSE_ARGS(args);
fd72faac
MS
28
29 memset(&inarg, 0, sizeof(inarg));
6ff958ed
MS
30 inarg.flags = file->f_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
31 if (!fc->atomic_o_trunc)
32 inarg.flags &= ~O_TRUNC;
7078187a
MS
33 args.in.h.opcode = opcode;
34 args.in.h.nodeid = nodeid;
35 args.in.numargs = 1;
36 args.in.args[0].size = sizeof(inarg);
37 args.in.args[0].value = &inarg;
38 args.out.numargs = 1;
39 args.out.args[0].size = sizeof(*outargp);
40 args.out.args[0].value = outargp;
fd72faac 41
7078187a 42 return fuse_simple_request(fc, &args);
fd72faac
MS
43}
44
acf99433 45struct fuse_file *fuse_file_alloc(struct fuse_conn *fc)
fd72faac
MS
46{
47 struct fuse_file *ff;
6b2db28a 48
fd72faac 49 ff = kmalloc(sizeof(struct fuse_file), GFP_KERNEL);
6b2db28a
TH
50 if (unlikely(!ff))
51 return NULL;
52
da5e4714 53 ff->fc = fc;
4250c066 54 ff->reserved_req = fuse_request_alloc(0);
6b2db28a
TH
55 if (unlikely(!ff->reserved_req)) {
56 kfree(ff);
57 return NULL;
fd72faac 58 }
6b2db28a
TH
59
60 INIT_LIST_HEAD(&ff->write_entry);
61 atomic_set(&ff->count, 0);
62 RB_CLEAR_NODE(&ff->polled_node);
63 init_waitqueue_head(&ff->poll_wait);
64
65 spin_lock(&fc->lock);
66 ff->kh = ++fc->khctr;
67 spin_unlock(&fc->lock);
68
fd72faac
MS
69 return ff;
70}
71
72void fuse_file_free(struct fuse_file *ff)
73{
33649c91 74 fuse_request_free(ff->reserved_req);
fd72faac
MS
75 kfree(ff);
76}
77
c7b7143c 78struct fuse_file *fuse_file_get(struct fuse_file *ff)
c756e0a4
MS
79{
80 atomic_inc(&ff->count);
81 return ff;
82}
83
819c4b3b
MS
84static void fuse_release_end(struct fuse_conn *fc, struct fuse_req *req)
85{
baebccbe 86 iput(req->misc.release.inode);
819c4b3b
MS
87}
88
5a18ec17 89static void fuse_file_put(struct fuse_file *ff, bool sync)
c756e0a4
MS
90{
91 if (atomic_dec_and_test(&ff->count)) {
92 struct fuse_req *req = ff->reserved_req;
8b0797a4 93
7678ac50
AG
94 if (ff->fc->no_open) {
95 /*
96 * Drop the release request when client does not
97 * implement 'open'
98 */
99 req->background = 0;
baebccbe 100 iput(req->misc.release.inode);
7678ac50
AG
101 fuse_put_request(ff->fc, req);
102 } else if (sync) {
8b41e671 103 req->background = 0;
5a18ec17 104 fuse_request_send(ff->fc, req);
baebccbe 105 iput(req->misc.release.inode);
5a18ec17
MS
106 fuse_put_request(ff->fc, req);
107 } else {
108 req->end = fuse_release_end;
8b41e671 109 req->background = 1;
5a18ec17
MS
110 fuse_request_send_background(ff->fc, req);
111 }
c756e0a4
MS
112 kfree(ff);
113 }
114}
115
08cbf542
TH
116int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
117 bool isdir)
91fe96b4 118{
91fe96b4 119 struct fuse_file *ff;
91fe96b4
MS
120 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
121
122 ff = fuse_file_alloc(fc);
123 if (!ff)
124 return -ENOMEM;
125
7678ac50
AG
126 ff->fh = 0;
127 ff->open_flags = FOPEN_KEEP_CACHE; /* Default for no-open */
128 if (!fc->no_open || isdir) {
129 struct fuse_open_out outarg;
130 int err;
131
132 err = fuse_send_open(fc, nodeid, file, opcode, &outarg);
133 if (!err) {
134 ff->fh = outarg.fh;
135 ff->open_flags = outarg.open_flags;
136
137 } else if (err != -ENOSYS || isdir) {
138 fuse_file_free(ff);
139 return err;
140 } else {
141 fc->no_open = 1;
142 }
91fe96b4
MS
143 }
144
145 if (isdir)
7678ac50 146 ff->open_flags &= ~FOPEN_DIRECT_IO;
91fe96b4 147
91fe96b4 148 ff->nodeid = nodeid;
91fe96b4
MS
149 file->private_data = fuse_file_get(ff);
150
151 return 0;
152}
08cbf542 153EXPORT_SYMBOL_GPL(fuse_do_open);
91fe96b4 154
650b22b9
PE
155static void fuse_link_write_file(struct file *file)
156{
157 struct inode *inode = file_inode(file);
158 struct fuse_conn *fc = get_fuse_conn(inode);
159 struct fuse_inode *fi = get_fuse_inode(inode);
160 struct fuse_file *ff = file->private_data;
161 /*
162 * file may be written through mmap, so chain it onto the
163 * inodes's write_file list
164 */
165 spin_lock(&fc->lock);
166 if (list_empty(&ff->write_entry))
167 list_add(&ff->write_entry, &fi->write_files);
168 spin_unlock(&fc->lock);
169}
170
c7b7143c 171void fuse_finish_open(struct inode *inode, struct file *file)
fd72faac 172{
c7b7143c 173 struct fuse_file *ff = file->private_data;
a0822c55 174 struct fuse_conn *fc = get_fuse_conn(inode);
c7b7143c
MS
175
176 if (ff->open_flags & FOPEN_DIRECT_IO)
fd72faac 177 file->f_op = &fuse_direct_io_file_operations;
c7b7143c 178 if (!(ff->open_flags & FOPEN_KEEP_CACHE))
b1009979 179 invalidate_inode_pages2(inode->i_mapping);
c7b7143c 180 if (ff->open_flags & FOPEN_NONSEEKABLE)
a7c1b990 181 nonseekable_open(inode, file);
a0822c55
KS
182 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
183 struct fuse_inode *fi = get_fuse_inode(inode);
184
185 spin_lock(&fc->lock);
186 fi->attr_version = ++fc->attr_version;
187 i_size_write(inode, 0);
188 spin_unlock(&fc->lock);
189 fuse_invalidate_attr(inode);
75caeecd
MP
190 if (fc->writeback_cache)
191 file_update_time(file);
a0822c55 192 }
4d99ff8f
PE
193 if ((file->f_mode & FMODE_WRITE) && fc->writeback_cache)
194 fuse_link_write_file(file);
fd72faac
MS
195}
196
91fe96b4 197int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
fd72faac 198{
acf99433 199 struct fuse_conn *fc = get_fuse_conn(inode);
b6aeaded 200 int err;
75caeecd
MP
201 bool lock_inode = (file->f_flags & O_TRUNC) &&
202 fc->atomic_o_trunc &&
203 fc->writeback_cache;
b6aeaded
MS
204
205 err = generic_file_open(inode, file);
206 if (err)
207 return err;
208
75caeecd
MP
209 if (lock_inode)
210 mutex_lock(&inode->i_mutex);
211
91fe96b4 212 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
b6aeaded 213
75caeecd
MP
214 if (!err)
215 fuse_finish_open(inode, file);
91fe96b4 216
75caeecd
MP
217 if (lock_inode)
218 mutex_unlock(&inode->i_mutex);
219
220 return err;
b6aeaded
MS
221}
222
8b0797a4 223static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
64c6d8ed 224{
8b0797a4 225 struct fuse_conn *fc = ff->fc;
33649c91 226 struct fuse_req *req = ff->reserved_req;
b57d4264 227 struct fuse_release_in *inarg = &req->misc.release.in;
b6aeaded 228
8b0797a4
MS
229 spin_lock(&fc->lock);
230 list_del(&ff->write_entry);
231 if (!RB_EMPTY_NODE(&ff->polled_node))
232 rb_erase(&ff->polled_node, &fc->polled_files);
233 spin_unlock(&fc->lock);
234
357ccf2b 235 wake_up_interruptible_all(&ff->poll_wait);
8b0797a4 236
b6aeaded 237 inarg->fh = ff->fh;
fd72faac 238 inarg->flags = flags;
51eb01e7 239 req->in.h.opcode = opcode;
c7b7143c 240 req->in.h.nodeid = ff->nodeid;
b6aeaded
MS
241 req->in.numargs = 1;
242 req->in.args[0].size = sizeof(struct fuse_release_in);
243 req->in.args[0].value = inarg;
fd72faac
MS
244}
245
8b0797a4 246void fuse_release_common(struct file *file, int opcode)
fd72faac 247{
6b2db28a
TH
248 struct fuse_file *ff;
249 struct fuse_req *req;
b6aeaded 250
6b2db28a
TH
251 ff = file->private_data;
252 if (unlikely(!ff))
8b0797a4 253 return;
6b2db28a 254
6b2db28a 255 req = ff->reserved_req;
8b0797a4 256 fuse_prepare_release(ff, file->f_flags, opcode);
6b2db28a 257
37fb3a30
MS
258 if (ff->flock) {
259 struct fuse_release_in *inarg = &req->misc.release.in;
260 inarg->release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
261 inarg->lock_owner = fuse_lock_owner_id(ff->fc,
262 (fl_owner_t) file);
263 }
baebccbe
MS
264 /* Hold inode until release is finished */
265 req->misc.release.inode = igrab(file_inode(file));
6b2db28a 266
6b2db28a
TH
267 /*
268 * Normally this will send the RELEASE request, however if
269 * some asynchronous READ or WRITE requests are outstanding,
270 * the sending will be delayed.
5a18ec17
MS
271 *
272 * Make the release synchronous if this is a fuseblk mount,
273 * synchronous RELEASE is allowed (and desirable) in this case
274 * because the server can be trusted not to screw up.
6b2db28a 275 */
5a18ec17 276 fuse_file_put(ff, ff->fc->destroy_req != NULL);
b6aeaded
MS
277}
278
04730fef
MS
279static int fuse_open(struct inode *inode, struct file *file)
280{
91fe96b4 281 return fuse_open_common(inode, file, false);
04730fef
MS
282}
283
284static int fuse_release(struct inode *inode, struct file *file)
285{
e7cc133c
PE
286 struct fuse_conn *fc = get_fuse_conn(inode);
287
288 /* see fuse_vma_close() for !writeback_cache case */
289 if (fc->writeback_cache)
1e18bda8 290 write_inode_now(inode, 1);
b0aa7606 291
8b0797a4
MS
292 fuse_release_common(file, FUSE_RELEASE);
293
294 /* return value is ignored by VFS */
295 return 0;
296}
297
298void fuse_sync_release(struct fuse_file *ff, int flags)
299{
300 WARN_ON(atomic_read(&ff->count) > 1);
301 fuse_prepare_release(ff, flags, FUSE_RELEASE);
302 ff->reserved_req->force = 1;
8b41e671 303 ff->reserved_req->background = 0;
8b0797a4
MS
304 fuse_request_send(ff->fc, ff->reserved_req);
305 fuse_put_request(ff->fc, ff->reserved_req);
306 kfree(ff);
04730fef 307}
08cbf542 308EXPORT_SYMBOL_GPL(fuse_sync_release);
04730fef 309
71421259 310/*
9c8ef561
MS
311 * Scramble the ID space with XTEA, so that the value of the files_struct
312 * pointer is not exposed to userspace.
71421259 313 */
f3332114 314u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
71421259 315{
9c8ef561
MS
316 u32 *k = fc->scramble_key;
317 u64 v = (unsigned long) id;
318 u32 v0 = v;
319 u32 v1 = v >> 32;
320 u32 sum = 0;
321 int i;
322
323 for (i = 0; i < 32; i++) {
324 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
325 sum += 0x9E3779B9;
326 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
327 }
328
329 return (u64) v0 + ((u64) v1 << 32);
71421259
MS
330}
331
3be5a52b 332/*
ea8cd333 333 * Check if any page in a range is under writeback
3be5a52b
MS
334 *
335 * This is currently done by walking the list of writepage requests
336 * for the inode, which can be pretty inefficient.
337 */
ea8cd333
PE
338static bool fuse_range_is_writeback(struct inode *inode, pgoff_t idx_from,
339 pgoff_t idx_to)
3be5a52b
MS
340{
341 struct fuse_conn *fc = get_fuse_conn(inode);
342 struct fuse_inode *fi = get_fuse_inode(inode);
343 struct fuse_req *req;
344 bool found = false;
345
346 spin_lock(&fc->lock);
347 list_for_each_entry(req, &fi->writepages, writepages_entry) {
348 pgoff_t curr_index;
349
350 BUG_ON(req->inode != inode);
351 curr_index = req->misc.write.in.offset >> PAGE_CACHE_SHIFT;
ea8cd333
PE
352 if (idx_from < curr_index + req->num_pages &&
353 curr_index <= idx_to) {
3be5a52b
MS
354 found = true;
355 break;
356 }
357 }
358 spin_unlock(&fc->lock);
359
360 return found;
361}
362
ea8cd333
PE
363static inline bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
364{
365 return fuse_range_is_writeback(inode, index, index);
366}
367
3be5a52b
MS
368/*
369 * Wait for page writeback to be completed.
370 *
371 * Since fuse doesn't rely on the VM writeback tracking, this has to
372 * use some other means.
373 */
374static int fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
375{
376 struct fuse_inode *fi = get_fuse_inode(inode);
377
378 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
379 return 0;
380}
381
fe38d7df
MP
382/*
383 * Wait for all pending writepages on the inode to finish.
384 *
385 * This is currently done by blocking further writes with FUSE_NOWRITE
386 * and waiting for all sent writes to complete.
387 *
388 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
389 * could conflict with truncation.
390 */
391static void fuse_sync_writes(struct inode *inode)
392{
393 fuse_set_nowrite(inode);
394 fuse_release_nowrite(inode);
395}
396
75e1fcc0 397static int fuse_flush(struct file *file, fl_owner_t id)
b6aeaded 398{
6131ffaa 399 struct inode *inode = file_inode(file);
b6aeaded
MS
400 struct fuse_conn *fc = get_fuse_conn(inode);
401 struct fuse_file *ff = file->private_data;
402 struct fuse_req *req;
403 struct fuse_flush_in inarg;
404 int err;
405
248d86e8
MS
406 if (is_bad_inode(inode))
407 return -EIO;
408
b6aeaded
MS
409 if (fc->no_flush)
410 return 0;
411
1e18bda8 412 err = write_inode_now(inode, 1);
fe38d7df
MP
413 if (err)
414 return err;
415
416 mutex_lock(&inode->i_mutex);
417 fuse_sync_writes(inode);
418 mutex_unlock(&inode->i_mutex);
419
b111c8c0 420 req = fuse_get_req_nofail_nopages(fc, file);
b6aeaded
MS
421 memset(&inarg, 0, sizeof(inarg));
422 inarg.fh = ff->fh;
9c8ef561 423 inarg.lock_owner = fuse_lock_owner_id(fc, id);
b6aeaded
MS
424 req->in.h.opcode = FUSE_FLUSH;
425 req->in.h.nodeid = get_node_id(inode);
b6aeaded
MS
426 req->in.numargs = 1;
427 req->in.args[0].size = sizeof(inarg);
428 req->in.args[0].value = &inarg;
71421259 429 req->force = 1;
b93f858a 430 fuse_request_send(fc, req);
b6aeaded
MS
431 err = req->out.h.error;
432 fuse_put_request(fc, req);
433 if (err == -ENOSYS) {
434 fc->no_flush = 1;
435 err = 0;
436 }
437 return err;
438}
439
02c24a82
JB
440int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
441 int datasync, int isdir)
b6aeaded 442{
7ea80859 443 struct inode *inode = file->f_mapping->host;
b6aeaded
MS
444 struct fuse_conn *fc = get_fuse_conn(inode);
445 struct fuse_file *ff = file->private_data;
7078187a 446 FUSE_ARGS(args);
b6aeaded
MS
447 struct fuse_fsync_in inarg;
448 int err;
449
248d86e8
MS
450 if (is_bad_inode(inode))
451 return -EIO;
452
02c24a82
JB
453 mutex_lock(&inode->i_mutex);
454
3be5a52b
MS
455 /*
456 * Start writeback against all dirty pages of the inode, then
457 * wait for all outstanding writes, before sending the FSYNC
458 * request.
459 */
22401e7b 460 err = filemap_write_and_wait_range(inode->i_mapping, start, end);
3be5a52b 461 if (err)
02c24a82 462 goto out;
3be5a52b
MS
463
464 fuse_sync_writes(inode);
1e18bda8
MS
465 err = sync_inode_metadata(inode, 1);
466 if (err)
467 goto out;
3be5a52b 468
22401e7b
MS
469 if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
470 goto out;
b0aa7606 471
b6aeaded
MS
472 memset(&inarg, 0, sizeof(inarg));
473 inarg.fh = ff->fh;
474 inarg.fsync_flags = datasync ? 1 : 0;
7078187a
MS
475 args.in.h.opcode = isdir ? FUSE_FSYNCDIR : FUSE_FSYNC;
476 args.in.h.nodeid = get_node_id(inode);
477 args.in.numargs = 1;
478 args.in.args[0].size = sizeof(inarg);
479 args.in.args[0].value = &inarg;
480 err = fuse_simple_request(fc, &args);
b6aeaded 481 if (err == -ENOSYS) {
82547981
MS
482 if (isdir)
483 fc->no_fsyncdir = 1;
484 else
485 fc->no_fsync = 1;
b6aeaded
MS
486 err = 0;
487 }
02c24a82
JB
488out:
489 mutex_unlock(&inode->i_mutex);
b6aeaded
MS
490 return err;
491}
492
02c24a82
JB
493static int fuse_fsync(struct file *file, loff_t start, loff_t end,
494 int datasync)
82547981 495{
02c24a82 496 return fuse_fsync_common(file, start, end, datasync, 0);
82547981
MS
497}
498
2106cb18
MS
499void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
500 size_t count, int opcode)
b6aeaded 501{
5c5c5e51 502 struct fuse_read_in *inarg = &req->misc.read.in;
a6643094 503 struct fuse_file *ff = file->private_data;
b6aeaded 504
361b1eb5
MS
505 inarg->fh = ff->fh;
506 inarg->offset = pos;
507 inarg->size = count;
a6643094 508 inarg->flags = file->f_flags;
361b1eb5 509 req->in.h.opcode = opcode;
2106cb18 510 req->in.h.nodeid = ff->nodeid;
b6aeaded
MS
511 req->in.numargs = 1;
512 req->in.args[0].size = sizeof(struct fuse_read_in);
c1aa96a5 513 req->in.args[0].value = inarg;
b6aeaded
MS
514 req->out.argvar = 1;
515 req->out.numargs = 1;
516 req->out.args[0].size = count;
b6aeaded
MS
517}
518
187c5c36
MP
519static void fuse_release_user_pages(struct fuse_req *req, int write)
520{
521 unsigned i;
522
523 for (i = 0; i < req->num_pages; i++) {
524 struct page *page = req->pages[i];
525 if (write)
526 set_page_dirty_lock(page);
527 put_page(page);
528 }
529}
530
9d5722b7
CH
531static ssize_t fuse_get_res_by_io(struct fuse_io_priv *io)
532{
533 if (io->err)
534 return io->err;
535
536 if (io->bytes >= 0 && io->write)
537 return -EIO;
538
539 return io->bytes < 0 ? io->size : io->bytes;
540}
541
01e9d11a
MP
542/**
543 * In case of short read, the caller sets 'pos' to the position of
544 * actual end of fuse request in IO request. Otherwise, if bytes_requested
545 * == bytes_transferred or rw == WRITE, the caller sets 'pos' to -1.
546 *
547 * An example:
548 * User requested DIO read of 64K. It was splitted into two 32K fuse requests,
549 * both submitted asynchronously. The first of them was ACKed by userspace as
550 * fully completed (req->out.args[0].size == 32K) resulting in pos == -1. The
551 * second request was ACKed as short, e.g. only 1K was read, resulting in
552 * pos == 33K.
553 *
554 * Thus, when all fuse requests are completed, the minimal non-negative 'pos'
555 * will be equal to the length of the longest contiguous fragment of
556 * transferred data starting from the beginning of IO request.
557 */
558static void fuse_aio_complete(struct fuse_io_priv *io, int err, ssize_t pos)
559{
9d5722b7 560 bool is_sync = is_sync_kiocb(io->iocb);
01e9d11a
MP
561 int left;
562
563 spin_lock(&io->lock);
564 if (err)
565 io->err = io->err ? : err;
566 else if (pos >= 0 && (io->bytes < 0 || pos < io->bytes))
567 io->bytes = pos;
568
569 left = --io->reqs;
9d5722b7
CH
570 if (!left && is_sync)
571 complete(io->done);
01e9d11a
MP
572 spin_unlock(&io->lock);
573
9d5722b7
CH
574 if (!left && !is_sync) {
575 ssize_t res = fuse_get_res_by_io(io);
01e9d11a 576
9d5722b7
CH
577 if (res >= 0) {
578 struct inode *inode = file_inode(io->iocb->ki_filp);
579 struct fuse_conn *fc = get_fuse_conn(inode);
580 struct fuse_inode *fi = get_fuse_inode(inode);
01e9d11a 581
9d5722b7
CH
582 spin_lock(&fc->lock);
583 fi->attr_version = ++fc->attr_version;
584 spin_unlock(&fc->lock);
01e9d11a
MP
585 }
586
04b2fa9f 587 io->iocb->ki_complete(io->iocb, res, 0);
01e9d11a
MP
588 kfree(io);
589 }
590}
591
592static void fuse_aio_complete_req(struct fuse_conn *fc, struct fuse_req *req)
593{
594 struct fuse_io_priv *io = req->io;
595 ssize_t pos = -1;
596
597 fuse_release_user_pages(req, !io->write);
598
599 if (io->write) {
600 if (req->misc.write.in.size != req->misc.write.out.size)
601 pos = req->misc.write.in.offset - io->offset +
602 req->misc.write.out.size;
603 } else {
604 if (req->misc.read.in.size != req->out.args[0].size)
605 pos = req->misc.read.in.offset - io->offset +
606 req->out.args[0].size;
607 }
608
609 fuse_aio_complete(io, req->out.h.error, pos);
610}
611
612static size_t fuse_async_req_send(struct fuse_conn *fc, struct fuse_req *req,
613 size_t num_bytes, struct fuse_io_priv *io)
614{
615 spin_lock(&io->lock);
616 io->size += num_bytes;
617 io->reqs++;
618 spin_unlock(&io->lock);
619
620 req->io = io;
621 req->end = fuse_aio_complete_req;
622
36cf66ed 623 __fuse_get_request(req);
01e9d11a
MP
624 fuse_request_send_background(fc, req);
625
626 return num_bytes;
627}
628
36cf66ed 629static size_t fuse_send_read(struct fuse_req *req, struct fuse_io_priv *io,
2106cb18 630 loff_t pos, size_t count, fl_owner_t owner)
04730fef 631{
36cf66ed 632 struct file *file = io->file;
2106cb18
MS
633 struct fuse_file *ff = file->private_data;
634 struct fuse_conn *fc = ff->fc;
f3332114 635
2106cb18 636 fuse_read_fill(req, file, pos, count, FUSE_READ);
f3332114 637 if (owner != NULL) {
5c5c5e51 638 struct fuse_read_in *inarg = &req->misc.read.in;
f3332114
MS
639
640 inarg->read_flags |= FUSE_READ_LOCKOWNER;
641 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
642 }
36cf66ed
MP
643
644 if (io->async)
645 return fuse_async_req_send(fc, req, count, io);
646
b93f858a 647 fuse_request_send(fc, req);
361b1eb5 648 return req->out.args[0].size;
04730fef
MS
649}
650
5c5c5e51
MS
651static void fuse_read_update_size(struct inode *inode, loff_t size,
652 u64 attr_ver)
653{
654 struct fuse_conn *fc = get_fuse_conn(inode);
655 struct fuse_inode *fi = get_fuse_inode(inode);
656
657 spin_lock(&fc->lock);
06a7c3c2
MP
658 if (attr_ver == fi->attr_version && size < inode->i_size &&
659 !test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
5c5c5e51
MS
660 fi->attr_version = ++fc->attr_version;
661 i_size_write(inode, size);
662 }
663 spin_unlock(&fc->lock);
664}
665
a92adc82
PE
666static void fuse_short_read(struct fuse_req *req, struct inode *inode,
667 u64 attr_ver)
668{
669 size_t num_read = req->out.args[0].size;
8373200b
PE
670 struct fuse_conn *fc = get_fuse_conn(inode);
671
672 if (fc->writeback_cache) {
673 /*
674 * A hole in a file. Some data after the hole are in page cache,
675 * but have not reached the client fs yet. So, the hole is not
676 * present there.
677 */
678 int i;
679 int start_idx = num_read >> PAGE_CACHE_SHIFT;
680 size_t off = num_read & (PAGE_CACHE_SIZE - 1);
a92adc82 681
8373200b
PE
682 for (i = start_idx; i < req->num_pages; i++) {
683 zero_user_segment(req->pages[i], off, PAGE_CACHE_SIZE);
684 off = 0;
685 }
686 } else {
687 loff_t pos = page_offset(req->pages[0]) + num_read;
688 fuse_read_update_size(inode, pos, attr_ver);
689 }
a92adc82
PE
690}
691
482fce55 692static int fuse_do_readpage(struct file *file, struct page *page)
b6aeaded 693{
36cf66ed 694 struct fuse_io_priv io = { .async = 0, .file = file };
b6aeaded
MS
695 struct inode *inode = page->mapping->host;
696 struct fuse_conn *fc = get_fuse_conn(inode);
248d86e8 697 struct fuse_req *req;
5c5c5e51
MS
698 size_t num_read;
699 loff_t pos = page_offset(page);
700 size_t count = PAGE_CACHE_SIZE;
701 u64 attr_ver;
248d86e8
MS
702 int err;
703
3be5a52b 704 /*
25985edc 705 * Page writeback can extend beyond the lifetime of the
3be5a52b
MS
706 * page-cache page, so make sure we read a properly synced
707 * page.
708 */
709 fuse_wait_on_page_writeback(inode, page->index);
710
b111c8c0 711 req = fuse_get_req(fc, 1);
ce1d5a49 712 if (IS_ERR(req))
482fce55 713 return PTR_ERR(req);
b6aeaded 714
5c5c5e51
MS
715 attr_ver = fuse_get_attr_version(fc);
716
b6aeaded 717 req->out.page_zeroing = 1;
f4975c67 718 req->out.argpages = 1;
b6aeaded
MS
719 req->num_pages = 1;
720 req->pages[0] = page;
85f40aec 721 req->page_descs[0].length = count;
36cf66ed 722 num_read = fuse_send_read(req, &io, pos, count, NULL);
b6aeaded 723 err = req->out.h.error;
5c5c5e51
MS
724
725 if (!err) {
726 /*
727 * Short read means EOF. If file size is larger, truncate it
728 */
729 if (num_read < count)
a92adc82 730 fuse_short_read(req, inode, attr_ver);
5c5c5e51 731
b6aeaded 732 SetPageUptodate(page);
5c5c5e51
MS
733 }
734
a92adc82 735 fuse_put_request(fc, req);
482fce55
MP
736
737 return err;
738}
739
740static int fuse_readpage(struct file *file, struct page *page)
741{
742 struct inode *inode = page->mapping->host;
743 int err;
744
745 err = -EIO;
746 if (is_bad_inode(inode))
747 goto out;
748
749 err = fuse_do_readpage(file, page);
451418fc 750 fuse_invalidate_atime(inode);
b6aeaded
MS
751 out:
752 unlock_page(page);
753 return err;
754}
755
c1aa96a5 756static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
db50b96c 757{
c1aa96a5 758 int i;
5c5c5e51
MS
759 size_t count = req->misc.read.in.size;
760 size_t num_read = req->out.args[0].size;
ce534fb0 761 struct address_space *mapping = NULL;
c1aa96a5 762
ce534fb0
MS
763 for (i = 0; mapping == NULL && i < req->num_pages; i++)
764 mapping = req->pages[i]->mapping;
5c5c5e51 765
ce534fb0
MS
766 if (mapping) {
767 struct inode *inode = mapping->host;
768
769 /*
770 * Short read means EOF. If file size is larger, truncate it
771 */
a92adc82
PE
772 if (!req->out.h.error && num_read < count)
773 fuse_short_read(req, inode, req->misc.read.attr_ver);
ce534fb0 774
451418fc 775 fuse_invalidate_atime(inode);
ce534fb0 776 }
c1aa96a5 777
db50b96c
MS
778 for (i = 0; i < req->num_pages; i++) {
779 struct page *page = req->pages[i];
780 if (!req->out.h.error)
781 SetPageUptodate(page);
c1aa96a5
MS
782 else
783 SetPageError(page);
db50b96c 784 unlock_page(page);
b5dd3285 785 page_cache_release(page);
db50b96c 786 }
c756e0a4 787 if (req->ff)
5a18ec17 788 fuse_file_put(req->ff, false);
c1aa96a5
MS
789}
790
2106cb18 791static void fuse_send_readpages(struct fuse_req *req, struct file *file)
c1aa96a5 792{
2106cb18
MS
793 struct fuse_file *ff = file->private_data;
794 struct fuse_conn *fc = ff->fc;
c1aa96a5
MS
795 loff_t pos = page_offset(req->pages[0]);
796 size_t count = req->num_pages << PAGE_CACHE_SHIFT;
f4975c67
MS
797
798 req->out.argpages = 1;
c1aa96a5 799 req->out.page_zeroing = 1;
ce534fb0 800 req->out.page_replace = 1;
2106cb18 801 fuse_read_fill(req, file, pos, count, FUSE_READ);
5c5c5e51 802 req->misc.read.attr_ver = fuse_get_attr_version(fc);
9cd68455 803 if (fc->async_read) {
c756e0a4 804 req->ff = fuse_file_get(ff);
9cd68455 805 req->end = fuse_readpages_end;
b93f858a 806 fuse_request_send_background(fc, req);
9cd68455 807 } else {
b93f858a 808 fuse_request_send(fc, req);
9cd68455 809 fuse_readpages_end(fc, req);
e9bb09dd 810 fuse_put_request(fc, req);
9cd68455 811 }
db50b96c
MS
812}
813
c756e0a4 814struct fuse_fill_data {
db50b96c 815 struct fuse_req *req;
a6643094 816 struct file *file;
db50b96c 817 struct inode *inode;
f8dbdf81 818 unsigned nr_pages;
db50b96c
MS
819};
820
821static int fuse_readpages_fill(void *_data, struct page *page)
822{
c756e0a4 823 struct fuse_fill_data *data = _data;
db50b96c
MS
824 struct fuse_req *req = data->req;
825 struct inode *inode = data->inode;
826 struct fuse_conn *fc = get_fuse_conn(inode);
827
3be5a52b
MS
828 fuse_wait_on_page_writeback(inode, page->index);
829
db50b96c
MS
830 if (req->num_pages &&
831 (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
832 (req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_read ||
833 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
f8dbdf81
MP
834 int nr_alloc = min_t(unsigned, data->nr_pages,
835 FUSE_MAX_PAGES_PER_REQ);
2106cb18 836 fuse_send_readpages(req, data->file);
8b41e671
MP
837 if (fc->async_read)
838 req = fuse_get_req_for_background(fc, nr_alloc);
839 else
840 req = fuse_get_req(fc, nr_alloc);
841
842 data->req = req;
ce1d5a49 843 if (IS_ERR(req)) {
db50b96c 844 unlock_page(page);
ce1d5a49 845 return PTR_ERR(req);
db50b96c 846 }
db50b96c 847 }
f8dbdf81
MP
848
849 if (WARN_ON(req->num_pages >= req->max_pages)) {
850 fuse_put_request(fc, req);
851 return -EIO;
852 }
853
b5dd3285 854 page_cache_get(page);
db50b96c 855 req->pages[req->num_pages] = page;
85f40aec 856 req->page_descs[req->num_pages].length = PAGE_SIZE;
1729a16c 857 req->num_pages++;
f8dbdf81 858 data->nr_pages--;
db50b96c
MS
859 return 0;
860}
861
862static int fuse_readpages(struct file *file, struct address_space *mapping,
863 struct list_head *pages, unsigned nr_pages)
864{
865 struct inode *inode = mapping->host;
866 struct fuse_conn *fc = get_fuse_conn(inode);
c756e0a4 867 struct fuse_fill_data data;
db50b96c 868 int err;
f8dbdf81 869 int nr_alloc = min_t(unsigned, nr_pages, FUSE_MAX_PAGES_PER_REQ);
248d86e8 870
1d7ea732 871 err = -EIO;
248d86e8 872 if (is_bad_inode(inode))
2e990021 873 goto out;
248d86e8 874
a6643094 875 data.file = file;
db50b96c 876 data.inode = inode;
8b41e671
MP
877 if (fc->async_read)
878 data.req = fuse_get_req_for_background(fc, nr_alloc);
879 else
880 data.req = fuse_get_req(fc, nr_alloc);
f8dbdf81 881 data.nr_pages = nr_pages;
1d7ea732 882 err = PTR_ERR(data.req);
ce1d5a49 883 if (IS_ERR(data.req))
2e990021 884 goto out;
db50b96c
MS
885
886 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
d3406ffa
MS
887 if (!err) {
888 if (data.req->num_pages)
2106cb18 889 fuse_send_readpages(data.req, file);
d3406ffa
MS
890 else
891 fuse_put_request(fc, data.req);
892 }
2e990021 893out:
1d7ea732 894 return err;
db50b96c
MS
895}
896
37c20f16 897static ssize_t fuse_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
bcb4be80
MS
898{
899 struct inode *inode = iocb->ki_filp->f_mapping->host;
a8894274 900 struct fuse_conn *fc = get_fuse_conn(inode);
bcb4be80 901
a8894274
BF
902 /*
903 * In auto invalidate mode, always update attributes on read.
904 * Otherwise, only update if we attempt to read past EOF (to ensure
905 * i_size is up to date).
906 */
907 if (fc->auto_inval_data ||
37c20f16 908 (iocb->ki_pos + iov_iter_count(to) > i_size_read(inode))) {
bcb4be80 909 int err;
bcb4be80
MS
910 err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
911 if (err)
912 return err;
913 }
914
37c20f16 915 return generic_file_read_iter(iocb, to);
bcb4be80
MS
916}
917
2d698b07 918static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
2106cb18 919 loff_t pos, size_t count)
b6aeaded 920{
b25e82e5
MS
921 struct fuse_write_in *inarg = &req->misc.write.in;
922 struct fuse_write_out *outarg = &req->misc.write.out;
b6aeaded 923
b25e82e5
MS
924 inarg->fh = ff->fh;
925 inarg->offset = pos;
926 inarg->size = count;
b6aeaded 927 req->in.h.opcode = FUSE_WRITE;
2106cb18 928 req->in.h.nodeid = ff->nodeid;
b6aeaded 929 req->in.numargs = 2;
2106cb18 930 if (ff->fc->minor < 9)
f3332114
MS
931 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
932 else
933 req->in.args[0].size = sizeof(struct fuse_write_in);
b25e82e5 934 req->in.args[0].value = inarg;
b6aeaded
MS
935 req->in.args[1].size = count;
936 req->out.numargs = 1;
937 req->out.args[0].size = sizeof(struct fuse_write_out);
b25e82e5
MS
938 req->out.args[0].value = outarg;
939}
940
36cf66ed 941static size_t fuse_send_write(struct fuse_req *req, struct fuse_io_priv *io,
2106cb18 942 loff_t pos, size_t count, fl_owner_t owner)
b25e82e5 943{
36cf66ed 944 struct file *file = io->file;
2106cb18
MS
945 struct fuse_file *ff = file->private_data;
946 struct fuse_conn *fc = ff->fc;
2d698b07
MS
947 struct fuse_write_in *inarg = &req->misc.write.in;
948
2106cb18 949 fuse_write_fill(req, ff, pos, count);
2d698b07 950 inarg->flags = file->f_flags;
f3332114 951 if (owner != NULL) {
f3332114
MS
952 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
953 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
954 }
36cf66ed
MP
955
956 if (io->async)
957 return fuse_async_req_send(fc, req, count, io);
958
b93f858a 959 fuse_request_send(fc, req);
b25e82e5 960 return req->misc.write.out.size;
b6aeaded
MS
961}
962
b0aa7606 963bool fuse_write_update_size(struct inode *inode, loff_t pos)
854512ec
MS
964{
965 struct fuse_conn *fc = get_fuse_conn(inode);
966 struct fuse_inode *fi = get_fuse_inode(inode);
b0aa7606 967 bool ret = false;
854512ec
MS
968
969 spin_lock(&fc->lock);
970 fi->attr_version = ++fc->attr_version;
b0aa7606 971 if (pos > inode->i_size) {
854512ec 972 i_size_write(inode, pos);
b0aa7606
MP
973 ret = true;
974 }
854512ec 975 spin_unlock(&fc->lock);
b0aa7606
MP
976
977 return ret;
854512ec
MS
978}
979
ea9b9907
NP
980static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
981 struct inode *inode, loff_t pos,
982 size_t count)
983{
984 size_t res;
985 unsigned offset;
986 unsigned i;
36cf66ed 987 struct fuse_io_priv io = { .async = 0, .file = file };
ea9b9907
NP
988
989 for (i = 0; i < req->num_pages; i++)
990 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
991
36cf66ed 992 res = fuse_send_write(req, &io, pos, count, NULL);
ea9b9907 993
b2430d75 994 offset = req->page_descs[0].offset;
ea9b9907
NP
995 count = res;
996 for (i = 0; i < req->num_pages; i++) {
997 struct page *page = req->pages[i];
998
999 if (!req->out.h.error && !offset && count >= PAGE_CACHE_SIZE)
1000 SetPageUptodate(page);
1001
1002 if (count > PAGE_CACHE_SIZE - offset)
1003 count -= PAGE_CACHE_SIZE - offset;
1004 else
1005 count = 0;
1006 offset = 0;
1007
1008 unlock_page(page);
1009 page_cache_release(page);
1010 }
1011
1012 return res;
1013}
1014
1015static ssize_t fuse_fill_write_pages(struct fuse_req *req,
1016 struct address_space *mapping,
1017 struct iov_iter *ii, loff_t pos)
1018{
1019 struct fuse_conn *fc = get_fuse_conn(mapping->host);
1020 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
1021 size_t count = 0;
1022 int err;
1023
f4975c67 1024 req->in.argpages = 1;
b2430d75 1025 req->page_descs[0].offset = offset;
ea9b9907
NP
1026
1027 do {
1028 size_t tmp;
1029 struct page *page;
1030 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1031 size_t bytes = min_t(size_t, PAGE_CACHE_SIZE - offset,
1032 iov_iter_count(ii));
1033
1034 bytes = min_t(size_t, bytes, fc->max_write - count);
1035
1036 again:
1037 err = -EFAULT;
1038 if (iov_iter_fault_in_readable(ii, bytes))
1039 break;
1040
1041 err = -ENOMEM;
54566b2c 1042 page = grab_cache_page_write_begin(mapping, index, 0);
ea9b9907
NP
1043 if (!page)
1044 break;
1045
931e80e4 1046 if (mapping_writably_mapped(mapping))
1047 flush_dcache_page(page);
1048
ea9b9907 1049 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
ea9b9907
NP
1050 flush_dcache_page(page);
1051
1052 if (!tmp) {
1053 unlock_page(page);
1054 page_cache_release(page);
1055 bytes = min(bytes, iov_iter_single_seg_count(ii));
1056 goto again;
1057 }
1058
1059 err = 0;
1060 req->pages[req->num_pages] = page;
85f40aec 1061 req->page_descs[req->num_pages].length = tmp;
ea9b9907
NP
1062 req->num_pages++;
1063
1064 iov_iter_advance(ii, tmp);
1065 count += tmp;
1066 pos += tmp;
1067 offset += tmp;
1068 if (offset == PAGE_CACHE_SIZE)
1069 offset = 0;
1070
78bb6cb9
MS
1071 if (!fc->big_writes)
1072 break;
ea9b9907 1073 } while (iov_iter_count(ii) && count < fc->max_write &&
d07f09f5 1074 req->num_pages < req->max_pages && offset == 0);
ea9b9907
NP
1075
1076 return count > 0 ? count : err;
1077}
1078
d07f09f5
MP
1079static inline unsigned fuse_wr_pages(loff_t pos, size_t len)
1080{
1081 return min_t(unsigned,
1082 ((pos + len - 1) >> PAGE_CACHE_SHIFT) -
1083 (pos >> PAGE_CACHE_SHIFT) + 1,
1084 FUSE_MAX_PAGES_PER_REQ);
1085}
1086
ea9b9907
NP
1087static ssize_t fuse_perform_write(struct file *file,
1088 struct address_space *mapping,
1089 struct iov_iter *ii, loff_t pos)
1090{
1091 struct inode *inode = mapping->host;
1092 struct fuse_conn *fc = get_fuse_conn(inode);
06a7c3c2 1093 struct fuse_inode *fi = get_fuse_inode(inode);
ea9b9907
NP
1094 int err = 0;
1095 ssize_t res = 0;
1096
1097 if (is_bad_inode(inode))
1098 return -EIO;
1099
06a7c3c2
MP
1100 if (inode->i_size < pos + iov_iter_count(ii))
1101 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1102
ea9b9907
NP
1103 do {
1104 struct fuse_req *req;
1105 ssize_t count;
d07f09f5 1106 unsigned nr_pages = fuse_wr_pages(pos, iov_iter_count(ii));
ea9b9907 1107
d07f09f5 1108 req = fuse_get_req(fc, nr_pages);
ea9b9907
NP
1109 if (IS_ERR(req)) {
1110 err = PTR_ERR(req);
1111 break;
1112 }
1113
1114 count = fuse_fill_write_pages(req, mapping, ii, pos);
1115 if (count <= 0) {
1116 err = count;
1117 } else {
1118 size_t num_written;
1119
1120 num_written = fuse_send_write_pages(req, file, inode,
1121 pos, count);
1122 err = req->out.h.error;
1123 if (!err) {
1124 res += num_written;
1125 pos += num_written;
1126
1127 /* break out of the loop on short write */
1128 if (num_written != count)
1129 err = -EIO;
1130 }
1131 }
1132 fuse_put_request(fc, req);
1133 } while (!err && iov_iter_count(ii));
1134
1135 if (res > 0)
1136 fuse_write_update_size(inode, pos);
1137
06a7c3c2 1138 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
ea9b9907
NP
1139 fuse_invalidate_attr(inode);
1140
1141 return res > 0 ? res : err;
1142}
1143
84c3d55c 1144static ssize_t fuse_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
ea9b9907
NP
1145{
1146 struct file *file = iocb->ki_filp;
1147 struct address_space *mapping = file->f_mapping;
84c3d55c 1148 size_t count = iov_iter_count(from);
ea9b9907 1149 ssize_t written = 0;
4273b793 1150 ssize_t written_buffered = 0;
ea9b9907
NP
1151 struct inode *inode = mapping->host;
1152 ssize_t err;
4273b793 1153 loff_t endbyte = 0;
84c3d55c 1154 loff_t pos = iocb->ki_pos;
ea9b9907 1155
4d99ff8f
PE
1156 if (get_fuse_conn(inode)->writeback_cache) {
1157 /* Update size (EOF optimization) and mode (SUID clearing) */
1158 err = fuse_update_attributes(mapping->host, NULL, file, NULL);
1159 if (err)
1160 return err;
1161
84c3d55c 1162 return generic_file_write_iter(iocb, from);
4d99ff8f
PE
1163 }
1164
ea9b9907 1165 mutex_lock(&inode->i_mutex);
ea9b9907
NP
1166
1167 /* We can write back this queue in page reclaim */
de1414a6 1168 current->backing_dev_info = inode_to_bdi(inode);
ea9b9907
NP
1169
1170 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1171 if (err)
1172 goto out;
1173
1174 if (count == 0)
1175 goto out;
1176
84c3d55c 1177 iov_iter_truncate(from, count);
2f1936b8 1178 err = file_remove_suid(file);
ea9b9907
NP
1179 if (err)
1180 goto out;
1181
c3b2da31
JB
1182 err = file_update_time(file);
1183 if (err)
1184 goto out;
ea9b9907 1185
4273b793 1186 if (file->f_flags & O_DIRECT) {
84c3d55c
AV
1187 written = generic_file_direct_write(iocb, from, pos);
1188 if (written < 0 || !iov_iter_count(from))
4273b793
AA
1189 goto out;
1190
1191 pos += written;
ea9b9907 1192
84c3d55c 1193 written_buffered = fuse_perform_write(file, mapping, from, pos);
4273b793
AA
1194 if (written_buffered < 0) {
1195 err = written_buffered;
1196 goto out;
1197 }
1198 endbyte = pos + written_buffered - 1;
1199
1200 err = filemap_write_and_wait_range(file->f_mapping, pos,
1201 endbyte);
1202 if (err)
1203 goto out;
1204
1205 invalidate_mapping_pages(file->f_mapping,
1206 pos >> PAGE_CACHE_SHIFT,
1207 endbyte >> PAGE_CACHE_SHIFT);
1208
1209 written += written_buffered;
1210 iocb->ki_pos = pos + written_buffered;
1211 } else {
84c3d55c 1212 written = fuse_perform_write(file, mapping, from, pos);
4273b793
AA
1213 if (written >= 0)
1214 iocb->ki_pos = pos + written;
1215 }
ea9b9907
NP
1216out:
1217 current->backing_dev_info = NULL;
1218 mutex_unlock(&inode->i_mutex);
1219
1220 return written ? written : err;
1221}
1222
7c190c8b
MP
1223static inline void fuse_page_descs_length_init(struct fuse_req *req,
1224 unsigned index, unsigned nr_pages)
85f40aec
MP
1225{
1226 int i;
1227
7c190c8b 1228 for (i = index; i < index + nr_pages; i++)
85f40aec
MP
1229 req->page_descs[i].length = PAGE_SIZE -
1230 req->page_descs[i].offset;
1231}
1232
7c190c8b
MP
1233static inline unsigned long fuse_get_user_addr(const struct iov_iter *ii)
1234{
1235 return (unsigned long)ii->iov->iov_base + ii->iov_offset;
1236}
1237
1238static inline size_t fuse_get_frag_size(const struct iov_iter *ii,
1239 size_t max_size)
1240{
1241 return min(iov_iter_single_seg_count(ii), max_size);
1242}
1243
b98d023a 1244static int fuse_get_user_pages(struct fuse_req *req, struct iov_iter *ii,
ce60a2f1 1245 size_t *nbytesp, int write)
413ef8cb 1246{
7c190c8b 1247 size_t nbytes = 0; /* # bytes already packed in req */
b98d023a 1248
f4975c67 1249 /* Special case for kernel I/O: can copy directly into the buffer */
62a8067a 1250 if (ii->type & ITER_KVEC) {
7c190c8b
MP
1251 unsigned long user_addr = fuse_get_user_addr(ii);
1252 size_t frag_size = fuse_get_frag_size(ii, *nbytesp);
1253
f4975c67
MS
1254 if (write)
1255 req->in.args[1].value = (void *) user_addr;
1256 else
1257 req->out.args[0].value = (void *) user_addr;
1258
b98d023a
MP
1259 iov_iter_advance(ii, frag_size);
1260 *nbytesp = frag_size;
f4975c67
MS
1261 return 0;
1262 }
413ef8cb 1263
5565a9d8 1264 while (nbytes < *nbytesp && req->num_pages < req->max_pages) {
7c190c8b 1265 unsigned npages;
f67da30c 1266 size_t start;
c9c37e2e
AV
1267 ssize_t ret = iov_iter_get_pages(ii,
1268 &req->pages[req->num_pages],
2c80929c 1269 *nbytesp - nbytes,
c7f3888a
AV
1270 req->max_pages - req->num_pages,
1271 &start);
7c190c8b
MP
1272 if (ret < 0)
1273 return ret;
1274
c9c37e2e
AV
1275 iov_iter_advance(ii, ret);
1276 nbytes += ret;
7c190c8b 1277
c9c37e2e
AV
1278 ret += start;
1279 npages = (ret + PAGE_SIZE - 1) / PAGE_SIZE;
7c190c8b 1280
c9c37e2e 1281 req->page_descs[req->num_pages].offset = start;
7c190c8b
MP
1282 fuse_page_descs_length_init(req, req->num_pages, npages);
1283
1284 req->num_pages += npages;
1285 req->page_descs[req->num_pages - 1].length -=
c9c37e2e 1286 (PAGE_SIZE - ret) & (PAGE_SIZE - 1);
7c190c8b 1287 }
f4975c67
MS
1288
1289 if (write)
1290 req->in.argpages = 1;
1291 else
1292 req->out.argpages = 1;
1293
7c190c8b 1294 *nbytesp = nbytes;
f4975c67 1295
413ef8cb
MS
1296 return 0;
1297}
1298
5565a9d8
MP
1299static inline int fuse_iter_npages(const struct iov_iter *ii_p)
1300{
f67da30c 1301 return iov_iter_npages(ii_p, FUSE_MAX_PAGES_PER_REQ);
5565a9d8
MP
1302}
1303
d22a943f
AV
1304ssize_t fuse_direct_io(struct fuse_io_priv *io, struct iov_iter *iter,
1305 loff_t *ppos, int flags)
413ef8cb 1306{
ea8cd333
PE
1307 int write = flags & FUSE_DIO_WRITE;
1308 int cuse = flags & FUSE_DIO_CUSE;
36cf66ed 1309 struct file *file = io->file;
ea8cd333 1310 struct inode *inode = file->f_mapping->host;
2106cb18
MS
1311 struct fuse_file *ff = file->private_data;
1312 struct fuse_conn *fc = ff->fc;
413ef8cb
MS
1313 size_t nmax = write ? fc->max_write : fc->max_read;
1314 loff_t pos = *ppos;
d22a943f 1315 size_t count = iov_iter_count(iter);
ea8cd333
PE
1316 pgoff_t idx_from = pos >> PAGE_CACHE_SHIFT;
1317 pgoff_t idx_to = (pos + count - 1) >> PAGE_CACHE_SHIFT;
413ef8cb 1318 ssize_t res = 0;
248d86e8
MS
1319 struct fuse_req *req;
1320
de82b923 1321 if (io->async)
d22a943f 1322 req = fuse_get_req_for_background(fc, fuse_iter_npages(iter));
de82b923 1323 else
d22a943f 1324 req = fuse_get_req(fc, fuse_iter_npages(iter));
ce1d5a49
MS
1325 if (IS_ERR(req))
1326 return PTR_ERR(req);
413ef8cb 1327
ea8cd333
PE
1328 if (!cuse && fuse_range_is_writeback(inode, idx_from, idx_to)) {
1329 if (!write)
1330 mutex_lock(&inode->i_mutex);
1331 fuse_sync_writes(inode);
1332 if (!write)
1333 mutex_unlock(&inode->i_mutex);
1334 }
1335
413ef8cb 1336 while (count) {
413ef8cb 1337 size_t nres;
2106cb18 1338 fl_owner_t owner = current->files;
f4975c67 1339 size_t nbytes = min(count, nmax);
d22a943f 1340 int err = fuse_get_user_pages(req, iter, &nbytes, write);
413ef8cb
MS
1341 if (err) {
1342 res = err;
1343 break;
1344 }
f4975c67 1345
413ef8cb 1346 if (write)
36cf66ed 1347 nres = fuse_send_write(req, io, pos, nbytes, owner);
413ef8cb 1348 else
36cf66ed 1349 nres = fuse_send_read(req, io, pos, nbytes, owner);
2106cb18 1350
36cf66ed
MP
1351 if (!io->async)
1352 fuse_release_user_pages(req, !write);
413ef8cb
MS
1353 if (req->out.h.error) {
1354 if (!res)
1355 res = req->out.h.error;
1356 break;
1357 } else if (nres > nbytes) {
1358 res = -EIO;
1359 break;
1360 }
1361 count -= nres;
1362 res += nres;
1363 pos += nres;
413ef8cb
MS
1364 if (nres != nbytes)
1365 break;
56cf34ff
MS
1366 if (count) {
1367 fuse_put_request(fc, req);
de82b923
BF
1368 if (io->async)
1369 req = fuse_get_req_for_background(fc,
d22a943f 1370 fuse_iter_npages(iter));
de82b923 1371 else
d22a943f 1372 req = fuse_get_req(fc, fuse_iter_npages(iter));
56cf34ff
MS
1373 if (IS_ERR(req))
1374 break;
1375 }
413ef8cb 1376 }
f60311d5
AA
1377 if (!IS_ERR(req))
1378 fuse_put_request(fc, req);
d09cb9d7 1379 if (res > 0)
413ef8cb 1380 *ppos = pos;
413ef8cb
MS
1381
1382 return res;
1383}
08cbf542 1384EXPORT_SYMBOL_GPL(fuse_direct_io);
413ef8cb 1385
36cf66ed 1386static ssize_t __fuse_direct_read(struct fuse_io_priv *io,
d22a943f
AV
1387 struct iov_iter *iter,
1388 loff_t *ppos)
413ef8cb 1389{
d09cb9d7 1390 ssize_t res;
36cf66ed 1391 struct file *file = io->file;
6131ffaa 1392 struct inode *inode = file_inode(file);
d09cb9d7
MS
1393
1394 if (is_bad_inode(inode))
1395 return -EIO;
1396
d22a943f 1397 res = fuse_direct_io(io, iter, ppos, 0);
d09cb9d7
MS
1398
1399 fuse_invalidate_attr(inode);
1400
1401 return res;
413ef8cb
MS
1402}
1403
15316263 1404static ssize_t fuse_direct_read_iter(struct kiocb *iocb, struct iov_iter *to)
b98d023a 1405{
15316263
AV
1406 struct fuse_io_priv io = { .async = 0, .file = iocb->ki_filp };
1407 return __fuse_direct_read(&io, to, &iocb->ki_pos);
b98d023a
MP
1408}
1409
36cf66ed 1410static ssize_t __fuse_direct_write(struct fuse_io_priv *io,
d22a943f
AV
1411 struct iov_iter *iter,
1412 loff_t *ppos)
413ef8cb 1413{
36cf66ed 1414 struct file *file = io->file;
6131ffaa 1415 struct inode *inode = file_inode(file);
d22a943f 1416 size_t count = iov_iter_count(iter);
413ef8cb 1417 ssize_t res;
d09cb9d7 1418
d22a943f 1419
889f7848 1420 res = generic_write_checks(file, ppos, &count, 0);
d22a943f 1421 if (!res) {
0c949334 1422 iov_iter_truncate(iter, count);
d22a943f
AV
1423 res = fuse_direct_io(io, iter, ppos, FUSE_DIO_WRITE);
1424 }
d09cb9d7
MS
1425
1426 fuse_invalidate_attr(inode);
1427
413ef8cb
MS
1428 return res;
1429}
1430
15316263 1431static ssize_t fuse_direct_write_iter(struct kiocb *iocb, struct iov_iter *from)
4273b793 1432{
15316263 1433 struct file *file = iocb->ki_filp;
6131ffaa 1434 struct inode *inode = file_inode(file);
36cf66ed 1435 struct fuse_io_priv io = { .async = 0, .file = file };
15316263 1436 ssize_t res;
4273b793
AA
1437
1438 if (is_bad_inode(inode))
1439 return -EIO;
1440
1441 /* Don't allow parallel writes to the same file */
1442 mutex_lock(&inode->i_mutex);
15316263 1443 res = __fuse_direct_write(&io, from, &iocb->ki_pos);
bcba24cc 1444 if (res > 0)
15316263 1445 fuse_write_update_size(inode, iocb->ki_pos);
4273b793
AA
1446 mutex_unlock(&inode->i_mutex);
1447
1448 return res;
1449}
1450
3be5a52b 1451static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
b6aeaded 1452{
385b1268
PE
1453 int i;
1454
1455 for (i = 0; i < req->num_pages; i++)
1456 __free_page(req->pages[i]);
8b284dc4
MS
1457
1458 if (req->ff)
1459 fuse_file_put(req->ff, false);
3be5a52b
MS
1460}
1461
1462static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
1463{
1464 struct inode *inode = req->inode;
1465 struct fuse_inode *fi = get_fuse_inode(inode);
de1414a6 1466 struct backing_dev_info *bdi = inode_to_bdi(inode);
385b1268 1467 int i;
3be5a52b
MS
1468
1469 list_del(&req->writepages_entry);
385b1268
PE
1470 for (i = 0; i < req->num_pages; i++) {
1471 dec_bdi_stat(bdi, BDI_WRITEBACK);
1472 dec_zone_page_state(req->pages[i], NR_WRITEBACK_TEMP);
1473 bdi_writeout_inc(bdi);
1474 }
3be5a52b
MS
1475 wake_up(&fi->page_waitq);
1476}
1477
1478/* Called under fc->lock, may release and reacquire it */
6eaf4782
MP
1479static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req,
1480 loff_t size)
b9ca67b2
MS
1481__releases(fc->lock)
1482__acquires(fc->lock)
3be5a52b
MS
1483{
1484 struct fuse_inode *fi = get_fuse_inode(req->inode);
3be5a52b 1485 struct fuse_write_in *inarg = &req->misc.write.in;
385b1268 1486 __u64 data_size = req->num_pages * PAGE_CACHE_SIZE;
3be5a52b
MS
1487
1488 if (!fc->connected)
1489 goto out_free;
1490
385b1268
PE
1491 if (inarg->offset + data_size <= size) {
1492 inarg->size = data_size;
3be5a52b 1493 } else if (inarg->offset < size) {
385b1268 1494 inarg->size = size - inarg->offset;
3be5a52b
MS
1495 } else {
1496 /* Got truncated off completely */
1497 goto out_free;
b6aeaded 1498 }
3be5a52b
MS
1499
1500 req->in.args[1].size = inarg->size;
1501 fi->writectr++;
b93f858a 1502 fuse_request_send_background_locked(fc, req);
3be5a52b
MS
1503 return;
1504
1505 out_free:
1506 fuse_writepage_finish(fc, req);
1507 spin_unlock(&fc->lock);
1508 fuse_writepage_free(fc, req);
e9bb09dd 1509 fuse_put_request(fc, req);
3be5a52b 1510 spin_lock(&fc->lock);
b6aeaded
MS
1511}
1512
3be5a52b
MS
1513/*
1514 * If fi->writectr is positive (no truncate or fsync going on) send
1515 * all queued writepage requests.
1516 *
1517 * Called with fc->lock
1518 */
1519void fuse_flush_writepages(struct inode *inode)
b9ca67b2
MS
1520__releases(fc->lock)
1521__acquires(fc->lock)
b6aeaded 1522{
3be5a52b
MS
1523 struct fuse_conn *fc = get_fuse_conn(inode);
1524 struct fuse_inode *fi = get_fuse_inode(inode);
6eaf4782 1525 size_t crop = i_size_read(inode);
3be5a52b
MS
1526 struct fuse_req *req;
1527
1528 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1529 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1530 list_del_init(&req->list);
6eaf4782 1531 fuse_send_writepage(fc, req, crop);
3be5a52b
MS
1532 }
1533}
1534
1535static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1536{
1537 struct inode *inode = req->inode;
1538 struct fuse_inode *fi = get_fuse_inode(inode);
1539
1540 mapping_set_error(inode->i_mapping, req->out.h.error);
1541 spin_lock(&fc->lock);
8b284dc4 1542 while (req->misc.write.next) {
6eaf4782
MP
1543 struct fuse_conn *fc = get_fuse_conn(inode);
1544 struct fuse_write_in *inarg = &req->misc.write.in;
8b284dc4
MS
1545 struct fuse_req *next = req->misc.write.next;
1546 req->misc.write.next = next->misc.write.next;
1547 next->misc.write.next = NULL;
ce128de6 1548 next->ff = fuse_file_get(req->ff);
8b284dc4 1549 list_add(&next->writepages_entry, &fi->writepages);
6eaf4782
MP
1550
1551 /*
1552 * Skip fuse_flush_writepages() to make it easy to crop requests
1553 * based on primary request size.
1554 *
1555 * 1st case (trivial): there are no concurrent activities using
1556 * fuse_set/release_nowrite. Then we're on safe side because
1557 * fuse_flush_writepages() would call fuse_send_writepage()
1558 * anyway.
1559 *
1560 * 2nd case: someone called fuse_set_nowrite and it is waiting
1561 * now for completion of all in-flight requests. This happens
1562 * rarely and no more than once per page, so this should be
1563 * okay.
1564 *
1565 * 3rd case: someone (e.g. fuse_do_setattr()) is in the middle
1566 * of fuse_set_nowrite..fuse_release_nowrite section. The fact
1567 * that fuse_set_nowrite returned implies that all in-flight
1568 * requests were completed along with all of their secondary
1569 * requests. Further primary requests are blocked by negative
1570 * writectr. Hence there cannot be any in-flight requests and
1571 * no invocations of fuse_writepage_end() while we're in
1572 * fuse_set_nowrite..fuse_release_nowrite section.
1573 */
1574 fuse_send_writepage(fc, next, inarg->offset + inarg->size);
8b284dc4 1575 }
3be5a52b
MS
1576 fi->writectr--;
1577 fuse_writepage_finish(fc, req);
1578 spin_unlock(&fc->lock);
1579 fuse_writepage_free(fc, req);
1580}
1581
1e18bda8
MS
1582static struct fuse_file *__fuse_write_file_get(struct fuse_conn *fc,
1583 struct fuse_inode *fi)
adcadfa8 1584{
72523425 1585 struct fuse_file *ff = NULL;
adcadfa8
PE
1586
1587 spin_lock(&fc->lock);
1e18bda8 1588 if (!list_empty(&fi->write_files)) {
72523425
MS
1589 ff = list_entry(fi->write_files.next, struct fuse_file,
1590 write_entry);
1591 fuse_file_get(ff);
1592 }
adcadfa8
PE
1593 spin_unlock(&fc->lock);
1594
1595 return ff;
1596}
1597
1e18bda8
MS
1598static struct fuse_file *fuse_write_file_get(struct fuse_conn *fc,
1599 struct fuse_inode *fi)
1600{
1601 struct fuse_file *ff = __fuse_write_file_get(fc, fi);
1602 WARN_ON(!ff);
1603 return ff;
1604}
1605
1606int fuse_write_inode(struct inode *inode, struct writeback_control *wbc)
1607{
1608 struct fuse_conn *fc = get_fuse_conn(inode);
1609 struct fuse_inode *fi = get_fuse_inode(inode);
1610 struct fuse_file *ff;
1611 int err;
1612
1613 ff = __fuse_write_file_get(fc, fi);
ab9e13f7 1614 err = fuse_flush_times(inode, ff);
1e18bda8
MS
1615 if (ff)
1616 fuse_file_put(ff, 0);
1617
1618 return err;
1619}
1620
3be5a52b
MS
1621static int fuse_writepage_locked(struct page *page)
1622{
1623 struct address_space *mapping = page->mapping;
1624 struct inode *inode = mapping->host;
1625 struct fuse_conn *fc = get_fuse_conn(inode);
1626 struct fuse_inode *fi = get_fuse_inode(inode);
1627 struct fuse_req *req;
3be5a52b 1628 struct page *tmp_page;
72523425 1629 int error = -ENOMEM;
3be5a52b
MS
1630
1631 set_page_writeback(page);
1632
4250c066 1633 req = fuse_request_alloc_nofs(1);
3be5a52b
MS
1634 if (!req)
1635 goto err;
1636
8b41e671 1637 req->background = 1; /* writeback always goes to bg_queue */
3be5a52b
MS
1638 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1639 if (!tmp_page)
1640 goto err_free;
1641
72523425 1642 error = -EIO;
26d614df 1643 req->ff = fuse_write_file_get(fc, fi);
72523425 1644 if (!req->ff)
27f1b363 1645 goto err_nofile;
72523425 1646
adcadfa8 1647 fuse_write_fill(req, req->ff, page_offset(page), 0);
3be5a52b
MS
1648
1649 copy_highpage(tmp_page, page);
2d698b07 1650 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
8b284dc4 1651 req->misc.write.next = NULL;
f4975c67 1652 req->in.argpages = 1;
3be5a52b
MS
1653 req->num_pages = 1;
1654 req->pages[0] = tmp_page;
b2430d75 1655 req->page_descs[0].offset = 0;
85f40aec 1656 req->page_descs[0].length = PAGE_SIZE;
3be5a52b
MS
1657 req->end = fuse_writepage_end;
1658 req->inode = inode;
1659
de1414a6 1660 inc_bdi_stat(inode_to_bdi(inode), BDI_WRITEBACK);
3be5a52b 1661 inc_zone_page_state(tmp_page, NR_WRITEBACK_TEMP);
3be5a52b
MS
1662
1663 spin_lock(&fc->lock);
1664 list_add(&req->writepages_entry, &fi->writepages);
1665 list_add_tail(&req->list, &fi->queued_writes);
1666 fuse_flush_writepages(inode);
1667 spin_unlock(&fc->lock);
1668
4a4ac4eb
MP
1669 end_page_writeback(page);
1670
3be5a52b
MS
1671 return 0;
1672
27f1b363
MP
1673err_nofile:
1674 __free_page(tmp_page);
3be5a52b
MS
1675err_free:
1676 fuse_request_free(req);
1677err:
1678 end_page_writeback(page);
72523425 1679 return error;
3be5a52b
MS
1680}
1681
1682static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1683{
1684 int err;
1685
ff17be08
MS
1686 if (fuse_page_is_writeback(page->mapping->host, page->index)) {
1687 /*
1688 * ->writepages() should be called for sync() and friends. We
1689 * should only get here on direct reclaim and then we are
1690 * allowed to skip a page which is already in flight
1691 */
1692 WARN_ON(wbc->sync_mode == WB_SYNC_ALL);
1693
1694 redirty_page_for_writepage(wbc, page);
1695 return 0;
1696 }
1697
3be5a52b
MS
1698 err = fuse_writepage_locked(page);
1699 unlock_page(page);
1700
1701 return err;
1702}
1703
26d614df
PE
1704struct fuse_fill_wb_data {
1705 struct fuse_req *req;
1706 struct fuse_file *ff;
1707 struct inode *inode;
2d033eaa 1708 struct page **orig_pages;
26d614df
PE
1709};
1710
1711static void fuse_writepages_send(struct fuse_fill_wb_data *data)
1712{
1713 struct fuse_req *req = data->req;
1714 struct inode *inode = data->inode;
1715 struct fuse_conn *fc = get_fuse_conn(inode);
1716 struct fuse_inode *fi = get_fuse_inode(inode);
2d033eaa
MP
1717 int num_pages = req->num_pages;
1718 int i;
26d614df
PE
1719
1720 req->ff = fuse_file_get(data->ff);
1721 spin_lock(&fc->lock);
1722 list_add_tail(&req->list, &fi->queued_writes);
1723 fuse_flush_writepages(inode);
1724 spin_unlock(&fc->lock);
2d033eaa
MP
1725
1726 for (i = 0; i < num_pages; i++)
1727 end_page_writeback(data->orig_pages[i]);
26d614df
PE
1728}
1729
8b284dc4
MS
1730static bool fuse_writepage_in_flight(struct fuse_req *new_req,
1731 struct page *page)
1732{
1733 struct fuse_conn *fc = get_fuse_conn(new_req->inode);
1734 struct fuse_inode *fi = get_fuse_inode(new_req->inode);
1735 struct fuse_req *tmp;
1736 struct fuse_req *old_req;
1737 bool found = false;
1738 pgoff_t curr_index;
1739
1740 BUG_ON(new_req->num_pages != 0);
1741
1742 spin_lock(&fc->lock);
1743 list_del(&new_req->writepages_entry);
8b284dc4
MS
1744 list_for_each_entry(old_req, &fi->writepages, writepages_entry) {
1745 BUG_ON(old_req->inode != new_req->inode);
1746 curr_index = old_req->misc.write.in.offset >> PAGE_CACHE_SHIFT;
1747 if (curr_index <= page->index &&
1748 page->index < curr_index + old_req->num_pages) {
1749 found = true;
1750 break;
1751 }
1752 }
f6011081
MP
1753 if (!found) {
1754 list_add(&new_req->writepages_entry, &fi->writepages);
8b284dc4 1755 goto out_unlock;
f6011081 1756 }
8b284dc4 1757
f6011081 1758 new_req->num_pages = 1;
8b284dc4
MS
1759 for (tmp = old_req; tmp != NULL; tmp = tmp->misc.write.next) {
1760 BUG_ON(tmp->inode != new_req->inode);
1761 curr_index = tmp->misc.write.in.offset >> PAGE_CACHE_SHIFT;
1762 if (tmp->num_pages == 1 &&
1763 curr_index == page->index) {
1764 old_req = tmp;
1765 }
1766 }
1767
1768 if (old_req->num_pages == 1 && (old_req->state == FUSE_REQ_INIT ||
1769 old_req->state == FUSE_REQ_PENDING)) {
de1414a6 1770 struct backing_dev_info *bdi = inode_to_bdi(page->mapping->host);
41b6e41f 1771
8b284dc4
MS
1772 copy_highpage(old_req->pages[0], page);
1773 spin_unlock(&fc->lock);
1774
41b6e41f 1775 dec_bdi_stat(bdi, BDI_WRITEBACK);
8b284dc4 1776 dec_zone_page_state(page, NR_WRITEBACK_TEMP);
41b6e41f 1777 bdi_writeout_inc(bdi);
8b284dc4
MS
1778 fuse_writepage_free(fc, new_req);
1779 fuse_request_free(new_req);
1780 goto out;
1781 } else {
1782 new_req->misc.write.next = old_req->misc.write.next;
1783 old_req->misc.write.next = new_req;
1784 }
1785out_unlock:
1786 spin_unlock(&fc->lock);
1787out:
1788 return found;
1789}
1790
26d614df
PE
1791static int fuse_writepages_fill(struct page *page,
1792 struct writeback_control *wbc, void *_data)
1793{
1794 struct fuse_fill_wb_data *data = _data;
1795 struct fuse_req *req = data->req;
1796 struct inode *inode = data->inode;
1797 struct fuse_conn *fc = get_fuse_conn(inode);
1798 struct page *tmp_page;
8b284dc4 1799 bool is_writeback;
26d614df
PE
1800 int err;
1801
1802 if (!data->ff) {
1803 err = -EIO;
1804 data->ff = fuse_write_file_get(fc, get_fuse_inode(inode));
1805 if (!data->ff)
1806 goto out_unlock;
1807 }
1808
8b284dc4
MS
1809 /*
1810 * Being under writeback is unlikely but possible. For example direct
1811 * read to an mmaped fuse file will set the page dirty twice; once when
1812 * the pages are faulted with get_user_pages(), and then after the read
1813 * completed.
1814 */
1815 is_writeback = fuse_page_is_writeback(inode, page->index);
1816
1817 if (req && req->num_pages &&
1818 (is_writeback || req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
1819 (req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_write ||
1820 data->orig_pages[req->num_pages - 1]->index + 1 != page->index)) {
1821 fuse_writepages_send(data);
1822 data->req = NULL;
26d614df
PE
1823 }
1824 err = -ENOMEM;
1825 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1826 if (!tmp_page)
1827 goto out_unlock;
1828
1829 /*
1830 * The page must not be redirtied until the writeout is completed
1831 * (i.e. userspace has sent a reply to the write request). Otherwise
1832 * there could be more than one temporary page instance for each real
1833 * page.
1834 *
1835 * This is ensured by holding the page lock in page_mkwrite() while
1836 * checking fuse_page_is_writeback(). We already hold the page lock
1837 * since clear_page_dirty_for_io() and keep it held until we add the
1838 * request to the fi->writepages list and increment req->num_pages.
1839 * After this fuse_page_is_writeback() will indicate that the page is
1840 * under writeback, so we can release the page lock.
1841 */
1842 if (data->req == NULL) {
1843 struct fuse_inode *fi = get_fuse_inode(inode);
1844
1845 err = -ENOMEM;
1846 req = fuse_request_alloc_nofs(FUSE_MAX_PAGES_PER_REQ);
1847 if (!req) {
1848 __free_page(tmp_page);
1849 goto out_unlock;
1850 }
1851
1852 fuse_write_fill(req, data->ff, page_offset(page), 0);
1853 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
8b284dc4 1854 req->misc.write.next = NULL;
26d614df
PE
1855 req->in.argpages = 1;
1856 req->background = 1;
1857 req->num_pages = 0;
1858 req->end = fuse_writepage_end;
1859 req->inode = inode;
1860
1861 spin_lock(&fc->lock);
1862 list_add(&req->writepages_entry, &fi->writepages);
1863 spin_unlock(&fc->lock);
1864
1865 data->req = req;
1866 }
1867 set_page_writeback(page);
1868
1869 copy_highpage(tmp_page, page);
1870 req->pages[req->num_pages] = tmp_page;
1871 req->page_descs[req->num_pages].offset = 0;
1872 req->page_descs[req->num_pages].length = PAGE_SIZE;
1873
de1414a6 1874 inc_bdi_stat(inode_to_bdi(inode), BDI_WRITEBACK);
26d614df 1875 inc_zone_page_state(tmp_page, NR_WRITEBACK_TEMP);
8b284dc4
MS
1876
1877 err = 0;
1878 if (is_writeback && fuse_writepage_in_flight(req, page)) {
1879 end_page_writeback(page);
1880 data->req = NULL;
1881 goto out_unlock;
1882 }
2d033eaa 1883 data->orig_pages[req->num_pages] = page;
26d614df
PE
1884
1885 /*
1886 * Protected by fc->lock against concurrent access by
1887 * fuse_page_is_writeback().
1888 */
1889 spin_lock(&fc->lock);
1890 req->num_pages++;
1891 spin_unlock(&fc->lock);
1892
26d614df
PE
1893out_unlock:
1894 unlock_page(page);
1895
1896 return err;
1897}
1898
1899static int fuse_writepages(struct address_space *mapping,
1900 struct writeback_control *wbc)
1901{
1902 struct inode *inode = mapping->host;
1903 struct fuse_fill_wb_data data;
1904 int err;
1905
1906 err = -EIO;
1907 if (is_bad_inode(inode))
1908 goto out;
1909
1910 data.inode = inode;
1911 data.req = NULL;
1912 data.ff = NULL;
1913
2d033eaa 1914 err = -ENOMEM;
f2b3455e
FF
1915 data.orig_pages = kcalloc(FUSE_MAX_PAGES_PER_REQ,
1916 sizeof(struct page *),
2d033eaa
MP
1917 GFP_NOFS);
1918 if (!data.orig_pages)
1919 goto out;
1920
26d614df
PE
1921 err = write_cache_pages(mapping, wbc, fuse_writepages_fill, &data);
1922 if (data.req) {
1923 /* Ignore errors if we can write at least one page */
1924 BUG_ON(!data.req->num_pages);
1925 fuse_writepages_send(&data);
1926 err = 0;
1927 }
1928 if (data.ff)
1929 fuse_file_put(data.ff, false);
2d033eaa
MP
1930
1931 kfree(data.orig_pages);
26d614df
PE
1932out:
1933 return err;
1934}
1935
6b12c1b3
PE
1936/*
1937 * It's worthy to make sure that space is reserved on disk for the write,
1938 * but how to implement it without killing performance need more thinking.
1939 */
1940static int fuse_write_begin(struct file *file, struct address_space *mapping,
1941 loff_t pos, unsigned len, unsigned flags,
1942 struct page **pagep, void **fsdata)
1943{
1944 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
a455589f 1945 struct fuse_conn *fc = get_fuse_conn(file_inode(file));
6b12c1b3
PE
1946 struct page *page;
1947 loff_t fsize;
1948 int err = -ENOMEM;
1949
1950 WARN_ON(!fc->writeback_cache);
1951
1952 page = grab_cache_page_write_begin(mapping, index, flags);
1953 if (!page)
1954 goto error;
1955
1956 fuse_wait_on_page_writeback(mapping->host, page->index);
1957
1958 if (PageUptodate(page) || len == PAGE_CACHE_SIZE)
1959 goto success;
1960 /*
1961 * Check if the start this page comes after the end of file, in which
1962 * case the readpage can be optimized away.
1963 */
1964 fsize = i_size_read(mapping->host);
1965 if (fsize <= (pos & PAGE_CACHE_MASK)) {
1966 size_t off = pos & ~PAGE_CACHE_MASK;
1967 if (off)
1968 zero_user_segment(page, 0, off);
1969 goto success;
1970 }
1971 err = fuse_do_readpage(file, page);
1972 if (err)
1973 goto cleanup;
1974success:
1975 *pagep = page;
1976 return 0;
1977
1978cleanup:
1979 unlock_page(page);
1980 page_cache_release(page);
1981error:
1982 return err;
1983}
1984
1985static int fuse_write_end(struct file *file, struct address_space *mapping,
1986 loff_t pos, unsigned len, unsigned copied,
1987 struct page *page, void *fsdata)
1988{
1989 struct inode *inode = page->mapping->host;
1990
1991 if (!PageUptodate(page)) {
1992 /* Zero any unwritten bytes at the end of the page */
1993 size_t endoff = (pos + copied) & ~PAGE_CACHE_MASK;
1994 if (endoff)
1995 zero_user_segment(page, endoff, PAGE_CACHE_SIZE);
1996 SetPageUptodate(page);
1997 }
1998
1999 fuse_write_update_size(inode, pos + copied);
2000 set_page_dirty(page);
2001 unlock_page(page);
2002 page_cache_release(page);
2003
2004 return copied;
2005}
2006
3be5a52b
MS
2007static int fuse_launder_page(struct page *page)
2008{
2009 int err = 0;
2010 if (clear_page_dirty_for_io(page)) {
2011 struct inode *inode = page->mapping->host;
2012 err = fuse_writepage_locked(page);
2013 if (!err)
2014 fuse_wait_on_page_writeback(inode, page->index);
2015 }
2016 return err;
2017}
2018
2019/*
2020 * Write back dirty pages now, because there may not be any suitable
2021 * open files later
2022 */
2023static void fuse_vma_close(struct vm_area_struct *vma)
2024{
2025 filemap_write_and_wait(vma->vm_file->f_mapping);
2026}
2027
2028/*
2029 * Wait for writeback against this page to complete before allowing it
2030 * to be marked dirty again, and hence written back again, possibly
2031 * before the previous writepage completed.
2032 *
2033 * Block here, instead of in ->writepage(), so that the userspace fs
2034 * can only block processes actually operating on the filesystem.
2035 *
2036 * Otherwise unprivileged userspace fs would be able to block
2037 * unrelated:
2038 *
2039 * - page migration
2040 * - sync(2)
2041 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
2042 */
c2ec175c 2043static int fuse_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
3be5a52b 2044{
c2ec175c 2045 struct page *page = vmf->page;
cca24370
MS
2046 struct inode *inode = file_inode(vma->vm_file);
2047
2048 file_update_time(vma->vm_file);
2049 lock_page(page);
2050 if (page->mapping != inode->i_mapping) {
2051 unlock_page(page);
2052 return VM_FAULT_NOPAGE;
2053 }
3be5a52b
MS
2054
2055 fuse_wait_on_page_writeback(inode, page->index);
cca24370 2056 return VM_FAULT_LOCKED;
3be5a52b
MS
2057}
2058
f0f37e2f 2059static const struct vm_operations_struct fuse_file_vm_ops = {
3be5a52b
MS
2060 .close = fuse_vma_close,
2061 .fault = filemap_fault,
f1820361 2062 .map_pages = filemap_map_pages,
3be5a52b
MS
2063 .page_mkwrite = fuse_page_mkwrite,
2064};
2065
2066static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
2067{
650b22b9
PE
2068 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2069 fuse_link_write_file(file);
2070
3be5a52b
MS
2071 file_accessed(file);
2072 vma->vm_ops = &fuse_file_vm_ops;
b6aeaded
MS
2073 return 0;
2074}
2075
fc280c96
MS
2076static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
2077{
2078 /* Can't provide the coherency needed for MAP_SHARED */
2079 if (vma->vm_flags & VM_MAYSHARE)
2080 return -ENODEV;
2081
3121bfe7
MS
2082 invalidate_inode_pages2(file->f_mapping);
2083
fc280c96
MS
2084 return generic_file_mmap(file, vma);
2085}
2086
71421259
MS
2087static int convert_fuse_file_lock(const struct fuse_file_lock *ffl,
2088 struct file_lock *fl)
2089{
2090 switch (ffl->type) {
2091 case F_UNLCK:
2092 break;
2093
2094 case F_RDLCK:
2095 case F_WRLCK:
2096 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
2097 ffl->end < ffl->start)
2098 return -EIO;
2099
2100 fl->fl_start = ffl->start;
2101 fl->fl_end = ffl->end;
2102 fl->fl_pid = ffl->pid;
2103 break;
2104
2105 default:
2106 return -EIO;
2107 }
2108 fl->fl_type = ffl->type;
2109 return 0;
2110}
2111
7078187a 2112static void fuse_lk_fill(struct fuse_args *args, struct file *file,
a9ff4f87 2113 const struct file_lock *fl, int opcode, pid_t pid,
7078187a 2114 int flock, struct fuse_lk_in *inarg)
71421259 2115{
6131ffaa 2116 struct inode *inode = file_inode(file);
9c8ef561 2117 struct fuse_conn *fc = get_fuse_conn(inode);
71421259 2118 struct fuse_file *ff = file->private_data;
7078187a
MS
2119
2120 memset(inarg, 0, sizeof(*inarg));
2121 inarg->fh = ff->fh;
2122 inarg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
2123 inarg->lk.start = fl->fl_start;
2124 inarg->lk.end = fl->fl_end;
2125 inarg->lk.type = fl->fl_type;
2126 inarg->lk.pid = pid;
a9ff4f87 2127 if (flock)
7078187a
MS
2128 inarg->lk_flags |= FUSE_LK_FLOCK;
2129 args->in.h.opcode = opcode;
2130 args->in.h.nodeid = get_node_id(inode);
2131 args->in.numargs = 1;
2132 args->in.args[0].size = sizeof(*inarg);
2133 args->in.args[0].value = inarg;
71421259
MS
2134}
2135
2136static int fuse_getlk(struct file *file, struct file_lock *fl)
2137{
6131ffaa 2138 struct inode *inode = file_inode(file);
71421259 2139 struct fuse_conn *fc = get_fuse_conn(inode);
7078187a
MS
2140 FUSE_ARGS(args);
2141 struct fuse_lk_in inarg;
71421259
MS
2142 struct fuse_lk_out outarg;
2143 int err;
2144
7078187a
MS
2145 fuse_lk_fill(&args, file, fl, FUSE_GETLK, 0, 0, &inarg);
2146 args.out.numargs = 1;
2147 args.out.args[0].size = sizeof(outarg);
2148 args.out.args[0].value = &outarg;
2149 err = fuse_simple_request(fc, &args);
71421259
MS
2150 if (!err)
2151 err = convert_fuse_file_lock(&outarg.lk, fl);
2152
2153 return err;
2154}
2155
a9ff4f87 2156static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
71421259 2157{
6131ffaa 2158 struct inode *inode = file_inode(file);
71421259 2159 struct fuse_conn *fc = get_fuse_conn(inode);
7078187a
MS
2160 FUSE_ARGS(args);
2161 struct fuse_lk_in inarg;
71421259
MS
2162 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
2163 pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0;
2164 int err;
2165
8fb47a4f 2166 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
48e90761
MS
2167 /* NLM needs asynchronous locks, which we don't support yet */
2168 return -ENOLCK;
2169 }
2170
71421259
MS
2171 /* Unlock on close is handled by the flush method */
2172 if (fl->fl_flags & FL_CLOSE)
2173 return 0;
2174
7078187a
MS
2175 fuse_lk_fill(&args, file, fl, opcode, pid, flock, &inarg);
2176 err = fuse_simple_request(fc, &args);
71421259 2177
a4d27e75
MS
2178 /* locking is restartable */
2179 if (err == -EINTR)
2180 err = -ERESTARTSYS;
7078187a 2181
71421259
MS
2182 return err;
2183}
2184
2185static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
2186{
6131ffaa 2187 struct inode *inode = file_inode(file);
71421259
MS
2188 struct fuse_conn *fc = get_fuse_conn(inode);
2189 int err;
2190
48e90761
MS
2191 if (cmd == F_CANCELLK) {
2192 err = 0;
2193 } else if (cmd == F_GETLK) {
71421259 2194 if (fc->no_lock) {
9d6a8c5c 2195 posix_test_lock(file, fl);
71421259
MS
2196 err = 0;
2197 } else
2198 err = fuse_getlk(file, fl);
2199 } else {
2200 if (fc->no_lock)
48e90761 2201 err = posix_lock_file(file, fl, NULL);
71421259 2202 else
a9ff4f87 2203 err = fuse_setlk(file, fl, 0);
71421259
MS
2204 }
2205 return err;
2206}
2207
a9ff4f87
MS
2208static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
2209{
6131ffaa 2210 struct inode *inode = file_inode(file);
a9ff4f87
MS
2211 struct fuse_conn *fc = get_fuse_conn(inode);
2212 int err;
2213
37fb3a30 2214 if (fc->no_flock) {
a9ff4f87
MS
2215 err = flock_lock_file_wait(file, fl);
2216 } else {
37fb3a30
MS
2217 struct fuse_file *ff = file->private_data;
2218
a9ff4f87 2219 /* emulate flock with POSIX locks */
37fb3a30 2220 ff->flock = true;
a9ff4f87
MS
2221 err = fuse_setlk(file, fl, 1);
2222 }
2223
2224 return err;
2225}
2226
b2d2272f
MS
2227static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
2228{
2229 struct inode *inode = mapping->host;
2230 struct fuse_conn *fc = get_fuse_conn(inode);
7078187a 2231 FUSE_ARGS(args);
b2d2272f
MS
2232 struct fuse_bmap_in inarg;
2233 struct fuse_bmap_out outarg;
2234 int err;
2235
2236 if (!inode->i_sb->s_bdev || fc->no_bmap)
2237 return 0;
2238
b2d2272f
MS
2239 memset(&inarg, 0, sizeof(inarg));
2240 inarg.block = block;
2241 inarg.blocksize = inode->i_sb->s_blocksize;
7078187a
MS
2242 args.in.h.opcode = FUSE_BMAP;
2243 args.in.h.nodeid = get_node_id(inode);
2244 args.in.numargs = 1;
2245 args.in.args[0].size = sizeof(inarg);
2246 args.in.args[0].value = &inarg;
2247 args.out.numargs = 1;
2248 args.out.args[0].size = sizeof(outarg);
2249 args.out.args[0].value = &outarg;
2250 err = fuse_simple_request(fc, &args);
b2d2272f
MS
2251 if (err == -ENOSYS)
2252 fc->no_bmap = 1;
2253
2254 return err ? 0 : outarg.block;
2255}
2256
965c8e59 2257static loff_t fuse_file_llseek(struct file *file, loff_t offset, int whence)
5559b8f4
MS
2258{
2259 loff_t retval;
6131ffaa 2260 struct inode *inode = file_inode(file);
5559b8f4 2261
c07c3d19 2262 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
965c8e59
AM
2263 if (whence == SEEK_CUR || whence == SEEK_SET)
2264 return generic_file_llseek(file, offset, whence);
06222e49 2265
c07c3d19
MS
2266 mutex_lock(&inode->i_mutex);
2267 retval = fuse_update_attributes(inode, NULL, file, NULL);
2268 if (!retval)
965c8e59 2269 retval = generic_file_llseek(file, offset, whence);
5559b8f4 2270 mutex_unlock(&inode->i_mutex);
c07c3d19 2271
5559b8f4
MS
2272 return retval;
2273}
2274
59efec7b
TH
2275static int fuse_ioctl_copy_user(struct page **pages, struct iovec *iov,
2276 unsigned int nr_segs, size_t bytes, bool to_user)
2277{
2278 struct iov_iter ii;
2279 int page_idx = 0;
2280
2281 if (!bytes)
2282 return 0;
2283
71d8e532 2284 iov_iter_init(&ii, to_user ? READ : WRITE, iov, nr_segs, bytes);
59efec7b
TH
2285
2286 while (iov_iter_count(&ii)) {
2287 struct page *page = pages[page_idx++];
2288 size_t todo = min_t(size_t, PAGE_SIZE, iov_iter_count(&ii));
4aa0edd2 2289 void *kaddr;
59efec7b 2290
4aa0edd2 2291 kaddr = kmap(page);
59efec7b
TH
2292
2293 while (todo) {
2294 char __user *uaddr = ii.iov->iov_base + ii.iov_offset;
2295 size_t iov_len = ii.iov->iov_len - ii.iov_offset;
2296 size_t copy = min(todo, iov_len);
2297 size_t left;
2298
2299 if (!to_user)
2300 left = copy_from_user(kaddr, uaddr, copy);
2301 else
2302 left = copy_to_user(uaddr, kaddr, copy);
2303
2304 if (unlikely(left))
2305 return -EFAULT;
2306
2307 iov_iter_advance(&ii, copy);
2308 todo -= copy;
2309 kaddr += copy;
2310 }
2311
0bd87182 2312 kunmap(page);
59efec7b
TH
2313 }
2314
2315 return 0;
2316}
2317
d9d318d3
MS
2318/*
2319 * CUSE servers compiled on 32bit broke on 64bit kernels because the
2320 * ABI was defined to be 'struct iovec' which is different on 32bit
2321 * and 64bit. Fortunately we can determine which structure the server
2322 * used from the size of the reply.
2323 */
1baa26b2
MS
2324static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
2325 size_t transferred, unsigned count,
2326 bool is_compat)
d9d318d3
MS
2327{
2328#ifdef CONFIG_COMPAT
2329 if (count * sizeof(struct compat_iovec) == transferred) {
2330 struct compat_iovec *ciov = src;
2331 unsigned i;
2332
2333 /*
2334 * With this interface a 32bit server cannot support
2335 * non-compat (i.e. ones coming from 64bit apps) ioctl
2336 * requests
2337 */
2338 if (!is_compat)
2339 return -EINVAL;
2340
2341 for (i = 0; i < count; i++) {
2342 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
2343 dst[i].iov_len = ciov[i].iov_len;
2344 }
2345 return 0;
2346 }
2347#endif
2348
2349 if (count * sizeof(struct iovec) != transferred)
2350 return -EIO;
2351
2352 memcpy(dst, src, transferred);
2353 return 0;
2354}
2355
7572777e
MS
2356/* Make sure iov_length() won't overflow */
2357static int fuse_verify_ioctl_iov(struct iovec *iov, size_t count)
2358{
2359 size_t n;
2360 u32 max = FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT;
2361
fb6ccff6 2362 for (n = 0; n < count; n++, iov++) {
7572777e
MS
2363 if (iov->iov_len > (size_t) max)
2364 return -ENOMEM;
2365 max -= iov->iov_len;
2366 }
2367 return 0;
2368}
2369
1baa26b2
MS
2370static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
2371 void *src, size_t transferred, unsigned count,
2372 bool is_compat)
2373{
2374 unsigned i;
2375 struct fuse_ioctl_iovec *fiov = src;
2376
2377 if (fc->minor < 16) {
2378 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
2379 count, is_compat);
2380 }
2381
2382 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
2383 return -EIO;
2384
2385 for (i = 0; i < count; i++) {
2386 /* Did the server supply an inappropriate value? */
2387 if (fiov[i].base != (unsigned long) fiov[i].base ||
2388 fiov[i].len != (unsigned long) fiov[i].len)
2389 return -EIO;
2390
2391 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
2392 dst[i].iov_len = (size_t) fiov[i].len;
2393
2394#ifdef CONFIG_COMPAT
2395 if (is_compat &&
2396 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
2397 (compat_size_t) dst[i].iov_len != fiov[i].len))
2398 return -EIO;
2399#endif
2400 }
2401
2402 return 0;
2403}
2404
2405
59efec7b
TH
2406/*
2407 * For ioctls, there is no generic way to determine how much memory
2408 * needs to be read and/or written. Furthermore, ioctls are allowed
2409 * to dereference the passed pointer, so the parameter requires deep
2410 * copying but FUSE has no idea whatsoever about what to copy in or
2411 * out.
2412 *
2413 * This is solved by allowing FUSE server to retry ioctl with
2414 * necessary in/out iovecs. Let's assume the ioctl implementation
2415 * needs to read in the following structure.
2416 *
2417 * struct a {
2418 * char *buf;
2419 * size_t buflen;
2420 * }
2421 *
2422 * On the first callout to FUSE server, inarg->in_size and
2423 * inarg->out_size will be NULL; then, the server completes the ioctl
2424 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
2425 * the actual iov array to
2426 *
2427 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
2428 *
2429 * which tells FUSE to copy in the requested area and retry the ioctl.
2430 * On the second round, the server has access to the structure and
2431 * from that it can tell what to look for next, so on the invocation,
2432 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
2433 *
2434 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
2435 * { .iov_base = a.buf, .iov_len = a.buflen } }
2436 *
2437 * FUSE will copy both struct a and the pointed buffer from the
2438 * process doing the ioctl and retry ioctl with both struct a and the
2439 * buffer.
2440 *
2441 * This time, FUSE server has everything it needs and completes ioctl
2442 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
2443 *
2444 * Copying data out works the same way.
2445 *
2446 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
2447 * automatically initializes in and out iovs by decoding @cmd with
2448 * _IOC_* macros and the server is not allowed to request RETRY. This
2449 * limits ioctl data transfers to well-formed ioctls and is the forced
2450 * behavior for all FUSE servers.
2451 */
08cbf542
TH
2452long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
2453 unsigned int flags)
59efec7b 2454{
59efec7b 2455 struct fuse_file *ff = file->private_data;
d36f2487 2456 struct fuse_conn *fc = ff->fc;
59efec7b
TH
2457 struct fuse_ioctl_in inarg = {
2458 .fh = ff->fh,
2459 .cmd = cmd,
2460 .arg = arg,
2461 .flags = flags
2462 };
2463 struct fuse_ioctl_out outarg;
2464 struct fuse_req *req = NULL;
2465 struct page **pages = NULL;
8ac83505 2466 struct iovec *iov_page = NULL;
59efec7b
TH
2467 struct iovec *in_iov = NULL, *out_iov = NULL;
2468 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
2469 size_t in_size, out_size, transferred;
2470 int err;
2471
1baa26b2
MS
2472#if BITS_PER_LONG == 32
2473 inarg.flags |= FUSE_IOCTL_32BIT;
2474#else
2475 if (flags & FUSE_IOCTL_COMPAT)
2476 inarg.flags |= FUSE_IOCTL_32BIT;
2477#endif
2478
59efec7b 2479 /* assume all the iovs returned by client always fits in a page */
1baa26b2 2480 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
59efec7b 2481
59efec7b 2482 err = -ENOMEM;
c411cc88 2483 pages = kcalloc(FUSE_MAX_PAGES_PER_REQ, sizeof(pages[0]), GFP_KERNEL);
8ac83505 2484 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
59efec7b
TH
2485 if (!pages || !iov_page)
2486 goto out;
2487
2488 /*
2489 * If restricted, initialize IO parameters as encoded in @cmd.
2490 * RETRY from server is not allowed.
2491 */
2492 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
8ac83505 2493 struct iovec *iov = iov_page;
59efec7b 2494
c9f0523d 2495 iov->iov_base = (void __user *)arg;
59efec7b
TH
2496 iov->iov_len = _IOC_SIZE(cmd);
2497
2498 if (_IOC_DIR(cmd) & _IOC_WRITE) {
2499 in_iov = iov;
2500 in_iovs = 1;
2501 }
2502
2503 if (_IOC_DIR(cmd) & _IOC_READ) {
2504 out_iov = iov;
2505 out_iovs = 1;
2506 }
2507 }
2508
2509 retry:
2510 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
2511 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
2512
2513 /*
2514 * Out data can be used either for actual out data or iovs,
2515 * make sure there always is at least one page.
2516 */
2517 out_size = max_t(size_t, out_size, PAGE_SIZE);
2518 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
2519
2520 /* make sure there are enough buffer pages and init request with them */
2521 err = -ENOMEM;
2522 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
2523 goto out;
2524 while (num_pages < max_pages) {
2525 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
2526 if (!pages[num_pages])
2527 goto out;
2528 num_pages++;
2529 }
2530
54b96670 2531 req = fuse_get_req(fc, num_pages);
59efec7b
TH
2532 if (IS_ERR(req)) {
2533 err = PTR_ERR(req);
2534 req = NULL;
2535 goto out;
2536 }
2537 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
2538 req->num_pages = num_pages;
7c190c8b 2539 fuse_page_descs_length_init(req, 0, req->num_pages);
59efec7b
TH
2540
2541 /* okay, let's send it to the client */
2542 req->in.h.opcode = FUSE_IOCTL;
d36f2487 2543 req->in.h.nodeid = ff->nodeid;
59efec7b
TH
2544 req->in.numargs = 1;
2545 req->in.args[0].size = sizeof(inarg);
2546 req->in.args[0].value = &inarg;
2547 if (in_size) {
2548 req->in.numargs++;
2549 req->in.args[1].size = in_size;
2550 req->in.argpages = 1;
2551
2552 err = fuse_ioctl_copy_user(pages, in_iov, in_iovs, in_size,
2553 false);
2554 if (err)
2555 goto out;
2556 }
2557
2558 req->out.numargs = 2;
2559 req->out.args[0].size = sizeof(outarg);
2560 req->out.args[0].value = &outarg;
2561 req->out.args[1].size = out_size;
2562 req->out.argpages = 1;
2563 req->out.argvar = 1;
2564
b93f858a 2565 fuse_request_send(fc, req);
59efec7b
TH
2566 err = req->out.h.error;
2567 transferred = req->out.args[1].size;
2568 fuse_put_request(fc, req);
2569 req = NULL;
2570 if (err)
2571 goto out;
2572
2573 /* did it ask for retry? */
2574 if (outarg.flags & FUSE_IOCTL_RETRY) {
8ac83505 2575 void *vaddr;
59efec7b
TH
2576
2577 /* no retry if in restricted mode */
2578 err = -EIO;
2579 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
2580 goto out;
2581
2582 in_iovs = outarg.in_iovs;
2583 out_iovs = outarg.out_iovs;
2584
2585 /*
2586 * Make sure things are in boundary, separate checks
2587 * are to protect against overflow.
2588 */
2589 err = -ENOMEM;
2590 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
2591 out_iovs > FUSE_IOCTL_MAX_IOV ||
2592 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
2593 goto out;
2594
2408f6ef 2595 vaddr = kmap_atomic(pages[0]);
1baa26b2 2596 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
d9d318d3
MS
2597 transferred, in_iovs + out_iovs,
2598 (flags & FUSE_IOCTL_COMPAT) != 0);
2408f6ef 2599 kunmap_atomic(vaddr);
d9d318d3
MS
2600 if (err)
2601 goto out;
59efec7b 2602
8ac83505 2603 in_iov = iov_page;
59efec7b
TH
2604 out_iov = in_iov + in_iovs;
2605
7572777e
MS
2606 err = fuse_verify_ioctl_iov(in_iov, in_iovs);
2607 if (err)
2608 goto out;
2609
2610 err = fuse_verify_ioctl_iov(out_iov, out_iovs);
2611 if (err)
2612 goto out;
2613
59efec7b
TH
2614 goto retry;
2615 }
2616
2617 err = -EIO;
2618 if (transferred > inarg.out_size)
2619 goto out;
2620
2621 err = fuse_ioctl_copy_user(pages, out_iov, out_iovs, transferred, true);
2622 out:
2623 if (req)
2624 fuse_put_request(fc, req);
8ac83505 2625 free_page((unsigned long) iov_page);
59efec7b
TH
2626 while (num_pages)
2627 __free_page(pages[--num_pages]);
2628 kfree(pages);
2629
2630 return err ? err : outarg.result;
2631}
08cbf542 2632EXPORT_SYMBOL_GPL(fuse_do_ioctl);
59efec7b 2633
b18da0c5
MS
2634long fuse_ioctl_common(struct file *file, unsigned int cmd,
2635 unsigned long arg, unsigned int flags)
d36f2487 2636{
6131ffaa 2637 struct inode *inode = file_inode(file);
d36f2487
MS
2638 struct fuse_conn *fc = get_fuse_conn(inode);
2639
c2132c1b 2640 if (!fuse_allow_current_process(fc))
d36f2487
MS
2641 return -EACCES;
2642
2643 if (is_bad_inode(inode))
2644 return -EIO;
2645
2646 return fuse_do_ioctl(file, cmd, arg, flags);
2647}
2648
59efec7b
TH
2649static long fuse_file_ioctl(struct file *file, unsigned int cmd,
2650 unsigned long arg)
2651{
b18da0c5 2652 return fuse_ioctl_common(file, cmd, arg, 0);
59efec7b
TH
2653}
2654
2655static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
2656 unsigned long arg)
2657{
b18da0c5 2658 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
59efec7b
TH
2659}
2660
95668a69
TH
2661/*
2662 * All files which have been polled are linked to RB tree
2663 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2664 * find the matching one.
2665 */
2666static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2667 struct rb_node **parent_out)
2668{
2669 struct rb_node **link = &fc->polled_files.rb_node;
2670 struct rb_node *last = NULL;
2671
2672 while (*link) {
2673 struct fuse_file *ff;
2674
2675 last = *link;
2676 ff = rb_entry(last, struct fuse_file, polled_node);
2677
2678 if (kh < ff->kh)
2679 link = &last->rb_left;
2680 else if (kh > ff->kh)
2681 link = &last->rb_right;
2682 else
2683 return link;
2684 }
2685
2686 if (parent_out)
2687 *parent_out = last;
2688 return link;
2689}
2690
2691/*
2692 * The file is about to be polled. Make sure it's on the polled_files
2693 * RB tree. Note that files once added to the polled_files tree are
2694 * not removed before the file is released. This is because a file
2695 * polled once is likely to be polled again.
2696 */
2697static void fuse_register_polled_file(struct fuse_conn *fc,
2698 struct fuse_file *ff)
2699{
2700 spin_lock(&fc->lock);
2701 if (RB_EMPTY_NODE(&ff->polled_node)) {
f3846266 2702 struct rb_node **link, *uninitialized_var(parent);
95668a69
TH
2703
2704 link = fuse_find_polled_node(fc, ff->kh, &parent);
2705 BUG_ON(*link);
2706 rb_link_node(&ff->polled_node, parent, link);
2707 rb_insert_color(&ff->polled_node, &fc->polled_files);
2708 }
2709 spin_unlock(&fc->lock);
2710}
2711
08cbf542 2712unsigned fuse_file_poll(struct file *file, poll_table *wait)
95668a69 2713{
95668a69 2714 struct fuse_file *ff = file->private_data;
797759aa 2715 struct fuse_conn *fc = ff->fc;
95668a69
TH
2716 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2717 struct fuse_poll_out outarg;
7078187a 2718 FUSE_ARGS(args);
95668a69
TH
2719 int err;
2720
2721 if (fc->no_poll)
2722 return DEFAULT_POLLMASK;
2723
2724 poll_wait(file, &ff->poll_wait, wait);
0415d291 2725 inarg.events = (__u32)poll_requested_events(wait);
95668a69
TH
2726
2727 /*
2728 * Ask for notification iff there's someone waiting for it.
2729 * The client may ignore the flag and always notify.
2730 */
2731 if (waitqueue_active(&ff->poll_wait)) {
2732 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2733 fuse_register_polled_file(fc, ff);
2734 }
2735
7078187a
MS
2736 args.in.h.opcode = FUSE_POLL;
2737 args.in.h.nodeid = ff->nodeid;
2738 args.in.numargs = 1;
2739 args.in.args[0].size = sizeof(inarg);
2740 args.in.args[0].value = &inarg;
2741 args.out.numargs = 1;
2742 args.out.args[0].size = sizeof(outarg);
2743 args.out.args[0].value = &outarg;
2744 err = fuse_simple_request(fc, &args);
95668a69
TH
2745
2746 if (!err)
2747 return outarg.revents;
2748 if (err == -ENOSYS) {
2749 fc->no_poll = 1;
2750 return DEFAULT_POLLMASK;
2751 }
2752 return POLLERR;
2753}
08cbf542 2754EXPORT_SYMBOL_GPL(fuse_file_poll);
95668a69
TH
2755
2756/*
2757 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2758 * wakes up the poll waiters.
2759 */
2760int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2761 struct fuse_notify_poll_wakeup_out *outarg)
2762{
2763 u64 kh = outarg->kh;
2764 struct rb_node **link;
2765
2766 spin_lock(&fc->lock);
2767
2768 link = fuse_find_polled_node(fc, kh, NULL);
2769 if (*link) {
2770 struct fuse_file *ff;
2771
2772 ff = rb_entry(*link, struct fuse_file, polled_node);
2773 wake_up_interruptible_sync(&ff->poll_wait);
2774 }
2775
2776 spin_unlock(&fc->lock);
2777 return 0;
2778}
2779
efb9fa9e
MP
2780static void fuse_do_truncate(struct file *file)
2781{
2782 struct inode *inode = file->f_mapping->host;
2783 struct iattr attr;
2784
2785 attr.ia_valid = ATTR_SIZE;
2786 attr.ia_size = i_size_read(inode);
2787
2788 attr.ia_file = file;
2789 attr.ia_valid |= ATTR_FILE;
2790
2791 fuse_do_setattr(inode, &attr, file);
2792}
2793
e5c5f05d
MP
2794static inline loff_t fuse_round_up(loff_t off)
2795{
2796 return round_up(off, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
2797}
2798
4273b793 2799static ssize_t
d8d3d94b
AV
2800fuse_direct_IO(int rw, struct kiocb *iocb, struct iov_iter *iter,
2801 loff_t offset)
4273b793 2802{
9d5722b7 2803 DECLARE_COMPLETION_ONSTACK(wait);
4273b793 2804 ssize_t ret = 0;
60b9df7a
MS
2805 struct file *file = iocb->ki_filp;
2806 struct fuse_file *ff = file->private_data;
e5c5f05d 2807 bool async_dio = ff->fc->async_dio;
4273b793 2808 loff_t pos = 0;
bcba24cc
MP
2809 struct inode *inode;
2810 loff_t i_size;
a6cbcd4a 2811 size_t count = iov_iter_count(iter);
36cf66ed 2812 struct fuse_io_priv *io;
4273b793 2813
4273b793 2814 pos = offset;
bcba24cc
MP
2815 inode = file->f_mapping->host;
2816 i_size = i_size_read(inode);
4273b793 2817
9fe55eea
SW
2818 if ((rw == READ) && (offset > i_size))
2819 return 0;
2820
439ee5f0 2821 /* optimization for short read */
e5c5f05d 2822 if (async_dio && rw != WRITE && offset + count > i_size) {
439ee5f0
MP
2823 if (offset >= i_size)
2824 return 0;
e5c5f05d 2825 count = min_t(loff_t, count, fuse_round_up(i_size - offset));
0c949334 2826 iov_iter_truncate(iter, count);
439ee5f0
MP
2827 }
2828
bcba24cc 2829 io = kmalloc(sizeof(struct fuse_io_priv), GFP_KERNEL);
36cf66ed
MP
2830 if (!io)
2831 return -ENOMEM;
bcba24cc
MP
2832 spin_lock_init(&io->lock);
2833 io->reqs = 1;
2834 io->bytes = -1;
2835 io->size = 0;
2836 io->offset = offset;
2837 io->write = (rw == WRITE);
2838 io->err = 0;
36cf66ed 2839 io->file = file;
bcba24cc
MP
2840 /*
2841 * By default, we want to optimize all I/Os with async request
60b9df7a 2842 * submission to the client filesystem if supported.
bcba24cc 2843 */
e5c5f05d 2844 io->async = async_dio;
bcba24cc
MP
2845 io->iocb = iocb;
2846
2847 /*
2848 * We cannot asynchronously extend the size of a file. We have no method
2849 * to wait on real async I/O requests, so we must submit this request
2850 * synchronously.
2851 */
e5c5f05d 2852 if (!is_sync_kiocb(iocb) && (offset + count > i_size) && rw == WRITE)
bcba24cc 2853 io->async = false;
4273b793 2854
9d5722b7
CH
2855 if (io->async && is_sync_kiocb(iocb))
2856 io->done = &wait;
2857
b98d023a 2858 if (rw == WRITE)
d22a943f 2859 ret = __fuse_direct_write(io, iter, &pos);
b98d023a 2860 else
d22a943f 2861 ret = __fuse_direct_read(io, iter, &pos);
36cf66ed 2862
bcba24cc
MP
2863 if (io->async) {
2864 fuse_aio_complete(io, ret < 0 ? ret : 0, -1);
2865
2866 /* we have a non-extending, async request, so return */
c9ecf989 2867 if (!is_sync_kiocb(iocb))
bcba24cc
MP
2868 return -EIOCBQUEUED;
2869
9d5722b7
CH
2870 wait_for_completion(&wait);
2871 ret = fuse_get_res_by_io(io);
bcba24cc
MP
2872 }
2873
9d5722b7
CH
2874 kfree(io);
2875
efb9fa9e
MP
2876 if (rw == WRITE) {
2877 if (ret > 0)
2878 fuse_write_update_size(inode, pos);
2879 else if (ret < 0 && offset + count > i_size)
2880 fuse_do_truncate(file);
2881 }
4273b793
AA
2882
2883 return ret;
2884}
2885
cdadb11c
MS
2886static long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
2887 loff_t length)
05ba1f08
AP
2888{
2889 struct fuse_file *ff = file->private_data;
1c68271c 2890 struct inode *inode = file_inode(file);
0ab08f57 2891 struct fuse_inode *fi = get_fuse_inode(inode);
05ba1f08 2892 struct fuse_conn *fc = ff->fc;
7078187a 2893 FUSE_ARGS(args);
05ba1f08
AP
2894 struct fuse_fallocate_in inarg = {
2895 .fh = ff->fh,
2896 .offset = offset,
2897 .length = length,
2898 .mode = mode
2899 };
2900 int err;
14c14414
MP
2901 bool lock_inode = !(mode & FALLOC_FL_KEEP_SIZE) ||
2902 (mode & FALLOC_FL_PUNCH_HOLE);
05ba1f08 2903
4adb8302
MS
2904 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
2905 return -EOPNOTSUPP;
2906
519c6040
MS
2907 if (fc->no_fallocate)
2908 return -EOPNOTSUPP;
2909
14c14414 2910 if (lock_inode) {
3634a632 2911 mutex_lock(&inode->i_mutex);
bde52788
MP
2912 if (mode & FALLOC_FL_PUNCH_HOLE) {
2913 loff_t endbyte = offset + length - 1;
2914 err = filemap_write_and_wait_range(inode->i_mapping,
2915 offset, endbyte);
2916 if (err)
2917 goto out;
2918
2919 fuse_sync_writes(inode);
2920 }
3634a632
BF
2921 }
2922
0ab08f57
MP
2923 if (!(mode & FALLOC_FL_KEEP_SIZE))
2924 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
2925
7078187a
MS
2926 args.in.h.opcode = FUSE_FALLOCATE;
2927 args.in.h.nodeid = ff->nodeid;
2928 args.in.numargs = 1;
2929 args.in.args[0].size = sizeof(inarg);
2930 args.in.args[0].value = &inarg;
2931 err = fuse_simple_request(fc, &args);
519c6040
MS
2932 if (err == -ENOSYS) {
2933 fc->no_fallocate = 1;
2934 err = -EOPNOTSUPP;
2935 }
bee6c307
BF
2936 if (err)
2937 goto out;
2938
2939 /* we could have extended the file */
b0aa7606
MP
2940 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
2941 bool changed = fuse_write_update_size(inode, offset + length);
2942
93d2269d
MS
2943 if (changed && fc->writeback_cache)
2944 file_update_time(file);
b0aa7606 2945 }
bee6c307
BF
2946
2947 if (mode & FALLOC_FL_PUNCH_HOLE)
2948 truncate_pagecache_range(inode, offset, offset + length - 1);
2949
2950 fuse_invalidate_attr(inode);
2951
3634a632 2952out:
0ab08f57
MP
2953 if (!(mode & FALLOC_FL_KEEP_SIZE))
2954 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
2955
bde52788 2956 if (lock_inode)
3634a632 2957 mutex_unlock(&inode->i_mutex);
3634a632 2958
05ba1f08
AP
2959 return err;
2960}
05ba1f08 2961
4b6f5d20 2962static const struct file_operations fuse_file_operations = {
5559b8f4 2963 .llseek = fuse_file_llseek,
37c20f16
AV
2964 .read = new_sync_read,
2965 .read_iter = fuse_file_read_iter,
84c3d55c
AV
2966 .write = new_sync_write,
2967 .write_iter = fuse_file_write_iter,
b6aeaded
MS
2968 .mmap = fuse_file_mmap,
2969 .open = fuse_open,
2970 .flush = fuse_flush,
2971 .release = fuse_release,
2972 .fsync = fuse_fsync,
71421259 2973 .lock = fuse_file_lock,
a9ff4f87 2974 .flock = fuse_file_flock,
5ffc4ef4 2975 .splice_read = generic_file_splice_read,
59efec7b
TH
2976 .unlocked_ioctl = fuse_file_ioctl,
2977 .compat_ioctl = fuse_file_compat_ioctl,
95668a69 2978 .poll = fuse_file_poll,
05ba1f08 2979 .fallocate = fuse_file_fallocate,
b6aeaded
MS
2980};
2981
4b6f5d20 2982static const struct file_operations fuse_direct_io_file_operations = {
5559b8f4 2983 .llseek = fuse_file_llseek,
15316263
AV
2984 .read = new_sync_read,
2985 .read_iter = fuse_direct_read_iter,
2986 .write = new_sync_write,
2987 .write_iter = fuse_direct_write_iter,
fc280c96 2988 .mmap = fuse_direct_mmap,
413ef8cb
MS
2989 .open = fuse_open,
2990 .flush = fuse_flush,
2991 .release = fuse_release,
2992 .fsync = fuse_fsync,
71421259 2993 .lock = fuse_file_lock,
a9ff4f87 2994 .flock = fuse_file_flock,
59efec7b
TH
2995 .unlocked_ioctl = fuse_file_ioctl,
2996 .compat_ioctl = fuse_file_compat_ioctl,
95668a69 2997 .poll = fuse_file_poll,
05ba1f08 2998 .fallocate = fuse_file_fallocate,
fc280c96 2999 /* no splice_read */
413ef8cb
MS
3000};
3001
f5e54d6e 3002static const struct address_space_operations fuse_file_aops = {
b6aeaded 3003 .readpage = fuse_readpage,
3be5a52b 3004 .writepage = fuse_writepage,
26d614df 3005 .writepages = fuse_writepages,
3be5a52b 3006 .launder_page = fuse_launder_page,
db50b96c 3007 .readpages = fuse_readpages,
3be5a52b 3008 .set_page_dirty = __set_page_dirty_nobuffers,
b2d2272f 3009 .bmap = fuse_bmap,
4273b793 3010 .direct_IO = fuse_direct_IO,
6b12c1b3
PE
3011 .write_begin = fuse_write_begin,
3012 .write_end = fuse_write_end,
b6aeaded
MS
3013};
3014
3015void fuse_init_file_inode(struct inode *inode)
3016{
45323fb7
MS
3017 inode->i_fop = &fuse_file_operations;
3018 inode->i_data.a_ops = &fuse_file_aops;
b6aeaded 3019}