blob: 14052f08981498a2ef13c0b2feaab12498ca07e3 [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>
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049asmlinkage void divide_error(void);
50asmlinkage void debug(void);
51asmlinkage void nmi(void);
52asmlinkage void int3(void);
53asmlinkage void overflow(void);
54asmlinkage void bounds(void);
55asmlinkage void invalid_op(void);
56asmlinkage void device_not_available(void);
57asmlinkage void double_fault(void);
58asmlinkage void coprocessor_segment_overrun(void);
59asmlinkage void invalid_TSS(void);
60asmlinkage void segment_not_present(void);
61asmlinkage void stack_segment(void);
62asmlinkage void general_protection(void);
63asmlinkage void page_fault(void);
64asmlinkage void coprocessor_error(void);
65asmlinkage void simd_coprocessor_error(void);
66asmlinkage void reserved(void);
67asmlinkage void alignment_check(void);
68asmlinkage void machine_check(void);
69asmlinkage void spurious_interrupt_bug(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Alan Sterne041c682006-03-27 01:16:30 -080071ATOMIC_NOTIFIER_HEAD(die_chain);
Andi Kleen2ee60e172006-06-26 13:59:44 +020072EXPORT_SYMBOL(die_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74int register_die_notifier(struct notifier_block *nb)
75{
Jan Beulich8c914cb2006-03-25 16:29:40 +010076 vmalloc_sync_all();
Alan Sterne041c682006-03-27 01:16:30 -080077 return atomic_notifier_chain_register(&die_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
Arjan van de Ven1454aed2006-07-10 04:44:05 -070079EXPORT_SYMBOL(register_die_notifier); /* used modular by kdb */
Alan Sterne041c682006-03-27 01:16:30 -080080
81int unregister_die_notifier(struct notifier_block *nb)
82{
83 return atomic_notifier_chain_unregister(&die_chain, nb);
84}
Arjan van de Ven1454aed2006-07-10 04:44:05 -070085EXPORT_SYMBOL(unregister_die_notifier); /* used modular by kdb */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87static inline void conditional_sti(struct pt_regs *regs)
88{
89 if (regs->eflags & X86_EFLAGS_IF)
90 local_irq_enable();
91}
92
John Blackwooda65d17c2006-02-12 14:34:58 -080093static inline void preempt_conditional_sti(struct pt_regs *regs)
94{
95 preempt_disable();
96 if (regs->eflags & X86_EFLAGS_IF)
97 local_irq_enable();
98}
99
100static inline void preempt_conditional_cli(struct pt_regs *regs)
101{
102 if (regs->eflags & X86_EFLAGS_IF)
103 local_irq_disable();
Andi Kleen40e59a62006-05-15 18:19:47 +0200104 /* Make sure to not schedule here because we could be running
105 on an exception stack. */
John Blackwooda65d17c2006-02-12 14:34:58 -0800106 preempt_enable_no_resched();
107}
108
Jan Beulichcab093b2006-06-26 13:59:26 +0200109static int kstack_depth_to_print = 12;
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200110static int call_trace = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112#ifdef CONFIG_KALLSYMS
Ingo Molnar3ac94932006-07-03 00:24:36 -0700113# include <linux/kallsyms.h>
114void printk_address(unsigned long address)
115{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 unsigned long offset = 0, symsize;
117 const char *symname;
118 char *modname;
Ingo Molnar3ac94932006-07-03 00:24:36 -0700119 char *delim = ":";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 char namebuf[128];
121
Ingo Molnar3ac94932006-07-03 00:24:36 -0700122 symname = kallsyms_lookup(address, &symsize, &offset,
123 &modname, namebuf);
124 if (!symname) {
125 printk(" [<%016lx>]\n", address);
126 return;
127 }
128 if (!modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 modname = delim = "";
Ingo Molnar3ac94932006-07-03 00:24:36 -0700130 printk(" [<%016lx>] %s%s%s%s+0x%lx/0x%lx\n",
131 address, delim, modname, delim, symname, offset, symsize);
132}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#else
Ingo Molnar3ac94932006-07-03 00:24:36 -0700134void printk_address(unsigned long address)
135{
136 printk(" [<%016lx>]\n", address);
137}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#endif
139
Andi Kleen0a658002005-04-16 15:25:17 -0700140static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
141 unsigned *usedp, const char **idp)
142{
Jan Beulichb556b352006-01-11 22:43:00 +0100143 static char ids[][8] = {
Andi Kleen0a658002005-04-16 15:25:17 -0700144 [DEBUG_STACK - 1] = "#DB",
145 [NMI_STACK - 1] = "NMI",
146 [DOUBLEFAULT_STACK - 1] = "#DF",
147 [STACKFAULT_STACK - 1] = "#SS",
148 [MCE_STACK - 1] = "#MC",
Jan Beulichb556b352006-01-11 22:43:00 +0100149#if DEBUG_STKSZ > EXCEPTION_STKSZ
150 [N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
151#endif
Andi Kleen0a658002005-04-16 15:25:17 -0700152 };
153 unsigned k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700155 /*
156 * Iterate over all exception stacks, and figure out whether
157 * 'stack' is in one of them:
158 */
Andi Kleen0a658002005-04-16 15:25:17 -0700159 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
160 unsigned long end;
161
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700162 /*
163 * set 'end' to the end of the exception stack.
164 */
Jan Beulichb556b352006-01-11 22:43:00 +0100165 switch (k + 1) {
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700166 /*
167 * TODO: this block is not needed i think, because
168 * setup64.c:cpu_init() sets up t->ist[DEBUG_STACK]
169 * properly too.
170 */
Jan Beulichb556b352006-01-11 22:43:00 +0100171#if DEBUG_STKSZ > EXCEPTION_STKSZ
172 case DEBUG_STACK:
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100173 end = cpu_pda(cpu)->debugstack + DEBUG_STKSZ;
Jan Beulichb556b352006-01-11 22:43:00 +0100174 break;
175#endif
176 default:
177 end = per_cpu(init_tss, cpu).ist[k];
178 break;
179 }
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700180 /*
181 * Is 'stack' above this exception frame's end?
182 * If yes then skip to the next frame.
183 */
Andi Kleen0a658002005-04-16 15:25:17 -0700184 if (stack >= end)
185 continue;
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700186 /*
187 * Is 'stack' above this exception frame's start address?
188 * If yes then we found the right frame.
189 */
Andi Kleen0a658002005-04-16 15:25:17 -0700190 if (stack >= end - EXCEPTION_STKSZ) {
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700191 /*
192 * Make sure we only iterate through an exception
193 * stack once. If it comes up for the second time
194 * then there's something wrong going on - just
195 * break out and return NULL:
196 */
Andi Kleen0a658002005-04-16 15:25:17 -0700197 if (*usedp & (1U << k))
198 break;
199 *usedp |= 1U << k;
200 *idp = ids[k];
201 return (unsigned long *)end;
202 }
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700203 /*
204 * If this is a debug stack, and if it has a larger size than
205 * the usual exception stacks, then 'stack' might still
206 * be within the lower portion of the debug stack:
207 */
Jan Beulichb556b352006-01-11 22:43:00 +0100208#if DEBUG_STKSZ > EXCEPTION_STKSZ
209 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
210 unsigned j = N_EXCEPTION_STACKS - 1;
211
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700212 /*
213 * Black magic. A large debug stack is composed of
214 * multiple exception stack entries, which we
215 * iterate through now. Dont look:
216 */
Jan Beulichb556b352006-01-11 22:43:00 +0100217 do {
218 ++j;
219 end -= EXCEPTION_STKSZ;
220 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
221 } while (stack < end - EXCEPTION_STKSZ);
222 if (*usedp & (1U << j))
223 break;
224 *usedp |= 1U << j;
225 *idp = ids[j];
226 return (unsigned long *)end;
227 }
228#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
230 return NULL;
Andi Kleen0a658002005-04-16 15:25:17 -0700231}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200233static int show_trace_unwind(struct unwind_frame_info *info, void *context)
Jan Beulichb538ed22006-06-26 13:57:32 +0200234{
Ingo Molnar3ac94932006-07-03 00:24:36 -0700235 int n = 0;
Jan Beulichb538ed22006-06-26 13:57:32 +0200236
237 while (unwind(info) == 0 && UNW_PC(info)) {
Ingo Molnar3ac94932006-07-03 00:24:36 -0700238 n++;
239 printk_address(UNW_PC(info));
Jan Beulichb538ed22006-06-26 13:57:32 +0200240 if (arch_unw_user_mode(info))
241 break;
242 }
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200243 return n;
Jan Beulichb538ed22006-06-26 13:57:32 +0200244}
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246/*
247 * x86-64 can have upto three kernel stacks:
248 * process stack
249 * interrupt stack
Andi Kleen0a658002005-04-16 15:25:17 -0700250 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 */
252
Jan Beulichb538ed22006-06-26 13:57:32 +0200253void show_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long * stack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Andi Kleen0a658002005-04-16 15:25:17 -0700255 const unsigned cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100256 unsigned long *irqstack_end = (unsigned long *)cpu_pda(cpu)->irqstackptr;
Andi Kleen0a658002005-04-16 15:25:17 -0700257 unsigned used = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Ingo Molnar3ac94932006-07-03 00:24:36 -0700259 printk("\nCall Trace:\n");
Andi Kleen0a658002005-04-16 15:25:17 -0700260
Jan Beulichb538ed22006-06-26 13:57:32 +0200261 if (!tsk)
262 tsk = current;
263
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200264 if (call_trace >= 0) {
265 int unw_ret = 0;
266 struct unwind_frame_info info;
267
268 if (regs) {
269 if (unwind_init_frame_info(&info, tsk, regs) == 0)
270 unw_ret = show_trace_unwind(&info, NULL);
271 } else if (tsk == current)
272 unw_ret = unwind_init_running(&info, show_trace_unwind, NULL);
273 else {
274 if (unwind_init_blocked(&info, tsk) == 0)
275 unw_ret = show_trace_unwind(&info, NULL);
Jan Beulichb538ed22006-06-26 13:57:32 +0200276 }
Andi Kleenb13761e2006-07-28 14:44:51 +0200277 if (unw_ret > 0 && !arch_unw_user_mode(&info)) {
278#ifdef CONFIG_STACK_UNWIND
279 unsigned long rip = info.regs.rip;
280 print_symbol("DWARF2 unwinder stuck at %s\n", rip);
281 if (call_trace == 1) {
282 printk("Leftover inexact backtrace:\n");
283 stack = (unsigned long *)info.regs.rsp;
284 } else if (call_trace > 1)
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200285 return;
Andi Kleenb13761e2006-07-28 14:44:51 +0200286 else
287 printk("Full inexact backtrace again:\n");
288#else
289 printk("Inexact backtrace:\n");
290#endif
Jan Beulichb538ed22006-06-26 13:57:32 +0200291 }
292 }
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 */ \
Ingo Molnar3ac94932006-07-03 00:24:36 -0700311 printk_address(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 */
320 for ( ; ; ) {
Andi Kleen0a658002005-04-16 15:25:17 -0700321 const char *id;
322 unsigned long *estack_end;
323 estack_end = in_exception_stack(cpu, (unsigned long)stack,
324 &used, &id);
325
326 if (estack_end) {
Ingo Molnar3ac94932006-07-03 00:24:36 -0700327 printk(" <%s>", id);
Andi Kleen0a658002005-04-16 15:25:17 -0700328 HANDLE_STACK (stack < estack_end);
Ingo Molnar3ac94932006-07-03 00:24:36 -0700329 printk(" <EOE>");
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700330 /*
331 * We link to the next stack via the
332 * second-to-last pointer (index -2 to end) in the
333 * exception stack:
334 */
Andi Kleen0a658002005-04-16 15:25:17 -0700335 stack = (unsigned long *) estack_end[-2];
336 continue;
337 }
338 if (irqstack_end) {
339 unsigned long *irqstack;
340 irqstack = irqstack_end -
341 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
342
343 if (stack >= irqstack && stack < irqstack_end) {
Ingo Molnar3ac94932006-07-03 00:24:36 -0700344 printk(" <IRQ>");
Andi Kleen0a658002005-04-16 15:25:17 -0700345 HANDLE_STACK (stack < irqstack_end);
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700346 /*
347 * We link to the next stack (which would be
348 * the process stack normally) the last
349 * pointer (index -1 to end) in the IRQ stack:
350 */
Andi Kleen0a658002005-04-16 15:25:17 -0700351 stack = (unsigned long *) (irqstack_end[-1]);
352 irqstack_end = NULL;
Ingo Molnar3ac94932006-07-03 00:24:36 -0700353 printk(" <EOI>");
Andi Kleen0a658002005-04-16 15:25:17 -0700354 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356 }
Andi Kleen0a658002005-04-16 15:25:17 -0700357 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
Andi Kleen0a658002005-04-16 15:25:17 -0700359
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700360 /*
361 * This prints the process stack:
362 */
Andi Kleen0a658002005-04-16 15:25:17 -0700363 HANDLE_STACK (((long) stack & (THREAD_SIZE-1)) != 0);
364#undef HANDLE_STACK
Ingo Molnar3ac94932006-07-03 00:24:36 -0700365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 printk("\n");
367}
368
Jan Beulichb538ed22006-06-26 13:57:32 +0200369static void _show_stack(struct task_struct *tsk, struct pt_regs *regs, unsigned long * rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 unsigned long *stack;
372 int i;
373 const int cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100374 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
375 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 // debugging aid: "show_stack(NULL, NULL);" prints the
378 // back trace for this cpu.
379
380 if (rsp == NULL) {
381 if (tsk)
382 rsp = (unsigned long *)tsk->thread.rsp;
383 else
384 rsp = (unsigned long *)&rsp;
385 }
386
387 stack = rsp;
388 for(i=0; i < kstack_depth_to_print; i++) {
389 if (stack >= irqstack && stack <= irqstack_end) {
390 if (stack == irqstack_end) {
391 stack = (unsigned long *) (irqstack_end[-1]);
392 printk(" <EOI> ");
393 }
394 } else {
395 if (((long) stack & (THREAD_SIZE-1)) == 0)
396 break;
397 }
398 if (i && ((i % 4) == 0))
Ingo Molnar3ac94932006-07-03 00:24:36 -0700399 printk("\n");
400 printk(" %016lx", *stack++);
akpm@osdl.org35faa712005-04-16 15:24:54 -0700401 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
Jan Beulichb538ed22006-06-26 13:57:32 +0200403 show_trace(tsk, regs, rsp);
404}
405
406void show_stack(struct task_struct *tsk, unsigned long * rsp)
407{
408 _show_stack(tsk, NULL, rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
411/*
412 * The architecture-independent dump_stack generator
413 */
414void dump_stack(void)
415{
416 unsigned long dummy;
Jan Beulichb538ed22006-06-26 13:57:32 +0200417 show_trace(NULL, NULL, &dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
420EXPORT_SYMBOL(dump_stack);
421
422void show_registers(struct pt_regs *regs)
423{
424 int i;
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700425 int in_kernel = !user_mode(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 unsigned long rsp;
427 const int cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100428 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 rsp = regs->rsp;
431
432 printk("CPU %d ", cpu);
433 __show_regs(regs);
434 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
Al Viroe4f17c42006-01-12 01:05:38 -0800435 cur->comm, cur->pid, task_thread_info(cur), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 /*
438 * When in-kernel, we also print out the stack and code at the
439 * time of the fault..
440 */
441 if (in_kernel) {
442
443 printk("Stack: ");
Jan Beulichb538ed22006-06-26 13:57:32 +0200444 _show_stack(NULL, regs, (unsigned long*)rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 printk("\nCode: ");
Roberto Nibali2b692a82006-03-25 16:29:55 +0100447 if (regs->rip < PAGE_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 goto bad;
449
Roberto Nibali2b692a82006-03-25 16:29:55 +0100450 for (i=0; i<20; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 unsigned char c;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100452 if (__get_user(c, &((unsigned char*)regs->rip)[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453bad:
454 printk(" Bad RIP value.");
455 break;
456 }
457 printk("%02x ", c);
458 }
459 }
460 printk("\n");
461}
462
463void handle_BUG(struct pt_regs *regs)
464{
465 struct bug_frame f;
Jan Beulich5f1d1892006-01-11 22:46:48 +0100466 long len;
467 const char *prefix = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700469 if (user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return;
Stephen Hemminger77a75332006-01-11 22:46:30 +0100471 if (__copy_from_user(&f, (const void __user *) regs->rip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 sizeof(struct bug_frame)))
473 return;
Jan Beulich049cdef2005-09-12 18:49:25 +0200474 if (f.filename >= 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 f.ud2[0] != 0x0f || f.ud2[1] != 0x0b)
476 return;
Jan Beulich5f1d1892006-01-11 22:46:48 +0100477 len = __strnlen_user((char *)(long)f.filename, PATH_MAX) - 1;
478 if (len < 0 || len >= PATH_MAX)
Jan Beulich049cdef2005-09-12 18:49:25 +0200479 f.filename = (int)(long)"unmapped filename";
Jan Beulich5f1d1892006-01-11 22:46:48 +0100480 else if (len > 50) {
481 f.filename += len - 50;
482 prefix = "...";
483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 printk("----------- [cut here ] --------- [please bite here ] ---------\n");
Jan Beulich5f1d1892006-01-11 22:46:48 +0100485 printk(KERN_ALERT "Kernel BUG at %s%.50s:%d\n", prefix, (char *)(long)f.filename, f.line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700488#ifdef CONFIG_BUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489void out_of_line_bug(void)
490{
491 BUG();
492}
Andi Kleen2ee60e172006-06-26 13:59:44 +0200493EXPORT_SYMBOL(out_of_line_bug);
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700494#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496static DEFINE_SPINLOCK(die_lock);
497static int die_owner = -1;
Corey Minyardcdc60a42006-05-08 15:17:22 +0200498static unsigned int die_nest_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100500unsigned __kprobes long oops_begin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Jan Beulich12091402005-09-12 18:49:24 +0200502 int cpu = safe_smp_processor_id();
503 unsigned long flags;
504
505 /* racy, but better than risking deadlock. */
506 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (!spin_trylock(&die_lock)) {
508 if (cpu == die_owner)
509 /* nested oops. should stop eventually */;
510 else
Jan Beulich12091402005-09-12 18:49:24 +0200511 spin_lock(&die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
Corey Minyardcdc60a42006-05-08 15:17:22 +0200513 die_nest_count++;
Jan Beulich12091402005-09-12 18:49:24 +0200514 die_owner = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 console_verbose();
Jan Beulich12091402005-09-12 18:49:24 +0200516 bust_spinlocks(1);
517 return flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100520void __kprobes oops_end(unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
522 die_owner = -1;
Jan Beulich12091402005-09-12 18:49:24 +0200523 bust_spinlocks(0);
Corey Minyardcdc60a42006-05-08 15:17:22 +0200524 die_nest_count--;
525 if (die_nest_count)
526 /* We still own the lock */
527 local_irq_restore(flags);
528 else
529 /* Nest count reaches zero, release the lock. */
530 spin_unlock_irqrestore(&die_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (panic_on_oops)
Horms012c4372006-08-13 23:24:22 -0700532 panic("Fatal exception");
Jan Beulich12091402005-09-12 18:49:24 +0200533}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100535void __kprobes __die(const char * str, struct pt_regs * regs, long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 static int die_counter;
538 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
539#ifdef CONFIG_PREEMPT
540 printk("PREEMPT ");
541#endif
542#ifdef CONFIG_SMP
543 printk("SMP ");
544#endif
545#ifdef CONFIG_DEBUG_PAGEALLOC
546 printk("DEBUG_PAGEALLOC");
547#endif
548 printk("\n");
Jan Beulich6e3f3612006-01-11 22:42:14 +0100549 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 show_registers(regs);
551 /* Executive summary in case the oops scrolled away */
552 printk(KERN_ALERT "RIP ");
553 printk_address(regs->rip);
554 printk(" RSP <%016lx>\n", regs->rsp);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200555 if (kexec_should_crash(current))
556 crash_kexec(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
559void die(const char * str, struct pt_regs * regs, long err)
560{
Jan Beulich12091402005-09-12 18:49:24 +0200561 unsigned long flags = oops_begin();
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 handle_BUG(regs);
564 __die(str, regs, err);
Jan Beulich12091402005-09-12 18:49:24 +0200565 oops_end(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 do_exit(SIGSEGV);
567}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100569void __kprobes die_nmi(char *str, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Jan Beulich12091402005-09-12 18:49:24 +0200571 unsigned long flags = oops_begin();
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 /*
574 * We are in trouble anyway, lets at least try
575 * to get a message out.
576 */
577 printk(str, safe_smp_processor_id());
578 show_registers(regs);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200579 if (kexec_should_crash(current))
580 crash_kexec(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (panic_on_timeout || panic_on_oops)
582 panic("nmi watchdog");
583 printk("console shuts up ...\n");
Jan Beulich12091402005-09-12 18:49:24 +0200584 oops_end(flags);
Corey Minyard8b1ffe952006-05-08 15:17:25 +0200585 nmi_exit();
586 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 do_exit(SIGSEGV);
588}
589
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700590static void __kprobes do_trap(int trapnr, int signr, char *str,
591 struct pt_regs * regs, long error_code,
592 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100594 struct task_struct *tsk = current;
595
Jan Beulich6e3f3612006-01-11 22:42:14 +0100596 tsk->thread.error_code = error_code;
597 tsk->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Jan Beulich6e3f3612006-01-11 22:42:14 +0100599 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (exception_trace && unhandled_signal(tsk, signr))
601 printk(KERN_INFO
602 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
603 tsk->comm, tsk->pid, str,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100604 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (info)
607 force_sig_info(signr, info, tsk);
608 else
609 force_sig(signr, tsk);
610 return;
611 }
612
613
614 /* kernel trap */
615 {
616 const struct exception_table_entry *fixup;
617 fixup = search_exception_tables(regs->rip);
Roberto Nibali2b692a82006-03-25 16:29:55 +0100618 if (fixup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 regs->rip = fixup->fixup;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100620 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 die(str, regs, error_code);
622 return;
623 }
624}
625
626#define DO_ERROR(trapnr, signr, str, name) \
627asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
628{ \
629 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
630 == NOTIFY_STOP) \
631 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200632 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 do_trap(trapnr, signr, str, regs, error_code, NULL); \
634}
635
636#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
637asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
638{ \
639 siginfo_t info; \
640 info.si_signo = signr; \
641 info.si_errno = 0; \
642 info.si_code = sicode; \
643 info.si_addr = (void __user *)siaddr; \
644 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
645 == NOTIFY_STOP) \
646 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200647 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 do_trap(trapnr, signr, str, regs, error_code, &info); \
649}
650
651DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
652DO_ERROR( 4, SIGSEGV, "overflow", overflow)
653DO_ERROR( 5, SIGSEGV, "bounds", bounds)
Chuck Ebbert100c0e32006-01-11 22:46:00 +0100654DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
656DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
657DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
658DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
659DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
660DO_ERROR(18, SIGSEGV, "reserved", reserved)
Andi Kleen40e59a62006-05-15 18:19:47 +0200661
662/* Runs on IST stack */
663asmlinkage void do_stack_segment(struct pt_regs *regs, long error_code)
664{
665 if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
666 12, SIGBUS) == NOTIFY_STOP)
667 return;
668 preempt_conditional_sti(regs);
669 do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
670 preempt_conditional_cli(regs);
671}
Jan Beulicheca37c12006-01-11 22:42:17 +0100672
673asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
674{
675 static const char str[] = "double fault";
676 struct task_struct *tsk = current;
677
678 /* Return not checked because double check cannot be ignored */
679 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
680
681 tsk->thread.error_code = error_code;
682 tsk->thread.trap_no = 8;
683
684 /* This is always a kernel trap and never fixable (and thus must
685 never return). */
686 for (;;)
687 die(str, regs, error_code);
688}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700690asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
691 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100693 struct task_struct *tsk = current;
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 conditional_sti(regs);
696
Jan Beulich6e3f3612006-01-11 22:42:14 +0100697 tsk->thread.error_code = error_code;
698 tsk->thread.trap_no = 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Jan Beulich6e3f3612006-01-11 22:42:14 +0100700 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
702 printk(KERN_INFO
703 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
704 tsk->comm, tsk->pid,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100705 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 force_sig(SIGSEGV, tsk);
708 return;
709 }
710
711 /* kernel gp */
712 {
713 const struct exception_table_entry *fixup;
714 fixup = search_exception_tables(regs->rip);
715 if (fixup) {
716 regs->rip = fixup->fixup;
717 return;
718 }
719 if (notify_die(DIE_GPF, "general protection fault", regs,
720 error_code, 13, SIGSEGV) == NOTIFY_STOP)
721 return;
722 die("general protection fault", regs, error_code);
723 }
724}
725
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100726static __kprobes void
727mem_parity_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 printk("Uhhuh. NMI received. Dazed and confused, but trying to continue\n");
730 printk("You probably have a hardware problem with your RAM chips\n");
731
732 /* Clear and disable the memory parity error line. */
733 reason = (reason & 0xf) | 4;
734 outb(reason, 0x61);
735}
736
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100737static __kprobes void
738io_check_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
740 printk("NMI: IOCK error (debug interrupt?)\n");
741 show_registers(regs);
742
743 /* Re-enable the IOCK line, wait for a few seconds */
744 reason = (reason & 0xf) | 8;
745 outb(reason, 0x61);
746 mdelay(2000);
747 reason &= ~8;
748 outb(reason, 0x61);
749}
750
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100751static __kprobes void
752unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{ printk("Uhhuh. NMI received for unknown reason %02x.\n", reason);
754 printk("Dazed and confused, but trying to continue\n");
755 printk("Do you have a strange power saving mode enabled?\n");
756}
757
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700758/* Runs on IST stack. This code must keep interrupts off all the time.
759 Nested NMIs are prevented by the CPU. */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100760asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
762 unsigned char reason = 0;
Ashok Raj76e4f662005-06-25 14:55:00 -0700763 int cpu;
764
765 cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 /* Only the BSP gets external NMIs from the system. */
Ashok Raj76e4f662005-06-25 14:55:00 -0700768 if (!cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 reason = get_nmi_reason();
770
771 if (!(reason & 0xc0)) {
Jan Beulich6e3f3612006-01-11 22:42:14 +0100772 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 == NOTIFY_STOP)
774 return;
775#ifdef CONFIG_X86_LOCAL_APIC
776 /*
777 * Ok, so this is none of the documented NMI sources,
778 * so it must be the NMI watchdog.
779 */
780 if (nmi_watchdog > 0) {
781 nmi_watchdog_tick(regs,reason);
782 return;
783 }
784#endif
785 unknown_nmi_error(reason, regs);
786 return;
787 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100788 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return;
790
791 /* AK: following checks seem to be broken on modern chipsets. FIXME */
792
793 if (reason & 0x80)
794 mem_parity_error(reason, regs);
795 if (reason & 0x40)
796 io_check_error(reason, regs);
797}
798
Jan Beulichb556b352006-01-11 22:43:00 +0100799/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700800asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
802 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
803 return;
804 }
Andi Kleen40e59a62006-05-15 18:19:47 +0200805 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
Andi Kleen40e59a62006-05-15 18:19:47 +0200807 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700810/* Help handler running on IST stack to switch back to user stack
811 for scheduling or signal handling. The actual stack switch is done in
812 entry.S */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100813asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700815 struct pt_regs *regs = eregs;
816 /* Did already sync */
817 if (eregs == (struct pt_regs *)eregs->rsp)
818 ;
819 /* Exception from user space */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700820 else if (user_mode(eregs))
Al Virobb049232006-01-12 01:05:38 -0800821 regs = task_pt_regs(current);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700822 /* Exception from kernel and interrupts are enabled. Move to
823 kernel process stack. */
824 else if (eregs->eflags & X86_EFLAGS_IF)
825 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
826 if (eregs != regs)
827 *regs = *eregs;
828 return regs;
829}
830
831/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700832asmlinkage void __kprobes do_debug(struct pt_regs * regs,
833 unsigned long error_code)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700834{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 unsigned long condition;
836 struct task_struct *tsk = current;
837 siginfo_t info;
838
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700839 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
Andi Kleendaeeafe2005-04-16 15:25:13 -0700842 SIGTRAP) == NOTIFY_STOP)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700843 return;
Andi Kleendaeeafe2005-04-16 15:25:13 -0700844
John Blackwooda65d17c2006-02-12 14:34:58 -0800845 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 /* Mask out spurious debug traps due to lazy DR7 setting */
848 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
849 if (!tsk->thread.debugreg7) {
850 goto clear_dr7;
851 }
852 }
853
854 tsk->thread.debugreg6 = condition;
855
856 /* Mask out spurious TF errors due to lazy TF clearing */
Andi Kleendaeeafe2005-04-16 15:25:13 -0700857 if (condition & DR_STEP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 /*
859 * The TF error should be masked out only if the current
860 * process is not traced and if the TRAP flag has been set
861 * previously by a tracing process (condition detected by
862 * the PT_DTRACE flag); remember that the i386 TRAP flag
863 * can be modified by the process itself in user mode,
864 * allowing programs to debug themselves without the ptrace()
865 * interface.
866 */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700867 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 goto clear_TF_reenable;
Andi Kleenbe61bff2005-04-16 15:24:57 -0700869 /*
870 * Was the TF flag set by a debugger? If so, clear it now,
871 * so that register information is correct.
872 */
873 if (tsk->ptrace & PT_DTRACE) {
874 regs->eflags &= ~TF_MASK;
875 tsk->ptrace &= ~PT_DTRACE;
876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878
879 /* Ok, finally something we can handle */
880 tsk->thread.trap_no = 1;
881 tsk->thread.error_code = error_code;
882 info.si_signo = SIGTRAP;
883 info.si_errno = 0;
884 info.si_code = TRAP_BRKPT;
John Blackwood01b8faa2006-01-11 22:44:15 +0100885 info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
886 force_sig_info(SIGTRAP, &info, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888clear_dr7:
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700889 set_debugreg(0UL, 7);
John Blackwooda65d17c2006-02-12 14:34:58 -0800890 preempt_conditional_cli(regs);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700891 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893clear_TF_reenable:
894 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 regs->eflags &= ~TF_MASK;
John Blackwooda65d17c2006-02-12 14:34:58 -0800896 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
Jan Beulich6e3f3612006-01-11 22:42:14 +0100899static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
901 const struct exception_table_entry *fixup;
902 fixup = search_exception_tables(regs->rip);
903 if (fixup) {
904 regs->rip = fixup->fixup;
905 return 1;
906 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100907 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
Andi Kleen3a848f62005-04-16 15:25:06 -0700908 /* Illegal floating point operation in the kernel */
Jan Beulich6e3f3612006-01-11 22:42:14 +0100909 current->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 die(str, regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return 0;
912}
913
914/*
915 * Note that we play around with the 'TS' bit in an attempt to get
916 * the correct behaviour even in the presence of the asynchronous
917 * IRQ13 behaviour
918 */
919asmlinkage void do_coprocessor_error(struct pt_regs *regs)
920{
921 void __user *rip = (void __user *)(regs->rip);
922 struct task_struct * task;
923 siginfo_t info;
924 unsigned short cwd, swd;
925
926 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700927 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100928 kernel_math_error(regs, "kernel x87 math error", 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return;
930
931 /*
932 * Save the info for the exception handler and clear the error.
933 */
934 task = current;
935 save_init_fpu(task);
936 task->thread.trap_no = 16;
937 task->thread.error_code = 0;
938 info.si_signo = SIGFPE;
939 info.si_errno = 0;
940 info.si_code = __SI_FAULT;
941 info.si_addr = rip;
942 /*
943 * (~cwd & swd) will mask out exceptions that are not set to unmasked
944 * status. 0x3f is the exception bits in these regs, 0x200 is the
945 * C1 reg you need in case of a stack fault, 0x040 is the stack
946 * fault bit. We should only be taking one exception at a time,
947 * so if this combination doesn't produce any single exception,
948 * then we have a bad program that isn't synchronizing its FPU usage
949 * and it will suffer the consequences since we won't be able to
950 * fully reproduce the context of the exception
951 */
952 cwd = get_fpu_cwd(task);
953 swd = get_fpu_swd(task);
Chuck Ebbertff347b22005-09-12 18:49:25 +0200954 switch (swd & ~cwd & 0x3f) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 case 0x000:
956 default:
957 break;
958 case 0x001: /* Invalid Op */
Chuck Ebbertff347b22005-09-12 18:49:25 +0200959 /*
960 * swd & 0x240 == 0x040: Stack Underflow
961 * swd & 0x240 == 0x240: Stack Overflow
962 * User must clear the SF bit (0x40) if set
963 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 info.si_code = FPE_FLTINV;
965 break;
966 case 0x002: /* Denormalize */
967 case 0x010: /* Underflow */
968 info.si_code = FPE_FLTUND;
969 break;
970 case 0x004: /* Zero Divide */
971 info.si_code = FPE_FLTDIV;
972 break;
973 case 0x008: /* Overflow */
974 info.si_code = FPE_FLTOVF;
975 break;
976 case 0x020: /* Precision */
977 info.si_code = FPE_FLTRES;
978 break;
979 }
980 force_sig_info(SIGFPE, &info, task);
981}
982
983asmlinkage void bad_intr(void)
984{
985 printk("bad interrupt");
986}
987
988asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
989{
990 void __user *rip = (void __user *)(regs->rip);
991 struct task_struct * task;
992 siginfo_t info;
993 unsigned short mxcsr;
994
995 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700996 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100997 kernel_math_error(regs, "kernel simd math error", 19))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return;
999
1000 /*
1001 * Save the info for the exception handler and clear the error.
1002 */
1003 task = current;
1004 save_init_fpu(task);
1005 task->thread.trap_no = 19;
1006 task->thread.error_code = 0;
1007 info.si_signo = SIGFPE;
1008 info.si_errno = 0;
1009 info.si_code = __SI_FAULT;
1010 info.si_addr = rip;
1011 /*
1012 * The SIMD FPU exceptions are handled a little differently, as there
1013 * is only a single status/control register. Thus, to determine which
1014 * unmasked exception was caught we must mask the exception mask bits
1015 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
1016 */
1017 mxcsr = get_fpu_mxcsr(task);
1018 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
1019 case 0x000:
1020 default:
1021 break;
1022 case 0x001: /* Invalid Op */
1023 info.si_code = FPE_FLTINV;
1024 break;
1025 case 0x002: /* Denormalize */
1026 case 0x010: /* Underflow */
1027 info.si_code = FPE_FLTUND;
1028 break;
1029 case 0x004: /* Zero Divide */
1030 info.si_code = FPE_FLTDIV;
1031 break;
1032 case 0x008: /* Overflow */
1033 info.si_code = FPE_FLTOVF;
1034 break;
1035 case 0x020: /* Precision */
1036 info.si_code = FPE_FLTRES;
1037 break;
1038 }
1039 force_sig_info(SIGFPE, &info, task);
1040}
1041
1042asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
1043{
1044}
1045
1046asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
1047{
1048}
1049
Jacob Shin89b831e2005-11-05 17:25:53 +01001050asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
1051{
1052}
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054/*
1055 * 'math_state_restore()' saves the current math information in the
1056 * old math state array, and gets the new ones from the current task
1057 *
1058 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1059 * Don't touch unless you *really* know how it works.
1060 */
1061asmlinkage void math_state_restore(void)
1062{
1063 struct task_struct *me = current;
1064 clts(); /* Allow maths ops (or we recurse) */
1065
1066 if (!used_math())
1067 init_fpu(me);
1068 restore_fpu_checking(&me->thread.i387.fxsave);
Al Viroe4f17c42006-01-12 01:05:38 -08001069 task_thread_info(me)->status |= TS_USEDFPU;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072void __init trap_init(void)
1073{
1074 set_intr_gate(0,&divide_error);
1075 set_intr_gate_ist(1,&debug,DEBUG_STACK);
1076 set_intr_gate_ist(2,&nmi,NMI_STACK);
Jan Beulichb556b352006-01-11 22:43:00 +01001077 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
Jan Beulich0a521582006-01-11 22:42:08 +01001078 set_system_gate(4,&overflow); /* int4 can be called from all */
1079 set_intr_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 set_intr_gate(6,&invalid_op);
1081 set_intr_gate(7,&device_not_available);
1082 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
1083 set_intr_gate(9,&coprocessor_segment_overrun);
1084 set_intr_gate(10,&invalid_TSS);
1085 set_intr_gate(11,&segment_not_present);
1086 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
1087 set_intr_gate(13,&general_protection);
1088 set_intr_gate(14,&page_fault);
1089 set_intr_gate(15,&spurious_interrupt_bug);
1090 set_intr_gate(16,&coprocessor_error);
1091 set_intr_gate(17,&alignment_check);
1092#ifdef CONFIG_X86_MCE
1093 set_intr_gate_ist(18,&machine_check, MCE_STACK);
1094#endif
1095 set_intr_gate(19,&simd_coprocessor_error);
1096
1097#ifdef CONFIG_IA32_EMULATION
1098 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1099#endif
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 /*
1102 * Should be a barrier for any external CPU state.
1103 */
1104 cpu_init();
1105}
1106
1107
1108/* Actual parsing is done early in setup.c. */
1109static int __init oops_dummy(char *s)
1110{
1111 panic_on_oops = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001112 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
1114__setup("oops=", oops_dummy);
1115
1116static int __init kstack_setup(char *s)
1117{
1118 kstack_depth_to_print = simple_strtoul(s,NULL,0);
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001119 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
1121__setup("kstack=", kstack_setup);
1122
Jan Beulichc33bd9a2006-06-26 13:57:47 +02001123static int __init call_trace_setup(char *s)
1124{
1125 if (strcmp(s, "old") == 0)
1126 call_trace = -1;
1127 else if (strcmp(s, "both") == 0)
1128 call_trace = 0;
Andi Kleenb13761e2006-07-28 14:44:51 +02001129 else if (strcmp(s, "newfallback") == 0)
Jan Beulichc33bd9a2006-06-26 13:57:47 +02001130 call_trace = 1;
Andi Kleenb13761e2006-07-28 14:44:51 +02001131 else if (strcmp(s, "new") == 0)
1132 call_trace = 2;
Jan Beulichc33bd9a2006-06-26 13:57:47 +02001133 return 1;
1134}
1135__setup("call_trace=", call_trace_setup);