Oops, I accidentally had accidentally added an extra parenthesis to my patch; sorry about that. I think I fixed the issue now and I added the "Reported-by" line to the new patch below. Is there anything else I need to do? Regards, Saagar Jha >From 4867a403decc364c8b0f4cb533bce8419e070e06 Mon Sep 17 00:00:00 2001 From: Saagar Jha <saagar@xxxxxxxxxxxxx> Date: Sun, 12 Jan 2020 21:46:28 -0800 Subject: [PATCH] vfs: prevent signed overflow by using u64 over loff_t 32-bit system calls taking a 64-bit offset that arrive as split over two 32-bit unsigned integers overflow the signed loff_t when shifted over by 32 bits. Using unsigned intermediate types fixes the undefined behavior. Reported-by: kbuild test robot <lkp@xxxxxxxxx> Signed-off-by: Saagar Jha <saagar@xxxxxxxxxxxxx> --- fs/read_write.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/fs/read_write.c b/fs/read_write.c index 5bbf587f5bc1..0f40eaa6c315 100644 --- a/fs/read_write.c +++ b/fs/read_write.c @@ -347,7 +347,7 @@ SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high, if (whence > SEEK_MAX) goto out_putf; - offset = vfs_llseek(f.file, ((loff_t) offset_high << 32) | offset_low, + offset = vfs_llseek(f.file, ((u64) offset_high << 32) | offset_low, whence); retval = (int)offset; @@ -1250,7 +1250,7 @@ COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd, const struct compat_iovec __user *,vec, compat_ulong_t, vlen, u32, pos_low, u32, pos_high) { - loff_t pos = ((loff_t)pos_high << 32) | pos_low; + loff_t pos = ((u64)pos_high << 32) | pos_low; return do_compat_preadv64(fd, vec, vlen, pos, 0); } @@ -1272,7 +1272,7 @@ COMPAT_SYSCALL_DEFINE6(preadv2, compat_ulong_t, fd, compat_ulong_t, vlen, u32, pos_low, u32, pos_high, rwf_t, flags) { - loff_t pos = ((loff_t)pos_high << 32) | pos_low; + loff_t pos = ((u64)pos_high << 32) | pos_low; if (pos == -1) return do_compat_readv(fd, vec, vlen, flags); @@ -1359,7 +1359,7 @@ COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd, const struct compat_iovec __user *,vec, compat_ulong_t, vlen, u32, pos_low, u32, pos_high) { - loff_t pos = ((loff_t)pos_high << 32) | pos_low; + loff_t pos = ((u64)pos_high << 32) | pos_low; return do_compat_pwritev64(fd, vec, vlen, pos, 0); } @@ -1380,7 +1380,7 @@ COMPAT_SYSCALL_DEFINE6(pwritev2, compat_ulong_t, fd, const struct compat_iovec __user *,vec, compat_ulong_t, vlen, u32, pos_low, u32, pos_high, rwf_t, flags) { - loff_t pos = ((loff_t)pos_high << 32) | pos_low; + loff_t pos = ((u64)pos_high << 32) | pos_low; if (pos == -1) return do_compat_writev(fd, vec, vlen, flags); -- 2.24.1