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