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