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 /* VFS checks this, but only _after_ ->open() */
198 if (file
->f_flags
& O_DIRECT
)
201 err
= generic_file_open(inode
, file
);
205 err
= fuse_do_open(fc
, get_node_id(inode
), file
, isdir
);
209 fuse_finish_open(inode
, file
);
214 static void fuse_prepare_release(struct fuse_file
*ff
, int flags
, int opcode
)
216 struct fuse_conn
*fc
= ff
->fc
;
217 struct fuse_req
*req
= ff
->reserved_req
;
218 struct fuse_release_in
*inarg
= &req
->misc
.release
.in
;
220 spin_lock(&fc
->lock
);
221 list_del(&ff
->write_entry
);
222 if (!RB_EMPTY_NODE(&ff
->polled_node
))
223 rb_erase(&ff
->polled_node
, &fc
->polled_files
);
224 spin_unlock(&fc
->lock
);
226 wake_up_interruptible_all(&ff
->poll_wait
);
229 inarg
->flags
= flags
;
230 req
->in
.h
.opcode
= opcode
;
231 req
->in
.h
.nodeid
= ff
->nodeid
;
233 req
->in
.args
[0].size
= sizeof(struct fuse_release_in
);
234 req
->in
.args
[0].value
= inarg
;
237 void fuse_release_common(struct file
*file
, int opcode
)
239 struct fuse_file
*ff
;
240 struct fuse_req
*req
;
242 ff
= file
->private_data
;
246 req
= ff
->reserved_req
;
247 fuse_prepare_release(ff
, file
->f_flags
, opcode
);
250 struct fuse_release_in
*inarg
= &req
->misc
.release
.in
;
251 inarg
->release_flags
|= FUSE_RELEASE_FLOCK_UNLOCK
;
252 inarg
->lock_owner
= fuse_lock_owner_id(ff
->fc
,
255 /* Hold vfsmount and dentry until release is finished */
256 path_get(&file
->f_path
);
257 req
->misc
.release
.path
= file
->f_path
;
260 * Normally this will send the RELEASE request, however if
261 * some asynchronous READ or WRITE requests are outstanding,
262 * the sending will be delayed.
264 * Make the release synchronous if this is a fuseblk mount,
265 * synchronous RELEASE is allowed (and desirable) in this case
266 * because the server can be trusted not to screw up.
268 fuse_file_put(ff
, ff
->fc
->destroy_req
!= NULL
);
271 static int fuse_open(struct inode
*inode
, struct file
*file
)
273 return fuse_open_common(inode
, file
, false);
276 static int fuse_release(struct inode
*inode
, struct file
*file
)
278 fuse_release_common(file
, FUSE_RELEASE
);
280 /* return value is ignored by VFS */
284 void fuse_sync_release(struct fuse_file
*ff
, int flags
)
286 WARN_ON(atomic_read(&ff
->count
) > 1);
287 fuse_prepare_release(ff
, flags
, FUSE_RELEASE
);
288 ff
->reserved_req
->force
= 1;
289 fuse_request_send(ff
->fc
, ff
->reserved_req
);
290 fuse_put_request(ff
->fc
, ff
->reserved_req
);
293 EXPORT_SYMBOL_GPL(fuse_sync_release
);
296 * Scramble the ID space with XTEA, so that the value of the files_struct
297 * pointer is not exposed to userspace.
299 u64
fuse_lock_owner_id(struct fuse_conn
*fc
, fl_owner_t id
)
301 u32
*k
= fc
->scramble_key
;
302 u64 v
= (unsigned long) id
;
308 for (i
= 0; i
< 32; i
++) {
309 v0
+= ((v1
<< 4 ^ v1
>> 5) + v1
) ^ (sum
+ k
[sum
& 3]);
311 v1
+= ((v0
<< 4 ^ v0
>> 5) + v0
) ^ (sum
+ k
[sum
>>11 & 3]);
314 return (u64
) v0
+ ((u64
) v1
<< 32);
318 * Check if page is under writeback
320 * This is currently done by walking the list of writepage requests
321 * for the inode, which can be pretty inefficient.
323 static bool fuse_page_is_writeback(struct inode
*inode
, pgoff_t index
)
325 struct fuse_conn
*fc
= get_fuse_conn(inode
);
326 struct fuse_inode
*fi
= get_fuse_inode(inode
);
327 struct fuse_req
*req
;
330 spin_lock(&fc
->lock
);
331 list_for_each_entry(req
, &fi
->writepages
, writepages_entry
) {
334 BUG_ON(req
->inode
!= inode
);
335 curr_index
= req
->misc
.write
.in
.offset
>> PAGE_CACHE_SHIFT
;
336 if (curr_index
== index
) {
341 spin_unlock(&fc
->lock
);
347 * Wait for page writeback to be completed.
349 * Since fuse doesn't rely on the VM writeback tracking, this has to
350 * use some other means.
352 static int fuse_wait_on_page_writeback(struct inode
*inode
, pgoff_t index
)
354 struct fuse_inode
*fi
= get_fuse_inode(inode
);
356 wait_event(fi
->page_waitq
, !fuse_page_is_writeback(inode
, index
));
360 static int fuse_flush(struct file
*file
, fl_owner_t id
)
362 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
363 struct fuse_conn
*fc
= get_fuse_conn(inode
);
364 struct fuse_file
*ff
= file
->private_data
;
365 struct fuse_req
*req
;
366 struct fuse_flush_in inarg
;
369 if (is_bad_inode(inode
))
375 req
= fuse_get_req_nofail(fc
, file
);
376 memset(&inarg
, 0, sizeof(inarg
));
378 inarg
.lock_owner
= fuse_lock_owner_id(fc
, id
);
379 req
->in
.h
.opcode
= FUSE_FLUSH
;
380 req
->in
.h
.nodeid
= get_node_id(inode
);
382 req
->in
.args
[0].size
= sizeof(inarg
);
383 req
->in
.args
[0].value
= &inarg
;
385 fuse_request_send(fc
, req
);
386 err
= req
->out
.h
.error
;
387 fuse_put_request(fc
, req
);
388 if (err
== -ENOSYS
) {
396 * Wait for all pending writepages on the inode to finish.
398 * This is currently done by blocking further writes with FUSE_NOWRITE
399 * and waiting for all sent writes to complete.
401 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
402 * could conflict with truncation.
404 static void fuse_sync_writes(struct inode
*inode
)
406 fuse_set_nowrite(inode
);
407 fuse_release_nowrite(inode
);
410 int fuse_fsync_common(struct file
*file
, loff_t start
, loff_t end
,
411 int datasync
, int isdir
)
413 struct inode
*inode
= file
->f_mapping
->host
;
414 struct fuse_conn
*fc
= get_fuse_conn(inode
);
415 struct fuse_file
*ff
= file
->private_data
;
416 struct fuse_req
*req
;
417 struct fuse_fsync_in inarg
;
420 if (is_bad_inode(inode
))
423 err
= filemap_write_and_wait_range(inode
->i_mapping
, start
, end
);
427 if ((!isdir
&& fc
->no_fsync
) || (isdir
&& fc
->no_fsyncdir
))
430 mutex_lock(&inode
->i_mutex
);
433 * Start writeback against all dirty pages of the inode, then
434 * wait for all outstanding writes, before sending the FSYNC
437 err
= write_inode_now(inode
, 0);
441 fuse_sync_writes(inode
);
443 req
= fuse_get_req(fc
);
449 memset(&inarg
, 0, sizeof(inarg
));
451 inarg
.fsync_flags
= datasync
? 1 : 0;
452 req
->in
.h
.opcode
= isdir
? FUSE_FSYNCDIR
: FUSE_FSYNC
;
453 req
->in
.h
.nodeid
= get_node_id(inode
);
455 req
->in
.args
[0].size
= sizeof(inarg
);
456 req
->in
.args
[0].value
= &inarg
;
457 fuse_request_send(fc
, req
);
458 err
= req
->out
.h
.error
;
459 fuse_put_request(fc
, req
);
460 if (err
== -ENOSYS
) {
468 mutex_unlock(&inode
->i_mutex
);
472 static int fuse_fsync(struct file
*file
, loff_t start
, loff_t end
,
475 return fuse_fsync_common(file
, start
, end
, datasync
, 0);
478 void fuse_read_fill(struct fuse_req
*req
, struct file
*file
, loff_t pos
,
479 size_t count
, int opcode
)
481 struct fuse_read_in
*inarg
= &req
->misc
.read
.in
;
482 struct fuse_file
*ff
= file
->private_data
;
487 inarg
->flags
= file
->f_flags
;
488 req
->in
.h
.opcode
= opcode
;
489 req
->in
.h
.nodeid
= ff
->nodeid
;
491 req
->in
.args
[0].size
= sizeof(struct fuse_read_in
);
492 req
->in
.args
[0].value
= inarg
;
494 req
->out
.numargs
= 1;
495 req
->out
.args
[0].size
= count
;
498 static size_t fuse_send_read(struct fuse_req
*req
, struct file
*file
,
499 loff_t pos
, size_t count
, fl_owner_t owner
)
501 struct fuse_file
*ff
= file
->private_data
;
502 struct fuse_conn
*fc
= ff
->fc
;
504 fuse_read_fill(req
, file
, pos
, count
, FUSE_READ
);
506 struct fuse_read_in
*inarg
= &req
->misc
.read
.in
;
508 inarg
->read_flags
|= FUSE_READ_LOCKOWNER
;
509 inarg
->lock_owner
= fuse_lock_owner_id(fc
, owner
);
511 fuse_request_send(fc
, req
);
512 return req
->out
.args
[0].size
;
515 static void fuse_read_update_size(struct inode
*inode
, loff_t size
,
518 struct fuse_conn
*fc
= get_fuse_conn(inode
);
519 struct fuse_inode
*fi
= get_fuse_inode(inode
);
521 spin_lock(&fc
->lock
);
522 if (attr_ver
== fi
->attr_version
&& size
< inode
->i_size
) {
523 fi
->attr_version
= ++fc
->attr_version
;
524 i_size_write(inode
, size
);
526 spin_unlock(&fc
->lock
);
529 static int fuse_readpage(struct file
*file
, struct page
*page
)
531 struct inode
*inode
= page
->mapping
->host
;
532 struct fuse_conn
*fc
= get_fuse_conn(inode
);
533 struct fuse_req
*req
;
535 loff_t pos
= page_offset(page
);
536 size_t count
= PAGE_CACHE_SIZE
;
541 if (is_bad_inode(inode
))
545 * Page writeback can extend beyond the lifetime of the
546 * page-cache page, so make sure we read a properly synced
549 fuse_wait_on_page_writeback(inode
, page
->index
);
551 req
= fuse_get_req(fc
);
556 attr_ver
= fuse_get_attr_version(fc
);
558 req
->out
.page_zeroing
= 1;
559 req
->out
.argpages
= 1;
561 req
->pages
[0] = page
;
562 num_read
= fuse_send_read(req
, file
, pos
, count
, NULL
);
563 err
= req
->out
.h
.error
;
564 fuse_put_request(fc
, req
);
568 * Short read means EOF. If file size is larger, truncate it
570 if (num_read
< count
)
571 fuse_read_update_size(inode
, pos
+ num_read
, attr_ver
);
573 SetPageUptodate(page
);
576 fuse_invalidate_attr(inode
); /* atime changed */
582 static void fuse_readpages_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
585 size_t count
= req
->misc
.read
.in
.size
;
586 size_t num_read
= req
->out
.args
[0].size
;
587 struct address_space
*mapping
= NULL
;
589 for (i
= 0; mapping
== NULL
&& i
< req
->num_pages
; i
++)
590 mapping
= req
->pages
[i
]->mapping
;
593 struct inode
*inode
= mapping
->host
;
596 * Short read means EOF. If file size is larger, truncate it
598 if (!req
->out
.h
.error
&& num_read
< count
) {
601 pos
= page_offset(req
->pages
[0]) + num_read
;
602 fuse_read_update_size(inode
, pos
,
603 req
->misc
.read
.attr_ver
);
605 fuse_invalidate_attr(inode
); /* atime changed */
608 for (i
= 0; i
< req
->num_pages
; i
++) {
609 struct page
*page
= req
->pages
[i
];
610 if (!req
->out
.h
.error
)
611 SetPageUptodate(page
);
615 page_cache_release(page
);
618 fuse_file_put(req
->ff
, false);
621 static void fuse_send_readpages(struct fuse_req
*req
, struct file
*file
)
623 struct fuse_file
*ff
= file
->private_data
;
624 struct fuse_conn
*fc
= ff
->fc
;
625 loff_t pos
= page_offset(req
->pages
[0]);
626 size_t count
= req
->num_pages
<< PAGE_CACHE_SHIFT
;
628 req
->out
.argpages
= 1;
629 req
->out
.page_zeroing
= 1;
630 req
->out
.page_replace
= 1;
631 fuse_read_fill(req
, file
, pos
, count
, FUSE_READ
);
632 req
->misc
.read
.attr_ver
= fuse_get_attr_version(fc
);
633 if (fc
->async_read
) {
634 req
->ff
= fuse_file_get(ff
);
635 req
->end
= fuse_readpages_end
;
636 fuse_request_send_background(fc
, req
);
638 fuse_request_send(fc
, req
);
639 fuse_readpages_end(fc
, req
);
640 fuse_put_request(fc
, req
);
644 struct fuse_fill_data
{
645 struct fuse_req
*req
;
650 static int fuse_readpages_fill(void *_data
, struct page
*page
)
652 struct fuse_fill_data
*data
= _data
;
653 struct fuse_req
*req
= data
->req
;
654 struct inode
*inode
= data
->inode
;
655 struct fuse_conn
*fc
= get_fuse_conn(inode
);
657 fuse_wait_on_page_writeback(inode
, page
->index
);
659 if (req
->num_pages
&&
660 (req
->num_pages
== FUSE_MAX_PAGES_PER_REQ
||
661 (req
->num_pages
+ 1) * PAGE_CACHE_SIZE
> fc
->max_read
||
662 req
->pages
[req
->num_pages
- 1]->index
+ 1 != page
->index
)) {
663 fuse_send_readpages(req
, data
->file
);
664 data
->req
= req
= fuse_get_req(fc
);
670 page_cache_get(page
);
671 req
->pages
[req
->num_pages
] = page
;
676 static int fuse_readpages(struct file
*file
, struct address_space
*mapping
,
677 struct list_head
*pages
, unsigned nr_pages
)
679 struct inode
*inode
= mapping
->host
;
680 struct fuse_conn
*fc
= get_fuse_conn(inode
);
681 struct fuse_fill_data data
;
685 if (is_bad_inode(inode
))
690 data
.req
= fuse_get_req(fc
);
691 err
= PTR_ERR(data
.req
);
692 if (IS_ERR(data
.req
))
695 err
= read_cache_pages(mapping
, pages
, fuse_readpages_fill
, &data
);
697 if (data
.req
->num_pages
)
698 fuse_send_readpages(data
.req
, file
);
700 fuse_put_request(fc
, data
.req
);
706 static ssize_t
fuse_file_aio_read(struct kiocb
*iocb
, const struct iovec
*iov
,
707 unsigned long nr_segs
, loff_t pos
)
709 struct inode
*inode
= iocb
->ki_filp
->f_mapping
->host
;
711 if (pos
+ iov_length(iov
, nr_segs
) > i_size_read(inode
)) {
714 * If trying to read past EOF, make sure the i_size
715 * attribute is up-to-date.
717 err
= fuse_update_attributes(inode
, NULL
, iocb
->ki_filp
, NULL
);
722 return generic_file_aio_read(iocb
, iov
, nr_segs
, pos
);
725 static void fuse_write_fill(struct fuse_req
*req
, struct fuse_file
*ff
,
726 loff_t pos
, size_t count
)
728 struct fuse_write_in
*inarg
= &req
->misc
.write
.in
;
729 struct fuse_write_out
*outarg
= &req
->misc
.write
.out
;
734 req
->in
.h
.opcode
= FUSE_WRITE
;
735 req
->in
.h
.nodeid
= ff
->nodeid
;
737 if (ff
->fc
->minor
< 9)
738 req
->in
.args
[0].size
= FUSE_COMPAT_WRITE_IN_SIZE
;
740 req
->in
.args
[0].size
= sizeof(struct fuse_write_in
);
741 req
->in
.args
[0].value
= inarg
;
742 req
->in
.args
[1].size
= count
;
743 req
->out
.numargs
= 1;
744 req
->out
.args
[0].size
= sizeof(struct fuse_write_out
);
745 req
->out
.args
[0].value
= outarg
;
748 static size_t fuse_send_write(struct fuse_req
*req
, struct file
*file
,
749 loff_t pos
, size_t count
, fl_owner_t owner
)
751 struct fuse_file
*ff
= file
->private_data
;
752 struct fuse_conn
*fc
= ff
->fc
;
753 struct fuse_write_in
*inarg
= &req
->misc
.write
.in
;
755 fuse_write_fill(req
, ff
, pos
, count
);
756 inarg
->flags
= file
->f_flags
;
758 inarg
->write_flags
|= FUSE_WRITE_LOCKOWNER
;
759 inarg
->lock_owner
= fuse_lock_owner_id(fc
, owner
);
761 fuse_request_send(fc
, req
);
762 return req
->misc
.write
.out
.size
;
765 void fuse_write_update_size(struct inode
*inode
, loff_t pos
)
767 struct fuse_conn
*fc
= get_fuse_conn(inode
);
768 struct fuse_inode
*fi
= get_fuse_inode(inode
);
770 spin_lock(&fc
->lock
);
771 fi
->attr_version
= ++fc
->attr_version
;
772 if (pos
> inode
->i_size
)
773 i_size_write(inode
, pos
);
774 spin_unlock(&fc
->lock
);
777 static size_t fuse_send_write_pages(struct fuse_req
*req
, struct file
*file
,
778 struct inode
*inode
, loff_t pos
,
785 for (i
= 0; i
< req
->num_pages
; i
++)
786 fuse_wait_on_page_writeback(inode
, req
->pages
[i
]->index
);
788 res
= fuse_send_write(req
, file
, pos
, count
, NULL
);
790 offset
= req
->page_offset
;
792 for (i
= 0; i
< req
->num_pages
; i
++) {
793 struct page
*page
= req
->pages
[i
];
795 if (!req
->out
.h
.error
&& !offset
&& count
>= PAGE_CACHE_SIZE
)
796 SetPageUptodate(page
);
798 if (count
> PAGE_CACHE_SIZE
- offset
)
799 count
-= PAGE_CACHE_SIZE
- offset
;
805 page_cache_release(page
);
811 static ssize_t
fuse_fill_write_pages(struct fuse_req
*req
,
812 struct address_space
*mapping
,
813 struct iov_iter
*ii
, loff_t pos
)
815 struct fuse_conn
*fc
= get_fuse_conn(mapping
->host
);
816 unsigned offset
= pos
& (PAGE_CACHE_SIZE
- 1);
820 req
->in
.argpages
= 1;
821 req
->page_offset
= offset
;
826 pgoff_t index
= pos
>> PAGE_CACHE_SHIFT
;
827 size_t bytes
= min_t(size_t, PAGE_CACHE_SIZE
- offset
,
830 bytes
= min_t(size_t, bytes
, fc
->max_write
- count
);
834 if (iov_iter_fault_in_readable(ii
, bytes
))
838 page
= grab_cache_page_write_begin(mapping
, index
, 0);
842 if (mapping_writably_mapped(mapping
))
843 flush_dcache_page(page
);
846 tmp
= iov_iter_copy_from_user_atomic(page
, ii
, offset
, bytes
);
848 flush_dcache_page(page
);
850 mark_page_accessed(page
);
854 page_cache_release(page
);
855 bytes
= min(bytes
, iov_iter_single_seg_count(ii
));
860 req
->pages
[req
->num_pages
] = page
;
863 iov_iter_advance(ii
, tmp
);
867 if (offset
== PAGE_CACHE_SIZE
)
872 } while (iov_iter_count(ii
) && count
< fc
->max_write
&&
873 req
->num_pages
< FUSE_MAX_PAGES_PER_REQ
&& offset
== 0);
875 return count
> 0 ? count
: err
;
878 static ssize_t
fuse_perform_write(struct file
*file
,
879 struct address_space
*mapping
,
880 struct iov_iter
*ii
, loff_t pos
)
882 struct inode
*inode
= mapping
->host
;
883 struct fuse_conn
*fc
= get_fuse_conn(inode
);
887 if (is_bad_inode(inode
))
891 struct fuse_req
*req
;
894 req
= fuse_get_req(fc
);
900 count
= fuse_fill_write_pages(req
, mapping
, ii
, pos
);
906 num_written
= fuse_send_write_pages(req
, file
, inode
,
908 err
= req
->out
.h
.error
;
913 /* break out of the loop on short write */
914 if (num_written
!= count
)
918 fuse_put_request(fc
, req
);
919 } while (!err
&& iov_iter_count(ii
));
922 fuse_write_update_size(inode
, pos
);
924 fuse_invalidate_attr(inode
);
926 return res
> 0 ? res
: err
;
929 static ssize_t
fuse_file_aio_write(struct kiocb
*iocb
, const struct iovec
*iov
,
930 unsigned long nr_segs
, loff_t pos
)
932 struct file
*file
= iocb
->ki_filp
;
933 struct address_space
*mapping
= file
->f_mapping
;
936 struct inode
*inode
= mapping
->host
;
940 WARN_ON(iocb
->ki_pos
!= pos
);
942 err
= generic_segment_checks(iov
, &nr_segs
, &count
, VERIFY_READ
);
946 mutex_lock(&inode
->i_mutex
);
947 vfs_check_frozen(inode
->i_sb
, SB_FREEZE_WRITE
);
949 /* We can write back this queue in page reclaim */
950 current
->backing_dev_info
= mapping
->backing_dev_info
;
952 err
= generic_write_checks(file
, &pos
, &count
, S_ISBLK(inode
->i_mode
));
959 err
= file_remove_suid(file
);
963 file_update_time(file
);
965 iov_iter_init(&i
, iov
, nr_segs
, count
, 0);
966 written
= fuse_perform_write(file
, mapping
, &i
, pos
);
968 iocb
->ki_pos
= pos
+ written
;
971 current
->backing_dev_info
= NULL
;
972 mutex_unlock(&inode
->i_mutex
);
974 return written
? written
: err
;
977 static void fuse_release_user_pages(struct fuse_req
*req
, int write
)
981 for (i
= 0; i
< req
->num_pages
; i
++) {
982 struct page
*page
= req
->pages
[i
];
984 set_page_dirty_lock(page
);
989 static int fuse_get_user_pages(struct fuse_req
*req
, const char __user
*buf
,
990 size_t *nbytesp
, int write
)
992 size_t nbytes
= *nbytesp
;
993 unsigned long user_addr
= (unsigned long) buf
;
994 unsigned offset
= user_addr
& ~PAGE_MASK
;
997 /* Special case for kernel I/O: can copy directly into the buffer */
998 if (segment_eq(get_fs(), KERNEL_DS
)) {
1000 req
->in
.args
[1].value
= (void *) user_addr
;
1002 req
->out
.args
[0].value
= (void *) user_addr
;
1007 nbytes
= min_t(size_t, nbytes
, FUSE_MAX_PAGES_PER_REQ
<< PAGE_SHIFT
);
1008 npages
= (nbytes
+ offset
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
1009 npages
= clamp(npages
, 1, FUSE_MAX_PAGES_PER_REQ
);
1010 npages
= get_user_pages_fast(user_addr
, npages
, !write
, req
->pages
);
1014 req
->num_pages
= npages
;
1015 req
->page_offset
= offset
;
1018 req
->in
.argpages
= 1;
1020 req
->out
.argpages
= 1;
1022 nbytes
= (req
->num_pages
<< PAGE_SHIFT
) - req
->page_offset
;
1023 *nbytesp
= min(*nbytesp
, nbytes
);
1028 ssize_t
fuse_direct_io(struct file
*file
, const char __user
*buf
,
1029 size_t count
, loff_t
*ppos
, int write
)
1031 struct fuse_file
*ff
= file
->private_data
;
1032 struct fuse_conn
*fc
= ff
->fc
;
1033 size_t nmax
= write
? fc
->max_write
: fc
->max_read
;
1036 struct fuse_req
*req
;
1038 req
= fuse_get_req(fc
);
1040 return PTR_ERR(req
);
1044 fl_owner_t owner
= current
->files
;
1045 size_t nbytes
= min(count
, nmax
);
1046 int err
= fuse_get_user_pages(req
, buf
, &nbytes
, write
);
1053 nres
= fuse_send_write(req
, file
, pos
, nbytes
, owner
);
1055 nres
= fuse_send_read(req
, file
, pos
, nbytes
, owner
);
1057 fuse_release_user_pages(req
, !write
);
1058 if (req
->out
.h
.error
) {
1060 res
= req
->out
.h
.error
;
1062 } else if (nres
> nbytes
) {
1073 fuse_put_request(fc
, req
);
1074 req
= fuse_get_req(fc
);
1080 fuse_put_request(fc
, req
);
1086 EXPORT_SYMBOL_GPL(fuse_direct_io
);
1088 static ssize_t
fuse_direct_read(struct file
*file
, char __user
*buf
,
1089 size_t count
, loff_t
*ppos
)
1092 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1094 if (is_bad_inode(inode
))
1097 res
= fuse_direct_io(file
, buf
, count
, ppos
, 0);
1099 fuse_invalidate_attr(inode
);
1104 static ssize_t
fuse_direct_write(struct file
*file
, const char __user
*buf
,
1105 size_t count
, loff_t
*ppos
)
1107 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1110 if (is_bad_inode(inode
))
1113 /* Don't allow parallel writes to the same file */
1114 mutex_lock(&inode
->i_mutex
);
1115 res
= generic_write_checks(file
, ppos
, &count
, 0);
1117 res
= fuse_direct_io(file
, buf
, count
, ppos
, 1);
1119 fuse_write_update_size(inode
, *ppos
);
1121 mutex_unlock(&inode
->i_mutex
);
1123 fuse_invalidate_attr(inode
);
1128 static void fuse_writepage_free(struct fuse_conn
*fc
, struct fuse_req
*req
)
1130 __free_page(req
->pages
[0]);
1131 fuse_file_put(req
->ff
, false);
1134 static void fuse_writepage_finish(struct fuse_conn
*fc
, struct fuse_req
*req
)
1136 struct inode
*inode
= req
->inode
;
1137 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1138 struct backing_dev_info
*bdi
= inode
->i_mapping
->backing_dev_info
;
1140 list_del(&req
->writepages_entry
);
1141 dec_bdi_stat(bdi
, BDI_WRITEBACK
);
1142 dec_zone_page_state(req
->pages
[0], NR_WRITEBACK_TEMP
);
1143 bdi_writeout_inc(bdi
);
1144 wake_up(&fi
->page_waitq
);
1147 /* Called under fc->lock, may release and reacquire it */
1148 static void fuse_send_writepage(struct fuse_conn
*fc
, struct fuse_req
*req
)
1149 __releases(fc
->lock
)
1150 __acquires(fc
->lock
)
1152 struct fuse_inode
*fi
= get_fuse_inode(req
->inode
);
1153 loff_t size
= i_size_read(req
->inode
);
1154 struct fuse_write_in
*inarg
= &req
->misc
.write
.in
;
1159 if (inarg
->offset
+ PAGE_CACHE_SIZE
<= size
) {
1160 inarg
->size
= PAGE_CACHE_SIZE
;
1161 } else if (inarg
->offset
< size
) {
1162 inarg
->size
= size
& (PAGE_CACHE_SIZE
- 1);
1164 /* Got truncated off completely */
1168 req
->in
.args
[1].size
= inarg
->size
;
1170 fuse_request_send_background_locked(fc
, req
);
1174 fuse_writepage_finish(fc
, req
);
1175 spin_unlock(&fc
->lock
);
1176 fuse_writepage_free(fc
, req
);
1177 fuse_put_request(fc
, req
);
1178 spin_lock(&fc
->lock
);
1182 * If fi->writectr is positive (no truncate or fsync going on) send
1183 * all queued writepage requests.
1185 * Called with fc->lock
1187 void fuse_flush_writepages(struct inode
*inode
)
1188 __releases(fc
->lock
)
1189 __acquires(fc
->lock
)
1191 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1192 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1193 struct fuse_req
*req
;
1195 while (fi
->writectr
>= 0 && !list_empty(&fi
->queued_writes
)) {
1196 req
= list_entry(fi
->queued_writes
.next
, struct fuse_req
, list
);
1197 list_del_init(&req
->list
);
1198 fuse_send_writepage(fc
, req
);
1202 static void fuse_writepage_end(struct fuse_conn
*fc
, struct fuse_req
*req
)
1204 struct inode
*inode
= req
->inode
;
1205 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1207 mapping_set_error(inode
->i_mapping
, req
->out
.h
.error
);
1208 spin_lock(&fc
->lock
);
1210 fuse_writepage_finish(fc
, req
);
1211 spin_unlock(&fc
->lock
);
1212 fuse_writepage_free(fc
, req
);
1215 static int fuse_writepage_locked(struct page
*page
)
1217 struct address_space
*mapping
= page
->mapping
;
1218 struct inode
*inode
= mapping
->host
;
1219 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1220 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1221 struct fuse_req
*req
;
1222 struct fuse_file
*ff
;
1223 struct page
*tmp_page
;
1225 set_page_writeback(page
);
1227 req
= fuse_request_alloc_nofs();
1231 tmp_page
= alloc_page(GFP_NOFS
| __GFP_HIGHMEM
);
1235 spin_lock(&fc
->lock
);
1236 BUG_ON(list_empty(&fi
->write_files
));
1237 ff
= list_entry(fi
->write_files
.next
, struct fuse_file
, write_entry
);
1238 req
->ff
= fuse_file_get(ff
);
1239 spin_unlock(&fc
->lock
);
1241 fuse_write_fill(req
, ff
, page_offset(page
), 0);
1243 copy_highpage(tmp_page
, page
);
1244 req
->misc
.write
.in
.write_flags
|= FUSE_WRITE_CACHE
;
1245 req
->in
.argpages
= 1;
1247 req
->pages
[0] = tmp_page
;
1248 req
->page_offset
= 0;
1249 req
->end
= fuse_writepage_end
;
1252 inc_bdi_stat(mapping
->backing_dev_info
, BDI_WRITEBACK
);
1253 inc_zone_page_state(tmp_page
, NR_WRITEBACK_TEMP
);
1254 end_page_writeback(page
);
1256 spin_lock(&fc
->lock
);
1257 list_add(&req
->writepages_entry
, &fi
->writepages
);
1258 list_add_tail(&req
->list
, &fi
->queued_writes
);
1259 fuse_flush_writepages(inode
);
1260 spin_unlock(&fc
->lock
);
1265 fuse_request_free(req
);
1267 end_page_writeback(page
);
1271 static int fuse_writepage(struct page
*page
, struct writeback_control
*wbc
)
1275 err
= fuse_writepage_locked(page
);
1281 static int fuse_launder_page(struct page
*page
)
1284 if (clear_page_dirty_for_io(page
)) {
1285 struct inode
*inode
= page
->mapping
->host
;
1286 err
= fuse_writepage_locked(page
);
1288 fuse_wait_on_page_writeback(inode
, page
->index
);
1294 * Write back dirty pages now, because there may not be any suitable
1297 static void fuse_vma_close(struct vm_area_struct
*vma
)
1299 filemap_write_and_wait(vma
->vm_file
->f_mapping
);
1303 * Wait for writeback against this page to complete before allowing it
1304 * to be marked dirty again, and hence written back again, possibly
1305 * before the previous writepage completed.
1307 * Block here, instead of in ->writepage(), so that the userspace fs
1308 * can only block processes actually operating on the filesystem.
1310 * Otherwise unprivileged userspace fs would be able to block
1315 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
1317 static int fuse_page_mkwrite(struct vm_area_struct
*vma
, struct vm_fault
*vmf
)
1319 struct page
*page
= vmf
->page
;
1321 * Don't use page->mapping as it may become NULL from a
1322 * concurrent truncate.
1324 struct inode
*inode
= vma
->vm_file
->f_mapping
->host
;
1326 fuse_wait_on_page_writeback(inode
, page
->index
);
1330 static const struct vm_operations_struct fuse_file_vm_ops
= {
1331 .close
= fuse_vma_close
,
1332 .fault
= filemap_fault
,
1333 .page_mkwrite
= fuse_page_mkwrite
,
1336 static int fuse_file_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1338 if ((vma
->vm_flags
& VM_SHARED
) && (vma
->vm_flags
& VM_MAYWRITE
)) {
1339 struct inode
*inode
= file
->f_dentry
->d_inode
;
1340 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1341 struct fuse_inode
*fi
= get_fuse_inode(inode
);
1342 struct fuse_file
*ff
= file
->private_data
;
1344 * file may be written through mmap, so chain it onto the
1345 * inodes's write_file list
1347 spin_lock(&fc
->lock
);
1348 if (list_empty(&ff
->write_entry
))
1349 list_add(&ff
->write_entry
, &fi
->write_files
);
1350 spin_unlock(&fc
->lock
);
1352 file_accessed(file
);
1353 vma
->vm_ops
= &fuse_file_vm_ops
;
1357 static int fuse_direct_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1359 /* Can't provide the coherency needed for MAP_SHARED */
1360 if (vma
->vm_flags
& VM_MAYSHARE
)
1363 invalidate_inode_pages2(file
->f_mapping
);
1365 return generic_file_mmap(file
, vma
);
1368 static int convert_fuse_file_lock(const struct fuse_file_lock
*ffl
,
1369 struct file_lock
*fl
)
1371 switch (ffl
->type
) {
1377 if (ffl
->start
> OFFSET_MAX
|| ffl
->end
> OFFSET_MAX
||
1378 ffl
->end
< ffl
->start
)
1381 fl
->fl_start
= ffl
->start
;
1382 fl
->fl_end
= ffl
->end
;
1383 fl
->fl_pid
= ffl
->pid
;
1389 fl
->fl_type
= ffl
->type
;
1393 static void fuse_lk_fill(struct fuse_req
*req
, struct file
*file
,
1394 const struct file_lock
*fl
, int opcode
, pid_t pid
,
1397 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1398 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1399 struct fuse_file
*ff
= file
->private_data
;
1400 struct fuse_lk_in
*arg
= &req
->misc
.lk_in
;
1403 arg
->owner
= fuse_lock_owner_id(fc
, fl
->fl_owner
);
1404 arg
->lk
.start
= fl
->fl_start
;
1405 arg
->lk
.end
= fl
->fl_end
;
1406 arg
->lk
.type
= fl
->fl_type
;
1409 arg
->lk_flags
|= FUSE_LK_FLOCK
;
1410 req
->in
.h
.opcode
= opcode
;
1411 req
->in
.h
.nodeid
= get_node_id(inode
);
1412 req
->in
.numargs
= 1;
1413 req
->in
.args
[0].size
= sizeof(*arg
);
1414 req
->in
.args
[0].value
= arg
;
1417 static int fuse_getlk(struct file
*file
, struct file_lock
*fl
)
1419 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1420 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1421 struct fuse_req
*req
;
1422 struct fuse_lk_out outarg
;
1425 req
= fuse_get_req(fc
);
1427 return PTR_ERR(req
);
1429 fuse_lk_fill(req
, file
, fl
, FUSE_GETLK
, 0, 0);
1430 req
->out
.numargs
= 1;
1431 req
->out
.args
[0].size
= sizeof(outarg
);
1432 req
->out
.args
[0].value
= &outarg
;
1433 fuse_request_send(fc
, req
);
1434 err
= req
->out
.h
.error
;
1435 fuse_put_request(fc
, req
);
1437 err
= convert_fuse_file_lock(&outarg
.lk
, fl
);
1442 static int fuse_setlk(struct file
*file
, struct file_lock
*fl
, int flock
)
1444 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1445 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1446 struct fuse_req
*req
;
1447 int opcode
= (fl
->fl_flags
& FL_SLEEP
) ? FUSE_SETLKW
: FUSE_SETLK
;
1448 pid_t pid
= fl
->fl_type
!= F_UNLCK
? current
->tgid
: 0;
1451 if (fl
->fl_lmops
&& fl
->fl_lmops
->lm_grant
) {
1452 /* NLM needs asynchronous locks, which we don't support yet */
1456 /* Unlock on close is handled by the flush method */
1457 if (fl
->fl_flags
& FL_CLOSE
)
1460 req
= fuse_get_req(fc
);
1462 return PTR_ERR(req
);
1464 fuse_lk_fill(req
, file
, fl
, opcode
, pid
, flock
);
1465 fuse_request_send(fc
, req
);
1466 err
= req
->out
.h
.error
;
1467 /* locking is restartable */
1470 fuse_put_request(fc
, req
);
1474 static int fuse_file_lock(struct file
*file
, int cmd
, struct file_lock
*fl
)
1476 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1477 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1480 if (cmd
== F_CANCELLK
) {
1482 } else if (cmd
== F_GETLK
) {
1484 posix_test_lock(file
, fl
);
1487 err
= fuse_getlk(file
, fl
);
1490 err
= posix_lock_file(file
, fl
, NULL
);
1492 err
= fuse_setlk(file
, fl
, 0);
1497 static int fuse_file_flock(struct file
*file
, int cmd
, struct file_lock
*fl
)
1499 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1500 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1504 err
= flock_lock_file_wait(file
, fl
);
1506 struct fuse_file
*ff
= file
->private_data
;
1508 /* emulate flock with POSIX locks */
1509 fl
->fl_owner
= (fl_owner_t
) file
;
1511 err
= fuse_setlk(file
, fl
, 1);
1517 static sector_t
fuse_bmap(struct address_space
*mapping
, sector_t block
)
1519 struct inode
*inode
= mapping
->host
;
1520 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1521 struct fuse_req
*req
;
1522 struct fuse_bmap_in inarg
;
1523 struct fuse_bmap_out outarg
;
1526 if (!inode
->i_sb
->s_bdev
|| fc
->no_bmap
)
1529 req
= fuse_get_req(fc
);
1533 memset(&inarg
, 0, sizeof(inarg
));
1534 inarg
.block
= block
;
1535 inarg
.blocksize
= inode
->i_sb
->s_blocksize
;
1536 req
->in
.h
.opcode
= FUSE_BMAP
;
1537 req
->in
.h
.nodeid
= get_node_id(inode
);
1538 req
->in
.numargs
= 1;
1539 req
->in
.args
[0].size
= sizeof(inarg
);
1540 req
->in
.args
[0].value
= &inarg
;
1541 req
->out
.numargs
= 1;
1542 req
->out
.args
[0].size
= sizeof(outarg
);
1543 req
->out
.args
[0].value
= &outarg
;
1544 fuse_request_send(fc
, req
);
1545 err
= req
->out
.h
.error
;
1546 fuse_put_request(fc
, req
);
1550 return err
? 0 : outarg
.block
;
1553 static loff_t
fuse_file_llseek(struct file
*file
, loff_t offset
, int origin
)
1556 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1558 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
1559 if (origin
== SEEK_CUR
|| origin
== SEEK_SET
)
1560 return generic_file_llseek(file
, offset
, origin
);
1562 mutex_lock(&inode
->i_mutex
);
1563 retval
= fuse_update_attributes(inode
, NULL
, file
, NULL
);
1565 retval
= generic_file_llseek(file
, offset
, origin
);
1566 mutex_unlock(&inode
->i_mutex
);
1571 static int fuse_ioctl_copy_user(struct page
**pages
, struct iovec
*iov
,
1572 unsigned int nr_segs
, size_t bytes
, bool to_user
)
1580 iov_iter_init(&ii
, iov
, nr_segs
, bytes
, 0);
1582 while (iov_iter_count(&ii
)) {
1583 struct page
*page
= pages
[page_idx
++];
1584 size_t todo
= min_t(size_t, PAGE_SIZE
, iov_iter_count(&ii
));
1590 char __user
*uaddr
= ii
.iov
->iov_base
+ ii
.iov_offset
;
1591 size_t iov_len
= ii
.iov
->iov_len
- ii
.iov_offset
;
1592 size_t copy
= min(todo
, iov_len
);
1596 left
= copy_from_user(kaddr
, uaddr
, copy
);
1598 left
= copy_to_user(uaddr
, kaddr
, copy
);
1603 iov_iter_advance(&ii
, copy
);
1615 * CUSE servers compiled on 32bit broke on 64bit kernels because the
1616 * ABI was defined to be 'struct iovec' which is different on 32bit
1617 * and 64bit. Fortunately we can determine which structure the server
1618 * used from the size of the reply.
1620 static int fuse_copy_ioctl_iovec_old(struct iovec
*dst
, void *src
,
1621 size_t transferred
, unsigned count
,
1624 #ifdef CONFIG_COMPAT
1625 if (count
* sizeof(struct compat_iovec
) == transferred
) {
1626 struct compat_iovec
*ciov
= src
;
1630 * With this interface a 32bit server cannot support
1631 * non-compat (i.e. ones coming from 64bit apps) ioctl
1637 for (i
= 0; i
< count
; i
++) {
1638 dst
[i
].iov_base
= compat_ptr(ciov
[i
].iov_base
);
1639 dst
[i
].iov_len
= ciov
[i
].iov_len
;
1645 if (count
* sizeof(struct iovec
) != transferred
)
1648 memcpy(dst
, src
, transferred
);
1652 /* Make sure iov_length() won't overflow */
1653 static int fuse_verify_ioctl_iov(struct iovec
*iov
, size_t count
)
1656 u32 max
= FUSE_MAX_PAGES_PER_REQ
<< PAGE_SHIFT
;
1658 for (n
= 0; n
< count
; n
++) {
1659 if (iov
->iov_len
> (size_t) max
)
1661 max
-= iov
->iov_len
;
1666 static int fuse_copy_ioctl_iovec(struct fuse_conn
*fc
, struct iovec
*dst
,
1667 void *src
, size_t transferred
, unsigned count
,
1671 struct fuse_ioctl_iovec
*fiov
= src
;
1673 if (fc
->minor
< 16) {
1674 return fuse_copy_ioctl_iovec_old(dst
, src
, transferred
,
1678 if (count
* sizeof(struct fuse_ioctl_iovec
) != transferred
)
1681 for (i
= 0; i
< count
; i
++) {
1682 /* Did the server supply an inappropriate value? */
1683 if (fiov
[i
].base
!= (unsigned long) fiov
[i
].base
||
1684 fiov
[i
].len
!= (unsigned long) fiov
[i
].len
)
1687 dst
[i
].iov_base
= (void __user
*) (unsigned long) fiov
[i
].base
;
1688 dst
[i
].iov_len
= (size_t) fiov
[i
].len
;
1690 #ifdef CONFIG_COMPAT
1692 (ptr_to_compat(dst
[i
].iov_base
) != fiov
[i
].base
||
1693 (compat_size_t
) dst
[i
].iov_len
!= fiov
[i
].len
))
1703 * For ioctls, there is no generic way to determine how much memory
1704 * needs to be read and/or written. Furthermore, ioctls are allowed
1705 * to dereference the passed pointer, so the parameter requires deep
1706 * copying but FUSE has no idea whatsoever about what to copy in or
1709 * This is solved by allowing FUSE server to retry ioctl with
1710 * necessary in/out iovecs. Let's assume the ioctl implementation
1711 * needs to read in the following structure.
1718 * On the first callout to FUSE server, inarg->in_size and
1719 * inarg->out_size will be NULL; then, the server completes the ioctl
1720 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
1721 * the actual iov array to
1723 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
1725 * which tells FUSE to copy in the requested area and retry the ioctl.
1726 * On the second round, the server has access to the structure and
1727 * from that it can tell what to look for next, so on the invocation,
1728 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
1730 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
1731 * { .iov_base = a.buf, .iov_len = a.buflen } }
1733 * FUSE will copy both struct a and the pointed buffer from the
1734 * process doing the ioctl and retry ioctl with both struct a and the
1737 * This time, FUSE server has everything it needs and completes ioctl
1738 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
1740 * Copying data out works the same way.
1742 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
1743 * automatically initializes in and out iovs by decoding @cmd with
1744 * _IOC_* macros and the server is not allowed to request RETRY. This
1745 * limits ioctl data transfers to well-formed ioctls and is the forced
1746 * behavior for all FUSE servers.
1748 long fuse_do_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
,
1751 struct fuse_file
*ff
= file
->private_data
;
1752 struct fuse_conn
*fc
= ff
->fc
;
1753 struct fuse_ioctl_in inarg
= {
1759 struct fuse_ioctl_out outarg
;
1760 struct fuse_req
*req
= NULL
;
1761 struct page
**pages
= NULL
;
1762 struct iovec
*iov_page
= NULL
;
1763 struct iovec
*in_iov
= NULL
, *out_iov
= NULL
;
1764 unsigned int in_iovs
= 0, out_iovs
= 0, num_pages
= 0, max_pages
;
1765 size_t in_size
, out_size
, transferred
;
1768 #if BITS_PER_LONG == 32
1769 inarg
.flags
|= FUSE_IOCTL_32BIT
;
1771 if (flags
& FUSE_IOCTL_COMPAT
)
1772 inarg
.flags
|= FUSE_IOCTL_32BIT
;
1775 /* assume all the iovs returned by client always fits in a page */
1776 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec
) * FUSE_IOCTL_MAX_IOV
> PAGE_SIZE
);
1779 pages
= kzalloc(sizeof(pages
[0]) * FUSE_MAX_PAGES_PER_REQ
, GFP_KERNEL
);
1780 iov_page
= (struct iovec
*) __get_free_page(GFP_KERNEL
);
1781 if (!pages
|| !iov_page
)
1785 * If restricted, initialize IO parameters as encoded in @cmd.
1786 * RETRY from server is not allowed.
1788 if (!(flags
& FUSE_IOCTL_UNRESTRICTED
)) {
1789 struct iovec
*iov
= iov_page
;
1791 iov
->iov_base
= (void __user
*)arg
;
1792 iov
->iov_len
= _IOC_SIZE(cmd
);
1794 if (_IOC_DIR(cmd
) & _IOC_WRITE
) {
1799 if (_IOC_DIR(cmd
) & _IOC_READ
) {
1806 inarg
.in_size
= in_size
= iov_length(in_iov
, in_iovs
);
1807 inarg
.out_size
= out_size
= iov_length(out_iov
, out_iovs
);
1810 * Out data can be used either for actual out data or iovs,
1811 * make sure there always is at least one page.
1813 out_size
= max_t(size_t, out_size
, PAGE_SIZE
);
1814 max_pages
= DIV_ROUND_UP(max(in_size
, out_size
), PAGE_SIZE
);
1816 /* make sure there are enough buffer pages and init request with them */
1818 if (max_pages
> FUSE_MAX_PAGES_PER_REQ
)
1820 while (num_pages
< max_pages
) {
1821 pages
[num_pages
] = alloc_page(GFP_KERNEL
| __GFP_HIGHMEM
);
1822 if (!pages
[num_pages
])
1827 req
= fuse_get_req(fc
);
1833 memcpy(req
->pages
, pages
, sizeof(req
->pages
[0]) * num_pages
);
1834 req
->num_pages
= num_pages
;
1836 /* okay, let's send it to the client */
1837 req
->in
.h
.opcode
= FUSE_IOCTL
;
1838 req
->in
.h
.nodeid
= ff
->nodeid
;
1839 req
->in
.numargs
= 1;
1840 req
->in
.args
[0].size
= sizeof(inarg
);
1841 req
->in
.args
[0].value
= &inarg
;
1844 req
->in
.args
[1].size
= in_size
;
1845 req
->in
.argpages
= 1;
1847 err
= fuse_ioctl_copy_user(pages
, in_iov
, in_iovs
, in_size
,
1853 req
->out
.numargs
= 2;
1854 req
->out
.args
[0].size
= sizeof(outarg
);
1855 req
->out
.args
[0].value
= &outarg
;
1856 req
->out
.args
[1].size
= out_size
;
1857 req
->out
.argpages
= 1;
1858 req
->out
.argvar
= 1;
1860 fuse_request_send(fc
, req
);
1861 err
= req
->out
.h
.error
;
1862 transferred
= req
->out
.args
[1].size
;
1863 fuse_put_request(fc
, req
);
1868 /* did it ask for retry? */
1869 if (outarg
.flags
& FUSE_IOCTL_RETRY
) {
1872 /* no retry if in restricted mode */
1874 if (!(flags
& FUSE_IOCTL_UNRESTRICTED
))
1877 in_iovs
= outarg
.in_iovs
;
1878 out_iovs
= outarg
.out_iovs
;
1881 * Make sure things are in boundary, separate checks
1882 * are to protect against overflow.
1885 if (in_iovs
> FUSE_IOCTL_MAX_IOV
||
1886 out_iovs
> FUSE_IOCTL_MAX_IOV
||
1887 in_iovs
+ out_iovs
> FUSE_IOCTL_MAX_IOV
)
1890 vaddr
= kmap_atomic(pages
[0], KM_USER0
);
1891 err
= fuse_copy_ioctl_iovec(fc
, iov_page
, vaddr
,
1892 transferred
, in_iovs
+ out_iovs
,
1893 (flags
& FUSE_IOCTL_COMPAT
) != 0);
1894 kunmap_atomic(vaddr
, KM_USER0
);
1899 out_iov
= in_iov
+ in_iovs
;
1901 err
= fuse_verify_ioctl_iov(in_iov
, in_iovs
);
1905 err
= fuse_verify_ioctl_iov(out_iov
, out_iovs
);
1913 if (transferred
> inarg
.out_size
)
1916 err
= fuse_ioctl_copy_user(pages
, out_iov
, out_iovs
, transferred
, true);
1919 fuse_put_request(fc
, req
);
1920 free_page((unsigned long) iov_page
);
1922 __free_page(pages
[--num_pages
]);
1925 return err
? err
: outarg
.result
;
1927 EXPORT_SYMBOL_GPL(fuse_do_ioctl
);
1929 static long fuse_file_ioctl_common(struct file
*file
, unsigned int cmd
,
1930 unsigned long arg
, unsigned int flags
)
1932 struct inode
*inode
= file
->f_dentry
->d_inode
;
1933 struct fuse_conn
*fc
= get_fuse_conn(inode
);
1935 if (!fuse_allow_task(fc
, current
))
1938 if (is_bad_inode(inode
))
1941 return fuse_do_ioctl(file
, cmd
, arg
, flags
);
1944 static long fuse_file_ioctl(struct file
*file
, unsigned int cmd
,
1947 return fuse_file_ioctl_common(file
, cmd
, arg
, 0);
1950 static long fuse_file_compat_ioctl(struct file
*file
, unsigned int cmd
,
1953 return fuse_file_ioctl_common(file
, cmd
, arg
, FUSE_IOCTL_COMPAT
);
1957 * All files which have been polled are linked to RB tree
1958 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
1959 * find the matching one.
1961 static struct rb_node
**fuse_find_polled_node(struct fuse_conn
*fc
, u64 kh
,
1962 struct rb_node
**parent_out
)
1964 struct rb_node
**link
= &fc
->polled_files
.rb_node
;
1965 struct rb_node
*last
= NULL
;
1968 struct fuse_file
*ff
;
1971 ff
= rb_entry(last
, struct fuse_file
, polled_node
);
1974 link
= &last
->rb_left
;
1975 else if (kh
> ff
->kh
)
1976 link
= &last
->rb_right
;
1987 * The file is about to be polled. Make sure it's on the polled_files
1988 * RB tree. Note that files once added to the polled_files tree are
1989 * not removed before the file is released. This is because a file
1990 * polled once is likely to be polled again.
1992 static void fuse_register_polled_file(struct fuse_conn
*fc
,
1993 struct fuse_file
*ff
)
1995 spin_lock(&fc
->lock
);
1996 if (RB_EMPTY_NODE(&ff
->polled_node
)) {
1997 struct rb_node
**link
, *parent
;
1999 link
= fuse_find_polled_node(fc
, ff
->kh
, &parent
);
2001 rb_link_node(&ff
->polled_node
, parent
, link
);
2002 rb_insert_color(&ff
->polled_node
, &fc
->polled_files
);
2004 spin_unlock(&fc
->lock
);
2007 unsigned fuse_file_poll(struct file
*file
, poll_table
*wait
)
2009 struct fuse_file
*ff
= file
->private_data
;
2010 struct fuse_conn
*fc
= ff
->fc
;
2011 struct fuse_poll_in inarg
= { .fh
= ff
->fh
, .kh
= ff
->kh
};
2012 struct fuse_poll_out outarg
;
2013 struct fuse_req
*req
;
2017 return DEFAULT_POLLMASK
;
2019 poll_wait(file
, &ff
->poll_wait
, wait
);
2022 * Ask for notification iff there's someone waiting for it.
2023 * The client may ignore the flag and always notify.
2025 if (waitqueue_active(&ff
->poll_wait
)) {
2026 inarg
.flags
|= FUSE_POLL_SCHEDULE_NOTIFY
;
2027 fuse_register_polled_file(fc
, ff
);
2030 req
= fuse_get_req(fc
);
2034 req
->in
.h
.opcode
= FUSE_POLL
;
2035 req
->in
.h
.nodeid
= ff
->nodeid
;
2036 req
->in
.numargs
= 1;
2037 req
->in
.args
[0].size
= sizeof(inarg
);
2038 req
->in
.args
[0].value
= &inarg
;
2039 req
->out
.numargs
= 1;
2040 req
->out
.args
[0].size
= sizeof(outarg
);
2041 req
->out
.args
[0].value
= &outarg
;
2042 fuse_request_send(fc
, req
);
2043 err
= req
->out
.h
.error
;
2044 fuse_put_request(fc
, req
);
2047 return outarg
.revents
;
2048 if (err
== -ENOSYS
) {
2050 return DEFAULT_POLLMASK
;
2054 EXPORT_SYMBOL_GPL(fuse_file_poll
);
2057 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2058 * wakes up the poll waiters.
2060 int fuse_notify_poll_wakeup(struct fuse_conn
*fc
,
2061 struct fuse_notify_poll_wakeup_out
*outarg
)
2063 u64 kh
= outarg
->kh
;
2064 struct rb_node
**link
;
2066 spin_lock(&fc
->lock
);
2068 link
= fuse_find_polled_node(fc
, kh
, NULL
);
2070 struct fuse_file
*ff
;
2072 ff
= rb_entry(*link
, struct fuse_file
, polled_node
);
2073 wake_up_interruptible_sync(&ff
->poll_wait
);
2076 spin_unlock(&fc
->lock
);
2080 static const struct file_operations fuse_file_operations
= {
2081 .llseek
= fuse_file_llseek
,
2082 .read
= do_sync_read
,
2083 .aio_read
= fuse_file_aio_read
,
2084 .write
= do_sync_write
,
2085 .aio_write
= fuse_file_aio_write
,
2086 .mmap
= fuse_file_mmap
,
2088 .flush
= fuse_flush
,
2089 .release
= fuse_release
,
2090 .fsync
= fuse_fsync
,
2091 .lock
= fuse_file_lock
,
2092 .flock
= fuse_file_flock
,
2093 .splice_read
= generic_file_splice_read
,
2094 .unlocked_ioctl
= fuse_file_ioctl
,
2095 .compat_ioctl
= fuse_file_compat_ioctl
,
2096 .poll
= fuse_file_poll
,
2099 static const struct file_operations fuse_direct_io_file_operations
= {
2100 .llseek
= fuse_file_llseek
,
2101 .read
= fuse_direct_read
,
2102 .write
= fuse_direct_write
,
2103 .mmap
= fuse_direct_mmap
,
2105 .flush
= fuse_flush
,
2106 .release
= fuse_release
,
2107 .fsync
= fuse_fsync
,
2108 .lock
= fuse_file_lock
,
2109 .flock
= fuse_file_flock
,
2110 .unlocked_ioctl
= fuse_file_ioctl
,
2111 .compat_ioctl
= fuse_file_compat_ioctl
,
2112 .poll
= fuse_file_poll
,
2113 /* no splice_read */
2116 static const struct address_space_operations fuse_file_aops
= {
2117 .readpage
= fuse_readpage
,
2118 .writepage
= fuse_writepage
,
2119 .launder_page
= fuse_launder_page
,
2120 .readpages
= fuse_readpages
,
2121 .set_page_dirty
= __set_page_dirty_nobuffers
,
2125 void fuse_init_file_inode(struct inode
*inode
)
2127 inode
->i_fop
= &fuse_file_operations
;
2128 inode
->i_data
.a_ops
= &fuse_file_aops
;