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
)
561 static inline void file_pos_write(struct file
*file
, loff_t pos
)
566 SYSCALL_DEFINE3(read
, unsigned int, fd
, char __user
*, buf
, size_t, count
)
568 struct fd f
= fdget_pos(fd
);
569 ssize_t ret
= -EBADF
;
572 loff_t pos
= file_pos_read(f
.file
);
573 ret
= vfs_read(f
.file
, buf
, count
, &pos
);
575 file_pos_write(f
.file
, pos
);
581 SYSCALL_DEFINE3(write
, unsigned int, fd
, const char __user
*, buf
,
584 struct fd f
= fdget_pos(fd
);
585 ssize_t ret
= -EBADF
;
588 loff_t pos
= file_pos_read(f
.file
);
589 ret
= vfs_write(f
.file
, buf
, count
, &pos
);
591 file_pos_write(f
.file
, pos
);
598 SYSCALL_DEFINE4(pread64
, unsigned int, fd
, char __user
*, buf
,
599 size_t, count
, loff_t
, pos
)
602 ssize_t ret
= -EBADF
;
610 if (f
.file
->f_mode
& FMODE_PREAD
)
611 ret
= vfs_read(f
.file
, buf
, count
, &pos
);
618 SYSCALL_DEFINE4(pwrite64
, unsigned int, fd
, const char __user
*, buf
,
619 size_t, count
, loff_t
, pos
)
622 ssize_t ret
= -EBADF
;
630 if (f
.file
->f_mode
& FMODE_PWRITE
)
631 ret
= vfs_write(f
.file
, buf
, count
, &pos
);
638 static ssize_t
do_iter_readv_writev(struct file
*filp
, struct iov_iter
*iter
,
639 loff_t
*ppos
, int type
, rwf_t flags
)
644 init_sync_kiocb(&kiocb
, filp
);
645 ret
= kiocb_set_rw_flags(&kiocb
, flags
);
648 kiocb
.ki_pos
= *ppos
;
651 ret
= call_read_iter(filp
, &kiocb
, iter
);
653 ret
= call_write_iter(filp
, &kiocb
, iter
);
654 BUG_ON(ret
== -EIOCBQUEUED
);
655 *ppos
= kiocb
.ki_pos
;
659 /* Do it by hand, with file-ops */
660 static ssize_t
do_loop_readv_writev(struct file
*filp
, struct iov_iter
*iter
,
661 loff_t
*ppos
, int type
, rwf_t flags
)
665 if (flags
& ~RWF_HIPRI
)
668 while (iov_iter_count(iter
)) {
669 struct iovec iovec
= iov_iter_iovec(iter
);
673 nr
= filp
->f_op
->read(filp
, iovec
.iov_base
,
674 iovec
.iov_len
, ppos
);
676 nr
= filp
->f_op
->write(filp
, iovec
.iov_base
,
677 iovec
.iov_len
, ppos
);
686 if (nr
!= iovec
.iov_len
)
688 iov_iter_advance(iter
, nr
);
694 /* A write operation does a read from user space and vice versa */
695 #define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
698 * rw_copy_check_uvector() - Copy an array of &struct iovec from userspace
699 * into the kernel and check that it is valid.
701 * @type: One of %CHECK_IOVEC_ONLY, %READ, or %WRITE.
702 * @uvector: Pointer to the userspace array.
703 * @nr_segs: Number of elements in userspace array.
704 * @fast_segs: Number of elements in @fast_pointer.
705 * @fast_pointer: Pointer to (usually small on-stack) kernel array.
706 * @ret_pointer: (output parameter) Pointer to a variable that will point to
707 * either @fast_pointer, a newly allocated kernel array, or NULL,
708 * depending on which array was used.
710 * This function copies an array of &struct iovec of @nr_segs from
711 * userspace into the kernel and checks that each element is valid (e.g.
712 * it does not point to a kernel address or cause overflow by being too
715 * As an optimization, the caller may provide a pointer to a small
716 * on-stack array in @fast_pointer, typically %UIO_FASTIOV elements long
717 * (the size of this array, or 0 if unused, should be given in @fast_segs).
719 * @ret_pointer will always point to the array that was used, so the
720 * caller must take care not to call kfree() on it e.g. in case the
721 * @fast_pointer array was used and it was allocated on the stack.
723 * Return: The total number of bytes covered by the iovec array on success
724 * or a negative error code on error.
726 ssize_t
rw_copy_check_uvector(int type
, const struct iovec __user
* uvector
,
727 unsigned long nr_segs
, unsigned long fast_segs
,
728 struct iovec
*fast_pointer
,
729 struct iovec
**ret_pointer
)
733 struct iovec
*iov
= fast_pointer
;
736 * SuS says "The readv() function *may* fail if the iovcnt argument
737 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
738 * traditionally returned zero for zero segments, so...
746 * First get the "struct iovec" from user memory and
747 * verify all the pointers
749 if (nr_segs
> UIO_MAXIOV
) {
753 if (nr_segs
> fast_segs
) {
754 iov
= kmalloc(nr_segs
*sizeof(struct iovec
), GFP_KERNEL
);
760 if (copy_from_user(iov
, uvector
, nr_segs
*sizeof(*uvector
))) {
766 * According to the Single Unix Specification we should return EINVAL
767 * if an element length is < 0 when cast to ssize_t or if the
768 * total length would overflow the ssize_t return value of the
771 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
775 for (seg
= 0; seg
< nr_segs
; seg
++) {
776 void __user
*buf
= iov
[seg
].iov_base
;
777 ssize_t len
= (ssize_t
)iov
[seg
].iov_len
;
779 /* see if we we're about to use an invalid len or if
780 * it's about to overflow ssize_t */
786 && unlikely(!access_ok(vrfy_dir(type
), buf
, len
))) {
790 if (len
> MAX_RW_COUNT
- ret
) {
791 len
= MAX_RW_COUNT
- ret
;
792 iov
[seg
].iov_len
= len
;
802 ssize_t
compat_rw_copy_check_uvector(int type
,
803 const struct compat_iovec __user
*uvector
, unsigned long nr_segs
,
804 unsigned long fast_segs
, struct iovec
*fast_pointer
,
805 struct iovec
**ret_pointer
)
807 compat_ssize_t tot_len
;
808 struct iovec
*iov
= *ret_pointer
= fast_pointer
;
813 * SuS says "The readv() function *may* fail if the iovcnt argument
814 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
815 * traditionally returned zero for zero segments, so...
821 if (nr_segs
> UIO_MAXIOV
)
823 if (nr_segs
> fast_segs
) {
825 iov
= kmalloc(nr_segs
*sizeof(struct iovec
), GFP_KERNEL
);
832 if (!access_ok(VERIFY_READ
, uvector
, nr_segs
*sizeof(*uvector
)))
836 * Single unix specification:
837 * We should -EINVAL if an element length is not >= 0 and fitting an
840 * In Linux, the total length is limited to MAX_RW_COUNT, there is
841 * no overflow possibility.
845 for (seg
= 0; seg
< nr_segs
; seg
++) {
849 if (__get_user(len
, &uvector
->iov_len
) ||
850 __get_user(buf
, &uvector
->iov_base
)) {
854 if (len
< 0) /* size_t not fitting in compat_ssize_t .. */
857 !access_ok(vrfy_dir(type
), compat_ptr(buf
), len
)) {
861 if (len
> MAX_RW_COUNT
- tot_len
)
862 len
= MAX_RW_COUNT
- tot_len
;
864 iov
->iov_base
= compat_ptr(buf
);
865 iov
->iov_len
= (compat_size_t
) len
;
876 static ssize_t
do_iter_read(struct file
*file
, struct iov_iter
*iter
,
877 loff_t
*pos
, rwf_t flags
)
882 if (!(file
->f_mode
& FMODE_READ
))
884 if (!(file
->f_mode
& FMODE_CAN_READ
))
887 tot_len
= iov_iter_count(iter
);
890 ret
= rw_verify_area(READ
, file
, pos
, tot_len
);
894 if (file
->f_op
->read_iter
)
895 ret
= do_iter_readv_writev(file
, iter
, pos
, READ
, flags
);
897 ret
= do_loop_readv_writev(file
, iter
, pos
, READ
, flags
);
900 fsnotify_access(file
);
904 ssize_t
vfs_iter_read(struct file
*file
, struct iov_iter
*iter
, loff_t
*ppos
,
907 if (!file
->f_op
->read_iter
)
909 return do_iter_read(file
, iter
, ppos
, flags
);
911 EXPORT_SYMBOL(vfs_iter_read
);
913 static ssize_t
do_iter_write(struct file
*file
, struct iov_iter
*iter
,
914 loff_t
*pos
, rwf_t flags
)
919 if (!(file
->f_mode
& FMODE_WRITE
))
921 if (!(file
->f_mode
& FMODE_CAN_WRITE
))
924 tot_len
= iov_iter_count(iter
);
927 ret
= rw_verify_area(WRITE
, file
, pos
, tot_len
);
931 if (file
->f_op
->write_iter
)
932 ret
= do_iter_readv_writev(file
, iter
, pos
, WRITE
, flags
);
934 ret
= do_loop_readv_writev(file
, iter
, pos
, WRITE
, flags
);
936 fsnotify_modify(file
);
940 ssize_t
vfs_iter_write(struct file
*file
, struct iov_iter
*iter
, loff_t
*ppos
,
943 if (!file
->f_op
->write_iter
)
945 return do_iter_write(file
, iter
, ppos
, flags
);
947 EXPORT_SYMBOL(vfs_iter_write
);
949 ssize_t
vfs_readv(struct file
*file
, const struct iovec __user
*vec
,
950 unsigned long vlen
, loff_t
*pos
, rwf_t flags
)
952 struct iovec iovstack
[UIO_FASTIOV
];
953 struct iovec
*iov
= iovstack
;
954 struct iov_iter iter
;
957 ret
= import_iovec(READ
, vec
, vlen
, ARRAY_SIZE(iovstack
), &iov
, &iter
);
959 ret
= do_iter_read(file
, &iter
, pos
, flags
);
966 static ssize_t
vfs_writev(struct file
*file
, const struct iovec __user
*vec
,
967 unsigned long vlen
, loff_t
*pos
, rwf_t flags
)
969 struct iovec iovstack
[UIO_FASTIOV
];
970 struct iovec
*iov
= iovstack
;
971 struct iov_iter iter
;
974 ret
= import_iovec(WRITE
, vec
, vlen
, ARRAY_SIZE(iovstack
), &iov
, &iter
);
976 file_start_write(file
);
977 ret
= do_iter_write(file
, &iter
, pos
, flags
);
978 file_end_write(file
);
984 static ssize_t
do_readv(unsigned long fd
, const struct iovec __user
*vec
,
985 unsigned long vlen
, rwf_t flags
)
987 struct fd f
= fdget_pos(fd
);
988 ssize_t ret
= -EBADF
;
991 loff_t pos
= file_pos_read(f
.file
);
992 ret
= vfs_readv(f
.file
, vec
, vlen
, &pos
, flags
);
994 file_pos_write(f
.file
, pos
);
999 add_rchar(current
, ret
);
1004 static ssize_t
do_writev(unsigned long fd
, const struct iovec __user
*vec
,
1005 unsigned long vlen
, rwf_t flags
)
1007 struct fd f
= fdget_pos(fd
);
1008 ssize_t ret
= -EBADF
;
1011 loff_t pos
= file_pos_read(f
.file
);
1012 ret
= vfs_writev(f
.file
, vec
, vlen
, &pos
, flags
);
1014 file_pos_write(f
.file
, pos
);
1019 add_wchar(current
, ret
);
1024 static inline loff_t
pos_from_hilo(unsigned long high
, unsigned long low
)
1026 #define HALF_LONG_BITS (BITS_PER_LONG / 2)
1027 return (((loff_t
)high
<< HALF_LONG_BITS
) << HALF_LONG_BITS
) | low
;
1030 static ssize_t
do_preadv(unsigned long fd
, const struct iovec __user
*vec
,
1031 unsigned long vlen
, loff_t pos
, rwf_t flags
)
1034 ssize_t ret
= -EBADF
;
1042 if (f
.file
->f_mode
& FMODE_PREAD
)
1043 ret
= vfs_readv(f
.file
, vec
, vlen
, &pos
, flags
);
1048 add_rchar(current
, ret
);
1053 static ssize_t
do_pwritev(unsigned long fd
, const struct iovec __user
*vec
,
1054 unsigned long vlen
, loff_t pos
, rwf_t flags
)
1057 ssize_t ret
= -EBADF
;
1065 if (f
.file
->f_mode
& FMODE_PWRITE
)
1066 ret
= vfs_writev(f
.file
, vec
, vlen
, &pos
, flags
);
1071 add_wchar(current
, ret
);
1076 SYSCALL_DEFINE3(readv
, unsigned long, fd
, const struct iovec __user
*, vec
,
1077 unsigned long, vlen
)
1079 return do_readv(fd
, vec
, vlen
, 0);
1082 SYSCALL_DEFINE3(writev
, unsigned long, fd
, const struct iovec __user
*, vec
,
1083 unsigned long, vlen
)
1085 return do_writev(fd
, vec
, vlen
, 0);
1088 SYSCALL_DEFINE5(preadv
, unsigned long, fd
, const struct iovec __user
*, vec
,
1089 unsigned long, vlen
, unsigned long, pos_l
, unsigned long, pos_h
)
1091 loff_t pos
= pos_from_hilo(pos_h
, pos_l
);
1093 return do_preadv(fd
, vec
, vlen
, pos
, 0);
1096 SYSCALL_DEFINE6(preadv2
, unsigned long, fd
, const struct iovec __user
*, vec
,
1097 unsigned long, vlen
, unsigned long, pos_l
, unsigned long, pos_h
,
1100 loff_t pos
= pos_from_hilo(pos_h
, pos_l
);
1103 return do_readv(fd
, vec
, vlen
, flags
);
1105 return do_preadv(fd
, vec
, vlen
, pos
, flags
);
1108 SYSCALL_DEFINE5(pwritev
, unsigned long, fd
, const struct iovec __user
*, vec
,
1109 unsigned long, vlen
, unsigned long, pos_l
, unsigned long, pos_h
)
1111 loff_t pos
= pos_from_hilo(pos_h
, pos_l
);
1113 return do_pwritev(fd
, vec
, vlen
, pos
, 0);
1116 SYSCALL_DEFINE6(pwritev2
, unsigned long, fd
, const struct iovec __user
*, vec
,
1117 unsigned long, vlen
, unsigned long, pos_l
, unsigned long, pos_h
,
1120 loff_t pos
= pos_from_hilo(pos_h
, pos_l
);
1123 return do_writev(fd
, vec
, vlen
, flags
);
1125 return do_pwritev(fd
, vec
, vlen
, pos
, flags
);
1128 #ifdef CONFIG_COMPAT
1129 static size_t compat_readv(struct file
*file
,
1130 const struct compat_iovec __user
*vec
,
1131 unsigned long vlen
, loff_t
*pos
, rwf_t flags
)
1133 struct iovec iovstack
[UIO_FASTIOV
];
1134 struct iovec
*iov
= iovstack
;
1135 struct iov_iter iter
;
1138 ret
= compat_import_iovec(READ
, vec
, vlen
, UIO_FASTIOV
, &iov
, &iter
);
1140 ret
= do_iter_read(file
, &iter
, pos
, flags
);
1144 add_rchar(current
, ret
);
1149 static size_t do_compat_readv(compat_ulong_t fd
,
1150 const struct compat_iovec __user
*vec
,
1151 compat_ulong_t vlen
, rwf_t flags
)
1153 struct fd f
= fdget_pos(fd
);
1159 pos
= f
.file
->f_pos
;
1160 ret
= compat_readv(f
.file
, vec
, vlen
, &pos
, flags
);
1162 f
.file
->f_pos
= pos
;
1168 COMPAT_SYSCALL_DEFINE3(readv
, compat_ulong_t
, fd
,
1169 const struct compat_iovec __user
*,vec
,
1170 compat_ulong_t
, vlen
)
1172 return do_compat_readv(fd
, vec
, vlen
, 0);
1175 static long do_compat_preadv64(unsigned long fd
,
1176 const struct compat_iovec __user
*vec
,
1177 unsigned long vlen
, loff_t pos
, rwf_t flags
)
1188 if (f
.file
->f_mode
& FMODE_PREAD
)
1189 ret
= compat_readv(f
.file
, vec
, vlen
, &pos
, flags
);
1194 #ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1195 COMPAT_SYSCALL_DEFINE4(preadv64
, unsigned long, fd
,
1196 const struct compat_iovec __user
*,vec
,
1197 unsigned long, vlen
, loff_t
, pos
)
1199 return do_compat_preadv64(fd
, vec
, vlen
, pos
, 0);
1203 COMPAT_SYSCALL_DEFINE5(preadv
, compat_ulong_t
, fd
,
1204 const struct compat_iovec __user
*,vec
,
1205 compat_ulong_t
, vlen
, u32
, pos_low
, u32
, pos_high
)
1207 loff_t pos
= ((loff_t
)pos_high
<< 32) | pos_low
;
1209 return do_compat_preadv64(fd
, vec
, vlen
, pos
, 0);
1212 #ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
1213 COMPAT_SYSCALL_DEFINE5(preadv64v2
, unsigned long, fd
,
1214 const struct compat_iovec __user
*,vec
,
1215 unsigned long, vlen
, loff_t
, pos
, rwf_t
, flags
)
1217 return do_compat_preadv64(fd
, vec
, vlen
, pos
, flags
);
1221 COMPAT_SYSCALL_DEFINE6(preadv2
, compat_ulong_t
, fd
,
1222 const struct compat_iovec __user
*,vec
,
1223 compat_ulong_t
, vlen
, u32
, pos_low
, u32
, pos_high
,
1226 loff_t pos
= ((loff_t
)pos_high
<< 32) | pos_low
;
1229 return do_compat_readv(fd
, vec
, vlen
, flags
);
1231 return do_compat_preadv64(fd
, vec
, vlen
, pos
, flags
);
1234 static size_t compat_writev(struct file
*file
,
1235 const struct compat_iovec __user
*vec
,
1236 unsigned long vlen
, loff_t
*pos
, rwf_t flags
)
1238 struct iovec iovstack
[UIO_FASTIOV
];
1239 struct iovec
*iov
= iovstack
;
1240 struct iov_iter iter
;
1243 ret
= compat_import_iovec(WRITE
, vec
, vlen
, UIO_FASTIOV
, &iov
, &iter
);
1245 file_start_write(file
);
1246 ret
= do_iter_write(file
, &iter
, pos
, flags
);
1247 file_end_write(file
);
1251 add_wchar(current
, ret
);
1256 static size_t do_compat_writev(compat_ulong_t fd
,
1257 const struct compat_iovec __user
* vec
,
1258 compat_ulong_t vlen
, rwf_t flags
)
1260 struct fd f
= fdget_pos(fd
);
1266 pos
= f
.file
->f_pos
;
1267 ret
= compat_writev(f
.file
, vec
, vlen
, &pos
, flags
);
1269 f
.file
->f_pos
= pos
;
1274 COMPAT_SYSCALL_DEFINE3(writev
, compat_ulong_t
, fd
,
1275 const struct compat_iovec __user
*, vec
,
1276 compat_ulong_t
, vlen
)
1278 return do_compat_writev(fd
, vec
, vlen
, 0);
1281 static long do_compat_pwritev64(unsigned long fd
,
1282 const struct compat_iovec __user
*vec
,
1283 unsigned long vlen
, loff_t pos
, rwf_t flags
)
1294 if (f
.file
->f_mode
& FMODE_PWRITE
)
1295 ret
= compat_writev(f
.file
, vec
, vlen
, &pos
, flags
);
1300 #ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1301 COMPAT_SYSCALL_DEFINE4(pwritev64
, unsigned long, fd
,
1302 const struct compat_iovec __user
*,vec
,
1303 unsigned long, vlen
, loff_t
, pos
)
1305 return do_compat_pwritev64(fd
, vec
, vlen
, pos
, 0);
1309 COMPAT_SYSCALL_DEFINE5(pwritev
, compat_ulong_t
, fd
,
1310 const struct compat_iovec __user
*,vec
,
1311 compat_ulong_t
, vlen
, u32
, pos_low
, u32
, pos_high
)
1313 loff_t pos
= ((loff_t
)pos_high
<< 32) | pos_low
;
1315 return do_compat_pwritev64(fd
, vec
, vlen
, pos
, 0);
1318 #ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
1319 COMPAT_SYSCALL_DEFINE5(pwritev64v2
, unsigned long, fd
,
1320 const struct compat_iovec __user
*,vec
,
1321 unsigned long, vlen
, loff_t
, pos
, rwf_t
, flags
)
1323 return do_compat_pwritev64(fd
, vec
, vlen
, pos
, flags
);
1327 COMPAT_SYSCALL_DEFINE6(pwritev2
, compat_ulong_t
, fd
,
1328 const struct compat_iovec __user
*,vec
,
1329 compat_ulong_t
, vlen
, u32
, pos_low
, u32
, pos_high
, rwf_t
, flags
)
1331 loff_t pos
= ((loff_t
)pos_high
<< 32) | pos_low
;
1334 return do_compat_writev(fd
, vec
, vlen
, flags
);
1336 return do_compat_pwritev64(fd
, vec
, vlen
, pos
, flags
);
1341 static ssize_t
do_sendfile(int out_fd
, int in_fd
, loff_t
*ppos
,
1342 size_t count
, loff_t max
)
1345 struct inode
*in_inode
, *out_inode
;
1352 * Get input file, and verify that it is ok..
1358 if (!(in
.file
->f_mode
& FMODE_READ
))
1362 pos
= in
.file
->f_pos
;
1365 if (!(in
.file
->f_mode
& FMODE_PREAD
))
1368 retval
= rw_verify_area(READ
, in
.file
, &pos
, count
);
1371 if (count
> MAX_RW_COUNT
)
1372 count
= MAX_RW_COUNT
;
1375 * Get output file, and verify that it is ok..
1378 out
= fdget(out_fd
);
1381 if (!(out
.file
->f_mode
& FMODE_WRITE
))
1384 in_inode
= file_inode(in
.file
);
1385 out_inode
= file_inode(out
.file
);
1386 out_pos
= out
.file
->f_pos
;
1387 retval
= rw_verify_area(WRITE
, out
.file
, &out_pos
, count
);
1392 max
= min(in_inode
->i_sb
->s_maxbytes
, out_inode
->i_sb
->s_maxbytes
);
1394 if (unlikely(pos
+ count
> max
)) {
1395 retval
= -EOVERFLOW
;
1404 * We need to debate whether we can enable this or not. The
1405 * man page documents EAGAIN return for the output at least,
1406 * and the application is arguably buggy if it doesn't expect
1407 * EAGAIN on a non-blocking file descriptor.
1409 if (in
.file
->f_flags
& O_NONBLOCK
)
1410 fl
= SPLICE_F_NONBLOCK
;
1412 file_start_write(out
.file
);
1413 retval
= do_splice_direct(in
.file
, &pos
, out
.file
, &out_pos
, count
, fl
);
1414 file_end_write(out
.file
);
1417 add_rchar(current
, retval
);
1418 add_wchar(current
, retval
);
1419 fsnotify_access(in
.file
);
1420 fsnotify_modify(out
.file
);
1421 out
.file
->f_pos
= out_pos
;
1425 in
.file
->f_pos
= pos
;
1431 retval
= -EOVERFLOW
;
1441 SYSCALL_DEFINE4(sendfile
, int, out_fd
, int, in_fd
, off_t __user
*, offset
, size_t, count
)
1448 if (unlikely(get_user(off
, offset
)))
1451 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, MAX_NON_LFS
);
1452 if (unlikely(put_user(pos
, offset
)))
1457 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1460 SYSCALL_DEFINE4(sendfile64
, int, out_fd
, int, in_fd
, loff_t __user
*, offset
, size_t, count
)
1466 if (unlikely(copy_from_user(&pos
, offset
, sizeof(loff_t
))))
1468 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, 0);
1469 if (unlikely(put_user(pos
, offset
)))
1474 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1477 #ifdef CONFIG_COMPAT
1478 COMPAT_SYSCALL_DEFINE4(sendfile
, int, out_fd
, int, in_fd
,
1479 compat_off_t __user
*, offset
, compat_size_t
, count
)
1486 if (unlikely(get_user(off
, offset
)))
1489 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, MAX_NON_LFS
);
1490 if (unlikely(put_user(pos
, offset
)))
1495 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1498 COMPAT_SYSCALL_DEFINE4(sendfile64
, int, out_fd
, int, in_fd
,
1499 compat_loff_t __user
*, offset
, compat_size_t
, count
)
1505 if (unlikely(copy_from_user(&pos
, offset
, sizeof(loff_t
))))
1507 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, 0);
1508 if (unlikely(put_user(pos
, offset
)))
1513 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1518 * copy_file_range() differs from regular file read and write in that it
1519 * specifically allows return partial success. When it does so is up to
1520 * the copy_file_range method.
1522 ssize_t
vfs_copy_file_range(struct file
*file_in
, loff_t pos_in
,
1523 struct file
*file_out
, loff_t pos_out
,
1524 size_t len
, unsigned int flags
)
1526 struct inode
*inode_in
= file_inode(file_in
);
1527 struct inode
*inode_out
= file_inode(file_out
);
1533 if (S_ISDIR(inode_in
->i_mode
) || S_ISDIR(inode_out
->i_mode
))
1535 if (!S_ISREG(inode_in
->i_mode
) || !S_ISREG(inode_out
->i_mode
))
1538 ret
= rw_verify_area(READ
, file_in
, &pos_in
, len
);
1542 ret
= rw_verify_area(WRITE
, file_out
, &pos_out
, len
);
1546 if (!(file_in
->f_mode
& FMODE_READ
) ||
1547 !(file_out
->f_mode
& FMODE_WRITE
) ||
1548 (file_out
->f_flags
& O_APPEND
))
1551 /* this could be relaxed once a method supports cross-fs copies */
1552 if (inode_in
->i_sb
!= inode_out
->i_sb
)
1558 file_start_write(file_out
);
1561 * Try cloning first, this is supported by more file systems, and
1562 * more efficient if both clone and copy are supported (e.g. NFS).
1564 if (file_in
->f_op
->clone_file_range
) {
1565 ret
= file_in
->f_op
->clone_file_range(file_in
, pos_in
,
1566 file_out
, pos_out
, len
);
1573 if (file_out
->f_op
->copy_file_range
) {
1574 ret
= file_out
->f_op
->copy_file_range(file_in
, pos_in
, file_out
,
1575 pos_out
, len
, flags
);
1576 if (ret
!= -EOPNOTSUPP
)
1580 ret
= do_splice_direct(file_in
, &pos_in
, file_out
, &pos_out
,
1581 len
> MAX_RW_COUNT
? MAX_RW_COUNT
: len
, 0);
1585 fsnotify_access(file_in
);
1586 add_rchar(current
, ret
);
1587 fsnotify_modify(file_out
);
1588 add_wchar(current
, ret
);
1594 file_end_write(file_out
);
1598 EXPORT_SYMBOL(vfs_copy_file_range
);
1600 SYSCALL_DEFINE6(copy_file_range
, int, fd_in
, loff_t __user
*, off_in
,
1601 int, fd_out
, loff_t __user
*, off_out
,
1602 size_t, len
, unsigned int, flags
)
1608 ssize_t ret
= -EBADF
;
1610 f_in
= fdget(fd_in
);
1614 f_out
= fdget(fd_out
);
1620 if (copy_from_user(&pos_in
, off_in
, sizeof(loff_t
)))
1623 pos_in
= f_in
.file
->f_pos
;
1627 if (copy_from_user(&pos_out
, off_out
, sizeof(loff_t
)))
1630 pos_out
= f_out
.file
->f_pos
;
1633 ret
= vfs_copy_file_range(f_in
.file
, pos_in
, f_out
.file
, pos_out
, len
,
1640 if (copy_to_user(off_in
, &pos_in
, sizeof(loff_t
)))
1643 f_in
.file
->f_pos
= pos_in
;
1647 if (copy_to_user(off_out
, &pos_out
, sizeof(loff_t
)))
1650 f_out
.file
->f_pos
= pos_out
;
1662 static int clone_verify_area(struct file
*file
, loff_t pos
, u64 len
, bool write
)
1664 struct inode
*inode
= file_inode(file
);
1666 if (unlikely(pos
< 0))
1669 if (unlikely((loff_t
) (pos
+ len
) < 0))
1672 if (unlikely(inode
->i_flctx
&& mandatory_lock(inode
))) {
1673 loff_t end
= len
? pos
+ len
- 1 : OFFSET_MAX
;
1676 retval
= locks_mandatory_area(inode
, file
, pos
, end
,
1677 write
? F_WRLCK
: F_RDLCK
);
1682 return security_file_permission(file
, write
? MAY_WRITE
: MAY_READ
);
1686 * Check that the two inodes are eligible for cloning, the ranges make
1687 * sense, and then flush all dirty data. Caller must ensure that the
1688 * inodes have been locked against any other modifications.
1690 * Returns: 0 for "nothing to clone", 1 for "something to clone", or
1691 * the usual negative error code.
1693 int vfs_clone_file_prep_inodes(struct inode
*inode_in
, loff_t pos_in
,
1694 struct inode
*inode_out
, loff_t pos_out
,
1695 u64
*len
, bool is_dedupe
)
1697 loff_t bs
= inode_out
->i_sb
->s_blocksize
;
1700 bool same_inode
= (inode_in
== inode_out
);
1703 /* Don't touch certain kinds of inodes */
1704 if (IS_IMMUTABLE(inode_out
))
1707 if (IS_SWAPFILE(inode_in
) || IS_SWAPFILE(inode_out
))
1710 /* Don't reflink dirs, pipes, sockets... */
1711 if (S_ISDIR(inode_in
->i_mode
) || S_ISDIR(inode_out
->i_mode
))
1713 if (!S_ISREG(inode_in
->i_mode
) || !S_ISREG(inode_out
->i_mode
))
1716 /* Are we going all the way to the end? */
1717 isize
= i_size_read(inode_in
);
1721 /* Zero length dedupe exits immediately; reflink goes to EOF. */
1723 if (is_dedupe
|| pos_in
== isize
)
1727 *len
= isize
- pos_in
;
1730 /* Ensure offsets don't wrap and the input is inside i_size */
1731 if (pos_in
+ *len
< pos_in
|| pos_out
+ *len
< pos_out
||
1732 pos_in
+ *len
> isize
)
1735 /* Don't allow dedupe past EOF in the dest file */
1739 disize
= i_size_read(inode_out
);
1740 if (pos_out
>= disize
|| pos_out
+ *len
> disize
)
1744 /* If we're linking to EOF, continue to the block boundary. */
1745 if (pos_in
+ *len
== isize
)
1746 blen
= ALIGN(isize
, bs
) - pos_in
;
1750 /* Only reflink if we're aligned to block boundaries */
1751 if (!IS_ALIGNED(pos_in
, bs
) || !IS_ALIGNED(pos_in
+ blen
, bs
) ||
1752 !IS_ALIGNED(pos_out
, bs
) || !IS_ALIGNED(pos_out
+ blen
, bs
))
1755 /* Don't allow overlapped reflink within the same file */
1757 if (pos_out
+ blen
> pos_in
&& pos_out
< pos_in
+ blen
)
1761 /* Wait for the completion of any pending IOs on both files */
1762 inode_dio_wait(inode_in
);
1764 inode_dio_wait(inode_out
);
1766 ret
= filemap_write_and_wait_range(inode_in
->i_mapping
,
1767 pos_in
, pos_in
+ *len
- 1);
1771 ret
= filemap_write_and_wait_range(inode_out
->i_mapping
,
1772 pos_out
, pos_out
+ *len
- 1);
1777 * Check that the extents are the same.
1780 bool is_same
= false;
1782 ret
= vfs_dedupe_file_range_compare(inode_in
, pos_in
,
1783 inode_out
, pos_out
, *len
, &is_same
);
1792 EXPORT_SYMBOL(vfs_clone_file_prep_inodes
);
1794 int vfs_clone_file_range(struct file
*file_in
, loff_t pos_in
,
1795 struct file
*file_out
, loff_t pos_out
, u64 len
)
1797 struct inode
*inode_in
= file_inode(file_in
);
1798 struct inode
*inode_out
= file_inode(file_out
);
1801 if (S_ISDIR(inode_in
->i_mode
) || S_ISDIR(inode_out
->i_mode
))
1803 if (!S_ISREG(inode_in
->i_mode
) || !S_ISREG(inode_out
->i_mode
))
1807 * FICLONE/FICLONERANGE ioctls enforce that src and dest files are on
1808 * the same mount. Practically, they only need to be on the same file
1811 if (inode_in
->i_sb
!= inode_out
->i_sb
)
1814 if (!(file_in
->f_mode
& FMODE_READ
) ||
1815 !(file_out
->f_mode
& FMODE_WRITE
) ||
1816 (file_out
->f_flags
& O_APPEND
))
1819 if (!file_in
->f_op
->clone_file_range
)
1822 ret
= clone_verify_area(file_in
, pos_in
, len
, false);
1826 ret
= clone_verify_area(file_out
, pos_out
, len
, true);
1830 if (pos_in
+ len
> i_size_read(inode_in
))
1833 ret
= file_in
->f_op
->clone_file_range(file_in
, pos_in
,
1834 file_out
, pos_out
, len
);
1836 fsnotify_access(file_in
);
1837 fsnotify_modify(file_out
);
1842 EXPORT_SYMBOL(vfs_clone_file_range
);
1845 * Read a page's worth of file data into the page cache. Return the page
1848 static struct page
*vfs_dedupe_get_page(struct inode
*inode
, loff_t offset
)
1850 struct address_space
*mapping
;
1854 n
= offset
>> PAGE_SHIFT
;
1855 mapping
= inode
->i_mapping
;
1856 page
= read_mapping_page(mapping
, n
, NULL
);
1859 if (!PageUptodate(page
)) {
1861 return ERR_PTR(-EIO
);
1868 * Compare extents of two files to see if they are the same.
1869 * Caller must have locked both inodes to prevent write races.
1871 int vfs_dedupe_file_range_compare(struct inode
*src
, loff_t srcoff
,
1872 struct inode
*dest
, loff_t destoff
,
1873 loff_t len
, bool *is_same
)
1879 struct page
*src_page
;
1880 struct page
*dest_page
;
1888 src_poff
= srcoff
& (PAGE_SIZE
- 1);
1889 dest_poff
= destoff
& (PAGE_SIZE
- 1);
1890 cmp_len
= min(PAGE_SIZE
- src_poff
,
1891 PAGE_SIZE
- dest_poff
);
1892 cmp_len
= min(cmp_len
, len
);
1896 src_page
= vfs_dedupe_get_page(src
, srcoff
);
1897 if (IS_ERR(src_page
)) {
1898 error
= PTR_ERR(src_page
);
1901 dest_page
= vfs_dedupe_get_page(dest
, destoff
);
1902 if (IS_ERR(dest_page
)) {
1903 error
= PTR_ERR(dest_page
);
1904 unlock_page(src_page
);
1908 src_addr
= kmap_atomic(src_page
);
1909 dest_addr
= kmap_atomic(dest_page
);
1911 flush_dcache_page(src_page
);
1912 flush_dcache_page(dest_page
);
1914 if (memcmp(src_addr
+ src_poff
, dest_addr
+ dest_poff
, cmp_len
))
1917 kunmap_atomic(dest_addr
);
1918 kunmap_atomic(src_addr
);
1919 unlock_page(dest_page
);
1920 unlock_page(src_page
);
1921 put_page(dest_page
);
1938 EXPORT_SYMBOL(vfs_dedupe_file_range_compare
);
1940 int vfs_dedupe_file_range(struct file
*file
, struct file_dedupe_range
*same
)
1942 struct file_dedupe_range_info
*info
;
1943 struct inode
*src
= file_inode(file
);
1948 bool is_admin
= capable(CAP_SYS_ADMIN
);
1949 u16 count
= same
->dest_count
;
1950 struct file
*dst_file
;
1954 if (!(file
->f_mode
& FMODE_READ
))
1957 if (same
->reserved1
|| same
->reserved2
)
1960 off
= same
->src_offset
;
1961 len
= same
->src_length
;
1964 if (S_ISDIR(src
->i_mode
))
1968 if (!S_ISREG(src
->i_mode
))
1971 ret
= clone_verify_area(file
, off
, len
, false);
1976 if (off
+ len
> i_size_read(src
))
1979 /* pre-format output fields to sane values */
1980 for (i
= 0; i
< count
; i
++) {
1981 same
->info
[i
].bytes_deduped
= 0ULL;
1982 same
->info
[i
].status
= FILE_DEDUPE_RANGE_SAME
;
1985 for (i
= 0, info
= same
->info
; i
< count
; i
++, info
++) {
1987 struct fd dst_fd
= fdget(info
->dest_fd
);
1989 dst_file
= dst_fd
.file
;
1991 info
->status
= -EBADF
;
1994 dst
= file_inode(dst_file
);
1996 ret
= mnt_want_write_file(dst_file
);
2002 dst_off
= info
->dest_offset
;
2003 ret
= clone_verify_area(dst_file
, dst_off
, len
, true);
2010 if (info
->reserved
) {
2011 info
->status
= -EINVAL
;
2012 } else if (!(is_admin
|| (dst_file
->f_mode
& FMODE_WRITE
))) {
2013 info
->status
= -EINVAL
;
2014 } else if (file
->f_path
.mnt
!= dst_file
->f_path
.mnt
) {
2015 info
->status
= -EXDEV
;
2016 } else if (S_ISDIR(dst
->i_mode
)) {
2017 info
->status
= -EISDIR
;
2018 } else if (dst_file
->f_op
->dedupe_file_range
== NULL
) {
2019 info
->status
= -EINVAL
;
2021 deduped
= dst_file
->f_op
->dedupe_file_range(file
, off
,
2024 if (deduped
== -EBADE
)
2025 info
->status
= FILE_DEDUPE_RANGE_DIFFERS
;
2026 else if (deduped
< 0)
2027 info
->status
= deduped
;
2029 info
->bytes_deduped
+= deduped
;
2033 mnt_drop_write_file(dst_file
);
2037 if (fatal_signal_pending(current
))
2044 EXPORT_SYMBOL(vfs_dedupe_file_range
);