summaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
authorAmir Goldstein <amir73il@gmail.com>2019-06-05 11:04:49 -0400
committerDarrick J. Wong <darrick.wong@oracle.com>2019-06-09 13:06:19 -0400
commit96e6e8f4a68df2d94800311163faa67124df24e5 (patch)
tree42b63675c58ce53f9896daf674937625e71a684d /include/linux/fs.h
parent646955cd5425dd8fed8205cbb1b4373c222d028e (diff)
vfs: add missing checks to copy_file_range
Like the clone and dedupe interfaces we've recently fixed, the copy_file_range() implementation is missing basic sanity, limits and boundary condition tests on the parameters that are passed to it from userspace. Create a new "generic_copy_file_checks()" function modelled on the generic_remap_checks() function to provide this missing functionality. [Amir] Shorten copy length instead of checking pos_in limits because input file size already abides by the limits. Signed-off-by: Dave Chinner <dchinner@redhat.com> Signed-off-by: Amir Goldstein <amir73il@gmail.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 89b9b73eb581..e4d382c4342a 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -3050,6 +3050,9 @@ extern int generic_remap_checks(struct file *file_in, loff_t pos_in,
3050 struct file *file_out, loff_t pos_out, 3050 struct file *file_out, loff_t pos_out,
3051 loff_t *count, unsigned int remap_flags); 3051 loff_t *count, unsigned int remap_flags);
3052extern int generic_file_rw_checks(struct file *file_in, struct file *file_out); 3052extern int generic_file_rw_checks(struct file *file_in, struct file *file_out);
3053extern int generic_copy_file_checks(struct file *file_in, loff_t pos_in,
3054 struct file *file_out, loff_t pos_out,
3055 size_t *count, unsigned int flags);
3053extern ssize_t generic_file_read_iter(struct kiocb *, struct iov_iter *); 3056extern ssize_t generic_file_read_iter(struct kiocb *, struct iov_iter *);
3054extern ssize_t __generic_file_write_iter(struct kiocb *, struct iov_iter *); 3057extern ssize_t __generic_file_write_iter(struct kiocb *, struct iov_iter *);
3055extern ssize_t generic_file_write_iter(struct kiocb *, struct iov_iter *); 3058extern ssize_t generic_file_write_iter(struct kiocb *, struct iov_iter *);