diff options
author | Eric Sandeen <sandeen@sandeen.net> | 2008-04-22 17:38:23 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-26 10:15:33 -0400 |
commit | 7c9f8861e6c9c839f913e49b98c3854daca18f27 (patch) | |
tree | 220b23dff1aa11a83546fbc73a319575ca489188 /kernel | |
parent | b40a4392a3c262e0d1b5379b4e142a8eefa63439 (diff) |
stackprotector: use canary at end of stack to indicate overruns at oops time
(Updated with a common max-stack-used checker that knows about
the canary, as suggested by Joe Perches)
Use a canary at the end of the stack to clearly indicate
at oops time whether the stack has ever overflowed.
This is a very simple implementation with a couple of
drawbacks:
1) a thread may legitimately use exactly up to the last
word on the stack
-- but the chances of doing this and then oopsing later seem slim
2) it's possible that the stack usage isn't dense enough
that the canary location could get skipped over
-- but the worst that happens is that we don't flag the overrun
-- though this happens fairly often in my testing :(
With the code in place, an intentionally-bloated stack oops might
do:
BUG: unable to handle kernel paging request at ffff8103f84cc680
IP: [<ffffffff810253df>] update_curr+0x9a/0xa8
PGD 8063 PUD 0
Thread overran stack or stack corrupted
Oops: 0000 [1] SMP
CPU 0
...
... unless the stack overrun is so bad that it corrupts some other
thread.
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/exit.c | 5 | ||||
-rw-r--r-- | kernel/fork.c | 5 | ||||
-rw-r--r-- | kernel/sched.c | 7 |
3 files changed, 7 insertions, 10 deletions
diff --git a/kernel/exit.c b/kernel/exit.c index 8f6185e69b69..fb8de6cbf2c7 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
@@ -899,12 +899,9 @@ static void check_stack_usage(void) | |||
899 | { | 899 | { |
900 | static DEFINE_SPINLOCK(low_water_lock); | 900 | static DEFINE_SPINLOCK(low_water_lock); |
901 | static int lowest_to_date = THREAD_SIZE; | 901 | static int lowest_to_date = THREAD_SIZE; |
902 | unsigned long *n = end_of_stack(current); | ||
903 | unsigned long free; | 902 | unsigned long free; |
904 | 903 | ||
905 | while (*n == 0) | 904 | free = stack_not_used(current); |
906 | n++; | ||
907 | free = (unsigned long)n - (unsigned long)end_of_stack(current); | ||
908 | 905 | ||
909 | if (free >= lowest_to_date) | 906 | if (free >= lowest_to_date) |
910 | return; | 907 | return; |
diff --git a/kernel/fork.c b/kernel/fork.c index 19908b26cf80..d428336e7aa1 100644 --- a/kernel/fork.c +++ b/kernel/fork.c | |||
@@ -54,6 +54,7 @@ | |||
54 | #include <linux/tty.h> | 54 | #include <linux/tty.h> |
55 | #include <linux/proc_fs.h> | 55 | #include <linux/proc_fs.h> |
56 | #include <linux/blkdev.h> | 56 | #include <linux/blkdev.h> |
57 | #include <linux/magic.h> | ||
57 | 58 | ||
58 | #include <asm/pgtable.h> | 59 | #include <asm/pgtable.h> |
59 | #include <asm/pgalloc.h> | 60 | #include <asm/pgalloc.h> |
@@ -186,6 +187,8 @@ static struct task_struct *dup_task_struct(struct task_struct *orig) | |||
186 | { | 187 | { |
187 | struct task_struct *tsk; | 188 | struct task_struct *tsk; |
188 | struct thread_info *ti; | 189 | struct thread_info *ti; |
190 | unsigned long *stackend; | ||
191 | |||
189 | int err; | 192 | int err; |
190 | 193 | ||
191 | prepare_to_copy(orig); | 194 | prepare_to_copy(orig); |
@@ -211,6 +214,8 @@ static struct task_struct *dup_task_struct(struct task_struct *orig) | |||
211 | goto out; | 214 | goto out; |
212 | 215 | ||
213 | setup_thread_stack(tsk, orig); | 216 | setup_thread_stack(tsk, orig); |
217 | stackend = end_of_stack(tsk); | ||
218 | *stackend = STACK_END_MAGIC; /* for overflow detection */ | ||
214 | 219 | ||
215 | #ifdef CONFIG_CC_STACKPROTECTOR | 220 | #ifdef CONFIG_CC_STACKPROTECTOR |
216 | tsk->stack_canary = get_random_int(); | 221 | tsk->stack_canary = get_random_int(); |
diff --git a/kernel/sched.c b/kernel/sched.c index cfa222a91539..a964ed945094 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -5748,12 +5748,7 @@ void sched_show_task(struct task_struct *p) | |||
5748 | printk(KERN_CONT " %016lx ", thread_saved_pc(p)); | 5748 | printk(KERN_CONT " %016lx ", thread_saved_pc(p)); |
5749 | #endif | 5749 | #endif |
5750 | #ifdef CONFIG_DEBUG_STACK_USAGE | 5750 | #ifdef CONFIG_DEBUG_STACK_USAGE |
5751 | { | 5751 | free = stack_not_used(p); |
5752 | unsigned long *n = end_of_stack(p); | ||
5753 | while (!*n) | ||
5754 | n++; | ||
5755 | free = (unsigned long)n - (unsigned long)end_of_stack(p); | ||
5756 | } | ||
5757 | #endif | 5752 | #endif |
5758 | printk(KERN_CONT "%5lu %5d %6d\n", free, | 5753 | printk(KERN_CONT "%5lu %5d %6d\n", free, |
5759 | task_pid_nr(p), task_pid_nr(p->real_parent)); | 5754 | task_pid_nr(p), task_pid_nr(p->real_parent)); |