@@ -224,6 +224,7 @@ static long ioctl_file_clone(struct file *dst_file, unsigned long srcfd,
{
struct fd src_file = fdget(srcfd);
loff_t cloned;
+ unsigned int remap_flags = olen == 0 ? RFR_TO_SRC_EOF : 0;
int ret;
if (!src_file.file)
@@ -232,7 +233,7 @@ static long ioctl_file_clone(struct file *dst_file, unsigned long srcfd,
if (src_file.file->f_path.mnt != dst_file->f_path.mnt)
goto fdput;
cloned = vfs_clone_file_range(src_file.file, off, dst_file, destoff,
- olen, 0);
+ olen, remap_flags);
if (cloned < 0)
ret = cloned;
else if (olen && cloned != olen)
@@ -542,8 +542,10 @@ __be32 nfsd4_clone_file_range(struct file *src, u64 src_pos, struct file *dst,
u64 dst_pos, u64 count)
{
loff_t cloned;
+ unsigned int remap_flags = count == 0 ? RFR_TO_SRC_EOF : 0;
- cloned = vfs_clone_file_range(src, src_pos, dst, dst_pos, count, 0);
+ cloned = vfs_clone_file_range(src, src_pos, dst, dst_pos, count,
+ remap_flags);
if (count && cloned != count)
cloned = -EINVAL;
return nfserrno(cloned < 0 ? cloned : 0);
@@ -1746,15 +1746,18 @@ int generic_remap_file_range_prep(struct file *file_in, loff_t pos_in,
if (!S_ISREG(inode_in->i_mode) || !S_ISREG(inode_out->i_mode))
return -EINVAL;
- /* Zero length dedupe exits immediately; reflink goes to EOF. */
- if (*len == 0) {
+ /*
+ * If the caller asked to go all the way to the end of the source file,
+ * set *len now that we have the file locked.
+ */
+ if (remap_flags & RFR_TO_SRC_EOF) {
loff_t isize = i_size_read(inode_in);
- if (is_dedupe || pos_in == isize)
- return 0;
if (pos_in > isize)
return -EINVAL;
*len = isize - pos_in;
+ if (*len == 0)
+ return 0;
}
/* Check that we don't violate system file offset limits. */
@@ -1844,7 +1847,7 @@ loff_t do_clone_file_range(struct file *file_in, loff_t pos_in,
struct inode *inode_out = file_inode(file_out);
loff_t ret;
- WARN_ON_ONCE(remap_flags);
+ WARN_ON_ONCE(remap_flags & ~(RFR_TO_SRC_EOF));
if (S_ISDIR(inode_in->i_mode) || S_ISDIR(inode_out->i_mode))
return -EISDIR;
@@ -1725,10 +1725,15 @@ struct block_device_operations;
* These flags control the behavior of the remap_file_range function pointer.
*
* RFR_SAME_DATA: only remap if contents identical (i.e. deduplicate)
+ * RFR_TO_SRC_EOF: remap to the end of the source file
*/
#define RFR_SAME_DATA (1 << 0)
+#define RFR_TO_SRC_EOF (1 << 1)
-#define RFR_VALID_FLAGS (RFR_SAME_DATA)
+#define RFR_VALID_FLAGS (RFR_SAME_DATA | RFR_TO_SRC_EOF)
+
+/* Implemented by the VFS, so these are advisory. */
+#define RFR_VFS_FLAGS (RFR_TO_SRC_EOF)
/*
* Filesystem remapping implementations should call this helper on their
@@ -1739,6 +1744,7 @@ struct block_device_operations;
static inline bool remap_check_flags(unsigned int remap_flags,
unsigned int supported_flags)
{
+ remap_flags &= ~RFR_VFS_FLAGS;
return (remap_flags & ~(supported_flags & RFR_VALID_FLAGS)) == 0;
}