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