From: Al Viro Date: Thu, 18 Aug 2016 03:19:01 +0000 (-0400) Subject: asm-generic: make get_user() clear the destination on errors X-Git-Tag: v4.4.22~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c6a4404dc27411fe3f1876dbf21f1839bcc207c1;p=profile%2Fcommon%2Fplatform%2Fkernel%2Flinux-artik7.git asm-generic: make get_user() clear the destination on errors commit 9ad18b75c2f6e4a78ce204e79f37781f8815c0fa upstream. both for access_ok() failures and for faults halfway through Signed-off-by: Al Viro Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/asm-generic/uaccess.h b/include/asm-generic/uaccess.h index 1bfa602..c0019f7 100644 --- a/include/asm-generic/uaccess.h +++ b/include/asm-generic/uaccess.h @@ -230,14 +230,18 @@ extern int __put_user_bad(void) __attribute__((noreturn)); might_fault(); \ access_ok(VERIFY_READ, __p, sizeof(*ptr)) ? \ __get_user((x), (__typeof__(*(ptr)) *)__p) : \ - -EFAULT; \ + ((x) = (__typeof__(*(ptr)))0,-EFAULT); \ }) #ifndef __get_user_fn static inline int __get_user_fn(size_t size, const void __user *ptr, void *x) { - size = __copy_from_user(x, ptr, size); - return size ? -EFAULT : size; + size_t n = __copy_from_user(x, ptr, size); + if (unlikely(n)) { + memset(x + (size - n), 0, n); + return -EFAULT; + } + return 0; } #define __get_user_fn(sz, u, k) __get_user_fn(sz, u, k)