blob: fb8486eca1b672fd0a7bfc1b379dcd0cfcb4dff1 [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>
26#include <linux/module.h>
27#include <linux/moduleparam.h>
akpm@osdl.org35faa712005-04-16 15:24:54 -070028#include <linux/nmi.h>
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -070029#include <linux/kprobes.h>
Vivek Goyal8bcc5282006-04-18 12:35:13 +020030#include <linux/kexec.h>
Jan Beulichb538ed22006-06-26 13:57:32 +020031#include <linux/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <asm/system.h>
34#include <asm/uaccess.h>
35#include <asm/io.h>
36#include <asm/atomic.h>
37#include <asm/debugreg.h>
38#include <asm/desc.h>
39#include <asm/i387.h>
40#include <asm/kdebug.h>
41#include <asm/processor.h>
Jan Beulichb538ed22006-06-26 13:57:32 +020042#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/smp.h>
44#include <asm/pgalloc.h>
45#include <asm/pda.h>
46#include <asm/proto.h>
47#include <asm/nmi.h>
Andi Kleenc0b766f2006-09-26 10:52:34 +020048#include <asm/stacktrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050asmlinkage void divide_error(void);
51asmlinkage void debug(void);
52asmlinkage void nmi(void);
53asmlinkage void int3(void);
54asmlinkage void overflow(void);
55asmlinkage void bounds(void);
56asmlinkage void invalid_op(void);
57asmlinkage void device_not_available(void);
58asmlinkage void double_fault(void);
59asmlinkage void coprocessor_segment_overrun(void);
60asmlinkage void invalid_TSS(void);
61asmlinkage void segment_not_present(void);
62asmlinkage void stack_segment(void);
63asmlinkage void general_protection(void);
64asmlinkage void page_fault(void);
65asmlinkage void coprocessor_error(void);
66asmlinkage void simd_coprocessor_error(void);
67asmlinkage void reserved(void);
68asmlinkage void alignment_check(void);
69asmlinkage void machine_check(void);
70asmlinkage void spurious_interrupt_bug(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Alan Sterne041c682006-03-27 01:16:30 -080072ATOMIC_NOTIFIER_HEAD(die_chain);
Andi Kleen2ee60e172006-06-26 13:59:44 +020073EXPORT_SYMBOL(die_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75int register_die_notifier(struct notifier_block *nb)
76{
Jan Beulich8c914cb2006-03-25 16:29:40 +010077 vmalloc_sync_all();
Alan Sterne041c682006-03-27 01:16:30 -080078 return atomic_notifier_chain_register(&die_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
Arjan van de Ven1454aed2006-07-10 04:44:05 -070080EXPORT_SYMBOL(register_die_notifier); /* used modular by kdb */
Alan Sterne041c682006-03-27 01:16:30 -080081
82int unregister_die_notifier(struct notifier_block *nb)
83{
84 return atomic_notifier_chain_unregister(&die_chain, nb);
85}
Arjan van de Ven1454aed2006-07-10 04:44:05 -070086EXPORT_SYMBOL(unregister_die_notifier); /* used modular by kdb */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88static inline void conditional_sti(struct pt_regs *regs)
89{
90 if (regs->eflags & X86_EFLAGS_IF)
91 local_irq_enable();
92}
93
John Blackwooda65d17c2006-02-12 14:34:58 -080094static inline void preempt_conditional_sti(struct pt_regs *regs)
95{
96 preempt_disable();
97 if (regs->eflags & X86_EFLAGS_IF)
98 local_irq_enable();
99}
100
101static inline void preempt_conditional_cli(struct pt_regs *regs)
102{
103 if (regs->eflags & X86_EFLAGS_IF)
104 local_irq_disable();
Andi Kleen40e59a62006-05-15 18:19:47 +0200105 /* Make sure to not schedule here because we could be running
106 on an exception stack. */
John Blackwooda65d17c2006-02-12 14:34:58 -0800107 preempt_enable_no_resched();
108}
109
Jan Beulichcab093b2006-06-26 13:59:26 +0200110static int kstack_depth_to_print = 12;
Jan Beulichea424052006-08-30 19:37:11 +0200111#ifdef CONFIG_STACK_UNWIND
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200112static int call_trace = 1;
Jan Beulichea424052006-08-30 19:37:11 +0200113#else
114#define call_trace (-1)
115#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117#ifdef CONFIG_KALLSYMS
Ingo Molnar3ac94932006-07-03 00:24:36 -0700118# include <linux/kallsyms.h>
119void 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 Beulichb538ed22006-06-26 13:57:32 +0200228
229 while (unwind(info) == 0 && UNW_PC(info)) {
Ingo Molnar3ac94932006-07-03 00:24:36 -0700230 n++;
Andi Kleenc0b766f2006-09-26 10:52:34 +0200231 oad->ops->address(oad->data, UNW_PC(info));
Jan Beulichb538ed22006-06-26 13:57:32 +0200232 if (arch_unw_user_mode(info))
233 break;
234 }
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200235 return n;
Jan Beulichb538ed22006-06-26 13:57:32 +0200236}
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238/*
239 * x86-64 can have upto three kernel stacks:
240 * process stack
241 * interrupt stack
Andi Kleen0a658002005-04-16 15:25:17 -0700242 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 */
244
Andi Kleenc0b766f2006-09-26 10:52:34 +0200245void dump_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long * stack,
246 struct stacktrace_ops *ops, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Andi Kleen151f8cc2006-09-26 10:52:37 +0200248 const unsigned cpu = smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100249 unsigned long *irqstack_end = (unsigned long *)cpu_pda(cpu)->irqstackptr;
Andi Kleen0a658002005-04-16 15:25:17 -0700250 unsigned used = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Jan Beulichb538ed22006-06-26 13:57:32 +0200252 if (!tsk)
253 tsk = current;
254
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200255 if (call_trace >= 0) {
256 int unw_ret = 0;
257 struct unwind_frame_info info;
Andi Kleenc0b766f2006-09-26 10:52:34 +0200258 struct ops_and_data oad = { .ops = ops, .data = data };
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200259
260 if (regs) {
261 if (unwind_init_frame_info(&info, tsk, regs) == 0)
Andi Kleenc0b766f2006-09-26 10:52:34 +0200262 unw_ret = dump_trace_unwind(&info, &oad);
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200263 } else if (tsk == current)
Andi Kleenc0b766f2006-09-26 10:52:34 +0200264 unw_ret = unwind_init_running(&info, dump_trace_unwind, &oad);
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200265 else {
266 if (unwind_init_blocked(&info, tsk) == 0)
Andi Kleenc0b766f2006-09-26 10:52:34 +0200267 unw_ret = dump_trace_unwind(&info, &oad);
Jan Beulichb538ed22006-06-26 13:57:32 +0200268 }
Jan Beulichea424052006-08-30 19:37:11 +0200269 if (unw_ret > 0) {
270 if (call_trace == 1 && !arch_unw_user_mode(&info)) {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200271 ops->warning_symbol(data, "DWARF2 unwinder stuck at %s\n",
Jan Beulichea424052006-08-30 19:37:11 +0200272 UNW_PC(&info));
273 if ((long)UNW_SP(&info) < 0) {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200274 ops->warning(data, "Leftover inexact backtrace:\n");
Jan Beulichea424052006-08-30 19:37:11 +0200275 stack = (unsigned long *)UNW_SP(&info);
Andi Kleenbe7a9172006-09-26 10:52:34 +0200276 if (!stack)
277 return;
Jan Beulichea424052006-08-30 19:37:11 +0200278 } else
Andi Kleenc0b766f2006-09-26 10:52:34 +0200279 ops->warning(data, "Full inexact backtrace again:\n");
Jan Beulichea424052006-08-30 19:37:11 +0200280 } else if (call_trace >= 1)
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200281 return;
Andi Kleenb13761e2006-07-28 14:44:51 +0200282 else
Andi Kleenc0b766f2006-09-26 10:52:34 +0200283 ops->warning(data, "Full inexact backtrace again:\n");
Jan Beulichea424052006-08-30 19:37:11 +0200284 } else
Andi Kleenc0b766f2006-09-26 10:52:34 +0200285 ops->warning(data, "Inexact backtrace:\n");
286 }
287 if (!stack) {
288 unsigned long dummy;
289 stack = &dummy;
290 if (tsk && tsk != current)
291 stack = (unsigned long *)tsk->thread.rsp;
Jan Beulichb538ed22006-06-26 13:57:32 +0200292 }
293
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700294 /*
295 * Print function call entries within a stack. 'cond' is the
296 * "end of stackframe" condition, that the 'stack++'
297 * iteration will eventually trigger.
298 */
Andi Kleen0a658002005-04-16 15:25:17 -0700299#define HANDLE_STACK(cond) \
300 do while (cond) { \
Jan Beulich1b2f6302006-01-11 22:46:45 +0100301 unsigned long addr = *stack++; \
Andi Kleen0a658002005-04-16 15:25:17 -0700302 if (kernel_text_address(addr)) { \
303 /* \
304 * If the address is either in the text segment of the \
305 * kernel, or in the region which contains vmalloc'ed \
306 * memory, it *may* be the address of a calling \
307 * routine; if so, print it so that someone tracing \
308 * down the cause of the crash will be able to figure \
309 * out the call path that was taken. \
310 */ \
Andi Kleenc0b766f2006-09-26 10:52:34 +0200311 ops->address(data, addr); \
Andi Kleen0a658002005-04-16 15:25:17 -0700312 } \
313 } while (0)
314
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700315 /*
316 * Print function call entries in all stacks, starting at the
317 * current stack address. If the stacks consist of nested
318 * exceptions
319 */
Andi Kleenc0b766f2006-09-26 10:52:34 +0200320 for (;;) {
321 char *id;
Andi Kleen0a658002005-04-16 15:25:17 -0700322 unsigned long *estack_end;
323 estack_end = in_exception_stack(cpu, (unsigned long)stack,
324 &used, &id);
325
326 if (estack_end) {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200327 if (ops->stack(data, id) < 0)
328 break;
Andi Kleen0a658002005-04-16 15:25:17 -0700329 HANDLE_STACK (stack < estack_end);
Andi Kleenc0b766f2006-09-26 10:52:34 +0200330 ops->stack(data, "<EOE>");
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700331 /*
332 * We link to the next stack via the
333 * second-to-last pointer (index -2 to end) in the
334 * exception stack:
335 */
Andi Kleen0a658002005-04-16 15:25:17 -0700336 stack = (unsigned long *) estack_end[-2];
337 continue;
338 }
339 if (irqstack_end) {
340 unsigned long *irqstack;
341 irqstack = irqstack_end -
342 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
343
344 if (stack >= irqstack && stack < irqstack_end) {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200345 if (ops->stack(data, "IRQ") < 0)
346 break;
Andi Kleen0a658002005-04-16 15:25:17 -0700347 HANDLE_STACK (stack < irqstack_end);
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700348 /*
349 * We link to the next stack (which would be
350 * the process stack normally) the last
351 * pointer (index -1 to end) in the IRQ stack:
352 */
Andi Kleen0a658002005-04-16 15:25:17 -0700353 stack = (unsigned long *) (irqstack_end[-1]);
354 irqstack_end = NULL;
Andi Kleenc0b766f2006-09-26 10:52:34 +0200355 ops->stack(data, "EOI");
Andi Kleen0a658002005-04-16 15:25:17 -0700356 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 }
358 }
Andi Kleen0a658002005-04-16 15:25:17 -0700359 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
Andi Kleen0a658002005-04-16 15:25:17 -0700361
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700362 /*
Andi Kleenc0b766f2006-09-26 10:52:34 +0200363 * This handles the process stack:
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700364 */
Andi Kleen0a658002005-04-16 15:25:17 -0700365 HANDLE_STACK (((long) stack & (THREAD_SIZE-1)) != 0);
366#undef HANDLE_STACK
Andi Kleenc0b766f2006-09-26 10:52:34 +0200367}
368EXPORT_SYMBOL(dump_trace);
Ingo Molnar3ac94932006-07-03 00:24:36 -0700369
Andi Kleenc0b766f2006-09-26 10:52:34 +0200370static void
371print_trace_warning_symbol(void *data, char *msg, unsigned long symbol)
372{
373 print_symbol(msg, symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 printk("\n");
375}
376
Andi Kleenc0b766f2006-09-26 10:52:34 +0200377static void print_trace_warning(void *data, char *msg)
378{
379 printk("%s\n", msg);
380}
381
382static int print_trace_stack(void *data, char *name)
383{
384 printk(" <%s> ", name);
385 return 0;
386}
387
388static void print_trace_address(void *data, unsigned long addr)
389{
390 printk_address(addr);
391}
392
393static struct stacktrace_ops print_trace_ops = {
394 .warning = print_trace_warning,
395 .warning_symbol = print_trace_warning_symbol,
396 .stack = print_trace_stack,
397 .address = print_trace_address,
398};
399
400void
401show_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long *stack)
402{
403 printk("\nCall Trace:\n");
404 dump_trace(tsk, regs, stack, &print_trace_ops, NULL);
405 printk("\n");
406}
407
408static void
409_show_stack(struct task_struct *tsk, struct pt_regs *regs, unsigned long *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
411 unsigned long *stack;
412 int i;
Andi Kleen151f8cc2006-09-26 10:52:37 +0200413 const int cpu = smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100414 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
415 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 // debugging aid: "show_stack(NULL, NULL);" prints the
418 // back trace for this cpu.
419
420 if (rsp == NULL) {
421 if (tsk)
422 rsp = (unsigned long *)tsk->thread.rsp;
423 else
424 rsp = (unsigned long *)&rsp;
425 }
426
427 stack = rsp;
428 for(i=0; i < kstack_depth_to_print; i++) {
429 if (stack >= irqstack && stack <= irqstack_end) {
430 if (stack == irqstack_end) {
431 stack = (unsigned long *) (irqstack_end[-1]);
432 printk(" <EOI> ");
433 }
434 } else {
435 if (((long) stack & (THREAD_SIZE-1)) == 0)
436 break;
437 }
438 if (i && ((i % 4) == 0))
Ingo Molnar3ac94932006-07-03 00:24:36 -0700439 printk("\n");
440 printk(" %016lx", *stack++);
akpm@osdl.org35faa712005-04-16 15:24:54 -0700441 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
Jan Beulichb538ed22006-06-26 13:57:32 +0200443 show_trace(tsk, regs, rsp);
444}
445
446void show_stack(struct task_struct *tsk, unsigned long * rsp)
447{
448 _show_stack(tsk, NULL, rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
451/*
452 * The architecture-independent dump_stack generator
453 */
454void dump_stack(void)
455{
456 unsigned long dummy;
Jan Beulichb538ed22006-06-26 13:57:32 +0200457 show_trace(NULL, NULL, &dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460EXPORT_SYMBOL(dump_stack);
461
462void show_registers(struct pt_regs *regs)
463{
464 int i;
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700465 int in_kernel = !user_mode(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 unsigned long rsp;
Andi Kleen151f8cc2006-09-26 10:52:37 +0200467 const int cpu = smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100468 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 rsp = regs->rsp;
471
472 printk("CPU %d ", cpu);
473 __show_regs(regs);
474 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
Al Viroe4f17c42006-01-12 01:05:38 -0800475 cur->comm, cur->pid, task_thread_info(cur), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 /*
478 * When in-kernel, we also print out the stack and code at the
479 * time of the fault..
480 */
481 if (in_kernel) {
482
483 printk("Stack: ");
Jan Beulichb538ed22006-06-26 13:57:32 +0200484 _show_stack(NULL, regs, (unsigned long*)rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 printk("\nCode: ");
Roberto Nibali2b692a82006-03-25 16:29:55 +0100487 if (regs->rip < PAGE_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 goto bad;
489
Roberto Nibali2b692a82006-03-25 16:29:55 +0100490 for (i=0; i<20; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 unsigned char c;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100492 if (__get_user(c, &((unsigned char*)regs->rip)[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493bad:
494 printk(" Bad RIP value.");
495 break;
496 }
497 printk("%02x ", c);
498 }
499 }
500 printk("\n");
501}
502
503void handle_BUG(struct pt_regs *regs)
504{
505 struct bug_frame f;
Jan Beulich5f1d1892006-01-11 22:46:48 +0100506 long len;
507 const char *prefix = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700509 if (user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return;
Stephen Hemminger77a75332006-01-11 22:46:30 +0100511 if (__copy_from_user(&f, (const void __user *) regs->rip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 sizeof(struct bug_frame)))
513 return;
Jan Beulich049cdef2005-09-12 18:49:25 +0200514 if (f.filename >= 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 f.ud2[0] != 0x0f || f.ud2[1] != 0x0b)
516 return;
Jan Beulich5f1d1892006-01-11 22:46:48 +0100517 len = __strnlen_user((char *)(long)f.filename, PATH_MAX) - 1;
518 if (len < 0 || len >= PATH_MAX)
Jan Beulich049cdef2005-09-12 18:49:25 +0200519 f.filename = (int)(long)"unmapped filename";
Jan Beulich5f1d1892006-01-11 22:46:48 +0100520 else if (len > 50) {
521 f.filename += len - 50;
522 prefix = "...";
523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 printk("----------- [cut here ] --------- [please bite here ] ---------\n");
Jan Beulich5f1d1892006-01-11 22:46:48 +0100525 printk(KERN_ALERT "Kernel BUG at %s%.50s:%d\n", prefix, (char *)(long)f.filename, f.line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700528#ifdef CONFIG_BUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529void out_of_line_bug(void)
530{
531 BUG();
532}
Andi Kleen2ee60e172006-06-26 13:59:44 +0200533EXPORT_SYMBOL(out_of_line_bug);
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700534#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536static DEFINE_SPINLOCK(die_lock);
537static int die_owner = -1;
Corey Minyardcdc60a42006-05-08 15:17:22 +0200538static unsigned int die_nest_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100540unsigned __kprobes long oops_begin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Andi Kleen151f8cc2006-09-26 10:52:37 +0200542 int cpu = smp_processor_id();
Jan Beulich12091402005-09-12 18:49:24 +0200543 unsigned long flags;
544
Andrew Mortonabf0f102006-09-26 10:52:36 +0200545 oops_enter();
546
Jan Beulich12091402005-09-12 18:49:24 +0200547 /* racy, but better than risking deadlock. */
548 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (!spin_trylock(&die_lock)) {
550 if (cpu == die_owner)
551 /* nested oops. should stop eventually */;
552 else
Jan Beulich12091402005-09-12 18:49:24 +0200553 spin_lock(&die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
Corey Minyardcdc60a42006-05-08 15:17:22 +0200555 die_nest_count++;
Jan Beulich12091402005-09-12 18:49:24 +0200556 die_owner = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 console_verbose();
Jan Beulich12091402005-09-12 18:49:24 +0200558 bust_spinlocks(1);
559 return flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100562void __kprobes oops_end(unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
564 die_owner = -1;
Jan Beulich12091402005-09-12 18:49:24 +0200565 bust_spinlocks(0);
Corey Minyardcdc60a42006-05-08 15:17:22 +0200566 die_nest_count--;
567 if (die_nest_count)
568 /* We still own the lock */
569 local_irq_restore(flags);
570 else
571 /* Nest count reaches zero, release the lock. */
572 spin_unlock_irqrestore(&die_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (panic_on_oops)
Horms012c4372006-08-13 23:24:22 -0700574 panic("Fatal exception");
Andrew Mortonabf0f102006-09-26 10:52:36 +0200575 oops_exit();
Jan Beulich12091402005-09-12 18:49:24 +0200576}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100578void __kprobes __die(const char * str, struct pt_regs * regs, long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 static int die_counter;
581 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
582#ifdef CONFIG_PREEMPT
583 printk("PREEMPT ");
584#endif
585#ifdef CONFIG_SMP
586 printk("SMP ");
587#endif
588#ifdef CONFIG_DEBUG_PAGEALLOC
589 printk("DEBUG_PAGEALLOC");
590#endif
591 printk("\n");
Jan Beulich6e3f3612006-01-11 22:42:14 +0100592 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 show_registers(regs);
594 /* Executive summary in case the oops scrolled away */
595 printk(KERN_ALERT "RIP ");
596 printk_address(regs->rip);
597 printk(" RSP <%016lx>\n", regs->rsp);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200598 if (kexec_should_crash(current))
599 crash_kexec(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
602void die(const char * str, struct pt_regs * regs, long err)
603{
Jan Beulich12091402005-09-12 18:49:24 +0200604 unsigned long flags = oops_begin();
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 handle_BUG(regs);
607 __die(str, regs, err);
Jan Beulich12091402005-09-12 18:49:24 +0200608 oops_end(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 do_exit(SIGSEGV);
610}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Andi Kleenfac58552006-09-26 10:52:27 +0200612void __kprobes die_nmi(char *str, struct pt_regs *regs, int do_panic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Jan Beulich12091402005-09-12 18:49:24 +0200614 unsigned long flags = oops_begin();
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 /*
617 * We are in trouble anyway, lets at least try
618 * to get a message out.
619 */
Andi Kleen151f8cc2006-09-26 10:52:37 +0200620 printk(str, smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 show_registers(regs);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200622 if (kexec_should_crash(current))
623 crash_kexec(regs);
Andi Kleenfac58552006-09-26 10:52:27 +0200624 if (do_panic || panic_on_oops)
625 panic("Non maskable interrupt");
Jan Beulich12091402005-09-12 18:49:24 +0200626 oops_end(flags);
Corey Minyard8b1ffe952006-05-08 15:17:25 +0200627 nmi_exit();
628 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 do_exit(SIGSEGV);
630}
631
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700632static void __kprobes do_trap(int trapnr, int signr, char *str,
633 struct pt_regs * regs, long error_code,
634 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100636 struct task_struct *tsk = current;
637
Jan Beulich6e3f3612006-01-11 22:42:14 +0100638 tsk->thread.error_code = error_code;
639 tsk->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Jan Beulich6e3f3612006-01-11 22:42:14 +0100641 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (exception_trace && unhandled_signal(tsk, signr))
643 printk(KERN_INFO
644 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
645 tsk->comm, tsk->pid, str,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100646 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (info)
649 force_sig_info(signr, info, tsk);
650 else
651 force_sig(signr, tsk);
652 return;
653 }
654
655
656 /* kernel trap */
657 {
658 const struct exception_table_entry *fixup;
659 fixup = search_exception_tables(regs->rip);
Roberto Nibali2b692a82006-03-25 16:29:55 +0100660 if (fixup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 regs->rip = fixup->fixup;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100662 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 die(str, regs, error_code);
664 return;
665 }
666}
667
668#define DO_ERROR(trapnr, signr, str, name) \
669asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
670{ \
671 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
672 == NOTIFY_STOP) \
673 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200674 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 do_trap(trapnr, signr, str, regs, error_code, NULL); \
676}
677
678#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
679asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
680{ \
681 siginfo_t info; \
682 info.si_signo = signr; \
683 info.si_errno = 0; \
684 info.si_code = sicode; \
685 info.si_addr = (void __user *)siaddr; \
686 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
687 == NOTIFY_STOP) \
688 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200689 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 do_trap(trapnr, signr, str, regs, error_code, &info); \
691}
692
693DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
694DO_ERROR( 4, SIGSEGV, "overflow", overflow)
695DO_ERROR( 5, SIGSEGV, "bounds", bounds)
Chuck Ebbert100c0e32006-01-11 22:46:00 +0100696DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
698DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
699DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
700DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
701DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
702DO_ERROR(18, SIGSEGV, "reserved", reserved)
Andi Kleen40e59a62006-05-15 18:19:47 +0200703
704/* Runs on IST stack */
705asmlinkage void do_stack_segment(struct pt_regs *regs, long error_code)
706{
707 if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
708 12, SIGBUS) == NOTIFY_STOP)
709 return;
710 preempt_conditional_sti(regs);
711 do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
712 preempt_conditional_cli(regs);
713}
Jan Beulicheca37c12006-01-11 22:42:17 +0100714
715asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
716{
717 static const char str[] = "double fault";
718 struct task_struct *tsk = current;
719
720 /* Return not checked because double check cannot be ignored */
721 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
722
723 tsk->thread.error_code = error_code;
724 tsk->thread.trap_no = 8;
725
726 /* This is always a kernel trap and never fixable (and thus must
727 never return). */
728 for (;;)
729 die(str, regs, error_code);
730}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700732asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
733 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100735 struct task_struct *tsk = current;
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 conditional_sti(regs);
738
Jan Beulich6e3f3612006-01-11 22:42:14 +0100739 tsk->thread.error_code = error_code;
740 tsk->thread.trap_no = 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Jan Beulich6e3f3612006-01-11 22:42:14 +0100742 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
744 printk(KERN_INFO
745 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
746 tsk->comm, tsk->pid,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100747 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 force_sig(SIGSEGV, tsk);
750 return;
751 }
752
753 /* kernel gp */
754 {
755 const struct exception_table_entry *fixup;
756 fixup = search_exception_tables(regs->rip);
757 if (fixup) {
758 regs->rip = fixup->fixup;
759 return;
760 }
761 if (notify_die(DIE_GPF, "general protection fault", regs,
762 error_code, 13, SIGSEGV) == NOTIFY_STOP)
763 return;
764 die("general protection fault", regs, error_code);
765 }
766}
767
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100768static __kprobes void
769mem_parity_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Don Zickusc41c5cd2006-09-26 10:52:27 +0200771 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
772 reason);
773 printk(KERN_EMERG "You probably have a hardware problem with your "
774 "RAM chips\n");
775
Don Zickus8da5adda2006-09-26 10:52:27 +0200776 if (panic_on_unrecovered_nmi)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200777 panic("NMI: Not continuing");
778
779 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 /* Clear and disable the memory parity error line. */
782 reason = (reason & 0xf) | 4;
783 outb(reason, 0x61);
784}
785
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100786static __kprobes void
787io_check_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
789 printk("NMI: IOCK error (debug interrupt?)\n");
790 show_registers(regs);
791
792 /* Re-enable the IOCK line, wait for a few seconds */
793 reason = (reason & 0xf) | 8;
794 outb(reason, 0x61);
795 mdelay(2000);
796 reason &= ~8;
797 outb(reason, 0x61);
798}
799
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100800static __kprobes void
801unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200802{
803 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
804 reason);
805 printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n");
Don Zickus8da5adda2006-09-26 10:52:27 +0200806
807 if (panic_on_unrecovered_nmi)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200808 panic("NMI: Not continuing");
Don Zickus8da5adda2006-09-26 10:52:27 +0200809
Don Zickusc41c5cd2006-09-26 10:52:27 +0200810 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700813/* Runs on IST stack. This code must keep interrupts off all the time.
814 Nested NMIs are prevented by the CPU. */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100815asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
817 unsigned char reason = 0;
Ashok Raj76e4f662005-06-25 14:55:00 -0700818 int cpu;
819
820 cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 /* Only the BSP gets external NMIs from the system. */
Ashok Raj76e4f662005-06-25 14:55:00 -0700823 if (!cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 reason = get_nmi_reason();
825
826 if (!(reason & 0xc0)) {
Jan Beulich6e3f3612006-01-11 22:42:14 +0100827 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 == NOTIFY_STOP)
829 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 /*
831 * Ok, so this is none of the documented NMI sources,
832 * so it must be the NMI watchdog.
833 */
Don Zickus3adbbcc2006-09-26 10:52:26 +0200834 if (nmi_watchdog_tick(regs,reason))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return;
Don Zickus3adbbcc2006-09-26 10:52:26 +0200836 if (!do_nmi_callback(regs,cpu))
Don Zickus3adbbcc2006-09-26 10:52:26 +0200837 unknown_nmi_error(reason, regs);
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return;
840 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100841 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return;
843
844 /* AK: following checks seem to be broken on modern chipsets. FIXME */
845
846 if (reason & 0x80)
847 mem_parity_error(reason, regs);
848 if (reason & 0x40)
849 io_check_error(reason, regs);
850}
851
Jan Beulichb556b352006-01-11 22:43:00 +0100852/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700853asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
855 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
856 return;
857 }
Andi Kleen40e59a62006-05-15 18:19:47 +0200858 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
Andi Kleen40e59a62006-05-15 18:19:47 +0200860 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
862
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700863/* Help handler running on IST stack to switch back to user stack
864 for scheduling or signal handling. The actual stack switch is done in
865 entry.S */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100866asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700868 struct pt_regs *regs = eregs;
869 /* Did already sync */
870 if (eregs == (struct pt_regs *)eregs->rsp)
871 ;
872 /* Exception from user space */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700873 else if (user_mode(eregs))
Al Virobb049232006-01-12 01:05:38 -0800874 regs = task_pt_regs(current);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700875 /* Exception from kernel and interrupts are enabled. Move to
876 kernel process stack. */
877 else if (eregs->eflags & X86_EFLAGS_IF)
878 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
879 if (eregs != regs)
880 *regs = *eregs;
881 return regs;
882}
883
884/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700885asmlinkage void __kprobes do_debug(struct pt_regs * regs,
886 unsigned long error_code)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700887{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 unsigned long condition;
889 struct task_struct *tsk = current;
890 siginfo_t info;
891
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700892 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
Andi Kleendaeeafe2005-04-16 15:25:13 -0700895 SIGTRAP) == NOTIFY_STOP)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700896 return;
Andi Kleendaeeafe2005-04-16 15:25:13 -0700897
John Blackwooda65d17c2006-02-12 14:34:58 -0800898 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 /* Mask out spurious debug traps due to lazy DR7 setting */
901 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
902 if (!tsk->thread.debugreg7) {
903 goto clear_dr7;
904 }
905 }
906
907 tsk->thread.debugreg6 = condition;
908
909 /* Mask out spurious TF errors due to lazy TF clearing */
Andi Kleendaeeafe2005-04-16 15:25:13 -0700910 if (condition & DR_STEP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /*
912 * The TF error should be masked out only if the current
913 * process is not traced and if the TRAP flag has been set
914 * previously by a tracing process (condition detected by
915 * the PT_DTRACE flag); remember that the i386 TRAP flag
916 * can be modified by the process itself in user mode,
917 * allowing programs to debug themselves without the ptrace()
918 * interface.
919 */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700920 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 goto clear_TF_reenable;
Andi Kleenbe61bff2005-04-16 15:24:57 -0700922 /*
923 * Was the TF flag set by a debugger? If so, clear it now,
924 * so that register information is correct.
925 */
926 if (tsk->ptrace & PT_DTRACE) {
927 regs->eflags &= ~TF_MASK;
928 tsk->ptrace &= ~PT_DTRACE;
929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931
932 /* Ok, finally something we can handle */
933 tsk->thread.trap_no = 1;
934 tsk->thread.error_code = error_code;
935 info.si_signo = SIGTRAP;
936 info.si_errno = 0;
937 info.si_code = TRAP_BRKPT;
John Blackwood01b8faa2006-01-11 22:44:15 +0100938 info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
939 force_sig_info(SIGTRAP, &info, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941clear_dr7:
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700942 set_debugreg(0UL, 7);
John Blackwooda65d17c2006-02-12 14:34:58 -0800943 preempt_conditional_cli(regs);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700944 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946clear_TF_reenable:
947 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 regs->eflags &= ~TF_MASK;
John Blackwooda65d17c2006-02-12 14:34:58 -0800949 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
951
Jan Beulich6e3f3612006-01-11 22:42:14 +0100952static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
954 const struct exception_table_entry *fixup;
955 fixup = search_exception_tables(regs->rip);
956 if (fixup) {
957 regs->rip = fixup->fixup;
958 return 1;
959 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100960 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
Andi Kleen3a848f62005-04-16 15:25:06 -0700961 /* Illegal floating point operation in the kernel */
Jan Beulich6e3f3612006-01-11 22:42:14 +0100962 current->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 die(str, regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 return 0;
965}
966
967/*
968 * Note that we play around with the 'TS' bit in an attempt to get
969 * the correct behaviour even in the presence of the asynchronous
970 * IRQ13 behaviour
971 */
972asmlinkage void do_coprocessor_error(struct pt_regs *regs)
973{
974 void __user *rip = (void __user *)(regs->rip);
975 struct task_struct * task;
976 siginfo_t info;
977 unsigned short cwd, swd;
978
979 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700980 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100981 kernel_math_error(regs, "kernel x87 math error", 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return;
983
984 /*
985 * Save the info for the exception handler and clear the error.
986 */
987 task = current;
988 save_init_fpu(task);
989 task->thread.trap_no = 16;
990 task->thread.error_code = 0;
991 info.si_signo = SIGFPE;
992 info.si_errno = 0;
993 info.si_code = __SI_FAULT;
994 info.si_addr = rip;
995 /*
996 * (~cwd & swd) will mask out exceptions that are not set to unmasked
997 * status. 0x3f is the exception bits in these regs, 0x200 is the
998 * C1 reg you need in case of a stack fault, 0x040 is the stack
999 * fault bit. We should only be taking one exception at a time,
1000 * so if this combination doesn't produce any single exception,
1001 * then we have a bad program that isn't synchronizing its FPU usage
1002 * and it will suffer the consequences since we won't be able to
1003 * fully reproduce the context of the exception
1004 */
1005 cwd = get_fpu_cwd(task);
1006 swd = get_fpu_swd(task);
Chuck Ebbertff347b22005-09-12 18:49:25 +02001007 switch (swd & ~cwd & 0x3f) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 case 0x000:
1009 default:
1010 break;
1011 case 0x001: /* Invalid Op */
Chuck Ebbertff347b22005-09-12 18:49:25 +02001012 /*
1013 * swd & 0x240 == 0x040: Stack Underflow
1014 * swd & 0x240 == 0x240: Stack Overflow
1015 * User must clear the SF bit (0x40) if set
1016 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 info.si_code = FPE_FLTINV;
1018 break;
1019 case 0x002: /* Denormalize */
1020 case 0x010: /* Underflow */
1021 info.si_code = FPE_FLTUND;
1022 break;
1023 case 0x004: /* Zero Divide */
1024 info.si_code = FPE_FLTDIV;
1025 break;
1026 case 0x008: /* Overflow */
1027 info.si_code = FPE_FLTOVF;
1028 break;
1029 case 0x020: /* Precision */
1030 info.si_code = FPE_FLTRES;
1031 break;
1032 }
1033 force_sig_info(SIGFPE, &info, task);
1034}
1035
1036asmlinkage void bad_intr(void)
1037{
1038 printk("bad interrupt");
1039}
1040
1041asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
1042{
1043 void __user *rip = (void __user *)(regs->rip);
1044 struct task_struct * task;
1045 siginfo_t info;
1046 unsigned short mxcsr;
1047
1048 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -07001049 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +01001050 kernel_math_error(regs, "kernel simd math error", 19))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 return;
1052
1053 /*
1054 * Save the info for the exception handler and clear the error.
1055 */
1056 task = current;
1057 save_init_fpu(task);
1058 task->thread.trap_no = 19;
1059 task->thread.error_code = 0;
1060 info.si_signo = SIGFPE;
1061 info.si_errno = 0;
1062 info.si_code = __SI_FAULT;
1063 info.si_addr = rip;
1064 /*
1065 * The SIMD FPU exceptions are handled a little differently, as there
1066 * is only a single status/control register. Thus, to determine which
1067 * unmasked exception was caught we must mask the exception mask bits
1068 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
1069 */
1070 mxcsr = get_fpu_mxcsr(task);
1071 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
1072 case 0x000:
1073 default:
1074 break;
1075 case 0x001: /* Invalid Op */
1076 info.si_code = FPE_FLTINV;
1077 break;
1078 case 0x002: /* Denormalize */
1079 case 0x010: /* Underflow */
1080 info.si_code = FPE_FLTUND;
1081 break;
1082 case 0x004: /* Zero Divide */
1083 info.si_code = FPE_FLTDIV;
1084 break;
1085 case 0x008: /* Overflow */
1086 info.si_code = FPE_FLTOVF;
1087 break;
1088 case 0x020: /* Precision */
1089 info.si_code = FPE_FLTRES;
1090 break;
1091 }
1092 force_sig_info(SIGFPE, &info, task);
1093}
1094
1095asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
1096{
1097}
1098
1099asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
1100{
1101}
1102
Jacob Shin89b831e2005-11-05 17:25:53 +01001103asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
1104{
1105}
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107/*
1108 * 'math_state_restore()' saves the current math information in the
1109 * old math state array, and gets the new ones from the current task
1110 *
1111 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1112 * Don't touch unless you *really* know how it works.
1113 */
1114asmlinkage void math_state_restore(void)
1115{
1116 struct task_struct *me = current;
1117 clts(); /* Allow maths ops (or we recurse) */
1118
1119 if (!used_math())
1120 init_fpu(me);
1121 restore_fpu_checking(&me->thread.i387.fxsave);
Al Viroe4f17c42006-01-12 01:05:38 -08001122 task_thread_info(me)->status |= TS_USEDFPU;
Arjan van de Vene07e23e2006-09-26 10:52:36 +02001123 me->fpu_counter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126void __init trap_init(void)
1127{
1128 set_intr_gate(0,&divide_error);
1129 set_intr_gate_ist(1,&debug,DEBUG_STACK);
1130 set_intr_gate_ist(2,&nmi,NMI_STACK);
Jan Beulichb556b352006-01-11 22:43:00 +01001131 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
Jan Beulich0a521582006-01-11 22:42:08 +01001132 set_system_gate(4,&overflow); /* int4 can be called from all */
1133 set_intr_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 set_intr_gate(6,&invalid_op);
1135 set_intr_gate(7,&device_not_available);
1136 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
1137 set_intr_gate(9,&coprocessor_segment_overrun);
1138 set_intr_gate(10,&invalid_TSS);
1139 set_intr_gate(11,&segment_not_present);
1140 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
1141 set_intr_gate(13,&general_protection);
1142 set_intr_gate(14,&page_fault);
1143 set_intr_gate(15,&spurious_interrupt_bug);
1144 set_intr_gate(16,&coprocessor_error);
1145 set_intr_gate(17,&alignment_check);
1146#ifdef CONFIG_X86_MCE
1147 set_intr_gate_ist(18,&machine_check, MCE_STACK);
1148#endif
1149 set_intr_gate(19,&simd_coprocessor_error);
1150
1151#ifdef CONFIG_IA32_EMULATION
1152 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1153#endif
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 /*
1156 * Should be a barrier for any external CPU state.
1157 */
1158 cpu_init();
1159}
1160
1161
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001162static int __init oops_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001164 if (!s)
1165 return -EINVAL;
1166 if (!strcmp(s, "panic"))
1167 panic_on_oops = 1;
1168 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001170early_param("oops", oops_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172static int __init kstack_setup(char *s)
1173{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001174 if (!s)
1175 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 kstack_depth_to_print = simple_strtoul(s,NULL,0);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001177 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001179early_param("kstack", kstack_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Jan Beulichea424052006-08-30 19:37:11 +02001181#ifdef CONFIG_STACK_UNWIND
Jan Beulichc33bd9a2006-06-26 13:57:47 +02001182static int __init call_trace_setup(char *s)
1183{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001184 if (!s)
1185 return -EINVAL;
Jan Beulichc33bd9a2006-06-26 13:57:47 +02001186 if (strcmp(s, "old") == 0)
1187 call_trace = -1;
1188 else if (strcmp(s, "both") == 0)
1189 call_trace = 0;
Andi Kleenb13761e2006-07-28 14:44:51 +02001190 else if (strcmp(s, "newfallback") == 0)
Jan Beulichc33bd9a2006-06-26 13:57:47 +02001191 call_trace = 1;
Andi Kleenb13761e2006-07-28 14:44:51 +02001192 else if (strcmp(s, "new") == 0)
1193 call_trace = 2;
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001194 return 0;
Jan Beulichc33bd9a2006-06-26 13:57:47 +02001195}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001196early_param("call_trace", call_trace_setup);
Jan Beulichea424052006-08-30 19:37:11 +02001197#endif