]> git.karo-electronics.de Git - karo-tx-linux.git/commit
proc: protect mm start_code/end_code in /proc/pid/stat
authorKees Cook <kees.cook@canonical.com>
Wed, 23 Mar 2011 23:42:53 +0000 (16:42 -0700)
committerWilly Tarreau <w@1wt.eu>
Sat, 30 Apr 2011 14:53:22 +0000 (16:53 +0200)
commit233d858fcbd5e9a3d26e52baae3a30c4579c070d
treedd52530451aed476eeabc67db102515542384793
parent9bc945920059c8bec8ba2e7f7aabba5135569a55
proc: protect mm start_code/end_code in /proc/pid/stat

commit 5883f57ca0008ffc93e09cbb9847a1928e50c6f3 upstream.

While mm->start_stack was protected from cross-uid viewing (commit
f83ce3e6b02d5 ("proc: avoid information leaks to non-privileged
processes")), the start_code and end_code values were not.  This would
allow the text location of a PIE binary to leak, defeating ASLR.

Note that the value "1" is used instead of "0" for a protected value since
"ps", "killall", and likely other readers of /proc/pid/stat, take
start_code of "0" to mean a kernel thread and will misbehave.  Thanks to
Brad Spengler for pointing this out.

Addresses CVE-2011-0726

Signed-off-by: Kees Cook <kees.cook@canonical.com>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Cc: David Howells <dhowells@redhat.com>
Cc: Eugene Teo <eugeneteo@kernel.sg>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Brad Spengler <spender@grsecurity.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
fs/proc/array.c