| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 |  *  Copyright (C) 1991, 1992  Linus Torvalds | 
 | 3 |  *  Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs | 
 | 4 |  * | 
 | 5 |  *  Pentium III FXSR, SSE support | 
 | 6 |  *	Gareth Hughes <gareth@valinux.com>, May 2000 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 |  */ | 
 | 8 |  | 
 | 9 | /* | 
 | 10 |  * 'Traps.c' handles hardware traps and faults after we have saved some | 
 | 11 |  * state in 'entry.S'. | 
 | 12 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/sched.h> | 
 | 14 | #include <linux/kernel.h> | 
 | 15 | #include <linux/string.h> | 
 | 16 | #include <linux/errno.h> | 
 | 17 | #include <linux/ptrace.h> | 
 | 18 | #include <linux/timer.h> | 
 | 19 | #include <linux/mm.h> | 
 | 20 | #include <linux/init.h> | 
 | 21 | #include <linux/delay.h> | 
 | 22 | #include <linux/spinlock.h> | 
 | 23 | #include <linux/interrupt.h> | 
| Randy Dunlap | 4b0ff1a | 2006-10-05 19:07:26 +0200 | [diff] [blame] | 24 | #include <linux/kallsyms.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/module.h> | 
 | 26 | #include <linux/moduleparam.h> | 
| akpm@osdl.org | 35faa71 | 2005-04-16 15:24:54 -0700 | [diff] [blame] | 27 | #include <linux/nmi.h> | 
| Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 28 | #include <linux/kprobes.h> | 
| Vivek Goyal | 8bcc528 | 2006-04-18 12:35:13 +0200 | [diff] [blame] | 29 | #include <linux/kexec.h> | 
| Jan Beulich | b538ed2 | 2006-06-26 13:57:32 +0200 | [diff] [blame] | 30 | #include <linux/unwind.h> | 
| Andi Kleen | ab2bf0c | 2006-12-07 02:14:06 +0100 | [diff] [blame] | 31 | #include <linux/uaccess.h> | 
| Jeremy Fitzhardinge | c31a0bf | 2006-12-08 02:36:22 -0800 | [diff] [blame] | 32 | #include <linux/bug.h> | 
| Christoph Hellwig | 1eeb66a | 2007-05-08 00:27:03 -0700 | [diff] [blame] | 33 | #include <linux/kdebug.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 |  | 
| Dave Jiang | c0d1217 | 2007-07-19 01:49:46 -0700 | [diff] [blame] | 35 | #if defined(CONFIG_EDAC) | 
 | 36 | #include <linux/edac.h> | 
 | 37 | #endif | 
 | 38 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <asm/system.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <asm/io.h> | 
 | 41 | #include <asm/atomic.h> | 
 | 42 | #include <asm/debugreg.h> | 
 | 43 | #include <asm/desc.h> | 
 | 44 | #include <asm/i387.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <asm/processor.h> | 
| Jan Beulich | b538ed2 | 2006-06-26 13:57:32 +0200 | [diff] [blame] | 46 | #include <asm/unwind.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <asm/smp.h> | 
 | 48 | #include <asm/pgalloc.h> | 
 | 49 | #include <asm/pda.h> | 
 | 50 | #include <asm/proto.h> | 
 | 51 | #include <asm/nmi.h> | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 52 | #include <asm/stacktrace.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | asmlinkage void divide_error(void); | 
 | 55 | asmlinkage void debug(void); | 
 | 56 | asmlinkage void nmi(void); | 
 | 57 | asmlinkage void int3(void); | 
 | 58 | asmlinkage void overflow(void); | 
 | 59 | asmlinkage void bounds(void); | 
 | 60 | asmlinkage void invalid_op(void); | 
 | 61 | asmlinkage void device_not_available(void); | 
 | 62 | asmlinkage void double_fault(void); | 
 | 63 | asmlinkage void coprocessor_segment_overrun(void); | 
 | 64 | asmlinkage void invalid_TSS(void); | 
 | 65 | asmlinkage void segment_not_present(void); | 
 | 66 | asmlinkage void stack_segment(void); | 
 | 67 | asmlinkage void general_protection(void); | 
 | 68 | asmlinkage void page_fault(void); | 
 | 69 | asmlinkage void coprocessor_error(void); | 
 | 70 | asmlinkage void simd_coprocessor_error(void); | 
 | 71 | asmlinkage void reserved(void); | 
 | 72 | asmlinkage void alignment_check(void); | 
 | 73 | asmlinkage void machine_check(void); | 
 | 74 | asmlinkage void spurious_interrupt_bug(void); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | static inline void conditional_sti(struct pt_regs *regs) | 
 | 77 | { | 
 | 78 | 	if (regs->eflags & X86_EFLAGS_IF) | 
 | 79 | 		local_irq_enable(); | 
 | 80 | } | 
 | 81 |  | 
| John Blackwood | a65d17c | 2006-02-12 14:34:58 -0800 | [diff] [blame] | 82 | static inline void preempt_conditional_sti(struct pt_regs *regs) | 
 | 83 | { | 
 | 84 | 	preempt_disable(); | 
 | 85 | 	if (regs->eflags & X86_EFLAGS_IF) | 
 | 86 | 		local_irq_enable(); | 
 | 87 | } | 
 | 88 |  | 
 | 89 | static inline void preempt_conditional_cli(struct pt_regs *regs) | 
 | 90 | { | 
 | 91 | 	if (regs->eflags & X86_EFLAGS_IF) | 
 | 92 | 		local_irq_disable(); | 
| Andi Kleen | 40e59a6 | 2006-05-15 18:19:47 +0200 | [diff] [blame] | 93 | 	/* Make sure to not schedule here because we could be running | 
 | 94 | 	   on an exception stack. */ | 
| John Blackwood | a65d17c | 2006-02-12 14:34:58 -0800 | [diff] [blame] | 95 | 	preempt_enable_no_resched(); | 
 | 96 | } | 
 | 97 |  | 
| Chuck Ebbert | 0741f4d | 2006-12-07 02:14:11 +0100 | [diff] [blame] | 98 | int kstack_depth_to_print = 12; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 |  | 
 | 100 | #ifdef CONFIG_KALLSYMS | 
| Ingo Molnar | 3ac9493 | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 101 | void printk_address(unsigned long address) | 
 | 102 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | 	unsigned long offset = 0, symsize; | 
 | 104 | 	const char *symname; | 
 | 105 | 	char *modname; | 
| Ingo Molnar | 3ac9493 | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 106 | 	char *delim = ":"; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | 	char namebuf[128]; | 
 | 108 |  | 
| Ingo Molnar | 3ac9493 | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 109 | 	symname = kallsyms_lookup(address, &symsize, &offset, | 
 | 110 | 					&modname, namebuf); | 
 | 111 | 	if (!symname) { | 
 | 112 | 		printk(" [<%016lx>]\n", address); | 
 | 113 | 		return; | 
 | 114 | 	} | 
 | 115 | 	if (!modname) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | 		modname = delim = ""; 		 | 
| Ingo Molnar | 3ac9493 | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 117 | 	printk(" [<%016lx>] %s%s%s%s+0x%lx/0x%lx\n", | 
 | 118 | 		address, delim, modname, delim, symname, offset, symsize); | 
 | 119 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | #else | 
| Ingo Molnar | 3ac9493 | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 121 | void printk_address(unsigned long address) | 
 | 122 | { | 
 | 123 | 	printk(" [<%016lx>]\n", address); | 
 | 124 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | #endif | 
 | 126 |  | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 127 | static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack, | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 128 | 					unsigned *usedp, char **idp) | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 129 | { | 
| Jan Beulich | b556b35 | 2006-01-11 22:43:00 +0100 | [diff] [blame] | 130 | 	static char ids[][8] = { | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 131 | 		[DEBUG_STACK - 1] = "#DB", | 
 | 132 | 		[NMI_STACK - 1] = "NMI", | 
 | 133 | 		[DOUBLEFAULT_STACK - 1] = "#DF", | 
 | 134 | 		[STACKFAULT_STACK - 1] = "#SS", | 
 | 135 | 		[MCE_STACK - 1] = "#MC", | 
| Jan Beulich | b556b35 | 2006-01-11 22:43:00 +0100 | [diff] [blame] | 136 | #if DEBUG_STKSZ > EXCEPTION_STKSZ | 
 | 137 | 		[N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]" | 
 | 138 | #endif | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 139 | 	}; | 
 | 140 | 	unsigned k; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 |  | 
| Ingo Molnar | c9ca1ba | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 142 | 	/* | 
 | 143 | 	 * Iterate over all exception stacks, and figure out whether | 
 | 144 | 	 * 'stack' is in one of them: | 
 | 145 | 	 */ | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 146 | 	for (k = 0; k < N_EXCEPTION_STACKS; k++) { | 
| Keith Owens | f574164 | 2006-09-26 10:52:38 +0200 | [diff] [blame] | 147 | 		unsigned long end = per_cpu(orig_ist, cpu).ist[k]; | 
| Ingo Molnar | c9ca1ba | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 148 | 		/* | 
 | 149 | 		 * Is 'stack' above this exception frame's end? | 
 | 150 | 		 * If yes then skip to the next frame. | 
 | 151 | 		 */ | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 152 | 		if (stack >= end) | 
 | 153 | 			continue; | 
| Ingo Molnar | c9ca1ba | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 154 | 		/* | 
 | 155 | 		 * Is 'stack' above this exception frame's start address? | 
 | 156 | 		 * If yes then we found the right frame. | 
 | 157 | 		 */ | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 158 | 		if (stack >= end - EXCEPTION_STKSZ) { | 
| Ingo Molnar | c9ca1ba | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 159 | 			/* | 
 | 160 | 			 * Make sure we only iterate through an exception | 
 | 161 | 			 * stack once. If it comes up for the second time | 
 | 162 | 			 * then there's something wrong going on - just | 
 | 163 | 			 * break out and return NULL: | 
 | 164 | 			 */ | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 165 | 			if (*usedp & (1U << k)) | 
 | 166 | 				break; | 
 | 167 | 			*usedp |= 1U << k; | 
 | 168 | 			*idp = ids[k]; | 
 | 169 | 			return (unsigned long *)end; | 
 | 170 | 		} | 
| Ingo Molnar | c9ca1ba | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 171 | 		/* | 
 | 172 | 		 * If this is a debug stack, and if it has a larger size than | 
 | 173 | 		 * the usual exception stacks, then 'stack' might still | 
 | 174 | 		 * be within the lower portion of the debug stack: | 
 | 175 | 		 */ | 
| Jan Beulich | b556b35 | 2006-01-11 22:43:00 +0100 | [diff] [blame] | 176 | #if DEBUG_STKSZ > EXCEPTION_STKSZ | 
 | 177 | 		if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) { | 
 | 178 | 			unsigned j = N_EXCEPTION_STACKS - 1; | 
 | 179 |  | 
| Ingo Molnar | c9ca1ba | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 180 | 			/* | 
 | 181 | 			 * Black magic. A large debug stack is composed of | 
 | 182 | 			 * multiple exception stack entries, which we | 
 | 183 | 			 * iterate through now. Dont look: | 
 | 184 | 			 */ | 
| Jan Beulich | b556b35 | 2006-01-11 22:43:00 +0100 | [diff] [blame] | 185 | 			do { | 
 | 186 | 				++j; | 
 | 187 | 				end -= EXCEPTION_STKSZ; | 
 | 188 | 				ids[j][4] = '1' + (j - N_EXCEPTION_STACKS); | 
 | 189 | 			} while (stack < end - EXCEPTION_STKSZ); | 
 | 190 | 			if (*usedp & (1U << j)) | 
 | 191 | 				break; | 
 | 192 | 			*usedp |= 1U << j; | 
 | 193 | 			*idp = ids[j]; | 
 | 194 | 			return (unsigned long *)end; | 
 | 195 | 		} | 
 | 196 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | 	} | 
 | 198 | 	return NULL; | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 199 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 |  | 
| Andi Kleen | b615ebd | 2006-12-07 02:14:00 +0100 | [diff] [blame] | 201 | #define MSG(txt) ops->warning(data, txt) | 
 | 202 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | /* | 
| Simon Arlott | 676b185 | 2007-10-20 01:25:36 +0200 | [diff] [blame] | 204 |  * x86-64 can have up to three kernel stacks:  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 |  * process stack | 
 | 206 |  * interrupt stack | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 207 |  * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 |  */ | 
 | 209 |  | 
| Andi Kleen | c547c77 | 2006-11-28 20:12:59 +0100 | [diff] [blame] | 210 | static inline int valid_stack_ptr(struct thread_info *tinfo, void *p) | 
 | 211 | { | 
 | 212 | 	void *t = (void *)tinfo; | 
 | 213 |         return p > t && p < t + THREAD_SIZE - 3; | 
 | 214 | } | 
 | 215 |  | 
| Andi Kleen | b615ebd | 2006-12-07 02:14:00 +0100 | [diff] [blame] | 216 | void dump_trace(struct task_struct *tsk, struct pt_regs *regs, | 
 | 217 | 		unsigned long *stack, | 
| Jan Beulich | 9689ba8 | 2007-10-17 18:04:37 +0200 | [diff] [blame] | 218 | 		const struct stacktrace_ops *ops, void *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | { | 
| Andrew Morton | da68933 | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 220 | 	const unsigned cpu = get_cpu(); | 
| Andi Kleen | b615ebd | 2006-12-07 02:14:00 +0100 | [diff] [blame] | 221 | 	unsigned long *irqstack_end = (unsigned long*)cpu_pda(cpu)->irqstackptr; | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 222 | 	unsigned used = 0; | 
| Andi Kleen | c547c77 | 2006-11-28 20:12:59 +0100 | [diff] [blame] | 223 | 	struct thread_info *tinfo; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 |  | 
| Jan Beulich | b538ed2 | 2006-06-26 13:57:32 +0200 | [diff] [blame] | 225 | 	if (!tsk) | 
 | 226 | 		tsk = current; | 
 | 227 |  | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 228 | 	if (!stack) { | 
 | 229 | 		unsigned long dummy; | 
 | 230 | 		stack = &dummy; | 
 | 231 | 		if (tsk && tsk != current) | 
 | 232 | 			stack = (unsigned long *)tsk->thread.rsp; | 
| Jan Beulich | b538ed2 | 2006-06-26 13:57:32 +0200 | [diff] [blame] | 233 | 	} | 
 | 234 |  | 
| Ingo Molnar | c9ca1ba | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 235 | 	/* | 
 | 236 | 	 * Print function call entries within a stack. 'cond' is the | 
 | 237 | 	 * "end of stackframe" condition, that the 'stack++' | 
 | 238 | 	 * iteration will eventually trigger. | 
 | 239 | 	 */ | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 240 | #define HANDLE_STACK(cond) \ | 
 | 241 | 	do while (cond) { \ | 
| Jan Beulich | 1b2f630 | 2006-01-11 22:46:45 +0100 | [diff] [blame] | 242 | 		unsigned long addr = *stack++; \ | 
| Andi Kleen | 446f713 | 2006-12-07 02:14:12 +0100 | [diff] [blame] | 243 | 		/* Use unlocked access here because except for NMIs	\ | 
 | 244 | 		   we should be already protected against module unloads */ \ | 
 | 245 | 		if (__kernel_text_address(addr)) { \ | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 246 | 			/* \ | 
 | 247 | 			 * If the address is either in the text segment of the \ | 
 | 248 | 			 * kernel, or in the region which contains vmalloc'ed \ | 
 | 249 | 			 * memory, it *may* be the address of a calling \ | 
 | 250 | 			 * routine; if so, print it so that someone tracing \ | 
 | 251 | 			 * down the cause of the crash will be able to figure \ | 
 | 252 | 			 * out the call path that was taken. \ | 
 | 253 | 			 */ \ | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 254 | 			ops->address(data, addr);   \ | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 255 | 		} \ | 
 | 256 | 	} while (0) | 
 | 257 |  | 
| Ingo Molnar | c9ca1ba | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 258 | 	/* | 
 | 259 | 	 * Print function call entries in all stacks, starting at the | 
 | 260 | 	 * current stack address. If the stacks consist of nested | 
 | 261 | 	 * exceptions | 
 | 262 | 	 */ | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 263 | 	for (;;) { | 
 | 264 | 		char *id; | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 265 | 		unsigned long *estack_end; | 
 | 266 | 		estack_end = in_exception_stack(cpu, (unsigned long)stack, | 
 | 267 | 						&used, &id); | 
 | 268 |  | 
 | 269 | 		if (estack_end) { | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 270 | 			if (ops->stack(data, id) < 0) | 
 | 271 | 				break; | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 272 | 			HANDLE_STACK (stack < estack_end); | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 273 | 			ops->stack(data, "<EOE>"); | 
| Ingo Molnar | c9ca1ba | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 274 | 			/* | 
 | 275 | 			 * We link to the next stack via the | 
 | 276 | 			 * second-to-last pointer (index -2 to end) in the | 
 | 277 | 			 * exception stack: | 
 | 278 | 			 */ | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 279 | 			stack = (unsigned long *) estack_end[-2]; | 
 | 280 | 			continue; | 
 | 281 | 		} | 
 | 282 | 		if (irqstack_end) { | 
 | 283 | 			unsigned long *irqstack; | 
 | 284 | 			irqstack = irqstack_end - | 
 | 285 | 				(IRQSTACKSIZE - 64) / sizeof(*irqstack); | 
 | 286 |  | 
 | 287 | 			if (stack >= irqstack && stack < irqstack_end) { | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 288 | 				if (ops->stack(data, "IRQ") < 0) | 
 | 289 | 					break; | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 290 | 				HANDLE_STACK (stack < irqstack_end); | 
| Ingo Molnar | c9ca1ba | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 291 | 				/* | 
 | 292 | 				 * We link to the next stack (which would be | 
 | 293 | 				 * the process stack normally) the last | 
 | 294 | 				 * pointer (index -1 to end) in the IRQ stack: | 
 | 295 | 				 */ | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 296 | 				stack = (unsigned long *) (irqstack_end[-1]); | 
 | 297 | 				irqstack_end = NULL; | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 298 | 				ops->stack(data, "EOI"); | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 299 | 				continue; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | 			} | 
 | 301 | 		} | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 302 | 		break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | 	} | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 304 |  | 
| Ingo Molnar | c9ca1ba | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 305 | 	/* | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 306 | 	 * This handles the process stack: | 
| Ingo Molnar | c9ca1ba | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 307 | 	 */ | 
| OGAWA Hirofumi | 7523c4d | 2007-01-04 01:21:28 +0900 | [diff] [blame] | 308 | 	tinfo = task_thread_info(tsk); | 
| Andi Kleen | c547c77 | 2006-11-28 20:12:59 +0100 | [diff] [blame] | 309 | 	HANDLE_STACK (valid_stack_ptr(tinfo, stack)); | 
| Andi Kleen | 0a65800 | 2005-04-16 15:25:17 -0700 | [diff] [blame] | 310 | #undef HANDLE_STACK | 
| Andrew Morton | da68933 | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 311 | 	put_cpu(); | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 312 | } | 
 | 313 | EXPORT_SYMBOL(dump_trace); | 
| Ingo Molnar | 3ac9493 | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 314 |  | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 315 | static void | 
 | 316 | print_trace_warning_symbol(void *data, char *msg, unsigned long symbol) | 
 | 317 | { | 
 | 318 | 	print_symbol(msg, symbol); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | 	printk("\n"); | 
 | 320 | } | 
 | 321 |  | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 322 | static void print_trace_warning(void *data, char *msg) | 
 | 323 | { | 
 | 324 | 	printk("%s\n", msg); | 
 | 325 | } | 
 | 326 |  | 
 | 327 | static int print_trace_stack(void *data, char *name) | 
 | 328 | { | 
 | 329 | 	printk(" <%s> ", name); | 
 | 330 | 	return 0; | 
 | 331 | } | 
 | 332 |  | 
 | 333 | static void print_trace_address(void *data, unsigned long addr) | 
 | 334 | { | 
| Konrad Rzeszutek | 1c978b9 | 2007-07-17 04:03:56 -0700 | [diff] [blame] | 335 | 	touch_nmi_watchdog(); | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 336 | 	printk_address(addr); | 
 | 337 | } | 
 | 338 |  | 
| Jan Beulich | 9689ba8 | 2007-10-17 18:04:37 +0200 | [diff] [blame] | 339 | static const struct stacktrace_ops print_trace_ops = { | 
| Andi Kleen | c0b766f | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 340 | 	.warning = print_trace_warning, | 
 | 341 | 	.warning_symbol = print_trace_warning_symbol, | 
 | 342 | 	.stack = print_trace_stack, | 
 | 343 | 	.address = print_trace_address, | 
 | 344 | }; | 
 | 345 |  | 
 | 346 | void | 
 | 347 | show_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long *stack) | 
 | 348 | { | 
 | 349 | 	printk("\nCall Trace:\n"); | 
 | 350 | 	dump_trace(tsk, regs, stack, &print_trace_ops, NULL); | 
 | 351 | 	printk("\n"); | 
 | 352 | } | 
 | 353 |  | 
 | 354 | static void | 
 | 355 | _show_stack(struct task_struct *tsk, struct pt_regs *regs, unsigned long *rsp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | { | 
 | 357 | 	unsigned long *stack; | 
 | 358 | 	int i; | 
| Andi Kleen | 151f8cc | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 359 | 	const int cpu = smp_processor_id(); | 
| Ravikiran G Thirumalai | df79efd | 2006-01-11 22:45:39 +0100 | [diff] [blame] | 360 | 	unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr); | 
 | 361 | 	unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 |  | 
 | 363 | 	// debugging aid: "show_stack(NULL, NULL);" prints the | 
 | 364 | 	// back trace for this cpu. | 
 | 365 |  | 
 | 366 | 	if (rsp == NULL) { | 
 | 367 | 		if (tsk) | 
 | 368 | 			rsp = (unsigned long *)tsk->thread.rsp; | 
 | 369 | 		else | 
 | 370 | 			rsp = (unsigned long *)&rsp; | 
 | 371 | 	} | 
 | 372 |  | 
 | 373 | 	stack = rsp; | 
 | 374 | 	for(i=0; i < kstack_depth_to_print; i++) { | 
 | 375 | 		if (stack >= irqstack && stack <= irqstack_end) { | 
 | 376 | 			if (stack == irqstack_end) { | 
 | 377 | 				stack = (unsigned long *) (irqstack_end[-1]); | 
 | 378 | 				printk(" <EOI> "); | 
 | 379 | 			} | 
 | 380 | 		} else { | 
 | 381 | 		if (((long) stack & (THREAD_SIZE-1)) == 0) | 
 | 382 | 			break; | 
 | 383 | 		} | 
 | 384 | 		if (i && ((i % 4) == 0)) | 
| Ingo Molnar | 3ac9493 | 2006-07-03 00:24:36 -0700 | [diff] [blame] | 385 | 			printk("\n"); | 
 | 386 | 		printk(" %016lx", *stack++); | 
| akpm@osdl.org | 35faa71 | 2005-04-16 15:24:54 -0700 | [diff] [blame] | 387 | 		touch_nmi_watchdog(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | 	} | 
| Jan Beulich | b538ed2 | 2006-06-26 13:57:32 +0200 | [diff] [blame] | 389 | 	show_trace(tsk, regs, rsp); | 
 | 390 | } | 
 | 391 |  | 
 | 392 | void show_stack(struct task_struct *tsk, unsigned long * rsp) | 
 | 393 | { | 
 | 394 | 	_show_stack(tsk, NULL, rsp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | } | 
 | 396 |  | 
 | 397 | /* | 
 | 398 |  * The architecture-independent dump_stack generator | 
 | 399 |  */ | 
 | 400 | void dump_stack(void) | 
 | 401 | { | 
 | 402 | 	unsigned long dummy; | 
| Jan Beulich | b538ed2 | 2006-06-26 13:57:32 +0200 | [diff] [blame] | 403 | 	show_trace(NULL, NULL, &dummy); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | } | 
 | 405 |  | 
 | 406 | EXPORT_SYMBOL(dump_stack); | 
 | 407 |  | 
 | 408 | void show_registers(struct pt_regs *regs) | 
 | 409 | { | 
 | 410 | 	int i; | 
| Vincent Hanquez | 76381fe | 2005-06-23 00:08:46 -0700 | [diff] [blame] | 411 | 	int in_kernel = !user_mode(regs); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | 	unsigned long rsp; | 
| Andi Kleen | 151f8cc | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 413 | 	const int cpu = smp_processor_id(); | 
| Ravikiran G Thirumalai | df79efd | 2006-01-11 22:45:39 +0100 | [diff] [blame] | 414 | 	struct task_struct *cur = cpu_pda(cpu)->pcurrent; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 |  | 
| Andi Kleen | d039c68 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 416 | 	rsp = regs->rsp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | 	printk("CPU %d ", cpu); | 
 | 418 | 	__show_regs(regs); | 
 | 419 | 	printk("Process %s (pid: %d, threadinfo %p, task %p)\n", | 
| Al Viro | e4f17c4 | 2006-01-12 01:05:38 -0800 | [diff] [blame] | 420 | 		cur->comm, cur->pid, task_thread_info(cur), cur); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 |  | 
 | 422 | 	/* | 
 | 423 | 	 * When in-kernel, we also print out the stack and code at the | 
 | 424 | 	 * time of the fault.. | 
 | 425 | 	 */ | 
 | 426 | 	if (in_kernel) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | 		printk("Stack: "); | 
| Jan Beulich | b538ed2 | 2006-06-26 13:57:32 +0200 | [diff] [blame] | 428 | 		_show_stack(NULL, regs, (unsigned long*)rsp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 |  | 
 | 430 | 		printk("\nCode: "); | 
| Roberto Nibali | 2b692a8 | 2006-03-25 16:29:55 +0100 | [diff] [blame] | 431 | 		if (regs->rip < PAGE_OFFSET) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | 			goto bad; | 
 | 433 |  | 
| Roberto Nibali | 2b692a8 | 2006-03-25 16:29:55 +0100 | [diff] [blame] | 434 | 		for (i=0; i<20; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | 			unsigned char c; | 
| Roberto Nibali | 2b692a8 | 2006-03-25 16:29:55 +0100 | [diff] [blame] | 436 | 			if (__get_user(c, &((unsigned char*)regs->rip)[i])) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | bad: | 
 | 438 | 				printk(" Bad RIP value."); | 
 | 439 | 				break; | 
 | 440 | 			} | 
 | 441 | 			printk("%02x ", c); | 
 | 442 | 		} | 
 | 443 | 	} | 
 | 444 | 	printk("\n"); | 
 | 445 | }	 | 
 | 446 |  | 
| Jeremy Fitzhardinge | c31a0bf | 2006-12-08 02:36:22 -0800 | [diff] [blame] | 447 | int is_valid_bugaddr(unsigned long rip) | 
 | 448 | { | 
 | 449 | 	unsigned short ud2; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 |  | 
| Jeremy Fitzhardinge | c31a0bf | 2006-12-08 02:36:22 -0800 | [diff] [blame] | 451 | 	if (__copy_from_user(&ud2, (const void __user *) rip, sizeof(ud2))) | 
 | 452 | 		return 0; | 
 | 453 |  | 
 | 454 | 	return ud2 == 0x0b0f; | 
 | 455 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 |  | 
| Alexander Nyberg | 4f60fdf | 2005-05-25 12:31:28 -0700 | [diff] [blame] | 457 | #ifdef CONFIG_BUG | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | void out_of_line_bug(void) | 
 | 459 | {  | 
 | 460 | 	BUG();  | 
 | 461 | }  | 
| Andi Kleen | 2ee60e17 | 2006-06-26 13:59:44 +0200 | [diff] [blame] | 462 | EXPORT_SYMBOL(out_of_line_bug); | 
| Alexander Nyberg | 4f60fdf | 2005-05-25 12:31:28 -0700 | [diff] [blame] | 463 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 |  | 
| Andi Kleen | 39743c9 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 465 | static raw_spinlock_t die_lock = __RAW_SPIN_LOCK_UNLOCKED; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | static int die_owner = -1; | 
| Corey Minyard | cdc60a4 | 2006-05-08 15:17:22 +0200 | [diff] [blame] | 467 | static unsigned int die_nest_count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 |  | 
| Andi Kleen | eddb6fb | 2006-02-03 21:50:41 +0100 | [diff] [blame] | 469 | unsigned __kprobes long oops_begin(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | { | 
| Andrew Morton | b39b703 | 2007-06-08 13:47:01 -0700 | [diff] [blame] | 471 | 	int cpu; | 
| Jan Beulich | 1209140 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 472 | 	unsigned long flags; | 
 | 473 |  | 
| Andrew Morton | abf0f10 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 474 | 	oops_enter(); | 
 | 475 |  | 
| Jan Beulich | 1209140 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 476 | 	/* racy, but better than risking deadlock. */ | 
| Andi Kleen | 39743c9 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 477 | 	raw_local_irq_save(flags); | 
| Andrew Morton | b39b703 | 2007-06-08 13:47:01 -0700 | [diff] [blame] | 478 | 	cpu = smp_processor_id(); | 
| Andi Kleen | 39743c9 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 479 | 	if (!__raw_spin_trylock(&die_lock)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | 		if (cpu == die_owner)  | 
 | 481 | 			/* nested oops. should stop eventually */; | 
 | 482 | 		else | 
| Andi Kleen | 39743c9 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 483 | 			__raw_spin_lock(&die_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | 	} | 
| Corey Minyard | cdc60a4 | 2006-05-08 15:17:22 +0200 | [diff] [blame] | 485 | 	die_nest_count++; | 
| Jan Beulich | 1209140 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 486 | 	die_owner = cpu; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | 	console_verbose(); | 
| Jan Beulich | 1209140 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 488 | 	bust_spinlocks(1); | 
 | 489 | 	return flags; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | } | 
 | 491 |  | 
| Andi Kleen | eddb6fb | 2006-02-03 21:50:41 +0100 | [diff] [blame] | 492 | void __kprobes oops_end(unsigned long flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | {  | 
 | 494 | 	die_owner = -1; | 
| Jan Beulich | 1209140 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 495 | 	bust_spinlocks(0); | 
| Corey Minyard | cdc60a4 | 2006-05-08 15:17:22 +0200 | [diff] [blame] | 496 | 	die_nest_count--; | 
| Andi Kleen | 39743c9 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 497 | 	if (!die_nest_count) | 
| Corey Minyard | cdc60a4 | 2006-05-08 15:17:22 +0200 | [diff] [blame] | 498 | 		/* Nest count reaches zero, release the lock. */ | 
| Andi Kleen | 39743c9 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 499 | 		__raw_spin_unlock(&die_lock); | 
 | 500 | 	raw_local_irq_restore(flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | 	if (panic_on_oops) | 
| Horms | 012c437 | 2006-08-13 23:24:22 -0700 | [diff] [blame] | 502 | 		panic("Fatal exception"); | 
| Andrew Morton | abf0f10 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 503 | 	oops_exit(); | 
| Jan Beulich | 1209140 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 504 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 |  | 
| Andi Kleen | eddb6fb | 2006-02-03 21:50:41 +0100 | [diff] [blame] | 506 | void __kprobes __die(const char * str, struct pt_regs * regs, long err) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | { | 
 | 508 | 	static int die_counter; | 
 | 509 | 	printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter); | 
 | 510 | #ifdef CONFIG_PREEMPT | 
 | 511 | 	printk("PREEMPT "); | 
 | 512 | #endif | 
 | 513 | #ifdef CONFIG_SMP | 
 | 514 | 	printk("SMP "); | 
 | 515 | #endif | 
 | 516 | #ifdef CONFIG_DEBUG_PAGEALLOC | 
 | 517 | 	printk("DEBUG_PAGEALLOC"); | 
 | 518 | #endif | 
 | 519 | 	printk("\n"); | 
| Jan Beulich | 6e3f361 | 2006-01-11 22:42:14 +0100 | [diff] [blame] | 520 | 	notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | 	show_registers(regs); | 
| Pavel Emelianov | bcdcd8e | 2007-07-17 04:03:42 -0700 | [diff] [blame] | 522 | 	add_taint(TAINT_DIE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | 	/* Executive summary in case the oops scrolled away */ | 
 | 524 | 	printk(KERN_ALERT "RIP "); | 
 | 525 | 	printk_address(regs->rip);  | 
 | 526 | 	printk(" RSP <%016lx>\n", regs->rsp);  | 
| Vivek Goyal | 8bcc528 | 2006-04-18 12:35:13 +0200 | [diff] [blame] | 527 | 	if (kexec_should_crash(current)) | 
 | 528 | 		crash_kexec(regs); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | } | 
 | 530 |  | 
 | 531 | void die(const char * str, struct pt_regs * regs, long err) | 
 | 532 | { | 
| Jan Beulich | 1209140 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 533 | 	unsigned long flags = oops_begin(); | 
 | 534 |  | 
| Jeremy Fitzhardinge | c31a0bf | 2006-12-08 02:36:22 -0800 | [diff] [blame] | 535 | 	if (!user_mode(regs)) | 
| Heiko Carstens | 608e261 | 2007-07-15 23:41:39 -0700 | [diff] [blame] | 536 | 		report_bug(regs->rip, regs); | 
| Jeremy Fitzhardinge | c31a0bf | 2006-12-08 02:36:22 -0800 | [diff] [blame] | 537 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | 	__die(str, regs, err); | 
| Jan Beulich | 1209140 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 539 | 	oops_end(flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | 	do_exit(SIGSEGV);  | 
 | 541 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 |  | 
| Andi Kleen | fac5855 | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 543 | void __kprobes die_nmi(char *str, struct pt_regs *regs, int do_panic) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | { | 
| Jan Beulich | 1209140 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 545 | 	unsigned long flags = oops_begin(); | 
 | 546 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | 	/* | 
 | 548 | 	 * We are in trouble anyway, lets at least try | 
 | 549 | 	 * to get a message out. | 
 | 550 | 	 */ | 
| Andi Kleen | 151f8cc | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 551 | 	printk(str, smp_processor_id()); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | 	show_registers(regs); | 
| Vivek Goyal | 8bcc528 | 2006-04-18 12:35:13 +0200 | [diff] [blame] | 553 | 	if (kexec_should_crash(current)) | 
 | 554 | 		crash_kexec(regs); | 
| Andi Kleen | fac5855 | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 555 | 	if (do_panic || panic_on_oops) | 
 | 556 | 		panic("Non maskable interrupt"); | 
| Jan Beulich | 1209140 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 557 | 	oops_end(flags); | 
| Corey Minyard | 8b1ffe95 | 2006-05-08 15:17:25 +0200 | [diff] [blame] | 558 | 	nmi_exit(); | 
 | 559 | 	local_irq_enable(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | 	do_exit(SIGSEGV); | 
 | 561 | } | 
 | 562 |  | 
| Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 563 | static void __kprobes do_trap(int trapnr, int signr, char *str, | 
 | 564 | 			      struct pt_regs * regs, long error_code, | 
 | 565 | 			      siginfo_t *info) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | { | 
| Jan Beulich | 6e3f361 | 2006-01-11 22:42:14 +0100 | [diff] [blame] | 567 | 	struct task_struct *tsk = current; | 
 | 568 |  | 
| Jan Beulich | 6e3f361 | 2006-01-11 22:42:14 +0100 | [diff] [blame] | 569 | 	if (user_mode(regs)) { | 
| Andi Kleen | d189518 | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 570 | 		/* | 
 | 571 | 		 * We want error_code and trap_no set for userspace | 
 | 572 | 		 * faults and kernelspace faults which result in | 
 | 573 | 		 * die(), but not kernelspace faults which are fixed | 
 | 574 | 		 * up.  die() gives the process no chance to handle | 
 | 575 | 		 * the signal and notice the kernel fault information, | 
 | 576 | 		 * so that won't result in polluting the information | 
 | 577 | 		 * about previously queued, but not yet delivered, | 
 | 578 | 		 * faults.  See also do_general_protection below. | 
 | 579 | 		 */ | 
 | 580 | 		tsk->thread.error_code = error_code; | 
 | 581 | 		tsk->thread.trap_no = trapnr; | 
 | 582 |  | 
| Masoud Asgharifard Sharbiani | abd4f75 | 2007-07-22 11:12:28 +0200 | [diff] [blame] | 583 | 		if (show_unhandled_signals && unhandled_signal(tsk, signr) && | 
 | 584 | 		    printk_ratelimit()) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | 			printk(KERN_INFO | 
 | 586 | 			       "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n", | 
 | 587 | 			       tsk->comm, tsk->pid, str, | 
| Roberto Nibali | 2b692a8 | 2006-03-25 16:29:55 +0100 | [diff] [blame] | 588 | 			       regs->rip, regs->rsp, error_code);  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | 		if (info) | 
 | 591 | 			force_sig_info(signr, info, tsk); | 
 | 592 | 		else | 
 | 593 | 			force_sig(signr, tsk); | 
 | 594 | 		return; | 
 | 595 | 	} | 
 | 596 |  | 
 | 597 |  | 
 | 598 | 	/* kernel trap */  | 
 | 599 | 	{	      | 
 | 600 | 		const struct exception_table_entry *fixup; | 
 | 601 | 		fixup = search_exception_tables(regs->rip); | 
| Roberto Nibali | 2b692a8 | 2006-03-25 16:29:55 +0100 | [diff] [blame] | 602 | 		if (fixup) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | 			regs->rip = fixup->fixup; | 
| Andi Kleen | d189518 | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 604 | 		else { | 
 | 605 | 			tsk->thread.error_code = error_code; | 
 | 606 | 			tsk->thread.trap_no = trapnr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | 			die(str, regs, error_code); | 
| Andi Kleen | d189518 | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 608 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | 		return; | 
 | 610 | 	} | 
 | 611 | } | 
 | 612 |  | 
 | 613 | #define DO_ERROR(trapnr, signr, str, name) \ | 
 | 614 | asmlinkage void do_##name(struct pt_regs * regs, long error_code) \ | 
 | 615 | { \ | 
 | 616 | 	if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \ | 
 | 617 | 							== NOTIFY_STOP) \ | 
 | 618 | 		return; \ | 
| Andi Kleen | 40e59a6 | 2006-05-15 18:19:47 +0200 | [diff] [blame] | 619 | 	conditional_sti(regs);						\ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | 	do_trap(trapnr, signr, str, regs, error_code, NULL); \ | 
 | 621 | } | 
 | 622 |  | 
 | 623 | #define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \ | 
 | 624 | asmlinkage void do_##name(struct pt_regs * regs, long error_code) \ | 
 | 625 | { \ | 
 | 626 | 	siginfo_t info; \ | 
 | 627 | 	info.si_signo = signr; \ | 
 | 628 | 	info.si_errno = 0; \ | 
 | 629 | 	info.si_code = sicode; \ | 
 | 630 | 	info.si_addr = (void __user *)siaddr; \ | 
 | 631 | 	if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \ | 
 | 632 | 							== NOTIFY_STOP) \ | 
 | 633 | 		return; \ | 
| Andi Kleen | 40e59a6 | 2006-05-15 18:19:47 +0200 | [diff] [blame] | 634 | 	conditional_sti(regs);						\ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | 	do_trap(trapnr, signr, str, regs, error_code, &info); \ | 
 | 636 | } | 
 | 637 |  | 
 | 638 | DO_ERROR_INFO( 0, SIGFPE,  "divide error", divide_error, FPE_INTDIV, regs->rip) | 
 | 639 | DO_ERROR( 4, SIGSEGV, "overflow", overflow) | 
 | 640 | DO_ERROR( 5, SIGSEGV, "bounds", bounds) | 
| Chuck Ebbert | 100c0e3 | 2006-01-11 22:46:00 +0100 | [diff] [blame] | 641 | DO_ERROR_INFO( 6, SIGILL,  "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | DO_ERROR( 7, SIGSEGV, "device not available", device_not_available) | 
 | 643 | DO_ERROR( 9, SIGFPE,  "coprocessor segment overrun", coprocessor_segment_overrun) | 
 | 644 | DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS) | 
 | 645 | DO_ERROR(11, SIGBUS,  "segment not present", segment_not_present) | 
 | 646 | DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0) | 
 | 647 | DO_ERROR(18, SIGSEGV, "reserved", reserved) | 
| Andi Kleen | 40e59a6 | 2006-05-15 18:19:47 +0200 | [diff] [blame] | 648 |  | 
 | 649 | /* Runs on IST stack */ | 
 | 650 | asmlinkage void do_stack_segment(struct pt_regs *regs, long error_code) | 
 | 651 | { | 
 | 652 | 	if (notify_die(DIE_TRAP, "stack segment", regs, error_code, | 
 | 653 | 			12, SIGBUS) == NOTIFY_STOP) | 
 | 654 | 		return; | 
 | 655 | 	preempt_conditional_sti(regs); | 
 | 656 | 	do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL); | 
 | 657 | 	preempt_conditional_cli(regs); | 
 | 658 | } | 
| Jan Beulich | eca37c1 | 2006-01-11 22:42:17 +0100 | [diff] [blame] | 659 |  | 
 | 660 | asmlinkage void do_double_fault(struct pt_regs * regs, long error_code) | 
 | 661 | { | 
 | 662 | 	static const char str[] = "double fault"; | 
 | 663 | 	struct task_struct *tsk = current; | 
 | 664 |  | 
 | 665 | 	/* Return not checked because double check cannot be ignored */ | 
 | 666 | 	notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV); | 
 | 667 |  | 
 | 668 | 	tsk->thread.error_code = error_code; | 
 | 669 | 	tsk->thread.trap_no = 8; | 
 | 670 |  | 
 | 671 | 	/* This is always a kernel trap and never fixable (and thus must | 
 | 672 | 	   never return). */ | 
 | 673 | 	for (;;) | 
 | 674 | 		die(str, regs, error_code); | 
 | 675 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 |  | 
| Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 677 | asmlinkage void __kprobes do_general_protection(struct pt_regs * regs, | 
 | 678 | 						long error_code) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | { | 
| Jan Beulich | 6e3f361 | 2006-01-11 22:42:14 +0100 | [diff] [blame] | 680 | 	struct task_struct *tsk = current; | 
 | 681 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | 	conditional_sti(regs); | 
 | 683 |  | 
| Jan Beulich | 6e3f361 | 2006-01-11 22:42:14 +0100 | [diff] [blame] | 684 | 	if (user_mode(regs)) { | 
| Andi Kleen | d189518 | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 685 | 		tsk->thread.error_code = error_code; | 
 | 686 | 		tsk->thread.trap_no = 13; | 
 | 687 |  | 
| Masoud Asgharifard Sharbiani | abd4f75 | 2007-07-22 11:12:28 +0200 | [diff] [blame] | 688 | 		if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) && | 
 | 689 | 		    printk_ratelimit()) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | 			printk(KERN_INFO | 
 | 691 | 		       "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n", | 
 | 692 | 			       tsk->comm, tsk->pid, | 
| Roberto Nibali | 2b692a8 | 2006-03-25 16:29:55 +0100 | [diff] [blame] | 693 | 			       regs->rip, regs->rsp, error_code);  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | 		force_sig(SIGSEGV, tsk); | 
 | 696 | 		return; | 
 | 697 | 	}  | 
 | 698 |  | 
 | 699 | 	/* kernel gp */ | 
 | 700 | 	{ | 
 | 701 | 		const struct exception_table_entry *fixup; | 
 | 702 | 		fixup = search_exception_tables(regs->rip); | 
 | 703 | 		if (fixup) { | 
 | 704 | 			regs->rip = fixup->fixup; | 
 | 705 | 			return; | 
 | 706 | 		} | 
| Andi Kleen | d189518 | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 707 |  | 
 | 708 | 		tsk->thread.error_code = error_code; | 
 | 709 | 		tsk->thread.trap_no = 13; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | 		if (notify_die(DIE_GPF, "general protection fault", regs, | 
 | 711 | 					error_code, 13, SIGSEGV) == NOTIFY_STOP) | 
 | 712 | 			return; | 
 | 713 | 		die("general protection fault", regs, error_code); | 
 | 714 | 	} | 
 | 715 | } | 
 | 716 |  | 
| Andi Kleen | eddb6fb | 2006-02-03 21:50:41 +0100 | [diff] [blame] | 717 | static __kprobes void | 
 | 718 | mem_parity_error(unsigned char reason, struct pt_regs * regs) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | { | 
| Don Zickus | c41c5cd | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 720 | 	printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n", | 
 | 721 | 		reason); | 
| Andi Kleen | 9c5f8be | 2006-12-07 02:14:03 +0100 | [diff] [blame] | 722 | 	printk(KERN_EMERG "You have some hardware problem, likely on the PCI bus.\n"); | 
| Don Zickus | c41c5cd | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 723 |  | 
| Dave Jiang | c0d1217 | 2007-07-19 01:49:46 -0700 | [diff] [blame] | 724 | #if defined(CONFIG_EDAC) | 
 | 725 | 	if(edac_handler_set()) { | 
 | 726 | 		edac_atomic_assert_error(); | 
 | 727 | 		return; | 
 | 728 | 	} | 
 | 729 | #endif | 
 | 730 |  | 
| Don Zickus | 8da5add | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 731 | 	if (panic_on_unrecovered_nmi) | 
| Don Zickus | c41c5cd | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 732 | 		panic("NMI: Not continuing"); | 
 | 733 |  | 
 | 734 | 	printk(KERN_EMERG "Dazed and confused, but trying to continue\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 |  | 
 | 736 | 	/* Clear and disable the memory parity error line. */ | 
 | 737 | 	reason = (reason & 0xf) | 4; | 
 | 738 | 	outb(reason, 0x61); | 
 | 739 | } | 
 | 740 |  | 
| Andi Kleen | eddb6fb | 2006-02-03 21:50:41 +0100 | [diff] [blame] | 741 | static __kprobes void | 
 | 742 | io_check_error(unsigned char reason, struct pt_regs * regs) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | { | 
 | 744 | 	printk("NMI: IOCK error (debug interrupt?)\n"); | 
 | 745 | 	show_registers(regs); | 
 | 746 |  | 
 | 747 | 	/* Re-enable the IOCK line, wait for a few seconds */ | 
 | 748 | 	reason = (reason & 0xf) | 8; | 
 | 749 | 	outb(reason, 0x61); | 
 | 750 | 	mdelay(2000); | 
 | 751 | 	reason &= ~8; | 
 | 752 | 	outb(reason, 0x61); | 
 | 753 | } | 
 | 754 |  | 
| Andi Kleen | eddb6fb | 2006-02-03 21:50:41 +0100 | [diff] [blame] | 755 | static __kprobes void | 
 | 756 | unknown_nmi_error(unsigned char reason, struct pt_regs * regs) | 
| Don Zickus | c41c5cd | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 757 | { | 
 | 758 | 	printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n", | 
 | 759 | 		reason); | 
 | 760 | 	printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n"); | 
| Don Zickus | 8da5add | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 761 |  | 
 | 762 | 	if (panic_on_unrecovered_nmi) | 
| Don Zickus | c41c5cd | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 763 | 		panic("NMI: Not continuing"); | 
| Don Zickus | 8da5add | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 764 |  | 
| Don Zickus | c41c5cd | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 765 | 	printk(KERN_EMERG "Dazed and confused, but trying to continue\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | } | 
 | 767 |  | 
| Andi Kleen | 6fefb0d | 2005-04-16 15:25:03 -0700 | [diff] [blame] | 768 | /* Runs on IST stack. This code must keep interrupts off all the time. | 
 | 769 |    Nested NMIs are prevented by the CPU. */ | 
| Andi Kleen | eddb6fb | 2006-02-03 21:50:41 +0100 | [diff] [blame] | 770 | asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | { | 
 | 772 | 	unsigned char reason = 0; | 
| Ashok Raj | 76e4f66 | 2005-06-25 14:55:00 -0700 | [diff] [blame] | 773 | 	int cpu; | 
 | 774 |  | 
 | 775 | 	cpu = smp_processor_id(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 |  | 
 | 777 | 	/* Only the BSP gets external NMIs from the system.  */ | 
| Ashok Raj | 76e4f66 | 2005-06-25 14:55:00 -0700 | [diff] [blame] | 778 | 	if (!cpu) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | 		reason = get_nmi_reason(); | 
 | 780 |  | 
 | 781 | 	if (!(reason & 0xc0)) { | 
| Jan Beulich | 6e3f361 | 2006-01-11 22:42:14 +0100 | [diff] [blame] | 782 | 		if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | 								== NOTIFY_STOP) | 
 | 784 | 			return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | 		/* | 
 | 786 | 		 * Ok, so this is none of the documented NMI sources, | 
 | 787 | 		 * so it must be the NMI watchdog. | 
 | 788 | 		 */ | 
| Don Zickus | 3adbbcce | 2006-09-26 10:52:26 +0200 | [diff] [blame] | 789 | 		if (nmi_watchdog_tick(regs,reason)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | 			return; | 
| Don Zickus | 3adbbcce | 2006-09-26 10:52:26 +0200 | [diff] [blame] | 791 | 		if (!do_nmi_callback(regs,cpu)) | 
| Don Zickus | 3adbbcce | 2006-09-26 10:52:26 +0200 | [diff] [blame] | 792 | 			unknown_nmi_error(reason, regs); | 
 | 793 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | 		return; | 
 | 795 | 	} | 
| Jan Beulich | 6e3f361 | 2006-01-11 22:42:14 +0100 | [diff] [blame] | 796 | 	if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | 		return;  | 
 | 798 |  | 
 | 799 | 	/* AK: following checks seem to be broken on modern chipsets. FIXME */ | 
 | 800 |  | 
 | 801 | 	if (reason & 0x80) | 
 | 802 | 		mem_parity_error(reason, regs); | 
 | 803 | 	if (reason & 0x40) | 
 | 804 | 		io_check_error(reason, regs); | 
 | 805 | } | 
 | 806 |  | 
| Jan Beulich | b556b35 | 2006-01-11 22:43:00 +0100 | [diff] [blame] | 807 | /* runs on IST stack. */ | 
| Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 808 | asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | { | 
| Peter Zijlstra | 143a5d3 | 2007-10-25 14:01:10 +0200 | [diff] [blame] | 810 | 	trace_hardirqs_fixup(); | 
 | 811 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | 	if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) { | 
 | 813 | 		return; | 
 | 814 | 	} | 
| Andi Kleen | 40e59a6 | 2006-05-15 18:19:47 +0200 | [diff] [blame] | 815 | 	preempt_conditional_sti(regs); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | 	do_trap(3, SIGTRAP, "int3", regs, error_code, NULL); | 
| Andi Kleen | 40e59a6 | 2006-05-15 18:19:47 +0200 | [diff] [blame] | 817 | 	preempt_conditional_cli(regs); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | } | 
 | 819 |  | 
| Andi Kleen | 6fefb0d | 2005-04-16 15:25:03 -0700 | [diff] [blame] | 820 | /* Help handler running on IST stack to switch back to user stack | 
 | 821 |    for scheduling or signal handling. The actual stack switch is done in | 
 | 822 |    entry.S */ | 
| Andi Kleen | eddb6fb | 2006-02-03 21:50:41 +0100 | [diff] [blame] | 823 | asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | { | 
| Andi Kleen | 6fefb0d | 2005-04-16 15:25:03 -0700 | [diff] [blame] | 825 | 	struct pt_regs *regs = eregs; | 
 | 826 | 	/* Did already sync */ | 
 | 827 | 	if (eregs == (struct pt_regs *)eregs->rsp) | 
 | 828 | 		; | 
 | 829 | 	/* Exception from user space */ | 
| Vincent Hanquez | 76381fe | 2005-06-23 00:08:46 -0700 | [diff] [blame] | 830 | 	else if (user_mode(eregs)) | 
| Al Viro | bb04923 | 2006-01-12 01:05:38 -0800 | [diff] [blame] | 831 | 		regs = task_pt_regs(current); | 
| Andi Kleen | 6fefb0d | 2005-04-16 15:25:03 -0700 | [diff] [blame] | 832 | 	/* Exception from kernel and interrupts are enabled. Move to | 
 | 833 |  	   kernel process stack. */ | 
 | 834 | 	else if (eregs->eflags & X86_EFLAGS_IF) | 
 | 835 | 		regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs)); | 
 | 836 | 	if (eregs != regs) | 
 | 837 | 		*regs = *eregs; | 
 | 838 | 	return regs; | 
 | 839 | } | 
 | 840 |  | 
 | 841 | /* runs on IST stack. */ | 
| Prasanna S Panchamukhi | 0f2fbdc | 2005-09-06 15:19:28 -0700 | [diff] [blame] | 842 | asmlinkage void __kprobes do_debug(struct pt_regs * regs, | 
 | 843 | 				   unsigned long error_code) | 
| Andi Kleen | 6fefb0d | 2005-04-16 15:25:03 -0700 | [diff] [blame] | 844 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | 	unsigned long condition; | 
 | 846 | 	struct task_struct *tsk = current; | 
 | 847 | 	siginfo_t info; | 
 | 848 |  | 
| Vincent Hanquez | e9129e5 | 2005-06-23 00:08:46 -0700 | [diff] [blame] | 849 | 	get_debugreg(condition, 6); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 |  | 
 | 851 | 	if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code, | 
| Andi Kleen | daeeafe | 2005-04-16 15:25:13 -0700 | [diff] [blame] | 852 | 						SIGTRAP) == NOTIFY_STOP) | 
| Andi Kleen | 6fefb0d | 2005-04-16 15:25:03 -0700 | [diff] [blame] | 853 | 		return; | 
| Andi Kleen | daeeafe | 2005-04-16 15:25:13 -0700 | [diff] [blame] | 854 |  | 
| John Blackwood | a65d17c | 2006-02-12 14:34:58 -0800 | [diff] [blame] | 855 | 	preempt_conditional_sti(regs); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 |  | 
 | 857 | 	/* Mask out spurious debug traps due to lazy DR7 setting */ | 
 | 858 | 	if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) { | 
 | 859 | 		if (!tsk->thread.debugreg7) {  | 
 | 860 | 			goto clear_dr7; | 
 | 861 | 		} | 
 | 862 | 	} | 
 | 863 |  | 
 | 864 | 	tsk->thread.debugreg6 = condition; | 
 | 865 |  | 
 | 866 | 	/* Mask out spurious TF errors due to lazy TF clearing */ | 
| Andi Kleen | daeeafe | 2005-04-16 15:25:13 -0700 | [diff] [blame] | 867 | 	if (condition & DR_STEP) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | 		/* | 
 | 869 | 		 * The TF error should be masked out only if the current | 
 | 870 | 		 * process is not traced and if the TRAP flag has been set | 
 | 871 | 		 * previously by a tracing process (condition detected by | 
 | 872 | 		 * the PT_DTRACE flag); remember that the i386 TRAP flag | 
 | 873 | 		 * can be modified by the process itself in user mode, | 
 | 874 | 		 * allowing programs to debug themselves without the ptrace() | 
 | 875 | 		 * interface. | 
 | 876 | 		 */ | 
| Vincent Hanquez | 76381fe | 2005-06-23 00:08:46 -0700 | [diff] [blame] | 877 |                 if (!user_mode(regs)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 |                        goto clear_TF_reenable; | 
| Andi Kleen | be61bff | 2005-04-16 15:24:57 -0700 | [diff] [blame] | 879 | 		/* | 
 | 880 | 		 * Was the TF flag set by a debugger? If so, clear it now, | 
 | 881 | 		 * so that register information is correct. | 
 | 882 | 		 */ | 
 | 883 | 		if (tsk->ptrace & PT_DTRACE) { | 
 | 884 | 			regs->eflags &= ~TF_MASK; | 
 | 885 | 			tsk->ptrace &= ~PT_DTRACE; | 
 | 886 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | 	} | 
 | 888 |  | 
 | 889 | 	/* Ok, finally something we can handle */ | 
 | 890 | 	tsk->thread.trap_no = 1; | 
 | 891 | 	tsk->thread.error_code = error_code; | 
 | 892 | 	info.si_signo = SIGTRAP; | 
 | 893 | 	info.si_errno = 0; | 
 | 894 | 	info.si_code = TRAP_BRKPT; | 
| John Blackwood | 01b8faa | 2006-01-11 22:44:15 +0100 | [diff] [blame] | 895 | 	info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL; | 
 | 896 | 	force_sig_info(SIGTRAP, &info, tsk); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | clear_dr7: | 
| Vincent Hanquez | e9129e5 | 2005-06-23 00:08:46 -0700 | [diff] [blame] | 899 | 	set_debugreg(0UL, 7); | 
| John Blackwood | a65d17c | 2006-02-12 14:34:58 -0800 | [diff] [blame] | 900 | 	preempt_conditional_cli(regs); | 
| Andi Kleen | 6fefb0d | 2005-04-16 15:25:03 -0700 | [diff] [blame] | 901 | 	return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 |  | 
 | 903 | clear_TF_reenable: | 
 | 904 | 	set_tsk_thread_flag(tsk, TIF_SINGLESTEP); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | 	regs->eflags &= ~TF_MASK; | 
| John Blackwood | a65d17c | 2006-02-12 14:34:58 -0800 | [diff] [blame] | 906 | 	preempt_conditional_cli(regs); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | } | 
 | 908 |  | 
| Jan Beulich | 6e3f361 | 2006-01-11 22:42:14 +0100 | [diff] [blame] | 909 | static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | { | 
 | 911 | 	const struct exception_table_entry *fixup; | 
 | 912 | 	fixup = search_exception_tables(regs->rip); | 
 | 913 | 	if (fixup) { | 
 | 914 | 		regs->rip = fixup->fixup; | 
 | 915 | 		return 1; | 
 | 916 | 	} | 
| Jan Beulich | 6e3f361 | 2006-01-11 22:42:14 +0100 | [diff] [blame] | 917 | 	notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE); | 
| Andi Kleen | 3a848f6 | 2005-04-16 15:25:06 -0700 | [diff] [blame] | 918 | 	/* Illegal floating point operation in the kernel */ | 
| Jan Beulich | 6e3f361 | 2006-01-11 22:42:14 +0100 | [diff] [blame] | 919 | 	current->thread.trap_no = trapnr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | 	die(str, regs, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | 	return 0; | 
 | 922 | } | 
 | 923 |  | 
 | 924 | /* | 
 | 925 |  * Note that we play around with the 'TS' bit in an attempt to get | 
 | 926 |  * the correct behaviour even in the presence of the asynchronous | 
 | 927 |  * IRQ13 behaviour | 
 | 928 |  */ | 
 | 929 | asmlinkage void do_coprocessor_error(struct pt_regs *regs) | 
 | 930 | { | 
 | 931 | 	void __user *rip = (void __user *)(regs->rip); | 
 | 932 | 	struct task_struct * task; | 
 | 933 | 	siginfo_t info; | 
 | 934 | 	unsigned short cwd, swd; | 
 | 935 |  | 
 | 936 | 	conditional_sti(regs); | 
| Vincent Hanquez | 76381fe | 2005-06-23 00:08:46 -0700 | [diff] [blame] | 937 | 	if (!user_mode(regs) && | 
| Jan Beulich | 6e3f361 | 2006-01-11 22:42:14 +0100 | [diff] [blame] | 938 | 	    kernel_math_error(regs, "kernel x87 math error", 16)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | 		return; | 
 | 940 |  | 
 | 941 | 	/* | 
 | 942 | 	 * Save the info for the exception handler and clear the error. | 
 | 943 | 	 */ | 
 | 944 | 	task = current; | 
 | 945 | 	save_init_fpu(task); | 
 | 946 | 	task->thread.trap_no = 16; | 
 | 947 | 	task->thread.error_code = 0; | 
 | 948 | 	info.si_signo = SIGFPE; | 
 | 949 | 	info.si_errno = 0; | 
 | 950 | 	info.si_code = __SI_FAULT; | 
 | 951 | 	info.si_addr = rip; | 
 | 952 | 	/* | 
 | 953 | 	 * (~cwd & swd) will mask out exceptions that are not set to unmasked | 
 | 954 | 	 * status.  0x3f is the exception bits in these regs, 0x200 is the | 
 | 955 | 	 * C1 reg you need in case of a stack fault, 0x040 is the stack | 
 | 956 | 	 * fault bit.  We should only be taking one exception at a time, | 
 | 957 | 	 * so if this combination doesn't produce any single exception, | 
 | 958 | 	 * then we have a bad program that isn't synchronizing its FPU usage | 
 | 959 | 	 * and it will suffer the consequences since we won't be able to | 
 | 960 | 	 * fully reproduce the context of the exception | 
 | 961 | 	 */ | 
 | 962 | 	cwd = get_fpu_cwd(task); | 
 | 963 | 	swd = get_fpu_swd(task); | 
| Chuck Ebbert | ff347b2 | 2005-09-12 18:49:25 +0200 | [diff] [blame] | 964 | 	switch (swd & ~cwd & 0x3f) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | 		case 0x000: | 
 | 966 | 		default: | 
 | 967 | 			break; | 
 | 968 | 		case 0x001: /* Invalid Op */ | 
| Chuck Ebbert | ff347b2 | 2005-09-12 18:49:25 +0200 | [diff] [blame] | 969 | 			/* | 
 | 970 | 			 * swd & 0x240 == 0x040: Stack Underflow | 
 | 971 | 			 * swd & 0x240 == 0x240: Stack Overflow | 
 | 972 | 			 * User must clear the SF bit (0x40) if set | 
 | 973 | 			 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | 			info.si_code = FPE_FLTINV; | 
 | 975 | 			break; | 
 | 976 | 		case 0x002: /* Denormalize */ | 
 | 977 | 		case 0x010: /* Underflow */ | 
 | 978 | 			info.si_code = FPE_FLTUND; | 
 | 979 | 			break; | 
 | 980 | 		case 0x004: /* Zero Divide */ | 
 | 981 | 			info.si_code = FPE_FLTDIV; | 
 | 982 | 			break; | 
 | 983 | 		case 0x008: /* Overflow */ | 
 | 984 | 			info.si_code = FPE_FLTOVF; | 
 | 985 | 			break; | 
 | 986 | 		case 0x020: /* Precision */ | 
 | 987 | 			info.si_code = FPE_FLTRES; | 
 | 988 | 			break; | 
 | 989 | 	} | 
 | 990 | 	force_sig_info(SIGFPE, &info, task); | 
 | 991 | } | 
 | 992 |  | 
 | 993 | asmlinkage void bad_intr(void) | 
 | 994 | { | 
 | 995 | 	printk("bad interrupt");  | 
 | 996 | } | 
 | 997 |  | 
 | 998 | asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs) | 
 | 999 | { | 
 | 1000 | 	void __user *rip = (void __user *)(regs->rip); | 
 | 1001 | 	struct task_struct * task; | 
 | 1002 | 	siginfo_t info; | 
 | 1003 | 	unsigned short mxcsr; | 
 | 1004 |  | 
 | 1005 | 	conditional_sti(regs); | 
| Vincent Hanquez | 76381fe | 2005-06-23 00:08:46 -0700 | [diff] [blame] | 1006 | 	if (!user_mode(regs) && | 
| Jan Beulich | 6e3f361 | 2006-01-11 22:42:14 +0100 | [diff] [blame] | 1007 |         	kernel_math_error(regs, "kernel simd math error", 19)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | 		return; | 
 | 1009 |  | 
 | 1010 | 	/* | 
 | 1011 | 	 * Save the info for the exception handler and clear the error. | 
 | 1012 | 	 */ | 
 | 1013 | 	task = current; | 
 | 1014 | 	save_init_fpu(task); | 
 | 1015 | 	task->thread.trap_no = 19; | 
 | 1016 | 	task->thread.error_code = 0; | 
 | 1017 | 	info.si_signo = SIGFPE; | 
 | 1018 | 	info.si_errno = 0; | 
 | 1019 | 	info.si_code = __SI_FAULT; | 
 | 1020 | 	info.si_addr = rip; | 
 | 1021 | 	/* | 
 | 1022 | 	 * The SIMD FPU exceptions are handled a little differently, as there | 
 | 1023 | 	 * is only a single status/control register.  Thus, to determine which | 
 | 1024 | 	 * unmasked exception was caught we must mask the exception mask bits | 
 | 1025 | 	 * at 0x1f80, and then use these to mask the exception bits at 0x3f. | 
 | 1026 | 	 */ | 
 | 1027 | 	mxcsr = get_fpu_mxcsr(task); | 
 | 1028 | 	switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) { | 
 | 1029 | 		case 0x000: | 
 | 1030 | 		default: | 
 | 1031 | 			break; | 
 | 1032 | 		case 0x001: /* Invalid Op */ | 
 | 1033 | 			info.si_code = FPE_FLTINV; | 
 | 1034 | 			break; | 
 | 1035 | 		case 0x002: /* Denormalize */ | 
 | 1036 | 		case 0x010: /* Underflow */ | 
 | 1037 | 			info.si_code = FPE_FLTUND; | 
 | 1038 | 			break; | 
 | 1039 | 		case 0x004: /* Zero Divide */ | 
 | 1040 | 			info.si_code = FPE_FLTDIV; | 
 | 1041 | 			break; | 
 | 1042 | 		case 0x008: /* Overflow */ | 
 | 1043 | 			info.si_code = FPE_FLTOVF; | 
 | 1044 | 			break; | 
 | 1045 | 		case 0x020: /* Precision */ | 
 | 1046 | 			info.si_code = FPE_FLTRES; | 
 | 1047 | 			break; | 
 | 1048 | 	} | 
 | 1049 | 	force_sig_info(SIGFPE, &info, task); | 
 | 1050 | } | 
 | 1051 |  | 
 | 1052 | asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs) | 
 | 1053 | { | 
 | 1054 | } | 
 | 1055 |  | 
 | 1056 | asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void) | 
 | 1057 | { | 
 | 1058 | } | 
 | 1059 |  | 
| Jacob Shin | 89b831e | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 1060 | asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void) | 
 | 1061 | { | 
 | 1062 | } | 
 | 1063 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | /* | 
 | 1065 |  *  'math_state_restore()' saves the current math information in the | 
 | 1066 |  * old math state array, and gets the new ones from the current task | 
 | 1067 |  * | 
 | 1068 |  * Careful.. There are problems with IBM-designed IRQ13 behaviour. | 
 | 1069 |  * Don't touch unless you *really* know how it works. | 
 | 1070 |  */ | 
 | 1071 | asmlinkage void math_state_restore(void) | 
 | 1072 | { | 
 | 1073 | 	struct task_struct *me = current; | 
 | 1074 | 	clts();			/* Allow maths ops (or we recurse) */ | 
 | 1075 |  | 
 | 1076 | 	if (!used_math()) | 
 | 1077 | 		init_fpu(me); | 
 | 1078 | 	restore_fpu_checking(&me->thread.i387.fxsave); | 
| Al Viro | e4f17c4 | 2006-01-12 01:05:38 -0800 | [diff] [blame] | 1079 | 	task_thread_info(me)->status |= TS_USEDFPU; | 
| Arjan van de Ven | e07e23e | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 1080 | 	me->fpu_counter++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | } | 
 | 1082 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | void __init trap_init(void) | 
 | 1084 | { | 
 | 1085 | 	set_intr_gate(0,÷_error); | 
 | 1086 | 	set_intr_gate_ist(1,&debug,DEBUG_STACK); | 
 | 1087 | 	set_intr_gate_ist(2,&nmi,NMI_STACK); | 
| Jan Beulich | b556b35 | 2006-01-11 22:43:00 +0100 | [diff] [blame] | 1088 |  	set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */ | 
| Jan Beulich | 0a52158 | 2006-01-11 22:42:08 +0100 | [diff] [blame] | 1089 | 	set_system_gate(4,&overflow);	/* int4 can be called from all */ | 
 | 1090 | 	set_intr_gate(5,&bounds); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | 	set_intr_gate(6,&invalid_op); | 
 | 1092 | 	set_intr_gate(7,&device_not_available); | 
 | 1093 | 	set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK); | 
 | 1094 | 	set_intr_gate(9,&coprocessor_segment_overrun); | 
 | 1095 | 	set_intr_gate(10,&invalid_TSS); | 
 | 1096 | 	set_intr_gate(11,&segment_not_present); | 
 | 1097 | 	set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK); | 
 | 1098 | 	set_intr_gate(13,&general_protection); | 
 | 1099 | 	set_intr_gate(14,&page_fault); | 
 | 1100 | 	set_intr_gate(15,&spurious_interrupt_bug); | 
 | 1101 | 	set_intr_gate(16,&coprocessor_error); | 
 | 1102 | 	set_intr_gate(17,&alignment_check); | 
 | 1103 | #ifdef CONFIG_X86_MCE | 
 | 1104 | 	set_intr_gate_ist(18,&machine_check, MCE_STACK);  | 
 | 1105 | #endif | 
 | 1106 | 	set_intr_gate(19,&simd_coprocessor_error); | 
 | 1107 |  | 
 | 1108 | #ifdef CONFIG_IA32_EMULATION | 
 | 1109 | 	set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall); | 
 | 1110 | #endif | 
 | 1111 |         | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | 	/* | 
 | 1113 | 	 * Should be a barrier for any external CPU state. | 
 | 1114 | 	 */ | 
 | 1115 | 	cpu_init(); | 
 | 1116 | } | 
 | 1117 |  | 
 | 1118 |  | 
| Andi Kleen | 2c8c0e6 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 1119 | static int __init oops_setup(char *s) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | {  | 
| Andi Kleen | 2c8c0e6 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 1121 | 	if (!s) | 
 | 1122 | 		return -EINVAL; | 
 | 1123 | 	if (!strcmp(s, "panic")) | 
 | 1124 | 		panic_on_oops = 1; | 
 | 1125 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | }  | 
| Andi Kleen | 2c8c0e6 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 1127 | early_param("oops", oops_setup); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 |  | 
 | 1129 | static int __init kstack_setup(char *s) | 
 | 1130 | { | 
| Andi Kleen | 2c8c0e6 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 1131 | 	if (!s) | 
 | 1132 | 		return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | 	kstack_depth_to_print = simple_strtoul(s,NULL,0); | 
| Andi Kleen | 2c8c0e6 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 1134 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | } | 
| Andi Kleen | 2c8c0e6 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 1136 | early_param("kstack", kstack_setup); |