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