blob: 02dc155da56fc9775f1d1e72eace27066cac5975 [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}
Alan Sterne041c682006-03-27 01:16:30 -080079EXPORT_SYMBOL(register_die_notifier);
80
81int unregister_die_notifier(struct notifier_block *nb)
82{
83 return atomic_notifier_chain_unregister(&die_chain, nb);
84}
85EXPORT_SYMBOL(unregister_die_notifier);
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
Andi Kleen0a658002005-04-16 15:25:17 -0700155 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
156 unsigned long end;
157
Jan Beulichb556b352006-01-11 22:43:00 +0100158 switch (k + 1) {
159#if DEBUG_STKSZ > EXCEPTION_STKSZ
160 case DEBUG_STACK:
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100161 end = cpu_pda(cpu)->debugstack + DEBUG_STKSZ;
Jan Beulichb556b352006-01-11 22:43:00 +0100162 break;
163#endif
164 default:
165 end = per_cpu(init_tss, cpu).ist[k];
166 break;
167 }
Andi Kleen0a658002005-04-16 15:25:17 -0700168 if (stack >= end)
169 continue;
170 if (stack >= end - EXCEPTION_STKSZ) {
171 if (*usedp & (1U << k))
172 break;
173 *usedp |= 1U << k;
174 *idp = ids[k];
175 return (unsigned long *)end;
176 }
Jan Beulichb556b352006-01-11 22:43:00 +0100177#if DEBUG_STKSZ > EXCEPTION_STKSZ
178 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
179 unsigned j = N_EXCEPTION_STACKS - 1;
180
181 do {
182 ++j;
183 end -= EXCEPTION_STKSZ;
184 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
185 } while (stack < end - EXCEPTION_STKSZ);
186 if (*usedp & (1U << j))
187 break;
188 *usedp |= 1U << j;
189 *idp = ids[j];
190 return (unsigned long *)end;
191 }
192#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194 return NULL;
Andi Kleen0a658002005-04-16 15:25:17 -0700195}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200197static int show_trace_unwind(struct unwind_frame_info *info, void *context)
Jan Beulichb538ed22006-06-26 13:57:32 +0200198{
Ingo Molnar3ac94932006-07-03 00:24:36 -0700199 int n = 0;
Jan Beulichb538ed22006-06-26 13:57:32 +0200200
201 while (unwind(info) == 0 && UNW_PC(info)) {
Ingo Molnar3ac94932006-07-03 00:24:36 -0700202 n++;
203 printk_address(UNW_PC(info));
Jan Beulichb538ed22006-06-26 13:57:32 +0200204 if (arch_unw_user_mode(info))
205 break;
206 }
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200207 return n;
Jan Beulichb538ed22006-06-26 13:57:32 +0200208}
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210/*
211 * x86-64 can have upto three kernel stacks:
212 * process stack
213 * interrupt stack
Andi Kleen0a658002005-04-16 15:25:17 -0700214 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 */
216
Jan Beulichb538ed22006-06-26 13:57:32 +0200217void show_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long * stack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Andi Kleen0a658002005-04-16 15:25:17 -0700219 const unsigned cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100220 unsigned long *irqstack_end = (unsigned long *)cpu_pda(cpu)->irqstackptr;
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200221 int i = 11;
Andi Kleen0a658002005-04-16 15:25:17 -0700222 unsigned used = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Ingo Molnar3ac94932006-07-03 00:24:36 -0700224 printk("\nCall Trace:\n");
Andi Kleen0a658002005-04-16 15:25:17 -0700225
Jan Beulichb538ed22006-06-26 13:57:32 +0200226 if (!tsk)
227 tsk = current;
228
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200229 if (call_trace >= 0) {
230 int unw_ret = 0;
231 struct unwind_frame_info info;
232
233 if (regs) {
234 if (unwind_init_frame_info(&info, tsk, regs) == 0)
235 unw_ret = show_trace_unwind(&info, NULL);
236 } else if (tsk == current)
237 unw_ret = unwind_init_running(&info, show_trace_unwind, NULL);
238 else {
239 if (unwind_init_blocked(&info, tsk) == 0)
240 unw_ret = show_trace_unwind(&info, NULL);
Jan Beulichb538ed22006-06-26 13:57:32 +0200241 }
Jan Beulichc33bd9a2006-06-26 13:57:47 +0200242 if (unw_ret > 0) {
243 if (call_trace > 0)
244 return;
245 printk("Legacy call trace:");
246 i = 18;
Jan Beulichb538ed22006-06-26 13:57:32 +0200247 }
248 }
249
Andi Kleen0a658002005-04-16 15:25:17 -0700250#define HANDLE_STACK(cond) \
251 do while (cond) { \
Jan Beulich1b2f6302006-01-11 22:46:45 +0100252 unsigned long addr = *stack++; \
Andi Kleen0a658002005-04-16 15:25:17 -0700253 if (kernel_text_address(addr)) { \
254 /* \
255 * If the address is either in the text segment of the \
256 * kernel, or in the region which contains vmalloc'ed \
257 * memory, it *may* be the address of a calling \
258 * routine; if so, print it so that someone tracing \
259 * down the cause of the crash will be able to figure \
260 * out the call path that was taken. \
261 */ \
Ingo Molnar3ac94932006-07-03 00:24:36 -0700262 printk_address(addr); \
Andi Kleen0a658002005-04-16 15:25:17 -0700263 } \
264 } while (0)
265
Ingo Molnar3ac94932006-07-03 00:24:36 -0700266 for( ; ; ) {
Andi Kleen0a658002005-04-16 15:25:17 -0700267 const char *id;
268 unsigned long *estack_end;
269 estack_end = in_exception_stack(cpu, (unsigned long)stack,
270 &used, &id);
271
272 if (estack_end) {
Ingo Molnar3ac94932006-07-03 00:24:36 -0700273 printk(" <%s>", id);
Andi Kleen0a658002005-04-16 15:25:17 -0700274 HANDLE_STACK (stack < estack_end);
Ingo Molnar3ac94932006-07-03 00:24:36 -0700275 printk(" <EOE>");
Andi Kleen0a658002005-04-16 15:25:17 -0700276 stack = (unsigned long *) estack_end[-2];
277 continue;
278 }
279 if (irqstack_end) {
280 unsigned long *irqstack;
281 irqstack = irqstack_end -
282 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
283
284 if (stack >= irqstack && stack < irqstack_end) {
Ingo Molnar3ac94932006-07-03 00:24:36 -0700285 printk(" <IRQ>");
Andi Kleen0a658002005-04-16 15:25:17 -0700286 HANDLE_STACK (stack < irqstack_end);
287 stack = (unsigned long *) (irqstack_end[-1]);
288 irqstack_end = NULL;
Ingo Molnar3ac94932006-07-03 00:24:36 -0700289 printk(" <EOI>");
Andi Kleen0a658002005-04-16 15:25:17 -0700290 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
292 }
Andi Kleen0a658002005-04-16 15:25:17 -0700293 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
Andi Kleen0a658002005-04-16 15:25:17 -0700295
296 HANDLE_STACK (((long) stack & (THREAD_SIZE-1)) != 0);
297#undef HANDLE_STACK
Ingo Molnar3ac94932006-07-03 00:24:36 -0700298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 printk("\n");
300}
301
Jan Beulichb538ed22006-06-26 13:57:32 +0200302static void _show_stack(struct task_struct *tsk, struct pt_regs *regs, unsigned long * rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 unsigned long *stack;
305 int i;
306 const int cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100307 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
308 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 // debugging aid: "show_stack(NULL, NULL);" prints the
311 // back trace for this cpu.
312
313 if (rsp == NULL) {
314 if (tsk)
315 rsp = (unsigned long *)tsk->thread.rsp;
316 else
317 rsp = (unsigned long *)&rsp;
318 }
319
320 stack = rsp;
321 for(i=0; i < kstack_depth_to_print; i++) {
322 if (stack >= irqstack && stack <= irqstack_end) {
323 if (stack == irqstack_end) {
324 stack = (unsigned long *) (irqstack_end[-1]);
325 printk(" <EOI> ");
326 }
327 } else {
328 if (((long) stack & (THREAD_SIZE-1)) == 0)
329 break;
330 }
331 if (i && ((i % 4) == 0))
Ingo Molnar3ac94932006-07-03 00:24:36 -0700332 printk("\n");
333 printk(" %016lx", *stack++);
akpm@osdl.org35faa712005-04-16 15:24:54 -0700334 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
Jan Beulichb538ed22006-06-26 13:57:32 +0200336 show_trace(tsk, regs, rsp);
337}
338
339void show_stack(struct task_struct *tsk, unsigned long * rsp)
340{
341 _show_stack(tsk, NULL, rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
344/*
345 * The architecture-independent dump_stack generator
346 */
347void dump_stack(void)
348{
349 unsigned long dummy;
Jan Beulichb538ed22006-06-26 13:57:32 +0200350 show_trace(NULL, NULL, &dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
353EXPORT_SYMBOL(dump_stack);
354
355void show_registers(struct pt_regs *regs)
356{
357 int i;
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700358 int in_kernel = !user_mode(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 unsigned long rsp;
360 const int cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100361 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 rsp = regs->rsp;
364
365 printk("CPU %d ", cpu);
366 __show_regs(regs);
367 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
Al Viroe4f17c42006-01-12 01:05:38 -0800368 cur->comm, cur->pid, task_thread_info(cur), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 /*
371 * When in-kernel, we also print out the stack and code at the
372 * time of the fault..
373 */
374 if (in_kernel) {
375
376 printk("Stack: ");
Jan Beulichb538ed22006-06-26 13:57:32 +0200377 _show_stack(NULL, regs, (unsigned long*)rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 printk("\nCode: ");
Roberto Nibali2b692a82006-03-25 16:29:55 +0100380 if (regs->rip < PAGE_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 goto bad;
382
Roberto Nibali2b692a82006-03-25 16:29:55 +0100383 for (i=0; i<20; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 unsigned char c;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100385 if (__get_user(c, &((unsigned char*)regs->rip)[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386bad:
387 printk(" Bad RIP value.");
388 break;
389 }
390 printk("%02x ", c);
391 }
392 }
393 printk("\n");
394}
395
396void handle_BUG(struct pt_regs *regs)
397{
398 struct bug_frame f;
Jan Beulich5f1d1892006-01-11 22:46:48 +0100399 long len;
400 const char *prefix = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700402 if (user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return;
Stephen Hemminger77a75332006-01-11 22:46:30 +0100404 if (__copy_from_user(&f, (const void __user *) regs->rip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 sizeof(struct bug_frame)))
406 return;
Jan Beulich049cdef2005-09-12 18:49:25 +0200407 if (f.filename >= 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 f.ud2[0] != 0x0f || f.ud2[1] != 0x0b)
409 return;
Jan Beulich5f1d1892006-01-11 22:46:48 +0100410 len = __strnlen_user((char *)(long)f.filename, PATH_MAX) - 1;
411 if (len < 0 || len >= PATH_MAX)
Jan Beulich049cdef2005-09-12 18:49:25 +0200412 f.filename = (int)(long)"unmapped filename";
Jan Beulich5f1d1892006-01-11 22:46:48 +0100413 else if (len > 50) {
414 f.filename += len - 50;
415 prefix = "...";
416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 printk("----------- [cut here ] --------- [please bite here ] ---------\n");
Jan Beulich5f1d1892006-01-11 22:46:48 +0100418 printk(KERN_ALERT "Kernel BUG at %s%.50s:%d\n", prefix, (char *)(long)f.filename, f.line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700421#ifdef CONFIG_BUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422void out_of_line_bug(void)
423{
424 BUG();
425}
Andi Kleen2ee60e172006-06-26 13:59:44 +0200426EXPORT_SYMBOL(out_of_line_bug);
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700427#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429static DEFINE_SPINLOCK(die_lock);
430static int die_owner = -1;
Corey Minyardcdc60a42006-05-08 15:17:22 +0200431static unsigned int die_nest_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100433unsigned __kprobes long oops_begin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Jan Beulich12091402005-09-12 18:49:24 +0200435 int cpu = safe_smp_processor_id();
436 unsigned long flags;
437
438 /* racy, but better than risking deadlock. */
439 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (!spin_trylock(&die_lock)) {
441 if (cpu == die_owner)
442 /* nested oops. should stop eventually */;
443 else
Jan Beulich12091402005-09-12 18:49:24 +0200444 spin_lock(&die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
Corey Minyardcdc60a42006-05-08 15:17:22 +0200446 die_nest_count++;
Jan Beulich12091402005-09-12 18:49:24 +0200447 die_owner = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 console_verbose();
Jan Beulich12091402005-09-12 18:49:24 +0200449 bust_spinlocks(1);
450 return flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100453void __kprobes oops_end(unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 die_owner = -1;
Jan Beulich12091402005-09-12 18:49:24 +0200456 bust_spinlocks(0);
Corey Minyardcdc60a42006-05-08 15:17:22 +0200457 die_nest_count--;
458 if (die_nest_count)
459 /* We still own the lock */
460 local_irq_restore(flags);
461 else
462 /* Nest count reaches zero, release the lock. */
463 spin_unlock_irqrestore(&die_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (panic_on_oops)
Jan Beulich12091402005-09-12 18:49:24 +0200465 panic("Oops");
466}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100468void __kprobes __die(const char * str, struct pt_regs * regs, long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470 static int die_counter;
471 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
472#ifdef CONFIG_PREEMPT
473 printk("PREEMPT ");
474#endif
475#ifdef CONFIG_SMP
476 printk("SMP ");
477#endif
478#ifdef CONFIG_DEBUG_PAGEALLOC
479 printk("DEBUG_PAGEALLOC");
480#endif
481 printk("\n");
Jan Beulich6e3f3612006-01-11 22:42:14 +0100482 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 show_registers(regs);
484 /* Executive summary in case the oops scrolled away */
485 printk(KERN_ALERT "RIP ");
486 printk_address(regs->rip);
487 printk(" RSP <%016lx>\n", regs->rsp);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200488 if (kexec_should_crash(current))
489 crash_kexec(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492void die(const char * str, struct pt_regs * regs, long err)
493{
Jan Beulich12091402005-09-12 18:49:24 +0200494 unsigned long flags = oops_begin();
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 handle_BUG(regs);
497 __die(str, regs, err);
Jan Beulich12091402005-09-12 18:49:24 +0200498 oops_end(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 do_exit(SIGSEGV);
500}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100502void __kprobes die_nmi(char *str, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Jan Beulich12091402005-09-12 18:49:24 +0200504 unsigned long flags = oops_begin();
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 /*
507 * We are in trouble anyway, lets at least try
508 * to get a message out.
509 */
510 printk(str, safe_smp_processor_id());
511 show_registers(regs);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200512 if (kexec_should_crash(current))
513 crash_kexec(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (panic_on_timeout || panic_on_oops)
515 panic("nmi watchdog");
516 printk("console shuts up ...\n");
Jan Beulich12091402005-09-12 18:49:24 +0200517 oops_end(flags);
Corey Minyard8b1ffe952006-05-08 15:17:25 +0200518 nmi_exit();
519 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 do_exit(SIGSEGV);
521}
522
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700523static void __kprobes do_trap(int trapnr, int signr, char *str,
524 struct pt_regs * regs, long error_code,
525 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100527 struct task_struct *tsk = current;
528
Jan Beulich6e3f3612006-01-11 22:42:14 +0100529 tsk->thread.error_code = error_code;
530 tsk->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Jan Beulich6e3f3612006-01-11 22:42:14 +0100532 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (exception_trace && unhandled_signal(tsk, signr))
534 printk(KERN_INFO
535 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
536 tsk->comm, tsk->pid, str,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100537 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (info)
540 force_sig_info(signr, info, tsk);
541 else
542 force_sig(signr, tsk);
543 return;
544 }
545
546
547 /* kernel trap */
548 {
549 const struct exception_table_entry *fixup;
550 fixup = search_exception_tables(regs->rip);
Roberto Nibali2b692a82006-03-25 16:29:55 +0100551 if (fixup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 regs->rip = fixup->fixup;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100553 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 die(str, regs, error_code);
555 return;
556 }
557}
558
559#define DO_ERROR(trapnr, signr, str, name) \
560asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
561{ \
562 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
563 == NOTIFY_STOP) \
564 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200565 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 do_trap(trapnr, signr, str, regs, error_code, NULL); \
567}
568
569#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
570asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
571{ \
572 siginfo_t info; \
573 info.si_signo = signr; \
574 info.si_errno = 0; \
575 info.si_code = sicode; \
576 info.si_addr = (void __user *)siaddr; \
577 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
578 == NOTIFY_STOP) \
579 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200580 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 do_trap(trapnr, signr, str, regs, error_code, &info); \
582}
583
584DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
585DO_ERROR( 4, SIGSEGV, "overflow", overflow)
586DO_ERROR( 5, SIGSEGV, "bounds", bounds)
Chuck Ebbert100c0e32006-01-11 22:46:00 +0100587DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
589DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
590DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
591DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
592DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
593DO_ERROR(18, SIGSEGV, "reserved", reserved)
Andi Kleen40e59a62006-05-15 18:19:47 +0200594
595/* Runs on IST stack */
596asmlinkage void do_stack_segment(struct pt_regs *regs, long error_code)
597{
598 if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
599 12, SIGBUS) == NOTIFY_STOP)
600 return;
601 preempt_conditional_sti(regs);
602 do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
603 preempt_conditional_cli(regs);
604}
Jan Beulicheca37c12006-01-11 22:42:17 +0100605
606asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
607{
608 static const char str[] = "double fault";
609 struct task_struct *tsk = current;
610
611 /* Return not checked because double check cannot be ignored */
612 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
613
614 tsk->thread.error_code = error_code;
615 tsk->thread.trap_no = 8;
616
617 /* This is always a kernel trap and never fixable (and thus must
618 never return). */
619 for (;;)
620 die(str, regs, error_code);
621}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700623asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
624 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100626 struct task_struct *tsk = current;
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 conditional_sti(regs);
629
Jan Beulich6e3f3612006-01-11 22:42:14 +0100630 tsk->thread.error_code = error_code;
631 tsk->thread.trap_no = 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Jan Beulich6e3f3612006-01-11 22:42:14 +0100633 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
635 printk(KERN_INFO
636 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
637 tsk->comm, tsk->pid,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100638 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 force_sig(SIGSEGV, tsk);
641 return;
642 }
643
644 /* kernel gp */
645 {
646 const struct exception_table_entry *fixup;
647 fixup = search_exception_tables(regs->rip);
648 if (fixup) {
649 regs->rip = fixup->fixup;
650 return;
651 }
652 if (notify_die(DIE_GPF, "general protection fault", regs,
653 error_code, 13, SIGSEGV) == NOTIFY_STOP)
654 return;
655 die("general protection fault", regs, error_code);
656 }
657}
658
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100659static __kprobes void
660mem_parity_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
662 printk("Uhhuh. NMI received. Dazed and confused, but trying to continue\n");
663 printk("You probably have a hardware problem with your RAM chips\n");
664
665 /* Clear and disable the memory parity error line. */
666 reason = (reason & 0xf) | 4;
667 outb(reason, 0x61);
668}
669
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100670static __kprobes void
671io_check_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
673 printk("NMI: IOCK error (debug interrupt?)\n");
674 show_registers(regs);
675
676 /* Re-enable the IOCK line, wait for a few seconds */
677 reason = (reason & 0xf) | 8;
678 outb(reason, 0x61);
679 mdelay(2000);
680 reason &= ~8;
681 outb(reason, 0x61);
682}
683
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100684static __kprobes void
685unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{ printk("Uhhuh. NMI received for unknown reason %02x.\n", reason);
687 printk("Dazed and confused, but trying to continue\n");
688 printk("Do you have a strange power saving mode enabled?\n");
689}
690
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700691/* Runs on IST stack. This code must keep interrupts off all the time.
692 Nested NMIs are prevented by the CPU. */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100693asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
695 unsigned char reason = 0;
Ashok Raj76e4f662005-06-25 14:55:00 -0700696 int cpu;
697
698 cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 /* Only the BSP gets external NMIs from the system. */
Ashok Raj76e4f662005-06-25 14:55:00 -0700701 if (!cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 reason = get_nmi_reason();
703
704 if (!(reason & 0xc0)) {
Jan Beulich6e3f3612006-01-11 22:42:14 +0100705 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 == NOTIFY_STOP)
707 return;
708#ifdef CONFIG_X86_LOCAL_APIC
709 /*
710 * Ok, so this is none of the documented NMI sources,
711 * so it must be the NMI watchdog.
712 */
713 if (nmi_watchdog > 0) {
714 nmi_watchdog_tick(regs,reason);
715 return;
716 }
717#endif
718 unknown_nmi_error(reason, regs);
719 return;
720 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100721 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return;
723
724 /* AK: following checks seem to be broken on modern chipsets. FIXME */
725
726 if (reason & 0x80)
727 mem_parity_error(reason, regs);
728 if (reason & 0x40)
729 io_check_error(reason, regs);
730}
731
Jan Beulichb556b352006-01-11 22:43:00 +0100732/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700733asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
736 return;
737 }
Andi Kleen40e59a62006-05-15 18:19:47 +0200738 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
Andi Kleen40e59a62006-05-15 18:19:47 +0200740 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700743/* Help handler running on IST stack to switch back to user stack
744 for scheduling or signal handling. The actual stack switch is done in
745 entry.S */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100746asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700748 struct pt_regs *regs = eregs;
749 /* Did already sync */
750 if (eregs == (struct pt_regs *)eregs->rsp)
751 ;
752 /* Exception from user space */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700753 else if (user_mode(eregs))
Al Virobb049232006-01-12 01:05:38 -0800754 regs = task_pt_regs(current);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700755 /* Exception from kernel and interrupts are enabled. Move to
756 kernel process stack. */
757 else if (eregs->eflags & X86_EFLAGS_IF)
758 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
759 if (eregs != regs)
760 *regs = *eregs;
761 return regs;
762}
763
764/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700765asmlinkage void __kprobes do_debug(struct pt_regs * regs,
766 unsigned long error_code)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700767{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 unsigned long condition;
769 struct task_struct *tsk = current;
770 siginfo_t info;
771
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700772 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
Andi Kleendaeeafe2005-04-16 15:25:13 -0700775 SIGTRAP) == NOTIFY_STOP)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700776 return;
Andi Kleendaeeafe2005-04-16 15:25:13 -0700777
John Blackwooda65d17c2006-02-12 14:34:58 -0800778 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 /* Mask out spurious debug traps due to lazy DR7 setting */
781 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
782 if (!tsk->thread.debugreg7) {
783 goto clear_dr7;
784 }
785 }
786
787 tsk->thread.debugreg6 = condition;
788
789 /* Mask out spurious TF errors due to lazy TF clearing */
Andi Kleendaeeafe2005-04-16 15:25:13 -0700790 if (condition & DR_STEP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 /*
792 * The TF error should be masked out only if the current
793 * process is not traced and if the TRAP flag has been set
794 * previously by a tracing process (condition detected by
795 * the PT_DTRACE flag); remember that the i386 TRAP flag
796 * can be modified by the process itself in user mode,
797 * allowing programs to debug themselves without the ptrace()
798 * interface.
799 */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700800 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 goto clear_TF_reenable;
Andi Kleenbe61bff2005-04-16 15:24:57 -0700802 /*
803 * Was the TF flag set by a debugger? If so, clear it now,
804 * so that register information is correct.
805 */
806 if (tsk->ptrace & PT_DTRACE) {
807 regs->eflags &= ~TF_MASK;
808 tsk->ptrace &= ~PT_DTRACE;
809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
811
812 /* Ok, finally something we can handle */
813 tsk->thread.trap_no = 1;
814 tsk->thread.error_code = error_code;
815 info.si_signo = SIGTRAP;
816 info.si_errno = 0;
817 info.si_code = TRAP_BRKPT;
John Blackwood01b8faa2006-01-11 22:44:15 +0100818 info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
819 force_sig_info(SIGTRAP, &info, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821clear_dr7:
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700822 set_debugreg(0UL, 7);
John Blackwooda65d17c2006-02-12 14:34:58 -0800823 preempt_conditional_cli(regs);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700824 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826clear_TF_reenable:
827 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 regs->eflags &= ~TF_MASK;
John Blackwooda65d17c2006-02-12 14:34:58 -0800829 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
Jan Beulich6e3f3612006-01-11 22:42:14 +0100832static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
834 const struct exception_table_entry *fixup;
835 fixup = search_exception_tables(regs->rip);
836 if (fixup) {
837 regs->rip = fixup->fixup;
838 return 1;
839 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100840 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
Andi Kleen3a848f62005-04-16 15:25:06 -0700841 /* Illegal floating point operation in the kernel */
Jan Beulich6e3f3612006-01-11 22:42:14 +0100842 current->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 die(str, regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return 0;
845}
846
847/*
848 * Note that we play around with the 'TS' bit in an attempt to get
849 * the correct behaviour even in the presence of the asynchronous
850 * IRQ13 behaviour
851 */
852asmlinkage void do_coprocessor_error(struct pt_regs *regs)
853{
854 void __user *rip = (void __user *)(regs->rip);
855 struct task_struct * task;
856 siginfo_t info;
857 unsigned short cwd, swd;
858
859 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700860 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100861 kernel_math_error(regs, "kernel x87 math error", 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return;
863
864 /*
865 * Save the info for the exception handler and clear the error.
866 */
867 task = current;
868 save_init_fpu(task);
869 task->thread.trap_no = 16;
870 task->thread.error_code = 0;
871 info.si_signo = SIGFPE;
872 info.si_errno = 0;
873 info.si_code = __SI_FAULT;
874 info.si_addr = rip;
875 /*
876 * (~cwd & swd) will mask out exceptions that are not set to unmasked
877 * status. 0x3f is the exception bits in these regs, 0x200 is the
878 * C1 reg you need in case of a stack fault, 0x040 is the stack
879 * fault bit. We should only be taking one exception at a time,
880 * so if this combination doesn't produce any single exception,
881 * then we have a bad program that isn't synchronizing its FPU usage
882 * and it will suffer the consequences since we won't be able to
883 * fully reproduce the context of the exception
884 */
885 cwd = get_fpu_cwd(task);
886 swd = get_fpu_swd(task);
Chuck Ebbertff347b22005-09-12 18:49:25 +0200887 switch (swd & ~cwd & 0x3f) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 case 0x000:
889 default:
890 break;
891 case 0x001: /* Invalid Op */
Chuck Ebbertff347b22005-09-12 18:49:25 +0200892 /*
893 * swd & 0x240 == 0x040: Stack Underflow
894 * swd & 0x240 == 0x240: Stack Overflow
895 * User must clear the SF bit (0x40) if set
896 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 info.si_code = FPE_FLTINV;
898 break;
899 case 0x002: /* Denormalize */
900 case 0x010: /* Underflow */
901 info.si_code = FPE_FLTUND;
902 break;
903 case 0x004: /* Zero Divide */
904 info.si_code = FPE_FLTDIV;
905 break;
906 case 0x008: /* Overflow */
907 info.si_code = FPE_FLTOVF;
908 break;
909 case 0x020: /* Precision */
910 info.si_code = FPE_FLTRES;
911 break;
912 }
913 force_sig_info(SIGFPE, &info, task);
914}
915
916asmlinkage void bad_intr(void)
917{
918 printk("bad interrupt");
919}
920
921asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
922{
923 void __user *rip = (void __user *)(regs->rip);
924 struct task_struct * task;
925 siginfo_t info;
926 unsigned short mxcsr;
927
928 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700929 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100930 kernel_math_error(regs, "kernel simd math error", 19))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return;
932
933 /*
934 * Save the info for the exception handler and clear the error.
935 */
936 task = current;
937 save_init_fpu(task);
938 task->thread.trap_no = 19;
939 task->thread.error_code = 0;
940 info.si_signo = SIGFPE;
941 info.si_errno = 0;
942 info.si_code = __SI_FAULT;
943 info.si_addr = rip;
944 /*
945 * The SIMD FPU exceptions are handled a little differently, as there
946 * is only a single status/control register. Thus, to determine which
947 * unmasked exception was caught we must mask the exception mask bits
948 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
949 */
950 mxcsr = get_fpu_mxcsr(task);
951 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
952 case 0x000:
953 default:
954 break;
955 case 0x001: /* Invalid Op */
956 info.si_code = FPE_FLTINV;
957 break;
958 case 0x002: /* Denormalize */
959 case 0x010: /* Underflow */
960 info.si_code = FPE_FLTUND;
961 break;
962 case 0x004: /* Zero Divide */
963 info.si_code = FPE_FLTDIV;
964 break;
965 case 0x008: /* Overflow */
966 info.si_code = FPE_FLTOVF;
967 break;
968 case 0x020: /* Precision */
969 info.si_code = FPE_FLTRES;
970 break;
971 }
972 force_sig_info(SIGFPE, &info, task);
973}
974
975asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
976{
977}
978
979asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
980{
981}
982
Jacob Shin89b831e2005-11-05 17:25:53 +0100983asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
984{
985}
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987/*
988 * 'math_state_restore()' saves the current math information in the
989 * old math state array, and gets the new ones from the current task
990 *
991 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
992 * Don't touch unless you *really* know how it works.
993 */
994asmlinkage void math_state_restore(void)
995{
996 struct task_struct *me = current;
997 clts(); /* Allow maths ops (or we recurse) */
998
999 if (!used_math())
1000 init_fpu(me);
1001 restore_fpu_checking(&me->thread.i387.fxsave);
Al Viroe4f17c42006-01-12 01:05:38 -08001002 task_thread_info(me)->status |= TS_USEDFPU;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005void __init trap_init(void)
1006{
1007 set_intr_gate(0,&divide_error);
1008 set_intr_gate_ist(1,&debug,DEBUG_STACK);
1009 set_intr_gate_ist(2,&nmi,NMI_STACK);
Jan Beulichb556b352006-01-11 22:43:00 +01001010 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
Jan Beulich0a521582006-01-11 22:42:08 +01001011 set_system_gate(4,&overflow); /* int4 can be called from all */
1012 set_intr_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 set_intr_gate(6,&invalid_op);
1014 set_intr_gate(7,&device_not_available);
1015 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
1016 set_intr_gate(9,&coprocessor_segment_overrun);
1017 set_intr_gate(10,&invalid_TSS);
1018 set_intr_gate(11,&segment_not_present);
1019 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
1020 set_intr_gate(13,&general_protection);
1021 set_intr_gate(14,&page_fault);
1022 set_intr_gate(15,&spurious_interrupt_bug);
1023 set_intr_gate(16,&coprocessor_error);
1024 set_intr_gate(17,&alignment_check);
1025#ifdef CONFIG_X86_MCE
1026 set_intr_gate_ist(18,&machine_check, MCE_STACK);
1027#endif
1028 set_intr_gate(19,&simd_coprocessor_error);
1029
1030#ifdef CONFIG_IA32_EMULATION
1031 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1032#endif
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 /*
1035 * Should be a barrier for any external CPU state.
1036 */
1037 cpu_init();
1038}
1039
1040
1041/* Actual parsing is done early in setup.c. */
1042static int __init oops_dummy(char *s)
1043{
1044 panic_on_oops = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001045 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047__setup("oops=", oops_dummy);
1048
1049static int __init kstack_setup(char *s)
1050{
1051 kstack_depth_to_print = simple_strtoul(s,NULL,0);
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001052 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054__setup("kstack=", kstack_setup);
1055
Jan Beulichc33bd9a2006-06-26 13:57:47 +02001056static int __init call_trace_setup(char *s)
1057{
1058 if (strcmp(s, "old") == 0)
1059 call_trace = -1;
1060 else if (strcmp(s, "both") == 0)
1061 call_trace = 0;
1062 else if (strcmp(s, "new") == 0)
1063 call_trace = 1;
1064 return 1;
1065}
1066__setup("call_trace=", call_trace_setup);