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