[PATCH v2 3/3] cifs: fix loff_t underflow in cifs_remap_file_range() when len == 0
Frank Sorenson <[email protected]>
| Newsgroups | org.kernel.vger.stable,org.kernel.vger.linux-cifs |
|---|---|
| Message-ID | <[email protected]> |
When cifs_remap_file_range() is called with len == 0 (the clone-to-EOF
semantic), it computes the effective length as:
len = src_inode->i_size - off;
If off >= src_inode->i_size, this produces a negative loff_t that
corrupts all downstream arithmetic: filemap_write_and_wait_range() is
called with a wrapped range, and the ByteCount in the
FSCTL_DUPLICATE_EXTENTS_TO_FILE buffer receives a huge value, potentially
causing the server to attempt a multi-terabyte clone.
There is already a check for off >= src_inode->i_size at the point
where -EOPNOTSUPP is remapped to -EINVAL, but that is reached only
after the ioctl has already been sent with the corrupted length.
lock_two_nondirectories() is held at this point (i_rwsem write on both
inodes), so i_size_read() is stable. Add an early bounds check inside
the len == 0 branch and return -EINVAL via the unlock path if off is at
or beyond EOF.
Fixes: 04b38d601239 ("vfs: pull btrfs clone API to vfs layer")
Cc: [email protected]
Signed-off-by: Frank Sorenson <[email protected]>
---
fs/smb/client/cifsfs.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/fs/smb/client/cifsfs.c b/fs/smb/client/cifsfs.c
index a1dacc7d8f74..c8e2347aba5d 100644
--- a/fs/smb/client/cifsfs.c
+++ b/fs/smb/client/cifsfs.c
@@ -1413,8 +1413,13 @@ static loff_t cifs_remap_file_range(struct file *src_file, loff_t off,
*/
lock_two_nondirectories(target_inode, src_inode);
- if (len == 0)
+ if (len == 0) {
+ if (off >= i_size_read(src_inode)) {
+ rc = -EINVAL;
+ goto unlock;
+ }
len = src_inode->i_size - off;
+ }
cifs_dbg(FYI, "clone range\n");
--
2.55.0