2 * linux/fs/read_write.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
7 #include <linux/slab.h>
8 #include <linux/stat.h>
9 #include <linux/sched/xacct.h>
10 #include <linux/fcntl.h>
11 #include <linux/file.h>
12 #include <linux/uio.h>
13 #include <linux/fsnotify.h>
14 #include <linux/security.h>
15 #include <linux/export.h>
16 #include <linux/syscalls.h>
17 #include <linux/pagemap.h>
18 #include <linux/splice.h>
19 #include <linux/compat.h>
20 #include <linux/mount.h>
24 #include <linux/uaccess.h>
25 #include <asm/unistd.h>
27 const struct file_operations generic_ro_fops
= {
28 .llseek
= generic_file_llseek
,
29 .read_iter
= generic_file_read_iter
,
30 .mmap
= generic_file_readonly_mmap
,
31 .splice_read
= generic_file_splice_read
,
34 EXPORT_SYMBOL(generic_ro_fops
);
36 static inline int unsigned_offsets(struct file
*file
)
38 return file
->f_mode
& FMODE_UNSIGNED_OFFSET
;
42 * vfs_setpos - update the file offset for lseek
43 * @file: file structure in question
44 * @offset: file offset to seek to
45 * @maxsize: maximum file size
47 * This is a low-level filesystem helper for updating the file offset to
48 * the value specified by @offset if the given offset is valid and it is
49 * not equal to the current file offset.
51 * Return the specified offset on success and -EINVAL on invalid offset.
53 loff_t
vfs_setpos(struct file
*file
, loff_t offset
, loff_t maxsize
)
55 if (offset
< 0 && !unsigned_offsets(file
))
60 if (offset
!= file
->f_pos
) {
66 EXPORT_SYMBOL(vfs_setpos
);
69 * generic_file_llseek_size - generic llseek implementation for regular files
70 * @file: file structure to seek on
71 * @offset: file offset to seek to
72 * @whence: type of seek
73 * @size: max size of this file in file system
74 * @eof: offset used for SEEK_END position
76 * This is a variant of generic_file_llseek that allows passing in a custom
77 * maximum file size and a custom EOF position, for e.g. hashed directories
80 * SEEK_SET and SEEK_END are unsynchronized (but atomic on 64bit platforms)
81 * SEEK_CUR is synchronized against other SEEK_CURs, but not read/writes.
82 * read/writes behave like SEEK_SET against seeks.
85 generic_file_llseek_size(struct file
*file
, loff_t offset
, int whence
,
86 loff_t maxsize
, loff_t eof
)
94 * Here we special-case the lseek(fd, 0, SEEK_CUR)
95 * position-querying operation. Avoid rewriting the "same"
96 * f_pos value back to the file because a concurrent read(),
97 * write() or lseek() might have altered it
102 * f_lock protects against read/modify/write race with other
103 * SEEK_CURs. Note that parallel writes and reads behave
106 spin_lock(&file
->f_lock
);
107 offset
= vfs_setpos(file
, file
->f_pos
+ offset
, maxsize
);
108 spin_unlock(&file
->f_lock
);
112 * In the generic case the entire file is data, so as long as
113 * offset isn't at the end of the file then the offset is data.
120 * There is a virtual hole at the end of the file, so as long as
121 * offset isn't i_size or larger, return i_size.
129 return vfs_setpos(file
, offset
, maxsize
);
131 EXPORT_SYMBOL(generic_file_llseek_size
);
134 * generic_file_llseek - generic llseek implementation for regular files
135 * @file: file structure to seek on
136 * @offset: file offset to seek to
137 * @whence: type of seek
139 * This is a generic implemenation of ->llseek useable for all normal local
140 * filesystems. It just updates the file offset to the value specified by
141 * @offset and @whence.
143 loff_t
generic_file_llseek(struct file
*file
, loff_t offset
, int whence
)
145 struct inode
*inode
= file
->f_mapping
->host
;
147 return generic_file_llseek_size(file
, offset
, whence
,
148 inode
->i_sb
->s_maxbytes
,
151 EXPORT_SYMBOL(generic_file_llseek
);
154 * fixed_size_llseek - llseek implementation for fixed-sized devices
155 * @file: file structure to seek on
156 * @offset: file offset to seek to
157 * @whence: type of seek
158 * @size: size of the file
161 loff_t
fixed_size_llseek(struct file
*file
, loff_t offset
, int whence
, loff_t size
)
164 case SEEK_SET
: case SEEK_CUR
: case SEEK_END
:
165 return generic_file_llseek_size(file
, offset
, whence
,
171 EXPORT_SYMBOL(fixed_size_llseek
);
174 * no_seek_end_llseek - llseek implementation for fixed-sized devices
175 * @file: file structure to seek on
176 * @offset: file offset to seek to
177 * @whence: type of seek
180 loff_t
no_seek_end_llseek(struct file
*file
, loff_t offset
, int whence
)
183 case SEEK_SET
: case SEEK_CUR
:
184 return generic_file_llseek_size(file
, offset
, whence
,
190 EXPORT_SYMBOL(no_seek_end_llseek
);
193 * no_seek_end_llseek_size - llseek implementation for fixed-sized devices
194 * @file: file structure to seek on
195 * @offset: file offset to seek to
196 * @whence: type of seek
197 * @size: maximal offset allowed
200 loff_t
no_seek_end_llseek_size(struct file
*file
, loff_t offset
, int whence
, loff_t size
)
203 case SEEK_SET
: case SEEK_CUR
:
204 return generic_file_llseek_size(file
, offset
, whence
,
210 EXPORT_SYMBOL(no_seek_end_llseek_size
);
213 * noop_llseek - No Operation Performed llseek implementation
214 * @file: file structure to seek on
215 * @offset: file offset to seek to
216 * @whence: type of seek
218 * This is an implementation of ->llseek useable for the rare special case when
219 * userspace expects the seek to succeed but the (device) file is actually not
220 * able to perform the seek. In this case you use noop_llseek() instead of
221 * falling back to the default implementation of ->llseek.
223 loff_t
noop_llseek(struct file
*file
, loff_t offset
, int whence
)
227 EXPORT_SYMBOL(noop_llseek
);
229 loff_t
no_llseek(struct file
*file
, loff_t offset
, int whence
)
233 EXPORT_SYMBOL(no_llseek
);
235 loff_t
default_llseek(struct file
*file
, loff_t offset
, int whence
)
237 struct inode
*inode
= file_inode(file
);
243 offset
+= i_size_read(inode
);
247 retval
= file
->f_pos
;
250 offset
+= file
->f_pos
;
254 * In the generic case the entire file is data, so as
255 * long as offset isn't at the end of the file then the
258 if (offset
>= inode
->i_size
) {
265 * There is a virtual hole at the end of the file, so
266 * as long as offset isn't i_size or larger, return
269 if (offset
>= inode
->i_size
) {
273 offset
= inode
->i_size
;
277 if (offset
>= 0 || unsigned_offsets(file
)) {
278 if (offset
!= file
->f_pos
) {
279 file
->f_pos
= offset
;
288 EXPORT_SYMBOL(default_llseek
);
290 loff_t
vfs_llseek(struct file
*file
, loff_t offset
, int whence
)
292 loff_t (*fn
)(struct file
*, loff_t
, int);
295 if (file
->f_mode
& FMODE_LSEEK
) {
296 if (file
->f_op
->llseek
)
297 fn
= file
->f_op
->llseek
;
299 return fn(file
, offset
, whence
);
301 EXPORT_SYMBOL(vfs_llseek
);
303 SYSCALL_DEFINE3(lseek
, unsigned int, fd
, off_t
, offset
, unsigned int, whence
)
306 struct fd f
= fdget_pos(fd
);
311 if (whence
<= SEEK_MAX
) {
312 loff_t res
= vfs_llseek(f
.file
, offset
, whence
);
314 if (res
!= (loff_t
)retval
)
315 retval
= -EOVERFLOW
; /* LFS: should only happen on 32 bit platforms */
322 COMPAT_SYSCALL_DEFINE3(lseek
, unsigned int, fd
, compat_off_t
, offset
, unsigned int, whence
)
324 return sys_lseek(fd
, offset
, whence
);
328 #ifdef __ARCH_WANT_SYS_LLSEEK
329 SYSCALL_DEFINE5(llseek
, unsigned int, fd
, unsigned long, offset_high
,
330 unsigned long, offset_low
, loff_t __user
*, result
,
331 unsigned int, whence
)
334 struct fd f
= fdget_pos(fd
);
341 if (whence
> SEEK_MAX
)
344 offset
= vfs_llseek(f
.file
, ((loff_t
) offset_high
<< 32) | offset_low
,
347 retval
= (int)offset
;
350 if (!copy_to_user(result
, &offset
, sizeof(offset
)))
359 ssize_t
vfs_iter_read(struct file
*file
, struct iov_iter
*iter
, loff_t
*ppos
)
364 if (!file
->f_op
->read_iter
)
367 init_sync_kiocb(&kiocb
, file
);
368 kiocb
.ki_pos
= *ppos
;
371 ret
= call_read_iter(file
, &kiocb
, iter
);
372 BUG_ON(ret
== -EIOCBQUEUED
);
374 *ppos
= kiocb
.ki_pos
;
377 EXPORT_SYMBOL(vfs_iter_read
);
379 ssize_t
vfs_iter_write(struct file
*file
, struct iov_iter
*iter
, loff_t
*ppos
)
384 if (!file
->f_op
->write_iter
)
387 init_sync_kiocb(&kiocb
, file
);
388 kiocb
.ki_pos
= *ppos
;
391 ret
= call_write_iter(file
, &kiocb
, iter
);
392 BUG_ON(ret
== -EIOCBQUEUED
);
394 *ppos
= kiocb
.ki_pos
;
397 EXPORT_SYMBOL(vfs_iter_write
);
399 int rw_verify_area(int read_write
, struct file
*file
, const loff_t
*ppos
, size_t count
)
403 int retval
= -EINVAL
;
405 inode
= file_inode(file
);
406 if (unlikely((ssize_t
) count
< 0))
409 if (unlikely(pos
< 0)) {
410 if (!unsigned_offsets(file
))
412 if (count
>= -pos
) /* both values are in 0..LLONG_MAX */
414 } else if (unlikely((loff_t
) (pos
+ count
) < 0)) {
415 if (!unsigned_offsets(file
))
419 if (unlikely(inode
->i_flctx
&& mandatory_lock(inode
))) {
420 retval
= locks_mandatory_area(inode
, file
, pos
, pos
+ count
- 1,
421 read_write
== READ
? F_RDLCK
: F_WRLCK
);
425 return security_file_permission(file
,
426 read_write
== READ
? MAY_READ
: MAY_WRITE
);
429 static ssize_t
new_sync_read(struct file
*filp
, char __user
*buf
, size_t len
, loff_t
*ppos
)
431 struct iovec iov
= { .iov_base
= buf
, .iov_len
= len
};
433 struct iov_iter iter
;
436 init_sync_kiocb(&kiocb
, filp
);
437 kiocb
.ki_pos
= *ppos
;
438 iov_iter_init(&iter
, READ
, &iov
, 1, len
);
440 ret
= call_read_iter(filp
, &kiocb
, &iter
);
441 BUG_ON(ret
== -EIOCBQUEUED
);
442 *ppos
= kiocb
.ki_pos
;
446 ssize_t
__vfs_read(struct file
*file
, char __user
*buf
, size_t count
,
449 if (file
->f_op
->read
)
450 return file
->f_op
->read(file
, buf
, count
, pos
);
451 else if (file
->f_op
->read_iter
)
452 return new_sync_read(file
, buf
, count
, pos
);
456 EXPORT_SYMBOL(__vfs_read
);
458 ssize_t
vfs_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*pos
)
462 if (!(file
->f_mode
& FMODE_READ
))
464 if (!(file
->f_mode
& FMODE_CAN_READ
))
466 if (unlikely(!access_ok(VERIFY_WRITE
, buf
, count
)))
469 ret
= rw_verify_area(READ
, file
, pos
, count
);
471 if (count
> MAX_RW_COUNT
)
472 count
= MAX_RW_COUNT
;
473 ret
= __vfs_read(file
, buf
, count
, pos
);
475 fsnotify_access(file
);
476 add_rchar(current
, ret
);
484 EXPORT_SYMBOL(vfs_read
);
486 static ssize_t
new_sync_write(struct file
*filp
, const char __user
*buf
, size_t len
, loff_t
*ppos
)
488 struct iovec iov
= { .iov_base
= (void __user
*)buf
, .iov_len
= len
};
490 struct iov_iter iter
;
493 init_sync_kiocb(&kiocb
, filp
);
494 kiocb
.ki_pos
= *ppos
;
495 iov_iter_init(&iter
, WRITE
, &iov
, 1, len
);
497 ret
= call_write_iter(filp
, &kiocb
, &iter
);
498 BUG_ON(ret
== -EIOCBQUEUED
);
500 *ppos
= kiocb
.ki_pos
;
504 ssize_t
__vfs_write(struct file
*file
, const char __user
*p
, size_t count
,
507 if (file
->f_op
->write
)
508 return file
->f_op
->write(file
, p
, count
, pos
);
509 else if (file
->f_op
->write_iter
)
510 return new_sync_write(file
, p
, count
, pos
);
514 EXPORT_SYMBOL(__vfs_write
);
516 ssize_t
__kernel_write(struct file
*file
, const char *buf
, size_t count
, loff_t
*pos
)
519 const char __user
*p
;
522 if (!(file
->f_mode
& FMODE_CAN_WRITE
))
527 p
= (__force
const char __user
*)buf
;
528 if (count
> MAX_RW_COUNT
)
529 count
= MAX_RW_COUNT
;
530 ret
= __vfs_write(file
, p
, count
, pos
);
533 fsnotify_modify(file
);
534 add_wchar(current
, ret
);
540 EXPORT_SYMBOL(__kernel_write
);
542 ssize_t
vfs_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*pos
)
546 if (!(file
->f_mode
& FMODE_WRITE
))
548 if (!(file
->f_mode
& FMODE_CAN_WRITE
))
550 if (unlikely(!access_ok(VERIFY_READ
, buf
, count
)))
553 ret
= rw_verify_area(WRITE
, file
, pos
, count
);
555 if (count
> MAX_RW_COUNT
)
556 count
= MAX_RW_COUNT
;
557 file_start_write(file
);
558 ret
= __vfs_write(file
, buf
, count
, pos
);
560 fsnotify_modify(file
);
561 add_wchar(current
, ret
);
564 file_end_write(file
);
570 EXPORT_SYMBOL(vfs_write
);
572 static inline loff_t
file_pos_read(struct file
*file
)
577 static inline void file_pos_write(struct file
*file
, loff_t pos
)
582 SYSCALL_DEFINE3(read
, unsigned int, fd
, char __user
*, buf
, size_t, count
)
584 struct fd f
= fdget_pos(fd
);
585 ssize_t ret
= -EBADF
;
588 loff_t pos
= file_pos_read(f
.file
);
589 ret
= vfs_read(f
.file
, buf
, count
, &pos
);
591 file_pos_write(f
.file
, pos
);
597 SYSCALL_DEFINE3(write
, unsigned int, fd
, const char __user
*, buf
,
600 struct fd f
= fdget_pos(fd
);
601 ssize_t ret
= -EBADF
;
604 loff_t pos
= file_pos_read(f
.file
);
605 ret
= vfs_write(f
.file
, buf
, count
, &pos
);
607 file_pos_write(f
.file
, pos
);
614 SYSCALL_DEFINE4(pread64
, unsigned int, fd
, char __user
*, buf
,
615 size_t, count
, loff_t
, pos
)
618 ssize_t ret
= -EBADF
;
626 if (f
.file
->f_mode
& FMODE_PREAD
)
627 ret
= vfs_read(f
.file
, buf
, count
, &pos
);
634 SYSCALL_DEFINE4(pwrite64
, unsigned int, fd
, const char __user
*, buf
,
635 size_t, count
, loff_t
, pos
)
638 ssize_t ret
= -EBADF
;
646 if (f
.file
->f_mode
& FMODE_PWRITE
)
647 ret
= vfs_write(f
.file
, buf
, count
, &pos
);
655 * Reduce an iovec's length in-place. Return the resulting number of segments
657 unsigned long iov_shorten(struct iovec
*iov
, unsigned long nr_segs
, size_t to
)
659 unsigned long seg
= 0;
662 while (seg
< nr_segs
) {
664 if (len
+ iov
->iov_len
>= to
) {
665 iov
->iov_len
= to
- len
;
673 EXPORT_SYMBOL(iov_shorten
);
675 static ssize_t
do_iter_readv_writev(struct file
*filp
, struct iov_iter
*iter
,
676 loff_t
*ppos
, int type
, int flags
)
681 if (flags
& ~(RWF_HIPRI
| RWF_DSYNC
| RWF_SYNC
))
684 init_sync_kiocb(&kiocb
, filp
);
685 if (flags
& RWF_HIPRI
)
686 kiocb
.ki_flags
|= IOCB_HIPRI
;
687 if (flags
& RWF_DSYNC
)
688 kiocb
.ki_flags
|= IOCB_DSYNC
;
689 if (flags
& RWF_SYNC
)
690 kiocb
.ki_flags
|= (IOCB_DSYNC
| IOCB_SYNC
);
691 kiocb
.ki_pos
= *ppos
;
694 ret
= call_read_iter(filp
, &kiocb
, iter
);
696 ret
= call_write_iter(filp
, &kiocb
, iter
);
697 BUG_ON(ret
== -EIOCBQUEUED
);
698 *ppos
= kiocb
.ki_pos
;
702 /* Do it by hand, with file-ops */
703 static ssize_t
do_loop_readv_writev(struct file
*filp
, struct iov_iter
*iter
,
704 loff_t
*ppos
, int type
, int flags
)
708 if (flags
& ~RWF_HIPRI
)
711 while (iov_iter_count(iter
)) {
712 struct iovec iovec
= iov_iter_iovec(iter
);
716 nr
= filp
->f_op
->read(filp
, iovec
.iov_base
,
717 iovec
.iov_len
, ppos
);
719 nr
= filp
->f_op
->write(filp
, iovec
.iov_base
,
720 iovec
.iov_len
, ppos
);
729 if (nr
!= iovec
.iov_len
)
731 iov_iter_advance(iter
, nr
);
737 /* A write operation does a read from user space and vice versa */
738 #define vrfy_dir(type) ((type) == READ ? VERIFY_WRITE : VERIFY_READ)
741 * rw_copy_check_uvector() - Copy an array of &struct iovec from userspace
742 * into the kernel and check that it is valid.
744 * @type: One of %CHECK_IOVEC_ONLY, %READ, or %WRITE.
745 * @uvector: Pointer to the userspace array.
746 * @nr_segs: Number of elements in userspace array.
747 * @fast_segs: Number of elements in @fast_pointer.
748 * @fast_pointer: Pointer to (usually small on-stack) kernel array.
749 * @ret_pointer: (output parameter) Pointer to a variable that will point to
750 * either @fast_pointer, a newly allocated kernel array, or NULL,
751 * depending on which array was used.
753 * This function copies an array of &struct iovec of @nr_segs from
754 * userspace into the kernel and checks that each element is valid (e.g.
755 * it does not point to a kernel address or cause overflow by being too
758 * As an optimization, the caller may provide a pointer to a small
759 * on-stack array in @fast_pointer, typically %UIO_FASTIOV elements long
760 * (the size of this array, or 0 if unused, should be given in @fast_segs).
762 * @ret_pointer will always point to the array that was used, so the
763 * caller must take care not to call kfree() on it e.g. in case the
764 * @fast_pointer array was used and it was allocated on the stack.
766 * Return: The total number of bytes covered by the iovec array on success
767 * or a negative error code on error.
769 ssize_t
rw_copy_check_uvector(int type
, const struct iovec __user
* uvector
,
770 unsigned long nr_segs
, unsigned long fast_segs
,
771 struct iovec
*fast_pointer
,
772 struct iovec
**ret_pointer
)
776 struct iovec
*iov
= fast_pointer
;
779 * SuS says "The readv() function *may* fail if the iovcnt argument
780 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
781 * traditionally returned zero for zero segments, so...
789 * First get the "struct iovec" from user memory and
790 * verify all the pointers
792 if (nr_segs
> UIO_MAXIOV
) {
796 if (nr_segs
> fast_segs
) {
797 iov
= kmalloc(nr_segs
*sizeof(struct iovec
), GFP_KERNEL
);
803 if (copy_from_user(iov
, uvector
, nr_segs
*sizeof(*uvector
))) {
809 * According to the Single Unix Specification we should return EINVAL
810 * if an element length is < 0 when cast to ssize_t or if the
811 * total length would overflow the ssize_t return value of the
814 * Linux caps all read/write calls to MAX_RW_COUNT, and avoids the
818 for (seg
= 0; seg
< nr_segs
; seg
++) {
819 void __user
*buf
= iov
[seg
].iov_base
;
820 ssize_t len
= (ssize_t
)iov
[seg
].iov_len
;
822 /* see if we we're about to use an invalid len or if
823 * it's about to overflow ssize_t */
829 && unlikely(!access_ok(vrfy_dir(type
), buf
, len
))) {
833 if (len
> MAX_RW_COUNT
- ret
) {
834 len
= MAX_RW_COUNT
- ret
;
835 iov
[seg
].iov_len
= len
;
845 ssize_t
compat_rw_copy_check_uvector(int type
,
846 const struct compat_iovec __user
*uvector
, unsigned long nr_segs
,
847 unsigned long fast_segs
, struct iovec
*fast_pointer
,
848 struct iovec
**ret_pointer
)
850 compat_ssize_t tot_len
;
851 struct iovec
*iov
= *ret_pointer
= fast_pointer
;
856 * SuS says "The readv() function *may* fail if the iovcnt argument
857 * was less than or equal to 0, or greater than {IOV_MAX}. Linux has
858 * traditionally returned zero for zero segments, so...
864 if (nr_segs
> UIO_MAXIOV
)
866 if (nr_segs
> fast_segs
) {
868 iov
= kmalloc(nr_segs
*sizeof(struct iovec
), GFP_KERNEL
);
875 if (!access_ok(VERIFY_READ
, uvector
, nr_segs
*sizeof(*uvector
)))
879 * Single unix specification:
880 * We should -EINVAL if an element length is not >= 0 and fitting an
883 * In Linux, the total length is limited to MAX_RW_COUNT, there is
884 * no overflow possibility.
888 for (seg
= 0; seg
< nr_segs
; seg
++) {
892 if (__get_user(len
, &uvector
->iov_len
) ||
893 __get_user(buf
, &uvector
->iov_base
)) {
897 if (len
< 0) /* size_t not fitting in compat_ssize_t .. */
900 !access_ok(vrfy_dir(type
), compat_ptr(buf
), len
)) {
904 if (len
> MAX_RW_COUNT
- tot_len
)
905 len
= MAX_RW_COUNT
- tot_len
;
907 iov
->iov_base
= compat_ptr(buf
);
908 iov
->iov_len
= (compat_size_t
) len
;
919 static ssize_t
__do_readv_writev(int type
, struct file
*file
,
920 struct iov_iter
*iter
, loff_t
*pos
, int flags
)
925 tot_len
= iov_iter_count(iter
);
928 ret
= rw_verify_area(type
, file
, pos
, tot_len
);
933 file_start_write(file
);
935 if ((type
== READ
&& file
->f_op
->read_iter
) ||
936 (type
== WRITE
&& file
->f_op
->write_iter
))
937 ret
= do_iter_readv_writev(file
, iter
, pos
, type
, flags
);
939 ret
= do_loop_readv_writev(file
, iter
, pos
, type
, flags
);
942 file_end_write(file
);
945 if ((ret
+ (type
== READ
)) > 0) {
947 fsnotify_access(file
);
949 fsnotify_modify(file
);
954 static ssize_t
do_readv_writev(int type
, struct file
*file
,
955 const struct iovec __user
*uvector
,
956 unsigned long nr_segs
, loff_t
*pos
,
959 struct iovec iovstack
[UIO_FASTIOV
];
960 struct iovec
*iov
= iovstack
;
961 struct iov_iter iter
;
964 ret
= import_iovec(type
, uvector
, nr_segs
,
965 ARRAY_SIZE(iovstack
), &iov
, &iter
);
969 ret
= __do_readv_writev(type
, file
, &iter
, pos
, flags
);
975 ssize_t
vfs_readv(struct file
*file
, const struct iovec __user
*vec
,
976 unsigned long vlen
, loff_t
*pos
, int flags
)
978 if (!(file
->f_mode
& FMODE_READ
))
980 if (!(file
->f_mode
& FMODE_CAN_READ
))
983 return do_readv_writev(READ
, file
, vec
, vlen
, pos
, flags
);
986 EXPORT_SYMBOL(vfs_readv
);
988 ssize_t
vfs_writev(struct file
*file
, const struct iovec __user
*vec
,
989 unsigned long vlen
, loff_t
*pos
, int flags
)
991 if (!(file
->f_mode
& FMODE_WRITE
))
993 if (!(file
->f_mode
& FMODE_CAN_WRITE
))
996 return do_readv_writev(WRITE
, file
, vec
, vlen
, pos
, flags
);
999 EXPORT_SYMBOL(vfs_writev
);
1001 static ssize_t
do_readv(unsigned long fd
, const struct iovec __user
*vec
,
1002 unsigned long vlen
, int flags
)
1004 struct fd f
= fdget_pos(fd
);
1005 ssize_t ret
= -EBADF
;
1008 loff_t pos
= file_pos_read(f
.file
);
1009 ret
= vfs_readv(f
.file
, vec
, vlen
, &pos
, flags
);
1011 file_pos_write(f
.file
, pos
);
1016 add_rchar(current
, ret
);
1021 static ssize_t
do_writev(unsigned long fd
, const struct iovec __user
*vec
,
1022 unsigned long vlen
, int flags
)
1024 struct fd f
= fdget_pos(fd
);
1025 ssize_t ret
= -EBADF
;
1028 loff_t pos
= file_pos_read(f
.file
);
1029 ret
= vfs_writev(f
.file
, vec
, vlen
, &pos
, flags
);
1031 file_pos_write(f
.file
, pos
);
1036 add_wchar(current
, ret
);
1041 static inline loff_t
pos_from_hilo(unsigned long high
, unsigned long low
)
1043 #define HALF_LONG_BITS (BITS_PER_LONG / 2)
1044 return (((loff_t
)high
<< HALF_LONG_BITS
) << HALF_LONG_BITS
) | low
;
1047 static ssize_t
do_preadv(unsigned long fd
, const struct iovec __user
*vec
,
1048 unsigned long vlen
, loff_t pos
, int flags
)
1051 ssize_t ret
= -EBADF
;
1059 if (f
.file
->f_mode
& FMODE_PREAD
)
1060 ret
= vfs_readv(f
.file
, vec
, vlen
, &pos
, flags
);
1065 add_rchar(current
, ret
);
1070 static ssize_t
do_pwritev(unsigned long fd
, const struct iovec __user
*vec
,
1071 unsigned long vlen
, loff_t pos
, int flags
)
1074 ssize_t ret
= -EBADF
;
1082 if (f
.file
->f_mode
& FMODE_PWRITE
)
1083 ret
= vfs_writev(f
.file
, vec
, vlen
, &pos
, flags
);
1088 add_wchar(current
, ret
);
1093 SYSCALL_DEFINE3(readv
, unsigned long, fd
, const struct iovec __user
*, vec
,
1094 unsigned long, vlen
)
1096 return do_readv(fd
, vec
, vlen
, 0);
1099 SYSCALL_DEFINE3(writev
, unsigned long, fd
, const struct iovec __user
*, vec
,
1100 unsigned long, vlen
)
1102 return do_writev(fd
, vec
, vlen
, 0);
1105 SYSCALL_DEFINE5(preadv
, unsigned long, fd
, const struct iovec __user
*, vec
,
1106 unsigned long, vlen
, unsigned long, pos_l
, unsigned long, pos_h
)
1108 loff_t pos
= pos_from_hilo(pos_h
, pos_l
);
1110 return do_preadv(fd
, vec
, vlen
, pos
, 0);
1113 SYSCALL_DEFINE6(preadv2
, unsigned long, fd
, const struct iovec __user
*, vec
,
1114 unsigned long, vlen
, unsigned long, pos_l
, unsigned long, pos_h
,
1117 loff_t pos
= pos_from_hilo(pos_h
, pos_l
);
1120 return do_readv(fd
, vec
, vlen
, flags
);
1122 return do_preadv(fd
, vec
, vlen
, pos
, flags
);
1125 SYSCALL_DEFINE5(pwritev
, unsigned long, fd
, const struct iovec __user
*, vec
,
1126 unsigned long, vlen
, unsigned long, pos_l
, unsigned long, pos_h
)
1128 loff_t pos
= pos_from_hilo(pos_h
, pos_l
);
1130 return do_pwritev(fd
, vec
, vlen
, pos
, 0);
1133 SYSCALL_DEFINE6(pwritev2
, unsigned long, fd
, const struct iovec __user
*, vec
,
1134 unsigned long, vlen
, unsigned long, pos_l
, unsigned long, pos_h
,
1137 loff_t pos
= pos_from_hilo(pos_h
, pos_l
);
1140 return do_writev(fd
, vec
, vlen
, flags
);
1142 return do_pwritev(fd
, vec
, vlen
, pos
, flags
);
1145 #ifdef CONFIG_COMPAT
1147 static ssize_t
compat_do_readv_writev(int type
, struct file
*file
,
1148 const struct compat_iovec __user
*uvector
,
1149 unsigned long nr_segs
, loff_t
*pos
,
1152 struct iovec iovstack
[UIO_FASTIOV
];
1153 struct iovec
*iov
= iovstack
;
1154 struct iov_iter iter
;
1157 ret
= compat_import_iovec(type
, uvector
, nr_segs
,
1158 UIO_FASTIOV
, &iov
, &iter
);
1162 ret
= __do_readv_writev(type
, file
, &iter
, pos
, flags
);
1168 static size_t compat_readv(struct file
*file
,
1169 const struct compat_iovec __user
*vec
,
1170 unsigned long vlen
, loff_t
*pos
, int flags
)
1172 ssize_t ret
= -EBADF
;
1174 if (!(file
->f_mode
& FMODE_READ
))
1178 if (!(file
->f_mode
& FMODE_CAN_READ
))
1181 ret
= compat_do_readv_writev(READ
, file
, vec
, vlen
, pos
, flags
);
1185 add_rchar(current
, ret
);
1190 static size_t do_compat_readv(compat_ulong_t fd
,
1191 const struct compat_iovec __user
*vec
,
1192 compat_ulong_t vlen
, int flags
)
1194 struct fd f
= fdget_pos(fd
);
1200 pos
= f
.file
->f_pos
;
1201 ret
= compat_readv(f
.file
, vec
, vlen
, &pos
, flags
);
1203 f
.file
->f_pos
= pos
;
1209 COMPAT_SYSCALL_DEFINE3(readv
, compat_ulong_t
, fd
,
1210 const struct compat_iovec __user
*,vec
,
1211 compat_ulong_t
, vlen
)
1213 return do_compat_readv(fd
, vec
, vlen
, 0);
1216 static long do_compat_preadv64(unsigned long fd
,
1217 const struct compat_iovec __user
*vec
,
1218 unsigned long vlen
, loff_t pos
, int flags
)
1229 if (f
.file
->f_mode
& FMODE_PREAD
)
1230 ret
= compat_readv(f
.file
, vec
, vlen
, &pos
, flags
);
1235 #ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
1236 COMPAT_SYSCALL_DEFINE4(preadv64
, unsigned long, fd
,
1237 const struct compat_iovec __user
*,vec
,
1238 unsigned long, vlen
, loff_t
, pos
)
1240 return do_compat_preadv64(fd
, vec
, vlen
, pos
, 0);
1244 COMPAT_SYSCALL_DEFINE5(preadv
, compat_ulong_t
, fd
,
1245 const struct compat_iovec __user
*,vec
,
1246 compat_ulong_t
, vlen
, u32
, pos_low
, u32
, pos_high
)
1248 loff_t pos
= ((loff_t
)pos_high
<< 32) | pos_low
;
1250 return do_compat_preadv64(fd
, vec
, vlen
, pos
, 0);
1253 #ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
1254 COMPAT_SYSCALL_DEFINE5(preadv64v2
, unsigned long, fd
,
1255 const struct compat_iovec __user
*,vec
,
1256 unsigned long, vlen
, loff_t
, pos
, int, flags
)
1258 return do_compat_preadv64(fd
, vec
, vlen
, pos
, flags
);
1262 COMPAT_SYSCALL_DEFINE6(preadv2
, compat_ulong_t
, fd
,
1263 const struct compat_iovec __user
*,vec
,
1264 compat_ulong_t
, vlen
, u32
, pos_low
, u32
, pos_high
,
1267 loff_t pos
= ((loff_t
)pos_high
<< 32) | pos_low
;
1270 return do_compat_readv(fd
, vec
, vlen
, flags
);
1272 return do_compat_preadv64(fd
, vec
, vlen
, pos
, flags
);
1275 static size_t compat_writev(struct file
*file
,
1276 const struct compat_iovec __user
*vec
,
1277 unsigned long vlen
, loff_t
*pos
, int flags
)
1279 ssize_t ret
= -EBADF
;
1281 if (!(file
->f_mode
& FMODE_WRITE
))
1285 if (!(file
->f_mode
& FMODE_CAN_WRITE
))
1288 ret
= compat_do_readv_writev(WRITE
, file
, vec
, vlen
, pos
, 0);
1292 add_wchar(current
, ret
);
1297 static size_t do_compat_writev(compat_ulong_t fd
,
1298 const struct compat_iovec __user
* vec
,
1299 compat_ulong_t vlen
, int flags
)
1301 struct fd f
= fdget_pos(fd
);
1307 pos
= f
.file
->f_pos
;
1308 ret
= compat_writev(f
.file
, vec
, vlen
, &pos
, flags
);
1310 f
.file
->f_pos
= pos
;
1315 COMPAT_SYSCALL_DEFINE3(writev
, compat_ulong_t
, fd
,
1316 const struct compat_iovec __user
*, vec
,
1317 compat_ulong_t
, vlen
)
1319 return do_compat_writev(fd
, vec
, vlen
, 0);
1322 static long do_compat_pwritev64(unsigned long fd
,
1323 const struct compat_iovec __user
*vec
,
1324 unsigned long vlen
, loff_t pos
, int flags
)
1335 if (f
.file
->f_mode
& FMODE_PWRITE
)
1336 ret
= compat_writev(f
.file
, vec
, vlen
, &pos
, flags
);
1341 #ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
1342 COMPAT_SYSCALL_DEFINE4(pwritev64
, unsigned long, fd
,
1343 const struct compat_iovec __user
*,vec
,
1344 unsigned long, vlen
, loff_t
, pos
)
1346 return do_compat_pwritev64(fd
, vec
, vlen
, pos
, 0);
1350 COMPAT_SYSCALL_DEFINE5(pwritev
, compat_ulong_t
, fd
,
1351 const struct compat_iovec __user
*,vec
,
1352 compat_ulong_t
, vlen
, u32
, pos_low
, u32
, pos_high
)
1354 loff_t pos
= ((loff_t
)pos_high
<< 32) | pos_low
;
1356 return do_compat_pwritev64(fd
, vec
, vlen
, pos
, 0);
1359 #ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
1360 COMPAT_SYSCALL_DEFINE5(pwritev64v2
, unsigned long, fd
,
1361 const struct compat_iovec __user
*,vec
,
1362 unsigned long, vlen
, loff_t
, pos
, int, flags
)
1364 return do_compat_pwritev64(fd
, vec
, vlen
, pos
, flags
);
1368 COMPAT_SYSCALL_DEFINE6(pwritev2
, compat_ulong_t
, fd
,
1369 const struct compat_iovec __user
*,vec
,
1370 compat_ulong_t
, vlen
, u32
, pos_low
, u32
, pos_high
, int, flags
)
1372 loff_t pos
= ((loff_t
)pos_high
<< 32) | pos_low
;
1375 return do_compat_writev(fd
, vec
, vlen
, flags
);
1377 return do_compat_pwritev64(fd
, vec
, vlen
, pos
, flags
);
1382 static ssize_t
do_sendfile(int out_fd
, int in_fd
, loff_t
*ppos
,
1383 size_t count
, loff_t max
)
1386 struct inode
*in_inode
, *out_inode
;
1393 * Get input file, and verify that it is ok..
1399 if (!(in
.file
->f_mode
& FMODE_READ
))
1403 pos
= in
.file
->f_pos
;
1406 if (!(in
.file
->f_mode
& FMODE_PREAD
))
1409 retval
= rw_verify_area(READ
, in
.file
, &pos
, count
);
1412 if (count
> MAX_RW_COUNT
)
1413 count
= MAX_RW_COUNT
;
1416 * Get output file, and verify that it is ok..
1419 out
= fdget(out_fd
);
1422 if (!(out
.file
->f_mode
& FMODE_WRITE
))
1425 in_inode
= file_inode(in
.file
);
1426 out_inode
= file_inode(out
.file
);
1427 out_pos
= out
.file
->f_pos
;
1428 retval
= rw_verify_area(WRITE
, out
.file
, &out_pos
, count
);
1433 max
= min(in_inode
->i_sb
->s_maxbytes
, out_inode
->i_sb
->s_maxbytes
);
1435 if (unlikely(pos
+ count
> max
)) {
1436 retval
= -EOVERFLOW
;
1445 * We need to debate whether we can enable this or not. The
1446 * man page documents EAGAIN return for the output at least,
1447 * and the application is arguably buggy if it doesn't expect
1448 * EAGAIN on a non-blocking file descriptor.
1450 if (in
.file
->f_flags
& O_NONBLOCK
)
1451 fl
= SPLICE_F_NONBLOCK
;
1453 file_start_write(out
.file
);
1454 retval
= do_splice_direct(in
.file
, &pos
, out
.file
, &out_pos
, count
, fl
);
1455 file_end_write(out
.file
);
1458 add_rchar(current
, retval
);
1459 add_wchar(current
, retval
);
1460 fsnotify_access(in
.file
);
1461 fsnotify_modify(out
.file
);
1462 out
.file
->f_pos
= out_pos
;
1466 in
.file
->f_pos
= pos
;
1472 retval
= -EOVERFLOW
;
1482 SYSCALL_DEFINE4(sendfile
, int, out_fd
, int, in_fd
, off_t __user
*, offset
, size_t, count
)
1489 if (unlikely(get_user(off
, offset
)))
1492 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, MAX_NON_LFS
);
1493 if (unlikely(put_user(pos
, offset
)))
1498 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1501 SYSCALL_DEFINE4(sendfile64
, int, out_fd
, int, in_fd
, loff_t __user
*, offset
, size_t, count
)
1507 if (unlikely(copy_from_user(&pos
, offset
, sizeof(loff_t
))))
1509 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, 0);
1510 if (unlikely(put_user(pos
, offset
)))
1515 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1518 #ifdef CONFIG_COMPAT
1519 COMPAT_SYSCALL_DEFINE4(sendfile
, int, out_fd
, int, in_fd
,
1520 compat_off_t __user
*, offset
, compat_size_t
, count
)
1527 if (unlikely(get_user(off
, offset
)))
1530 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, MAX_NON_LFS
);
1531 if (unlikely(put_user(pos
, offset
)))
1536 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1539 COMPAT_SYSCALL_DEFINE4(sendfile64
, int, out_fd
, int, in_fd
,
1540 compat_loff_t __user
*, offset
, compat_size_t
, count
)
1546 if (unlikely(copy_from_user(&pos
, offset
, sizeof(loff_t
))))
1548 ret
= do_sendfile(out_fd
, in_fd
, &pos
, count
, 0);
1549 if (unlikely(put_user(pos
, offset
)))
1554 return do_sendfile(out_fd
, in_fd
, NULL
, count
, 0);
1559 * copy_file_range() differs from regular file read and write in that it
1560 * specifically allows return partial success. When it does so is up to
1561 * the copy_file_range method.
1563 ssize_t
vfs_copy_file_range(struct file
*file_in
, loff_t pos_in
,
1564 struct file
*file_out
, loff_t pos_out
,
1565 size_t len
, unsigned int flags
)
1567 struct inode
*inode_in
= file_inode(file_in
);
1568 struct inode
*inode_out
= file_inode(file_out
);
1574 if (S_ISDIR(inode_in
->i_mode
) || S_ISDIR(inode_out
->i_mode
))
1576 if (!S_ISREG(inode_in
->i_mode
) || !S_ISREG(inode_out
->i_mode
))
1579 ret
= rw_verify_area(READ
, file_in
, &pos_in
, len
);
1583 ret
= rw_verify_area(WRITE
, file_out
, &pos_out
, len
);
1587 if (!(file_in
->f_mode
& FMODE_READ
) ||
1588 !(file_out
->f_mode
& FMODE_WRITE
) ||
1589 (file_out
->f_flags
& O_APPEND
))
1592 /* this could be relaxed once a method supports cross-fs copies */
1593 if (inode_in
->i_sb
!= inode_out
->i_sb
)
1599 file_start_write(file_out
);
1602 * Try cloning first, this is supported by more file systems, and
1603 * more efficient if both clone and copy are supported (e.g. NFS).
1605 if (file_in
->f_op
->clone_file_range
) {
1606 ret
= file_in
->f_op
->clone_file_range(file_in
, pos_in
,
1607 file_out
, pos_out
, len
);
1614 if (file_out
->f_op
->copy_file_range
) {
1615 ret
= file_out
->f_op
->copy_file_range(file_in
, pos_in
, file_out
,
1616 pos_out
, len
, flags
);
1617 if (ret
!= -EOPNOTSUPP
)
1621 ret
= do_splice_direct(file_in
, &pos_in
, file_out
, &pos_out
,
1622 len
> MAX_RW_COUNT
? MAX_RW_COUNT
: len
, 0);
1626 fsnotify_access(file_in
);
1627 add_rchar(current
, ret
);
1628 fsnotify_modify(file_out
);
1629 add_wchar(current
, ret
);
1635 file_end_write(file_out
);
1639 EXPORT_SYMBOL(vfs_copy_file_range
);
1641 SYSCALL_DEFINE6(copy_file_range
, int, fd_in
, loff_t __user
*, off_in
,
1642 int, fd_out
, loff_t __user
*, off_out
,
1643 size_t, len
, unsigned int, flags
)
1649 ssize_t ret
= -EBADF
;
1651 f_in
= fdget(fd_in
);
1655 f_out
= fdget(fd_out
);
1661 if (copy_from_user(&pos_in
, off_in
, sizeof(loff_t
)))
1664 pos_in
= f_in
.file
->f_pos
;
1668 if (copy_from_user(&pos_out
, off_out
, sizeof(loff_t
)))
1671 pos_out
= f_out
.file
->f_pos
;
1674 ret
= vfs_copy_file_range(f_in
.file
, pos_in
, f_out
.file
, pos_out
, len
,
1681 if (copy_to_user(off_in
, &pos_in
, sizeof(loff_t
)))
1684 f_in
.file
->f_pos
= pos_in
;
1688 if (copy_to_user(off_out
, &pos_out
, sizeof(loff_t
)))
1691 f_out
.file
->f_pos
= pos_out
;
1703 static int clone_verify_area(struct file
*file
, loff_t pos
, u64 len
, bool write
)
1705 struct inode
*inode
= file_inode(file
);
1707 if (unlikely(pos
< 0))
1710 if (unlikely((loff_t
) (pos
+ len
) < 0))
1713 if (unlikely(inode
->i_flctx
&& mandatory_lock(inode
))) {
1714 loff_t end
= len
? pos
+ len
- 1 : OFFSET_MAX
;
1717 retval
= locks_mandatory_area(inode
, file
, pos
, end
,
1718 write
? F_WRLCK
: F_RDLCK
);
1723 return security_file_permission(file
, write
? MAY_WRITE
: MAY_READ
);
1727 * Check that the two inodes are eligible for cloning, the ranges make
1728 * sense, and then flush all dirty data. Caller must ensure that the
1729 * inodes have been locked against any other modifications.
1731 * Returns: 0 for "nothing to clone", 1 for "something to clone", or
1732 * the usual negative error code.
1734 int vfs_clone_file_prep_inodes(struct inode
*inode_in
, loff_t pos_in
,
1735 struct inode
*inode_out
, loff_t pos_out
,
1736 u64
*len
, bool is_dedupe
)
1738 loff_t bs
= inode_out
->i_sb
->s_blocksize
;
1741 bool same_inode
= (inode_in
== inode_out
);
1744 /* Don't touch certain kinds of inodes */
1745 if (IS_IMMUTABLE(inode_out
))
1748 if (IS_SWAPFILE(inode_in
) || IS_SWAPFILE(inode_out
))
1751 /* Don't reflink dirs, pipes, sockets... */
1752 if (S_ISDIR(inode_in
->i_mode
) || S_ISDIR(inode_out
->i_mode
))
1754 if (!S_ISREG(inode_in
->i_mode
) || !S_ISREG(inode_out
->i_mode
))
1757 /* Are we going all the way to the end? */
1758 isize
= i_size_read(inode_in
);
1762 /* Zero length dedupe exits immediately; reflink goes to EOF. */
1764 if (is_dedupe
|| pos_in
== isize
)
1768 *len
= isize
- pos_in
;
1771 /* Ensure offsets don't wrap and the input is inside i_size */
1772 if (pos_in
+ *len
< pos_in
|| pos_out
+ *len
< pos_out
||
1773 pos_in
+ *len
> isize
)
1776 /* Don't allow dedupe past EOF in the dest file */
1780 disize
= i_size_read(inode_out
);
1781 if (pos_out
>= disize
|| pos_out
+ *len
> disize
)
1785 /* If we're linking to EOF, continue to the block boundary. */
1786 if (pos_in
+ *len
== isize
)
1787 blen
= ALIGN(isize
, bs
) - pos_in
;
1791 /* Only reflink if we're aligned to block boundaries */
1792 if (!IS_ALIGNED(pos_in
, bs
) || !IS_ALIGNED(pos_in
+ blen
, bs
) ||
1793 !IS_ALIGNED(pos_out
, bs
) || !IS_ALIGNED(pos_out
+ blen
, bs
))
1796 /* Don't allow overlapped reflink within the same file */
1798 if (pos_out
+ blen
> pos_in
&& pos_out
< pos_in
+ blen
)
1802 /* Wait for the completion of any pending IOs on both files */
1803 inode_dio_wait(inode_in
);
1805 inode_dio_wait(inode_out
);
1807 ret
= filemap_write_and_wait_range(inode_in
->i_mapping
,
1808 pos_in
, pos_in
+ *len
- 1);
1812 ret
= filemap_write_and_wait_range(inode_out
->i_mapping
,
1813 pos_out
, pos_out
+ *len
- 1);
1818 * Check that the extents are the same.
1821 bool is_same
= false;
1823 ret
= vfs_dedupe_file_range_compare(inode_in
, pos_in
,
1824 inode_out
, pos_out
, *len
, &is_same
);
1833 EXPORT_SYMBOL(vfs_clone_file_prep_inodes
);
1835 int vfs_clone_file_range(struct file
*file_in
, loff_t pos_in
,
1836 struct file
*file_out
, loff_t pos_out
, u64 len
)
1838 struct inode
*inode_in
= file_inode(file_in
);
1839 struct inode
*inode_out
= file_inode(file_out
);
1842 if (S_ISDIR(inode_in
->i_mode
) || S_ISDIR(inode_out
->i_mode
))
1844 if (!S_ISREG(inode_in
->i_mode
) || !S_ISREG(inode_out
->i_mode
))
1848 * FICLONE/FICLONERANGE ioctls enforce that src and dest files are on
1849 * the same mount. Practically, they only need to be on the same file
1852 if (inode_in
->i_sb
!= inode_out
->i_sb
)
1855 if (!(file_in
->f_mode
& FMODE_READ
) ||
1856 !(file_out
->f_mode
& FMODE_WRITE
) ||
1857 (file_out
->f_flags
& O_APPEND
))
1860 if (!file_in
->f_op
->clone_file_range
)
1863 ret
= clone_verify_area(file_in
, pos_in
, len
, false);
1867 ret
= clone_verify_area(file_out
, pos_out
, len
, true);
1871 if (pos_in
+ len
> i_size_read(inode_in
))
1874 ret
= file_in
->f_op
->clone_file_range(file_in
, pos_in
,
1875 file_out
, pos_out
, len
);
1877 fsnotify_access(file_in
);
1878 fsnotify_modify(file_out
);
1883 EXPORT_SYMBOL(vfs_clone_file_range
);
1886 * Read a page's worth of file data into the page cache. Return the page
1889 static struct page
*vfs_dedupe_get_page(struct inode
*inode
, loff_t offset
)
1891 struct address_space
*mapping
;
1895 n
= offset
>> PAGE_SHIFT
;
1896 mapping
= inode
->i_mapping
;
1897 page
= read_mapping_page(mapping
, n
, NULL
);
1900 if (!PageUptodate(page
)) {
1902 return ERR_PTR(-EIO
);
1909 * Compare extents of two files to see if they are the same.
1910 * Caller must have locked both inodes to prevent write races.
1912 int vfs_dedupe_file_range_compare(struct inode
*src
, loff_t srcoff
,
1913 struct inode
*dest
, loff_t destoff
,
1914 loff_t len
, bool *is_same
)
1920 struct page
*src_page
;
1921 struct page
*dest_page
;
1929 src_poff
= srcoff
& (PAGE_SIZE
- 1);
1930 dest_poff
= destoff
& (PAGE_SIZE
- 1);
1931 cmp_len
= min(PAGE_SIZE
- src_poff
,
1932 PAGE_SIZE
- dest_poff
);
1933 cmp_len
= min(cmp_len
, len
);
1937 src_page
= vfs_dedupe_get_page(src
, srcoff
);
1938 if (IS_ERR(src_page
)) {
1939 error
= PTR_ERR(src_page
);
1942 dest_page
= vfs_dedupe_get_page(dest
, destoff
);
1943 if (IS_ERR(dest_page
)) {
1944 error
= PTR_ERR(dest_page
);
1945 unlock_page(src_page
);
1949 src_addr
= kmap_atomic(src_page
);
1950 dest_addr
= kmap_atomic(dest_page
);
1952 flush_dcache_page(src_page
);
1953 flush_dcache_page(dest_page
);
1955 if (memcmp(src_addr
+ src_poff
, dest_addr
+ dest_poff
, cmp_len
))
1958 kunmap_atomic(dest_addr
);
1959 kunmap_atomic(src_addr
);
1960 unlock_page(dest_page
);
1961 unlock_page(src_page
);
1962 put_page(dest_page
);
1979 EXPORT_SYMBOL(vfs_dedupe_file_range_compare
);
1981 int vfs_dedupe_file_range(struct file
*file
, struct file_dedupe_range
*same
)
1983 struct file_dedupe_range_info
*info
;
1984 struct inode
*src
= file_inode(file
);
1989 bool is_admin
= capable(CAP_SYS_ADMIN
);
1990 u16 count
= same
->dest_count
;
1991 struct file
*dst_file
;
1995 if (!(file
->f_mode
& FMODE_READ
))
1998 if (same
->reserved1
|| same
->reserved2
)
2001 off
= same
->src_offset
;
2002 len
= same
->src_length
;
2005 if (S_ISDIR(src
->i_mode
))
2009 if (!S_ISREG(src
->i_mode
))
2012 ret
= clone_verify_area(file
, off
, len
, false);
2017 if (off
+ len
> i_size_read(src
))
2020 /* pre-format output fields to sane values */
2021 for (i
= 0; i
< count
; i
++) {
2022 same
->info
[i
].bytes_deduped
= 0ULL;
2023 same
->info
[i
].status
= FILE_DEDUPE_RANGE_SAME
;
2026 for (i
= 0, info
= same
->info
; i
< count
; i
++, info
++) {
2028 struct fd dst_fd
= fdget(info
->dest_fd
);
2030 dst_file
= dst_fd
.file
;
2032 info
->status
= -EBADF
;
2035 dst
= file_inode(dst_file
);
2037 ret
= mnt_want_write_file(dst_file
);
2043 dst_off
= info
->dest_offset
;
2044 ret
= clone_verify_area(dst_file
, dst_off
, len
, true);
2051 if (info
->reserved
) {
2052 info
->status
= -EINVAL
;
2053 } else if (!(is_admin
|| (dst_file
->f_mode
& FMODE_WRITE
))) {
2054 info
->status
= -EINVAL
;
2055 } else if (file
->f_path
.mnt
!= dst_file
->f_path
.mnt
) {
2056 info
->status
= -EXDEV
;
2057 } else if (S_ISDIR(dst
->i_mode
)) {
2058 info
->status
= -EISDIR
;
2059 } else if (dst_file
->f_op
->dedupe_file_range
== NULL
) {
2060 info
->status
= -EINVAL
;
2062 deduped
= dst_file
->f_op
->dedupe_file_range(file
, off
,
2065 if (deduped
== -EBADE
)
2066 info
->status
= FILE_DEDUPE_RANGE_DIFFERS
;
2067 else if (deduped
< 0)
2068 info
->status
= deduped
;
2070 info
->bytes_deduped
+= deduped
;
2074 mnt_drop_write_file(dst_file
);
2078 if (fatal_signal_pending(current
))
2085 EXPORT_SYMBOL(vfs_dedupe_file_range
);