blob: 4fdd162f0befdcd06863963675bc5c29a8b3f16e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
11/*
12 * 'Traps.c' handles hardware traps and faults after we have saved some
13 * state in 'entry.S'.
14 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/sched.h>
16#include <linux/kernel.h>
17#include <linux/string.h>
18#include <linux/errno.h>
19#include <linux/ptrace.h>
20#include <linux/timer.h>
21#include <linux/mm.h>
22#include <linux/init.h>
23#include <linux/delay.h>
24#include <linux/spinlock.h>
25#include <linux/interrupt.h>
Randy Dunlap4b0ff1a2006-10-05 19:07:26 +020026#include <linux/kallsyms.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/module.h>
28#include <linux/moduleparam.h>
akpm@osdl.org35faa712005-04-16 15:24:54 -070029#include <linux/nmi.h>
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -070030#include <linux/kprobes.h>
Vivek Goyal8bcc5282006-04-18 12:35:13 +020031#include <linux/kexec.h>
Jan Beulichb538ed22006-06-26 13:57:32 +020032#include <linux/unwind.h>
Andi Kleenab2bf0c2006-12-07 02:14:06 +010033#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#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 Beulichb538ed22006-06-26 13:57:32 +020043#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/smp.h>
45#include <asm/pgalloc.h>
46#include <asm/pda.h>
47#include <asm/proto.h>
48#include <asm/nmi.h>
Andi Kleenc0b766f2006-09-26 10:52:34 +020049#include <asm/stacktrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051asmlinkage void divide_error(void);
52asmlinkage void debug(void);
53asmlinkage void nmi(void);
54asmlinkage void int3(void);
55asmlinkage void overflow(void);
56asmlinkage void bounds(void);
57asmlinkage void invalid_op(void);
58asmlinkage void device_not_available(void);
59asmlinkage void double_fault(void);
60asmlinkage void coprocessor_segment_overrun(void);
61asmlinkage void invalid_TSS(void);
62asmlinkage void segment_not_present(void);
63asmlinkage void stack_segment(void);
64asmlinkage void general_protection(void);
65asmlinkage void page_fault(void);
66asmlinkage void coprocessor_error(void);
67asmlinkage void simd_coprocessor_error(void);
68asmlinkage void reserved(void);
69asmlinkage void alignment_check(void);
70asmlinkage void machine_check(void);
71asmlinkage void spurious_interrupt_bug(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Alan Sterne041c682006-03-27 01:16:30 -080073ATOMIC_NOTIFIER_HEAD(die_chain);
Andi Kleen2ee60e172006-06-26 13:59:44 +020074EXPORT_SYMBOL(die_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76int register_die_notifier(struct notifier_block *nb)
77{
Jan Beulich8c914cb2006-03-25 16:29:40 +010078 vmalloc_sync_all();
Alan Sterne041c682006-03-27 01:16:30 -080079 return atomic_notifier_chain_register(&die_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
Arjan van de Ven1454aed2006-07-10 04:44:05 -070081EXPORT_SYMBOL(register_die_notifier); /* used modular by kdb */
Alan Sterne041c682006-03-27 01:16:30 -080082
83int unregister_die_notifier(struct notifier_block *nb)
84{
85 return atomic_notifier_chain_unregister(&die_chain, nb);
86}
Arjan van de Ven1454aed2006-07-10 04:44:05 -070087EXPORT_SYMBOL(unregister_die_notifier); /* used modular by kdb */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89static inline void conditional_sti(struct pt_regs *regs)
90{
91 if (regs->eflags & X86_EFLAGS_IF)
92 local_irq_enable();
93}
94
John Blackwooda65d17c2006-02-12 14:34:58 -080095static inline void preempt_conditional_sti(struct pt_regs *regs)
96{
97 preempt_disable();
98 if (regs->eflags & X86_EFLAGS_IF)
99 local_irq_enable();
100}
101
102static inline void preempt_conditional_cli(struct pt_regs *regs)
103{
104 if (regs->eflags & X86_EFLAGS_IF)
105 local_irq_disable();
Andi Kleen40e59a62006-05-15 18:19:47 +0200106 /* Make sure to not schedule here because we could be running
107 on an exception stack. */
John Blackwooda65d17c2006-02-12 14:34:58 -0800108 preempt_enable_no_resched();
109}
110
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100111int kstack_depth_to_print = 12;
Jan Beulichea424052006-08-30 19:37:11 +0200112#ifdef CONFIG_STACK_UNWIND
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200113static int call_trace = 1;
Jan Beulichea424052006-08-30 19:37:11 +0200114#else
115#define call_trace (-1)
116#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118#ifdef CONFIG_KALLSYMS
Ingo Molnar3ac94932006-07-03 00:24:36 -0700119void printk_address(unsigned long address)
120{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 unsigned long offset = 0, symsize;
122 const char *symname;
123 char *modname;
Ingo Molnar3ac94932006-07-03 00:24:36 -0700124 char *delim = ":";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 char namebuf[128];
126
Ingo Molnar3ac94932006-07-03 00:24:36 -0700127 symname = kallsyms_lookup(address, &symsize, &offset,
128 &modname, namebuf);
129 if (!symname) {
130 printk(" [<%016lx>]\n", address);
131 return;
132 }
133 if (!modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 modname = delim = "";
Ingo Molnar3ac94932006-07-03 00:24:36 -0700135 printk(" [<%016lx>] %s%s%s%s+0x%lx/0x%lx\n",
136 address, delim, modname, delim, symname, offset, symsize);
137}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#else
Ingo Molnar3ac94932006-07-03 00:24:36 -0700139void printk_address(unsigned long address)
140{
141 printk(" [<%016lx>]\n", address);
142}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#endif
144
Andi Kleen0a658002005-04-16 15:25:17 -0700145static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
Andi Kleenc0b766f2006-09-26 10:52:34 +0200146 unsigned *usedp, char **idp)
Andi Kleen0a658002005-04-16 15:25:17 -0700147{
Jan Beulichb556b352006-01-11 22:43:00 +0100148 static char ids[][8] = {
Andi Kleen0a658002005-04-16 15:25:17 -0700149 [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 Beulichb556b352006-01-11 22:43:00 +0100154#if DEBUG_STKSZ > EXCEPTION_STKSZ
155 [N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
156#endif
Andi Kleen0a658002005-04-16 15:25:17 -0700157 };
158 unsigned k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700160 /*
161 * Iterate over all exception stacks, and figure out whether
162 * 'stack' is in one of them:
163 */
Andi Kleen0a658002005-04-16 15:25:17 -0700164 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
Keith Owensf5741642006-09-26 10:52:38 +0200165 unsigned long end = per_cpu(orig_ist, cpu).ist[k];
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700166 /*
167 * Is 'stack' above this exception frame's end?
168 * If yes then skip to the next frame.
169 */
Andi Kleen0a658002005-04-16 15:25:17 -0700170 if (stack >= end)
171 continue;
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700172 /*
173 * Is 'stack' above this exception frame's start address?
174 * If yes then we found the right frame.
175 */
Andi Kleen0a658002005-04-16 15:25:17 -0700176 if (stack >= end - EXCEPTION_STKSZ) {
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700177 /*
178 * Make sure we only iterate through an exception
179 * stack once. If it comes up for the second time
180 * then there's something wrong going on - just
181 * break out and return NULL:
182 */
Andi Kleen0a658002005-04-16 15:25:17 -0700183 if (*usedp & (1U << k))
184 break;
185 *usedp |= 1U << k;
186 *idp = ids[k];
187 return (unsigned long *)end;
188 }
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700189 /*
190 * If this is a debug stack, and if it has a larger size than
191 * the usual exception stacks, then 'stack' might still
192 * be within the lower portion of the debug stack:
193 */
Jan Beulichb556b352006-01-11 22:43:00 +0100194#if DEBUG_STKSZ > EXCEPTION_STKSZ
195 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
196 unsigned j = N_EXCEPTION_STACKS - 1;
197
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700198 /*
199 * Black magic. A large debug stack is composed of
200 * multiple exception stack entries, which we
201 * iterate through now. Dont look:
202 */
Jan Beulichb556b352006-01-11 22:43:00 +0100203 do {
204 ++j;
205 end -= EXCEPTION_STKSZ;
206 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
207 } while (stack < end - EXCEPTION_STKSZ);
208 if (*usedp & (1U << j))
209 break;
210 *usedp |= 1U << j;
211 *idp = ids[j];
212 return (unsigned long *)end;
213 }
214#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216 return NULL;
Andi Kleen0a658002005-04-16 15:25:17 -0700217}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Andi Kleenc0b766f2006-09-26 10:52:34 +0200219struct ops_and_data {
220 struct stacktrace_ops *ops;
221 void *data;
222};
223
224static int dump_trace_unwind(struct unwind_frame_info *info, void *context)
Jan Beulichb538ed22006-06-26 13:57:32 +0200225{
Andi Kleenc0b766f2006-09-26 10:52:34 +0200226 struct ops_and_data *oad = (struct ops_and_data *)context;
Ingo Molnar3ac94932006-07-03 00:24:36 -0700227 int n = 0;
Jan Beulich359ad0d2006-12-07 02:14:13 +0100228 unsigned long sp = UNW_SP(info);
Jan Beulichb538ed22006-06-26 13:57:32 +0200229
Jan Beulich359ad0d2006-12-07 02:14:13 +0100230 if (arch_unw_user_mode(info))
231 return -1;
Jan Beulichb538ed22006-06-26 13:57:32 +0200232 while (unwind(info) == 0 && UNW_PC(info)) {
Ingo Molnar3ac94932006-07-03 00:24:36 -0700233 n++;
Andi Kleenc0b766f2006-09-26 10:52:34 +0200234 oad->ops->address(oad->data, UNW_PC(info));
Jan Beulichb538ed22006-06-26 13:57:32 +0200235 if (arch_unw_user_mode(info))
236 break;
Jan Beulich359ad0d2006-12-07 02:14:13 +0100237 if ((sp & ~(PAGE_SIZE - 1)) == (UNW_SP(info) & ~(PAGE_SIZE - 1))
238 && sp > UNW_SP(info))
239 break;
240 sp = UNW_SP(info);
Jan Beulichb538ed22006-06-26 13:57:32 +0200241 }
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200242 return n;
Jan Beulichb538ed22006-06-26 13:57:32 +0200243}
244
Andi Kleenb615ebd2006-12-07 02:14:00 +0100245#define MSG(txt) ops->warning(data, txt)
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247/*
248 * x86-64 can have upto three kernel stacks:
249 * process stack
250 * interrupt stack
Andi Kleen0a658002005-04-16 15:25:17 -0700251 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 */
253
Andi Kleenc547c772006-11-28 20:12:59 +0100254static inline int valid_stack_ptr(struct thread_info *tinfo, void *p)
255{
256 void *t = (void *)tinfo;
257 return p > t && p < t + THREAD_SIZE - 3;
258}
259
Andi Kleenb615ebd2006-12-07 02:14:00 +0100260void dump_trace(struct task_struct *tsk, struct pt_regs *regs,
261 unsigned long *stack,
Andi Kleenc0b766f2006-09-26 10:52:34 +0200262 struct stacktrace_ops *ops, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Andrew Mortonda689332006-12-07 02:14:02 +0100264 const unsigned cpu = get_cpu();
Andi Kleenb615ebd2006-12-07 02:14:00 +0100265 unsigned long *irqstack_end = (unsigned long*)cpu_pda(cpu)->irqstackptr;
Andi Kleen0a658002005-04-16 15:25:17 -0700266 unsigned used = 0;
Andi Kleenc547c772006-11-28 20:12:59 +0100267 struct thread_info *tinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Jan Beulichb538ed22006-06-26 13:57:32 +0200269 if (!tsk)
270 tsk = current;
271
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200272 if (call_trace >= 0) {
273 int unw_ret = 0;
274 struct unwind_frame_info info;
Andi Kleenc0b766f2006-09-26 10:52:34 +0200275 struct ops_and_data oad = { .ops = ops, .data = data };
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200276
277 if (regs) {
278 if (unwind_init_frame_info(&info, tsk, regs) == 0)
Andi Kleenc0b766f2006-09-26 10:52:34 +0200279 unw_ret = dump_trace_unwind(&info, &oad);
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200280 } else if (tsk == current)
Andi Kleenb615ebd2006-12-07 02:14:00 +0100281 unw_ret = unwind_init_running(&info, dump_trace_unwind,
282 &oad);
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200283 else {
284 if (unwind_init_blocked(&info, tsk) == 0)
Andi Kleenc0b766f2006-09-26 10:52:34 +0200285 unw_ret = dump_trace_unwind(&info, &oad);
Jan Beulichb538ed22006-06-26 13:57:32 +0200286 }
Jan Beulichea424052006-08-30 19:37:11 +0200287 if (unw_ret > 0) {
288 if (call_trace == 1 && !arch_unw_user_mode(&info)) {
Andi Kleenb615ebd2006-12-07 02:14:00 +0100289 ops->warning_symbol(data,
Andi Kleendd315df2006-12-07 02:14:00 +0100290 "DWARF2 unwinder stuck at %s",
Jan Beulichea424052006-08-30 19:37:11 +0200291 UNW_PC(&info));
292 if ((long)UNW_SP(&info) < 0) {
Andi Kleenb615ebd2006-12-07 02:14:00 +0100293 MSG("Leftover inexact backtrace:");
Jan Beulichea424052006-08-30 19:37:11 +0200294 stack = (unsigned long *)UNW_SP(&info);
Andi Kleenbe7a9172006-09-26 10:52:34 +0200295 if (!stack)
Andrew Mortonda689332006-12-07 02:14:02 +0100296 goto out;
Jan Beulichea424052006-08-30 19:37:11 +0200297 } else
Andi Kleendd315df2006-12-07 02:14:00 +0100298 MSG("Full inexact backtrace again:");
Jan Beulichea424052006-08-30 19:37:11 +0200299 } else if (call_trace >= 1)
Andrew Mortonda689332006-12-07 02:14:02 +0100300 goto out;
Andi Kleenb13761e2006-07-28 14:44:51 +0200301 else
Andi Kleendd315df2006-12-07 02:14:00 +0100302 MSG("Full inexact backtrace again:");
Jan Beulichea424052006-08-30 19:37:11 +0200303 } else
Andi Kleendd315df2006-12-07 02:14:00 +0100304 MSG("Inexact backtrace:");
Andi Kleenc0b766f2006-09-26 10:52:34 +0200305 }
306 if (!stack) {
307 unsigned long dummy;
308 stack = &dummy;
309 if (tsk && tsk != current)
310 stack = (unsigned long *)tsk->thread.rsp;
Jan Beulichb538ed22006-06-26 13:57:32 +0200311 }
Ingo Molnar0796bdb2006-11-17 05:57:49 +0100312 /*
313 * Align the stack pointer on word boundary, later loops
314 * rely on that (and corruption / debug info bugs can cause
315 * unaligned values here):
316 */
317 stack = (unsigned long *)((unsigned long)stack & ~(sizeof(long)-1));
Jan Beulichb538ed22006-06-26 13:57:32 +0200318
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700319 /*
320 * Print function call entries within a stack. 'cond' is the
321 * "end of stackframe" condition, that the 'stack++'
322 * iteration will eventually trigger.
323 */
Andi Kleen0a658002005-04-16 15:25:17 -0700324#define HANDLE_STACK(cond) \
325 do while (cond) { \
Jan Beulich1b2f6302006-01-11 22:46:45 +0100326 unsigned long addr = *stack++; \
Andi Kleen446f7132006-12-07 02:14:12 +0100327 /* Use unlocked access here because except for NMIs \
328 we should be already protected against module unloads */ \
329 if (__kernel_text_address(addr)) { \
Andi Kleen0a658002005-04-16 15:25:17 -0700330 /* \
331 * If the address is either in the text segment of the \
332 * kernel, or in the region which contains vmalloc'ed \
333 * memory, it *may* be the address of a calling \
334 * routine; if so, print it so that someone tracing \
335 * down the cause of the crash will be able to figure \
336 * out the call path that was taken. \
337 */ \
Andi Kleenc0b766f2006-09-26 10:52:34 +0200338 ops->address(data, addr); \
Andi Kleen0a658002005-04-16 15:25:17 -0700339 } \
340 } while (0)
341
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700342 /*
343 * Print function call entries in all stacks, starting at the
344 * current stack address. If the stacks consist of nested
345 * exceptions
346 */
Andi Kleenc0b766f2006-09-26 10:52:34 +0200347 for (;;) {
348 char *id;
Andi Kleen0a658002005-04-16 15:25:17 -0700349 unsigned long *estack_end;
350 estack_end = in_exception_stack(cpu, (unsigned long)stack,
351 &used, &id);
352
353 if (estack_end) {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200354 if (ops->stack(data, id) < 0)
355 break;
Andi Kleen0a658002005-04-16 15:25:17 -0700356 HANDLE_STACK (stack < estack_end);
Andi Kleenc0b766f2006-09-26 10:52:34 +0200357 ops->stack(data, "<EOE>");
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700358 /*
359 * We link to the next stack via the
360 * second-to-last pointer (index -2 to end) in the
361 * exception stack:
362 */
Andi Kleen0a658002005-04-16 15:25:17 -0700363 stack = (unsigned long *) estack_end[-2];
364 continue;
365 }
366 if (irqstack_end) {
367 unsigned long *irqstack;
368 irqstack = irqstack_end -
369 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
370
371 if (stack >= irqstack && stack < irqstack_end) {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200372 if (ops->stack(data, "IRQ") < 0)
373 break;
Andi Kleen0a658002005-04-16 15:25:17 -0700374 HANDLE_STACK (stack < irqstack_end);
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700375 /*
376 * We link to the next stack (which would be
377 * the process stack normally) the last
378 * pointer (index -1 to end) in the IRQ stack:
379 */
Andi Kleen0a658002005-04-16 15:25:17 -0700380 stack = (unsigned long *) (irqstack_end[-1]);
381 irqstack_end = NULL;
Andi Kleenc0b766f2006-09-26 10:52:34 +0200382 ops->stack(data, "EOI");
Andi Kleen0a658002005-04-16 15:25:17 -0700383 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385 }
Andi Kleen0a658002005-04-16 15:25:17 -0700386 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
Andi Kleen0a658002005-04-16 15:25:17 -0700388
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700389 /*
Andi Kleenc0b766f2006-09-26 10:52:34 +0200390 * This handles the process stack:
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700391 */
Andi Kleenc547c772006-11-28 20:12:59 +0100392 tinfo = current_thread_info();
393 HANDLE_STACK (valid_stack_ptr(tinfo, stack));
Andi Kleen0a658002005-04-16 15:25:17 -0700394#undef HANDLE_STACK
Andrew Mortonda689332006-12-07 02:14:02 +0100395out:
396 put_cpu();
Andi Kleenc0b766f2006-09-26 10:52:34 +0200397}
398EXPORT_SYMBOL(dump_trace);
Ingo Molnar3ac94932006-07-03 00:24:36 -0700399
Andi Kleenc0b766f2006-09-26 10:52:34 +0200400static void
401print_trace_warning_symbol(void *data, char *msg, unsigned long symbol)
402{
403 print_symbol(msg, symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 printk("\n");
405}
406
Andi Kleenc0b766f2006-09-26 10:52:34 +0200407static void print_trace_warning(void *data, char *msg)
408{
409 printk("%s\n", msg);
410}
411
412static int print_trace_stack(void *data, char *name)
413{
414 printk(" <%s> ", name);
415 return 0;
416}
417
418static void print_trace_address(void *data, unsigned long addr)
419{
420 printk_address(addr);
421}
422
423static struct stacktrace_ops print_trace_ops = {
424 .warning = print_trace_warning,
425 .warning_symbol = print_trace_warning_symbol,
426 .stack = print_trace_stack,
427 .address = print_trace_address,
428};
429
430void
431show_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long *stack)
432{
433 printk("\nCall Trace:\n");
434 dump_trace(tsk, regs, stack, &print_trace_ops, NULL);
435 printk("\n");
436}
437
438static void
439_show_stack(struct task_struct *tsk, struct pt_regs *regs, unsigned long *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 unsigned long *stack;
442 int i;
Andi Kleen151f8cc2006-09-26 10:52:37 +0200443 const int cpu = smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100444 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
445 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 // debugging aid: "show_stack(NULL, NULL);" prints the
448 // back trace for this cpu.
449
450 if (rsp == NULL) {
451 if (tsk)
452 rsp = (unsigned long *)tsk->thread.rsp;
453 else
454 rsp = (unsigned long *)&rsp;
455 }
456
457 stack = rsp;
458 for(i=0; i < kstack_depth_to_print; i++) {
459 if (stack >= irqstack && stack <= irqstack_end) {
460 if (stack == irqstack_end) {
461 stack = (unsigned long *) (irqstack_end[-1]);
462 printk(" <EOI> ");
463 }
464 } else {
465 if (((long) stack & (THREAD_SIZE-1)) == 0)
466 break;
467 }
468 if (i && ((i % 4) == 0))
Ingo Molnar3ac94932006-07-03 00:24:36 -0700469 printk("\n");
470 printk(" %016lx", *stack++);
akpm@osdl.org35faa712005-04-16 15:24:54 -0700471 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
Jan Beulichb538ed22006-06-26 13:57:32 +0200473 show_trace(tsk, regs, rsp);
474}
475
476void show_stack(struct task_struct *tsk, unsigned long * rsp)
477{
478 _show_stack(tsk, NULL, rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
481/*
482 * The architecture-independent dump_stack generator
483 */
484void dump_stack(void)
485{
486 unsigned long dummy;
Jan Beulichb538ed22006-06-26 13:57:32 +0200487 show_trace(NULL, NULL, &dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
490EXPORT_SYMBOL(dump_stack);
491
492void show_registers(struct pt_regs *regs)
493{
494 int i;
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700495 int in_kernel = !user_mode(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 unsigned long rsp;
Andi Kleen151f8cc2006-09-26 10:52:37 +0200497 const int cpu = smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100498 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 rsp = regs->rsp;
501
502 printk("CPU %d ", cpu);
503 __show_regs(regs);
504 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
Al Viroe4f17c42006-01-12 01:05:38 -0800505 cur->comm, cur->pid, task_thread_info(cur), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 /*
508 * When in-kernel, we also print out the stack and code at the
509 * time of the fault..
510 */
511 if (in_kernel) {
512
513 printk("Stack: ");
Jan Beulichb538ed22006-06-26 13:57:32 +0200514 _show_stack(NULL, regs, (unsigned long*)rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 printk("\nCode: ");
Roberto Nibali2b692a82006-03-25 16:29:55 +0100517 if (regs->rip < PAGE_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 goto bad;
519
Roberto Nibali2b692a82006-03-25 16:29:55 +0100520 for (i=0; i<20; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 unsigned char c;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100522 if (__get_user(c, &((unsigned char*)regs->rip)[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523bad:
524 printk(" Bad RIP value.");
525 break;
526 }
527 printk("%02x ", c);
528 }
529 }
530 printk("\n");
531}
532
533void handle_BUG(struct pt_regs *regs)
534{
535 struct bug_frame f;
Jan Beulich5f1d1892006-01-11 22:46:48 +0100536 long len;
537 const char *prefix = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700539 if (user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return;
Stephen Hemminger77a75332006-01-11 22:46:30 +0100541 if (__copy_from_user(&f, (const void __user *) regs->rip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 sizeof(struct bug_frame)))
543 return;
Jan Beulich049cdef2005-09-12 18:49:25 +0200544 if (f.filename >= 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 f.ud2[0] != 0x0f || f.ud2[1] != 0x0b)
546 return;
Jan Beulich5f1d1892006-01-11 22:46:48 +0100547 len = __strnlen_user((char *)(long)f.filename, PATH_MAX) - 1;
548 if (len < 0 || len >= PATH_MAX)
Jan Beulich049cdef2005-09-12 18:49:25 +0200549 f.filename = (int)(long)"unmapped filename";
Jan Beulich5f1d1892006-01-11 22:46:48 +0100550 else if (len > 50) {
551 f.filename += len - 50;
552 prefix = "...";
553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 printk("----------- [cut here ] --------- [please bite here ] ---------\n");
Jan Beulich5f1d1892006-01-11 22:46:48 +0100555 printk(KERN_ALERT "Kernel BUG at %s%.50s:%d\n", prefix, (char *)(long)f.filename, f.line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700558#ifdef CONFIG_BUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559void out_of_line_bug(void)
560{
561 BUG();
562}
Andi Kleen2ee60e172006-06-26 13:59:44 +0200563EXPORT_SYMBOL(out_of_line_bug);
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700564#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566static DEFINE_SPINLOCK(die_lock);
567static int die_owner = -1;
Corey Minyardcdc60a42006-05-08 15:17:22 +0200568static unsigned int die_nest_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100570unsigned __kprobes long oops_begin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Andi Kleen151f8cc2006-09-26 10:52:37 +0200572 int cpu = smp_processor_id();
Jan Beulich12091402005-09-12 18:49:24 +0200573 unsigned long flags;
574
Andrew Mortonabf0f102006-09-26 10:52:36 +0200575 oops_enter();
576
Jan Beulich12091402005-09-12 18:49:24 +0200577 /* racy, but better than risking deadlock. */
578 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (!spin_trylock(&die_lock)) {
580 if (cpu == die_owner)
581 /* nested oops. should stop eventually */;
582 else
Jan Beulich12091402005-09-12 18:49:24 +0200583 spin_lock(&die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
Corey Minyardcdc60a42006-05-08 15:17:22 +0200585 die_nest_count++;
Jan Beulich12091402005-09-12 18:49:24 +0200586 die_owner = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 console_verbose();
Jan Beulich12091402005-09-12 18:49:24 +0200588 bust_spinlocks(1);
589 return flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100592void __kprobes oops_end(unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
594 die_owner = -1;
Jan Beulich12091402005-09-12 18:49:24 +0200595 bust_spinlocks(0);
Corey Minyardcdc60a42006-05-08 15:17:22 +0200596 die_nest_count--;
597 if (die_nest_count)
598 /* We still own the lock */
599 local_irq_restore(flags);
600 else
601 /* Nest count reaches zero, release the lock. */
602 spin_unlock_irqrestore(&die_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if (panic_on_oops)
Horms012c4372006-08-13 23:24:22 -0700604 panic("Fatal exception");
Andrew Mortonabf0f102006-09-26 10:52:36 +0200605 oops_exit();
Jan Beulich12091402005-09-12 18:49:24 +0200606}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100608void __kprobes __die(const char * str, struct pt_regs * regs, long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
610 static int die_counter;
611 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
612#ifdef CONFIG_PREEMPT
613 printk("PREEMPT ");
614#endif
615#ifdef CONFIG_SMP
616 printk("SMP ");
617#endif
618#ifdef CONFIG_DEBUG_PAGEALLOC
619 printk("DEBUG_PAGEALLOC");
620#endif
621 printk("\n");
Jan Beulich6e3f3612006-01-11 22:42:14 +0100622 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 show_registers(regs);
624 /* Executive summary in case the oops scrolled away */
625 printk(KERN_ALERT "RIP ");
626 printk_address(regs->rip);
627 printk(" RSP <%016lx>\n", regs->rsp);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200628 if (kexec_should_crash(current))
629 crash_kexec(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
632void die(const char * str, struct pt_regs * regs, long err)
633{
Jan Beulich12091402005-09-12 18:49:24 +0200634 unsigned long flags = oops_begin();
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 handle_BUG(regs);
637 __die(str, regs, err);
Jan Beulich12091402005-09-12 18:49:24 +0200638 oops_end(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 do_exit(SIGSEGV);
640}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Andi Kleenfac58552006-09-26 10:52:27 +0200642void __kprobes die_nmi(char *str, struct pt_regs *regs, int do_panic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Jan Beulich12091402005-09-12 18:49:24 +0200644 unsigned long flags = oops_begin();
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 /*
647 * We are in trouble anyway, lets at least try
648 * to get a message out.
649 */
Andi Kleen151f8cc2006-09-26 10:52:37 +0200650 printk(str, smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 show_registers(regs);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200652 if (kexec_should_crash(current))
653 crash_kexec(regs);
Andi Kleenfac58552006-09-26 10:52:27 +0200654 if (do_panic || panic_on_oops)
655 panic("Non maskable interrupt");
Jan Beulich12091402005-09-12 18:49:24 +0200656 oops_end(flags);
Corey Minyard8b1ffe952006-05-08 15:17:25 +0200657 nmi_exit();
658 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 do_exit(SIGSEGV);
660}
661
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700662static void __kprobes do_trap(int trapnr, int signr, char *str,
663 struct pt_regs * regs, long error_code,
664 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100666 struct task_struct *tsk = current;
667
Jan Beulich6e3f3612006-01-11 22:42:14 +0100668 tsk->thread.error_code = error_code;
669 tsk->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Jan Beulich6e3f3612006-01-11 22:42:14 +0100671 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (exception_trace && unhandled_signal(tsk, signr))
673 printk(KERN_INFO
674 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
675 tsk->comm, tsk->pid, str,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100676 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (info)
679 force_sig_info(signr, info, tsk);
680 else
681 force_sig(signr, tsk);
682 return;
683 }
684
685
686 /* kernel trap */
687 {
688 const struct exception_table_entry *fixup;
689 fixup = search_exception_tables(regs->rip);
Roberto Nibali2b692a82006-03-25 16:29:55 +0100690 if (fixup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 regs->rip = fixup->fixup;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100692 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 die(str, regs, error_code);
694 return;
695 }
696}
697
698#define DO_ERROR(trapnr, signr, str, name) \
699asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
700{ \
701 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
702 == NOTIFY_STOP) \
703 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200704 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 do_trap(trapnr, signr, str, regs, error_code, NULL); \
706}
707
708#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
709asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
710{ \
711 siginfo_t info; \
712 info.si_signo = signr; \
713 info.si_errno = 0; \
714 info.si_code = sicode; \
715 info.si_addr = (void __user *)siaddr; \
716 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
717 == NOTIFY_STOP) \
718 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200719 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 do_trap(trapnr, signr, str, regs, error_code, &info); \
721}
722
723DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
724DO_ERROR( 4, SIGSEGV, "overflow", overflow)
725DO_ERROR( 5, SIGSEGV, "bounds", bounds)
Chuck Ebbert100c0e32006-01-11 22:46:00 +0100726DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
728DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
729DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
730DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
731DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
732DO_ERROR(18, SIGSEGV, "reserved", reserved)
Andi Kleen40e59a62006-05-15 18:19:47 +0200733
734/* Runs on IST stack */
735asmlinkage void do_stack_segment(struct pt_regs *regs, long error_code)
736{
737 if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
738 12, SIGBUS) == NOTIFY_STOP)
739 return;
740 preempt_conditional_sti(regs);
741 do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
742 preempt_conditional_cli(regs);
743}
Jan Beulicheca37c12006-01-11 22:42:17 +0100744
745asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
746{
747 static const char str[] = "double fault";
748 struct task_struct *tsk = current;
749
750 /* Return not checked because double check cannot be ignored */
751 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
752
753 tsk->thread.error_code = error_code;
754 tsk->thread.trap_no = 8;
755
756 /* This is always a kernel trap and never fixable (and thus must
757 never return). */
758 for (;;)
759 die(str, regs, error_code);
760}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700762asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
763 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100765 struct task_struct *tsk = current;
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 conditional_sti(regs);
768
Jan Beulich6e3f3612006-01-11 22:42:14 +0100769 tsk->thread.error_code = error_code;
770 tsk->thread.trap_no = 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Jan Beulich6e3f3612006-01-11 22:42:14 +0100772 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
774 printk(KERN_INFO
775 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
776 tsk->comm, tsk->pid,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100777 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 force_sig(SIGSEGV, tsk);
780 return;
781 }
782
783 /* kernel gp */
784 {
785 const struct exception_table_entry *fixup;
786 fixup = search_exception_tables(regs->rip);
787 if (fixup) {
788 regs->rip = fixup->fixup;
789 return;
790 }
791 if (notify_die(DIE_GPF, "general protection fault", regs,
792 error_code, 13, SIGSEGV) == NOTIFY_STOP)
793 return;
794 die("general protection fault", regs, error_code);
795 }
796}
797
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100798static __kprobes void
799mem_parity_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Don Zickusc41c5cd2006-09-26 10:52:27 +0200801 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
802 reason);
Andi Kleen9c5f8be2006-12-07 02:14:03 +0100803 printk(KERN_EMERG "You have some hardware problem, likely on the PCI bus.\n");
Don Zickusc41c5cd2006-09-26 10:52:27 +0200804
Don Zickus8da5add2006-09-26 10:52:27 +0200805 if (panic_on_unrecovered_nmi)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200806 panic("NMI: Not continuing");
807
808 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 /* Clear and disable the memory parity error line. */
811 reason = (reason & 0xf) | 4;
812 outb(reason, 0x61);
813}
814
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100815static __kprobes void
816io_check_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
818 printk("NMI: IOCK error (debug interrupt?)\n");
819 show_registers(regs);
820
821 /* Re-enable the IOCK line, wait for a few seconds */
822 reason = (reason & 0xf) | 8;
823 outb(reason, 0x61);
824 mdelay(2000);
825 reason &= ~8;
826 outb(reason, 0x61);
827}
828
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100829static __kprobes void
830unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200831{
832 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
833 reason);
834 printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n");
Don Zickus8da5add2006-09-26 10:52:27 +0200835
836 if (panic_on_unrecovered_nmi)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200837 panic("NMI: Not continuing");
Don Zickus8da5add2006-09-26 10:52:27 +0200838
Don Zickusc41c5cd2006-09-26 10:52:27 +0200839 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700842/* Runs on IST stack. This code must keep interrupts off all the time.
843 Nested NMIs are prevented by the CPU. */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100844asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846 unsigned char reason = 0;
Ashok Raj76e4f662005-06-25 14:55:00 -0700847 int cpu;
848
849 cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 /* Only the BSP gets external NMIs from the system. */
Ashok Raj76e4f662005-06-25 14:55:00 -0700852 if (!cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 reason = get_nmi_reason();
854
855 if (!(reason & 0xc0)) {
Jan Beulich6e3f3612006-01-11 22:42:14 +0100856 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 == NOTIFY_STOP)
858 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 /*
860 * Ok, so this is none of the documented NMI sources,
861 * so it must be the NMI watchdog.
862 */
Don Zickus3adbbcce2006-09-26 10:52:26 +0200863 if (nmi_watchdog_tick(regs,reason))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 return;
Don Zickus3adbbcce2006-09-26 10:52:26 +0200865 if (!do_nmi_callback(regs,cpu))
Don Zickus3adbbcce2006-09-26 10:52:26 +0200866 unknown_nmi_error(reason, regs);
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return;
869 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100870 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return;
872
873 /* AK: following checks seem to be broken on modern chipsets. FIXME */
874
875 if (reason & 0x80)
876 mem_parity_error(reason, regs);
877 if (reason & 0x40)
878 io_check_error(reason, regs);
879}
880
Jan Beulichb556b352006-01-11 22:43:00 +0100881/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700882asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
884 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
885 return;
886 }
Andi Kleen40e59a62006-05-15 18:19:47 +0200887 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
Andi Kleen40e59a62006-05-15 18:19:47 +0200889 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700892/* Help handler running on IST stack to switch back to user stack
893 for scheduling or signal handling. The actual stack switch is done in
894 entry.S */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100895asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700897 struct pt_regs *regs = eregs;
898 /* Did already sync */
899 if (eregs == (struct pt_regs *)eregs->rsp)
900 ;
901 /* Exception from user space */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700902 else if (user_mode(eregs))
Al Virobb049232006-01-12 01:05:38 -0800903 regs = task_pt_regs(current);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700904 /* Exception from kernel and interrupts are enabled. Move to
905 kernel process stack. */
906 else if (eregs->eflags & X86_EFLAGS_IF)
907 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
908 if (eregs != regs)
909 *regs = *eregs;
910 return regs;
911}
912
913/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700914asmlinkage void __kprobes do_debug(struct pt_regs * regs,
915 unsigned long error_code)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700916{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 unsigned long condition;
918 struct task_struct *tsk = current;
919 siginfo_t info;
920
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700921 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
Andi Kleendaeeafe2005-04-16 15:25:13 -0700924 SIGTRAP) == NOTIFY_STOP)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700925 return;
Andi Kleendaeeafe2005-04-16 15:25:13 -0700926
John Blackwooda65d17c2006-02-12 14:34:58 -0800927 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 /* Mask out spurious debug traps due to lazy DR7 setting */
930 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
931 if (!tsk->thread.debugreg7) {
932 goto clear_dr7;
933 }
934 }
935
936 tsk->thread.debugreg6 = condition;
937
938 /* Mask out spurious TF errors due to lazy TF clearing */
Andi Kleendaeeafe2005-04-16 15:25:13 -0700939 if (condition & DR_STEP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /*
941 * The TF error should be masked out only if the current
942 * process is not traced and if the TRAP flag has been set
943 * previously by a tracing process (condition detected by
944 * the PT_DTRACE flag); remember that the i386 TRAP flag
945 * can be modified by the process itself in user mode,
946 * allowing programs to debug themselves without the ptrace()
947 * interface.
948 */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700949 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 goto clear_TF_reenable;
Andi Kleenbe61bff2005-04-16 15:24:57 -0700951 /*
952 * Was the TF flag set by a debugger? If so, clear it now,
953 * so that register information is correct.
954 */
955 if (tsk->ptrace & PT_DTRACE) {
956 regs->eflags &= ~TF_MASK;
957 tsk->ptrace &= ~PT_DTRACE;
958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 }
960
961 /* Ok, finally something we can handle */
962 tsk->thread.trap_no = 1;
963 tsk->thread.error_code = error_code;
964 info.si_signo = SIGTRAP;
965 info.si_errno = 0;
966 info.si_code = TRAP_BRKPT;
John Blackwood01b8faa2006-01-11 22:44:15 +0100967 info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
968 force_sig_info(SIGTRAP, &info, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970clear_dr7:
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700971 set_debugreg(0UL, 7);
John Blackwooda65d17c2006-02-12 14:34:58 -0800972 preempt_conditional_cli(regs);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700973 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975clear_TF_reenable:
976 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 regs->eflags &= ~TF_MASK;
John Blackwooda65d17c2006-02-12 14:34:58 -0800978 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979}
980
Jan Beulich6e3f3612006-01-11 22:42:14 +0100981static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
983 const struct exception_table_entry *fixup;
984 fixup = search_exception_tables(regs->rip);
985 if (fixup) {
986 regs->rip = fixup->fixup;
987 return 1;
988 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100989 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
Andi Kleen3a848f62005-04-16 15:25:06 -0700990 /* Illegal floating point operation in the kernel */
Jan Beulich6e3f3612006-01-11 22:42:14 +0100991 current->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 die(str, regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return 0;
994}
995
996/*
997 * Note that we play around with the 'TS' bit in an attempt to get
998 * the correct behaviour even in the presence of the asynchronous
999 * IRQ13 behaviour
1000 */
1001asmlinkage void do_coprocessor_error(struct pt_regs *regs)
1002{
1003 void __user *rip = (void __user *)(regs->rip);
1004 struct task_struct * task;
1005 siginfo_t info;
1006 unsigned short cwd, swd;
1007
1008 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -07001009 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +01001010 kernel_math_error(regs, "kernel x87 math error", 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return;
1012
1013 /*
1014 * Save the info for the exception handler and clear the error.
1015 */
1016 task = current;
1017 save_init_fpu(task);
1018 task->thread.trap_no = 16;
1019 task->thread.error_code = 0;
1020 info.si_signo = SIGFPE;
1021 info.si_errno = 0;
1022 info.si_code = __SI_FAULT;
1023 info.si_addr = rip;
1024 /*
1025 * (~cwd & swd) will mask out exceptions that are not set to unmasked
1026 * status. 0x3f is the exception bits in these regs, 0x200 is the
1027 * C1 reg you need in case of a stack fault, 0x040 is the stack
1028 * fault bit. We should only be taking one exception at a time,
1029 * so if this combination doesn't produce any single exception,
1030 * then we have a bad program that isn't synchronizing its FPU usage
1031 * and it will suffer the consequences since we won't be able to
1032 * fully reproduce the context of the exception
1033 */
1034 cwd = get_fpu_cwd(task);
1035 swd = get_fpu_swd(task);
Chuck Ebbertff347b22005-09-12 18:49:25 +02001036 switch (swd & ~cwd & 0x3f) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 case 0x000:
1038 default:
1039 break;
1040 case 0x001: /* Invalid Op */
Chuck Ebbertff347b22005-09-12 18:49:25 +02001041 /*
1042 * swd & 0x240 == 0x040: Stack Underflow
1043 * swd & 0x240 == 0x240: Stack Overflow
1044 * User must clear the SF bit (0x40) if set
1045 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 info.si_code = FPE_FLTINV;
1047 break;
1048 case 0x002: /* Denormalize */
1049 case 0x010: /* Underflow */
1050 info.si_code = FPE_FLTUND;
1051 break;
1052 case 0x004: /* Zero Divide */
1053 info.si_code = FPE_FLTDIV;
1054 break;
1055 case 0x008: /* Overflow */
1056 info.si_code = FPE_FLTOVF;
1057 break;
1058 case 0x020: /* Precision */
1059 info.si_code = FPE_FLTRES;
1060 break;
1061 }
1062 force_sig_info(SIGFPE, &info, task);
1063}
1064
1065asmlinkage void bad_intr(void)
1066{
1067 printk("bad interrupt");
1068}
1069
1070asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
1071{
1072 void __user *rip = (void __user *)(regs->rip);
1073 struct task_struct * task;
1074 siginfo_t info;
1075 unsigned short mxcsr;
1076
1077 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -07001078 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +01001079 kernel_math_error(regs, "kernel simd math error", 19))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 return;
1081
1082 /*
1083 * Save the info for the exception handler and clear the error.
1084 */
1085 task = current;
1086 save_init_fpu(task);
1087 task->thread.trap_no = 19;
1088 task->thread.error_code = 0;
1089 info.si_signo = SIGFPE;
1090 info.si_errno = 0;
1091 info.si_code = __SI_FAULT;
1092 info.si_addr = rip;
1093 /*
1094 * The SIMD FPU exceptions are handled a little differently, as there
1095 * is only a single status/control register. Thus, to determine which
1096 * unmasked exception was caught we must mask the exception mask bits
1097 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
1098 */
1099 mxcsr = get_fpu_mxcsr(task);
1100 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
1101 case 0x000:
1102 default:
1103 break;
1104 case 0x001: /* Invalid Op */
1105 info.si_code = FPE_FLTINV;
1106 break;
1107 case 0x002: /* Denormalize */
1108 case 0x010: /* Underflow */
1109 info.si_code = FPE_FLTUND;
1110 break;
1111 case 0x004: /* Zero Divide */
1112 info.si_code = FPE_FLTDIV;
1113 break;
1114 case 0x008: /* Overflow */
1115 info.si_code = FPE_FLTOVF;
1116 break;
1117 case 0x020: /* Precision */
1118 info.si_code = FPE_FLTRES;
1119 break;
1120 }
1121 force_sig_info(SIGFPE, &info, task);
1122}
1123
1124asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
1125{
1126}
1127
1128asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
1129{
1130}
1131
Jacob Shin89b831e2005-11-05 17:25:53 +01001132asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
1133{
1134}
1135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136/*
1137 * 'math_state_restore()' saves the current math information in the
1138 * old math state array, and gets the new ones from the current task
1139 *
1140 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1141 * Don't touch unless you *really* know how it works.
1142 */
1143asmlinkage void math_state_restore(void)
1144{
1145 struct task_struct *me = current;
1146 clts(); /* Allow maths ops (or we recurse) */
1147
1148 if (!used_math())
1149 init_fpu(me);
1150 restore_fpu_checking(&me->thread.i387.fxsave);
Al Viroe4f17c42006-01-12 01:05:38 -08001151 task_thread_info(me)->status |= TS_USEDFPU;
Arjan van de Vene07e23e2006-09-26 10:52:36 +02001152 me->fpu_counter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153}
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155void __init trap_init(void)
1156{
1157 set_intr_gate(0,&divide_error);
1158 set_intr_gate_ist(1,&debug,DEBUG_STACK);
1159 set_intr_gate_ist(2,&nmi,NMI_STACK);
Jan Beulichb556b352006-01-11 22:43:00 +01001160 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
Jan Beulich0a521582006-01-11 22:42:08 +01001161 set_system_gate(4,&overflow); /* int4 can be called from all */
1162 set_intr_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 set_intr_gate(6,&invalid_op);
1164 set_intr_gate(7,&device_not_available);
1165 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
1166 set_intr_gate(9,&coprocessor_segment_overrun);
1167 set_intr_gate(10,&invalid_TSS);
1168 set_intr_gate(11,&segment_not_present);
1169 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
1170 set_intr_gate(13,&general_protection);
1171 set_intr_gate(14,&page_fault);
1172 set_intr_gate(15,&spurious_interrupt_bug);
1173 set_intr_gate(16,&coprocessor_error);
1174 set_intr_gate(17,&alignment_check);
1175#ifdef CONFIG_X86_MCE
1176 set_intr_gate_ist(18,&machine_check, MCE_STACK);
1177#endif
1178 set_intr_gate(19,&simd_coprocessor_error);
1179
1180#ifdef CONFIG_IA32_EMULATION
1181 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1182#endif
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 /*
1185 * Should be a barrier for any external CPU state.
1186 */
1187 cpu_init();
1188}
1189
1190
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001191static int __init oops_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001193 if (!s)
1194 return -EINVAL;
1195 if (!strcmp(s, "panic"))
1196 panic_on_oops = 1;
1197 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001199early_param("oops", oops_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201static int __init kstack_setup(char *s)
1202{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001203 if (!s)
1204 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 kstack_depth_to_print = simple_strtoul(s,NULL,0);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001206 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001208early_param("kstack", kstack_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Jan Beulichea424052006-08-30 19:37:11 +02001210#ifdef CONFIG_STACK_UNWIND
Jan Beulichc33bd9a2006-06-26 13:57:47 +02001211static int __init call_trace_setup(char *s)
1212{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001213 if (!s)
1214 return -EINVAL;
Jan Beulichc33bd9a2006-06-26 13:57:47 +02001215 if (strcmp(s, "old") == 0)
1216 call_trace = -1;
1217 else if (strcmp(s, "both") == 0)
1218 call_trace = 0;
Andi Kleenb13761e2006-07-28 14:44:51 +02001219 else if (strcmp(s, "newfallback") == 0)
Jan Beulichc33bd9a2006-06-26 13:57:47 +02001220 call_trace = 1;
Andi Kleenb13761e2006-07-28 14:44:51 +02001221 else if (strcmp(s, "new") == 0)
1222 call_trace = 2;
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001223 return 0;
Jan Beulichc33bd9a2006-06-26 13:57:47 +02001224}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001225early_param("call_trace", call_trace_setup);
Jan Beulichea424052006-08-30 19:37:11 +02001226#endif