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