aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/mm/fault.c7
-rw-r--r--include/linux/magic.h1
-rw-r--r--include/linux/sched.h13
-rw-r--r--kernel/exit.c5
-rw-r--r--kernel/fork.c5
-rw-r--r--kernel/sched.c7
6 files changed, 28 insertions, 10 deletions
diff --git a/arch/x86/mm/fault.c b/arch/x86/mm/fault.c
index fd7e1798c75a..1f524df68b96 100644
--- a/arch/x86/mm/fault.c
+++ b/arch/x86/mm/fault.c
@@ -25,6 +25,7 @@
25#include <linux/kprobes.h> 25#include <linux/kprobes.h>
26#include <linux/uaccess.h> 26#include <linux/uaccess.h>
27#include <linux/kdebug.h> 27#include <linux/kdebug.h>
28#include <linux/magic.h>
28 29
29#include <asm/system.h> 30#include <asm/system.h>
30#include <asm/desc.h> 31#include <asm/desc.h>
@@ -581,6 +582,8 @@ void __kprobes do_page_fault(struct pt_regs *regs, unsigned long error_code)
581 unsigned long address; 582 unsigned long address;
582 int write, si_code; 583 int write, si_code;
583 int fault; 584 int fault;
585 unsigned long *stackend;
586
584#ifdef CONFIG_X86_64 587#ifdef CONFIG_X86_64
585 unsigned long flags; 588 unsigned long flags;
586#endif 589#endif
@@ -850,6 +853,10 @@ no_context:
850 853
851 show_fault_oops(regs, error_code, address); 854 show_fault_oops(regs, error_code, address);
852 855
856 stackend = end_of_stack(tsk);
857 if (*stackend != STACK_END_MAGIC)
858 printk(KERN_ALERT "Thread overran stack, or stack corrupted\n");
859
853 tsk->thread.cr2 = address; 860 tsk->thread.cr2 = address;
854 tsk->thread.trap_no = 14; 861 tsk->thread.trap_no = 14;
855 tsk->thread.error_code = error_code; 862 tsk->thread.error_code = error_code;
diff --git a/include/linux/magic.h b/include/linux/magic.h
index 1fa0c2ce4dec..74e68e201166 100644
--- a/include/linux/magic.h
+++ b/include/linux/magic.h
@@ -42,4 +42,5 @@
42#define FUTEXFS_SUPER_MAGIC 0xBAD1DEA 42#define FUTEXFS_SUPER_MAGIC 0xBAD1DEA
43#define INOTIFYFS_SUPER_MAGIC 0x2BAD1DEA 43#define INOTIFYFS_SUPER_MAGIC 0x2BAD1DEA
44 44
45#define STACK_END_MAGIC 0x57AC6E9D
45#endif /* __LINUX_MAGIC_H__ */ 46#endif /* __LINUX_MAGIC_H__ */
diff --git a/include/linux/sched.h b/include/linux/sched.h
index d6a515158783..c5181e77f305 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -1969,6 +1969,19 @@ static inline unsigned long *end_of_stack(struct task_struct *p)
1969 1969
1970extern void thread_info_cache_init(void); 1970extern void thread_info_cache_init(void);
1971 1971
1972#ifdef CONFIG_DEBUG_STACK_USAGE
1973static inline unsigned long stack_not_used(struct task_struct *p)
1974{
1975 unsigned long *n = end_of_stack(p);
1976
1977 do { /* Skip over canary */
1978 n++;
1979 } while (!*n);
1980
1981 return (unsigned long)n - (unsigned long)end_of_stack(p);
1982}
1983#endif
1984
1972/* set thread flags in other task's structures 1985/* set thread flags in other task's structures
1973 * - see asm/thread_info.h for TIF_xxxx flags available 1986 * - see asm/thread_info.h for TIF_xxxx flags available
1974 */ 1987 */
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));