]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
Fix potential infoleak in older kernels
authorLinus Torvalds <torvalds@linux-foundation.org>
Tue, 8 Nov 2016 10:17:00 +0000 (11:17 +0100)
committerJiri Slaby <jslaby@suse.cz>
Thu, 24 Nov 2016 15:20:50 +0000 (16:20 +0100)
Not upstream as it is not needed there.

So a patch something like this might be a safe way to fix the
potential infoleak in older kernels.

THIS IS UNTESTED. It's a very obvious patch, though, so if it compiles
it probably works. It just initializes the output variable with 0 in
the inline asm description, instead of doing it in the exception
handler.

It will generate slightly worse code (a few unnecessary ALU
operations), but it doesn't have any interactions with the exception
handler implementation.

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
arch/x86/include/asm/uaccess.h

index 5838fa911aa03f25138e8996f755b0b4fde34e18..d4d6eb8c08a83f5c1c771a80beb275efb21e3d87 100644 (file)
@@ -384,7 +384,7 @@ do {                                                                        \
        asm volatile("1:        mov"itype" %1,%"rtype"0\n"              \
                     "2:\n"                                             \
                     _ASM_EXTABLE_EX(1b, 2b)                            \
-                    : ltype(x) : "m" (__m(addr)))
+                    : ltype(x) : "m" (__m(addr)), "0" (0))
 
 #define __put_user_nocheck(x, ptr, size)                       \
 ({                                                             \