blob: 3d11a2fe45b7e0308986e2fdf144ef8fdef977c5 [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 */
15#include <linux/config.h>
16#include <linux/sched.h>
17#include <linux/kernel.h>
18#include <linux/string.h>
19#include <linux/errno.h>
20#include <linux/ptrace.h>
21#include <linux/timer.h>
22#include <linux/mm.h>
23#include <linux/init.h>
24#include <linux/delay.h>
25#include <linux/spinlock.h>
26#include <linux/interrupt.h>
27#include <linux/module.h>
28#include <linux/moduleparam.h>
akpm@osdl.org35faa712005-04-16 15:24:54 -070029#include <linux/nmi.h>
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -070030#include <linux/kprobes.h>
Vivek Goyal8bcc5282006-04-18 12:35:13 +020031#include <linux/kexec.h>
Jan Beulichb538ed22006-06-26 13:57:32 +020032#include <linux/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/system.h>
35#include <asm/uaccess.h>
36#include <asm/io.h>
37#include <asm/atomic.h>
38#include <asm/debugreg.h>
39#include <asm/desc.h>
40#include <asm/i387.h>
41#include <asm/kdebug.h>
42#include <asm/processor.h>
Jan Beulichb538ed22006-06-26 13:57:32 +020043#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/smp.h>
45#include <asm/pgalloc.h>
46#include <asm/pda.h>
47#include <asm/proto.h>
48#include <asm/nmi.h>
49
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}
Alan Sterne041c682006-03-27 01:16:30 -080080EXPORT_SYMBOL(register_die_notifier);
81
82int unregister_die_notifier(struct notifier_block *nb)
83{
84 return atomic_notifier_chain_unregister(&die_chain, nb);
85}
86EXPORT_SYMBOL(unregister_die_notifier);
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 Beulichc33bd9a2006-06-26 13:57:47 +0200111static int call_trace = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113#ifdef CONFIG_KALLSYMS
114#include <linux/kallsyms.h>
115int printk_address(unsigned long address)
116{
117 unsigned long offset = 0, symsize;
118 const char *symname;
119 char *modname;
120 char *delim = ":";
121 char namebuf[128];
122
123 symname = kallsyms_lookup(address, &symsize, &offset, &modname, namebuf);
124 if (!symname)
125 return printk("[<%016lx>]", address);
126 if (!modname)
127 modname = delim = "";
128 return printk("<%016lx>{%s%s%s%s%+ld}",
Roberto Nibali2b692a82006-03-25 16:29:55 +0100129 address, delim, modname, delim, symname, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131#else
132int printk_address(unsigned long address)
133{
134 return printk("[<%016lx>]", address);
135}
136#endif
137
Andi Kleen0a658002005-04-16 15:25:17 -0700138static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
139 unsigned *usedp, const char **idp)
140{
Jan Beulichb556b352006-01-11 22:43:00 +0100141 static char ids[][8] = {
Andi Kleen0a658002005-04-16 15:25:17 -0700142 [DEBUG_STACK - 1] = "#DB",
143 [NMI_STACK - 1] = "NMI",
144 [DOUBLEFAULT_STACK - 1] = "#DF",
145 [STACKFAULT_STACK - 1] = "#SS",
146 [MCE_STACK - 1] = "#MC",
Jan Beulichb556b352006-01-11 22:43:00 +0100147#if DEBUG_STKSZ > EXCEPTION_STKSZ
148 [N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
149#endif
Andi Kleen0a658002005-04-16 15:25:17 -0700150 };
151 unsigned k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Andi Kleen0a658002005-04-16 15:25:17 -0700153 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
154 unsigned long end;
155
Jan Beulichb556b352006-01-11 22:43:00 +0100156 switch (k + 1) {
157#if DEBUG_STKSZ > EXCEPTION_STKSZ
158 case DEBUG_STACK:
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100159 end = cpu_pda(cpu)->debugstack + DEBUG_STKSZ;
Jan Beulichb556b352006-01-11 22:43:00 +0100160 break;
161#endif
162 default:
163 end = per_cpu(init_tss, cpu).ist[k];
164 break;
165 }
Andi Kleen0a658002005-04-16 15:25:17 -0700166 if (stack >= end)
167 continue;
168 if (stack >= end - EXCEPTION_STKSZ) {
169 if (*usedp & (1U << k))
170 break;
171 *usedp |= 1U << k;
172 *idp = ids[k];
173 return (unsigned long *)end;
174 }
Jan Beulichb556b352006-01-11 22:43:00 +0100175#if DEBUG_STKSZ > EXCEPTION_STKSZ
176 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
177 unsigned j = N_EXCEPTION_STACKS - 1;
178
179 do {
180 ++j;
181 end -= EXCEPTION_STKSZ;
182 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
183 } while (stack < end - EXCEPTION_STKSZ);
184 if (*usedp & (1U << j))
185 break;
186 *usedp |= 1U << j;
187 *idp = ids[j];
188 return (unsigned long *)end;
189 }
190#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192 return NULL;
Andi Kleen0a658002005-04-16 15:25:17 -0700193}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200195static int show_trace_unwind(struct unwind_frame_info *info, void *context)
Jan Beulichb538ed22006-06-26 13:57:32 +0200196{
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200197 int i = 11, n = 0;
Jan Beulichb538ed22006-06-26 13:57:32 +0200198
199 while (unwind(info) == 0 && UNW_PC(info)) {
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200200 ++n;
Jan Beulichb538ed22006-06-26 13:57:32 +0200201 if (i > 50) {
202 printk("\n ");
203 i = 7;
204 } else
205 i += printk(" ");
206 i += printk_address(UNW_PC(info));
207 if (arch_unw_user_mode(info))
208 break;
209 }
210 printk("\n");
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200211 return n;
Jan Beulichb538ed22006-06-26 13:57:32 +0200212}
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/*
215 * x86-64 can have upto three kernel stacks:
216 * process stack
217 * interrupt stack
Andi Kleen0a658002005-04-16 15:25:17 -0700218 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 */
220
Jan Beulichb538ed22006-06-26 13:57:32 +0200221void show_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long * stack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Andi Kleen0a658002005-04-16 15:25:17 -0700223 const unsigned cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100224 unsigned long *irqstack_end = (unsigned long *)cpu_pda(cpu)->irqstackptr;
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200225 int i = 11;
Andi Kleen0a658002005-04-16 15:25:17 -0700226 unsigned used = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 printk("\nCall Trace:");
Andi Kleen0a658002005-04-16 15:25:17 -0700229
Jan Beulichb538ed22006-06-26 13:57:32 +0200230 if (!tsk)
231 tsk = current;
232
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200233 if (call_trace >= 0) {
234 int unw_ret = 0;
235 struct unwind_frame_info info;
236
237 if (regs) {
238 if (unwind_init_frame_info(&info, tsk, regs) == 0)
239 unw_ret = show_trace_unwind(&info, NULL);
240 } else if (tsk == current)
241 unw_ret = unwind_init_running(&info, show_trace_unwind, NULL);
242 else {
243 if (unwind_init_blocked(&info, tsk) == 0)
244 unw_ret = show_trace_unwind(&info, NULL);
Jan Beulichb538ed22006-06-26 13:57:32 +0200245 }
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200246 if (unw_ret > 0) {
247 if (call_trace > 0)
248 return;
249 printk("Legacy call trace:");
250 i = 18;
Jan Beulichb538ed22006-06-26 13:57:32 +0200251 }
252 }
253
Andi Kleen0a658002005-04-16 15:25:17 -0700254#define HANDLE_STACK(cond) \
255 do while (cond) { \
Jan Beulich1b2f6302006-01-11 22:46:45 +0100256 unsigned long addr = *stack++; \
Andi Kleen0a658002005-04-16 15:25:17 -0700257 if (kernel_text_address(addr)) { \
Jan Beulich1b2f6302006-01-11 22:46:45 +0100258 if (i > 50) { \
259 printk("\n "); \
260 i = 0; \
261 } \
262 else \
263 i += printk(" "); \
Andi Kleen0a658002005-04-16 15:25:17 -0700264 /* \
265 * If the address is either in the text segment of the \
266 * kernel, or in the region which contains vmalloc'ed \
267 * memory, it *may* be the address of a calling \
268 * routine; if so, print it so that someone tracing \
269 * down the cause of the crash will be able to figure \
270 * out the call path that was taken. \
271 */ \
272 i += printk_address(addr); \
Andi Kleen0a658002005-04-16 15:25:17 -0700273 } \
274 } while (0)
275
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200276 for(; ; ) {
Andi Kleen0a658002005-04-16 15:25:17 -0700277 const char *id;
278 unsigned long *estack_end;
279 estack_end = in_exception_stack(cpu, (unsigned long)stack,
280 &used, &id);
281
282 if (estack_end) {
Jan Beulich1b2f6302006-01-11 22:46:45 +0100283 i += printk(" <%s>", id);
Andi Kleen0a658002005-04-16 15:25:17 -0700284 HANDLE_STACK (stack < estack_end);
Jan Beulich1b2f6302006-01-11 22:46:45 +0100285 i += printk(" <EOE>");
Andi Kleen0a658002005-04-16 15:25:17 -0700286 stack = (unsigned long *) estack_end[-2];
287 continue;
288 }
289 if (irqstack_end) {
290 unsigned long *irqstack;
291 irqstack = irqstack_end -
292 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
293
294 if (stack >= irqstack && stack < irqstack_end) {
Jan Beulich1b2f6302006-01-11 22:46:45 +0100295 i += printk(" <IRQ>");
Andi Kleen0a658002005-04-16 15:25:17 -0700296 HANDLE_STACK (stack < irqstack_end);
297 stack = (unsigned long *) (irqstack_end[-1]);
298 irqstack_end = NULL;
Jan Beulich1b2f6302006-01-11 22:46:45 +0100299 i += printk(" <EOI>");
Andi Kleen0a658002005-04-16 15:25:17 -0700300 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302 }
Andi Kleen0a658002005-04-16 15:25:17 -0700303 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
Andi Kleen0a658002005-04-16 15:25:17 -0700305
306 HANDLE_STACK (((long) stack & (THREAD_SIZE-1)) != 0);
307#undef HANDLE_STACK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 printk("\n");
309}
310
Jan Beulichb538ed22006-06-26 13:57:32 +0200311static void _show_stack(struct task_struct *tsk, struct pt_regs *regs, unsigned long * rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
313 unsigned long *stack;
314 int i;
315 const int cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100316 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
317 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 // debugging aid: "show_stack(NULL, NULL);" prints the
320 // back trace for this cpu.
321
322 if (rsp == NULL) {
323 if (tsk)
324 rsp = (unsigned long *)tsk->thread.rsp;
325 else
326 rsp = (unsigned long *)&rsp;
327 }
328
329 stack = rsp;
330 for(i=0; i < kstack_depth_to_print; i++) {
331 if (stack >= irqstack && stack <= irqstack_end) {
332 if (stack == irqstack_end) {
333 stack = (unsigned long *) (irqstack_end[-1]);
334 printk(" <EOI> ");
335 }
336 } else {
337 if (((long) stack & (THREAD_SIZE-1)) == 0)
338 break;
339 }
340 if (i && ((i % 4) == 0))
341 printk("\n ");
342 printk("%016lx ", *stack++);
akpm@osdl.org35faa712005-04-16 15:24:54 -0700343 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
Jan Beulichb538ed22006-06-26 13:57:32 +0200345 show_trace(tsk, regs, rsp);
346}
347
348void show_stack(struct task_struct *tsk, unsigned long * rsp)
349{
350 _show_stack(tsk, NULL, rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
353/*
354 * The architecture-independent dump_stack generator
355 */
356void dump_stack(void)
357{
358 unsigned long dummy;
Jan Beulichb538ed22006-06-26 13:57:32 +0200359 show_trace(NULL, NULL, &dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
362EXPORT_SYMBOL(dump_stack);
363
364void show_registers(struct pt_regs *regs)
365{
366 int i;
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700367 int in_kernel = !user_mode(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 unsigned long rsp;
369 const int cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100370 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 rsp = regs->rsp;
373
374 printk("CPU %d ", cpu);
375 __show_regs(regs);
376 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
Al Viroe4f17c42006-01-12 01:05:38 -0800377 cur->comm, cur->pid, task_thread_info(cur), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 /*
380 * When in-kernel, we also print out the stack and code at the
381 * time of the fault..
382 */
383 if (in_kernel) {
384
385 printk("Stack: ");
Jan Beulichb538ed22006-06-26 13:57:32 +0200386 _show_stack(NULL, regs, (unsigned long*)rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 printk("\nCode: ");
Roberto Nibali2b692a82006-03-25 16:29:55 +0100389 if (regs->rip < PAGE_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 goto bad;
391
Roberto Nibali2b692a82006-03-25 16:29:55 +0100392 for (i=0; i<20; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 unsigned char c;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100394 if (__get_user(c, &((unsigned char*)regs->rip)[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395bad:
396 printk(" Bad RIP value.");
397 break;
398 }
399 printk("%02x ", c);
400 }
401 }
402 printk("\n");
403}
404
405void handle_BUG(struct pt_regs *regs)
406{
407 struct bug_frame f;
Jan Beulich5f1d1892006-01-11 22:46:48 +0100408 long len;
409 const char *prefix = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700411 if (user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return;
Stephen Hemminger77a75332006-01-11 22:46:30 +0100413 if (__copy_from_user(&f, (const void __user *) regs->rip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 sizeof(struct bug_frame)))
415 return;
Jan Beulich049cdef2005-09-12 18:49:25 +0200416 if (f.filename >= 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 f.ud2[0] != 0x0f || f.ud2[1] != 0x0b)
418 return;
Jan Beulich5f1d1892006-01-11 22:46:48 +0100419 len = __strnlen_user((char *)(long)f.filename, PATH_MAX) - 1;
420 if (len < 0 || len >= PATH_MAX)
Jan Beulich049cdef2005-09-12 18:49:25 +0200421 f.filename = (int)(long)"unmapped filename";
Jan Beulich5f1d1892006-01-11 22:46:48 +0100422 else if (len > 50) {
423 f.filename += len - 50;
424 prefix = "...";
425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 printk("----------- [cut here ] --------- [please bite here ] ---------\n");
Jan Beulich5f1d1892006-01-11 22:46:48 +0100427 printk(KERN_ALERT "Kernel BUG at %s%.50s:%d\n", prefix, (char *)(long)f.filename, f.line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700430#ifdef CONFIG_BUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431void out_of_line_bug(void)
432{
433 BUG();
434}
Andi Kleen2ee60e172006-06-26 13:59:44 +0200435EXPORT_SYMBOL(out_of_line_bug);
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700436#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438static DEFINE_SPINLOCK(die_lock);
439static int die_owner = -1;
Corey Minyardcdc60a42006-05-08 15:17:22 +0200440static unsigned int die_nest_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100442unsigned __kprobes long oops_begin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Jan Beulich12091402005-09-12 18:49:24 +0200444 int cpu = safe_smp_processor_id();
445 unsigned long flags;
446
447 /* racy, but better than risking deadlock. */
448 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (!spin_trylock(&die_lock)) {
450 if (cpu == die_owner)
451 /* nested oops. should stop eventually */;
452 else
Jan Beulich12091402005-09-12 18:49:24 +0200453 spin_lock(&die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
Corey Minyardcdc60a42006-05-08 15:17:22 +0200455 die_nest_count++;
Jan Beulich12091402005-09-12 18:49:24 +0200456 die_owner = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 console_verbose();
Jan Beulich12091402005-09-12 18:49:24 +0200458 bust_spinlocks(1);
459 return flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100462void __kprobes oops_end(unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 die_owner = -1;
Jan Beulich12091402005-09-12 18:49:24 +0200465 bust_spinlocks(0);
Corey Minyardcdc60a42006-05-08 15:17:22 +0200466 die_nest_count--;
467 if (die_nest_count)
468 /* We still own the lock */
469 local_irq_restore(flags);
470 else
471 /* Nest count reaches zero, release the lock. */
472 spin_unlock_irqrestore(&die_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (panic_on_oops)
Jan Beulich12091402005-09-12 18:49:24 +0200474 panic("Oops");
475}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100477void __kprobes __die(const char * str, struct pt_regs * regs, long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
479 static int die_counter;
480 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
481#ifdef CONFIG_PREEMPT
482 printk("PREEMPT ");
483#endif
484#ifdef CONFIG_SMP
485 printk("SMP ");
486#endif
487#ifdef CONFIG_DEBUG_PAGEALLOC
488 printk("DEBUG_PAGEALLOC");
489#endif
490 printk("\n");
Jan Beulich6e3f3612006-01-11 22:42:14 +0100491 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 show_registers(regs);
493 /* Executive summary in case the oops scrolled away */
494 printk(KERN_ALERT "RIP ");
495 printk_address(regs->rip);
496 printk(" RSP <%016lx>\n", regs->rsp);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200497 if (kexec_should_crash(current))
498 crash_kexec(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
501void die(const char * str, struct pt_regs * regs, long err)
502{
Jan Beulich12091402005-09-12 18:49:24 +0200503 unsigned long flags = oops_begin();
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 handle_BUG(regs);
506 __die(str, regs, err);
Jan Beulich12091402005-09-12 18:49:24 +0200507 oops_end(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 do_exit(SIGSEGV);
509}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100511void __kprobes die_nmi(char *str, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Jan Beulich12091402005-09-12 18:49:24 +0200513 unsigned long flags = oops_begin();
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 /*
516 * We are in trouble anyway, lets at least try
517 * to get a message out.
518 */
519 printk(str, safe_smp_processor_id());
520 show_registers(regs);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200521 if (kexec_should_crash(current))
522 crash_kexec(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (panic_on_timeout || panic_on_oops)
524 panic("nmi watchdog");
525 printk("console shuts up ...\n");
Jan Beulich12091402005-09-12 18:49:24 +0200526 oops_end(flags);
Corey Minyard8b1ffe952006-05-08 15:17:25 +0200527 nmi_exit();
528 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 do_exit(SIGSEGV);
530}
531
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700532static void __kprobes do_trap(int trapnr, int signr, char *str,
533 struct pt_regs * regs, long error_code,
534 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100536 struct task_struct *tsk = current;
537
Jan Beulich6e3f3612006-01-11 22:42:14 +0100538 tsk->thread.error_code = error_code;
539 tsk->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Jan Beulich6e3f3612006-01-11 22:42:14 +0100541 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (exception_trace && unhandled_signal(tsk, signr))
543 printk(KERN_INFO
544 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
545 tsk->comm, tsk->pid, str,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100546 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (info)
549 force_sig_info(signr, info, tsk);
550 else
551 force_sig(signr, tsk);
552 return;
553 }
554
555
556 /* kernel trap */
557 {
558 const struct exception_table_entry *fixup;
559 fixup = search_exception_tables(regs->rip);
Roberto Nibali2b692a82006-03-25 16:29:55 +0100560 if (fixup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 regs->rip = fixup->fixup;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100562 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 die(str, regs, error_code);
564 return;
565 }
566}
567
568#define DO_ERROR(trapnr, signr, str, name) \
569asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
570{ \
571 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
572 == NOTIFY_STOP) \
573 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200574 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 do_trap(trapnr, signr, str, regs, error_code, NULL); \
576}
577
578#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
579asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
580{ \
581 siginfo_t info; \
582 info.si_signo = signr; \
583 info.si_errno = 0; \
584 info.si_code = sicode; \
585 info.si_addr = (void __user *)siaddr; \
586 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
587 == NOTIFY_STOP) \
588 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200589 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 do_trap(trapnr, signr, str, regs, error_code, &info); \
591}
592
593DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
594DO_ERROR( 4, SIGSEGV, "overflow", overflow)
595DO_ERROR( 5, SIGSEGV, "bounds", bounds)
Chuck Ebbert100c0e32006-01-11 22:46:00 +0100596DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
598DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
599DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
600DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
601DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
602DO_ERROR(18, SIGSEGV, "reserved", reserved)
Andi Kleen40e59a62006-05-15 18:19:47 +0200603
604/* Runs on IST stack */
605asmlinkage void do_stack_segment(struct pt_regs *regs, long error_code)
606{
607 if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
608 12, SIGBUS) == NOTIFY_STOP)
609 return;
610 preempt_conditional_sti(regs);
611 do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
612 preempt_conditional_cli(regs);
613}
Jan Beulicheca37c12006-01-11 22:42:17 +0100614
615asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
616{
617 static const char str[] = "double fault";
618 struct task_struct *tsk = current;
619
620 /* Return not checked because double check cannot be ignored */
621 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
622
623 tsk->thread.error_code = error_code;
624 tsk->thread.trap_no = 8;
625
626 /* This is always a kernel trap and never fixable (and thus must
627 never return). */
628 for (;;)
629 die(str, regs, error_code);
630}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700632asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
633 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100635 struct task_struct *tsk = current;
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 conditional_sti(regs);
638
Jan Beulich6e3f3612006-01-11 22:42:14 +0100639 tsk->thread.error_code = error_code;
640 tsk->thread.trap_no = 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Jan Beulich6e3f3612006-01-11 22:42:14 +0100642 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
644 printk(KERN_INFO
645 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
646 tsk->comm, tsk->pid,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100647 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 force_sig(SIGSEGV, tsk);
650 return;
651 }
652
653 /* kernel gp */
654 {
655 const struct exception_table_entry *fixup;
656 fixup = search_exception_tables(regs->rip);
657 if (fixup) {
658 regs->rip = fixup->fixup;
659 return;
660 }
661 if (notify_die(DIE_GPF, "general protection fault", regs,
662 error_code, 13, SIGSEGV) == NOTIFY_STOP)
663 return;
664 die("general protection fault", regs, error_code);
665 }
666}
667
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100668static __kprobes void
669mem_parity_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
671 printk("Uhhuh. NMI received. Dazed and confused, but trying to continue\n");
672 printk("You probably have a hardware problem with your RAM chips\n");
673
674 /* Clear and disable the memory parity error line. */
675 reason = (reason & 0xf) | 4;
676 outb(reason, 0x61);
677}
678
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100679static __kprobes void
680io_check_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
682 printk("NMI: IOCK error (debug interrupt?)\n");
683 show_registers(regs);
684
685 /* Re-enable the IOCK line, wait for a few seconds */
686 reason = (reason & 0xf) | 8;
687 outb(reason, 0x61);
688 mdelay(2000);
689 reason &= ~8;
690 outb(reason, 0x61);
691}
692
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100693static __kprobes void
694unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{ printk("Uhhuh. NMI received for unknown reason %02x.\n", reason);
696 printk("Dazed and confused, but trying to continue\n");
697 printk("Do you have a strange power saving mode enabled?\n");
698}
699
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700700/* Runs on IST stack. This code must keep interrupts off all the time.
701 Nested NMIs are prevented by the CPU. */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100702asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 unsigned char reason = 0;
Ashok Raj76e4f662005-06-25 14:55:00 -0700705 int cpu;
706
707 cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 /* Only the BSP gets external NMIs from the system. */
Ashok Raj76e4f662005-06-25 14:55:00 -0700710 if (!cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 reason = get_nmi_reason();
712
713 if (!(reason & 0xc0)) {
Jan Beulich6e3f3612006-01-11 22:42:14 +0100714 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 == NOTIFY_STOP)
716 return;
717#ifdef CONFIG_X86_LOCAL_APIC
718 /*
719 * Ok, so this is none of the documented NMI sources,
720 * so it must be the NMI watchdog.
721 */
722 if (nmi_watchdog > 0) {
723 nmi_watchdog_tick(regs,reason);
724 return;
725 }
726#endif
727 unknown_nmi_error(reason, regs);
728 return;
729 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100730 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return;
732
733 /* AK: following checks seem to be broken on modern chipsets. FIXME */
734
735 if (reason & 0x80)
736 mem_parity_error(reason, regs);
737 if (reason & 0x40)
738 io_check_error(reason, regs);
739}
740
Jan Beulichb556b352006-01-11 22:43:00 +0100741/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700742asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
744 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
745 return;
746 }
Andi Kleen40e59a62006-05-15 18:19:47 +0200747 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
Andi Kleen40e59a62006-05-15 18:19:47 +0200749 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700752/* Help handler running on IST stack to switch back to user stack
753 for scheduling or signal handling. The actual stack switch is done in
754 entry.S */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100755asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700757 struct pt_regs *regs = eregs;
758 /* Did already sync */
759 if (eregs == (struct pt_regs *)eregs->rsp)
760 ;
761 /* Exception from user space */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700762 else if (user_mode(eregs))
Al Virobb049232006-01-12 01:05:38 -0800763 regs = task_pt_regs(current);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700764 /* Exception from kernel and interrupts are enabled. Move to
765 kernel process stack. */
766 else if (eregs->eflags & X86_EFLAGS_IF)
767 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
768 if (eregs != regs)
769 *regs = *eregs;
770 return regs;
771}
772
773/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700774asmlinkage void __kprobes do_debug(struct pt_regs * regs,
775 unsigned long error_code)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700776{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 unsigned long condition;
778 struct task_struct *tsk = current;
779 siginfo_t info;
780
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700781 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
Andi Kleendaeeafe2005-04-16 15:25:13 -0700784 SIGTRAP) == NOTIFY_STOP)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700785 return;
Andi Kleendaeeafe2005-04-16 15:25:13 -0700786
John Blackwooda65d17c2006-02-12 14:34:58 -0800787 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 /* Mask out spurious debug traps due to lazy DR7 setting */
790 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
791 if (!tsk->thread.debugreg7) {
792 goto clear_dr7;
793 }
794 }
795
796 tsk->thread.debugreg6 = condition;
797
798 /* Mask out spurious TF errors due to lazy TF clearing */
Andi Kleendaeeafe2005-04-16 15:25:13 -0700799 if (condition & DR_STEP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 /*
801 * The TF error should be masked out only if the current
802 * process is not traced and if the TRAP flag has been set
803 * previously by a tracing process (condition detected by
804 * the PT_DTRACE flag); remember that the i386 TRAP flag
805 * can be modified by the process itself in user mode,
806 * allowing programs to debug themselves without the ptrace()
807 * interface.
808 */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700809 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 goto clear_TF_reenable;
Andi Kleenbe61bff2005-04-16 15:24:57 -0700811 /*
812 * Was the TF flag set by a debugger? If so, clear it now,
813 * so that register information is correct.
814 */
815 if (tsk->ptrace & PT_DTRACE) {
816 regs->eflags &= ~TF_MASK;
817 tsk->ptrace &= ~PT_DTRACE;
818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820
821 /* Ok, finally something we can handle */
822 tsk->thread.trap_no = 1;
823 tsk->thread.error_code = error_code;
824 info.si_signo = SIGTRAP;
825 info.si_errno = 0;
826 info.si_code = TRAP_BRKPT;
John Blackwood01b8faa2006-01-11 22:44:15 +0100827 info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
828 force_sig_info(SIGTRAP, &info, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830clear_dr7:
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700831 set_debugreg(0UL, 7);
John Blackwooda65d17c2006-02-12 14:34:58 -0800832 preempt_conditional_cli(regs);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700833 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835clear_TF_reenable:
836 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 regs->eflags &= ~TF_MASK;
John Blackwooda65d17c2006-02-12 14:34:58 -0800838 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Jan Beulich6e3f3612006-01-11 22:42:14 +0100841static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 const struct exception_table_entry *fixup;
844 fixup = search_exception_tables(regs->rip);
845 if (fixup) {
846 regs->rip = fixup->fixup;
847 return 1;
848 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100849 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
Andi Kleen3a848f62005-04-16 15:25:06 -0700850 /* Illegal floating point operation in the kernel */
Jan Beulich6e3f3612006-01-11 22:42:14 +0100851 current->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 die(str, regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return 0;
854}
855
856/*
857 * Note that we play around with the 'TS' bit in an attempt to get
858 * the correct behaviour even in the presence of the asynchronous
859 * IRQ13 behaviour
860 */
861asmlinkage void do_coprocessor_error(struct pt_regs *regs)
862{
863 void __user *rip = (void __user *)(regs->rip);
864 struct task_struct * task;
865 siginfo_t info;
866 unsigned short cwd, swd;
867
868 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700869 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100870 kernel_math_error(regs, "kernel x87 math error", 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return;
872
873 /*
874 * Save the info for the exception handler and clear the error.
875 */
876 task = current;
877 save_init_fpu(task);
878 task->thread.trap_no = 16;
879 task->thread.error_code = 0;
880 info.si_signo = SIGFPE;
881 info.si_errno = 0;
882 info.si_code = __SI_FAULT;
883 info.si_addr = rip;
884 /*
885 * (~cwd & swd) will mask out exceptions that are not set to unmasked
886 * status. 0x3f is the exception bits in these regs, 0x200 is the
887 * C1 reg you need in case of a stack fault, 0x040 is the stack
888 * fault bit. We should only be taking one exception at a time,
889 * so if this combination doesn't produce any single exception,
890 * then we have a bad program that isn't synchronizing its FPU usage
891 * and it will suffer the consequences since we won't be able to
892 * fully reproduce the context of the exception
893 */
894 cwd = get_fpu_cwd(task);
895 swd = get_fpu_swd(task);
Chuck Ebbertff347b22005-09-12 18:49:25 +0200896 switch (swd & ~cwd & 0x3f) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 case 0x000:
898 default:
899 break;
900 case 0x001: /* Invalid Op */
Chuck Ebbertff347b22005-09-12 18:49:25 +0200901 /*
902 * swd & 0x240 == 0x040: Stack Underflow
903 * swd & 0x240 == 0x240: Stack Overflow
904 * User must clear the SF bit (0x40) if set
905 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 info.si_code = FPE_FLTINV;
907 break;
908 case 0x002: /* Denormalize */
909 case 0x010: /* Underflow */
910 info.si_code = FPE_FLTUND;
911 break;
912 case 0x004: /* Zero Divide */
913 info.si_code = FPE_FLTDIV;
914 break;
915 case 0x008: /* Overflow */
916 info.si_code = FPE_FLTOVF;
917 break;
918 case 0x020: /* Precision */
919 info.si_code = FPE_FLTRES;
920 break;
921 }
922 force_sig_info(SIGFPE, &info, task);
923}
924
925asmlinkage void bad_intr(void)
926{
927 printk("bad interrupt");
928}
929
930asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
931{
932 void __user *rip = (void __user *)(regs->rip);
933 struct task_struct * task;
934 siginfo_t info;
935 unsigned short mxcsr;
936
937 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700938 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100939 kernel_math_error(regs, "kernel simd math error", 19))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return;
941
942 /*
943 * Save the info for the exception handler and clear the error.
944 */
945 task = current;
946 save_init_fpu(task);
947 task->thread.trap_no = 19;
948 task->thread.error_code = 0;
949 info.si_signo = SIGFPE;
950 info.si_errno = 0;
951 info.si_code = __SI_FAULT;
952 info.si_addr = rip;
953 /*
954 * The SIMD FPU exceptions are handled a little differently, as there
955 * is only a single status/control register. Thus, to determine which
956 * unmasked exception was caught we must mask the exception mask bits
957 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
958 */
959 mxcsr = get_fpu_mxcsr(task);
960 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
961 case 0x000:
962 default:
963 break;
964 case 0x001: /* Invalid Op */
965 info.si_code = FPE_FLTINV;
966 break;
967 case 0x002: /* Denormalize */
968 case 0x010: /* Underflow */
969 info.si_code = FPE_FLTUND;
970 break;
971 case 0x004: /* Zero Divide */
972 info.si_code = FPE_FLTDIV;
973 break;
974 case 0x008: /* Overflow */
975 info.si_code = FPE_FLTOVF;
976 break;
977 case 0x020: /* Precision */
978 info.si_code = FPE_FLTRES;
979 break;
980 }
981 force_sig_info(SIGFPE, &info, task);
982}
983
984asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
985{
986}
987
988asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
989{
990}
991
Jacob Shin89b831e2005-11-05 17:25:53 +0100992asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
993{
994}
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996/*
997 * 'math_state_restore()' saves the current math information in the
998 * old math state array, and gets the new ones from the current task
999 *
1000 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1001 * Don't touch unless you *really* know how it works.
1002 */
1003asmlinkage void math_state_restore(void)
1004{
1005 struct task_struct *me = current;
1006 clts(); /* Allow maths ops (or we recurse) */
1007
1008 if (!used_math())
1009 init_fpu(me);
1010 restore_fpu_checking(&me->thread.i387.fxsave);
Al Viroe4f17c42006-01-12 01:05:38 -08001011 task_thread_info(me)->status |= TS_USEDFPU;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014void __init trap_init(void)
1015{
1016 set_intr_gate(0,&divide_error);
1017 set_intr_gate_ist(1,&debug,DEBUG_STACK);
1018 set_intr_gate_ist(2,&nmi,NMI_STACK);
Jan Beulichb556b352006-01-11 22:43:00 +01001019 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
Jan Beulich0a521582006-01-11 22:42:08 +01001020 set_system_gate(4,&overflow); /* int4 can be called from all */
1021 set_intr_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 set_intr_gate(6,&invalid_op);
1023 set_intr_gate(7,&device_not_available);
1024 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
1025 set_intr_gate(9,&coprocessor_segment_overrun);
1026 set_intr_gate(10,&invalid_TSS);
1027 set_intr_gate(11,&segment_not_present);
1028 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
1029 set_intr_gate(13,&general_protection);
1030 set_intr_gate(14,&page_fault);
1031 set_intr_gate(15,&spurious_interrupt_bug);
1032 set_intr_gate(16,&coprocessor_error);
1033 set_intr_gate(17,&alignment_check);
1034#ifdef CONFIG_X86_MCE
1035 set_intr_gate_ist(18,&machine_check, MCE_STACK);
1036#endif
1037 set_intr_gate(19,&simd_coprocessor_error);
1038
1039#ifdef CONFIG_IA32_EMULATION
1040 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1041#endif
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 /*
1044 * Should be a barrier for any external CPU state.
1045 */
1046 cpu_init();
1047}
1048
1049
1050/* Actual parsing is done early in setup.c. */
1051static int __init oops_dummy(char *s)
1052{
1053 panic_on_oops = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001054 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
1056__setup("oops=", oops_dummy);
1057
1058static int __init kstack_setup(char *s)
1059{
1060 kstack_depth_to_print = simple_strtoul(s,NULL,0);
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001061 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
1063__setup("kstack=", kstack_setup);
1064
Jan Beulichc33bd9a2006-06-26 13:57:47 +02001065static int __init call_trace_setup(char *s)
1066{
1067 if (strcmp(s, "old") == 0)
1068 call_trace = -1;
1069 else if (strcmp(s, "both") == 0)
1070 call_trace = 0;
1071 else if (strcmp(s, "new") == 0)
1072 call_trace = 1;
1073 return 1;
1074}
1075__setup("call_trace=", call_trace_setup);