2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
5 This program can be distributed under the terms of the GNU GPL.
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>
19 static const struct file_operations fuse_direct_io_file_operations;
21 static int fuse_send_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
22 int opcode, struct fuse_open_out *outargp)
24 struct fuse_open_in inarg;
28 req = fuse_get_req(fc);
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;
39 req->in.args[0].size = sizeof(inarg);
40 req->in.args[0].value = &inarg;
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);
51 struct fuse_file *fuse_file_alloc(struct fuse_conn *fc)
55 ff = kmalloc(sizeof(struct fuse_file), GFP_KERNEL);
60 ff->reserved_req = fuse_request_alloc();
61 if (unlikely(!ff->reserved_req)) {
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);
73 spin_unlock(&fc->lock);
78 void fuse_file_free(struct fuse_file *ff)
80 fuse_request_free(ff->reserved_req);
84 struct fuse_file *fuse_file_get(struct fuse_file *ff)
86 atomic_inc(&ff->count);
90 static void fuse_release_async(struct work_struct *work)
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);
100 fuse_put_request(fc, req);
104 static void fuse_release_end(struct fuse_conn *fc, struct fuse_req *req)
106 if (fc->destroy_req) {
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
115 atomic_inc(&req->count);
116 INIT_WORK(&req->misc.release.work, fuse_release_async);
117 schedule_work(&req->misc.release.work);
119 path_put(&req->misc.release.path);
123 static void fuse_file_put(struct fuse_file *ff, bool sync)
125 if (atomic_dec_and_test(&ff->count)) {
126 struct fuse_req *req = ff->reserved_req;
129 fuse_request_send(ff->fc, req);
130 path_put(&req->misc.release.path);
131 fuse_put_request(ff->fc, req);
133 req->end = fuse_release_end;
134 fuse_request_send_background(ff->fc, req);
140 int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
143 struct fuse_open_out outarg;
144 struct fuse_file *ff;
146 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
148 ff = fuse_file_alloc(fc);
152 err = fuse_send_open(fc, nodeid, file, opcode, &outarg);
159 outarg.open_flags &= ~FOPEN_DIRECT_IO;
163 ff->open_flags = outarg.open_flags;
164 file->private_data = fuse_file_get(ff);
168 EXPORT_SYMBOL_GPL(fuse_do_open);
170 void fuse_finish_open(struct inode *inode, struct file *file)
172 struct fuse_file *ff = file->private_data;
173 struct fuse_conn *fc = get_fuse_conn(inode);
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);
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);
192 int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
194 struct fuse_conn *fc = get_fuse_conn(inode);
197 err = generic_file_open(inode, file);
201 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
205 fuse_finish_open(inode, file);
210 static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
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;
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);
222 wake_up_interruptible_all(&ff->poll_wait);
225 inarg->flags = flags;
226 req->in.h.opcode = opcode;
227 req->in.h.nodeid = ff->nodeid;
229 req->in.args[0].size = sizeof(struct fuse_release_in);
230 req->in.args[0].value = inarg;
233 void fuse_release_common(struct file *file, int opcode)
235 struct fuse_file *ff;
236 struct fuse_req *req;
238 ff = file->private_data;
242 req = ff->reserved_req;
243 fuse_prepare_release(ff, file->f_flags, opcode);
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,
251 /* Hold vfsmount and dentry until release is finished */
252 path_get(&file->f_path);
253 req->misc.release.path = file->f_path;
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.
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.
264 fuse_file_put(ff, ff->fc->destroy_req != NULL);
267 static int fuse_open(struct inode *inode, struct file *file)
269 return fuse_open_common(inode, file, false);
272 static int fuse_release(struct inode *inode, struct file *file)
274 fuse_release_common(file, FUSE_RELEASE);
276 /* return value is ignored by VFS */
280 void fuse_sync_release(struct fuse_file *ff, int flags)
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);
289 EXPORT_SYMBOL_GPL(fuse_sync_release);
292 * Scramble the ID space with XTEA, so that the value of the files_struct
293 * pointer is not exposed to userspace.
295 u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
297 u32 *k = fc->scramble_key;
298 u64 v = (unsigned long) id;
304 for (i = 0; i < 32; i++) {
305 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
307 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
310 return (u64) v0 + ((u64) v1 << 32);
314 * Check if page is under writeback
316 * This is currently done by walking the list of writepage requests
317 * for the inode, which can be pretty inefficient.
319 static bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
321 struct fuse_conn *fc = get_fuse_conn(inode);
322 struct fuse_inode *fi = get_fuse_inode(inode);
323 struct fuse_req *req;
326 spin_lock(&fc->lock);
327 list_for_each_entry(req, &fi->writepages, writepages_entry) {
330 BUG_ON(req->inode != inode);
331 curr_index = req->misc.write.in.offset >> PAGE_CACHE_SHIFT;
332 if (curr_index == index) {
337 spin_unlock(&fc->lock);
343 * Wait for page writeback to be completed.
345 * Since fuse doesn't rely on the VM writeback tracking, this has to
346 * use some other means.
348 static int fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
350 struct fuse_inode *fi = get_fuse_inode(inode);
352 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
356 static int fuse_flush(struct file *file, fl_owner_t id)
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;
365 if (is_bad_inode(inode))
371 req = fuse_get_req_nofail(fc, file);
372 memset(&inarg, 0, sizeof(inarg));
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);
378 req->in.args[0].size = sizeof(inarg);
379 req->in.args[0].value = &inarg;
381 fuse_request_send(fc, req);
382 err = req->out.h.error;
383 fuse_put_request(fc, req);
384 if (err == -ENOSYS) {
392 * Wait for all pending writepages on the inode to finish.
394 * This is currently done by blocking further writes with FUSE_NOWRITE
395 * and waiting for all sent writes to complete.
397 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
398 * could conflict with truncation.
400 static void fuse_sync_writes(struct inode *inode)
402 fuse_set_nowrite(inode);
403 fuse_release_nowrite(inode);
406 int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
407 int datasync, int isdir)
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;
416 if (is_bad_inode(inode))
419 err = filemap_write_and_wait_range(inode->i_mapping, start, end);
423 if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
426 mutex_lock(&inode->i_mutex);
429 * Start writeback against all dirty pages of the inode, then
430 * wait for all outstanding writes, before sending the FSYNC
433 err = write_inode_now(inode, 0);
437 fuse_sync_writes(inode);
439 req = fuse_get_req(fc);
445 memset(&inarg, 0, sizeof(inarg));
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);
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) {
464 mutex_unlock(&inode->i_mutex);
468 static int fuse_fsync(struct file *file, loff_t start, loff_t end,
471 return fuse_fsync_common(file, start, end, datasync, 0);
474 void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
475 size_t count, int opcode)
477 struct fuse_read_in *inarg = &req->misc.read.in;
478 struct fuse_file *ff = file->private_data;
483 inarg->flags = file->f_flags;
484 req->in.h.opcode = opcode;
485 req->in.h.nodeid = ff->nodeid;
487 req->in.args[0].size = sizeof(struct fuse_read_in);
488 req->in.args[0].value = inarg;
490 req->out.numargs = 1;
491 req->out.args[0].size = count;
494 static size_t fuse_send_read(struct fuse_req *req, struct file *file,
495 loff_t pos, size_t count, fl_owner_t owner)
497 struct fuse_file *ff = file->private_data;
498 struct fuse_conn *fc = ff->fc;
500 fuse_read_fill(req, file, pos, count, FUSE_READ);
502 struct fuse_read_in *inarg = &req->misc.read.in;
504 inarg->read_flags |= FUSE_READ_LOCKOWNER;
505 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
507 fuse_request_send(fc, req);
508 return req->out.args[0].size;
511 static void fuse_read_update_size(struct inode *inode, loff_t size,
514 struct fuse_conn *fc = get_fuse_conn(inode);
515 struct fuse_inode *fi = get_fuse_inode(inode);
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);
522 spin_unlock(&fc->lock);
525 static int fuse_readpage(struct file *file, struct page *page)
527 struct inode *inode = page->mapping->host;
528 struct fuse_conn *fc = get_fuse_conn(inode);
529 struct fuse_req *req;
531 loff_t pos = page_offset(page);
532 size_t count = PAGE_CACHE_SIZE;
537 if (is_bad_inode(inode))
541 * Page writeback can extend beyond the lifetime of the
542 * page-cache page, so make sure we read a properly synced
545 fuse_wait_on_page_writeback(inode, page->index);
547 req = fuse_get_req(fc);
552 attr_ver = fuse_get_attr_version(fc);
554 req->out.page_zeroing = 1;
555 req->out.argpages = 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);
564 * Short read means EOF. If file size is larger, truncate it
566 if (num_read < count)
567 fuse_read_update_size(inode, pos + num_read, attr_ver);
569 SetPageUptodate(page);
572 fuse_invalidate_attr(inode); /* atime changed */
578 static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
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;
585 for (i = 0; mapping == NULL && i < req->num_pages; i++)
586 mapping = req->pages[i]->mapping;
589 struct inode *inode = mapping->host;
592 * Short read means EOF. If file size is larger, truncate it
594 if (!req->out.h.error && num_read < count) {
597 pos = page_offset(req->pages[0]) + num_read;
598 fuse_read_update_size(inode, pos,
599 req->misc.read.attr_ver);
601 fuse_invalidate_attr(inode); /* atime changed */
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);
611 page_cache_release(page);
614 fuse_file_put(req->ff, false);
617 static void fuse_send_readpages(struct fuse_req *req, struct file *file)
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;
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);
634 fuse_request_send(fc, req);
635 fuse_readpages_end(fc, req);
636 fuse_put_request(fc, req);
640 struct fuse_fill_data {
641 struct fuse_req *req;
646 static int fuse_readpages_fill(void *_data, struct page *page)
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);
653 fuse_wait_on_page_writeback(inode, page->index);
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);
666 page_cache_get(page);
667 req->pages[req->num_pages] = page;
672 static int fuse_readpages(struct file *file, struct address_space *mapping,
673 struct list_head *pages, unsigned nr_pages)
675 struct inode *inode = mapping->host;
676 struct fuse_conn *fc = get_fuse_conn(inode);
677 struct fuse_fill_data data;
681 if (is_bad_inode(inode))
686 data.req = fuse_get_req(fc);
687 err = PTR_ERR(data.req);
688 if (IS_ERR(data.req))
691 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
693 if (data.req->num_pages)
694 fuse_send_readpages(data.req, file);
696 fuse_put_request(fc, data.req);
702 static ssize_t fuse_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
703 unsigned long nr_segs, loff_t pos)
705 struct inode *inode = iocb->ki_filp->f_mapping->host;
706 struct fuse_conn *fc = get_fuse_conn(inode);
709 * In auto invalidate mode, always update attributes on read.
710 * Otherwise, only update if we attempt to read past EOF (to ensure
711 * i_size is up to date).
713 if (fc->auto_inval_data ||
714 (pos + iov_length(iov, nr_segs) > i_size_read(inode))) {
716 err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
721 return generic_file_aio_read(iocb, iov, nr_segs, pos);
724 static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
725 loff_t pos, size_t count)
727 struct fuse_write_in *inarg = &req->misc.write.in;
728 struct fuse_write_out *outarg = &req->misc.write.out;
733 req->in.h.opcode = FUSE_WRITE;
734 req->in.h.nodeid = ff->nodeid;
736 if (ff->fc->minor < 9)
737 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
739 req->in.args[0].size = sizeof(struct fuse_write_in);
740 req->in.args[0].value = inarg;
741 req->in.args[1].size = count;
742 req->out.numargs = 1;
743 req->out.args[0].size = sizeof(struct fuse_write_out);
744 req->out.args[0].value = outarg;
747 static size_t fuse_send_write(struct fuse_req *req, struct file *file,
748 loff_t pos, size_t count, fl_owner_t owner)
750 struct fuse_file *ff = file->private_data;
751 struct fuse_conn *fc = ff->fc;
752 struct fuse_write_in *inarg = &req->misc.write.in;
754 fuse_write_fill(req, ff, pos, count);
755 inarg->flags = file->f_flags;
757 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
758 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
760 fuse_request_send(fc, req);
761 return req->misc.write.out.size;
764 void fuse_write_update_size(struct inode *inode, loff_t pos)
766 struct fuse_conn *fc = get_fuse_conn(inode);
767 struct fuse_inode *fi = get_fuse_inode(inode);
769 spin_lock(&fc->lock);
770 fi->attr_version = ++fc->attr_version;
771 if (pos > inode->i_size)
772 i_size_write(inode, pos);
773 spin_unlock(&fc->lock);
776 static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
777 struct inode *inode, loff_t pos,
784 for (i = 0; i < req->num_pages; i++)
785 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
787 res = fuse_send_write(req, file, pos, count, NULL);
789 offset = req->page_offset;
791 for (i = 0; i < req->num_pages; i++) {
792 struct page *page = req->pages[i];
794 if (!req->out.h.error && !offset && count >= PAGE_CACHE_SIZE)
795 SetPageUptodate(page);
797 if (count > PAGE_CACHE_SIZE - offset)
798 count -= PAGE_CACHE_SIZE - offset;
804 page_cache_release(page);
810 static ssize_t fuse_fill_write_pages(struct fuse_req *req,
811 struct address_space *mapping,
812 struct iov_iter *ii, loff_t pos)
814 struct fuse_conn *fc = get_fuse_conn(mapping->host);
815 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
819 req->in.argpages = 1;
820 req->page_offset = offset;
825 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
826 size_t bytes = min_t(size_t, PAGE_CACHE_SIZE - offset,
829 bytes = min_t(size_t, bytes, fc->max_write - count);
833 if (iov_iter_fault_in_readable(ii, bytes))
837 page = grab_cache_page_write_begin(mapping, index, 0);
841 if (mapping_writably_mapped(mapping))
842 flush_dcache_page(page);
845 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
847 flush_dcache_page(page);
849 mark_page_accessed(page);
853 page_cache_release(page);
854 bytes = min(bytes, iov_iter_single_seg_count(ii));
859 req->pages[req->num_pages] = page;
862 iov_iter_advance(ii, tmp);
866 if (offset == PAGE_CACHE_SIZE)
871 } while (iov_iter_count(ii) && count < fc->max_write &&
872 req->num_pages < FUSE_MAX_PAGES_PER_REQ && offset == 0);
874 return count > 0 ? count : err;
877 static ssize_t fuse_perform_write(struct file *file,
878 struct address_space *mapping,
879 struct iov_iter *ii, loff_t pos)
881 struct inode *inode = mapping->host;
882 struct fuse_conn *fc = get_fuse_conn(inode);
886 if (is_bad_inode(inode))
890 struct fuse_req *req;
893 req = fuse_get_req(fc);
899 count = fuse_fill_write_pages(req, mapping, ii, pos);
905 num_written = fuse_send_write_pages(req, file, inode,
907 err = req->out.h.error;
912 /* break out of the loop on short write */
913 if (num_written != count)
917 fuse_put_request(fc, req);
918 } while (!err && iov_iter_count(ii));
921 fuse_write_update_size(inode, pos);
923 fuse_invalidate_attr(inode);
925 return res > 0 ? res : err;
928 static ssize_t fuse_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
929 unsigned long nr_segs, loff_t pos)
931 struct file *file = iocb->ki_filp;
932 struct address_space *mapping = file->f_mapping;
936 ssize_t written_buffered = 0;
937 struct inode *inode = mapping->host;
942 WARN_ON(iocb->ki_pos != pos);
945 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
950 sb_start_write(inode->i_sb);
951 mutex_lock(&inode->i_mutex);
953 /* We can write back this queue in page reclaim */
954 current->backing_dev_info = mapping->backing_dev_info;
956 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
963 err = file_remove_suid(file);
967 err = file_update_time(file);
971 if (file->f_flags & O_DIRECT) {
972 written = generic_file_direct_write(iocb, iov, &nr_segs,
975 if (written < 0 || written == count)
981 iov_iter_init(&i, iov, nr_segs, count, written);
982 written_buffered = fuse_perform_write(file, mapping, &i, pos);
983 if (written_buffered < 0) {
984 err = written_buffered;
987 endbyte = pos + written_buffered - 1;
989 err = filemap_write_and_wait_range(file->f_mapping, pos,
994 invalidate_mapping_pages(file->f_mapping,
995 pos >> PAGE_CACHE_SHIFT,
996 endbyte >> PAGE_CACHE_SHIFT);
998 written += written_buffered;
999 iocb->ki_pos = pos + written_buffered;
1001 iov_iter_init(&i, iov, nr_segs, count, 0);
1002 written = fuse_perform_write(file, mapping, &i, pos);
1004 iocb->ki_pos = pos + written;
1007 current->backing_dev_info = NULL;
1008 mutex_unlock(&inode->i_mutex);
1009 sb_end_write(inode->i_sb);
1011 return written ? written : err;
1014 static void fuse_release_user_pages(struct fuse_req *req, int write)
1018 for (i = 0; i < req->num_pages; i++) {
1019 struct page *page = req->pages[i];
1021 set_page_dirty_lock(page);
1026 static int fuse_get_user_pages(struct fuse_req *req, const char __user *buf,
1027 size_t *nbytesp, int write)
1029 size_t nbytes = *nbytesp;
1030 unsigned long user_addr = (unsigned long) buf;
1031 unsigned offset = user_addr & ~PAGE_MASK;
1034 /* Special case for kernel I/O: can copy directly into the buffer */
1035 if (segment_eq(get_fs(), KERNEL_DS)) {
1037 req->in.args[1].value = (void *) user_addr;
1039 req->out.args[0].value = (void *) user_addr;
1044 nbytes = min_t(size_t, nbytes, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
1045 npages = (nbytes + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1046 npages = clamp(npages, 1, FUSE_MAX_PAGES_PER_REQ);
1047 npages = get_user_pages_fast(user_addr, npages, !write, req->pages);
1051 req->num_pages = npages;
1052 req->page_offset = offset;
1055 req->in.argpages = 1;
1057 req->out.argpages = 1;
1059 nbytes = (req->num_pages << PAGE_SHIFT) - req->page_offset;
1060 *nbytesp = min(*nbytesp, nbytes);
1065 ssize_t fuse_direct_io(struct file *file, const char __user *buf,
1066 size_t count, loff_t *ppos, int write)
1068 struct fuse_file *ff = file->private_data;
1069 struct fuse_conn *fc = ff->fc;
1070 size_t nmax = write ? fc->max_write : fc->max_read;
1073 struct fuse_req *req;
1075 req = fuse_get_req(fc);
1077 return PTR_ERR(req);
1081 fl_owner_t owner = current->files;
1082 size_t nbytes = min(count, nmax);
1083 int err = fuse_get_user_pages(req, buf, &nbytes, write);
1090 nres = fuse_send_write(req, file, pos, nbytes, owner);
1092 nres = fuse_send_read(req, file, pos, nbytes, owner);
1094 fuse_release_user_pages(req, !write);
1095 if (req->out.h.error) {
1097 res = req->out.h.error;
1099 } else if (nres > nbytes) {
1110 fuse_put_request(fc, req);
1111 req = fuse_get_req(fc);
1117 fuse_put_request(fc, req);
1123 EXPORT_SYMBOL_GPL(fuse_direct_io);
1125 static ssize_t fuse_direct_read(struct file *file, char __user *buf,
1126 size_t count, loff_t *ppos)
1129 struct inode *inode = file->f_path.dentry->d_inode;
1131 if (is_bad_inode(inode))
1134 res = fuse_direct_io(file, buf, count, ppos, 0);
1136 fuse_invalidate_attr(inode);
1141 static ssize_t __fuse_direct_write(struct file *file, const char __user *buf,
1142 size_t count, loff_t *ppos)
1144 struct inode *inode = file->f_path.dentry->d_inode;
1147 res = generic_write_checks(file, ppos, &count, 0);
1149 res = fuse_direct_io(file, buf, count, ppos, 1);
1151 fuse_write_update_size(inode, *ppos);
1154 fuse_invalidate_attr(inode);
1159 static ssize_t fuse_direct_write(struct file *file, const char __user *buf,
1160 size_t count, loff_t *ppos)
1162 struct inode *inode = file->f_path.dentry->d_inode;
1165 if (is_bad_inode(inode))
1168 /* Don't allow parallel writes to the same file */
1169 mutex_lock(&inode->i_mutex);
1170 res = __fuse_direct_write(file, buf, count, ppos);
1171 mutex_unlock(&inode->i_mutex);
1176 static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
1178 __free_page(req->pages[0]);
1179 fuse_file_put(req->ff, false);
1182 static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
1184 struct inode *inode = req->inode;
1185 struct fuse_inode *fi = get_fuse_inode(inode);
1186 struct backing_dev_info *bdi = inode->i_mapping->backing_dev_info;
1188 list_del(&req->writepages_entry);
1189 dec_bdi_stat(bdi, BDI_WRITEBACK);
1190 dec_zone_page_state(req->pages[0], NR_WRITEBACK_TEMP);
1191 bdi_writeout_inc(bdi);
1192 wake_up(&fi->page_waitq);
1195 /* Called under fc->lock, may release and reacquire it */
1196 static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req)
1197 __releases(fc->lock)
1198 __acquires(fc->lock)
1200 struct fuse_inode *fi = get_fuse_inode(req->inode);
1201 loff_t size = i_size_read(req->inode);
1202 struct fuse_write_in *inarg = &req->misc.write.in;
1207 if (inarg->offset + PAGE_CACHE_SIZE <= size) {
1208 inarg->size = PAGE_CACHE_SIZE;
1209 } else if (inarg->offset < size) {
1210 inarg->size = size & (PAGE_CACHE_SIZE - 1);
1212 /* Got truncated off completely */
1216 req->in.args[1].size = inarg->size;
1218 fuse_request_send_background_locked(fc, req);
1222 fuse_writepage_finish(fc, req);
1223 spin_unlock(&fc->lock);
1224 fuse_writepage_free(fc, req);
1225 fuse_put_request(fc, req);
1226 spin_lock(&fc->lock);
1230 * If fi->writectr is positive (no truncate or fsync going on) send
1231 * all queued writepage requests.
1233 * Called with fc->lock
1235 void fuse_flush_writepages(struct inode *inode)
1236 __releases(fc->lock)
1237 __acquires(fc->lock)
1239 struct fuse_conn *fc = get_fuse_conn(inode);
1240 struct fuse_inode *fi = get_fuse_inode(inode);
1241 struct fuse_req *req;
1243 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1244 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1245 list_del_init(&req->list);
1246 fuse_send_writepage(fc, req);
1250 static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1252 struct inode *inode = req->inode;
1253 struct fuse_inode *fi = get_fuse_inode(inode);
1255 mapping_set_error(inode->i_mapping, req->out.h.error);
1256 spin_lock(&fc->lock);
1258 fuse_writepage_finish(fc, req);
1259 spin_unlock(&fc->lock);
1260 fuse_writepage_free(fc, req);
1263 static int fuse_writepage_locked(struct page *page)
1265 struct address_space *mapping = page->mapping;
1266 struct inode *inode = mapping->host;
1267 struct fuse_conn *fc = get_fuse_conn(inode);
1268 struct fuse_inode *fi = get_fuse_inode(inode);
1269 struct fuse_req *req;
1270 struct fuse_file *ff;
1271 struct page *tmp_page;
1273 set_page_writeback(page);
1275 req = fuse_request_alloc_nofs();
1279 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1283 spin_lock(&fc->lock);
1284 BUG_ON(list_empty(&fi->write_files));
1285 ff = list_entry(fi->write_files.next, struct fuse_file, write_entry);
1286 req->ff = fuse_file_get(ff);
1287 spin_unlock(&fc->lock);
1289 fuse_write_fill(req, ff, page_offset(page), 0);
1291 copy_highpage(tmp_page, page);
1292 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
1293 req->in.argpages = 1;
1295 req->pages[0] = tmp_page;
1296 req->page_offset = 0;
1297 req->end = fuse_writepage_end;
1300 inc_bdi_stat(mapping->backing_dev_info, BDI_WRITEBACK);
1301 inc_zone_page_state(tmp_page, NR_WRITEBACK_TEMP);
1302 end_page_writeback(page);
1304 spin_lock(&fc->lock);
1305 list_add(&req->writepages_entry, &fi->writepages);
1306 list_add_tail(&req->list, &fi->queued_writes);
1307 fuse_flush_writepages(inode);
1308 spin_unlock(&fc->lock);
1313 fuse_request_free(req);
1315 end_page_writeback(page);
1319 static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1323 err = fuse_writepage_locked(page);
1329 static int fuse_launder_page(struct page *page)
1332 if (clear_page_dirty_for_io(page)) {
1333 struct inode *inode = page->mapping->host;
1334 err = fuse_writepage_locked(page);
1336 fuse_wait_on_page_writeback(inode, page->index);
1342 * Write back dirty pages now, because there may not be any suitable
1345 static void fuse_vma_close(struct vm_area_struct *vma)
1347 filemap_write_and_wait(vma->vm_file->f_mapping);
1351 * Wait for writeback against this page to complete before allowing it
1352 * to be marked dirty again, and hence written back again, possibly
1353 * before the previous writepage completed.
1355 * Block here, instead of in ->writepage(), so that the userspace fs
1356 * can only block processes actually operating on the filesystem.
1358 * Otherwise unprivileged userspace fs would be able to block
1363 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
1365 static int fuse_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
1367 struct page *page = vmf->page;
1369 * Don't use page->mapping as it may become NULL from a
1370 * concurrent truncate.
1372 struct inode *inode = vma->vm_file->f_mapping->host;
1374 fuse_wait_on_page_writeback(inode, page->index);
1378 static const struct vm_operations_struct fuse_file_vm_ops = {
1379 .close = fuse_vma_close,
1380 .fault = filemap_fault,
1381 .page_mkwrite = fuse_page_mkwrite,
1384 static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
1386 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE)) {
1387 struct inode *inode = file->f_dentry->d_inode;
1388 struct fuse_conn *fc = get_fuse_conn(inode);
1389 struct fuse_inode *fi = get_fuse_inode(inode);
1390 struct fuse_file *ff = file->private_data;
1392 * file may be written through mmap, so chain it onto the
1393 * inodes's write_file list
1395 spin_lock(&fc->lock);
1396 if (list_empty(&ff->write_entry))
1397 list_add(&ff->write_entry, &fi->write_files);
1398 spin_unlock(&fc->lock);
1400 file_accessed(file);
1401 vma->vm_ops = &fuse_file_vm_ops;
1405 static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
1407 /* Can't provide the coherency needed for MAP_SHARED */
1408 if (vma->vm_flags & VM_MAYSHARE)
1411 invalidate_inode_pages2(file->f_mapping);
1413 return generic_file_mmap(file, vma);
1416 static int convert_fuse_file_lock(const struct fuse_file_lock *ffl,
1417 struct file_lock *fl)
1419 switch (ffl->type) {
1425 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
1426 ffl->end < ffl->start)
1429 fl->fl_start = ffl->start;
1430 fl->fl_end = ffl->end;
1431 fl->fl_pid = ffl->pid;
1437 fl->fl_type = ffl->type;
1441 static void fuse_lk_fill(struct fuse_req *req, struct file *file,
1442 const struct file_lock *fl, int opcode, pid_t pid,
1445 struct inode *inode = file->f_path.dentry->d_inode;
1446 struct fuse_conn *fc = get_fuse_conn(inode);
1447 struct fuse_file *ff = file->private_data;
1448 struct fuse_lk_in *arg = &req->misc.lk_in;
1451 arg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
1452 arg->lk.start = fl->fl_start;
1453 arg->lk.end = fl->fl_end;
1454 arg->lk.type = fl->fl_type;
1457 arg->lk_flags |= FUSE_LK_FLOCK;
1458 req->in.h.opcode = opcode;
1459 req->in.h.nodeid = get_node_id(inode);
1460 req->in.numargs = 1;
1461 req->in.args[0].size = sizeof(*arg);
1462 req->in.args[0].value = arg;
1465 static int fuse_getlk(struct file *file, struct file_lock *fl)
1467 struct inode *inode = file->f_path.dentry->d_inode;
1468 struct fuse_conn *fc = get_fuse_conn(inode);
1469 struct fuse_req *req;
1470 struct fuse_lk_out outarg;
1473 req = fuse_get_req(fc);
1475 return PTR_ERR(req);
1477 fuse_lk_fill(req, file, fl, FUSE_GETLK, 0, 0);
1478 req->out.numargs = 1;
1479 req->out.args[0].size = sizeof(outarg);
1480 req->out.args[0].value = &outarg;
1481 fuse_request_send(fc, req);
1482 err = req->out.h.error;
1483 fuse_put_request(fc, req);
1485 err = convert_fuse_file_lock(&outarg.lk, fl);
1490 static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
1492 struct inode *inode = file->f_path.dentry->d_inode;
1493 struct fuse_conn *fc = get_fuse_conn(inode);
1494 struct fuse_req *req;
1495 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
1496 pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0;
1499 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
1500 /* NLM needs asynchronous locks, which we don't support yet */
1504 /* Unlock on close is handled by the flush method */
1505 if (fl->fl_flags & FL_CLOSE)
1508 req = fuse_get_req(fc);
1510 return PTR_ERR(req);
1512 fuse_lk_fill(req, file, fl, opcode, pid, flock);
1513 fuse_request_send(fc, req);
1514 err = req->out.h.error;
1515 /* locking is restartable */
1518 fuse_put_request(fc, req);
1522 static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
1524 struct inode *inode = file->f_path.dentry->d_inode;
1525 struct fuse_conn *fc = get_fuse_conn(inode);
1528 if (cmd == F_CANCELLK) {
1530 } else if (cmd == F_GETLK) {
1532 posix_test_lock(file, fl);
1535 err = fuse_getlk(file, fl);
1538 err = posix_lock_file(file, fl, NULL);
1540 err = fuse_setlk(file, fl, 0);
1545 static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
1547 struct inode *inode = file->f_path.dentry->d_inode;
1548 struct fuse_conn *fc = get_fuse_conn(inode);
1552 err = flock_lock_file_wait(file, fl);
1554 struct fuse_file *ff = file->private_data;
1556 /* emulate flock with POSIX locks */
1557 fl->fl_owner = (fl_owner_t) file;
1559 err = fuse_setlk(file, fl, 1);
1565 static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
1567 struct inode *inode = mapping->host;
1568 struct fuse_conn *fc = get_fuse_conn(inode);
1569 struct fuse_req *req;
1570 struct fuse_bmap_in inarg;
1571 struct fuse_bmap_out outarg;
1574 if (!inode->i_sb->s_bdev || fc->no_bmap)
1577 req = fuse_get_req(fc);
1581 memset(&inarg, 0, sizeof(inarg));
1582 inarg.block = block;
1583 inarg.blocksize = inode->i_sb->s_blocksize;
1584 req->in.h.opcode = FUSE_BMAP;
1585 req->in.h.nodeid = get_node_id(inode);
1586 req->in.numargs = 1;
1587 req->in.args[0].size = sizeof(inarg);
1588 req->in.args[0].value = &inarg;
1589 req->out.numargs = 1;
1590 req->out.args[0].size = sizeof(outarg);
1591 req->out.args[0].value = &outarg;
1592 fuse_request_send(fc, req);
1593 err = req->out.h.error;
1594 fuse_put_request(fc, req);
1598 return err ? 0 : outarg.block;
1601 static loff_t fuse_file_llseek(struct file *file, loff_t offset, int origin)
1604 struct inode *inode = file->f_path.dentry->d_inode;
1606 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
1607 if (origin == SEEK_CUR || origin == SEEK_SET)
1608 return generic_file_llseek(file, offset, origin);
1610 mutex_lock(&inode->i_mutex);
1611 retval = fuse_update_attributes(inode, NULL, file, NULL);
1613 retval = generic_file_llseek(file, offset, origin);
1614 mutex_unlock(&inode->i_mutex);
1619 static int fuse_ioctl_copy_user(struct page **pages, struct iovec *iov,
1620 unsigned int nr_segs, size_t bytes, bool to_user)
1628 iov_iter_init(&ii, iov, nr_segs, bytes, 0);
1630 while (iov_iter_count(&ii)) {
1631 struct page *page = pages[page_idx++];
1632 size_t todo = min_t(size_t, PAGE_SIZE, iov_iter_count(&ii));
1638 char __user *uaddr = ii.iov->iov_base + ii.iov_offset;
1639 size_t iov_len = ii.iov->iov_len - ii.iov_offset;
1640 size_t copy = min(todo, iov_len);
1644 left = copy_from_user(kaddr, uaddr, copy);
1646 left = copy_to_user(uaddr, kaddr, copy);
1651 iov_iter_advance(&ii, copy);
1663 * CUSE servers compiled on 32bit broke on 64bit kernels because the
1664 * ABI was defined to be 'struct iovec' which is different on 32bit
1665 * and 64bit. Fortunately we can determine which structure the server
1666 * used from the size of the reply.
1668 static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
1669 size_t transferred, unsigned count,
1672 #ifdef CONFIG_COMPAT
1673 if (count * sizeof(struct compat_iovec) == transferred) {
1674 struct compat_iovec *ciov = src;
1678 * With this interface a 32bit server cannot support
1679 * non-compat (i.e. ones coming from 64bit apps) ioctl
1685 for (i = 0; i < count; i++) {
1686 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
1687 dst[i].iov_len = ciov[i].iov_len;
1693 if (count * sizeof(struct iovec) != transferred)
1696 memcpy(dst, src, transferred);
1700 /* Make sure iov_length() won't overflow */
1701 static int fuse_verify_ioctl_iov(struct iovec *iov, size_t count)
1704 u32 max = FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT;
1706 for (n = 0; n < count; n++, iov++) {
1707 if (iov->iov_len > (size_t) max)
1709 max -= iov->iov_len;
1714 static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
1715 void *src, size_t transferred, unsigned count,
1719 struct fuse_ioctl_iovec *fiov = src;
1721 if (fc->minor < 16) {
1722 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
1726 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
1729 for (i = 0; i < count; i++) {
1730 /* Did the server supply an inappropriate value? */
1731 if (fiov[i].base != (unsigned long) fiov[i].base ||
1732 fiov[i].len != (unsigned long) fiov[i].len)
1735 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
1736 dst[i].iov_len = (size_t) fiov[i].len;
1738 #ifdef CONFIG_COMPAT
1740 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
1741 (compat_size_t) dst[i].iov_len != fiov[i].len))
1751 * For ioctls, there is no generic way to determine how much memory
1752 * needs to be read and/or written. Furthermore, ioctls are allowed
1753 * to dereference the passed pointer, so the parameter requires deep
1754 * copying but FUSE has no idea whatsoever about what to copy in or
1757 * This is solved by allowing FUSE server to retry ioctl with
1758 * necessary in/out iovecs. Let's assume the ioctl implementation
1759 * needs to read in the following structure.
1766 * On the first callout to FUSE server, inarg->in_size and
1767 * inarg->out_size will be NULL; then, the server completes the ioctl
1768 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
1769 * the actual iov array to
1771 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
1773 * which tells FUSE to copy in the requested area and retry the ioctl.
1774 * On the second round, the server has access to the structure and
1775 * from that it can tell what to look for next, so on the invocation,
1776 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
1778 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
1779 * { .iov_base = a.buf, .iov_len = a.buflen } }
1781 * FUSE will copy both struct a and the pointed buffer from the
1782 * process doing the ioctl and retry ioctl with both struct a and the
1785 * This time, FUSE server has everything it needs and completes ioctl
1786 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
1788 * Copying data out works the same way.
1790 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
1791 * automatically initializes in and out iovs by decoding @cmd with
1792 * _IOC_* macros and the server is not allowed to request RETRY. This
1793 * limits ioctl data transfers to well-formed ioctls and is the forced
1794 * behavior for all FUSE servers.
1796 long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
1799 struct fuse_file *ff = file->private_data;
1800 struct fuse_conn *fc = ff->fc;
1801 struct fuse_ioctl_in inarg = {
1807 struct fuse_ioctl_out outarg;
1808 struct fuse_req *req = NULL;
1809 struct page **pages = NULL;
1810 struct iovec *iov_page = NULL;
1811 struct iovec *in_iov = NULL, *out_iov = NULL;
1812 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
1813 size_t in_size, out_size, transferred;
1816 #if BITS_PER_LONG == 32
1817 inarg.flags |= FUSE_IOCTL_32BIT;
1819 if (flags & FUSE_IOCTL_COMPAT)
1820 inarg.flags |= FUSE_IOCTL_32BIT;
1823 /* assume all the iovs returned by client always fits in a page */
1824 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
1827 pages = kcalloc(FUSE_MAX_PAGES_PER_REQ, sizeof(pages[0]), GFP_KERNEL);
1828 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
1829 if (!pages || !iov_page)
1833 * If restricted, initialize IO parameters as encoded in @cmd.
1834 * RETRY from server is not allowed.
1836 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
1837 struct iovec *iov = iov_page;
1839 iov->iov_base = (void __user *)arg;
1840 iov->iov_len = _IOC_SIZE(cmd);
1842 if (_IOC_DIR(cmd) & _IOC_WRITE) {
1847 if (_IOC_DIR(cmd) & _IOC_READ) {
1854 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
1855 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
1858 * Out data can be used either for actual out data or iovs,
1859 * make sure there always is at least one page.
1861 out_size = max_t(size_t, out_size, PAGE_SIZE);
1862 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
1864 /* make sure there are enough buffer pages and init request with them */
1866 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
1868 while (num_pages < max_pages) {
1869 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
1870 if (!pages[num_pages])
1875 req = fuse_get_req(fc);
1881 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
1882 req->num_pages = num_pages;
1884 /* okay, let's send it to the client */
1885 req->in.h.opcode = FUSE_IOCTL;
1886 req->in.h.nodeid = ff->nodeid;
1887 req->in.numargs = 1;
1888 req->in.args[0].size = sizeof(inarg);
1889 req->in.args[0].value = &inarg;
1892 req->in.args[1].size = in_size;
1893 req->in.argpages = 1;
1895 err = fuse_ioctl_copy_user(pages, in_iov, in_iovs, in_size,
1901 req->out.numargs = 2;
1902 req->out.args[0].size = sizeof(outarg);
1903 req->out.args[0].value = &outarg;
1904 req->out.args[1].size = out_size;
1905 req->out.argpages = 1;
1906 req->out.argvar = 1;
1908 fuse_request_send(fc, req);
1909 err = req->out.h.error;
1910 transferred = req->out.args[1].size;
1911 fuse_put_request(fc, req);
1916 /* did it ask for retry? */
1917 if (outarg.flags & FUSE_IOCTL_RETRY) {
1920 /* no retry if in restricted mode */
1922 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
1925 in_iovs = outarg.in_iovs;
1926 out_iovs = outarg.out_iovs;
1929 * Make sure things are in boundary, separate checks
1930 * are to protect against overflow.
1933 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
1934 out_iovs > FUSE_IOCTL_MAX_IOV ||
1935 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
1938 vaddr = kmap_atomic(pages[0]);
1939 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
1940 transferred, in_iovs + out_iovs,
1941 (flags & FUSE_IOCTL_COMPAT) != 0);
1942 kunmap_atomic(vaddr);
1947 out_iov = in_iov + in_iovs;
1949 err = fuse_verify_ioctl_iov(in_iov, in_iovs);
1953 err = fuse_verify_ioctl_iov(out_iov, out_iovs);
1961 if (transferred > inarg.out_size)
1964 err = fuse_ioctl_copy_user(pages, out_iov, out_iovs, transferred, true);
1967 fuse_put_request(fc, req);
1968 free_page((unsigned long) iov_page);
1970 __free_page(pages[--num_pages]);
1973 return err ? err : outarg.result;
1975 EXPORT_SYMBOL_GPL(fuse_do_ioctl);
1977 long fuse_ioctl_common(struct file *file, unsigned int cmd,
1978 unsigned long arg, unsigned int flags)
1980 struct inode *inode = file->f_dentry->d_inode;
1981 struct fuse_conn *fc = get_fuse_conn(inode);
1983 if (!fuse_allow_task(fc, current))
1986 if (is_bad_inode(inode))
1989 return fuse_do_ioctl(file, cmd, arg, flags);
1992 static long fuse_file_ioctl(struct file *file, unsigned int cmd,
1995 return fuse_ioctl_common(file, cmd, arg, 0);
1998 static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
2001 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
2005 * All files which have been polled are linked to RB tree
2006 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2007 * find the matching one.
2009 static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2010 struct rb_node **parent_out)
2012 struct rb_node **link = &fc->polled_files.rb_node;
2013 struct rb_node *last = NULL;
2016 struct fuse_file *ff;
2019 ff = rb_entry(last, struct fuse_file, polled_node);
2022 link = &last->rb_left;
2023 else if (kh > ff->kh)
2024 link = &last->rb_right;
2035 * The file is about to be polled. Make sure it's on the polled_files
2036 * RB tree. Note that files once added to the polled_files tree are
2037 * not removed before the file is released. This is because a file
2038 * polled once is likely to be polled again.
2040 static void fuse_register_polled_file(struct fuse_conn *fc,
2041 struct fuse_file *ff)
2043 spin_lock(&fc->lock);
2044 if (RB_EMPTY_NODE(&ff->polled_node)) {
2045 struct rb_node **link, *parent;
2047 link = fuse_find_polled_node(fc, ff->kh, &parent);
2049 rb_link_node(&ff->polled_node, parent, link);
2050 rb_insert_color(&ff->polled_node, &fc->polled_files);
2052 spin_unlock(&fc->lock);
2055 unsigned fuse_file_poll(struct file *file, poll_table *wait)
2057 struct fuse_file *ff = file->private_data;
2058 struct fuse_conn *fc = ff->fc;
2059 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2060 struct fuse_poll_out outarg;
2061 struct fuse_req *req;
2065 return DEFAULT_POLLMASK;
2067 poll_wait(file, &ff->poll_wait, wait);
2070 * Ask for notification iff there's someone waiting for it.
2071 * The client may ignore the flag and always notify.
2073 if (waitqueue_active(&ff->poll_wait)) {
2074 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2075 fuse_register_polled_file(fc, ff);
2078 req = fuse_get_req(fc);
2082 req->in.h.opcode = FUSE_POLL;
2083 req->in.h.nodeid = ff->nodeid;
2084 req->in.numargs = 1;
2085 req->in.args[0].size = sizeof(inarg);
2086 req->in.args[0].value = &inarg;
2087 req->out.numargs = 1;
2088 req->out.args[0].size = sizeof(outarg);
2089 req->out.args[0].value = &outarg;
2090 fuse_request_send(fc, req);
2091 err = req->out.h.error;
2092 fuse_put_request(fc, req);
2095 return outarg.revents;
2096 if (err == -ENOSYS) {
2098 return DEFAULT_POLLMASK;
2102 EXPORT_SYMBOL_GPL(fuse_file_poll);
2105 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2106 * wakes up the poll waiters.
2108 int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2109 struct fuse_notify_poll_wakeup_out *outarg)
2111 u64 kh = outarg->kh;
2112 struct rb_node **link;
2114 spin_lock(&fc->lock);
2116 link = fuse_find_polled_node(fc, kh, NULL);
2118 struct fuse_file *ff;
2120 ff = rb_entry(*link, struct fuse_file, polled_node);
2121 wake_up_interruptible_sync(&ff->poll_wait);
2124 spin_unlock(&fc->lock);
2128 static ssize_t fuse_loop_dio(struct file *filp, const struct iovec *iov,
2129 unsigned long nr_segs, loff_t *ppos, int rw)
2131 const struct iovec *vector = iov;
2134 while (nr_segs > 0) {
2139 base = vector->iov_base;
2140 len = vector->iov_len;
2145 nr = __fuse_direct_write(filp, base, len, ppos);
2147 nr = fuse_direct_read(filp, base, len, ppos);
2164 fuse_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
2165 loff_t offset, unsigned long nr_segs)
2168 struct file *file = NULL;
2171 file = iocb->ki_filp;
2174 ret = fuse_loop_dio(file, iov, nr_segs, &pos, rw);
2179 long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
2182 struct fuse_file *ff = file->private_data;
2183 struct fuse_conn *fc = ff->fc;
2184 struct fuse_req *req;
2185 struct fuse_fallocate_in inarg = {
2193 if (fc->no_fallocate)
2196 req = fuse_get_req(fc);
2198 return PTR_ERR(req);
2200 req->in.h.opcode = FUSE_FALLOCATE;
2201 req->in.h.nodeid = ff->nodeid;
2202 req->in.numargs = 1;
2203 req->in.args[0].size = sizeof(inarg);
2204 req->in.args[0].value = &inarg;
2205 fuse_request_send(fc, req);
2206 err = req->out.h.error;
2207 if (err == -ENOSYS) {
2208 fc->no_fallocate = 1;
2211 fuse_put_request(fc, req);
2215 EXPORT_SYMBOL_GPL(fuse_file_fallocate);
2217 static const struct file_operations fuse_file_operations = {
2218 .llseek = fuse_file_llseek,
2219 .read = do_sync_read,
2220 .aio_read = fuse_file_aio_read,
2221 .write = do_sync_write,
2222 .aio_write = fuse_file_aio_write,
2223 .mmap = fuse_file_mmap,
2225 .flush = fuse_flush,
2226 .release = fuse_release,
2227 .fsync = fuse_fsync,
2228 .lock = fuse_file_lock,
2229 .flock = fuse_file_flock,
2230 .splice_read = generic_file_splice_read,
2231 .unlocked_ioctl = fuse_file_ioctl,
2232 .compat_ioctl = fuse_file_compat_ioctl,
2233 .poll = fuse_file_poll,
2234 .fallocate = fuse_file_fallocate,
2237 static const struct file_operations fuse_direct_io_file_operations = {
2238 .llseek = fuse_file_llseek,
2239 .read = fuse_direct_read,
2240 .write = fuse_direct_write,
2241 .mmap = fuse_direct_mmap,
2243 .flush = fuse_flush,
2244 .release = fuse_release,
2245 .fsync = fuse_fsync,
2246 .lock = fuse_file_lock,
2247 .flock = fuse_file_flock,
2248 .unlocked_ioctl = fuse_file_ioctl,
2249 .compat_ioctl = fuse_file_compat_ioctl,
2250 .poll = fuse_file_poll,
2251 .fallocate = fuse_file_fallocate,
2252 /* no splice_read */
2255 static const struct address_space_operations fuse_file_aops = {
2256 .readpage = fuse_readpage,
2257 .writepage = fuse_writepage,
2258 .launder_page = fuse_launder_page,
2259 .readpages = fuse_readpages,
2260 .set_page_dirty = __set_page_dirty_nobuffers,
2262 .direct_IO = fuse_direct_IO,
2265 void fuse_init_file_inode(struct inode *inode)
2267 inode->i_fop = &fuse_file_operations;
2268 inode->i_data.a_ops = &fuse_file_aops;