Loading...
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
19static const struct file_operations fuse_direct_io_file_operations;
20
21static int fuse_send_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
22 int opcode, struct fuse_open_out *outargp)
23{
24 struct fuse_open_in inarg;
25 struct fuse_req *req;
26 int err;
27
28 req = fuse_get_req(fc);
29 if (IS_ERR(req))
30 return PTR_ERR(req);
31
32 memset(&inarg, 0, sizeof(inarg));
33 inarg.flags = file->f_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
34 if (!fc->atomic_o_trunc)
35 inarg.flags &= ~O_TRUNC;
36 req->in.h.opcode = opcode;
37 req->in.h.nodeid = nodeid;
38 req->in.numargs = 1;
39 req->in.args[0].size = sizeof(inarg);
40 req->in.args[0].value = &inarg;
41 req->out.numargs = 1;
42 req->out.args[0].size = sizeof(*outargp);
43 req->out.args[0].value = outargp;
44 fuse_request_send(fc, req);
45 err = req->out.h.error;
46 fuse_put_request(fc, req);
47
48 return err;
49}
50
51struct fuse_file *fuse_file_alloc(struct fuse_conn *fc)
52{
53 struct fuse_file *ff;
54
55 ff = kmalloc(sizeof(struct fuse_file), GFP_KERNEL);
56 if (unlikely(!ff))
57 return NULL;
58
59 ff->fc = fc;
60 ff->reserved_req = fuse_request_alloc();
61 if (unlikely(!ff->reserved_req)) {
62 kfree(ff);
63 return NULL;
64 }
65
66 INIT_LIST_HEAD(&ff->write_entry);
67 atomic_set(&ff->count, 0);
68 RB_CLEAR_NODE(&ff->polled_node);
69 init_waitqueue_head(&ff->poll_wait);
70
71 spin_lock(&fc->lock);
72 ff->kh = ++fc->khctr;
73 spin_unlock(&fc->lock);
74
75 return ff;
76}
77
78void fuse_file_free(struct fuse_file *ff)
79{
80 fuse_request_free(ff->reserved_req);
81 kfree(ff);
82}
83
84struct fuse_file *fuse_file_get(struct fuse_file *ff)
85{
86 atomic_inc(&ff->count);
87 return ff;
88}
89
90static void fuse_release_async(struct work_struct *work)
91{
92 struct fuse_req *req;
93 struct fuse_conn *fc;
94 struct path path;
95
96 req = container_of(work, struct fuse_req, misc.release.work);
97 path = req->misc.release.path;
98 fc = get_fuse_conn(path.dentry->d_inode);
99
100 fuse_put_request(fc, req);
101 path_put(&path);
102}
103
104static void fuse_release_end(struct fuse_conn *fc, struct fuse_req *req)
105{
106 if (fc->destroy_req) {
107 /*
108 * If this is a fuseblk mount, then it's possible that
109 * releasing the path will result in releasing the
110 * super block and sending the DESTROY request. If
111 * the server is single threaded, this would hang.
112 * For this reason do the path_put() in a separate
113 * thread.
114 */
115 atomic_inc(&req->count);
116 INIT_WORK(&req->misc.release.work, fuse_release_async);
117 schedule_work(&req->misc.release.work);
118 } else {
119 path_put(&req->misc.release.path);
120 }
121}
122
123static void fuse_file_put(struct fuse_file *ff, bool sync)
124{
125 if (atomic_dec_and_test(&ff->count)) {
126 struct fuse_req *req = ff->reserved_req;
127
128 if (sync) {
129 fuse_request_send(ff->fc, req);
130 path_put(&req->misc.release.path);
131 fuse_put_request(ff->fc, req);
132 } else {
133 req->end = fuse_release_end;
134 fuse_request_send_background(ff->fc, req);
135 }
136 kfree(ff);
137 }
138}
139
140int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
141 bool isdir)
142{
143 struct fuse_open_out outarg;
144 struct fuse_file *ff;
145 int err;
146 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
147
148 ff = fuse_file_alloc(fc);
149 if (!ff)
150 return -ENOMEM;
151
152 err = fuse_send_open(fc, nodeid, file, opcode, &outarg);
153 if (err) {
154 fuse_file_free(ff);
155 return err;
156 }
157
158 if (isdir)
159 outarg.open_flags &= ~FOPEN_DIRECT_IO;
160
161 ff->fh = outarg.fh;
162 ff->nodeid = nodeid;
163 ff->open_flags = outarg.open_flags;
164 file->private_data = fuse_file_get(ff);
165
166 return 0;
167}
168EXPORT_SYMBOL_GPL(fuse_do_open);
169
170void fuse_finish_open(struct inode *inode, struct file *file)
171{
172 struct fuse_file *ff = file->private_data;
173 struct fuse_conn *fc = get_fuse_conn(inode);
174
175 if (ff->open_flags & FOPEN_DIRECT_IO)
176 file->f_op = &fuse_direct_io_file_operations;
177 if (!(ff->open_flags & FOPEN_KEEP_CACHE))
178 invalidate_inode_pages2(inode->i_mapping);
179 if (ff->open_flags & FOPEN_NONSEEKABLE)
180 nonseekable_open(inode, file);
181 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
182 struct fuse_inode *fi = get_fuse_inode(inode);
183
184 spin_lock(&fc->lock);
185 fi->attr_version = ++fc->attr_version;
186 i_size_write(inode, 0);
187 spin_unlock(&fc->lock);
188 fuse_invalidate_attr(inode);
189 }
190}
191
192int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
193{
194 struct fuse_conn *fc = get_fuse_conn(inode);
195 int err;
196
197 err = generic_file_open(inode, file);
198 if (err)
199 return err;
200
201 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
202 if (err)
203 return err;
204
205 fuse_finish_open(inode, file);
206
207 return 0;
208}
209
210static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
211{
212 struct fuse_conn *fc = ff->fc;
213 struct fuse_req *req = ff->reserved_req;
214 struct fuse_release_in *inarg = &req->misc.release.in;
215
216 spin_lock(&fc->lock);
217 list_del(&ff->write_entry);
218 if (!RB_EMPTY_NODE(&ff->polled_node))
219 rb_erase(&ff->polled_node, &fc->polled_files);
220 spin_unlock(&fc->lock);
221
222 wake_up_interruptible_all(&ff->poll_wait);
223
224 inarg->fh = ff->fh;
225 inarg->flags = flags;
226 req->in.h.opcode = opcode;
227 req->in.h.nodeid = ff->nodeid;
228 req->in.numargs = 1;
229 req->in.args[0].size = sizeof(struct fuse_release_in);
230 req->in.args[0].value = inarg;
231}
232
233void fuse_release_common(struct file *file, int opcode)
234{
235 struct fuse_file *ff;
236 struct fuse_req *req;
237
238 ff = file->private_data;
239 if (unlikely(!ff))
240 return;
241
242 req = ff->reserved_req;
243 fuse_prepare_release(ff, file->f_flags, opcode);
244
245 if (ff->flock) {
246 struct fuse_release_in *inarg = &req->misc.release.in;
247 inarg->release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
248 inarg->lock_owner = fuse_lock_owner_id(ff->fc,
249 (fl_owner_t) file);
250 }
251 /* Hold vfsmount and dentry until release is finished */
252 path_get(&file->f_path);
253 req->misc.release.path = file->f_path;
254
255 /*
256 * Normally this will send the RELEASE request, however if
257 * some asynchronous READ or WRITE requests are outstanding,
258 * the sending will be delayed.
259 *
260 * Make the release synchronous if this is a fuseblk mount,
261 * synchronous RELEASE is allowed (and desirable) in this case
262 * because the server can be trusted not to screw up.
263 */
264 fuse_file_put(ff, ff->fc->destroy_req != NULL);
265}
266
267static int fuse_open(struct inode *inode, struct file *file)
268{
269 return fuse_open_common(inode, file, false);
270}
271
272static int fuse_release(struct inode *inode, struct file *file)
273{
274 fuse_release_common(file, FUSE_RELEASE);
275
276 /* return value is ignored by VFS */
277 return 0;
278}
279
280void fuse_sync_release(struct fuse_file *ff, int flags)
281{
282 WARN_ON(atomic_read(&ff->count) > 1);
283 fuse_prepare_release(ff, flags, FUSE_RELEASE);
284 ff->reserved_req->force = 1;
285 fuse_request_send(ff->fc, ff->reserved_req);
286 fuse_put_request(ff->fc, ff->reserved_req);
287 kfree(ff);
288}
289EXPORT_SYMBOL_GPL(fuse_sync_release);
290
291/*
292 * Scramble the ID space with XTEA, so that the value of the files_struct
293 * pointer is not exposed to userspace.
294 */
295u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
296{
297 u32 *k = fc->scramble_key;
298 u64 v = (unsigned long) id;
299 u32 v0 = v;
300 u32 v1 = v >> 32;
301 u32 sum = 0;
302 int i;
303
304 for (i = 0; i < 32; i++) {
305 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
306 sum += 0x9E3779B9;
307 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
308 }
309
310 return (u64) v0 + ((u64) v1 << 32);
311}
312
313/*
314 * Check if page is under writeback
315 *
316 * This is currently done by walking the list of writepage requests
317 * for the inode, which can be pretty inefficient.
318 */
319static bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
320{
321 struct fuse_conn *fc = get_fuse_conn(inode);
322 struct fuse_inode *fi = get_fuse_inode(inode);
323 struct fuse_req *req;
324 bool found = false;
325
326 spin_lock(&fc->lock);
327 list_for_each_entry(req, &fi->writepages, writepages_entry) {
328 pgoff_t curr_index;
329
330 BUG_ON(req->inode != inode);
331 curr_index = req->misc.write.in.offset >> PAGE_CACHE_SHIFT;
332 if (curr_index == index) {
333 found = true;
334 break;
335 }
336 }
337 spin_unlock(&fc->lock);
338
339 return found;
340}
341
342/*
343 * Wait for page writeback to be completed.
344 *
345 * Since fuse doesn't rely on the VM writeback tracking, this has to
346 * use some other means.
347 */
348static int fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
349{
350 struct fuse_inode *fi = get_fuse_inode(inode);
351
352 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
353 return 0;
354}
355
356static int fuse_flush(struct file *file, fl_owner_t id)
357{
358 struct inode *inode = file->f_path.dentry->d_inode;
359 struct fuse_conn *fc = get_fuse_conn(inode);
360 struct fuse_file *ff = file->private_data;
361 struct fuse_req *req;
362 struct fuse_flush_in inarg;
363 int err;
364
365 if (is_bad_inode(inode))
366 return -EIO;
367
368 if (fc->no_flush)
369 return 0;
370
371 req = fuse_get_req_nofail(fc, file);
372 memset(&inarg, 0, sizeof(inarg));
373 inarg.fh = ff->fh;
374 inarg.lock_owner = fuse_lock_owner_id(fc, id);
375 req->in.h.opcode = FUSE_FLUSH;
376 req->in.h.nodeid = get_node_id(inode);
377 req->in.numargs = 1;
378 req->in.args[0].size = sizeof(inarg);
379 req->in.args[0].value = &inarg;
380 req->force = 1;
381 fuse_request_send(fc, req);
382 err = req->out.h.error;
383 fuse_put_request(fc, req);
384 if (err == -ENOSYS) {
385 fc->no_flush = 1;
386 err = 0;
387 }
388 return err;
389}
390
391/*
392 * Wait for all pending writepages on the inode to finish.
393 *
394 * This is currently done by blocking further writes with FUSE_NOWRITE
395 * and waiting for all sent writes to complete.
396 *
397 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
398 * could conflict with truncation.
399 */
400static void fuse_sync_writes(struct inode *inode)
401{
402 fuse_set_nowrite(inode);
403 fuse_release_nowrite(inode);
404}
405
406int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
407 int datasync, int isdir)
408{
409 struct inode *inode = file->f_mapping->host;
410 struct fuse_conn *fc = get_fuse_conn(inode);
411 struct fuse_file *ff = file->private_data;
412 struct fuse_req *req;
413 struct fuse_fsync_in inarg;
414 int err;
415
416 if (is_bad_inode(inode))
417 return -EIO;
418
419 err = filemap_write_and_wait_range(inode->i_mapping, start, end);
420 if (err)
421 return err;
422
423 if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
424 return 0;
425
426 mutex_lock(&inode->i_mutex);
427
428 /*
429 * Start writeback against all dirty pages of the inode, then
430 * wait for all outstanding writes, before sending the FSYNC
431 * request.
432 */
433 err = write_inode_now(inode, 0);
434 if (err)
435 goto out;
436
437 fuse_sync_writes(inode);
438
439 req = fuse_get_req(fc);
440 if (IS_ERR(req)) {
441 err = PTR_ERR(req);
442 goto out;
443 }
444
445 memset(&inarg, 0, sizeof(inarg));
446 inarg.fh = ff->fh;
447 inarg.fsync_flags = datasync ? 1 : 0;
448 req->in.h.opcode = isdir ? FUSE_FSYNCDIR : FUSE_FSYNC;
449 req->in.h.nodeid = get_node_id(inode);
450 req->in.numargs = 1;
451 req->in.args[0].size = sizeof(inarg);
452 req->in.args[0].value = &inarg;
453 fuse_request_send(fc, req);
454 err = req->out.h.error;
455 fuse_put_request(fc, req);
456 if (err == -ENOSYS) {
457 if (isdir)
458 fc->no_fsyncdir = 1;
459 else
460 fc->no_fsync = 1;
461 err = 0;
462 }
463out:
464 mutex_unlock(&inode->i_mutex);
465 return err;
466}
467
468static int fuse_fsync(struct file *file, loff_t start, loff_t end,
469 int datasync)
470{
471 return fuse_fsync_common(file, start, end, datasync, 0);
472}
473
474void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
475 size_t count, int opcode)
476{
477 struct fuse_read_in *inarg = &req->misc.read.in;
478 struct fuse_file *ff = file->private_data;
479
480 inarg->fh = ff->fh;
481 inarg->offset = pos;
482 inarg->size = count;
483 inarg->flags = file->f_flags;
484 req->in.h.opcode = opcode;
485 req->in.h.nodeid = ff->nodeid;
486 req->in.numargs = 1;
487 req->in.args[0].size = sizeof(struct fuse_read_in);
488 req->in.args[0].value = inarg;
489 req->out.argvar = 1;
490 req->out.numargs = 1;
491 req->out.args[0].size = count;
492}
493
494static size_t fuse_send_read(struct fuse_req *req, struct file *file,
495 loff_t pos, size_t count, fl_owner_t owner)
496{
497 struct fuse_file *ff = file->private_data;
498 struct fuse_conn *fc = ff->fc;
499
500 fuse_read_fill(req, file, pos, count, FUSE_READ);
501 if (owner != NULL) {
502 struct fuse_read_in *inarg = &req->misc.read.in;
503
504 inarg->read_flags |= FUSE_READ_LOCKOWNER;
505 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
506 }
507 fuse_request_send(fc, req);
508 return req->out.args[0].size;
509}
510
511static void fuse_read_update_size(struct inode *inode, loff_t size,
512 u64 attr_ver)
513{
514 struct fuse_conn *fc = get_fuse_conn(inode);
515 struct fuse_inode *fi = get_fuse_inode(inode);
516
517 spin_lock(&fc->lock);
518 if (attr_ver == fi->attr_version && size < inode->i_size) {
519 fi->attr_version = ++fc->attr_version;
520 i_size_write(inode, size);
521 }
522 spin_unlock(&fc->lock);
523}
524
525static int fuse_readpage(struct file *file, struct page *page)
526{
527 struct inode *inode = page->mapping->host;
528 struct fuse_conn *fc = get_fuse_conn(inode);
529 struct fuse_req *req;
530 size_t num_read;
531 loff_t pos = page_offset(page);
532 size_t count = PAGE_CACHE_SIZE;
533 u64 attr_ver;
534 int err;
535
536 err = -EIO;
537 if (is_bad_inode(inode))
538 goto out;
539
540 /*
541 * Page writeback can extend beyond the lifetime of the
542 * page-cache page, so make sure we read a properly synced
543 * page.
544 */
545 fuse_wait_on_page_writeback(inode, page->index);
546
547 req = fuse_get_req(fc);
548 err = PTR_ERR(req);
549 if (IS_ERR(req))
550 goto out;
551
552 attr_ver = fuse_get_attr_version(fc);
553
554 req->out.page_zeroing = 1;
555 req->out.argpages = 1;
556 req->num_pages = 1;
557 req->pages[0] = page;
558 num_read = fuse_send_read(req, file, pos, count, NULL);
559 err = req->out.h.error;
560 fuse_put_request(fc, req);
561
562 if (!err) {
563 /*
564 * Short read means EOF. If file size is larger, truncate it
565 */
566 if (num_read < count)
567 fuse_read_update_size(inode, pos + num_read, attr_ver);
568
569 SetPageUptodate(page);
570 }
571
572 fuse_invalidate_attr(inode); /* atime changed */
573 out:
574 unlock_page(page);
575 return err;
576}
577
578static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
579{
580 int i;
581 size_t count = req->misc.read.in.size;
582 size_t num_read = req->out.args[0].size;
583 struct address_space *mapping = NULL;
584
585 for (i = 0; mapping == NULL && i < req->num_pages; i++)
586 mapping = req->pages[i]->mapping;
587
588 if (mapping) {
589 struct inode *inode = mapping->host;
590
591 /*
592 * Short read means EOF. If file size is larger, truncate it
593 */
594 if (!req->out.h.error && num_read < count) {
595 loff_t pos;
596
597 pos = page_offset(req->pages[0]) + num_read;
598 fuse_read_update_size(inode, pos,
599 req->misc.read.attr_ver);
600 }
601 fuse_invalidate_attr(inode); /* atime changed */
602 }
603
604 for (i = 0; i < req->num_pages; i++) {
605 struct page *page = req->pages[i];
606 if (!req->out.h.error)
607 SetPageUptodate(page);
608 else
609 SetPageError(page);
610 unlock_page(page);
611 page_cache_release(page);
612 }
613 if (req->ff)
614 fuse_file_put(req->ff, false);
615}
616
617static void fuse_send_readpages(struct fuse_req *req, struct file *file)
618{
619 struct fuse_file *ff = file->private_data;
620 struct fuse_conn *fc = ff->fc;
621 loff_t pos = page_offset(req->pages[0]);
622 size_t count = req->num_pages << PAGE_CACHE_SHIFT;
623
624 req->out.argpages = 1;
625 req->out.page_zeroing = 1;
626 req->out.page_replace = 1;
627 fuse_read_fill(req, file, pos, count, FUSE_READ);
628 req->misc.read.attr_ver = fuse_get_attr_version(fc);
629 if (fc->async_read) {
630 req->ff = fuse_file_get(ff);
631 req->end = fuse_readpages_end;
632 fuse_request_send_background(fc, req);
633 } else {
634 fuse_request_send(fc, req);
635 fuse_readpages_end(fc, req);
636 fuse_put_request(fc, req);
637 }
638}
639
640struct fuse_fill_data {
641 struct fuse_req *req;
642 struct file *file;
643 struct inode *inode;
644};
645
646static int fuse_readpages_fill(void *_data, struct page *page)
647{
648 struct fuse_fill_data *data = _data;
649 struct fuse_req *req = data->req;
650 struct inode *inode = data->inode;
651 struct fuse_conn *fc = get_fuse_conn(inode);
652
653 fuse_wait_on_page_writeback(inode, page->index);
654
655 if (req->num_pages &&
656 (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
657 (req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_read ||
658 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
659 fuse_send_readpages(req, data->file);
660 data->req = req = fuse_get_req(fc);
661 if (IS_ERR(req)) {
662 unlock_page(page);
663 return PTR_ERR(req);
664 }
665 }
666 page_cache_get(page);
667 req->pages[req->num_pages] = page;
668 req->num_pages++;
669 return 0;
670}
671
672static int fuse_readpages(struct file *file, struct address_space *mapping,
673 struct list_head *pages, unsigned nr_pages)
674{
675 struct inode *inode = mapping->host;
676 struct fuse_conn *fc = get_fuse_conn(inode);
677 struct fuse_fill_data data;
678 int err;
679
680 err = -EIO;
681 if (is_bad_inode(inode))
682 goto out;
683
684 data.file = file;
685 data.inode = inode;
686 data.req = fuse_get_req(fc);
687 err = PTR_ERR(data.req);
688 if (IS_ERR(data.req))
689 goto out;
690
691 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
692 if (!err) {
693 if (data.req->num_pages)
694 fuse_send_readpages(data.req, file);
695 else
696 fuse_put_request(fc, data.req);
697 }
698out:
699 return err;
700}
701
702static ssize_t fuse_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
703 unsigned long nr_segs, loff_t pos)
704{
705 struct inode *inode = iocb->ki_filp->f_mapping->host;
706
707 if (pos + iov_length(iov, nr_segs) > i_size_read(inode)) {
708 int err;
709 /*
710 * If trying to read past EOF, make sure the i_size
711 * attribute is up-to-date.
712 */
713 err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
714 if (err)
715 return err;
716 }
717
718 return generic_file_aio_read(iocb, iov, nr_segs, pos);
719}
720
721static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
722 loff_t pos, size_t count)
723{
724 struct fuse_write_in *inarg = &req->misc.write.in;
725 struct fuse_write_out *outarg = &req->misc.write.out;
726
727 inarg->fh = ff->fh;
728 inarg->offset = pos;
729 inarg->size = count;
730 req->in.h.opcode = FUSE_WRITE;
731 req->in.h.nodeid = ff->nodeid;
732 req->in.numargs = 2;
733 if (ff->fc->minor < 9)
734 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
735 else
736 req->in.args[0].size = sizeof(struct fuse_write_in);
737 req->in.args[0].value = inarg;
738 req->in.args[1].size = count;
739 req->out.numargs = 1;
740 req->out.args[0].size = sizeof(struct fuse_write_out);
741 req->out.args[0].value = outarg;
742}
743
744static size_t fuse_send_write(struct fuse_req *req, struct file *file,
745 loff_t pos, size_t count, fl_owner_t owner)
746{
747 struct fuse_file *ff = file->private_data;
748 struct fuse_conn *fc = ff->fc;
749 struct fuse_write_in *inarg = &req->misc.write.in;
750
751 fuse_write_fill(req, ff, pos, count);
752 inarg->flags = file->f_flags;
753 if (owner != NULL) {
754 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
755 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
756 }
757 fuse_request_send(fc, req);
758 return req->misc.write.out.size;
759}
760
761void fuse_write_update_size(struct inode *inode, loff_t pos)
762{
763 struct fuse_conn *fc = get_fuse_conn(inode);
764 struct fuse_inode *fi = get_fuse_inode(inode);
765
766 spin_lock(&fc->lock);
767 fi->attr_version = ++fc->attr_version;
768 if (pos > inode->i_size)
769 i_size_write(inode, pos);
770 spin_unlock(&fc->lock);
771}
772
773static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
774 struct inode *inode, loff_t pos,
775 size_t count)
776{
777 size_t res;
778 unsigned offset;
779 unsigned i;
780
781 for (i = 0; i < req->num_pages; i++)
782 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
783
784 res = fuse_send_write(req, file, pos, count, NULL);
785
786 offset = req->page_offset;
787 count = res;
788 for (i = 0; i < req->num_pages; i++) {
789 struct page *page = req->pages[i];
790
791 if (!req->out.h.error && !offset && count >= PAGE_CACHE_SIZE)
792 SetPageUptodate(page);
793
794 if (count > PAGE_CACHE_SIZE - offset)
795 count -= PAGE_CACHE_SIZE - offset;
796 else
797 count = 0;
798 offset = 0;
799
800 unlock_page(page);
801 page_cache_release(page);
802 }
803
804 return res;
805}
806
807static ssize_t fuse_fill_write_pages(struct fuse_req *req,
808 struct address_space *mapping,
809 struct iov_iter *ii, loff_t pos)
810{
811 struct fuse_conn *fc = get_fuse_conn(mapping->host);
812 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
813 size_t count = 0;
814 int err;
815
816 req->in.argpages = 1;
817 req->page_offset = offset;
818
819 do {
820 size_t tmp;
821 struct page *page;
822 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
823 size_t bytes = min_t(size_t, PAGE_CACHE_SIZE - offset,
824 iov_iter_count(ii));
825
826 bytes = min_t(size_t, bytes, fc->max_write - count);
827
828 again:
829 err = -EFAULT;
830 if (iov_iter_fault_in_readable(ii, bytes))
831 break;
832
833 err = -ENOMEM;
834 page = grab_cache_page_write_begin(mapping, index, 0);
835 if (!page)
836 break;
837
838 if (mapping_writably_mapped(mapping))
839 flush_dcache_page(page);
840
841 pagefault_disable();
842 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
843 pagefault_enable();
844 flush_dcache_page(page);
845
846 mark_page_accessed(page);
847
848 if (!tmp) {
849 unlock_page(page);
850 page_cache_release(page);
851 bytes = min(bytes, iov_iter_single_seg_count(ii));
852 goto again;
853 }
854
855 err = 0;
856 req->pages[req->num_pages] = page;
857 req->num_pages++;
858
859 iov_iter_advance(ii, tmp);
860 count += tmp;
861 pos += tmp;
862 offset += tmp;
863 if (offset == PAGE_CACHE_SIZE)
864 offset = 0;
865
866 if (!fc->big_writes)
867 break;
868 } while (iov_iter_count(ii) && count < fc->max_write &&
869 req->num_pages < FUSE_MAX_PAGES_PER_REQ && offset == 0);
870
871 return count > 0 ? count : err;
872}
873
874static ssize_t fuse_perform_write(struct file *file,
875 struct address_space *mapping,
876 struct iov_iter *ii, loff_t pos)
877{
878 struct inode *inode = mapping->host;
879 struct fuse_conn *fc = get_fuse_conn(inode);
880 int err = 0;
881 ssize_t res = 0;
882
883 if (is_bad_inode(inode))
884 return -EIO;
885
886 do {
887 struct fuse_req *req;
888 ssize_t count;
889
890 req = fuse_get_req(fc);
891 if (IS_ERR(req)) {
892 err = PTR_ERR(req);
893 break;
894 }
895
896 count = fuse_fill_write_pages(req, mapping, ii, pos);
897 if (count <= 0) {
898 err = count;
899 } else {
900 size_t num_written;
901
902 num_written = fuse_send_write_pages(req, file, inode,
903 pos, count);
904 err = req->out.h.error;
905 if (!err) {
906 res += num_written;
907 pos += num_written;
908
909 /* break out of the loop on short write */
910 if (num_written != count)
911 err = -EIO;
912 }
913 }
914 fuse_put_request(fc, req);
915 } while (!err && iov_iter_count(ii));
916
917 if (res > 0)
918 fuse_write_update_size(inode, pos);
919
920 fuse_invalidate_attr(inode);
921
922 return res > 0 ? res : err;
923}
924
925static ssize_t fuse_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
926 unsigned long nr_segs, loff_t pos)
927{
928 struct file *file = iocb->ki_filp;
929 struct address_space *mapping = file->f_mapping;
930 size_t count = 0;
931 size_t ocount = 0;
932 ssize_t written = 0;
933 ssize_t written_buffered = 0;
934 struct inode *inode = mapping->host;
935 ssize_t err;
936 struct iov_iter i;
937 loff_t endbyte = 0;
938
939 WARN_ON(iocb->ki_pos != pos);
940
941 ocount = 0;
942 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
943 if (err)
944 return err;
945
946 count = ocount;
947
948 mutex_lock(&inode->i_mutex);
949 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
950
951 /* We can write back this queue in page reclaim */
952 current->backing_dev_info = mapping->backing_dev_info;
953
954 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
955 if (err)
956 goto out;
957
958 if (count == 0)
959 goto out;
960
961 err = file_remove_suid(file);
962 if (err)
963 goto out;
964
965 err = file_update_time(file);
966 if (err)
967 goto out;
968
969 if (file->f_flags & O_DIRECT) {
970 written = generic_file_direct_write(iocb, iov, &nr_segs,
971 pos, &iocb->ki_pos,
972 count, ocount);
973 if (written < 0 || written == count)
974 goto out;
975
976 pos += written;
977 count -= written;
978
979 iov_iter_init(&i, iov, nr_segs, count, written);
980 written_buffered = fuse_perform_write(file, mapping, &i, pos);
981 if (written_buffered < 0) {
982 err = written_buffered;
983 goto out;
984 }
985 endbyte = pos + written_buffered - 1;
986
987 err = filemap_write_and_wait_range(file->f_mapping, pos,
988 endbyte);
989 if (err)
990 goto out;
991
992 invalidate_mapping_pages(file->f_mapping,
993 pos >> PAGE_CACHE_SHIFT,
994 endbyte >> PAGE_CACHE_SHIFT);
995
996 written += written_buffered;
997 iocb->ki_pos = pos + written_buffered;
998 } else {
999 iov_iter_init(&i, iov, nr_segs, count, 0);
1000 written = fuse_perform_write(file, mapping, &i, pos);
1001 if (written >= 0)
1002 iocb->ki_pos = pos + written;
1003 }
1004out:
1005 current->backing_dev_info = NULL;
1006 mutex_unlock(&inode->i_mutex);
1007
1008 return written ? written : err;
1009}
1010
1011static void fuse_release_user_pages(struct fuse_req *req, int write)
1012{
1013 unsigned i;
1014
1015 for (i = 0; i < req->num_pages; i++) {
1016 struct page *page = req->pages[i];
1017 if (write)
1018 set_page_dirty_lock(page);
1019 put_page(page);
1020 }
1021}
1022
1023static int fuse_get_user_pages(struct fuse_req *req, const char __user *buf,
1024 size_t *nbytesp, int write)
1025{
1026 size_t nbytes = *nbytesp;
1027 unsigned long user_addr = (unsigned long) buf;
1028 unsigned offset = user_addr & ~PAGE_MASK;
1029 int npages;
1030
1031 /* Special case for kernel I/O: can copy directly into the buffer */
1032 if (segment_eq(get_fs(), KERNEL_DS)) {
1033 if (write)
1034 req->in.args[1].value = (void *) user_addr;
1035 else
1036 req->out.args[0].value = (void *) user_addr;
1037
1038 return 0;
1039 }
1040
1041 nbytes = min_t(size_t, nbytes, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
1042 npages = (nbytes + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1043 npages = clamp(npages, 1, FUSE_MAX_PAGES_PER_REQ);
1044 npages = get_user_pages_fast(user_addr, npages, !write, req->pages);
1045 if (npages < 0)
1046 return npages;
1047
1048 req->num_pages = npages;
1049 req->page_offset = offset;
1050
1051 if (write)
1052 req->in.argpages = 1;
1053 else
1054 req->out.argpages = 1;
1055
1056 nbytes = (req->num_pages << PAGE_SHIFT) - req->page_offset;
1057 *nbytesp = min(*nbytesp, nbytes);
1058
1059 return 0;
1060}
1061
1062ssize_t fuse_direct_io(struct file *file, const char __user *buf,
1063 size_t count, loff_t *ppos, int write)
1064{
1065 struct fuse_file *ff = file->private_data;
1066 struct fuse_conn *fc = ff->fc;
1067 size_t nmax = write ? fc->max_write : fc->max_read;
1068 loff_t pos = *ppos;
1069 ssize_t res = 0;
1070 struct fuse_req *req;
1071
1072 req = fuse_get_req(fc);
1073 if (IS_ERR(req))
1074 return PTR_ERR(req);
1075
1076 while (count) {
1077 size_t nres;
1078 fl_owner_t owner = current->files;
1079 size_t nbytes = min(count, nmax);
1080 int err = fuse_get_user_pages(req, buf, &nbytes, write);
1081 if (err) {
1082 res = err;
1083 break;
1084 }
1085
1086 if (write)
1087 nres = fuse_send_write(req, file, pos, nbytes, owner);
1088 else
1089 nres = fuse_send_read(req, file, pos, nbytes, owner);
1090
1091 fuse_release_user_pages(req, !write);
1092 if (req->out.h.error) {
1093 if (!res)
1094 res = req->out.h.error;
1095 break;
1096 } else if (nres > nbytes) {
1097 res = -EIO;
1098 break;
1099 }
1100 count -= nres;
1101 res += nres;
1102 pos += nres;
1103 buf += nres;
1104 if (nres != nbytes)
1105 break;
1106 if (count) {
1107 fuse_put_request(fc, req);
1108 req = fuse_get_req(fc);
1109 if (IS_ERR(req))
1110 break;
1111 }
1112 }
1113 if (!IS_ERR(req))
1114 fuse_put_request(fc, req);
1115 if (res > 0)
1116 *ppos = pos;
1117
1118 return res;
1119}
1120EXPORT_SYMBOL_GPL(fuse_direct_io);
1121
1122static ssize_t fuse_direct_read(struct file *file, char __user *buf,
1123 size_t count, loff_t *ppos)
1124{
1125 ssize_t res;
1126 struct inode *inode = file->f_path.dentry->d_inode;
1127
1128 if (is_bad_inode(inode))
1129 return -EIO;
1130
1131 res = fuse_direct_io(file, buf, count, ppos, 0);
1132
1133 fuse_invalidate_attr(inode);
1134
1135 return res;
1136}
1137
1138static ssize_t __fuse_direct_write(struct file *file, const char __user *buf,
1139 size_t count, loff_t *ppos)
1140{
1141 struct inode *inode = file->f_path.dentry->d_inode;
1142 ssize_t res;
1143
1144 res = generic_write_checks(file, ppos, &count, 0);
1145 if (!res) {
1146 res = fuse_direct_io(file, buf, count, ppos, 1);
1147 if (res > 0)
1148 fuse_write_update_size(inode, *ppos);
1149 }
1150
1151 fuse_invalidate_attr(inode);
1152
1153 return res;
1154}
1155
1156static ssize_t fuse_direct_write(struct file *file, const char __user *buf,
1157 size_t count, loff_t *ppos)
1158{
1159 struct inode *inode = file->f_path.dentry->d_inode;
1160 ssize_t res;
1161
1162 if (is_bad_inode(inode))
1163 return -EIO;
1164
1165 /* Don't allow parallel writes to the same file */
1166 mutex_lock(&inode->i_mutex);
1167 res = __fuse_direct_write(file, buf, count, ppos);
1168 mutex_unlock(&inode->i_mutex);
1169
1170 return res;
1171}
1172
1173static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
1174{
1175 __free_page(req->pages[0]);
1176 fuse_file_put(req->ff, false);
1177}
1178
1179static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
1180{
1181 struct inode *inode = req->inode;
1182 struct fuse_inode *fi = get_fuse_inode(inode);
1183 struct backing_dev_info *bdi = inode->i_mapping->backing_dev_info;
1184
1185 list_del(&req->writepages_entry);
1186 dec_bdi_stat(bdi, BDI_WRITEBACK);
1187 dec_zone_page_state(req->pages[0], NR_WRITEBACK_TEMP);
1188 bdi_writeout_inc(bdi);
1189 wake_up(&fi->page_waitq);
1190}
1191
1192/* Called under fc->lock, may release and reacquire it */
1193static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req)
1194__releases(fc->lock)
1195__acquires(fc->lock)
1196{
1197 struct fuse_inode *fi = get_fuse_inode(req->inode);
1198 loff_t size = i_size_read(req->inode);
1199 struct fuse_write_in *inarg = &req->misc.write.in;
1200
1201 if (!fc->connected)
1202 goto out_free;
1203
1204 if (inarg->offset + PAGE_CACHE_SIZE <= size) {
1205 inarg->size = PAGE_CACHE_SIZE;
1206 } else if (inarg->offset < size) {
1207 inarg->size = size & (PAGE_CACHE_SIZE - 1);
1208 } else {
1209 /* Got truncated off completely */
1210 goto out_free;
1211 }
1212
1213 req->in.args[1].size = inarg->size;
1214 fi->writectr++;
1215 fuse_request_send_background_locked(fc, req);
1216 return;
1217
1218 out_free:
1219 fuse_writepage_finish(fc, req);
1220 spin_unlock(&fc->lock);
1221 fuse_writepage_free(fc, req);
1222 fuse_put_request(fc, req);
1223 spin_lock(&fc->lock);
1224}
1225
1226/*
1227 * If fi->writectr is positive (no truncate or fsync going on) send
1228 * all queued writepage requests.
1229 *
1230 * Called with fc->lock
1231 */
1232void fuse_flush_writepages(struct inode *inode)
1233__releases(fc->lock)
1234__acquires(fc->lock)
1235{
1236 struct fuse_conn *fc = get_fuse_conn(inode);
1237 struct fuse_inode *fi = get_fuse_inode(inode);
1238 struct fuse_req *req;
1239
1240 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1241 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1242 list_del_init(&req->list);
1243 fuse_send_writepage(fc, req);
1244 }
1245}
1246
1247static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1248{
1249 struct inode *inode = req->inode;
1250 struct fuse_inode *fi = get_fuse_inode(inode);
1251
1252 mapping_set_error(inode->i_mapping, req->out.h.error);
1253 spin_lock(&fc->lock);
1254 fi->writectr--;
1255 fuse_writepage_finish(fc, req);
1256 spin_unlock(&fc->lock);
1257 fuse_writepage_free(fc, req);
1258}
1259
1260static int fuse_writepage_locked(struct page *page)
1261{
1262 struct address_space *mapping = page->mapping;
1263 struct inode *inode = mapping->host;
1264 struct fuse_conn *fc = get_fuse_conn(inode);
1265 struct fuse_inode *fi = get_fuse_inode(inode);
1266 struct fuse_req *req;
1267 struct fuse_file *ff;
1268 struct page *tmp_page;
1269
1270 set_page_writeback(page);
1271
1272 req = fuse_request_alloc_nofs();
1273 if (!req)
1274 goto err;
1275
1276 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1277 if (!tmp_page)
1278 goto err_free;
1279
1280 spin_lock(&fc->lock);
1281 BUG_ON(list_empty(&fi->write_files));
1282 ff = list_entry(fi->write_files.next, struct fuse_file, write_entry);
1283 req->ff = fuse_file_get(ff);
1284 spin_unlock(&fc->lock);
1285
1286 fuse_write_fill(req, ff, page_offset(page), 0);
1287
1288 copy_highpage(tmp_page, page);
1289 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
1290 req->in.argpages = 1;
1291 req->num_pages = 1;
1292 req->pages[0] = tmp_page;
1293 req->page_offset = 0;
1294 req->end = fuse_writepage_end;
1295 req->inode = inode;
1296
1297 inc_bdi_stat(mapping->backing_dev_info, BDI_WRITEBACK);
1298 inc_zone_page_state(tmp_page, NR_WRITEBACK_TEMP);
1299 end_page_writeback(page);
1300
1301 spin_lock(&fc->lock);
1302 list_add(&req->writepages_entry, &fi->writepages);
1303 list_add_tail(&req->list, &fi->queued_writes);
1304 fuse_flush_writepages(inode);
1305 spin_unlock(&fc->lock);
1306
1307 return 0;
1308
1309err_free:
1310 fuse_request_free(req);
1311err:
1312 end_page_writeback(page);
1313 return -ENOMEM;
1314}
1315
1316static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1317{
1318 int err;
1319
1320 err = fuse_writepage_locked(page);
1321 unlock_page(page);
1322
1323 return err;
1324}
1325
1326static int fuse_launder_page(struct page *page)
1327{
1328 int err = 0;
1329 if (clear_page_dirty_for_io(page)) {
1330 struct inode *inode = page->mapping->host;
1331 err = fuse_writepage_locked(page);
1332 if (!err)
1333 fuse_wait_on_page_writeback(inode, page->index);
1334 }
1335 return err;
1336}
1337
1338/*
1339 * Write back dirty pages now, because there may not be any suitable
1340 * open files later
1341 */
1342static void fuse_vma_close(struct vm_area_struct *vma)
1343{
1344 filemap_write_and_wait(vma->vm_file->f_mapping);
1345}
1346
1347/*
1348 * Wait for writeback against this page to complete before allowing it
1349 * to be marked dirty again, and hence written back again, possibly
1350 * before the previous writepage completed.
1351 *
1352 * Block here, instead of in ->writepage(), so that the userspace fs
1353 * can only block processes actually operating on the filesystem.
1354 *
1355 * Otherwise unprivileged userspace fs would be able to block
1356 * unrelated:
1357 *
1358 * - page migration
1359 * - sync(2)
1360 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
1361 */
1362static int fuse_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
1363{
1364 struct page *page = vmf->page;
1365 /*
1366 * Don't use page->mapping as it may become NULL from a
1367 * concurrent truncate.
1368 */
1369 struct inode *inode = vma->vm_file->f_mapping->host;
1370
1371 fuse_wait_on_page_writeback(inode, page->index);
1372 return 0;
1373}
1374
1375static const struct vm_operations_struct fuse_file_vm_ops = {
1376 .close = fuse_vma_close,
1377 .fault = filemap_fault,
1378 .page_mkwrite = fuse_page_mkwrite,
1379};
1380
1381static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
1382{
1383 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE)) {
1384 struct inode *inode = file->f_dentry->d_inode;
1385 struct fuse_conn *fc = get_fuse_conn(inode);
1386 struct fuse_inode *fi = get_fuse_inode(inode);
1387 struct fuse_file *ff = file->private_data;
1388 /*
1389 * file may be written through mmap, so chain it onto the
1390 * inodes's write_file list
1391 */
1392 spin_lock(&fc->lock);
1393 if (list_empty(&ff->write_entry))
1394 list_add(&ff->write_entry, &fi->write_files);
1395 spin_unlock(&fc->lock);
1396 }
1397 file_accessed(file);
1398 vma->vm_ops = &fuse_file_vm_ops;
1399 return 0;
1400}
1401
1402static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
1403{
1404 /* Can't provide the coherency needed for MAP_SHARED */
1405 if (vma->vm_flags & VM_MAYSHARE)
1406 return -ENODEV;
1407
1408 invalidate_inode_pages2(file->f_mapping);
1409
1410 return generic_file_mmap(file, vma);
1411}
1412
1413static int convert_fuse_file_lock(const struct fuse_file_lock *ffl,
1414 struct file_lock *fl)
1415{
1416 switch (ffl->type) {
1417 case F_UNLCK:
1418 break;
1419
1420 case F_RDLCK:
1421 case F_WRLCK:
1422 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
1423 ffl->end < ffl->start)
1424 return -EIO;
1425
1426 fl->fl_start = ffl->start;
1427 fl->fl_end = ffl->end;
1428 fl->fl_pid = ffl->pid;
1429 break;
1430
1431 default:
1432 return -EIO;
1433 }
1434 fl->fl_type = ffl->type;
1435 return 0;
1436}
1437
1438static void fuse_lk_fill(struct fuse_req *req, struct file *file,
1439 const struct file_lock *fl, int opcode, pid_t pid,
1440 int flock)
1441{
1442 struct inode *inode = file->f_path.dentry->d_inode;
1443 struct fuse_conn *fc = get_fuse_conn(inode);
1444 struct fuse_file *ff = file->private_data;
1445 struct fuse_lk_in *arg = &req->misc.lk_in;
1446
1447 arg->fh = ff->fh;
1448 arg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
1449 arg->lk.start = fl->fl_start;
1450 arg->lk.end = fl->fl_end;
1451 arg->lk.type = fl->fl_type;
1452 arg->lk.pid = pid;
1453 if (flock)
1454 arg->lk_flags |= FUSE_LK_FLOCK;
1455 req->in.h.opcode = opcode;
1456 req->in.h.nodeid = get_node_id(inode);
1457 req->in.numargs = 1;
1458 req->in.args[0].size = sizeof(*arg);
1459 req->in.args[0].value = arg;
1460}
1461
1462static int fuse_getlk(struct file *file, struct file_lock *fl)
1463{
1464 struct inode *inode = file->f_path.dentry->d_inode;
1465 struct fuse_conn *fc = get_fuse_conn(inode);
1466 struct fuse_req *req;
1467 struct fuse_lk_out outarg;
1468 int err;
1469
1470 req = fuse_get_req(fc);
1471 if (IS_ERR(req))
1472 return PTR_ERR(req);
1473
1474 fuse_lk_fill(req, file, fl, FUSE_GETLK, 0, 0);
1475 req->out.numargs = 1;
1476 req->out.args[0].size = sizeof(outarg);
1477 req->out.args[0].value = &outarg;
1478 fuse_request_send(fc, req);
1479 err = req->out.h.error;
1480 fuse_put_request(fc, req);
1481 if (!err)
1482 err = convert_fuse_file_lock(&outarg.lk, fl);
1483
1484 return err;
1485}
1486
1487static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
1488{
1489 struct inode *inode = file->f_path.dentry->d_inode;
1490 struct fuse_conn *fc = get_fuse_conn(inode);
1491 struct fuse_req *req;
1492 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
1493 pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0;
1494 int err;
1495
1496 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
1497 /* NLM needs asynchronous locks, which we don't support yet */
1498 return -ENOLCK;
1499 }
1500
1501 /* Unlock on close is handled by the flush method */
1502 if (fl->fl_flags & FL_CLOSE)
1503 return 0;
1504
1505 req = fuse_get_req(fc);
1506 if (IS_ERR(req))
1507 return PTR_ERR(req);
1508
1509 fuse_lk_fill(req, file, fl, opcode, pid, flock);
1510 fuse_request_send(fc, req);
1511 err = req->out.h.error;
1512 /* locking is restartable */
1513 if (err == -EINTR)
1514 err = -ERESTARTSYS;
1515 fuse_put_request(fc, req);
1516 return err;
1517}
1518
1519static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
1520{
1521 struct inode *inode = file->f_path.dentry->d_inode;
1522 struct fuse_conn *fc = get_fuse_conn(inode);
1523 int err;
1524
1525 if (cmd == F_CANCELLK) {
1526 err = 0;
1527 } else if (cmd == F_GETLK) {
1528 if (fc->no_lock) {
1529 posix_test_lock(file, fl);
1530 err = 0;
1531 } else
1532 err = fuse_getlk(file, fl);
1533 } else {
1534 if (fc->no_lock)
1535 err = posix_lock_file(file, fl, NULL);
1536 else
1537 err = fuse_setlk(file, fl, 0);
1538 }
1539 return err;
1540}
1541
1542static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
1543{
1544 struct inode *inode = file->f_path.dentry->d_inode;
1545 struct fuse_conn *fc = get_fuse_conn(inode);
1546 int err;
1547
1548 if (fc->no_flock) {
1549 err = flock_lock_file_wait(file, fl);
1550 } else {
1551 struct fuse_file *ff = file->private_data;
1552
1553 /* emulate flock with POSIX locks */
1554 fl->fl_owner = (fl_owner_t) file;
1555 ff->flock = true;
1556 err = fuse_setlk(file, fl, 1);
1557 }
1558
1559 return err;
1560}
1561
1562static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
1563{
1564 struct inode *inode = mapping->host;
1565 struct fuse_conn *fc = get_fuse_conn(inode);
1566 struct fuse_req *req;
1567 struct fuse_bmap_in inarg;
1568 struct fuse_bmap_out outarg;
1569 int err;
1570
1571 if (!inode->i_sb->s_bdev || fc->no_bmap)
1572 return 0;
1573
1574 req = fuse_get_req(fc);
1575 if (IS_ERR(req))
1576 return 0;
1577
1578 memset(&inarg, 0, sizeof(inarg));
1579 inarg.block = block;
1580 inarg.blocksize = inode->i_sb->s_blocksize;
1581 req->in.h.opcode = FUSE_BMAP;
1582 req->in.h.nodeid = get_node_id(inode);
1583 req->in.numargs = 1;
1584 req->in.args[0].size = sizeof(inarg);
1585 req->in.args[0].value = &inarg;
1586 req->out.numargs = 1;
1587 req->out.args[0].size = sizeof(outarg);
1588 req->out.args[0].value = &outarg;
1589 fuse_request_send(fc, req);
1590 err = req->out.h.error;
1591 fuse_put_request(fc, req);
1592 if (err == -ENOSYS)
1593 fc->no_bmap = 1;
1594
1595 return err ? 0 : outarg.block;
1596}
1597
1598static loff_t fuse_file_llseek(struct file *file, loff_t offset, int origin)
1599{
1600 loff_t retval;
1601 struct inode *inode = file->f_path.dentry->d_inode;
1602
1603 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
1604 if (origin == SEEK_CUR || origin == SEEK_SET)
1605 return generic_file_llseek(file, offset, origin);
1606
1607 mutex_lock(&inode->i_mutex);
1608 retval = fuse_update_attributes(inode, NULL, file, NULL);
1609 if (!retval)
1610 retval = generic_file_llseek(file, offset, origin);
1611 mutex_unlock(&inode->i_mutex);
1612
1613 return retval;
1614}
1615
1616static int fuse_ioctl_copy_user(struct page **pages, struct iovec *iov,
1617 unsigned int nr_segs, size_t bytes, bool to_user)
1618{
1619 struct iov_iter ii;
1620 int page_idx = 0;
1621
1622 if (!bytes)
1623 return 0;
1624
1625 iov_iter_init(&ii, iov, nr_segs, bytes, 0);
1626
1627 while (iov_iter_count(&ii)) {
1628 struct page *page = pages[page_idx++];
1629 size_t todo = min_t(size_t, PAGE_SIZE, iov_iter_count(&ii));
1630 void *kaddr;
1631
1632 kaddr = kmap(page);
1633
1634 while (todo) {
1635 char __user *uaddr = ii.iov->iov_base + ii.iov_offset;
1636 size_t iov_len = ii.iov->iov_len - ii.iov_offset;
1637 size_t copy = min(todo, iov_len);
1638 size_t left;
1639
1640 if (!to_user)
1641 left = copy_from_user(kaddr, uaddr, copy);
1642 else
1643 left = copy_to_user(uaddr, kaddr, copy);
1644
1645 if (unlikely(left))
1646 return -EFAULT;
1647
1648 iov_iter_advance(&ii, copy);
1649 todo -= copy;
1650 kaddr += copy;
1651 }
1652
1653 kunmap(page);
1654 }
1655
1656 return 0;
1657}
1658
1659/*
1660 * CUSE servers compiled on 32bit broke on 64bit kernels because the
1661 * ABI was defined to be 'struct iovec' which is different on 32bit
1662 * and 64bit. Fortunately we can determine which structure the server
1663 * used from the size of the reply.
1664 */
1665static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
1666 size_t transferred, unsigned count,
1667 bool is_compat)
1668{
1669#ifdef CONFIG_COMPAT
1670 if (count * sizeof(struct compat_iovec) == transferred) {
1671 struct compat_iovec *ciov = src;
1672 unsigned i;
1673
1674 /*
1675 * With this interface a 32bit server cannot support
1676 * non-compat (i.e. ones coming from 64bit apps) ioctl
1677 * requests
1678 */
1679 if (!is_compat)
1680 return -EINVAL;
1681
1682 for (i = 0; i < count; i++) {
1683 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
1684 dst[i].iov_len = ciov[i].iov_len;
1685 }
1686 return 0;
1687 }
1688#endif
1689
1690 if (count * sizeof(struct iovec) != transferred)
1691 return -EIO;
1692
1693 memcpy(dst, src, transferred);
1694 return 0;
1695}
1696
1697/* Make sure iov_length() won't overflow */
1698static int fuse_verify_ioctl_iov(struct iovec *iov, size_t count)
1699{
1700 size_t n;
1701 u32 max = FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT;
1702
1703 for (n = 0; n < count; n++, iov++) {
1704 if (iov->iov_len > (size_t) max)
1705 return -ENOMEM;
1706 max -= iov->iov_len;
1707 }
1708 return 0;
1709}
1710
1711static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
1712 void *src, size_t transferred, unsigned count,
1713 bool is_compat)
1714{
1715 unsigned i;
1716 struct fuse_ioctl_iovec *fiov = src;
1717
1718 if (fc->minor < 16) {
1719 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
1720 count, is_compat);
1721 }
1722
1723 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
1724 return -EIO;
1725
1726 for (i = 0; i < count; i++) {
1727 /* Did the server supply an inappropriate value? */
1728 if (fiov[i].base != (unsigned long) fiov[i].base ||
1729 fiov[i].len != (unsigned long) fiov[i].len)
1730 return -EIO;
1731
1732 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
1733 dst[i].iov_len = (size_t) fiov[i].len;
1734
1735#ifdef CONFIG_COMPAT
1736 if (is_compat &&
1737 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
1738 (compat_size_t) dst[i].iov_len != fiov[i].len))
1739 return -EIO;
1740#endif
1741 }
1742
1743 return 0;
1744}
1745
1746
1747/*
1748 * For ioctls, there is no generic way to determine how much memory
1749 * needs to be read and/or written. Furthermore, ioctls are allowed
1750 * to dereference the passed pointer, so the parameter requires deep
1751 * copying but FUSE has no idea whatsoever about what to copy in or
1752 * out.
1753 *
1754 * This is solved by allowing FUSE server to retry ioctl with
1755 * necessary in/out iovecs. Let's assume the ioctl implementation
1756 * needs to read in the following structure.
1757 *
1758 * struct a {
1759 * char *buf;
1760 * size_t buflen;
1761 * }
1762 *
1763 * On the first callout to FUSE server, inarg->in_size and
1764 * inarg->out_size will be NULL; then, the server completes the ioctl
1765 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
1766 * the actual iov array to
1767 *
1768 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
1769 *
1770 * which tells FUSE to copy in the requested area and retry the ioctl.
1771 * On the second round, the server has access to the structure and
1772 * from that it can tell what to look for next, so on the invocation,
1773 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
1774 *
1775 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
1776 * { .iov_base = a.buf, .iov_len = a.buflen } }
1777 *
1778 * FUSE will copy both struct a and the pointed buffer from the
1779 * process doing the ioctl and retry ioctl with both struct a and the
1780 * buffer.
1781 *
1782 * This time, FUSE server has everything it needs and completes ioctl
1783 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
1784 *
1785 * Copying data out works the same way.
1786 *
1787 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
1788 * automatically initializes in and out iovs by decoding @cmd with
1789 * _IOC_* macros and the server is not allowed to request RETRY. This
1790 * limits ioctl data transfers to well-formed ioctls and is the forced
1791 * behavior for all FUSE servers.
1792 */
1793long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
1794 unsigned int flags)
1795{
1796 struct fuse_file *ff = file->private_data;
1797 struct fuse_conn *fc = ff->fc;
1798 struct fuse_ioctl_in inarg = {
1799 .fh = ff->fh,
1800 .cmd = cmd,
1801 .arg = arg,
1802 .flags = flags
1803 };
1804 struct fuse_ioctl_out outarg;
1805 struct fuse_req *req = NULL;
1806 struct page **pages = NULL;
1807 struct iovec *iov_page = NULL;
1808 struct iovec *in_iov = NULL, *out_iov = NULL;
1809 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
1810 size_t in_size, out_size, transferred;
1811 int err;
1812
1813#if BITS_PER_LONG == 32
1814 inarg.flags |= FUSE_IOCTL_32BIT;
1815#else
1816 if (flags & FUSE_IOCTL_COMPAT)
1817 inarg.flags |= FUSE_IOCTL_32BIT;
1818#endif
1819
1820 /* assume all the iovs returned by client always fits in a page */
1821 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
1822
1823 err = -ENOMEM;
1824 pages = kcalloc(FUSE_MAX_PAGES_PER_REQ, sizeof(pages[0]), GFP_KERNEL);
1825 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
1826 if (!pages || !iov_page)
1827 goto out;
1828
1829 /*
1830 * If restricted, initialize IO parameters as encoded in @cmd.
1831 * RETRY from server is not allowed.
1832 */
1833 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
1834 struct iovec *iov = iov_page;
1835
1836 iov->iov_base = (void __user *)arg;
1837 iov->iov_len = _IOC_SIZE(cmd);
1838
1839 if (_IOC_DIR(cmd) & _IOC_WRITE) {
1840 in_iov = iov;
1841 in_iovs = 1;
1842 }
1843
1844 if (_IOC_DIR(cmd) & _IOC_READ) {
1845 out_iov = iov;
1846 out_iovs = 1;
1847 }
1848 }
1849
1850 retry:
1851 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
1852 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
1853
1854 /*
1855 * Out data can be used either for actual out data or iovs,
1856 * make sure there always is at least one page.
1857 */
1858 out_size = max_t(size_t, out_size, PAGE_SIZE);
1859 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
1860
1861 /* make sure there are enough buffer pages and init request with them */
1862 err = -ENOMEM;
1863 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
1864 goto out;
1865 while (num_pages < max_pages) {
1866 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
1867 if (!pages[num_pages])
1868 goto out;
1869 num_pages++;
1870 }
1871
1872 req = fuse_get_req(fc);
1873 if (IS_ERR(req)) {
1874 err = PTR_ERR(req);
1875 req = NULL;
1876 goto out;
1877 }
1878 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
1879 req->num_pages = num_pages;
1880
1881 /* okay, let's send it to the client */
1882 req->in.h.opcode = FUSE_IOCTL;
1883 req->in.h.nodeid = ff->nodeid;
1884 req->in.numargs = 1;
1885 req->in.args[0].size = sizeof(inarg);
1886 req->in.args[0].value = &inarg;
1887 if (in_size) {
1888 req->in.numargs++;
1889 req->in.args[1].size = in_size;
1890 req->in.argpages = 1;
1891
1892 err = fuse_ioctl_copy_user(pages, in_iov, in_iovs, in_size,
1893 false);
1894 if (err)
1895 goto out;
1896 }
1897
1898 req->out.numargs = 2;
1899 req->out.args[0].size = sizeof(outarg);
1900 req->out.args[0].value = &outarg;
1901 req->out.args[1].size = out_size;
1902 req->out.argpages = 1;
1903 req->out.argvar = 1;
1904
1905 fuse_request_send(fc, req);
1906 err = req->out.h.error;
1907 transferred = req->out.args[1].size;
1908 fuse_put_request(fc, req);
1909 req = NULL;
1910 if (err)
1911 goto out;
1912
1913 /* did it ask for retry? */
1914 if (outarg.flags & FUSE_IOCTL_RETRY) {
1915 void *vaddr;
1916
1917 /* no retry if in restricted mode */
1918 err = -EIO;
1919 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
1920 goto out;
1921
1922 in_iovs = outarg.in_iovs;
1923 out_iovs = outarg.out_iovs;
1924
1925 /*
1926 * Make sure things are in boundary, separate checks
1927 * are to protect against overflow.
1928 */
1929 err = -ENOMEM;
1930 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
1931 out_iovs > FUSE_IOCTL_MAX_IOV ||
1932 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
1933 goto out;
1934
1935 vaddr = kmap_atomic(pages[0]);
1936 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
1937 transferred, in_iovs + out_iovs,
1938 (flags & FUSE_IOCTL_COMPAT) != 0);
1939 kunmap_atomic(vaddr);
1940 if (err)
1941 goto out;
1942
1943 in_iov = iov_page;
1944 out_iov = in_iov + in_iovs;
1945
1946 err = fuse_verify_ioctl_iov(in_iov, in_iovs);
1947 if (err)
1948 goto out;
1949
1950 err = fuse_verify_ioctl_iov(out_iov, out_iovs);
1951 if (err)
1952 goto out;
1953
1954 goto retry;
1955 }
1956
1957 err = -EIO;
1958 if (transferred > inarg.out_size)
1959 goto out;
1960
1961 err = fuse_ioctl_copy_user(pages, out_iov, out_iovs, transferred, true);
1962 out:
1963 if (req)
1964 fuse_put_request(fc, req);
1965 free_page((unsigned long) iov_page);
1966 while (num_pages)
1967 __free_page(pages[--num_pages]);
1968 kfree(pages);
1969
1970 return err ? err : outarg.result;
1971}
1972EXPORT_SYMBOL_GPL(fuse_do_ioctl);
1973
1974long fuse_ioctl_common(struct file *file, unsigned int cmd,
1975 unsigned long arg, unsigned int flags)
1976{
1977 struct inode *inode = file->f_dentry->d_inode;
1978 struct fuse_conn *fc = get_fuse_conn(inode);
1979
1980 if (!fuse_allow_task(fc, current))
1981 return -EACCES;
1982
1983 if (is_bad_inode(inode))
1984 return -EIO;
1985
1986 return fuse_do_ioctl(file, cmd, arg, flags);
1987}
1988
1989static long fuse_file_ioctl(struct file *file, unsigned int cmd,
1990 unsigned long arg)
1991{
1992 return fuse_ioctl_common(file, cmd, arg, 0);
1993}
1994
1995static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
1996 unsigned long arg)
1997{
1998 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
1999}
2000
2001/*
2002 * All files which have been polled are linked to RB tree
2003 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2004 * find the matching one.
2005 */
2006static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2007 struct rb_node **parent_out)
2008{
2009 struct rb_node **link = &fc->polled_files.rb_node;
2010 struct rb_node *last = NULL;
2011
2012 while (*link) {
2013 struct fuse_file *ff;
2014
2015 last = *link;
2016 ff = rb_entry(last, struct fuse_file, polled_node);
2017
2018 if (kh < ff->kh)
2019 link = &last->rb_left;
2020 else if (kh > ff->kh)
2021 link = &last->rb_right;
2022 else
2023 return link;
2024 }
2025
2026 if (parent_out)
2027 *parent_out = last;
2028 return link;
2029}
2030
2031/*
2032 * The file is about to be polled. Make sure it's on the polled_files
2033 * RB tree. Note that files once added to the polled_files tree are
2034 * not removed before the file is released. This is because a file
2035 * polled once is likely to be polled again.
2036 */
2037static void fuse_register_polled_file(struct fuse_conn *fc,
2038 struct fuse_file *ff)
2039{
2040 spin_lock(&fc->lock);
2041 if (RB_EMPTY_NODE(&ff->polled_node)) {
2042 struct rb_node **link, *parent;
2043
2044 link = fuse_find_polled_node(fc, ff->kh, &parent);
2045 BUG_ON(*link);
2046 rb_link_node(&ff->polled_node, parent, link);
2047 rb_insert_color(&ff->polled_node, &fc->polled_files);
2048 }
2049 spin_unlock(&fc->lock);
2050}
2051
2052unsigned fuse_file_poll(struct file *file, poll_table *wait)
2053{
2054 struct fuse_file *ff = file->private_data;
2055 struct fuse_conn *fc = ff->fc;
2056 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2057 struct fuse_poll_out outarg;
2058 struct fuse_req *req;
2059 int err;
2060
2061 if (fc->no_poll)
2062 return DEFAULT_POLLMASK;
2063
2064 poll_wait(file, &ff->poll_wait, wait);
2065
2066 /*
2067 * Ask for notification iff there's someone waiting for it.
2068 * The client may ignore the flag and always notify.
2069 */
2070 if (waitqueue_active(&ff->poll_wait)) {
2071 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2072 fuse_register_polled_file(fc, ff);
2073 }
2074
2075 req = fuse_get_req(fc);
2076 if (IS_ERR(req))
2077 return POLLERR;
2078
2079 req->in.h.opcode = FUSE_POLL;
2080 req->in.h.nodeid = ff->nodeid;
2081 req->in.numargs = 1;
2082 req->in.args[0].size = sizeof(inarg);
2083 req->in.args[0].value = &inarg;
2084 req->out.numargs = 1;
2085 req->out.args[0].size = sizeof(outarg);
2086 req->out.args[0].value = &outarg;
2087 fuse_request_send(fc, req);
2088 err = req->out.h.error;
2089 fuse_put_request(fc, req);
2090
2091 if (!err)
2092 return outarg.revents;
2093 if (err == -ENOSYS) {
2094 fc->no_poll = 1;
2095 return DEFAULT_POLLMASK;
2096 }
2097 return POLLERR;
2098}
2099EXPORT_SYMBOL_GPL(fuse_file_poll);
2100
2101/*
2102 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2103 * wakes up the poll waiters.
2104 */
2105int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2106 struct fuse_notify_poll_wakeup_out *outarg)
2107{
2108 u64 kh = outarg->kh;
2109 struct rb_node **link;
2110
2111 spin_lock(&fc->lock);
2112
2113 link = fuse_find_polled_node(fc, kh, NULL);
2114 if (*link) {
2115 struct fuse_file *ff;
2116
2117 ff = rb_entry(*link, struct fuse_file, polled_node);
2118 wake_up_interruptible_sync(&ff->poll_wait);
2119 }
2120
2121 spin_unlock(&fc->lock);
2122 return 0;
2123}
2124
2125static ssize_t fuse_loop_dio(struct file *filp, const struct iovec *iov,
2126 unsigned long nr_segs, loff_t *ppos, int rw)
2127{
2128 const struct iovec *vector = iov;
2129 ssize_t ret = 0;
2130
2131 while (nr_segs > 0) {
2132 void __user *base;
2133 size_t len;
2134 ssize_t nr;
2135
2136 base = vector->iov_base;
2137 len = vector->iov_len;
2138 vector++;
2139 nr_segs--;
2140
2141 if (rw == WRITE)
2142 nr = __fuse_direct_write(filp, base, len, ppos);
2143 else
2144 nr = fuse_direct_read(filp, base, len, ppos);
2145
2146 if (nr < 0) {
2147 if (!ret)
2148 ret = nr;
2149 break;
2150 }
2151 ret += nr;
2152 if (nr != len)
2153 break;
2154 }
2155
2156 return ret;
2157}
2158
2159
2160static ssize_t
2161fuse_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
2162 loff_t offset, unsigned long nr_segs)
2163{
2164 ssize_t ret = 0;
2165 struct file *file = NULL;
2166 loff_t pos = 0;
2167
2168 file = iocb->ki_filp;
2169 pos = offset;
2170
2171 ret = fuse_loop_dio(file, iov, nr_segs, &pos, rw);
2172
2173 return ret;
2174}
2175
2176long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
2177 loff_t length)
2178{
2179 struct fuse_file *ff = file->private_data;
2180 struct fuse_conn *fc = ff->fc;
2181 struct fuse_req *req;
2182 struct fuse_fallocate_in inarg = {
2183 .fh = ff->fh,
2184 .offset = offset,
2185 .length = length,
2186 .mode = mode
2187 };
2188 int err;
2189
2190 if (fc->no_fallocate)
2191 return -EOPNOTSUPP;
2192
2193 req = fuse_get_req(fc);
2194 if (IS_ERR(req))
2195 return PTR_ERR(req);
2196
2197 req->in.h.opcode = FUSE_FALLOCATE;
2198 req->in.h.nodeid = ff->nodeid;
2199 req->in.numargs = 1;
2200 req->in.args[0].size = sizeof(inarg);
2201 req->in.args[0].value = &inarg;
2202 fuse_request_send(fc, req);
2203 err = req->out.h.error;
2204 if (err == -ENOSYS) {
2205 fc->no_fallocate = 1;
2206 err = -EOPNOTSUPP;
2207 }
2208 fuse_put_request(fc, req);
2209
2210 return err;
2211}
2212EXPORT_SYMBOL_GPL(fuse_file_fallocate);
2213
2214static const struct file_operations fuse_file_operations = {
2215 .llseek = fuse_file_llseek,
2216 .read = do_sync_read,
2217 .aio_read = fuse_file_aio_read,
2218 .write = do_sync_write,
2219 .aio_write = fuse_file_aio_write,
2220 .mmap = fuse_file_mmap,
2221 .open = fuse_open,
2222 .flush = fuse_flush,
2223 .release = fuse_release,
2224 .fsync = fuse_fsync,
2225 .lock = fuse_file_lock,
2226 .flock = fuse_file_flock,
2227 .splice_read = generic_file_splice_read,
2228 .unlocked_ioctl = fuse_file_ioctl,
2229 .compat_ioctl = fuse_file_compat_ioctl,
2230 .poll = fuse_file_poll,
2231 .fallocate = fuse_file_fallocate,
2232};
2233
2234static const struct file_operations fuse_direct_io_file_operations = {
2235 .llseek = fuse_file_llseek,
2236 .read = fuse_direct_read,
2237 .write = fuse_direct_write,
2238 .mmap = fuse_direct_mmap,
2239 .open = fuse_open,
2240 .flush = fuse_flush,
2241 .release = fuse_release,
2242 .fsync = fuse_fsync,
2243 .lock = fuse_file_lock,
2244 .flock = fuse_file_flock,
2245 .unlocked_ioctl = fuse_file_ioctl,
2246 .compat_ioctl = fuse_file_compat_ioctl,
2247 .poll = fuse_file_poll,
2248 .fallocate = fuse_file_fallocate,
2249 /* no splice_read */
2250};
2251
2252static const struct address_space_operations fuse_file_aops = {
2253 .readpage = fuse_readpage,
2254 .writepage = fuse_writepage,
2255 .launder_page = fuse_launder_page,
2256 .readpages = fuse_readpages,
2257 .set_page_dirty = __set_page_dirty_nobuffers,
2258 .bmap = fuse_bmap,
2259 .direct_IO = fuse_direct_IO,
2260};
2261
2262void fuse_init_file_inode(struct inode *inode)
2263{
2264 inode->i_fop = &fuse_file_operations;
2265 inode->i_data.a_ops = &fuse_file_aops;
2266}
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/sched/signal.h>
16#include <linux/module.h>
17#include <linux/swap.h>
18#include <linux/falloc.h>
19#include <linux/uio.h>
20#include <linux/fs.h>
21#include <linux/filelock.h>
22#include <linux/splice.h>
23#include <linux/task_io_accounting_ops.h>
24
25static int fuse_send_open(struct fuse_mount *fm, u64 nodeid,
26 unsigned int open_flags, int opcode,
27 struct fuse_open_out *outargp)
28{
29 struct fuse_open_in inarg;
30 FUSE_ARGS(args);
31
32 memset(&inarg, 0, sizeof(inarg));
33 inarg.flags = open_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
34 if (!fm->fc->atomic_o_trunc)
35 inarg.flags &= ~O_TRUNC;
36
37 if (fm->fc->handle_killpriv_v2 &&
38 (inarg.flags & O_TRUNC) && !capable(CAP_FSETID)) {
39 inarg.open_flags |= FUSE_OPEN_KILL_SUIDGID;
40 }
41
42 args.opcode = opcode;
43 args.nodeid = nodeid;
44 args.in_numargs = 1;
45 args.in_args[0].size = sizeof(inarg);
46 args.in_args[0].value = &inarg;
47 args.out_numargs = 1;
48 args.out_args[0].size = sizeof(*outargp);
49 args.out_args[0].value = outargp;
50
51 return fuse_simple_request(fm, &args);
52}
53
54struct fuse_file *fuse_file_alloc(struct fuse_mount *fm, bool release)
55{
56 struct fuse_file *ff;
57
58 ff = kzalloc(sizeof(struct fuse_file), GFP_KERNEL_ACCOUNT);
59 if (unlikely(!ff))
60 return NULL;
61
62 ff->fm = fm;
63 if (release) {
64 ff->args = kzalloc(sizeof(*ff->args), GFP_KERNEL_ACCOUNT);
65 if (!ff->args) {
66 kfree(ff);
67 return NULL;
68 }
69 }
70
71 INIT_LIST_HEAD(&ff->write_entry);
72 refcount_set(&ff->count, 1);
73 RB_CLEAR_NODE(&ff->polled_node);
74 init_waitqueue_head(&ff->poll_wait);
75
76 ff->kh = atomic64_inc_return(&fm->fc->khctr);
77
78 return ff;
79}
80
81void fuse_file_free(struct fuse_file *ff)
82{
83 kfree(ff->args);
84 kfree(ff);
85}
86
87static struct fuse_file *fuse_file_get(struct fuse_file *ff)
88{
89 refcount_inc(&ff->count);
90 return ff;
91}
92
93static void fuse_release_end(struct fuse_mount *fm, struct fuse_args *args,
94 int error)
95{
96 struct fuse_release_args *ra = container_of(args, typeof(*ra), args);
97
98 iput(ra->inode);
99 kfree(ra);
100}
101
102static void fuse_file_put(struct fuse_file *ff, bool sync)
103{
104 if (refcount_dec_and_test(&ff->count)) {
105 struct fuse_release_args *ra = &ff->args->release_args;
106 struct fuse_args *args = (ra ? &ra->args : NULL);
107
108 if (ra && ra->inode)
109 fuse_file_io_release(ff, ra->inode);
110
111 if (!args) {
112 /* Do nothing when server does not implement 'open' */
113 } else if (sync) {
114 fuse_simple_request(ff->fm, args);
115 fuse_release_end(ff->fm, args, 0);
116 } else {
117 args->end = fuse_release_end;
118 if (fuse_simple_background(ff->fm, args,
119 GFP_KERNEL | __GFP_NOFAIL))
120 fuse_release_end(ff->fm, args, -ENOTCONN);
121 }
122 kfree(ff);
123 }
124}
125
126struct fuse_file *fuse_file_open(struct fuse_mount *fm, u64 nodeid,
127 unsigned int open_flags, bool isdir)
128{
129 struct fuse_conn *fc = fm->fc;
130 struct fuse_file *ff;
131 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
132 bool open = isdir ? !fc->no_opendir : !fc->no_open;
133
134 ff = fuse_file_alloc(fm, open);
135 if (!ff)
136 return ERR_PTR(-ENOMEM);
137
138 ff->fh = 0;
139 /* Default for no-open */
140 ff->open_flags = FOPEN_KEEP_CACHE | (isdir ? FOPEN_CACHE_DIR : 0);
141 if (open) {
142 /* Store outarg for fuse_finish_open() */
143 struct fuse_open_out *outargp = &ff->args->open_outarg;
144 int err;
145
146 err = fuse_send_open(fm, nodeid, open_flags, opcode, outargp);
147 if (!err) {
148 ff->fh = outargp->fh;
149 ff->open_flags = outargp->open_flags;
150 } else if (err != -ENOSYS) {
151 fuse_file_free(ff);
152 return ERR_PTR(err);
153 } else {
154 /* No release needed */
155 kfree(ff->args);
156 ff->args = NULL;
157 if (isdir)
158 fc->no_opendir = 1;
159 else
160 fc->no_open = 1;
161 }
162 }
163
164 if (isdir)
165 ff->open_flags &= ~FOPEN_DIRECT_IO;
166
167 ff->nodeid = nodeid;
168
169 return ff;
170}
171
172int fuse_do_open(struct fuse_mount *fm, u64 nodeid, struct file *file,
173 bool isdir)
174{
175 struct fuse_file *ff = fuse_file_open(fm, nodeid, file->f_flags, isdir);
176
177 if (!IS_ERR(ff))
178 file->private_data = ff;
179
180 return PTR_ERR_OR_ZERO(ff);
181}
182EXPORT_SYMBOL_GPL(fuse_do_open);
183
184static void fuse_link_write_file(struct file *file)
185{
186 struct inode *inode = file_inode(file);
187 struct fuse_inode *fi = get_fuse_inode(inode);
188 struct fuse_file *ff = file->private_data;
189 /*
190 * file may be written through mmap, so chain it onto the
191 * inodes's write_file list
192 */
193 spin_lock(&fi->lock);
194 if (list_empty(&ff->write_entry))
195 list_add(&ff->write_entry, &fi->write_files);
196 spin_unlock(&fi->lock);
197}
198
199int fuse_finish_open(struct inode *inode, struct file *file)
200{
201 struct fuse_file *ff = file->private_data;
202 struct fuse_conn *fc = get_fuse_conn(inode);
203 int err;
204
205 err = fuse_file_io_open(file, inode);
206 if (err)
207 return err;
208
209 if (ff->open_flags & FOPEN_STREAM)
210 stream_open(inode, file);
211 else if (ff->open_flags & FOPEN_NONSEEKABLE)
212 nonseekable_open(inode, file);
213
214 if ((file->f_mode & FMODE_WRITE) && fc->writeback_cache)
215 fuse_link_write_file(file);
216
217 return 0;
218}
219
220static void fuse_truncate_update_attr(struct inode *inode, struct file *file)
221{
222 struct fuse_conn *fc = get_fuse_conn(inode);
223 struct fuse_inode *fi = get_fuse_inode(inode);
224
225 spin_lock(&fi->lock);
226 fi->attr_version = atomic64_inc_return(&fc->attr_version);
227 i_size_write(inode, 0);
228 spin_unlock(&fi->lock);
229 file_update_time(file);
230 fuse_invalidate_attr_mask(inode, FUSE_STATX_MODSIZE);
231}
232
233static int fuse_open(struct inode *inode, struct file *file)
234{
235 struct fuse_mount *fm = get_fuse_mount(inode);
236 struct fuse_inode *fi = get_fuse_inode(inode);
237 struct fuse_conn *fc = fm->fc;
238 struct fuse_file *ff;
239 int err;
240 bool is_truncate = (file->f_flags & O_TRUNC) && fc->atomic_o_trunc;
241 bool is_wb_truncate = is_truncate && fc->writeback_cache;
242 bool dax_truncate = is_truncate && FUSE_IS_DAX(inode);
243
244 if (fuse_is_bad(inode))
245 return -EIO;
246
247 err = generic_file_open(inode, file);
248 if (err)
249 return err;
250
251 if (is_wb_truncate || dax_truncate)
252 inode_lock(inode);
253
254 if (dax_truncate) {
255 filemap_invalidate_lock(inode->i_mapping);
256 err = fuse_dax_break_layouts(inode, 0, 0);
257 if (err)
258 goto out_inode_unlock;
259 }
260
261 if (is_wb_truncate || dax_truncate)
262 fuse_set_nowrite(inode);
263
264 err = fuse_do_open(fm, get_node_id(inode), file, false);
265 if (!err) {
266 ff = file->private_data;
267 err = fuse_finish_open(inode, file);
268 if (err)
269 fuse_sync_release(fi, ff, file->f_flags);
270 else if (is_truncate)
271 fuse_truncate_update_attr(inode, file);
272 }
273
274 if (is_wb_truncate || dax_truncate)
275 fuse_release_nowrite(inode);
276 if (!err) {
277 if (is_truncate)
278 truncate_pagecache(inode, 0);
279 else if (!(ff->open_flags & FOPEN_KEEP_CACHE))
280 invalidate_inode_pages2(inode->i_mapping);
281 }
282 if (dax_truncate)
283 filemap_invalidate_unlock(inode->i_mapping);
284out_inode_unlock:
285 if (is_wb_truncate || dax_truncate)
286 inode_unlock(inode);
287
288 return err;
289}
290
291static void fuse_prepare_release(struct fuse_inode *fi, struct fuse_file *ff,
292 unsigned int flags, int opcode, bool sync)
293{
294 struct fuse_conn *fc = ff->fm->fc;
295 struct fuse_release_args *ra = &ff->args->release_args;
296
297 if (fuse_file_passthrough(ff))
298 fuse_passthrough_release(ff, fuse_inode_backing(fi));
299
300 /* Inode is NULL on error path of fuse_create_open() */
301 if (likely(fi)) {
302 spin_lock(&fi->lock);
303 list_del(&ff->write_entry);
304 spin_unlock(&fi->lock);
305 }
306 spin_lock(&fc->lock);
307 if (!RB_EMPTY_NODE(&ff->polled_node))
308 rb_erase(&ff->polled_node, &fc->polled_files);
309 spin_unlock(&fc->lock);
310
311 wake_up_interruptible_all(&ff->poll_wait);
312
313 if (!ra)
314 return;
315
316 /* ff->args was used for open outarg */
317 memset(ff->args, 0, sizeof(*ff->args));
318 ra->inarg.fh = ff->fh;
319 ra->inarg.flags = flags;
320 ra->args.in_numargs = 1;
321 ra->args.in_args[0].size = sizeof(struct fuse_release_in);
322 ra->args.in_args[0].value = &ra->inarg;
323 ra->args.opcode = opcode;
324 ra->args.nodeid = ff->nodeid;
325 ra->args.force = true;
326 ra->args.nocreds = true;
327
328 /*
329 * Hold inode until release is finished.
330 * From fuse_sync_release() the refcount is 1 and everything's
331 * synchronous, so we are fine with not doing igrab() here.
332 */
333 ra->inode = sync ? NULL : igrab(&fi->inode);
334}
335
336void fuse_file_release(struct inode *inode, struct fuse_file *ff,
337 unsigned int open_flags, fl_owner_t id, bool isdir)
338{
339 struct fuse_inode *fi = get_fuse_inode(inode);
340 struct fuse_release_args *ra = &ff->args->release_args;
341 int opcode = isdir ? FUSE_RELEASEDIR : FUSE_RELEASE;
342
343 fuse_prepare_release(fi, ff, open_flags, opcode, false);
344
345 if (ra && ff->flock) {
346 ra->inarg.release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
347 ra->inarg.lock_owner = fuse_lock_owner_id(ff->fm->fc, id);
348 }
349
350 /*
351 * Normally this will send the RELEASE request, however if
352 * some asynchronous READ or WRITE requests are outstanding,
353 * the sending will be delayed.
354 *
355 * Make the release synchronous if this is a fuseblk mount,
356 * synchronous RELEASE is allowed (and desirable) in this case
357 * because the server can be trusted not to screw up.
358 */
359 fuse_file_put(ff, ff->fm->fc->destroy);
360}
361
362void fuse_release_common(struct file *file, bool isdir)
363{
364 fuse_file_release(file_inode(file), file->private_data, file->f_flags,
365 (fl_owner_t) file, isdir);
366}
367
368static int fuse_release(struct inode *inode, struct file *file)
369{
370 struct fuse_conn *fc = get_fuse_conn(inode);
371
372 /*
373 * Dirty pages might remain despite write_inode_now() call from
374 * fuse_flush() due to writes racing with the close.
375 */
376 if (fc->writeback_cache)
377 write_inode_now(inode, 1);
378
379 fuse_release_common(file, false);
380
381 /* return value is ignored by VFS */
382 return 0;
383}
384
385void fuse_sync_release(struct fuse_inode *fi, struct fuse_file *ff,
386 unsigned int flags)
387{
388 WARN_ON(refcount_read(&ff->count) > 1);
389 fuse_prepare_release(fi, ff, flags, FUSE_RELEASE, true);
390 fuse_file_put(ff, true);
391}
392EXPORT_SYMBOL_GPL(fuse_sync_release);
393
394/*
395 * Scramble the ID space with XTEA, so that the value of the files_struct
396 * pointer is not exposed to userspace.
397 */
398u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
399{
400 u32 *k = fc->scramble_key;
401 u64 v = (unsigned long) id;
402 u32 v0 = v;
403 u32 v1 = v >> 32;
404 u32 sum = 0;
405 int i;
406
407 for (i = 0; i < 32; i++) {
408 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
409 sum += 0x9E3779B9;
410 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
411 }
412
413 return (u64) v0 + ((u64) v1 << 32);
414}
415
416struct fuse_writepage_args {
417 struct fuse_io_args ia;
418 struct rb_node writepages_entry;
419 struct list_head queue_entry;
420 struct fuse_writepage_args *next;
421 struct inode *inode;
422 struct fuse_sync_bucket *bucket;
423};
424
425static struct fuse_writepage_args *fuse_find_writeback(struct fuse_inode *fi,
426 pgoff_t idx_from, pgoff_t idx_to)
427{
428 struct rb_node *n;
429
430 n = fi->writepages.rb_node;
431
432 while (n) {
433 struct fuse_writepage_args *wpa;
434 pgoff_t curr_index;
435
436 wpa = rb_entry(n, struct fuse_writepage_args, writepages_entry);
437 WARN_ON(get_fuse_inode(wpa->inode) != fi);
438 curr_index = wpa->ia.write.in.offset >> PAGE_SHIFT;
439 if (idx_from >= curr_index + wpa->ia.ap.num_folios)
440 n = n->rb_right;
441 else if (idx_to < curr_index)
442 n = n->rb_left;
443 else
444 return wpa;
445 }
446 return NULL;
447}
448
449/*
450 * Check if any page in a range is under writeback
451 */
452static bool fuse_range_is_writeback(struct inode *inode, pgoff_t idx_from,
453 pgoff_t idx_to)
454{
455 struct fuse_inode *fi = get_fuse_inode(inode);
456 bool found;
457
458 if (RB_EMPTY_ROOT(&fi->writepages))
459 return false;
460
461 spin_lock(&fi->lock);
462 found = fuse_find_writeback(fi, idx_from, idx_to);
463 spin_unlock(&fi->lock);
464
465 return found;
466}
467
468static inline bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
469{
470 return fuse_range_is_writeback(inode, index, index);
471}
472
473/*
474 * Wait for page writeback to be completed.
475 *
476 * Since fuse doesn't rely on the VM writeback tracking, this has to
477 * use some other means.
478 */
479static void fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
480{
481 struct fuse_inode *fi = get_fuse_inode(inode);
482
483 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
484}
485
486static inline bool fuse_folio_is_writeback(struct inode *inode,
487 struct folio *folio)
488{
489 pgoff_t last = folio_next_index(folio) - 1;
490 return fuse_range_is_writeback(inode, folio_index(folio), last);
491}
492
493static void fuse_wait_on_folio_writeback(struct inode *inode,
494 struct folio *folio)
495{
496 struct fuse_inode *fi = get_fuse_inode(inode);
497
498 wait_event(fi->page_waitq, !fuse_folio_is_writeback(inode, folio));
499}
500
501/*
502 * Wait for all pending writepages on the inode to finish.
503 *
504 * This is currently done by blocking further writes with FUSE_NOWRITE
505 * and waiting for all sent writes to complete.
506 *
507 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
508 * could conflict with truncation.
509 */
510static void fuse_sync_writes(struct inode *inode)
511{
512 fuse_set_nowrite(inode);
513 fuse_release_nowrite(inode);
514}
515
516static int fuse_flush(struct file *file, fl_owner_t id)
517{
518 struct inode *inode = file_inode(file);
519 struct fuse_mount *fm = get_fuse_mount(inode);
520 struct fuse_file *ff = file->private_data;
521 struct fuse_flush_in inarg;
522 FUSE_ARGS(args);
523 int err;
524
525 if (fuse_is_bad(inode))
526 return -EIO;
527
528 if (ff->open_flags & FOPEN_NOFLUSH && !fm->fc->writeback_cache)
529 return 0;
530
531 err = write_inode_now(inode, 1);
532 if (err)
533 return err;
534
535 inode_lock(inode);
536 fuse_sync_writes(inode);
537 inode_unlock(inode);
538
539 err = filemap_check_errors(file->f_mapping);
540 if (err)
541 return err;
542
543 err = 0;
544 if (fm->fc->no_flush)
545 goto inval_attr_out;
546
547 memset(&inarg, 0, sizeof(inarg));
548 inarg.fh = ff->fh;
549 inarg.lock_owner = fuse_lock_owner_id(fm->fc, id);
550 args.opcode = FUSE_FLUSH;
551 args.nodeid = get_node_id(inode);
552 args.in_numargs = 1;
553 args.in_args[0].size = sizeof(inarg);
554 args.in_args[0].value = &inarg;
555 args.force = true;
556
557 err = fuse_simple_request(fm, &args);
558 if (err == -ENOSYS) {
559 fm->fc->no_flush = 1;
560 err = 0;
561 }
562
563inval_attr_out:
564 /*
565 * In memory i_blocks is not maintained by fuse, if writeback cache is
566 * enabled, i_blocks from cached attr may not be accurate.
567 */
568 if (!err && fm->fc->writeback_cache)
569 fuse_invalidate_attr_mask(inode, STATX_BLOCKS);
570 return err;
571}
572
573int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
574 int datasync, int opcode)
575{
576 struct inode *inode = file->f_mapping->host;
577 struct fuse_mount *fm = get_fuse_mount(inode);
578 struct fuse_file *ff = file->private_data;
579 FUSE_ARGS(args);
580 struct fuse_fsync_in inarg;
581
582 memset(&inarg, 0, sizeof(inarg));
583 inarg.fh = ff->fh;
584 inarg.fsync_flags = datasync ? FUSE_FSYNC_FDATASYNC : 0;
585 args.opcode = opcode;
586 args.nodeid = get_node_id(inode);
587 args.in_numargs = 1;
588 args.in_args[0].size = sizeof(inarg);
589 args.in_args[0].value = &inarg;
590 return fuse_simple_request(fm, &args);
591}
592
593static int fuse_fsync(struct file *file, loff_t start, loff_t end,
594 int datasync)
595{
596 struct inode *inode = file->f_mapping->host;
597 struct fuse_conn *fc = get_fuse_conn(inode);
598 int err;
599
600 if (fuse_is_bad(inode))
601 return -EIO;
602
603 inode_lock(inode);
604
605 /*
606 * Start writeback against all dirty pages of the inode, then
607 * wait for all outstanding writes, before sending the FSYNC
608 * request.
609 */
610 err = file_write_and_wait_range(file, start, end);
611 if (err)
612 goto out;
613
614 fuse_sync_writes(inode);
615
616 /*
617 * Due to implementation of fuse writeback
618 * file_write_and_wait_range() does not catch errors.
619 * We have to do this directly after fuse_sync_writes()
620 */
621 err = file_check_and_advance_wb_err(file);
622 if (err)
623 goto out;
624
625 err = sync_inode_metadata(inode, 1);
626 if (err)
627 goto out;
628
629 if (fc->no_fsync)
630 goto out;
631
632 err = fuse_fsync_common(file, start, end, datasync, FUSE_FSYNC);
633 if (err == -ENOSYS) {
634 fc->no_fsync = 1;
635 err = 0;
636 }
637out:
638 inode_unlock(inode);
639
640 return err;
641}
642
643void fuse_read_args_fill(struct fuse_io_args *ia, struct file *file, loff_t pos,
644 size_t count, int opcode)
645{
646 struct fuse_file *ff = file->private_data;
647 struct fuse_args *args = &ia->ap.args;
648
649 ia->read.in.fh = ff->fh;
650 ia->read.in.offset = pos;
651 ia->read.in.size = count;
652 ia->read.in.flags = file->f_flags;
653 args->opcode = opcode;
654 args->nodeid = ff->nodeid;
655 args->in_numargs = 1;
656 args->in_args[0].size = sizeof(ia->read.in);
657 args->in_args[0].value = &ia->read.in;
658 args->out_argvar = true;
659 args->out_numargs = 1;
660 args->out_args[0].size = count;
661}
662
663static void fuse_release_user_pages(struct fuse_args_pages *ap, ssize_t nres,
664 bool should_dirty)
665{
666 unsigned int i;
667
668 for (i = 0; i < ap->num_folios; i++) {
669 if (should_dirty)
670 folio_mark_dirty_lock(ap->folios[i]);
671 if (ap->args.is_pinned)
672 unpin_folio(ap->folios[i]);
673 }
674
675 if (nres > 0 && ap->args.invalidate_vmap)
676 invalidate_kernel_vmap_range(ap->args.vmap_base, nres);
677}
678
679static void fuse_io_release(struct kref *kref)
680{
681 kfree(container_of(kref, struct fuse_io_priv, refcnt));
682}
683
684static ssize_t fuse_get_res_by_io(struct fuse_io_priv *io)
685{
686 if (io->err)
687 return io->err;
688
689 if (io->bytes >= 0 && io->write)
690 return -EIO;
691
692 return io->bytes < 0 ? io->size : io->bytes;
693}
694
695/*
696 * In case of short read, the caller sets 'pos' to the position of
697 * actual end of fuse request in IO request. Otherwise, if bytes_requested
698 * == bytes_transferred or rw == WRITE, the caller sets 'pos' to -1.
699 *
700 * An example:
701 * User requested DIO read of 64K. It was split into two 32K fuse requests,
702 * both submitted asynchronously. The first of them was ACKed by userspace as
703 * fully completed (req->out.args[0].size == 32K) resulting in pos == -1. The
704 * second request was ACKed as short, e.g. only 1K was read, resulting in
705 * pos == 33K.
706 *
707 * Thus, when all fuse requests are completed, the minimal non-negative 'pos'
708 * will be equal to the length of the longest contiguous fragment of
709 * transferred data starting from the beginning of IO request.
710 */
711static void fuse_aio_complete(struct fuse_io_priv *io, int err, ssize_t pos)
712{
713 int left;
714
715 spin_lock(&io->lock);
716 if (err)
717 io->err = io->err ? : err;
718 else if (pos >= 0 && (io->bytes < 0 || pos < io->bytes))
719 io->bytes = pos;
720
721 left = --io->reqs;
722 if (!left && io->blocking)
723 complete(io->done);
724 spin_unlock(&io->lock);
725
726 if (!left && !io->blocking) {
727 ssize_t res = fuse_get_res_by_io(io);
728
729 if (res >= 0) {
730 struct inode *inode = file_inode(io->iocb->ki_filp);
731 struct fuse_conn *fc = get_fuse_conn(inode);
732 struct fuse_inode *fi = get_fuse_inode(inode);
733
734 spin_lock(&fi->lock);
735 fi->attr_version = atomic64_inc_return(&fc->attr_version);
736 spin_unlock(&fi->lock);
737 }
738
739 io->iocb->ki_complete(io->iocb, res);
740 }
741
742 kref_put(&io->refcnt, fuse_io_release);
743}
744
745static struct fuse_io_args *fuse_io_alloc(struct fuse_io_priv *io,
746 unsigned int nfolios)
747{
748 struct fuse_io_args *ia;
749
750 ia = kzalloc(sizeof(*ia), GFP_KERNEL);
751 if (ia) {
752 ia->io = io;
753 ia->ap.folios = fuse_folios_alloc(nfolios, GFP_KERNEL,
754 &ia->ap.descs);
755 if (!ia->ap.folios) {
756 kfree(ia);
757 ia = NULL;
758 }
759 }
760 return ia;
761}
762
763static void fuse_io_free(struct fuse_io_args *ia)
764{
765 kfree(ia->ap.folios);
766 kfree(ia);
767}
768
769static void fuse_aio_complete_req(struct fuse_mount *fm, struct fuse_args *args,
770 int err)
771{
772 struct fuse_io_args *ia = container_of(args, typeof(*ia), ap.args);
773 struct fuse_io_priv *io = ia->io;
774 ssize_t pos = -1;
775 size_t nres;
776
777 if (err) {
778 /* Nothing */
779 } else if (io->write) {
780 if (ia->write.out.size > ia->write.in.size) {
781 err = -EIO;
782 } else {
783 nres = ia->write.out.size;
784 if (ia->write.in.size != ia->write.out.size)
785 pos = ia->write.in.offset - io->offset +
786 ia->write.out.size;
787 }
788 } else {
789 u32 outsize = args->out_args[0].size;
790
791 nres = outsize;
792 if (ia->read.in.size != outsize)
793 pos = ia->read.in.offset - io->offset + outsize;
794 }
795
796 fuse_release_user_pages(&ia->ap, err ?: nres, io->should_dirty);
797
798 fuse_aio_complete(io, err, pos);
799 fuse_io_free(ia);
800}
801
802static ssize_t fuse_async_req_send(struct fuse_mount *fm,
803 struct fuse_io_args *ia, size_t num_bytes)
804{
805 ssize_t err;
806 struct fuse_io_priv *io = ia->io;
807
808 spin_lock(&io->lock);
809 kref_get(&io->refcnt);
810 io->size += num_bytes;
811 io->reqs++;
812 spin_unlock(&io->lock);
813
814 ia->ap.args.end = fuse_aio_complete_req;
815 ia->ap.args.may_block = io->should_dirty;
816 err = fuse_simple_background(fm, &ia->ap.args, GFP_KERNEL);
817 if (err)
818 fuse_aio_complete_req(fm, &ia->ap.args, err);
819
820 return num_bytes;
821}
822
823static ssize_t fuse_send_read(struct fuse_io_args *ia, loff_t pos, size_t count,
824 fl_owner_t owner)
825{
826 struct file *file = ia->io->iocb->ki_filp;
827 struct fuse_file *ff = file->private_data;
828 struct fuse_mount *fm = ff->fm;
829
830 fuse_read_args_fill(ia, file, pos, count, FUSE_READ);
831 if (owner != NULL) {
832 ia->read.in.read_flags |= FUSE_READ_LOCKOWNER;
833 ia->read.in.lock_owner = fuse_lock_owner_id(fm->fc, owner);
834 }
835
836 if (ia->io->async)
837 return fuse_async_req_send(fm, ia, count);
838
839 return fuse_simple_request(fm, &ia->ap.args);
840}
841
842static void fuse_read_update_size(struct inode *inode, loff_t size,
843 u64 attr_ver)
844{
845 struct fuse_conn *fc = get_fuse_conn(inode);
846 struct fuse_inode *fi = get_fuse_inode(inode);
847
848 spin_lock(&fi->lock);
849 if (attr_ver >= fi->attr_version && size < inode->i_size &&
850 !test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
851 fi->attr_version = atomic64_inc_return(&fc->attr_version);
852 i_size_write(inode, size);
853 }
854 spin_unlock(&fi->lock);
855}
856
857static void fuse_short_read(struct inode *inode, u64 attr_ver, size_t num_read,
858 struct fuse_args_pages *ap)
859{
860 struct fuse_conn *fc = get_fuse_conn(inode);
861
862 /*
863 * If writeback_cache is enabled, a short read means there's a hole in
864 * the file. Some data after the hole is in page cache, but has not
865 * reached the client fs yet. So the hole is not present there.
866 */
867 if (!fc->writeback_cache) {
868 loff_t pos = folio_pos(ap->folios[0]) + num_read;
869 fuse_read_update_size(inode, pos, attr_ver);
870 }
871}
872
873static int fuse_do_readfolio(struct file *file, struct folio *folio)
874{
875 struct inode *inode = folio->mapping->host;
876 struct fuse_mount *fm = get_fuse_mount(inode);
877 loff_t pos = folio_pos(folio);
878 struct fuse_folio_desc desc = { .length = PAGE_SIZE };
879 struct fuse_io_args ia = {
880 .ap.args.page_zeroing = true,
881 .ap.args.out_pages = true,
882 .ap.num_folios = 1,
883 .ap.folios = &folio,
884 .ap.descs = &desc,
885 };
886 ssize_t res;
887 u64 attr_ver;
888
889 /*
890 * With the temporary pages that are used to complete writeback, we can
891 * have writeback that extends beyond the lifetime of the folio. So
892 * make sure we read a properly synced folio.
893 */
894 fuse_wait_on_folio_writeback(inode, folio);
895
896 attr_ver = fuse_get_attr_version(fm->fc);
897
898 /* Don't overflow end offset */
899 if (pos + (desc.length - 1) == LLONG_MAX)
900 desc.length--;
901
902 fuse_read_args_fill(&ia, file, pos, desc.length, FUSE_READ);
903 res = fuse_simple_request(fm, &ia.ap.args);
904 if (res < 0)
905 return res;
906 /*
907 * Short read means EOF. If file size is larger, truncate it
908 */
909 if (res < desc.length)
910 fuse_short_read(inode, attr_ver, res, &ia.ap);
911
912 folio_mark_uptodate(folio);
913
914 return 0;
915}
916
917static int fuse_read_folio(struct file *file, struct folio *folio)
918{
919 struct inode *inode = folio->mapping->host;
920 int err;
921
922 err = -EIO;
923 if (fuse_is_bad(inode))
924 goto out;
925
926 err = fuse_do_readfolio(file, folio);
927 fuse_invalidate_atime(inode);
928 out:
929 folio_unlock(folio);
930 return err;
931}
932
933static void fuse_readpages_end(struct fuse_mount *fm, struct fuse_args *args,
934 int err)
935{
936 int i;
937 struct fuse_io_args *ia = container_of(args, typeof(*ia), ap.args);
938 struct fuse_args_pages *ap = &ia->ap;
939 size_t count = ia->read.in.size;
940 size_t num_read = args->out_args[0].size;
941 struct address_space *mapping = NULL;
942
943 for (i = 0; mapping == NULL && i < ap->num_folios; i++)
944 mapping = ap->folios[i]->mapping;
945
946 if (mapping) {
947 struct inode *inode = mapping->host;
948
949 /*
950 * Short read means EOF. If file size is larger, truncate it
951 */
952 if (!err && num_read < count)
953 fuse_short_read(inode, ia->read.attr_ver, num_read, ap);
954
955 fuse_invalidate_atime(inode);
956 }
957
958 for (i = 0; i < ap->num_folios; i++) {
959 folio_end_read(ap->folios[i], !err);
960 folio_put(ap->folios[i]);
961 }
962 if (ia->ff)
963 fuse_file_put(ia->ff, false);
964
965 fuse_io_free(ia);
966}
967
968static void fuse_send_readpages(struct fuse_io_args *ia, struct file *file)
969{
970 struct fuse_file *ff = file->private_data;
971 struct fuse_mount *fm = ff->fm;
972 struct fuse_args_pages *ap = &ia->ap;
973 loff_t pos = folio_pos(ap->folios[0]);
974 /* Currently, all folios in FUSE are one page */
975 size_t count = ap->num_folios << PAGE_SHIFT;
976 ssize_t res;
977 int err;
978
979 ap->args.out_pages = true;
980 ap->args.page_zeroing = true;
981 ap->args.page_replace = true;
982
983 /* Don't overflow end offset */
984 if (pos + (count - 1) == LLONG_MAX) {
985 count--;
986 ap->descs[ap->num_folios - 1].length--;
987 }
988 WARN_ON((loff_t) (pos + count) < 0);
989
990 fuse_read_args_fill(ia, file, pos, count, FUSE_READ);
991 ia->read.attr_ver = fuse_get_attr_version(fm->fc);
992 if (fm->fc->async_read) {
993 ia->ff = fuse_file_get(ff);
994 ap->args.end = fuse_readpages_end;
995 err = fuse_simple_background(fm, &ap->args, GFP_KERNEL);
996 if (!err)
997 return;
998 } else {
999 res = fuse_simple_request(fm, &ap->args);
1000 err = res < 0 ? res : 0;
1001 }
1002 fuse_readpages_end(fm, &ap->args, err);
1003}
1004
1005static void fuse_readahead(struct readahead_control *rac)
1006{
1007 struct inode *inode = rac->mapping->host;
1008 struct fuse_inode *fi = get_fuse_inode(inode);
1009 struct fuse_conn *fc = get_fuse_conn(inode);
1010 unsigned int max_pages, nr_pages;
1011 pgoff_t first = readahead_index(rac);
1012 pgoff_t last = first + readahead_count(rac) - 1;
1013
1014 if (fuse_is_bad(inode))
1015 return;
1016
1017 wait_event(fi->page_waitq, !fuse_range_is_writeback(inode, first, last));
1018
1019 max_pages = min_t(unsigned int, fc->max_pages,
1020 fc->max_read / PAGE_SIZE);
1021
1022 /*
1023 * This is only accurate the first time through, since readahead_folio()
1024 * doesn't update readahead_count() from the previous folio until the
1025 * next call. Grab nr_pages here so we know how many pages we're going
1026 * to have to process. This means that we will exit here with
1027 * readahead_count() == folio_nr_pages(last_folio), but we will have
1028 * consumed all of the folios, and read_pages() will call
1029 * readahead_folio() again which will clean up the rac.
1030 */
1031 nr_pages = readahead_count(rac);
1032
1033 while (nr_pages) {
1034 struct fuse_io_args *ia;
1035 struct fuse_args_pages *ap;
1036 struct folio *folio;
1037 unsigned cur_pages = min(max_pages, nr_pages);
1038
1039 if (fc->num_background >= fc->congestion_threshold &&
1040 rac->ra->async_size >= readahead_count(rac))
1041 /*
1042 * Congested and only async pages left, so skip the
1043 * rest.
1044 */
1045 break;
1046
1047 ia = fuse_io_alloc(NULL, cur_pages);
1048 if (!ia)
1049 return;
1050 ap = &ia->ap;
1051
1052 while (ap->num_folios < cur_pages) {
1053 /*
1054 * This returns a folio with a ref held on it.
1055 * The ref needs to be held until the request is
1056 * completed, since the splice case (see
1057 * fuse_try_move_page()) drops the ref after it's
1058 * replaced in the page cache.
1059 */
1060 folio = __readahead_folio(rac);
1061 ap->folios[ap->num_folios] = folio;
1062 ap->descs[ap->num_folios].length = folio_size(folio);
1063 ap->num_folios++;
1064 }
1065 fuse_send_readpages(ia, rac->file);
1066 nr_pages -= cur_pages;
1067 }
1068}
1069
1070static ssize_t fuse_cache_read_iter(struct kiocb *iocb, struct iov_iter *to)
1071{
1072 struct inode *inode = iocb->ki_filp->f_mapping->host;
1073 struct fuse_conn *fc = get_fuse_conn(inode);
1074
1075 /*
1076 * In auto invalidate mode, always update attributes on read.
1077 * Otherwise, only update if we attempt to read past EOF (to ensure
1078 * i_size is up to date).
1079 */
1080 if (fc->auto_inval_data ||
1081 (iocb->ki_pos + iov_iter_count(to) > i_size_read(inode))) {
1082 int err;
1083 err = fuse_update_attributes(inode, iocb->ki_filp, STATX_SIZE);
1084 if (err)
1085 return err;
1086 }
1087
1088 return generic_file_read_iter(iocb, to);
1089}
1090
1091static void fuse_write_args_fill(struct fuse_io_args *ia, struct fuse_file *ff,
1092 loff_t pos, size_t count)
1093{
1094 struct fuse_args *args = &ia->ap.args;
1095
1096 ia->write.in.fh = ff->fh;
1097 ia->write.in.offset = pos;
1098 ia->write.in.size = count;
1099 args->opcode = FUSE_WRITE;
1100 args->nodeid = ff->nodeid;
1101 args->in_numargs = 2;
1102 if (ff->fm->fc->minor < 9)
1103 args->in_args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
1104 else
1105 args->in_args[0].size = sizeof(ia->write.in);
1106 args->in_args[0].value = &ia->write.in;
1107 args->in_args[1].size = count;
1108 args->out_numargs = 1;
1109 args->out_args[0].size = sizeof(ia->write.out);
1110 args->out_args[0].value = &ia->write.out;
1111}
1112
1113static unsigned int fuse_write_flags(struct kiocb *iocb)
1114{
1115 unsigned int flags = iocb->ki_filp->f_flags;
1116
1117 if (iocb_is_dsync(iocb))
1118 flags |= O_DSYNC;
1119 if (iocb->ki_flags & IOCB_SYNC)
1120 flags |= O_SYNC;
1121
1122 return flags;
1123}
1124
1125static ssize_t fuse_send_write(struct fuse_io_args *ia, loff_t pos,
1126 size_t count, fl_owner_t owner)
1127{
1128 struct kiocb *iocb = ia->io->iocb;
1129 struct file *file = iocb->ki_filp;
1130 struct fuse_file *ff = file->private_data;
1131 struct fuse_mount *fm = ff->fm;
1132 struct fuse_write_in *inarg = &ia->write.in;
1133 ssize_t err;
1134
1135 fuse_write_args_fill(ia, ff, pos, count);
1136 inarg->flags = fuse_write_flags(iocb);
1137 if (owner != NULL) {
1138 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
1139 inarg->lock_owner = fuse_lock_owner_id(fm->fc, owner);
1140 }
1141
1142 if (ia->io->async)
1143 return fuse_async_req_send(fm, ia, count);
1144
1145 err = fuse_simple_request(fm, &ia->ap.args);
1146 if (!err && ia->write.out.size > count)
1147 err = -EIO;
1148
1149 return err ?: ia->write.out.size;
1150}
1151
1152bool fuse_write_update_attr(struct inode *inode, loff_t pos, ssize_t written)
1153{
1154 struct fuse_conn *fc = get_fuse_conn(inode);
1155 struct fuse_inode *fi = get_fuse_inode(inode);
1156 bool ret = false;
1157
1158 spin_lock(&fi->lock);
1159 fi->attr_version = atomic64_inc_return(&fc->attr_version);
1160 if (written > 0 && pos > inode->i_size) {
1161 i_size_write(inode, pos);
1162 ret = true;
1163 }
1164 spin_unlock(&fi->lock);
1165
1166 fuse_invalidate_attr_mask(inode, FUSE_STATX_MODSIZE);
1167
1168 return ret;
1169}
1170
1171static ssize_t fuse_send_write_pages(struct fuse_io_args *ia,
1172 struct kiocb *iocb, struct inode *inode,
1173 loff_t pos, size_t count)
1174{
1175 struct fuse_args_pages *ap = &ia->ap;
1176 struct file *file = iocb->ki_filp;
1177 struct fuse_file *ff = file->private_data;
1178 struct fuse_mount *fm = ff->fm;
1179 unsigned int offset, i;
1180 bool short_write;
1181 int err;
1182
1183 for (i = 0; i < ap->num_folios; i++)
1184 fuse_wait_on_folio_writeback(inode, ap->folios[i]);
1185
1186 fuse_write_args_fill(ia, ff, pos, count);
1187 ia->write.in.flags = fuse_write_flags(iocb);
1188 if (fm->fc->handle_killpriv_v2 && !capable(CAP_FSETID))
1189 ia->write.in.write_flags |= FUSE_WRITE_KILL_SUIDGID;
1190
1191 err = fuse_simple_request(fm, &ap->args);
1192 if (!err && ia->write.out.size > count)
1193 err = -EIO;
1194
1195 short_write = ia->write.out.size < count;
1196 offset = ap->descs[0].offset;
1197 count = ia->write.out.size;
1198 for (i = 0; i < ap->num_folios; i++) {
1199 struct folio *folio = ap->folios[i];
1200
1201 if (err) {
1202 folio_clear_uptodate(folio);
1203 } else {
1204 if (count >= folio_size(folio) - offset)
1205 count -= folio_size(folio) - offset;
1206 else {
1207 if (short_write)
1208 folio_clear_uptodate(folio);
1209 count = 0;
1210 }
1211 offset = 0;
1212 }
1213 if (ia->write.folio_locked && (i == ap->num_folios - 1))
1214 folio_unlock(folio);
1215 folio_put(folio);
1216 }
1217
1218 return err;
1219}
1220
1221static ssize_t fuse_fill_write_pages(struct fuse_io_args *ia,
1222 struct address_space *mapping,
1223 struct iov_iter *ii, loff_t pos,
1224 unsigned int max_pages)
1225{
1226 struct fuse_args_pages *ap = &ia->ap;
1227 struct fuse_conn *fc = get_fuse_conn(mapping->host);
1228 unsigned offset = pos & (PAGE_SIZE - 1);
1229 unsigned int nr_pages = 0;
1230 size_t count = 0;
1231 int err;
1232
1233 ap->args.in_pages = true;
1234 ap->descs[0].offset = offset;
1235
1236 do {
1237 size_t tmp;
1238 struct folio *folio;
1239 pgoff_t index = pos >> PAGE_SHIFT;
1240 size_t bytes = min_t(size_t, PAGE_SIZE - offset,
1241 iov_iter_count(ii));
1242
1243 bytes = min_t(size_t, bytes, fc->max_write - count);
1244
1245 again:
1246 err = -EFAULT;
1247 if (fault_in_iov_iter_readable(ii, bytes))
1248 break;
1249
1250 folio = __filemap_get_folio(mapping, index, FGP_WRITEBEGIN,
1251 mapping_gfp_mask(mapping));
1252 if (IS_ERR(folio)) {
1253 err = PTR_ERR(folio);
1254 break;
1255 }
1256
1257 if (mapping_writably_mapped(mapping))
1258 flush_dcache_folio(folio);
1259
1260 tmp = copy_folio_from_iter_atomic(folio, offset, bytes, ii);
1261 flush_dcache_folio(folio);
1262
1263 if (!tmp) {
1264 folio_unlock(folio);
1265 folio_put(folio);
1266 goto again;
1267 }
1268
1269 err = 0;
1270 ap->folios[ap->num_folios] = folio;
1271 ap->descs[ap->num_folios].length = tmp;
1272 ap->num_folios++;
1273 nr_pages++;
1274
1275 count += tmp;
1276 pos += tmp;
1277 offset += tmp;
1278 if (offset == PAGE_SIZE)
1279 offset = 0;
1280
1281 /* If we copied full page, mark it uptodate */
1282 if (tmp == PAGE_SIZE)
1283 folio_mark_uptodate(folio);
1284
1285 if (folio_test_uptodate(folio)) {
1286 folio_unlock(folio);
1287 } else {
1288 ia->write.folio_locked = true;
1289 break;
1290 }
1291 if (!fc->big_writes)
1292 break;
1293 } while (iov_iter_count(ii) && count < fc->max_write &&
1294 nr_pages < max_pages && offset == 0);
1295
1296 return count > 0 ? count : err;
1297}
1298
1299static inline unsigned int fuse_wr_pages(loff_t pos, size_t len,
1300 unsigned int max_pages)
1301{
1302 return min_t(unsigned int,
1303 ((pos + len - 1) >> PAGE_SHIFT) -
1304 (pos >> PAGE_SHIFT) + 1,
1305 max_pages);
1306}
1307
1308static ssize_t fuse_perform_write(struct kiocb *iocb, struct iov_iter *ii)
1309{
1310 struct address_space *mapping = iocb->ki_filp->f_mapping;
1311 struct inode *inode = mapping->host;
1312 struct fuse_conn *fc = get_fuse_conn(inode);
1313 struct fuse_inode *fi = get_fuse_inode(inode);
1314 loff_t pos = iocb->ki_pos;
1315 int err = 0;
1316 ssize_t res = 0;
1317
1318 if (inode->i_size < pos + iov_iter_count(ii))
1319 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1320
1321 do {
1322 ssize_t count;
1323 struct fuse_io_args ia = {};
1324 struct fuse_args_pages *ap = &ia.ap;
1325 unsigned int nr_pages = fuse_wr_pages(pos, iov_iter_count(ii),
1326 fc->max_pages);
1327
1328 ap->folios = fuse_folios_alloc(nr_pages, GFP_KERNEL, &ap->descs);
1329 if (!ap->folios) {
1330 err = -ENOMEM;
1331 break;
1332 }
1333
1334 count = fuse_fill_write_pages(&ia, mapping, ii, pos, nr_pages);
1335 if (count <= 0) {
1336 err = count;
1337 } else {
1338 err = fuse_send_write_pages(&ia, iocb, inode,
1339 pos, count);
1340 if (!err) {
1341 size_t num_written = ia.write.out.size;
1342
1343 res += num_written;
1344 pos += num_written;
1345
1346 /* break out of the loop on short write */
1347 if (num_written != count)
1348 err = -EIO;
1349 }
1350 }
1351 kfree(ap->folios);
1352 } while (!err && iov_iter_count(ii));
1353
1354 fuse_write_update_attr(inode, pos, res);
1355 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
1356
1357 if (!res)
1358 return err;
1359 iocb->ki_pos += res;
1360 return res;
1361}
1362
1363static bool fuse_io_past_eof(struct kiocb *iocb, struct iov_iter *iter)
1364{
1365 struct inode *inode = file_inode(iocb->ki_filp);
1366
1367 return iocb->ki_pos + iov_iter_count(iter) > i_size_read(inode);
1368}
1369
1370/*
1371 * @return true if an exclusive lock for direct IO writes is needed
1372 */
1373static bool fuse_dio_wr_exclusive_lock(struct kiocb *iocb, struct iov_iter *from)
1374{
1375 struct file *file = iocb->ki_filp;
1376 struct fuse_file *ff = file->private_data;
1377 struct inode *inode = file_inode(iocb->ki_filp);
1378 struct fuse_inode *fi = get_fuse_inode(inode);
1379
1380 /* Server side has to advise that it supports parallel dio writes. */
1381 if (!(ff->open_flags & FOPEN_PARALLEL_DIRECT_WRITES))
1382 return true;
1383
1384 /*
1385 * Append will need to know the eventual EOF - always needs an
1386 * exclusive lock.
1387 */
1388 if (iocb->ki_flags & IOCB_APPEND)
1389 return true;
1390
1391 /* shared locks are not allowed with parallel page cache IO */
1392 if (test_bit(FUSE_I_CACHE_IO_MODE, &fi->state))
1393 return true;
1394
1395 /* Parallel dio beyond EOF is not supported, at least for now. */
1396 if (fuse_io_past_eof(iocb, from))
1397 return true;
1398
1399 return false;
1400}
1401
1402static void fuse_dio_lock(struct kiocb *iocb, struct iov_iter *from,
1403 bool *exclusive)
1404{
1405 struct inode *inode = file_inode(iocb->ki_filp);
1406 struct fuse_inode *fi = get_fuse_inode(inode);
1407
1408 *exclusive = fuse_dio_wr_exclusive_lock(iocb, from);
1409 if (*exclusive) {
1410 inode_lock(inode);
1411 } else {
1412 inode_lock_shared(inode);
1413 /*
1414 * New parallal dio allowed only if inode is not in caching
1415 * mode and denies new opens in caching mode. This check
1416 * should be performed only after taking shared inode lock.
1417 * Previous past eof check was without inode lock and might
1418 * have raced, so check it again.
1419 */
1420 if (fuse_io_past_eof(iocb, from) ||
1421 fuse_inode_uncached_io_start(fi, NULL) != 0) {
1422 inode_unlock_shared(inode);
1423 inode_lock(inode);
1424 *exclusive = true;
1425 }
1426 }
1427}
1428
1429static void fuse_dio_unlock(struct kiocb *iocb, bool exclusive)
1430{
1431 struct inode *inode = file_inode(iocb->ki_filp);
1432 struct fuse_inode *fi = get_fuse_inode(inode);
1433
1434 if (exclusive) {
1435 inode_unlock(inode);
1436 } else {
1437 /* Allow opens in caching mode after last parallel dio end */
1438 fuse_inode_uncached_io_end(fi);
1439 inode_unlock_shared(inode);
1440 }
1441}
1442
1443static ssize_t fuse_cache_write_iter(struct kiocb *iocb, struct iov_iter *from)
1444{
1445 struct file *file = iocb->ki_filp;
1446 struct mnt_idmap *idmap = file_mnt_idmap(file);
1447 struct address_space *mapping = file->f_mapping;
1448 ssize_t written = 0;
1449 struct inode *inode = mapping->host;
1450 ssize_t err, count;
1451 struct fuse_conn *fc = get_fuse_conn(inode);
1452
1453 if (fc->writeback_cache) {
1454 /* Update size (EOF optimization) and mode (SUID clearing) */
1455 err = fuse_update_attributes(mapping->host, file,
1456 STATX_SIZE | STATX_MODE);
1457 if (err)
1458 return err;
1459
1460 if (fc->handle_killpriv_v2 &&
1461 setattr_should_drop_suidgid(idmap,
1462 file_inode(file))) {
1463 goto writethrough;
1464 }
1465
1466 return generic_file_write_iter(iocb, from);
1467 }
1468
1469writethrough:
1470 inode_lock(inode);
1471
1472 err = count = generic_write_checks(iocb, from);
1473 if (err <= 0)
1474 goto out;
1475
1476 task_io_account_write(count);
1477
1478 err = kiocb_modified(iocb);
1479 if (err)
1480 goto out;
1481
1482 if (iocb->ki_flags & IOCB_DIRECT) {
1483 written = generic_file_direct_write(iocb, from);
1484 if (written < 0 || !iov_iter_count(from))
1485 goto out;
1486 written = direct_write_fallback(iocb, from, written,
1487 fuse_perform_write(iocb, from));
1488 } else {
1489 written = fuse_perform_write(iocb, from);
1490 }
1491out:
1492 inode_unlock(inode);
1493 if (written > 0)
1494 written = generic_write_sync(iocb, written);
1495
1496 return written ? written : err;
1497}
1498
1499static inline unsigned long fuse_get_user_addr(const struct iov_iter *ii)
1500{
1501 return (unsigned long)iter_iov(ii)->iov_base + ii->iov_offset;
1502}
1503
1504static inline size_t fuse_get_frag_size(const struct iov_iter *ii,
1505 size_t max_size)
1506{
1507 return min(iov_iter_single_seg_count(ii), max_size);
1508}
1509
1510static int fuse_get_user_pages(struct fuse_args_pages *ap, struct iov_iter *ii,
1511 size_t *nbytesp, int write,
1512 unsigned int max_pages,
1513 bool use_pages_for_kvec_io)
1514{
1515 bool flush_or_invalidate = false;
1516 unsigned int nr_pages = 0;
1517 size_t nbytes = 0; /* # bytes already packed in req */
1518 ssize_t ret = 0;
1519
1520 /* Special case for kernel I/O: can copy directly into the buffer.
1521 * However if the implementation of fuse_conn requires pages instead of
1522 * pointer (e.g., virtio-fs), use iov_iter_extract_pages() instead.
1523 */
1524 if (iov_iter_is_kvec(ii)) {
1525 void *user_addr = (void *)fuse_get_user_addr(ii);
1526
1527 if (!use_pages_for_kvec_io) {
1528 size_t frag_size = fuse_get_frag_size(ii, *nbytesp);
1529
1530 if (write)
1531 ap->args.in_args[1].value = user_addr;
1532 else
1533 ap->args.out_args[0].value = user_addr;
1534
1535 iov_iter_advance(ii, frag_size);
1536 *nbytesp = frag_size;
1537 return 0;
1538 }
1539
1540 if (is_vmalloc_addr(user_addr)) {
1541 ap->args.vmap_base = user_addr;
1542 flush_or_invalidate = true;
1543 }
1544 }
1545
1546 /*
1547 * Until there is support for iov_iter_extract_folios(), we have to
1548 * manually extract pages using iov_iter_extract_pages() and then
1549 * copy that to a folios array.
1550 */
1551 struct page **pages = kzalloc(max_pages * sizeof(struct page *),
1552 GFP_KERNEL);
1553 if (!pages) {
1554 ret = -ENOMEM;
1555 goto out;
1556 }
1557
1558 while (nbytes < *nbytesp && nr_pages < max_pages) {
1559 unsigned nfolios, i;
1560 size_t start;
1561
1562 ret = iov_iter_extract_pages(ii, &pages,
1563 *nbytesp - nbytes,
1564 max_pages - nr_pages,
1565 0, &start);
1566 if (ret < 0)
1567 break;
1568
1569 nbytes += ret;
1570
1571 nfolios = DIV_ROUND_UP(ret + start, PAGE_SIZE);
1572
1573 for (i = 0; i < nfolios; i++) {
1574 struct folio *folio = page_folio(pages[i]);
1575 unsigned int offset = start +
1576 (folio_page_idx(folio, pages[i]) << PAGE_SHIFT);
1577 unsigned int len = min_t(unsigned int, ret, PAGE_SIZE - start);
1578
1579 ap->descs[ap->num_folios].offset = offset;
1580 ap->descs[ap->num_folios].length = len;
1581 ap->folios[ap->num_folios] = folio;
1582 start = 0;
1583 ret -= len;
1584 ap->num_folios++;
1585 }
1586
1587 nr_pages += nfolios;
1588 }
1589 kfree(pages);
1590
1591 if (write && flush_or_invalidate)
1592 flush_kernel_vmap_range(ap->args.vmap_base, nbytes);
1593
1594 ap->args.invalidate_vmap = !write && flush_or_invalidate;
1595 ap->args.is_pinned = iov_iter_extract_will_pin(ii);
1596 ap->args.user_pages = true;
1597 if (write)
1598 ap->args.in_pages = true;
1599 else
1600 ap->args.out_pages = true;
1601
1602out:
1603 *nbytesp = nbytes;
1604
1605 return ret < 0 ? ret : 0;
1606}
1607
1608ssize_t fuse_direct_io(struct fuse_io_priv *io, struct iov_iter *iter,
1609 loff_t *ppos, int flags)
1610{
1611 int write = flags & FUSE_DIO_WRITE;
1612 int cuse = flags & FUSE_DIO_CUSE;
1613 struct file *file = io->iocb->ki_filp;
1614 struct address_space *mapping = file->f_mapping;
1615 struct inode *inode = mapping->host;
1616 struct fuse_file *ff = file->private_data;
1617 struct fuse_conn *fc = ff->fm->fc;
1618 size_t nmax = write ? fc->max_write : fc->max_read;
1619 loff_t pos = *ppos;
1620 size_t count = iov_iter_count(iter);
1621 pgoff_t idx_from = pos >> PAGE_SHIFT;
1622 pgoff_t idx_to = (pos + count - 1) >> PAGE_SHIFT;
1623 ssize_t res = 0;
1624 int err = 0;
1625 struct fuse_io_args *ia;
1626 unsigned int max_pages;
1627 bool fopen_direct_io = ff->open_flags & FOPEN_DIRECT_IO;
1628
1629 max_pages = iov_iter_npages(iter, fc->max_pages);
1630 ia = fuse_io_alloc(io, max_pages);
1631 if (!ia)
1632 return -ENOMEM;
1633
1634 if (fopen_direct_io && fc->direct_io_allow_mmap) {
1635 res = filemap_write_and_wait_range(mapping, pos, pos + count - 1);
1636 if (res) {
1637 fuse_io_free(ia);
1638 return res;
1639 }
1640 }
1641 if (!cuse && fuse_range_is_writeback(inode, idx_from, idx_to)) {
1642 if (!write)
1643 inode_lock(inode);
1644 fuse_sync_writes(inode);
1645 if (!write)
1646 inode_unlock(inode);
1647 }
1648
1649 if (fopen_direct_io && write) {
1650 res = invalidate_inode_pages2_range(mapping, idx_from, idx_to);
1651 if (res) {
1652 fuse_io_free(ia);
1653 return res;
1654 }
1655 }
1656
1657 io->should_dirty = !write && user_backed_iter(iter);
1658 while (count) {
1659 ssize_t nres;
1660 fl_owner_t owner = current->files;
1661 size_t nbytes = min(count, nmax);
1662
1663 err = fuse_get_user_pages(&ia->ap, iter, &nbytes, write,
1664 max_pages, fc->use_pages_for_kvec_io);
1665 if (err && !nbytes)
1666 break;
1667
1668 if (write) {
1669 if (!capable(CAP_FSETID))
1670 ia->write.in.write_flags |= FUSE_WRITE_KILL_SUIDGID;
1671
1672 nres = fuse_send_write(ia, pos, nbytes, owner);
1673 } else {
1674 nres = fuse_send_read(ia, pos, nbytes, owner);
1675 }
1676
1677 if (!io->async || nres < 0) {
1678 fuse_release_user_pages(&ia->ap, nres, io->should_dirty);
1679 fuse_io_free(ia);
1680 }
1681 ia = NULL;
1682 if (nres < 0) {
1683 iov_iter_revert(iter, nbytes);
1684 err = nres;
1685 break;
1686 }
1687 WARN_ON(nres > nbytes);
1688
1689 count -= nres;
1690 res += nres;
1691 pos += nres;
1692 if (nres != nbytes) {
1693 iov_iter_revert(iter, nbytes - nres);
1694 break;
1695 }
1696 if (count) {
1697 max_pages = iov_iter_npages(iter, fc->max_pages);
1698 ia = fuse_io_alloc(io, max_pages);
1699 if (!ia)
1700 break;
1701 }
1702 }
1703 if (ia)
1704 fuse_io_free(ia);
1705 if (res > 0)
1706 *ppos = pos;
1707
1708 return res > 0 ? res : err;
1709}
1710EXPORT_SYMBOL_GPL(fuse_direct_io);
1711
1712static ssize_t __fuse_direct_read(struct fuse_io_priv *io,
1713 struct iov_iter *iter,
1714 loff_t *ppos)
1715{
1716 ssize_t res;
1717 struct inode *inode = file_inode(io->iocb->ki_filp);
1718
1719 res = fuse_direct_io(io, iter, ppos, 0);
1720
1721 fuse_invalidate_atime(inode);
1722
1723 return res;
1724}
1725
1726static ssize_t fuse_direct_IO(struct kiocb *iocb, struct iov_iter *iter);
1727
1728static ssize_t fuse_direct_read_iter(struct kiocb *iocb, struct iov_iter *to)
1729{
1730 ssize_t res;
1731
1732 if (!is_sync_kiocb(iocb)) {
1733 res = fuse_direct_IO(iocb, to);
1734 } else {
1735 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb);
1736
1737 res = __fuse_direct_read(&io, to, &iocb->ki_pos);
1738 }
1739
1740 return res;
1741}
1742
1743static ssize_t fuse_direct_write_iter(struct kiocb *iocb, struct iov_iter *from)
1744{
1745 struct inode *inode = file_inode(iocb->ki_filp);
1746 ssize_t res;
1747 bool exclusive;
1748
1749 fuse_dio_lock(iocb, from, &exclusive);
1750 res = generic_write_checks(iocb, from);
1751 if (res > 0) {
1752 task_io_account_write(res);
1753 if (!is_sync_kiocb(iocb)) {
1754 res = fuse_direct_IO(iocb, from);
1755 } else {
1756 struct fuse_io_priv io = FUSE_IO_PRIV_SYNC(iocb);
1757
1758 res = fuse_direct_io(&io, from, &iocb->ki_pos,
1759 FUSE_DIO_WRITE);
1760 fuse_write_update_attr(inode, iocb->ki_pos, res);
1761 }
1762 }
1763 fuse_dio_unlock(iocb, exclusive);
1764
1765 return res;
1766}
1767
1768static ssize_t fuse_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
1769{
1770 struct file *file = iocb->ki_filp;
1771 struct fuse_file *ff = file->private_data;
1772 struct inode *inode = file_inode(file);
1773
1774 if (fuse_is_bad(inode))
1775 return -EIO;
1776
1777 if (FUSE_IS_DAX(inode))
1778 return fuse_dax_read_iter(iocb, to);
1779
1780 /* FOPEN_DIRECT_IO overrides FOPEN_PASSTHROUGH */
1781 if (ff->open_flags & FOPEN_DIRECT_IO)
1782 return fuse_direct_read_iter(iocb, to);
1783 else if (fuse_file_passthrough(ff))
1784 return fuse_passthrough_read_iter(iocb, to);
1785 else
1786 return fuse_cache_read_iter(iocb, to);
1787}
1788
1789static ssize_t fuse_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
1790{
1791 struct file *file = iocb->ki_filp;
1792 struct fuse_file *ff = file->private_data;
1793 struct inode *inode = file_inode(file);
1794
1795 if (fuse_is_bad(inode))
1796 return -EIO;
1797
1798 if (FUSE_IS_DAX(inode))
1799 return fuse_dax_write_iter(iocb, from);
1800
1801 /* FOPEN_DIRECT_IO overrides FOPEN_PASSTHROUGH */
1802 if (ff->open_flags & FOPEN_DIRECT_IO)
1803 return fuse_direct_write_iter(iocb, from);
1804 else if (fuse_file_passthrough(ff))
1805 return fuse_passthrough_write_iter(iocb, from);
1806 else
1807 return fuse_cache_write_iter(iocb, from);
1808}
1809
1810static ssize_t fuse_splice_read(struct file *in, loff_t *ppos,
1811 struct pipe_inode_info *pipe, size_t len,
1812 unsigned int flags)
1813{
1814 struct fuse_file *ff = in->private_data;
1815
1816 /* FOPEN_DIRECT_IO overrides FOPEN_PASSTHROUGH */
1817 if (fuse_file_passthrough(ff) && !(ff->open_flags & FOPEN_DIRECT_IO))
1818 return fuse_passthrough_splice_read(in, ppos, pipe, len, flags);
1819 else
1820 return filemap_splice_read(in, ppos, pipe, len, flags);
1821}
1822
1823static ssize_t fuse_splice_write(struct pipe_inode_info *pipe, struct file *out,
1824 loff_t *ppos, size_t len, unsigned int flags)
1825{
1826 struct fuse_file *ff = out->private_data;
1827
1828 /* FOPEN_DIRECT_IO overrides FOPEN_PASSTHROUGH */
1829 if (fuse_file_passthrough(ff) && !(ff->open_flags & FOPEN_DIRECT_IO))
1830 return fuse_passthrough_splice_write(pipe, out, ppos, len, flags);
1831 else
1832 return iter_file_splice_write(pipe, out, ppos, len, flags);
1833}
1834
1835static void fuse_writepage_free(struct fuse_writepage_args *wpa)
1836{
1837 struct fuse_args_pages *ap = &wpa->ia.ap;
1838 int i;
1839
1840 if (wpa->bucket)
1841 fuse_sync_bucket_dec(wpa->bucket);
1842
1843 for (i = 0; i < ap->num_folios; i++)
1844 folio_put(ap->folios[i]);
1845
1846 fuse_file_put(wpa->ia.ff, false);
1847
1848 kfree(ap->folios);
1849 kfree(wpa);
1850}
1851
1852static void fuse_writepage_finish_stat(struct inode *inode, struct folio *folio)
1853{
1854 struct backing_dev_info *bdi = inode_to_bdi(inode);
1855
1856 dec_wb_stat(&bdi->wb, WB_WRITEBACK);
1857 node_stat_sub_folio(folio, NR_WRITEBACK_TEMP);
1858 wb_writeout_inc(&bdi->wb);
1859}
1860
1861static void fuse_writepage_finish(struct fuse_writepage_args *wpa)
1862{
1863 struct fuse_args_pages *ap = &wpa->ia.ap;
1864 struct inode *inode = wpa->inode;
1865 struct fuse_inode *fi = get_fuse_inode(inode);
1866 int i;
1867
1868 for (i = 0; i < ap->num_folios; i++)
1869 fuse_writepage_finish_stat(inode, ap->folios[i]);
1870
1871 wake_up(&fi->page_waitq);
1872}
1873
1874/* Called under fi->lock, may release and reacquire it */
1875static void fuse_send_writepage(struct fuse_mount *fm,
1876 struct fuse_writepage_args *wpa, loff_t size)
1877__releases(fi->lock)
1878__acquires(fi->lock)
1879{
1880 struct fuse_writepage_args *aux, *next;
1881 struct fuse_inode *fi = get_fuse_inode(wpa->inode);
1882 struct fuse_write_in *inarg = &wpa->ia.write.in;
1883 struct fuse_args *args = &wpa->ia.ap.args;
1884 /* Currently, all folios in FUSE are one page */
1885 __u64 data_size = wpa->ia.ap.num_folios * PAGE_SIZE;
1886 int err;
1887
1888 fi->writectr++;
1889 if (inarg->offset + data_size <= size) {
1890 inarg->size = data_size;
1891 } else if (inarg->offset < size) {
1892 inarg->size = size - inarg->offset;
1893 } else {
1894 /* Got truncated off completely */
1895 goto out_free;
1896 }
1897
1898 args->in_args[1].size = inarg->size;
1899 args->force = true;
1900 args->nocreds = true;
1901
1902 err = fuse_simple_background(fm, args, GFP_ATOMIC);
1903 if (err == -ENOMEM) {
1904 spin_unlock(&fi->lock);
1905 err = fuse_simple_background(fm, args, GFP_NOFS | __GFP_NOFAIL);
1906 spin_lock(&fi->lock);
1907 }
1908
1909 /* Fails on broken connection only */
1910 if (unlikely(err))
1911 goto out_free;
1912
1913 return;
1914
1915 out_free:
1916 fi->writectr--;
1917 rb_erase(&wpa->writepages_entry, &fi->writepages);
1918 fuse_writepage_finish(wpa);
1919 spin_unlock(&fi->lock);
1920
1921 /* After rb_erase() aux request list is private */
1922 for (aux = wpa->next; aux; aux = next) {
1923 next = aux->next;
1924 aux->next = NULL;
1925 fuse_writepage_finish_stat(aux->inode,
1926 aux->ia.ap.folios[0]);
1927 fuse_writepage_free(aux);
1928 }
1929
1930 fuse_writepage_free(wpa);
1931 spin_lock(&fi->lock);
1932}
1933
1934/*
1935 * If fi->writectr is positive (no truncate or fsync going on) send
1936 * all queued writepage requests.
1937 *
1938 * Called with fi->lock
1939 */
1940void fuse_flush_writepages(struct inode *inode)
1941__releases(fi->lock)
1942__acquires(fi->lock)
1943{
1944 struct fuse_mount *fm = get_fuse_mount(inode);
1945 struct fuse_inode *fi = get_fuse_inode(inode);
1946 loff_t crop = i_size_read(inode);
1947 struct fuse_writepage_args *wpa;
1948
1949 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1950 wpa = list_entry(fi->queued_writes.next,
1951 struct fuse_writepage_args, queue_entry);
1952 list_del_init(&wpa->queue_entry);
1953 fuse_send_writepage(fm, wpa, crop);
1954 }
1955}
1956
1957static struct fuse_writepage_args *fuse_insert_writeback(struct rb_root *root,
1958 struct fuse_writepage_args *wpa)
1959{
1960 pgoff_t idx_from = wpa->ia.write.in.offset >> PAGE_SHIFT;
1961 pgoff_t idx_to = idx_from + wpa->ia.ap.num_folios - 1;
1962 struct rb_node **p = &root->rb_node;
1963 struct rb_node *parent = NULL;
1964
1965 WARN_ON(!wpa->ia.ap.num_folios);
1966 while (*p) {
1967 struct fuse_writepage_args *curr;
1968 pgoff_t curr_index;
1969
1970 parent = *p;
1971 curr = rb_entry(parent, struct fuse_writepage_args,
1972 writepages_entry);
1973 WARN_ON(curr->inode != wpa->inode);
1974 curr_index = curr->ia.write.in.offset >> PAGE_SHIFT;
1975
1976 if (idx_from >= curr_index + curr->ia.ap.num_folios)
1977 p = &(*p)->rb_right;
1978 else if (idx_to < curr_index)
1979 p = &(*p)->rb_left;
1980 else
1981 return curr;
1982 }
1983
1984 rb_link_node(&wpa->writepages_entry, parent, p);
1985 rb_insert_color(&wpa->writepages_entry, root);
1986 return NULL;
1987}
1988
1989static void tree_insert(struct rb_root *root, struct fuse_writepage_args *wpa)
1990{
1991 WARN_ON(fuse_insert_writeback(root, wpa));
1992}
1993
1994static void fuse_writepage_end(struct fuse_mount *fm, struct fuse_args *args,
1995 int error)
1996{
1997 struct fuse_writepage_args *wpa =
1998 container_of(args, typeof(*wpa), ia.ap.args);
1999 struct inode *inode = wpa->inode;
2000 struct fuse_inode *fi = get_fuse_inode(inode);
2001 struct fuse_conn *fc = get_fuse_conn(inode);
2002
2003 mapping_set_error(inode->i_mapping, error);
2004 /*
2005 * A writeback finished and this might have updated mtime/ctime on
2006 * server making local mtime/ctime stale. Hence invalidate attrs.
2007 * Do this only if writeback_cache is not enabled. If writeback_cache
2008 * is enabled, we trust local ctime/mtime.
2009 */
2010 if (!fc->writeback_cache)
2011 fuse_invalidate_attr_mask(inode, FUSE_STATX_MODIFY);
2012 spin_lock(&fi->lock);
2013 rb_erase(&wpa->writepages_entry, &fi->writepages);
2014 while (wpa->next) {
2015 struct fuse_mount *fm = get_fuse_mount(inode);
2016 struct fuse_write_in *inarg = &wpa->ia.write.in;
2017 struct fuse_writepage_args *next = wpa->next;
2018
2019 wpa->next = next->next;
2020 next->next = NULL;
2021 tree_insert(&fi->writepages, next);
2022
2023 /*
2024 * Skip fuse_flush_writepages() to make it easy to crop requests
2025 * based on primary request size.
2026 *
2027 * 1st case (trivial): there are no concurrent activities using
2028 * fuse_set/release_nowrite. Then we're on safe side because
2029 * fuse_flush_writepages() would call fuse_send_writepage()
2030 * anyway.
2031 *
2032 * 2nd case: someone called fuse_set_nowrite and it is waiting
2033 * now for completion of all in-flight requests. This happens
2034 * rarely and no more than once per page, so this should be
2035 * okay.
2036 *
2037 * 3rd case: someone (e.g. fuse_do_setattr()) is in the middle
2038 * of fuse_set_nowrite..fuse_release_nowrite section. The fact
2039 * that fuse_set_nowrite returned implies that all in-flight
2040 * requests were completed along with all of their secondary
2041 * requests. Further primary requests are blocked by negative
2042 * writectr. Hence there cannot be any in-flight requests and
2043 * no invocations of fuse_writepage_end() while we're in
2044 * fuse_set_nowrite..fuse_release_nowrite section.
2045 */
2046 fuse_send_writepage(fm, next, inarg->offset + inarg->size);
2047 }
2048 fi->writectr--;
2049 fuse_writepage_finish(wpa);
2050 spin_unlock(&fi->lock);
2051 fuse_writepage_free(wpa);
2052}
2053
2054static struct fuse_file *__fuse_write_file_get(struct fuse_inode *fi)
2055{
2056 struct fuse_file *ff;
2057
2058 spin_lock(&fi->lock);
2059 ff = list_first_entry_or_null(&fi->write_files, struct fuse_file,
2060 write_entry);
2061 if (ff)
2062 fuse_file_get(ff);
2063 spin_unlock(&fi->lock);
2064
2065 return ff;
2066}
2067
2068static struct fuse_file *fuse_write_file_get(struct fuse_inode *fi)
2069{
2070 struct fuse_file *ff = __fuse_write_file_get(fi);
2071 WARN_ON(!ff);
2072 return ff;
2073}
2074
2075int fuse_write_inode(struct inode *inode, struct writeback_control *wbc)
2076{
2077 struct fuse_inode *fi = get_fuse_inode(inode);
2078 struct fuse_file *ff;
2079 int err;
2080
2081 /*
2082 * Inode is always written before the last reference is dropped and
2083 * hence this should not be reached from reclaim.
2084 *
2085 * Writing back the inode from reclaim can deadlock if the request
2086 * processing itself needs an allocation. Allocations triggering
2087 * reclaim while serving a request can't be prevented, because it can
2088 * involve any number of unrelated userspace processes.
2089 */
2090 WARN_ON(wbc->for_reclaim);
2091
2092 ff = __fuse_write_file_get(fi);
2093 err = fuse_flush_times(inode, ff);
2094 if (ff)
2095 fuse_file_put(ff, false);
2096
2097 return err;
2098}
2099
2100static struct fuse_writepage_args *fuse_writepage_args_alloc(void)
2101{
2102 struct fuse_writepage_args *wpa;
2103 struct fuse_args_pages *ap;
2104
2105 wpa = kzalloc(sizeof(*wpa), GFP_NOFS);
2106 if (wpa) {
2107 ap = &wpa->ia.ap;
2108 ap->num_folios = 0;
2109 ap->folios = fuse_folios_alloc(1, GFP_NOFS, &ap->descs);
2110 if (!ap->folios) {
2111 kfree(wpa);
2112 wpa = NULL;
2113 }
2114 }
2115 return wpa;
2116
2117}
2118
2119static void fuse_writepage_add_to_bucket(struct fuse_conn *fc,
2120 struct fuse_writepage_args *wpa)
2121{
2122 if (!fc->sync_fs)
2123 return;
2124
2125 rcu_read_lock();
2126 /* Prevent resurrection of dead bucket in unlikely race with syncfs */
2127 do {
2128 wpa->bucket = rcu_dereference(fc->curr_bucket);
2129 } while (unlikely(!atomic_inc_not_zero(&wpa->bucket->count)));
2130 rcu_read_unlock();
2131}
2132
2133static void fuse_writepage_args_page_fill(struct fuse_writepage_args *wpa, struct folio *folio,
2134 struct folio *tmp_folio, uint32_t folio_index)
2135{
2136 struct inode *inode = folio->mapping->host;
2137 struct fuse_args_pages *ap = &wpa->ia.ap;
2138
2139 folio_copy(tmp_folio, folio);
2140
2141 ap->folios[folio_index] = tmp_folio;
2142 ap->descs[folio_index].offset = 0;
2143 ap->descs[folio_index].length = PAGE_SIZE;
2144
2145 inc_wb_stat(&inode_to_bdi(inode)->wb, WB_WRITEBACK);
2146 node_stat_add_folio(tmp_folio, NR_WRITEBACK_TEMP);
2147}
2148
2149static struct fuse_writepage_args *fuse_writepage_args_setup(struct folio *folio,
2150 struct fuse_file *ff)
2151{
2152 struct inode *inode = folio->mapping->host;
2153 struct fuse_conn *fc = get_fuse_conn(inode);
2154 struct fuse_writepage_args *wpa;
2155 struct fuse_args_pages *ap;
2156
2157 wpa = fuse_writepage_args_alloc();
2158 if (!wpa)
2159 return NULL;
2160
2161 fuse_writepage_add_to_bucket(fc, wpa);
2162 fuse_write_args_fill(&wpa->ia, ff, folio_pos(folio), 0);
2163 wpa->ia.write.in.write_flags |= FUSE_WRITE_CACHE;
2164 wpa->inode = inode;
2165 wpa->ia.ff = ff;
2166
2167 ap = &wpa->ia.ap;
2168 ap->args.in_pages = true;
2169 ap->args.end = fuse_writepage_end;
2170
2171 return wpa;
2172}
2173
2174static int fuse_writepage_locked(struct folio *folio)
2175{
2176 struct address_space *mapping = folio->mapping;
2177 struct inode *inode = mapping->host;
2178 struct fuse_inode *fi = get_fuse_inode(inode);
2179 struct fuse_writepage_args *wpa;
2180 struct fuse_args_pages *ap;
2181 struct folio *tmp_folio;
2182 struct fuse_file *ff;
2183 int error = -ENOMEM;
2184
2185 tmp_folio = folio_alloc(GFP_NOFS | __GFP_HIGHMEM, 0);
2186 if (!tmp_folio)
2187 goto err;
2188
2189 error = -EIO;
2190 ff = fuse_write_file_get(fi);
2191 if (!ff)
2192 goto err_nofile;
2193
2194 wpa = fuse_writepage_args_setup(folio, ff);
2195 error = -ENOMEM;
2196 if (!wpa)
2197 goto err_writepage_args;
2198
2199 ap = &wpa->ia.ap;
2200 ap->num_folios = 1;
2201
2202 folio_start_writeback(folio);
2203 fuse_writepage_args_page_fill(wpa, folio, tmp_folio, 0);
2204
2205 spin_lock(&fi->lock);
2206 tree_insert(&fi->writepages, wpa);
2207 list_add_tail(&wpa->queue_entry, &fi->queued_writes);
2208 fuse_flush_writepages(inode);
2209 spin_unlock(&fi->lock);
2210
2211 folio_end_writeback(folio);
2212
2213 return 0;
2214
2215err_writepage_args:
2216 fuse_file_put(ff, false);
2217err_nofile:
2218 folio_put(tmp_folio);
2219err:
2220 mapping_set_error(folio->mapping, error);
2221 return error;
2222}
2223
2224struct fuse_fill_wb_data {
2225 struct fuse_writepage_args *wpa;
2226 struct fuse_file *ff;
2227 struct inode *inode;
2228 struct folio **orig_folios;
2229 unsigned int max_folios;
2230};
2231
2232static bool fuse_pages_realloc(struct fuse_fill_wb_data *data)
2233{
2234 struct fuse_args_pages *ap = &data->wpa->ia.ap;
2235 struct fuse_conn *fc = get_fuse_conn(data->inode);
2236 struct folio **folios;
2237 struct fuse_folio_desc *descs;
2238 unsigned int nfolios = min_t(unsigned int,
2239 max_t(unsigned int, data->max_folios * 2,
2240 FUSE_DEFAULT_MAX_PAGES_PER_REQ),
2241 fc->max_pages);
2242 WARN_ON(nfolios <= data->max_folios);
2243
2244 folios = fuse_folios_alloc(nfolios, GFP_NOFS, &descs);
2245 if (!folios)
2246 return false;
2247
2248 memcpy(folios, ap->folios, sizeof(struct folio *) * ap->num_folios);
2249 memcpy(descs, ap->descs, sizeof(struct fuse_folio_desc) * ap->num_folios);
2250 kfree(ap->folios);
2251 ap->folios = folios;
2252 ap->descs = descs;
2253 data->max_folios = nfolios;
2254
2255 return true;
2256}
2257
2258static void fuse_writepages_send(struct fuse_fill_wb_data *data)
2259{
2260 struct fuse_writepage_args *wpa = data->wpa;
2261 struct inode *inode = data->inode;
2262 struct fuse_inode *fi = get_fuse_inode(inode);
2263 int num_folios = wpa->ia.ap.num_folios;
2264 int i;
2265
2266 spin_lock(&fi->lock);
2267 list_add_tail(&wpa->queue_entry, &fi->queued_writes);
2268 fuse_flush_writepages(inode);
2269 spin_unlock(&fi->lock);
2270
2271 for (i = 0; i < num_folios; i++)
2272 folio_end_writeback(data->orig_folios[i]);
2273}
2274
2275/*
2276 * Check under fi->lock if the page is under writeback, and insert it onto the
2277 * rb_tree if not. Otherwise iterate auxiliary write requests, to see if there's
2278 * one already added for a page at this offset. If there's none, then insert
2279 * this new request onto the auxiliary list, otherwise reuse the existing one by
2280 * swapping the new temp page with the old one.
2281 */
2282static bool fuse_writepage_add(struct fuse_writepage_args *new_wpa,
2283 struct folio *folio)
2284{
2285 struct fuse_inode *fi = get_fuse_inode(new_wpa->inode);
2286 struct fuse_writepage_args *tmp;
2287 struct fuse_writepage_args *old_wpa;
2288 struct fuse_args_pages *new_ap = &new_wpa->ia.ap;
2289
2290 WARN_ON(new_ap->num_folios != 0);
2291 new_ap->num_folios = 1;
2292
2293 spin_lock(&fi->lock);
2294 old_wpa = fuse_insert_writeback(&fi->writepages, new_wpa);
2295 if (!old_wpa) {
2296 spin_unlock(&fi->lock);
2297 return true;
2298 }
2299
2300 for (tmp = old_wpa->next; tmp; tmp = tmp->next) {
2301 pgoff_t curr_index;
2302
2303 WARN_ON(tmp->inode != new_wpa->inode);
2304 curr_index = tmp->ia.write.in.offset >> PAGE_SHIFT;
2305 if (curr_index == folio->index) {
2306 WARN_ON(tmp->ia.ap.num_folios != 1);
2307 swap(tmp->ia.ap.folios[0], new_ap->folios[0]);
2308 break;
2309 }
2310 }
2311
2312 if (!tmp) {
2313 new_wpa->next = old_wpa->next;
2314 old_wpa->next = new_wpa;
2315 }
2316
2317 spin_unlock(&fi->lock);
2318
2319 if (tmp) {
2320 fuse_writepage_finish_stat(new_wpa->inode,
2321 folio);
2322 fuse_writepage_free(new_wpa);
2323 }
2324
2325 return false;
2326}
2327
2328static bool fuse_writepage_need_send(struct fuse_conn *fc, struct folio *folio,
2329 struct fuse_args_pages *ap,
2330 struct fuse_fill_wb_data *data)
2331{
2332 WARN_ON(!ap->num_folios);
2333
2334 /*
2335 * Being under writeback is unlikely but possible. For example direct
2336 * read to an mmaped fuse file will set the page dirty twice; once when
2337 * the pages are faulted with get_user_pages(), and then after the read
2338 * completed.
2339 */
2340 if (fuse_folio_is_writeback(data->inode, folio))
2341 return true;
2342
2343 /* Reached max pages */
2344 if (ap->num_folios == fc->max_pages)
2345 return true;
2346
2347 /* Reached max write bytes */
2348 if ((ap->num_folios + 1) * PAGE_SIZE > fc->max_write)
2349 return true;
2350
2351 /* Discontinuity */
2352 if (data->orig_folios[ap->num_folios - 1]->index + 1 != folio_index(folio))
2353 return true;
2354
2355 /* Need to grow the pages array? If so, did the expansion fail? */
2356 if (ap->num_folios == data->max_folios && !fuse_pages_realloc(data))
2357 return true;
2358
2359 return false;
2360}
2361
2362static int fuse_writepages_fill(struct folio *folio,
2363 struct writeback_control *wbc, void *_data)
2364{
2365 struct fuse_fill_wb_data *data = _data;
2366 struct fuse_writepage_args *wpa = data->wpa;
2367 struct fuse_args_pages *ap = &wpa->ia.ap;
2368 struct inode *inode = data->inode;
2369 struct fuse_inode *fi = get_fuse_inode(inode);
2370 struct fuse_conn *fc = get_fuse_conn(inode);
2371 struct folio *tmp_folio;
2372 int err;
2373
2374 if (!data->ff) {
2375 err = -EIO;
2376 data->ff = fuse_write_file_get(fi);
2377 if (!data->ff)
2378 goto out_unlock;
2379 }
2380
2381 if (wpa && fuse_writepage_need_send(fc, folio, ap, data)) {
2382 fuse_writepages_send(data);
2383 data->wpa = NULL;
2384 }
2385
2386 err = -ENOMEM;
2387 tmp_folio = folio_alloc(GFP_NOFS | __GFP_HIGHMEM, 0);
2388 if (!tmp_folio)
2389 goto out_unlock;
2390
2391 /*
2392 * The page must not be redirtied until the writeout is completed
2393 * (i.e. userspace has sent a reply to the write request). Otherwise
2394 * there could be more than one temporary page instance for each real
2395 * page.
2396 *
2397 * This is ensured by holding the page lock in page_mkwrite() while
2398 * checking fuse_page_is_writeback(). We already hold the page lock
2399 * since clear_page_dirty_for_io() and keep it held until we add the
2400 * request to the fi->writepages list and increment ap->num_folios.
2401 * After this fuse_page_is_writeback() will indicate that the page is
2402 * under writeback, so we can release the page lock.
2403 */
2404 if (data->wpa == NULL) {
2405 err = -ENOMEM;
2406 wpa = fuse_writepage_args_setup(folio, data->ff);
2407 if (!wpa) {
2408 folio_put(tmp_folio);
2409 goto out_unlock;
2410 }
2411 fuse_file_get(wpa->ia.ff);
2412 data->max_folios = 1;
2413 ap = &wpa->ia.ap;
2414 }
2415 folio_start_writeback(folio);
2416
2417 fuse_writepage_args_page_fill(wpa, folio, tmp_folio, ap->num_folios);
2418 data->orig_folios[ap->num_folios] = folio;
2419
2420 err = 0;
2421 if (data->wpa) {
2422 /*
2423 * Protected by fi->lock against concurrent access by
2424 * fuse_page_is_writeback().
2425 */
2426 spin_lock(&fi->lock);
2427 ap->num_folios++;
2428 spin_unlock(&fi->lock);
2429 } else if (fuse_writepage_add(wpa, folio)) {
2430 data->wpa = wpa;
2431 } else {
2432 folio_end_writeback(folio);
2433 }
2434out_unlock:
2435 folio_unlock(folio);
2436
2437 return err;
2438}
2439
2440static int fuse_writepages(struct address_space *mapping,
2441 struct writeback_control *wbc)
2442{
2443 struct inode *inode = mapping->host;
2444 struct fuse_conn *fc = get_fuse_conn(inode);
2445 struct fuse_fill_wb_data data;
2446 int err;
2447
2448 err = -EIO;
2449 if (fuse_is_bad(inode))
2450 goto out;
2451
2452 if (wbc->sync_mode == WB_SYNC_NONE &&
2453 fc->num_background >= fc->congestion_threshold)
2454 return 0;
2455
2456 data.inode = inode;
2457 data.wpa = NULL;
2458 data.ff = NULL;
2459
2460 err = -ENOMEM;
2461 data.orig_folios = kcalloc(fc->max_pages,
2462 sizeof(struct folio *),
2463 GFP_NOFS);
2464 if (!data.orig_folios)
2465 goto out;
2466
2467 err = write_cache_pages(mapping, wbc, fuse_writepages_fill, &data);
2468 if (data.wpa) {
2469 WARN_ON(!data.wpa->ia.ap.num_folios);
2470 fuse_writepages_send(&data);
2471 }
2472 if (data.ff)
2473 fuse_file_put(data.ff, false);
2474
2475 kfree(data.orig_folios);
2476out:
2477 return err;
2478}
2479
2480/*
2481 * It's worthy to make sure that space is reserved on disk for the write,
2482 * but how to implement it without killing performance need more thinking.
2483 */
2484static int fuse_write_begin(struct file *file, struct address_space *mapping,
2485 loff_t pos, unsigned len, struct folio **foliop, void **fsdata)
2486{
2487 pgoff_t index = pos >> PAGE_SHIFT;
2488 struct fuse_conn *fc = get_fuse_conn(file_inode(file));
2489 struct folio *folio;
2490 loff_t fsize;
2491 int err = -ENOMEM;
2492
2493 WARN_ON(!fc->writeback_cache);
2494
2495 folio = __filemap_get_folio(mapping, index, FGP_WRITEBEGIN,
2496 mapping_gfp_mask(mapping));
2497 if (IS_ERR(folio))
2498 goto error;
2499
2500 fuse_wait_on_page_writeback(mapping->host, folio->index);
2501
2502 if (folio_test_uptodate(folio) || len >= folio_size(folio))
2503 goto success;
2504 /*
2505 * Check if the start of this folio comes after the end of file,
2506 * in which case the readpage can be optimized away.
2507 */
2508 fsize = i_size_read(mapping->host);
2509 if (fsize <= folio_pos(folio)) {
2510 size_t off = offset_in_folio(folio, pos);
2511 if (off)
2512 folio_zero_segment(folio, 0, off);
2513 goto success;
2514 }
2515 err = fuse_do_readfolio(file, folio);
2516 if (err)
2517 goto cleanup;
2518success:
2519 *foliop = folio;
2520 return 0;
2521
2522cleanup:
2523 folio_unlock(folio);
2524 folio_put(folio);
2525error:
2526 return err;
2527}
2528
2529static int fuse_write_end(struct file *file, struct address_space *mapping,
2530 loff_t pos, unsigned len, unsigned copied,
2531 struct folio *folio, void *fsdata)
2532{
2533 struct inode *inode = folio->mapping->host;
2534
2535 /* Haven't copied anything? Skip zeroing, size extending, dirtying. */
2536 if (!copied)
2537 goto unlock;
2538
2539 pos += copied;
2540 if (!folio_test_uptodate(folio)) {
2541 /* Zero any unwritten bytes at the end of the page */
2542 size_t endoff = pos & ~PAGE_MASK;
2543 if (endoff)
2544 folio_zero_segment(folio, endoff, PAGE_SIZE);
2545 folio_mark_uptodate(folio);
2546 }
2547
2548 if (pos > inode->i_size)
2549 i_size_write(inode, pos);
2550
2551 folio_mark_dirty(folio);
2552
2553unlock:
2554 folio_unlock(folio);
2555 folio_put(folio);
2556
2557 return copied;
2558}
2559
2560static int fuse_launder_folio(struct folio *folio)
2561{
2562 int err = 0;
2563 if (folio_clear_dirty_for_io(folio)) {
2564 struct inode *inode = folio->mapping->host;
2565
2566 /* Serialize with pending writeback for the same page */
2567 fuse_wait_on_page_writeback(inode, folio->index);
2568 err = fuse_writepage_locked(folio);
2569 if (!err)
2570 fuse_wait_on_page_writeback(inode, folio->index);
2571 }
2572 return err;
2573}
2574
2575/*
2576 * Write back dirty data/metadata now (there may not be any suitable
2577 * open files later for data)
2578 */
2579static void fuse_vma_close(struct vm_area_struct *vma)
2580{
2581 int err;
2582
2583 err = write_inode_now(vma->vm_file->f_mapping->host, 1);
2584 mapping_set_error(vma->vm_file->f_mapping, err);
2585}
2586
2587/*
2588 * Wait for writeback against this page to complete before allowing it
2589 * to be marked dirty again, and hence written back again, possibly
2590 * before the previous writepage completed.
2591 *
2592 * Block here, instead of in ->writepage(), so that the userspace fs
2593 * can only block processes actually operating on the filesystem.
2594 *
2595 * Otherwise unprivileged userspace fs would be able to block
2596 * unrelated:
2597 *
2598 * - page migration
2599 * - sync(2)
2600 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
2601 */
2602static vm_fault_t fuse_page_mkwrite(struct vm_fault *vmf)
2603{
2604 struct folio *folio = page_folio(vmf->page);
2605 struct inode *inode = file_inode(vmf->vma->vm_file);
2606
2607 file_update_time(vmf->vma->vm_file);
2608 folio_lock(folio);
2609 if (folio->mapping != inode->i_mapping) {
2610 folio_unlock(folio);
2611 return VM_FAULT_NOPAGE;
2612 }
2613
2614 fuse_wait_on_folio_writeback(inode, folio);
2615 return VM_FAULT_LOCKED;
2616}
2617
2618static const struct vm_operations_struct fuse_file_vm_ops = {
2619 .close = fuse_vma_close,
2620 .fault = filemap_fault,
2621 .map_pages = filemap_map_pages,
2622 .page_mkwrite = fuse_page_mkwrite,
2623};
2624
2625static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
2626{
2627 struct fuse_file *ff = file->private_data;
2628 struct fuse_conn *fc = ff->fm->fc;
2629 struct inode *inode = file_inode(file);
2630 int rc;
2631
2632 /* DAX mmap is superior to direct_io mmap */
2633 if (FUSE_IS_DAX(inode))
2634 return fuse_dax_mmap(file, vma);
2635
2636 /*
2637 * If inode is in passthrough io mode, because it has some file open
2638 * in passthrough mode, either mmap to backing file or fail mmap,
2639 * because mixing cached mmap and passthrough io mode is not allowed.
2640 */
2641 if (fuse_file_passthrough(ff))
2642 return fuse_passthrough_mmap(file, vma);
2643 else if (fuse_inode_backing(get_fuse_inode(inode)))
2644 return -ENODEV;
2645
2646 /*
2647 * FOPEN_DIRECT_IO handling is special compared to O_DIRECT,
2648 * as does not allow MAP_SHARED mmap without FUSE_DIRECT_IO_ALLOW_MMAP.
2649 */
2650 if (ff->open_flags & FOPEN_DIRECT_IO) {
2651 /*
2652 * Can't provide the coherency needed for MAP_SHARED
2653 * if FUSE_DIRECT_IO_ALLOW_MMAP isn't set.
2654 */
2655 if ((vma->vm_flags & VM_MAYSHARE) && !fc->direct_io_allow_mmap)
2656 return -ENODEV;
2657
2658 invalidate_inode_pages2(file->f_mapping);
2659
2660 if (!(vma->vm_flags & VM_MAYSHARE)) {
2661 /* MAP_PRIVATE */
2662 return generic_file_mmap(file, vma);
2663 }
2664
2665 /*
2666 * First mmap of direct_io file enters caching inode io mode.
2667 * Also waits for parallel dio writers to go into serial mode
2668 * (exclusive instead of shared lock).
2669 * After first mmap, the inode stays in caching io mode until
2670 * the direct_io file release.
2671 */
2672 rc = fuse_file_cached_io_open(inode, ff);
2673 if (rc)
2674 return rc;
2675 }
2676
2677 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2678 fuse_link_write_file(file);
2679
2680 file_accessed(file);
2681 vma->vm_ops = &fuse_file_vm_ops;
2682 return 0;
2683}
2684
2685static int convert_fuse_file_lock(struct fuse_conn *fc,
2686 const struct fuse_file_lock *ffl,
2687 struct file_lock *fl)
2688{
2689 switch (ffl->type) {
2690 case F_UNLCK:
2691 break;
2692
2693 case F_RDLCK:
2694 case F_WRLCK:
2695 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
2696 ffl->end < ffl->start)
2697 return -EIO;
2698
2699 fl->fl_start = ffl->start;
2700 fl->fl_end = ffl->end;
2701
2702 /*
2703 * Convert pid into init's pid namespace. The locks API will
2704 * translate it into the caller's pid namespace.
2705 */
2706 rcu_read_lock();
2707 fl->c.flc_pid = pid_nr_ns(find_pid_ns(ffl->pid, fc->pid_ns), &init_pid_ns);
2708 rcu_read_unlock();
2709 break;
2710
2711 default:
2712 return -EIO;
2713 }
2714 fl->c.flc_type = ffl->type;
2715 return 0;
2716}
2717
2718static void fuse_lk_fill(struct fuse_args *args, struct file *file,
2719 const struct file_lock *fl, int opcode, pid_t pid,
2720 int flock, struct fuse_lk_in *inarg)
2721{
2722 struct inode *inode = file_inode(file);
2723 struct fuse_conn *fc = get_fuse_conn(inode);
2724 struct fuse_file *ff = file->private_data;
2725
2726 memset(inarg, 0, sizeof(*inarg));
2727 inarg->fh = ff->fh;
2728 inarg->owner = fuse_lock_owner_id(fc, fl->c.flc_owner);
2729 inarg->lk.start = fl->fl_start;
2730 inarg->lk.end = fl->fl_end;
2731 inarg->lk.type = fl->c.flc_type;
2732 inarg->lk.pid = pid;
2733 if (flock)
2734 inarg->lk_flags |= FUSE_LK_FLOCK;
2735 args->opcode = opcode;
2736 args->nodeid = get_node_id(inode);
2737 args->in_numargs = 1;
2738 args->in_args[0].size = sizeof(*inarg);
2739 args->in_args[0].value = inarg;
2740}
2741
2742static int fuse_getlk(struct file *file, struct file_lock *fl)
2743{
2744 struct inode *inode = file_inode(file);
2745 struct fuse_mount *fm = get_fuse_mount(inode);
2746 FUSE_ARGS(args);
2747 struct fuse_lk_in inarg;
2748 struct fuse_lk_out outarg;
2749 int err;
2750
2751 fuse_lk_fill(&args, file, fl, FUSE_GETLK, 0, 0, &inarg);
2752 args.out_numargs = 1;
2753 args.out_args[0].size = sizeof(outarg);
2754 args.out_args[0].value = &outarg;
2755 err = fuse_simple_request(fm, &args);
2756 if (!err)
2757 err = convert_fuse_file_lock(fm->fc, &outarg.lk, fl);
2758
2759 return err;
2760}
2761
2762static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
2763{
2764 struct inode *inode = file_inode(file);
2765 struct fuse_mount *fm = get_fuse_mount(inode);
2766 FUSE_ARGS(args);
2767 struct fuse_lk_in inarg;
2768 int opcode = (fl->c.flc_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
2769 struct pid *pid = fl->c.flc_type != F_UNLCK ? task_tgid(current) : NULL;
2770 pid_t pid_nr = pid_nr_ns(pid, fm->fc->pid_ns);
2771 int err;
2772
2773 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
2774 /* NLM needs asynchronous locks, which we don't support yet */
2775 return -ENOLCK;
2776 }
2777
2778 fuse_lk_fill(&args, file, fl, opcode, pid_nr, flock, &inarg);
2779 err = fuse_simple_request(fm, &args);
2780
2781 /* locking is restartable */
2782 if (err == -EINTR)
2783 err = -ERESTARTSYS;
2784
2785 return err;
2786}
2787
2788static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
2789{
2790 struct inode *inode = file_inode(file);
2791 struct fuse_conn *fc = get_fuse_conn(inode);
2792 int err;
2793
2794 if (cmd == F_CANCELLK) {
2795 err = 0;
2796 } else if (cmd == F_GETLK) {
2797 if (fc->no_lock) {
2798 posix_test_lock(file, fl);
2799 err = 0;
2800 } else
2801 err = fuse_getlk(file, fl);
2802 } else {
2803 if (fc->no_lock)
2804 err = posix_lock_file(file, fl, NULL);
2805 else
2806 err = fuse_setlk(file, fl, 0);
2807 }
2808 return err;
2809}
2810
2811static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
2812{
2813 struct inode *inode = file_inode(file);
2814 struct fuse_conn *fc = get_fuse_conn(inode);
2815 int err;
2816
2817 if (fc->no_flock) {
2818 err = locks_lock_file_wait(file, fl);
2819 } else {
2820 struct fuse_file *ff = file->private_data;
2821
2822 /* emulate flock with POSIX locks */
2823 ff->flock = true;
2824 err = fuse_setlk(file, fl, 1);
2825 }
2826
2827 return err;
2828}
2829
2830static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
2831{
2832 struct inode *inode = mapping->host;
2833 struct fuse_mount *fm = get_fuse_mount(inode);
2834 FUSE_ARGS(args);
2835 struct fuse_bmap_in inarg;
2836 struct fuse_bmap_out outarg;
2837 int err;
2838
2839 if (!inode->i_sb->s_bdev || fm->fc->no_bmap)
2840 return 0;
2841
2842 memset(&inarg, 0, sizeof(inarg));
2843 inarg.block = block;
2844 inarg.blocksize = inode->i_sb->s_blocksize;
2845 args.opcode = FUSE_BMAP;
2846 args.nodeid = get_node_id(inode);
2847 args.in_numargs = 1;
2848 args.in_args[0].size = sizeof(inarg);
2849 args.in_args[0].value = &inarg;
2850 args.out_numargs = 1;
2851 args.out_args[0].size = sizeof(outarg);
2852 args.out_args[0].value = &outarg;
2853 err = fuse_simple_request(fm, &args);
2854 if (err == -ENOSYS)
2855 fm->fc->no_bmap = 1;
2856
2857 return err ? 0 : outarg.block;
2858}
2859
2860static loff_t fuse_lseek(struct file *file, loff_t offset, int whence)
2861{
2862 struct inode *inode = file->f_mapping->host;
2863 struct fuse_mount *fm = get_fuse_mount(inode);
2864 struct fuse_file *ff = file->private_data;
2865 FUSE_ARGS(args);
2866 struct fuse_lseek_in inarg = {
2867 .fh = ff->fh,
2868 .offset = offset,
2869 .whence = whence
2870 };
2871 struct fuse_lseek_out outarg;
2872 int err;
2873
2874 if (fm->fc->no_lseek)
2875 goto fallback;
2876
2877 args.opcode = FUSE_LSEEK;
2878 args.nodeid = ff->nodeid;
2879 args.in_numargs = 1;
2880 args.in_args[0].size = sizeof(inarg);
2881 args.in_args[0].value = &inarg;
2882 args.out_numargs = 1;
2883 args.out_args[0].size = sizeof(outarg);
2884 args.out_args[0].value = &outarg;
2885 err = fuse_simple_request(fm, &args);
2886 if (err) {
2887 if (err == -ENOSYS) {
2888 fm->fc->no_lseek = 1;
2889 goto fallback;
2890 }
2891 return err;
2892 }
2893
2894 return vfs_setpos(file, outarg.offset, inode->i_sb->s_maxbytes);
2895
2896fallback:
2897 err = fuse_update_attributes(inode, file, STATX_SIZE);
2898 if (!err)
2899 return generic_file_llseek(file, offset, whence);
2900 else
2901 return err;
2902}
2903
2904static loff_t fuse_file_llseek(struct file *file, loff_t offset, int whence)
2905{
2906 loff_t retval;
2907 struct inode *inode = file_inode(file);
2908
2909 switch (whence) {
2910 case SEEK_SET:
2911 case SEEK_CUR:
2912 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
2913 retval = generic_file_llseek(file, offset, whence);
2914 break;
2915 case SEEK_END:
2916 inode_lock(inode);
2917 retval = fuse_update_attributes(inode, file, STATX_SIZE);
2918 if (!retval)
2919 retval = generic_file_llseek(file, offset, whence);
2920 inode_unlock(inode);
2921 break;
2922 case SEEK_HOLE:
2923 case SEEK_DATA:
2924 inode_lock(inode);
2925 retval = fuse_lseek(file, offset, whence);
2926 inode_unlock(inode);
2927 break;
2928 default:
2929 retval = -EINVAL;
2930 }
2931
2932 return retval;
2933}
2934
2935/*
2936 * All files which have been polled are linked to RB tree
2937 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2938 * find the matching one.
2939 */
2940static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2941 struct rb_node **parent_out)
2942{
2943 struct rb_node **link = &fc->polled_files.rb_node;
2944 struct rb_node *last = NULL;
2945
2946 while (*link) {
2947 struct fuse_file *ff;
2948
2949 last = *link;
2950 ff = rb_entry(last, struct fuse_file, polled_node);
2951
2952 if (kh < ff->kh)
2953 link = &last->rb_left;
2954 else if (kh > ff->kh)
2955 link = &last->rb_right;
2956 else
2957 return link;
2958 }
2959
2960 if (parent_out)
2961 *parent_out = last;
2962 return link;
2963}
2964
2965/*
2966 * The file is about to be polled. Make sure it's on the polled_files
2967 * RB tree. Note that files once added to the polled_files tree are
2968 * not removed before the file is released. This is because a file
2969 * polled once is likely to be polled again.
2970 */
2971static void fuse_register_polled_file(struct fuse_conn *fc,
2972 struct fuse_file *ff)
2973{
2974 spin_lock(&fc->lock);
2975 if (RB_EMPTY_NODE(&ff->polled_node)) {
2976 struct rb_node **link, *parent;
2977
2978 link = fuse_find_polled_node(fc, ff->kh, &parent);
2979 BUG_ON(*link);
2980 rb_link_node(&ff->polled_node, parent, link);
2981 rb_insert_color(&ff->polled_node, &fc->polled_files);
2982 }
2983 spin_unlock(&fc->lock);
2984}
2985
2986__poll_t fuse_file_poll(struct file *file, poll_table *wait)
2987{
2988 struct fuse_file *ff = file->private_data;
2989 struct fuse_mount *fm = ff->fm;
2990 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2991 struct fuse_poll_out outarg;
2992 FUSE_ARGS(args);
2993 int err;
2994
2995 if (fm->fc->no_poll)
2996 return DEFAULT_POLLMASK;
2997
2998 poll_wait(file, &ff->poll_wait, wait);
2999 inarg.events = mangle_poll(poll_requested_events(wait));
3000
3001 /*
3002 * Ask for notification iff there's someone waiting for it.
3003 * The client may ignore the flag and always notify.
3004 */
3005 if (waitqueue_active(&ff->poll_wait)) {
3006 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
3007 fuse_register_polled_file(fm->fc, ff);
3008 }
3009
3010 args.opcode = FUSE_POLL;
3011 args.nodeid = ff->nodeid;
3012 args.in_numargs = 1;
3013 args.in_args[0].size = sizeof(inarg);
3014 args.in_args[0].value = &inarg;
3015 args.out_numargs = 1;
3016 args.out_args[0].size = sizeof(outarg);
3017 args.out_args[0].value = &outarg;
3018 err = fuse_simple_request(fm, &args);
3019
3020 if (!err)
3021 return demangle_poll(outarg.revents);
3022 if (err == -ENOSYS) {
3023 fm->fc->no_poll = 1;
3024 return DEFAULT_POLLMASK;
3025 }
3026 return EPOLLERR;
3027}
3028EXPORT_SYMBOL_GPL(fuse_file_poll);
3029
3030/*
3031 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
3032 * wakes up the poll waiters.
3033 */
3034int fuse_notify_poll_wakeup(struct fuse_conn *fc,
3035 struct fuse_notify_poll_wakeup_out *outarg)
3036{
3037 u64 kh = outarg->kh;
3038 struct rb_node **link;
3039
3040 spin_lock(&fc->lock);
3041
3042 link = fuse_find_polled_node(fc, kh, NULL);
3043 if (*link) {
3044 struct fuse_file *ff;
3045
3046 ff = rb_entry(*link, struct fuse_file, polled_node);
3047 wake_up_interruptible_sync(&ff->poll_wait);
3048 }
3049
3050 spin_unlock(&fc->lock);
3051 return 0;
3052}
3053
3054static void fuse_do_truncate(struct file *file)
3055{
3056 struct inode *inode = file->f_mapping->host;
3057 struct iattr attr;
3058
3059 attr.ia_valid = ATTR_SIZE;
3060 attr.ia_size = i_size_read(inode);
3061
3062 attr.ia_file = file;
3063 attr.ia_valid |= ATTR_FILE;
3064
3065 fuse_do_setattr(file_mnt_idmap(file), file_dentry(file), &attr, file);
3066}
3067
3068static inline loff_t fuse_round_up(struct fuse_conn *fc, loff_t off)
3069{
3070 return round_up(off, fc->max_pages << PAGE_SHIFT);
3071}
3072
3073static ssize_t
3074fuse_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
3075{
3076 DECLARE_COMPLETION_ONSTACK(wait);
3077 ssize_t ret = 0;
3078 struct file *file = iocb->ki_filp;
3079 struct fuse_file *ff = file->private_data;
3080 loff_t pos = 0;
3081 struct inode *inode;
3082 loff_t i_size;
3083 size_t count = iov_iter_count(iter), shortened = 0;
3084 loff_t offset = iocb->ki_pos;
3085 struct fuse_io_priv *io;
3086
3087 pos = offset;
3088 inode = file->f_mapping->host;
3089 i_size = i_size_read(inode);
3090
3091 if ((iov_iter_rw(iter) == READ) && (offset >= i_size))
3092 return 0;
3093
3094 io = kmalloc(sizeof(struct fuse_io_priv), GFP_KERNEL);
3095 if (!io)
3096 return -ENOMEM;
3097 spin_lock_init(&io->lock);
3098 kref_init(&io->refcnt);
3099 io->reqs = 1;
3100 io->bytes = -1;
3101 io->size = 0;
3102 io->offset = offset;
3103 io->write = (iov_iter_rw(iter) == WRITE);
3104 io->err = 0;
3105 /*
3106 * By default, we want to optimize all I/Os with async request
3107 * submission to the client filesystem if supported.
3108 */
3109 io->async = ff->fm->fc->async_dio;
3110 io->iocb = iocb;
3111 io->blocking = is_sync_kiocb(iocb);
3112
3113 /* optimization for short read */
3114 if (io->async && !io->write && offset + count > i_size) {
3115 iov_iter_truncate(iter, fuse_round_up(ff->fm->fc, i_size - offset));
3116 shortened = count - iov_iter_count(iter);
3117 count -= shortened;
3118 }
3119
3120 /*
3121 * We cannot asynchronously extend the size of a file.
3122 * In such case the aio will behave exactly like sync io.
3123 */
3124 if ((offset + count > i_size) && io->write)
3125 io->blocking = true;
3126
3127 if (io->async && io->blocking) {
3128 /*
3129 * Additional reference to keep io around after
3130 * calling fuse_aio_complete()
3131 */
3132 kref_get(&io->refcnt);
3133 io->done = &wait;
3134 }
3135
3136 if (iov_iter_rw(iter) == WRITE) {
3137 ret = fuse_direct_io(io, iter, &pos, FUSE_DIO_WRITE);
3138 fuse_invalidate_attr_mask(inode, FUSE_STATX_MODSIZE);
3139 } else {
3140 ret = __fuse_direct_read(io, iter, &pos);
3141 }
3142 iov_iter_reexpand(iter, iov_iter_count(iter) + shortened);
3143
3144 if (io->async) {
3145 bool blocking = io->blocking;
3146
3147 fuse_aio_complete(io, ret < 0 ? ret : 0, -1);
3148
3149 /* we have a non-extending, async request, so return */
3150 if (!blocking)
3151 return -EIOCBQUEUED;
3152
3153 wait_for_completion(&wait);
3154 ret = fuse_get_res_by_io(io);
3155 }
3156
3157 kref_put(&io->refcnt, fuse_io_release);
3158
3159 if (iov_iter_rw(iter) == WRITE) {
3160 fuse_write_update_attr(inode, pos, ret);
3161 /* For extending writes we already hold exclusive lock */
3162 if (ret < 0 && offset + count > i_size)
3163 fuse_do_truncate(file);
3164 }
3165
3166 return ret;
3167}
3168
3169static int fuse_writeback_range(struct inode *inode, loff_t start, loff_t end)
3170{
3171 int err = filemap_write_and_wait_range(inode->i_mapping, start, LLONG_MAX);
3172
3173 if (!err)
3174 fuse_sync_writes(inode);
3175
3176 return err;
3177}
3178
3179static long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
3180 loff_t length)
3181{
3182 struct fuse_file *ff = file->private_data;
3183 struct inode *inode = file_inode(file);
3184 struct fuse_inode *fi = get_fuse_inode(inode);
3185 struct fuse_mount *fm = ff->fm;
3186 FUSE_ARGS(args);
3187 struct fuse_fallocate_in inarg = {
3188 .fh = ff->fh,
3189 .offset = offset,
3190 .length = length,
3191 .mode = mode
3192 };
3193 int err;
3194 bool block_faults = FUSE_IS_DAX(inode) &&
3195 (!(mode & FALLOC_FL_KEEP_SIZE) ||
3196 (mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_ZERO_RANGE)));
3197
3198 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
3199 FALLOC_FL_ZERO_RANGE))
3200 return -EOPNOTSUPP;
3201
3202 if (fm->fc->no_fallocate)
3203 return -EOPNOTSUPP;
3204
3205 inode_lock(inode);
3206 if (block_faults) {
3207 filemap_invalidate_lock(inode->i_mapping);
3208 err = fuse_dax_break_layouts(inode, 0, 0);
3209 if (err)
3210 goto out;
3211 }
3212
3213 if (mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_ZERO_RANGE)) {
3214 loff_t endbyte = offset + length - 1;
3215
3216 err = fuse_writeback_range(inode, offset, endbyte);
3217 if (err)
3218 goto out;
3219 }
3220
3221 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
3222 offset + length > i_size_read(inode)) {
3223 err = inode_newsize_ok(inode, offset + length);
3224 if (err)
3225 goto out;
3226 }
3227
3228 err = file_modified(file);
3229 if (err)
3230 goto out;
3231
3232 if (!(mode & FALLOC_FL_KEEP_SIZE))
3233 set_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
3234
3235 args.opcode = FUSE_FALLOCATE;
3236 args.nodeid = ff->nodeid;
3237 args.in_numargs = 1;
3238 args.in_args[0].size = sizeof(inarg);
3239 args.in_args[0].value = &inarg;
3240 err = fuse_simple_request(fm, &args);
3241 if (err == -ENOSYS) {
3242 fm->fc->no_fallocate = 1;
3243 err = -EOPNOTSUPP;
3244 }
3245 if (err)
3246 goto out;
3247
3248 /* we could have extended the file */
3249 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
3250 if (fuse_write_update_attr(inode, offset + length, length))
3251 file_update_time(file);
3252 }
3253
3254 if (mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_ZERO_RANGE))
3255 truncate_pagecache_range(inode, offset, offset + length - 1);
3256
3257 fuse_invalidate_attr_mask(inode, FUSE_STATX_MODSIZE);
3258
3259out:
3260 if (!(mode & FALLOC_FL_KEEP_SIZE))
3261 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi->state);
3262
3263 if (block_faults)
3264 filemap_invalidate_unlock(inode->i_mapping);
3265
3266 inode_unlock(inode);
3267
3268 fuse_flush_time_update(inode);
3269
3270 return err;
3271}
3272
3273static ssize_t __fuse_copy_file_range(struct file *file_in, loff_t pos_in,
3274 struct file *file_out, loff_t pos_out,
3275 size_t len, unsigned int flags)
3276{
3277 struct fuse_file *ff_in = file_in->private_data;
3278 struct fuse_file *ff_out = file_out->private_data;
3279 struct inode *inode_in = file_inode(file_in);
3280 struct inode *inode_out = file_inode(file_out);
3281 struct fuse_inode *fi_out = get_fuse_inode(inode_out);
3282 struct fuse_mount *fm = ff_in->fm;
3283 struct fuse_conn *fc = fm->fc;
3284 FUSE_ARGS(args);
3285 struct fuse_copy_file_range_in inarg = {
3286 .fh_in = ff_in->fh,
3287 .off_in = pos_in,
3288 .nodeid_out = ff_out->nodeid,
3289 .fh_out = ff_out->fh,
3290 .off_out = pos_out,
3291 .len = len,
3292 .flags = flags
3293 };
3294 struct fuse_write_out outarg;
3295 ssize_t err;
3296 /* mark unstable when write-back is not used, and file_out gets
3297 * extended */
3298 bool is_unstable = (!fc->writeback_cache) &&
3299 ((pos_out + len) > inode_out->i_size);
3300
3301 if (fc->no_copy_file_range)
3302 return -EOPNOTSUPP;
3303
3304 if (file_inode(file_in)->i_sb != file_inode(file_out)->i_sb)
3305 return -EXDEV;
3306
3307 inode_lock(inode_in);
3308 err = fuse_writeback_range(inode_in, pos_in, pos_in + len - 1);
3309 inode_unlock(inode_in);
3310 if (err)
3311 return err;
3312
3313 inode_lock(inode_out);
3314
3315 err = file_modified(file_out);
3316 if (err)
3317 goto out;
3318
3319 /*
3320 * Write out dirty pages in the destination file before sending the COPY
3321 * request to userspace. After the request is completed, truncate off
3322 * pages (including partial ones) from the cache that have been copied,
3323 * since these contain stale data at that point.
3324 *
3325 * This should be mostly correct, but if the COPY writes to partial
3326 * pages (at the start or end) and the parts not covered by the COPY are
3327 * written through a memory map after calling fuse_writeback_range(),
3328 * then these partial page modifications will be lost on truncation.
3329 *
3330 * It is unlikely that someone would rely on such mixed style
3331 * modifications. Yet this does give less guarantees than if the
3332 * copying was performed with write(2).
3333 *
3334 * To fix this a mapping->invalidate_lock could be used to prevent new
3335 * faults while the copy is ongoing.
3336 */
3337 err = fuse_writeback_range(inode_out, pos_out, pos_out + len - 1);
3338 if (err)
3339 goto out;
3340
3341 if (is_unstable)
3342 set_bit(FUSE_I_SIZE_UNSTABLE, &fi_out->state);
3343
3344 args.opcode = FUSE_COPY_FILE_RANGE;
3345 args.nodeid = ff_in->nodeid;
3346 args.in_numargs = 1;
3347 args.in_args[0].size = sizeof(inarg);
3348 args.in_args[0].value = &inarg;
3349 args.out_numargs = 1;
3350 args.out_args[0].size = sizeof(outarg);
3351 args.out_args[0].value = &outarg;
3352 err = fuse_simple_request(fm, &args);
3353 if (err == -ENOSYS) {
3354 fc->no_copy_file_range = 1;
3355 err = -EOPNOTSUPP;
3356 }
3357 if (err)
3358 goto out;
3359
3360 truncate_inode_pages_range(inode_out->i_mapping,
3361 ALIGN_DOWN(pos_out, PAGE_SIZE),
3362 ALIGN(pos_out + outarg.size, PAGE_SIZE) - 1);
3363
3364 file_update_time(file_out);
3365 fuse_write_update_attr(inode_out, pos_out + outarg.size, outarg.size);
3366
3367 err = outarg.size;
3368out:
3369 if (is_unstable)
3370 clear_bit(FUSE_I_SIZE_UNSTABLE, &fi_out->state);
3371
3372 inode_unlock(inode_out);
3373 file_accessed(file_in);
3374
3375 fuse_flush_time_update(inode_out);
3376
3377 return err;
3378}
3379
3380static ssize_t fuse_copy_file_range(struct file *src_file, loff_t src_off,
3381 struct file *dst_file, loff_t dst_off,
3382 size_t len, unsigned int flags)
3383{
3384 ssize_t ret;
3385
3386 ret = __fuse_copy_file_range(src_file, src_off, dst_file, dst_off,
3387 len, flags);
3388
3389 if (ret == -EOPNOTSUPP || ret == -EXDEV)
3390 ret = splice_copy_file_range(src_file, src_off, dst_file,
3391 dst_off, len);
3392 return ret;
3393}
3394
3395static const struct file_operations fuse_file_operations = {
3396 .llseek = fuse_file_llseek,
3397 .read_iter = fuse_file_read_iter,
3398 .write_iter = fuse_file_write_iter,
3399 .mmap = fuse_file_mmap,
3400 .open = fuse_open,
3401 .flush = fuse_flush,
3402 .release = fuse_release,
3403 .fsync = fuse_fsync,
3404 .lock = fuse_file_lock,
3405 .get_unmapped_area = thp_get_unmapped_area,
3406 .flock = fuse_file_flock,
3407 .splice_read = fuse_splice_read,
3408 .splice_write = fuse_splice_write,
3409 .unlocked_ioctl = fuse_file_ioctl,
3410 .compat_ioctl = fuse_file_compat_ioctl,
3411 .poll = fuse_file_poll,
3412 .fallocate = fuse_file_fallocate,
3413 .copy_file_range = fuse_copy_file_range,
3414};
3415
3416static const struct address_space_operations fuse_file_aops = {
3417 .read_folio = fuse_read_folio,
3418 .readahead = fuse_readahead,
3419 .writepages = fuse_writepages,
3420 .launder_folio = fuse_launder_folio,
3421 .dirty_folio = filemap_dirty_folio,
3422 .migrate_folio = filemap_migrate_folio,
3423 .bmap = fuse_bmap,
3424 .direct_IO = fuse_direct_IO,
3425 .write_begin = fuse_write_begin,
3426 .write_end = fuse_write_end,
3427};
3428
3429void fuse_init_file_inode(struct inode *inode, unsigned int flags)
3430{
3431 struct fuse_inode *fi = get_fuse_inode(inode);
3432
3433 inode->i_fop = &fuse_file_operations;
3434 inode->i_data.a_ops = &fuse_file_aops;
3435
3436 INIT_LIST_HEAD(&fi->write_files);
3437 INIT_LIST_HEAD(&fi->queued_writes);
3438 fi->writectr = 0;
3439 fi->iocachectr = 0;
3440 init_waitqueue_head(&fi->page_waitq);
3441 init_waitqueue_head(&fi->direct_io_waitq);
3442 fi->writepages = RB_ROOT;
3443
3444 if (IS_ENABLED(CONFIG_FUSE_DAX))
3445 fuse_dax_inode_init(inode, flags);
3446}