diff options
author | Andy Lutomirski <luto@amacapital.net> | 2015-02-12 18:01:14 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-12 21:54:12 -0500 |
commit | f56141e3e2d9aabf7e6b89680ab572c2cdbb2a24 (patch) | |
tree | 481e3d99bc1121ce75d505d340153b9d158e60c5 /arch/mn10300 | |
parent | edc924e023ae2022fc29f1246e115c610c9abf38 (diff) |
all arches, signal: move restart_block to struct task_struct
If an attacker can cause a controlled kernel stack overflow, overwriting
the restart block is a very juicy exploit target. This is because the
restart_block is held in the same memory allocation as the kernel stack.
Moving the restart block to struct task_struct prevents this exploit by
making the restart_block harder to locate.
Note that there are other fields in thread_info that are also easy
targets, at least on some architectures.
It's also a decent simplification, since the restart code is more or less
identical on all architectures.
[james.hogan@imgtec.com: metag: align thread_info::supervisor_stack]
Signed-off-by: Andy Lutomirski <luto@amacapital.net>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Kees Cook <keescook@chromium.org>
Cc: David Miller <davem@davemloft.net>
Acked-by: Richard Weinberger <richard@nod.at>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Matt Turner <mattst88@gmail.com>
Cc: Vineet Gupta <vgupta@synopsys.com>
Cc: Russell King <rmk@arm.linux.org.uk>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will.deacon@arm.com>
Cc: Haavard Skinnemoen <hskinnemoen@gmail.com>
Cc: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Cc: Steven Miao <realmz6@gmail.com>
Cc: Mark Salter <msalter@redhat.com>
Cc: Aurelien Jacquiot <a-jacquiot@ti.com>
Cc: Mikael Starvik <starvik@axis.com>
Cc: Jesper Nilsson <jesper.nilsson@axis.com>
Cc: David Howells <dhowells@redhat.com>
Cc: Richard Kuo <rkuo@codeaurora.org>
Cc: "Luck, Tony" <tony.luck@intel.com>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Michal Simek <monstr@monstr.eu>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Jonas Bonn <jonas@southpole.se>
Cc: "James E.J. Bottomley" <jejb@parisc-linux.org>
Cc: Helge Deller <deller@gmx.de>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Acked-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc)
Tested-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc)
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: Chen Liqin <liqin.linux@gmail.com>
Cc: Lennox Wu <lennox.wu@gmail.com>
Cc: Chris Metcalf <cmetcalf@ezchip.com>
Cc: Guan Xuetao <gxt@mprc.pku.edu.cn>
Cc: Chris Zankel <chris@zankel.net>
Cc: Max Filippov <jcmvbkbc@gmail.com>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/mn10300')
-rw-r--r-- | arch/mn10300/include/asm/thread_info.h | 4 | ||||
-rw-r--r-- | arch/mn10300/kernel/asm-offsets.c | 1 | ||||
-rw-r--r-- | arch/mn10300/kernel/signal.c | 2 |
3 files changed, 1 insertions, 6 deletions
diff --git a/arch/mn10300/include/asm/thread_info.h b/arch/mn10300/include/asm/thread_info.h index bf280eaccd36..c1c374f0ec12 100644 --- a/arch/mn10300/include/asm/thread_info.h +++ b/arch/mn10300/include/asm/thread_info.h | |||
@@ -50,7 +50,6 @@ struct thread_info { | |||
50 | 0-0xBFFFFFFF for user-thead | 50 | 0-0xBFFFFFFF for user-thead |
51 | 0-0xFFFFFFFF for kernel-thread | 51 | 0-0xFFFFFFFF for kernel-thread |
52 | */ | 52 | */ |
53 | struct restart_block restart_block; | ||
54 | 53 | ||
55 | __u8 supervisor_stack[0]; | 54 | __u8 supervisor_stack[0]; |
56 | }; | 55 | }; |
@@ -80,9 +79,6 @@ struct thread_info { | |||
80 | .cpu = 0, \ | 79 | .cpu = 0, \ |
81 | .preempt_count = INIT_PREEMPT_COUNT, \ | 80 | .preempt_count = INIT_PREEMPT_COUNT, \ |
82 | .addr_limit = KERNEL_DS, \ | 81 | .addr_limit = KERNEL_DS, \ |
83 | .restart_block = { \ | ||
84 | .fn = do_no_restart_syscall, \ | ||
85 | }, \ | ||
86 | } | 82 | } |
87 | 83 | ||
88 | #define init_thread_info (init_thread_union.thread_info) | 84 | #define init_thread_info (init_thread_union.thread_info) |
diff --git a/arch/mn10300/kernel/asm-offsets.c b/arch/mn10300/kernel/asm-offsets.c index 47b3bb0c04ff..d780670cbaf3 100644 --- a/arch/mn10300/kernel/asm-offsets.c +++ b/arch/mn10300/kernel/asm-offsets.c | |||
@@ -28,7 +28,6 @@ void foo(void) | |||
28 | OFFSET(TI_cpu, thread_info, cpu); | 28 | OFFSET(TI_cpu, thread_info, cpu); |
29 | OFFSET(TI_preempt_count, thread_info, preempt_count); | 29 | OFFSET(TI_preempt_count, thread_info, preempt_count); |
30 | OFFSET(TI_addr_limit, thread_info, addr_limit); | 30 | OFFSET(TI_addr_limit, thread_info, addr_limit); |
31 | OFFSET(TI_restart_block, thread_info, restart_block); | ||
32 | BLANK(); | 31 | BLANK(); |
33 | 32 | ||
34 | OFFSET(REG_D0, pt_regs, d0); | 33 | OFFSET(REG_D0, pt_regs, d0); |
diff --git a/arch/mn10300/kernel/signal.c b/arch/mn10300/kernel/signal.c index a6c0858592c3..8609845f12c5 100644 --- a/arch/mn10300/kernel/signal.c +++ b/arch/mn10300/kernel/signal.c | |||
@@ -40,7 +40,7 @@ static int restore_sigcontext(struct pt_regs *regs, | |||
40 | unsigned int err = 0; | 40 | unsigned int err = 0; |
41 | 41 | ||
42 | /* Always make any pending restarted system calls return -EINTR */ | 42 | /* Always make any pending restarted system calls return -EINTR */ |
43 | current_thread_info()->restart_block.fn = do_no_restart_syscall; | 43 | current->restart_block.fn = do_no_restart_syscall; |
44 | 44 | ||
45 | if (is_using_fpu(current)) | 45 | if (is_using_fpu(current)) |
46 | fpu_kill_state(current); | 46 | fpu_kill_state(current); |