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