From: Peter Zijlstra <pet...@infradead.org> [ Upstream commit 9b8bd476e78e89c9ea26c3b435ad0201c3d7dbf5 ]
Identical to __put_user(); the __get_user() argument evalution will too leak UBSAN crud into the __uaccess_begin() / __uaccess_end() region. While uncommon this was observed to happen for: drivers/xen/gntdev.c: if (__get_user(old_status, batch->status[i])) where UBSAN added array bound checking. This complements commit: 6ae865615fc4 ("x86/uaccess: Dont leak the AC flag into __put_user() argument evaluation") Tested-by Sedat Dilek <sedat.di...@gmail.com> Reported-by: Randy Dunlap <rdun...@infradead.org> Signed-off-by: Peter Zijlstra (Intel) <pet...@infradead.org> Reviewed-by: Josh Poimboeuf <jpoim...@redhat.com> Reviewed-by: Thomas Gleixner <t...@linutronix.de> Cc: broo...@kernel.org Cc: s...@canb.auug.org.au Cc: a...@linux-foundation.org Cc: Randy Dunlap <rdun...@infradead.org> Cc: mho...@suse.cz Cc: Josh Poimboeuf <jpoim...@redhat.com> Link: https://lkml.kernel.org/r/20190829082445.gm2...@hirez.programming.kicks-ass.net Signed-off-by: Sasha Levin <sas...@kernel.org> --- arch/x86/include/asm/uaccess.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/arch/x86/include/asm/uaccess.h b/arch/x86/include/asm/uaccess.h index c82abd6e4ca39..869794bd0fd98 100644 --- a/arch/x86/include/asm/uaccess.h +++ b/arch/x86/include/asm/uaccess.h @@ -442,8 +442,10 @@ __pu_label: \ ({ \ int __gu_err; \ __inttype(*(ptr)) __gu_val; \ + __typeof__(ptr) __gu_ptr = (ptr); \ + __typeof__(size) __gu_size = (size); \ __uaccess_begin_nospec(); \ - __get_user_size(__gu_val, (ptr), (size), __gu_err, -EFAULT); \ + __get_user_size(__gu_val, __gu_ptr, __gu_size, __gu_err, -EFAULT); \ __uaccess_end(); \ (x) = (__force __typeof__(*(ptr)))__gu_val; \ __builtin_expect(__gu_err, 0); \ -- 2.20.1