[PATCH v3] vfs: add FILE_DEDUPE_RANGE_REPORT_PROGRESS flag to FIDEDUPERANGE
Matthias Goergens <[email protected]>
| Newsgroups | org.kernel.vger.linux-fsdevel,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
On success FIDEDUPERANGE reports the requested length in bytes_deduped even when the filesystem shortens a destination range and deduplicates fewer bytes. This predates the VFS hoisting of the ioctl (the btrfs ioctl behaved the same way), and changing the default would change an ABI that deployed consumers such as duperemove depend on: they advance their offsets by bytes_deduped and expect the historical semantics. Add a flag to opt into the truthful behaviour. With FILE_DEDUPE_RANGE_REPORT_PROGRESS set, bytes_deduped in each destination's info is an advance hint for the next call on that destination: - if status is an error, bytes_deduped is 0; - if status is FILE_DEDUPE_RANGE_DIFFERS, bytes_deduped is a safe advance step: one filesystem block, capped to the requested length so a sub-block request ending at EOF cannot be advanced past its end, and falling back to the requested length when the top-level inode reports a degenerate block size (stacked filesystems); - if status is FILE_DEDUPE_RANGE_SAME, bytes_deduped is the number of bytes actually deduplicated; - in both success cases a zero value means no further work is possible. Unknown flag bits are rejected. The flags field shares an anonymous union with the old reserved2 name, so existing source keeps compiling and the binary layout is unchanged; old kernels require the field to be zero, so new callers setting the flag on old kernels get -EINVAL rather than silently the old semantics. Suggested-by: Darrick J. Wong <[email protected]> Link: https://lore.kernel.org/linux-fsdevel/[email protected]/ Signed-off-by: Matthias Goergens <[email protected]> --- fs/remap_range.c | 25 +++++++++++++++++++++---- include/uapi/linux/fs.h | 5 ++++- 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/fs/remap_range.c b/fs/remap_range.c index 26afbbbfb10c2..ac88a81c12739 100644 --- a/fs/remap_range.c +++ b/fs/remap_range.c @@ -503,7 +503,7 @@ int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same) if (!(file->f_mode & FMODE_READ)) return -EINVAL; - if (same->reserved1 || same->reserved2) + if (same->reserved1 || (same->flags & ~FILE_DEDUPE_RANGE_REPORT_PROGRESS)) return -EINVAL; off = same->src_offset; @@ -551,12 +551,29 @@ int vfs_dedupe_file_range(struct file *file, struct file_dedupe_range *same) deduped = vfs_dedupe_file_range_one(file, off, fd_file(dst_fd), info->dest_offset, len, REMAP_FILE_CAN_SHORTEN); - if (deduped == -EBADE) + if (deduped == -EBADE) { info->status = FILE_DEDUPE_RANGE_DIFFERS; - else if (deduped < 0) + if (same->flags & FILE_DEDUPE_RANGE_REPORT_PROGRESS) { + u64 step = i_blocksize(src); + + /* + * Stacked filesystems (e.g. overlayfs) can + * report a degenerate block size here; a + * one-byte step would only misalign the + * next call, so advance past the whole + * request instead. + */ + if (step <= 1) + step = len; + info->bytes_deduped = min_t(u64, step, len); + } + } else if (deduped < 0) { info->status = deduped; - else + } else if (same->flags & FILE_DEDUPE_RANGE_REPORT_PROGRESS) { + info->bytes_deduped = deduped; + } else { info->bytes_deduped = len; + } next_loop: if (fatal_signal_pending(current)) diff --git a/include/uapi/linux/fs.h b/include/uapi/linux/fs.h index bd87262f2e349..471f698beaa93 100644 --- a/include/uapi/linux/fs.h +++ b/include/uapi/linux/fs.h @@ -178,13 +178,16 @@ struct file_dedupe_range_info { __u32 reserved; /* must be zero */ }; +/* flags for struct file_dedupe_range */ +#define FILE_DEDUPE_RANGE_REPORT_PROGRESS (1U << 0) + /* from struct btrfs_ioctl_file_extent_same_args */ struct file_dedupe_range { __u64 src_offset; /* in - start of extent in source */ __u64 src_length; /* in - length of extent */ __u16 dest_count; /* in - total elements in info array */ __u16 reserved1; /* must be zero */ - __u32 reserved2; /* must be zero */ + __u32 flags; /* in - FILE_DEDUPE_RANGE_* flags */ struct file_dedupe_range_info info[]; }; -- 2.55.0