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