1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/read_write.c
5 * Copyright (C) 1991, 1992 Linus Torvalds
8 #include <linux/slab.h>
9 #include <linux/stat.h>
10 #include <linux/sched/xacct.h>
11 #include <linux/fcntl.h>
12 #include <linux/file.h>
13 #include <linux/uio.h>
14 #include <linux/fsnotify.h>
15 #include <linux/security.h>
16 #include <linux/export.h>
17 #include <linux/syscalls.h>
18 #include <linux/pagemap.h>
19 #include <linux/splice.h>
20 #include <linux/compat.h>
21 #include <linux/mount.h>
25 #include <linux/uaccess.h>
26 #include <asm/unistd.h>
28 const struct file_operations generic_ro_fops
= {
29 .llseek
= generic_file_llseek
,
30 .read_iter
= generic_file_read_iter
,
31 .mmap
= generic_file_readonly_mmap
,
32 .splice_read
= generic_file_splice_read
,
35 EXPORT_SYMBOL(generic_ro_fops
);
37 static inline bool unsigned_offsets(struct file
*file
)
39 return file
->f_mode
& FMODE_UNSIGNED_OFFSET
;
43 * vfs_setpos - update the file offset for lseek
44 * @file: file structure in question
45 * @offset: file offset to seek to
46 * @maxsize: maximum file size
48 * This is a low-level filesystem helper for updating the file offset to
49 * the value specified by @offset if the given offset is valid and it is
50 * not equal to the current file offset.
52 * Return the specified offset on success and -EINVAL on invalid offset.
54 loff_t
vfs_setpos(struct file
*file
, loff_t offset
, loff_t maxsize
)
56 if (offset
< 0 && !unsigned_offsets(file
))
61 if (offset
!= file
->f_pos
) {
67 EXPORT_SYMBOL(vfs_setpos
);
70 * generic_file_llseek_size - generic llseek implementation for regular files
71 * @file: file structure to seek on
72 * @offset: file offset to seek to
73 * @whence: type of seek
74 * @size: max size of this file in file system
75 * @eof: offset used for SEEK_END position
77 * This is a variant of generic_file_llseek that allows passing in a custom
78 * maximum file size and a custom EOF position, for e.g. hashed directories
81 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
82 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
83 * read/writes behave like SEEK_SET against seeks.
86 generic_file_llseek_size(struct file
*file
, loff_t offset
, int whence
,
87 loff_t maxsize
, loff_t eof
)
95 * Here we special-case the lseek(fd, 0, SEEK_CUR)
96 * position-querying operation. Avoid rewriting the "same"
97 * f_pos value back to the file because a concurrent read(),
98 * write() or lseek() might have altered it
103 * f_lock protects against read/modify/write race with other
104 * SEEK_CURs. Note that parallel writes and reads behave
107 spin_lock(&file
->f_lock
);
108 offset
= vfs_setpos(file
, file
->f_pos
+ offset
, maxsize
);
109 spin_unlock(&file
->f_lock
);
113 * In the generic case the entire file is data, so as long as
114 * offset isn't at the end of the file then the offset is data.
116 if ((unsigned long long)offset
>= eof
)
121 * There is a virtual hole at the end of the file, so as long as
122 * offset isn't i_size or larger, return i_size.
124 if ((unsigned long long)offset
>= eof
)
130 return vfs_setpos(file
, offset
, maxsize
);
132 EXPORT_SYMBOL(generic_file_llseek_size
);
135 * generic_file_llseek - generic llseek implementation for regular files
136 * @file: file structure to seek on
137 * @offset: file offset to seek to
138 * @whence: type of seek
140 * This is a generic implemenation of ->llseek useable for all normal local
141 * filesystems. It just updates the file offset to the value specified by
142 * @offset and @whence.
144 loff_t
generic_file_llseek(struct file
*file
, loff_t offset
, int whence
)
146 struct inode
*inode
= file
->f_mapping
->host
;
148 return generic_file_llseek_size(file
, offset
, whence
,
149 inode
->i_sb
->s_maxbytes
,
152 EXPORT_SYMBOL(generic_file_llseek
);
155 * fixed_size_llseek - llseek implementation for fixed-sized devices
156 * @file: file structure to seek on
157 * @offset: file offset to seek to
158 * @whence: type of seek
159 * @size: size of the file
162 loff_t
fixed_size_llseek(struct file
*file
, loff_t offset
, int whence
, loff_t size
)
165 case SEEK_SET
: case SEEK_CUR
: case SEEK_END
:
166 return generic_file_llseek_size(file
, offset
, whence
,
172 EXPORT_SYMBOL(fixed_size_llseek
);
175 * no_seek_end_llseek - llseek implementation for fixed-sized devices
176 * @file: file structure to seek on
177 * @offset: file offset to seek to
178 * @whence: type of seek
181 loff_t
no_seek_end_llseek(struct file
*file
, loff_t offset
, int whence
)
184 case SEEK_SET
: case SEEK_CUR
:
185 return generic_file_llseek_size(file
, offset
, whence
,
191 EXPORT_SYMBOL(no_seek_end_llseek
);
194 * no_seek_end_llseek_size - llseek implementation for fixed-sized devices
195 * @file: file structure to seek on
196 * @offset: file offset to seek to
197 * @whence: type of seek
198 * @size: maximal offset allowed
201 loff_t
no_seek_end_llseek_size(struct file
*file
, loff_t offset
, int whence
, loff_t size
)
204 case SEEK_SET
: case SEEK_CUR
:
205 return generic_file_llseek_size(file
, offset
, whence
,
211 EXPORT_SYMBOL(no_seek_end_llseek_size
);
214 * noop_llseek - No Operation Performed llseek implementation
215 * @file: file structure to seek on
216 * @offset: file offset to seek to
217 * @whence: type of seek
219 * This is an implementation of ->llseek useable for the rare special case when
220 * userspace expects the seek to succeed but the (device) file is actually not
221 * able to perform the seek. In this case you use noop_llseek() instead of
222 * falling back to the default implementation of ->llseek.
224 loff_t
noop_llseek(struct file
*file
, loff_t offset
, int whence
)
228 EXPORT_SYMBOL(noop_llseek
);
230 loff_t
no_llseek(struct file
*file
, loff_t offset
, int whence
)
234 EXPORT_SYMBOL(no_llseek
);
236 loff_t
default_llseek(struct file
*file
, loff_t offset
, int whence
)
238 struct inode
*inode
= file_inode(file
);
244 offset
+= i_size_read(inode
);
248 retval
= file
->f_pos
;
251 offset
+= file
->f_pos
;
255 * In the generic case the entire file is data, so as
256 * long as offset isn't at the end of the file then the
259 if (offset
>= inode
->i_size
) {
266 * There is a virtual hole at the end of the file, so
267 * as long as offset isn't i_size or larger, return
270 if (offset
>= inode
->i_size
) {
274 offset
= inode
->i_size
;
278 if (offset
>= 0 || unsigned_offsets(file
)) {
279 if (offset
!= file
->f_pos
) {
280 file
->f_pos
= offset
;
289 EXPORT_SYMBOL(default_llseek
);
291 loff_t
vfs_llseek(struct file
*file
, loff_t offset
, int whence
)
293 loff_t (*fn
)(struct file
*, loff_t
, int);
296 if (file
->f_mode
& FMODE_LSEEK
) {
297 if (file
->f_op
->llseek
)
298 fn
= file
->f_op
->llseek
;
300 return fn(file
, offset
, whence
);
302 EXPORT_SYMBOL(vfs_llseek
);
304 SYSCALL_DEFINE3(lseek
, unsigned int, fd
, off_t
, offset
, unsigned int, whence
)
307 struct fd f
= fdget_pos(fd
);
312 if (whence
<= SEEK_MAX
) {
313 loff_t res
= vfs_llseek(f
.file
, offset
, whence
);
315 if (res
!= (loff_t
)retval
)
316 retval
= -EOVERFLOW
; /* LFS: should only happen on 32 bit platforms */
323 COMPAT_SYSCALL_DEFINE3(lseek
, unsigned int, fd
, compat_off_t
, offset
, unsigned int, whence
)
325 return sys_lseek(fd
, offset
, whence
);
329 #ifdef __ARCH_WANT_SYS_LLSEEK
330 SYSCALL_DEFINE5(llseek
, unsigned int, fd
, unsigned long, offset_high
,
331 unsigned long, offset_low
, loff_t __user
*, result
,
332 unsigned int, whence
)
335 struct fd f
= fdget_pos(fd
);
342 if (whence
> SEEK_MAX
)
345 offset
= vfs_llseek(f
.file
, ((loff_t
) offset_high
<< 32) | offset_low
,
348 retval
= (int)offset
;
351 if (!copy_to_user(result
, &offset
, sizeof(offset
)))
360 int rw_verify_area(int read_write
, struct file
*file
, const loff_t
*ppos
, size_t count
)
364 int retval
= -EINVAL
;
366 inode
= file_inode(file
);
367 if (unlikely((ssize_t
) count
< 0))
370 if (unlikely(pos
< 0)) {
371 if (!unsigned_offsets(file
))
373 if (count
>= -pos
) /* both values are in 0..LLONG_MAX */
375 } else if (unlikely((loff_t
) (pos
+ count
) < 0)) {
376 if (!unsigned_offsets(file
))
380 if (unlikely(inode
->i_flctx
&& mandatory_lock(inode
))) {
381 retval
= locks_mandatory_area(inode
, file
, pos
, pos
+ count
- 1,
382 read_write
== READ
? F_RDLCK
: F_WRLCK
);
386 return security_file_permission(file
,
387 read_write
== READ
? MAY_READ
: MAY_WRITE
);
390 static ssize_t
new_sync_read(struct file
*filp
, char __user
*buf
, size_t len
, loff_t
*ppos
)
392 struct iovec iov
= { .iov_base
= buf
, .iov_len
= len
};
394 struct iov_iter iter
;
397 init_sync_kiocb(&kiocb
, filp
);
398 kiocb
.ki_pos
= *ppos
;
399 iov_iter_init(&iter
, READ
, &iov
, 1, len
);
401 ret
= call_read_iter(filp
, &kiocb
, &iter
);
402 BUG_ON(ret
== -EIOCBQUEUED
);
403 *ppos
= kiocb
.ki_pos
;
407 ssize_t
__vfs_read(struct file
*file
, char __user
*buf
, size_t count
,
410 if (file
->f_op
->read
)
411 return file
->f_op
->read(file
, buf
, count
, pos
);
412 else if (file
->f_op
->read_iter
)
413 return new_sync_read(file
, buf
, count
, pos
);
418 ssize_t
kernel_read(struct file
*file
, void *buf
, size_t count
, loff_t
*pos
)
425 /* The cast to a user pointer is valid due to the set_fs() */
426 result
= vfs_read(file
, (void __user
*)buf
, count
, pos
);
430 EXPORT_SYMBOL(kernel_read
);
432 ssize_t
vfs_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*pos
)
436 if (!(file
->f_mode
& FMODE_READ
))
438 if (!(file
->f_mode
& FMODE_CAN_READ
))
440 if (unlikely(!access_ok(VERIFY_WRITE
, buf
, count
)))
443 ret
= rw_verify_area(READ
, file
, pos
, count
);
445 if (count
> MAX_RW_COUNT
)
446 count
= MAX_RW_COUNT
;
447 ret
= __vfs_read(file
, buf
, count
, pos
);
449 fsnotify_access(file
);
450 add_rchar(current
, ret
);
458 static ssize_t
new_sync_write(struct file
*filp
, const char __user
*buf
, size_t len
, loff_t
*ppos
)
460 struct iovec iov
= { .iov_base
= (void __user
*)buf
, .iov_len
= len
};
462 struct iov_iter iter
;
465 init_sync_kiocb(&kiocb
, filp
);
466 kiocb
.ki_pos
= *ppos
;
467 iov_iter_init(&iter
, WRITE
, &iov
, 1, len
);
469 ret
= call_write_iter(filp
, &kiocb
, &iter
);
470 BUG_ON(ret
== -EIOCBQUEUED
);
472 *ppos
= kiocb
.ki_pos
;
476 ssize_t
__vfs_write(struct file
*file
, const char __user
*p
, size_t count
,
479 if (file
->f_op
->write
)
480 return file
->f_op
->write(file
, p
, count
, pos
);
481 else if (file
->f_op
->write_iter
)
482 return new_sync_write(file
, p
, count
, pos
);
487 ssize_t
__kernel_write(struct file
*file
, const void *buf
, size_t count
, loff_t
*pos
)
490 const char __user
*p
;
493 if (!(file
->f_mode
& FMODE_CAN_WRITE
))
498 p
= (__force
const char __user
*)buf
;
499 if (count
> MAX_RW_COUNT
)
500 count
= MAX_RW_COUNT
;
501 ret
= __vfs_write(file
, p
, count
, pos
);
504 fsnotify_modify(file
);
505 add_wchar(current
, ret
);
510 EXPORT_SYMBOL(__kernel_write
);
512 ssize_t
kernel_write(struct file
*file
, const void *buf
, size_t count
,
520 /* The cast to a user pointer is valid due to the set_fs() */
521 res
= vfs_write(file
, (__force
const char __user
*)buf
, count
, pos
);
526 EXPORT_SYMBOL(kernel_write
);
528 ssize_t
vfs_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*pos
)
532 if (!(file
->f_mode
& FMODE_WRITE
))
534 if (!(file
->f_mode
& FMODE_CAN_WRITE
))
536 if (unlikely(!access_ok(VERIFY_READ
, buf
, count
)))
539 ret
= rw_verify_area(WRITE
, file
, pos
, count
);
541 if (count
> MAX_RW_COUNT
)
542 count
= MAX_RW_COUNT
;
543 file_start_write(file
);
544 ret
= __vfs_write(file
, buf
, count
, pos
);
546 fsnotify_modify(file
);
547 add_wchar(current
, ret
);
550 file_end_write(file
);
556 static inline loff_t
file_pos_read(struct file
*file
)
558 return file
->f_mode
& FMODE_STREAM
? 0 : file
->f_pos
;
561 static inline void file_pos_write(struct file
*file
, loff_t pos
)
563 if ((file
->f_mode
& FMODE_STREAM
) == 0)
567 SYSCALL_DEFINE3(read
, unsigned int, fd
, char __user
*, buf
, size_t, count
)
569 struct fd f
= fdget_pos(fd
);
570 ssize_t ret
= -EBADF
;
573 loff_t pos
= file_pos_read(f
.file
);
574 ret
= vfs_read(f
.file
, buf
, count
, &pos
);
576 file_pos_write(f
.file
, pos
);
582 SYSCALL_DEFINE3(write
, unsigned int, fd
, const char __user
*, buf
,
585 struct fd f
= fdget_pos(fd
);
586 ssize_t ret
= -EBADF
;
589 loff_t pos
= file_pos_read(f
.file
);
590 ret
= vfs_write(f
.file
, buf
, count
, &pos
);
592 file_pos_write(f
.file
, pos
);
599 SYSCALL_DEFINE4(pread64
, unsigned int, fd
, char __user
*, buf
,
600 size_t, count
, loff_t
, pos
)
603 ssize_t ret
= -EBADF
;
611 if (f
.file
->f_mode
& FMODE_PREAD
)
612 ret
= vfs_read(f
.file
, buf
, count
, &pos
);
619 SYSCALL_DEFINE4(pwrite64
, unsigned int, fd
, const char __user
*, buf
,
620 size_t, count
, loff_t
, pos
)
623 ssize_t ret
= -EBADF
;
631 if (f
.file
->f_mode
& FMODE_PWRITE
)
632 ret
= vfs_write(f
.file
, buf
, count
, &pos
);
640 * Reduce an iovec's length in-place. Return the resulting number of segments
642 unsigned long iov_shorten(struct iovec
*iov
, unsigned long nr_segs
, size_t to
)
644 unsigned long seg
= 0;
647 while (seg
< nr_segs
) {
649 if (len
+ iov
->iov_len
>= to
) {
650 iov
->iov_len
= to
- len
;
658 EXPORT_SYMBOL(iov_shorten
);
660 static ssize_t
do_iter_readv_writev(struct file
*filp
, struct iov_iter
*iter
,
661 loff_t
*ppos
, int type
, rwf_t flags
)
666 init_sync_kiocb(&kiocb
, filp
);
667 ret
= kiocb_set_rw_flags(&kiocb
, flags
);
670 kiocb
.ki_pos
= *ppos
;
673 ret
= call_read_iter(filp
, &kiocb
, iter
);
675 ret
= call_write_iter(filp
, &kiocb
, iter
);
676 BUG_ON(ret
== -EIOCBQUEUED
);
677 *ppos
= kiocb
.ki_pos
;
681 /* Do it by hand, with file-ops */
682 static ssize_t
do_loop_readv_writev(struct file
*filp
, struct iov_iter
*iter
,
683 loff_t
*ppos
, int type
, rwf_t flags
)
687 if (flags
& ~RWF_HIPRI
)
690 while (iov_iter_count(iter
)) {
691 struct iovec iovec
= iov_iter_iovec(iter
);
695 nr
= filp
->f_op
->read(filp
, iovec
.iov_base
,
696 iovec
.iov_len
, ppos
);
698 nr
= filp
->f_op
->write(filp
, iovec
.iov_base
,
699 iovec
.iov_len
, ppos
);
708 if (nr
!= iovec
.iov_len
)
710 iov_iter_advance(iter
, nr
);
716 /* A write operation does a read from user space and vice versa */
717 #define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
720 * rw_copy_check_uvector() - Copy an array of &struct iovec from userspace
721 * into the kernel and check that it is valid.
723 * @type: One of %CHECK_IOVEC_ONLY, %READ, or %WRITE.
724 * @uvector: Pointer to the userspace array.
725 * @nr_segs: Number of elements in userspace array.
726 * @fast_segs: Number of elements in @fast_pointer.
727 * @fast_pointer: Pointer to (usually small on-stack) kernel array.
728 * @ret_pointer: (output parameter) Pointer to a variable that will point to
729 * either @fast_pointer, a newly allocated kernel array, or NULL,
730 * depending on which array was used.
732 * This function copies an array of &struct iovec of @nr_segs from
733 * userspace into the kernel and checks that each element is valid (e.g.
734 * it does not point to a kernel address or cause overflow by being too
737 * As an optimization, the caller may provide a pointer to a small
738 * on-stack array in @fast_pointer, typically %UIO_FASTIOV elements long
739 * (the size of this array, or 0 if unused, should be given in @fast_segs).
741 * @ret_pointer will always point to the array that was used, so the
742 * caller must take care not to call kfree() on it e.g. in case the
743 * @fast_pointer array was used and it was allocated on the stack.
745 * Return: The total number of bytes covered by the iovec array on success
746 * or a negative error code on error.
748 ssize_t
rw_copy_check_uvector(int type
, const struct iovec __user
* uvector
,
749 unsigned long nr_segs
, unsigned long fast_segs
,
750 struct iovec
*fast_pointer
,
751 struct iovec
**ret_pointer
)
755 struct iovec
*iov
= fast_pointer
;
758 * SuS says "The readv() function *may* fail if the iovcnt argument
759 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
760 * traditionally returned zero for zero segments, so...
768 * First get the "struct iovec" from user memory and
769 * verify all the pointers
771 if (nr_segs
> UIO_MAXIOV
) {
775 if (nr_segs
> fast_segs
) {
776 iov
= kmalloc(nr_segs
*sizeof(struct iovec
), GFP_KERNEL
);
782 if (copy_from_user(iov
, uvector
, nr_segs
*sizeof(*uvector
))) {
788 * According to the Single Unix Specification we should return EINVAL
789 * if an element length is < 0 when cast to ssize_t or if the
790 * total length would overflow the ssize_t return value of the
793 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
797 for (seg
= 0; seg
< nr_segs
; seg
++) {
798 void __user
*buf
= iov
[seg
].iov_base
;
799 ssize_t len
= (ssize_t
)iov
[seg
].iov_len
;
801 /* see if we we're about to use an invalid len or if
802 * it's about to overflow ssize_t */
808 && unlikely(!access_ok(vrfy_dir(type
), buf
, len
))) {
812 if (len
> MAX_RW_COUNT
- ret
) {
813 len
= MAX_RW_COUNT
- ret
;
814 iov
[seg
].iov_len
= len
;
824 ssize_t
compat_rw_copy_check_uvector(int type
,
825 const struct compat_iovec __user
*uvector
, unsigned long nr_segs
,
826 unsigned long fast_segs
, struct iovec
*fast_pointer
,
827 struct iovec
**ret_pointer
)
829 compat_ssize_t tot_len
;
830 struct iovec
*iov
= *ret_pointer
= fast_pointer
;
835 * SuS says "The readv() function *may* fail if the iovcnt argument
836 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
837 * traditionally returned zero for zero segments, so...
843 if (nr_segs
> UIO_MAXIOV
)
845 if (nr_segs
> fast_segs
) {
847 iov
= kmalloc(nr_segs
*sizeof(struct iovec
), GFP_KERNEL
);
854 if (!access_ok(VERIFY_READ
, uvector
, nr_segs
*sizeof(*uvector
)))
858 * Single unix specification:
859 * We should -EINVAL if an element length is not >= 0 and fitting an
862 * In Linux, the total length is limited to MAX_RW_COUNT, there is
863 * no overflow possibility.
867 for (seg
= 0; seg
< nr_segs
; seg
++) {
871 if (__get_user(len
, &uvector
->iov_len
) ||
872 __get_user(buf
, &uvector
->iov_base
)) {
876 if (len
< 0) /* size_t not fitting in compat_ssize_t .. */
879 !access_ok(vrfy_dir(type
), compat_ptr(buf
), len
)) {
883 if (len
> MAX_RW_COUNT
- tot_len
)
884 len
= MAX_RW_COUNT
- tot_len
;
886 iov
->iov_base
= compat_ptr(buf
);
887 iov
->iov_len
= (compat_size_t
) len
;
898 static ssize_t
do_iter_read(struct file
*file
, struct iov_iter
*iter
,
899 loff_t
*pos
, rwf_t flags
)
904 if (!(file
->f_mode
& FMODE_READ
))
906 if (!(file
->f_mode
& FMODE_CAN_READ
))
909 tot_len
= iov_iter_count(iter
);
912 ret
= rw_verify_area(READ
, file
, pos
, tot_len
);
916 if (file
->f_op
->read_iter
)
917 ret
= do_iter_readv_writev(file
, iter
, pos
, READ
, flags
);
919 ret
= do_loop_readv_writev(file
, iter
, pos
, READ
, flags
);
922 fsnotify_access(file
);
926 ssize_t
vfs_iter_read(struct file
*file
, struct iov_iter
*iter
, loff_t
*ppos
,
929 if (!file
->f_op
->read_iter
)
931 return do_iter_read(file
, iter
, ppos
, flags
);
933 EXPORT_SYMBOL(vfs_iter_read
);
935 static ssize_t
do_iter_write(struct file
*file
, struct iov_iter
*iter
,
936 loff_t
*pos
, rwf_t flags
)
941 if (!(file
->f_mode
& FMODE_WRITE
))
943 if (!(file
->f_mode
& FMODE_CAN_WRITE
))
946 tot_len
= iov_iter_count(iter
);
949 ret
= rw_verify_area(WRITE
, file
, pos
, tot_len
);
953 if (file
->f_op
->write_iter
)
954 ret
= do_iter_readv_writev(file
, iter
, pos
, WRITE
, flags
);
956 ret
= do_loop_readv_writev(file
, iter
, pos
, WRITE
, flags
);
958 fsnotify_modify(file
);
962 ssize_t
vfs_iter_write(struct file
*file
, struct iov_iter
*iter
, loff_t
*ppos
,
965 if (!file
->f_op
->write_iter
)
967 return do_iter_write(file
, iter
, ppos
, flags
);
969 EXPORT_SYMBOL(vfs_iter_write
);
971 ssize_t
vfs_readv(struct file
*file
, const struct iovec __user
*vec
,
972 unsigned long vlen
, loff_t
*pos
, rwf_t flags
)
974 struct iovec iovstack
[UIO_FASTIOV
];
975 struct iovec
*iov
= iovstack
;
976 struct iov_iter iter
;
979 ret
= import_iovec(READ
, vec
, vlen
, ARRAY_SIZE(iovstack
), &iov
, &iter
);
981 ret
= do_iter_read(file
, &iter
, pos
, flags
);
988 static ssize_t
vfs_writev(struct file
*file
, const struct iovec __user
*vec
,
989 unsigned long vlen
, loff_t
*pos
, rwf_t flags
)
991 struct iovec iovstack
[UIO_FASTIOV
];
992 struct iovec
*iov
= iovstack
;
993 struct iov_iter iter
;
996 ret
= import_iovec(WRITE
, vec
, vlen
, ARRAY_SIZE(iovstack
), &iov
, &iter
);
998 file_start_write(file
);
999 ret
= do_iter_write(file
, &iter
, pos
, flags
);
1000 file_end_write(file
);
1006 static ssize_t
do_readv(unsigned long fd
, const struct iovec __user
*vec
,
1007 unsigned long vlen
, rwf_t flags
)
1009 struct fd f
= fdget_pos(fd
);
1010 ssize_t ret
= -EBADF
;
1013 loff_t pos
= file_pos_read(f
.file
);
1014 ret
= vfs_readv(f
.file
, vec
, vlen
, &pos
, flags
);
1016 file_pos_write(f
.file
, pos
);
1021 add_rchar(current
, ret
);
1026 static ssize_t
do_writev(unsigned long fd
, const struct iovec __user
*vec
,
1027 unsigned long vlen
, rwf_t flags
)
1029 struct fd f
= fdget_pos(fd
);
1030 ssize_t ret
= -EBADF
;
1033 loff_t pos
= file_pos_read(f
.file
);
1034 ret
= vfs_writev(f
.file
, vec
, vlen
, &pos
, flags
);
1036 file_pos_write(f
.file
, pos
);
1041 add_wchar(current
, ret
);
1046 static inline loff_t
pos_from_hilo(unsigned long high
, unsigned long low
)
1048 #define HALF_LONG_BITS (BITS_PER_LONG / 2)
1049 return (((loff_t
)high
<< HALF_LONG_BITS
) << HALF_LONG_BITS
) | low
;
1052 static ssize_t
do_preadv(unsigned long fd
, const struct iovec __user
*vec
,
1053 unsigned long vlen
, loff_t pos
, rwf_t flags
)
1056 ssize_t ret
= -EBADF
;
1064 if (f
.file
->f_mode
& FMODE_PREAD
)
1065 ret
= vfs_readv(f
.file
, vec
, vlen
, &pos
, flags
);
1070 add_rchar(current
, ret
);
1075 static ssize_t
do_pwritev(unsigned long fd
, const struct iovec __user
*vec
,
1076 unsigned long vlen
, loff_t pos
, rwf_t flags
)
1079 ssize_t ret
= -EBADF
;
1087 if (f
.file
->f_mode
& FMODE_PWRITE
)
1088 ret
= vfs_writev(f
.file
, vec
, vlen
, &pos
, flags
);
1093 add_wchar(current
, ret
);
1098 SYSCALL_DEFINE3(readv
, unsigned long, fd
, const struct iovec __user
*, vec
,
1099 unsigned long, vlen
)
1101 return do_readv(fd
, vec
, vlen
, 0);
1104 SYSCALL_DEFINE3(writev
, unsigned long, fd
, const struct iovec __user
*, vec
,
1105 unsigned long, vlen
)
1107 return do_writev(fd
, vec
, vlen
, 0);
1110 SYSCALL_DEFINE5(preadv
, unsigned long, fd
, const struct iovec __user
*, vec
,
1111 unsigned long, vlen
, unsigned long, pos_l
, unsigned long, pos_h
)
1113 loff_t pos
= pos_from_hilo(pos_h
, pos_l
);
1115 return do_preadv(fd
, vec
, vlen
, pos
, 0);
1118 SYSCALL_DEFINE6(preadv2
, unsigned long, fd
, const struct iovec __user
*, vec
,
1119 unsigned long, vlen
, unsigned long, pos_l
, unsigned long, pos_h
,
1122 loff_t pos
= pos_from_hilo(pos_h
, pos_l
);
1125 return do_readv(fd
, vec
, vlen
, flags
);
1127 return do_preadv(fd
, vec
, vlen
, pos
, flags
);
1130 SYSCALL_DEFINE5(pwritev
, unsigned long, fd
, const struct iovec __user
*, vec
,
1131 unsigned long, vlen
, unsigned long, pos_l
, unsigned long, pos_h
)
1133 loff_t pos
= pos_from_hilo(pos_h
, pos_l
);
1135 return do_pwritev(fd
, vec
, vlen
, pos
, 0);
1138 SYSCALL_DEFINE6(pwritev2
, unsigned long, fd
, const struct iovec __user
*, vec
,
1139 unsigned long, vlen
, unsigned long, pos_l
, unsigned long, pos_h
,
1142 loff_t pos
= pos_from_hilo(pos_h
, pos_l
);
1145 return do_writev(fd
, vec
, vlen
, flags
);
1147 return do_pwritev(fd
, vec
, vlen
, pos
, flags
);
1150 #ifdef CONFIG_COMPAT
1151 static size_t compat_readv(struct file
*file
,
1152 const struct compat_iovec __user
*vec
,
1153 unsigned long vlen
, loff_t
*pos
, rwf_t flags
)
1155 struct iovec iovstack
[UIO_FASTIOV
];
1156 struct iovec
*iov
= iovstack
;
1157 struct iov_iter iter
;
1160 ret
= compat_import_iovec(READ
, vec
, vlen
, UIO_FASTIOV
, &iov
, &iter
);
1162 ret
= do_iter_read(file
, &iter
, pos
, flags
);
1166 add_rchar(current
, ret
);
1171 static size_t do_compat_readv(compat_ulong_t fd
,
1172 const struct compat_iovec __user
*vec
,
1173 compat_ulong_t vlen
, rwf_t flags
)
1175 struct fd f
= fdget_pos(fd
);
1181 pos
= f
.file
->f_pos
;
1182 ret
= compat_readv(f
.file
, vec
, vlen
, &pos
, flags
);
1184 f
.file
->f_pos
= pos
;
1190 COMPAT_SYSCALL_DEFINE3(readv
, compat_ulong_t
, fd
,
1191 const struct compat_iovec __user
*,vec
,
1192 compat_ulong_t
, vlen
)
1194 return do_compat_readv(fd
, vec
, vlen
, 0);
1197 static long do_compat_preadv64(unsigned long fd
,
1198 const struct compat_iovec __user
*vec
,
1199 unsigned long vlen
, loff_t pos
, rwf_t flags
)
1210 if (f
.file
->f_mode
& FMODE_PREAD
)
1211 ret
= compat_readv(f
.file
, vec
, vlen
, &pos
, flags
);
1216 #ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1217 COMPAT_SYSCALL_DEFINE4(preadv64
, unsigned long, fd
,
1218 const struct compat_iovec __user
*,vec
,
1219 unsigned long, vlen
, loff_t
, pos
)
1221 return do_compat_preadv64(fd
, vec
, vlen
, pos
, 0);
1225 COMPAT_SYSCALL_DEFINE5(preadv
, compat_ulong_t
, fd
,
1226 const struct compat_iovec __user
*,vec
,
1227 compat_ulong_t
, vlen
, u32
, pos_low
, u32
, pos_high
)
1229 loff_t pos
= ((loff_t
)pos_high
<< 32) | pos_low
;
1231 return do_compat_preadv64(fd
, vec
, vlen
, pos
, 0);
1234 #ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
1235 COMPAT_SYSCALL_DEFINE5(preadv64v2
, unsigned long, fd
,
1236 const struct compat_iovec __user
*,vec
,
1237 unsigned long, vlen
, loff_t
, pos
, rwf_t
, flags
)
1240 return do_compat_readv(fd
, vec
, vlen
, flags
);
1242 return do_compat_preadv64(fd
, vec
, vlen
, pos
, flags
);
1246 COMPAT_SYSCALL_DEFINE6(preadv2
, compat_ulong_t
, fd
,
1247 const struct compat_iovec __user
*,vec
,
1248 compat_ulong_t
, vlen
, u32
, pos_low
, u32
, pos_high
,
1251 loff_t pos
= ((loff_t
)pos_high
<< 32) | pos_low
;
1254 return do_compat_readv(fd
, vec
, vlen
, flags
);
1256 return do_compat_preadv64(fd
, vec
, vlen
, pos
, flags
);
1259 static size_t compat_writev(struct file
*file
,
1260 const struct compat_iovec __user
*vec
,
1261 unsigned long vlen
, loff_t
*pos
, rwf_t flags
)
1263 struct iovec iovstack
[UIO_FASTIOV
];
1264 struct iovec
*iov
= iovstack
;
1265 struct iov_iter iter
;
1268 ret
= compat_import_iovec(WRITE
, vec
, vlen
, UIO_FASTIOV
, &iov
, &iter
);
1270 file_start_write(file
);
1271 ret
= do_iter_write(file
, &iter
, pos
, flags
);
1272 file_end_write(file
);
1276 add_wchar(current
, ret
);
1281 static size_t do_compat_writev(compat_ulong_t fd
,
1282 const struct compat_iovec __user
* vec
,
1283 compat_ulong_t vlen
, rwf_t flags
)
1285 struct fd f
= fdget_pos(fd
);
1291 pos
= f
.file
->f_pos
;
1292 ret
= compat_writev(f
.file
, vec
, vlen
, &pos
, flags
);
1294 f
.file
->f_pos
= pos
;
1299 COMPAT_SYSCALL_DEFINE3(writev
, compat_ulong_t
, fd
,
1300 const struct compat_iovec __user
*, vec
,
1301 compat_ulong_t
, vlen
)
1303 return do_compat_writev(fd
, vec
, vlen
, 0);
1306 static long do_compat_pwritev64(unsigned long fd
,
1307 const struct compat_iovec __user
*vec
,
1308 unsigned long vlen
, loff_t pos
, rwf_t flags
)
1319 if (f
.file
->f_mode
& FMODE_PWRITE
)
1320 ret
= compat_writev(f
.file
, vec
, vlen
, &pos
, flags
);
1325 #ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1326 COMPAT_SYSCALL_DEFINE4(pwritev64
, unsigned long, fd
,
1327 const struct compat_iovec __user
*,vec
,
1328 unsigned long, vlen
, loff_t
, pos
)
1330 return do_compat_pwritev64(fd
, vec
, vlen
, pos
, 0);
1334 COMPAT_SYSCALL_DEFINE5(pwritev
, compat_ulong_t
, fd
,
1335 const struct compat_iovec __user
*,vec
,
1336 compat_ulong_t
, vlen
, u32
, pos_low
, u32
, pos_high
)
1338 loff_t pos
= ((loff_t
)pos_high
<< 32) | pos_low
;
1340 return do_compat_pwritev64(fd
, vec
, vlen
, pos
, 0);
1343 #ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
1344 COMPAT_SYSCALL_DEFINE5(pwritev64v2
, unsigned long, fd
,
1345 const struct compat_iovec __user
*,vec
,
1346 unsigned long, vlen
, loff_t
, pos
, rwf_t
, flags
)
1349 return do_compat_writev(fd
, vec
, vlen
, flags
);
1351 return do_compat_pwritev64(fd
, vec
, vlen
, pos
, flags
);
1355 COMPAT_SYSCALL_DEFINE6(pwritev2
, compat_ulong_t
, fd
,
1356 const struct compat_iovec __user
*,vec
,
1357 compat_ulong_t
, vlen
, u32
, pos_low
, u32
, pos_high
, rwf_t
, flags
)
1359 loff_t pos
= ((loff_t
)pos_high
<< 32) | pos_low
;
1362 return do_compat_writev(fd
, vec
, vlen
, flags
);
1364 return do_compat_pwritev64(fd
, vec
, vlen
, pos
, flags
);
1369 static ssize_t
do_sendfile(int out_fd
, int in_fd
, loff_t
*ppos
,
1370 size_t count
, loff_t max
)
1373 struct inode
*in_inode
, *out_inode
;
1380 * Get input file, and verify that it is ok..
1386 if (!(in
.file
->f_mode
& FMODE_READ
))
1390 pos
= in
.file
->f_pos
;
1393 if (!(in
.file
->f_mode
& FMODE_PREAD
))
1396 retval
= rw_verify_area(READ
, in
.file
, &pos
, count
);
1399 if (count
> MAX_RW_COUNT
)
1400 count
= MAX_RW_COUNT
;
1403 * Get output file, and verify that it is ok..
1406 out
= fdget(out_fd
);
1409 if (!(out
.file
->f_mode
& FMODE_WRITE
))
1412 in_inode
= file_inode(in
.file
);
1413 out_inode
= file_inode(out
.file
);
1414 out_pos
= out
.file
->f_pos
;
1415 retval
= rw_verify_area(WRITE
, out
.file
, &out_pos
, count
);
1420 max
= min(in_inode
->i_sb
->s_maxbytes
, out_inode
->i_sb
->s_maxbytes
);
1422 if (unlikely(pos
+ count
> max
)) {
1423 retval
= -EOVERFLOW
;
1432 * We need to debate whether we can enable this or not. The
1433 * man page documents EAGAIN return for the output at least,
1434 * and the application is arguably buggy if it doesn't expect
1435 * EAGAIN on a non-blocking file descriptor.
1437 if (in
.file
->f_flags
& O_NONBLOCK
)
1438 fl
= SPLICE_F_NONBLOCK
;
1440 file_start_write(out
.file
);
1441 retval
= do_splice_direct(in
.file
, &pos
, out
.file
, &out_pos
, count
, fl
);
1442 file_end_write(out
.file
);
1445 add_rchar(current
, retval
);
1446 add_wchar(current
, retval
);
1447 fsnotify_access(in
.file
);
1448 fsnotify_modify(out
.file
);
1449 out
.file
->f_pos
= out_pos
;
1453 in
.file
->f_pos
= pos
;
1459 retval
= -EOVERFLOW
;
1469 SYSCALL_DEFINE4(sendfile
, int, out_fd
, int, in_fd
, off_t __user
*, offset
, size_t, count
)
1476 if (unlikely(get_user(off
, offset
)))
1479 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, MAX_NON_LFS
);
1480 if (unlikely(put_user(pos
, offset
)))
1485 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1488 SYSCALL_DEFINE4(sendfile64
, int, out_fd
, int, in_fd
, loff_t __user
*, offset
, size_t, count
)
1494 if (unlikely(copy_from_user(&pos
, offset
, sizeof(loff_t
))))
1496 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, 0);
1497 if (unlikely(put_user(pos
, offset
)))
1502 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1505 #ifdef CONFIG_COMPAT
1506 COMPAT_SYSCALL_DEFINE4(sendfile
, int, out_fd
, int, in_fd
,
1507 compat_off_t __user
*, offset
, compat_size_t
, count
)
1514 if (unlikely(get_user(off
, offset
)))
1517 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, MAX_NON_LFS
);
1518 if (unlikely(put_user(pos
, offset
)))
1523 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1526 COMPAT_SYSCALL_DEFINE4(sendfile64
, int, out_fd
, int, in_fd
,
1527 compat_loff_t __user
*, offset
, compat_size_t
, count
)
1533 if (unlikely(copy_from_user(&pos
, offset
, sizeof(loff_t
))))
1535 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, 0);
1536 if (unlikely(put_user(pos
, offset
)))
1541 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1546 * copy_file_range() differs from regular file read and write in that it
1547 * specifically allows return partial success. When it does so is up to
1548 * the copy_file_range method.
1550 ssize_t
vfs_copy_file_range(struct file
*file_in
, loff_t pos_in
,
1551 struct file
*file_out
, loff_t pos_out
,
1552 size_t len
, unsigned int flags
)
1554 struct inode
*inode_in
= file_inode(file_in
);
1555 struct inode
*inode_out
= file_inode(file_out
);
1561 if (S_ISDIR(inode_in
->i_mode
) || S_ISDIR(inode_out
->i_mode
))
1563 if (!S_ISREG(inode_in
->i_mode
) || !S_ISREG(inode_out
->i_mode
))
1566 ret
= rw_verify_area(READ
, file_in
, &pos_in
, len
);
1570 ret
= rw_verify_area(WRITE
, file_out
, &pos_out
, len
);
1574 if (!(file_in
->f_mode
& FMODE_READ
) ||
1575 !(file_out
->f_mode
& FMODE_WRITE
) ||
1576 (file_out
->f_flags
& O_APPEND
))
1579 /* this could be relaxed once a method supports cross-fs copies */
1580 if (inode_in
->i_sb
!= inode_out
->i_sb
)
1586 file_start_write(file_out
);
1589 * Try cloning first, this is supported by more file systems, and
1590 * more efficient if both clone and copy are supported (e.g. NFS).
1592 if (file_in
->f_op
->clone_file_range
) {
1593 ret
= file_in
->f_op
->clone_file_range(file_in
, pos_in
,
1594 file_out
, pos_out
, len
);
1601 if (file_out
->f_op
->copy_file_range
) {
1602 ret
= file_out
->f_op
->copy_file_range(file_in
, pos_in
, file_out
,
1603 pos_out
, len
, flags
);
1604 if (ret
!= -EOPNOTSUPP
)
1608 ret
= do_splice_direct(file_in
, &pos_in
, file_out
, &pos_out
,
1609 len
> MAX_RW_COUNT
? MAX_RW_COUNT
: len
, 0);
1613 fsnotify_access(file_in
);
1614 add_rchar(current
, ret
);
1615 fsnotify_modify(file_out
);
1616 add_wchar(current
, ret
);
1622 file_end_write(file_out
);
1626 EXPORT_SYMBOL(vfs_copy_file_range
);
1628 SYSCALL_DEFINE6(copy_file_range
, int, fd_in
, loff_t __user
*, off_in
,
1629 int, fd_out
, loff_t __user
*, off_out
,
1630 size_t, len
, unsigned int, flags
)
1636 ssize_t ret
= -EBADF
;
1638 f_in
= fdget(fd_in
);
1642 f_out
= fdget(fd_out
);
1648 if (copy_from_user(&pos_in
, off_in
, sizeof(loff_t
)))
1651 pos_in
= f_in
.file
->f_pos
;
1655 if (copy_from_user(&pos_out
, off_out
, sizeof(loff_t
)))
1658 pos_out
= f_out
.file
->f_pos
;
1661 ret
= vfs_copy_file_range(f_in
.file
, pos_in
, f_out
.file
, pos_out
, len
,
1668 if (copy_to_user(off_in
, &pos_in
, sizeof(loff_t
)))
1671 f_in
.file
->f_pos
= pos_in
;
1675 if (copy_to_user(off_out
, &pos_out
, sizeof(loff_t
)))
1678 f_out
.file
->f_pos
= pos_out
;
1690 static int clone_verify_area(struct file
*file
, loff_t pos
, u64 len
, bool write
)
1692 struct inode
*inode
= file_inode(file
);
1694 if (unlikely(pos
< 0))
1697 if (unlikely((loff_t
) (pos
+ len
) < 0))
1700 if (unlikely(inode
->i_flctx
&& mandatory_lock(inode
))) {
1701 loff_t end
= len
? pos
+ len
- 1 : OFFSET_MAX
;
1704 retval
= locks_mandatory_area(inode
, file
, pos
, end
,
1705 write
? F_WRLCK
: F_RDLCK
);
1710 return security_file_permission(file
, write
? MAY_WRITE
: MAY_READ
);
1713 * Ensure that we don't remap a partial EOF block in the middle of something
1714 * else. Assume that the offsets have already been checked for block
1717 * For deduplication we always scale down to the previous block because we
1718 * can't meaningfully compare post-EOF contents.
1720 * For clone we only link a partial EOF block above the destination file's EOF.
1722 static int generic_remap_check_len(struct inode
*inode_in
,
1723 struct inode
*inode_out
,
1728 u64 blkmask
= i_blocksize(inode_in
) - 1;
1730 if ((*len
& blkmask
) == 0)
1735 else if (pos_out
+ *len
< i_size_read(inode_out
))
1742 * Check that the two inodes are eligible for cloning, the ranges make
1743 * sense, and then flush all dirty data. Caller must ensure that the
1744 * inodes have been locked against any other modifications.
1746 * Returns: 0 for "nothing to clone", 1 for "something to clone", or
1747 * the usual negative error code.
1749 int vfs_clone_file_prep_inodes(struct inode
*inode_in
, loff_t pos_in
,
1750 struct inode
*inode_out
, loff_t pos_out
,
1751 u64
*len
, bool is_dedupe
)
1753 loff_t bs
= inode_out
->i_sb
->s_blocksize
;
1756 bool same_inode
= (inode_in
== inode_out
);
1759 /* Don't touch certain kinds of inodes */
1760 if (IS_IMMUTABLE(inode_out
))
1763 if (IS_SWAPFILE(inode_in
) || IS_SWAPFILE(inode_out
))
1766 /* Don't reflink dirs, pipes, sockets... */
1767 if (S_ISDIR(inode_in
->i_mode
) || S_ISDIR(inode_out
->i_mode
))
1769 if (!S_ISREG(inode_in
->i_mode
) || !S_ISREG(inode_out
->i_mode
))
1772 /* Are we going all the way to the end? */
1773 isize
= i_size_read(inode_in
);
1777 /* Zero length dedupe exits immediately; reflink goes to EOF. */
1779 if (is_dedupe
|| pos_in
== isize
)
1783 *len
= isize
- pos_in
;
1786 /* Ensure offsets don't wrap and the input is inside i_size */
1787 if (pos_in
+ *len
< pos_in
|| pos_out
+ *len
< pos_out
||
1788 pos_in
+ *len
> isize
)
1791 /* Don't allow dedupe past EOF in the dest file */
1795 disize
= i_size_read(inode_out
);
1796 if (pos_out
>= disize
|| pos_out
+ *len
> disize
)
1800 /* If we're linking to EOF, continue to the block boundary. */
1801 if (pos_in
+ *len
== isize
)
1802 blen
= ALIGN(isize
, bs
) - pos_in
;
1806 /* Only reflink if we're aligned to block boundaries */
1807 if (!IS_ALIGNED(pos_in
, bs
) || !IS_ALIGNED(pos_in
+ blen
, bs
) ||
1808 !IS_ALIGNED(pos_out
, bs
) || !IS_ALIGNED(pos_out
+ blen
, bs
))
1811 /* Don't allow overlapped reflink within the same file */
1813 if (pos_out
+ blen
> pos_in
&& pos_out
< pos_in
+ blen
)
1817 /* Wait for the completion of any pending IOs on both files */
1818 inode_dio_wait(inode_in
);
1820 inode_dio_wait(inode_out
);
1822 ret
= filemap_write_and_wait_range(inode_in
->i_mapping
,
1823 pos_in
, pos_in
+ *len
- 1);
1827 ret
= filemap_write_and_wait_range(inode_out
->i_mapping
,
1828 pos_out
, pos_out
+ *len
- 1);
1833 * Check that the extents are the same.
1836 bool is_same
= false;
1838 ret
= vfs_dedupe_file_range_compare(inode_in
, pos_in
,
1839 inode_out
, pos_out
, *len
, &is_same
);
1846 ret
= generic_remap_check_len(inode_in
, inode_out
, pos_out
, len
,
1853 EXPORT_SYMBOL(vfs_clone_file_prep_inodes
);
1855 int do_clone_file_range(struct file
*file_in
, loff_t pos_in
,
1856 struct file
*file_out
, loff_t pos_out
, u64 len
)
1858 struct inode
*inode_in
= file_inode(file_in
);
1859 struct inode
*inode_out
= file_inode(file_out
);
1862 if (S_ISDIR(inode_in
->i_mode
) || S_ISDIR(inode_out
->i_mode
))
1864 if (!S_ISREG(inode_in
->i_mode
) || !S_ISREG(inode_out
->i_mode
))
1868 * FICLONE/FICLONERANGE ioctls enforce that src and dest files are on
1869 * the same mount. Practically, they only need to be on the same file
1872 if (inode_in
->i_sb
!= inode_out
->i_sb
)
1875 if (!(file_in
->f_mode
& FMODE_READ
) ||
1876 !(file_out
->f_mode
& FMODE_WRITE
) ||
1877 (file_out
->f_flags
& O_APPEND
))
1880 if (!file_in
->f_op
->clone_file_range
)
1883 ret
= clone_verify_area(file_in
, pos_in
, len
, false);
1887 ret
= clone_verify_area(file_out
, pos_out
, len
, true);
1891 if (pos_in
+ len
> i_size_read(inode_in
))
1894 ret
= file_in
->f_op
->clone_file_range(file_in
, pos_in
,
1895 file_out
, pos_out
, len
);
1897 fsnotify_access(file_in
);
1898 fsnotify_modify(file_out
);
1903 EXPORT_SYMBOL(do_clone_file_range
);
1905 int vfs_clone_file_range(struct file
*file_in
, loff_t pos_in
,
1906 struct file
*file_out
, loff_t pos_out
, u64 len
)
1910 file_start_write(file_out
);
1911 ret
= do_clone_file_range(file_in
, pos_in
, file_out
, pos_out
, len
);
1912 file_end_write(file_out
);
1916 EXPORT_SYMBOL(vfs_clone_file_range
);
1918 /* Read a page's worth of file data into the page cache. */
1919 static struct page
*vfs_dedupe_get_page(struct inode
*inode
, loff_t offset
)
1921 struct address_space
*mapping
;
1925 n
= offset
>> PAGE_SHIFT
;
1926 mapping
= inode
->i_mapping
;
1927 page
= read_mapping_page(mapping
, n
, NULL
);
1930 if (!PageUptodate(page
)) {
1932 return ERR_PTR(-EIO
);
1938 * Lock two pages, ensuring that we lock in offset order if the pages are from
1941 static void vfs_lock_two_pages(struct page
*page1
, struct page
*page2
)
1943 /* Always lock in order of increasing index. */
1944 if (page1
->index
> page2
->index
)
1952 /* Unlock two pages, being careful not to unlock the same page twice. */
1953 static void vfs_unlock_two_pages(struct page
*page1
, struct page
*page2
)
1961 * Compare extents of two files to see if they are the same.
1962 * Caller must have locked both inodes to prevent write races.
1964 int vfs_dedupe_file_range_compare(struct inode
*src
, loff_t srcoff
,
1965 struct inode
*dest
, loff_t destoff
,
1966 loff_t len
, bool *is_same
)
1972 struct page
*src_page
;
1973 struct page
*dest_page
;
1981 src_poff
= srcoff
& (PAGE_SIZE
- 1);
1982 dest_poff
= destoff
& (PAGE_SIZE
- 1);
1983 cmp_len
= min(PAGE_SIZE
- src_poff
,
1984 PAGE_SIZE
- dest_poff
);
1985 cmp_len
= min(cmp_len
, len
);
1989 src_page
= vfs_dedupe_get_page(src
, srcoff
);
1990 if (IS_ERR(src_page
)) {
1991 error
= PTR_ERR(src_page
);
1994 dest_page
= vfs_dedupe_get_page(dest
, destoff
);
1995 if (IS_ERR(dest_page
)) {
1996 error
= PTR_ERR(dest_page
);
2001 vfs_lock_two_pages(src_page
, dest_page
);
2004 * Now that we've locked both pages, make sure they're still
2005 * mapped to the file data we're interested in. If not,
2006 * someone is invalidating pages on us and we lose.
2008 if (!PageUptodate(src_page
) || !PageUptodate(dest_page
) ||
2009 src_page
->mapping
!= src
->i_mapping
||
2010 dest_page
->mapping
!= dest
->i_mapping
) {
2015 src_addr
= kmap_atomic(src_page
);
2016 dest_addr
= kmap_atomic(dest_page
);
2018 flush_dcache_page(src_page
);
2019 flush_dcache_page(dest_page
);
2021 if (memcmp(src_addr
+ src_poff
, dest_addr
+ dest_poff
, cmp_len
))
2024 kunmap_atomic(dest_addr
);
2025 kunmap_atomic(src_addr
);
2027 vfs_unlock_two_pages(src_page
, dest_page
);
2028 put_page(dest_page
);
2045 EXPORT_SYMBOL(vfs_dedupe_file_range_compare
);
2047 int vfs_dedupe_file_range(struct file
*file
, struct file_dedupe_range
*same
)
2049 struct file_dedupe_range_info
*info
;
2050 struct inode
*src
= file_inode(file
);
2055 bool is_admin
= capable(CAP_SYS_ADMIN
);
2056 u16 count
= same
->dest_count
;
2057 struct file
*dst_file
;
2061 if (!(file
->f_mode
& FMODE_READ
))
2064 if (same
->reserved1
|| same
->reserved2
)
2067 off
= same
->src_offset
;
2068 len
= same
->src_length
;
2071 if (S_ISDIR(src
->i_mode
))
2075 if (!S_ISREG(src
->i_mode
))
2078 ret
= clone_verify_area(file
, off
, len
, false);
2083 if (off
+ len
> i_size_read(src
))
2086 /* pre-format output fields to sane values */
2087 for (i
= 0; i
< count
; i
++) {
2088 same
->info
[i
].bytes_deduped
= 0ULL;
2089 same
->info
[i
].status
= FILE_DEDUPE_RANGE_SAME
;
2092 for (i
= 0, info
= same
->info
; i
< count
; i
++, info
++) {
2094 struct fd dst_fd
= fdget(info
->dest_fd
);
2096 dst_file
= dst_fd
.file
;
2098 info
->status
= -EBADF
;
2101 dst
= file_inode(dst_file
);
2103 ret
= mnt_want_write_file(dst_file
);
2109 dst_off
= info
->dest_offset
;
2110 ret
= clone_verify_area(dst_file
, dst_off
, len
, true);
2117 if (info
->reserved
) {
2118 info
->status
= -EINVAL
;
2119 } else if (!(is_admin
|| (dst_file
->f_mode
& FMODE_WRITE
))) {
2120 info
->status
= -EINVAL
;
2121 } else if (file
->f_path
.mnt
!= dst_file
->f_path
.mnt
) {
2122 info
->status
= -EXDEV
;
2123 } else if (S_ISDIR(dst
->i_mode
)) {
2124 info
->status
= -EISDIR
;
2125 } else if (dst_file
->f_op
->dedupe_file_range
== NULL
) {
2126 info
->status
= -EINVAL
;
2128 deduped
= dst_file
->f_op
->dedupe_file_range(file
, off
,
2131 if (deduped
== -EBADE
)
2132 info
->status
= FILE_DEDUPE_RANGE_DIFFERS
;
2133 else if (deduped
< 0)
2134 info
->status
= deduped
;
2136 info
->bytes_deduped
+= deduped
;
2140 mnt_drop_write_file(dst_file
);
2144 if (fatal_signal_pending(current
))
2151 EXPORT_SYMBOL(vfs_dedupe_file_range
);