blob: cceef5bd730269cef8189f3ac33d758d1fbb2e2c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/x86-64/traps.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
6 *
7 * Pentium III FXSR, SSE support
8 * Gareth Hughes <gareth@valinux.com>, May 2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
11/*
12 * 'Traps.c' handles hardware traps and faults after we have saved some
13 * state in 'entry.S'.
14 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/sched.h>
16#include <linux/kernel.h>
17#include <linux/string.h>
18#include <linux/errno.h>
19#include <linux/ptrace.h>
20#include <linux/timer.h>
21#include <linux/mm.h>
22#include <linux/init.h>
23#include <linux/delay.h>
24#include <linux/spinlock.h>
25#include <linux/interrupt.h>
Randy Dunlap4b0ff1a2006-10-05 19:07:26 +020026#include <linux/kallsyms.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/module.h>
28#include <linux/moduleparam.h>
akpm@osdl.org35faa712005-04-16 15:24:54 -070029#include <linux/nmi.h>
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -070030#include <linux/kprobes.h>
Vivek Goyal8bcc5282006-04-18 12:35:13 +020031#include <linux/kexec.h>
Jan Beulichb538ed22006-06-26 13:57:32 +020032#include <linux/unwind.h>
Andi Kleenab2bf0c2006-12-07 02:14:06 +010033#include <linux/uaccess.h>
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -080034#include <linux/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/io.h>
38#include <asm/atomic.h>
39#include <asm/debugreg.h>
40#include <asm/desc.h>
41#include <asm/i387.h>
42#include <asm/kdebug.h>
43#include <asm/processor.h>
Jan Beulichb538ed22006-06-26 13:57:32 +020044#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/smp.h>
46#include <asm/pgalloc.h>
47#include <asm/pda.h>
48#include <asm/proto.h>
49#include <asm/nmi.h>
Andi Kleenc0b766f2006-09-26 10:52:34 +020050#include <asm/stacktrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052asmlinkage void divide_error(void);
53asmlinkage void debug(void);
54asmlinkage void nmi(void);
55asmlinkage void int3(void);
56asmlinkage void overflow(void);
57asmlinkage void bounds(void);
58asmlinkage void invalid_op(void);
59asmlinkage void device_not_available(void);
60asmlinkage void double_fault(void);
61asmlinkage void coprocessor_segment_overrun(void);
62asmlinkage void invalid_TSS(void);
63asmlinkage void segment_not_present(void);
64asmlinkage void stack_segment(void);
65asmlinkage void general_protection(void);
66asmlinkage void page_fault(void);
67asmlinkage void coprocessor_error(void);
68asmlinkage void simd_coprocessor_error(void);
69asmlinkage void reserved(void);
70asmlinkage void alignment_check(void);
71asmlinkage void machine_check(void);
72asmlinkage void spurious_interrupt_bug(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Alan Sterne041c682006-03-27 01:16:30 -080074ATOMIC_NOTIFIER_HEAD(die_chain);
Andi Kleen2ee60e172006-06-26 13:59:44 +020075EXPORT_SYMBOL(die_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77int register_die_notifier(struct notifier_block *nb)
78{
Jan Beulich8c914cb2006-03-25 16:29:40 +010079 vmalloc_sync_all();
Alan Sterne041c682006-03-27 01:16:30 -080080 return atomic_notifier_chain_register(&die_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
Arjan van de Ven1454aed2006-07-10 04:44:05 -070082EXPORT_SYMBOL(register_die_notifier); /* used modular by kdb */
Alan Sterne041c682006-03-27 01:16:30 -080083
84int unregister_die_notifier(struct notifier_block *nb)
85{
86 return atomic_notifier_chain_unregister(&die_chain, nb);
87}
Arjan van de Ven1454aed2006-07-10 04:44:05 -070088EXPORT_SYMBOL(unregister_die_notifier); /* used modular by kdb */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90static inline void conditional_sti(struct pt_regs *regs)
91{
92 if (regs->eflags & X86_EFLAGS_IF)
93 local_irq_enable();
94}
95
John Blackwooda65d17c2006-02-12 14:34:58 -080096static inline void preempt_conditional_sti(struct pt_regs *regs)
97{
98 preempt_disable();
99 if (regs->eflags & X86_EFLAGS_IF)
100 local_irq_enable();
101}
102
103static inline void preempt_conditional_cli(struct pt_regs *regs)
104{
105 if (regs->eflags & X86_EFLAGS_IF)
106 local_irq_disable();
Andi Kleen40e59a62006-05-15 18:19:47 +0200107 /* Make sure to not schedule here because we could be running
108 on an exception stack. */
John Blackwooda65d17c2006-02-12 14:34:58 -0800109 preempt_enable_no_resched();
110}
111
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100112int kstack_depth_to_print = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114#ifdef CONFIG_KALLSYMS
Ingo Molnar3ac94932006-07-03 00:24:36 -0700115void printk_address(unsigned long address)
116{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 unsigned long offset = 0, symsize;
118 const char *symname;
119 char *modname;
Ingo Molnar3ac94932006-07-03 00:24:36 -0700120 char *delim = ":";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 char namebuf[128];
122
Ingo Molnar3ac94932006-07-03 00:24:36 -0700123 symname = kallsyms_lookup(address, &symsize, &offset,
124 &modname, namebuf);
125 if (!symname) {
126 printk(" [<%016lx>]\n", address);
127 return;
128 }
129 if (!modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 modname = delim = "";
Ingo Molnar3ac94932006-07-03 00:24:36 -0700131 printk(" [<%016lx>] %s%s%s%s+0x%lx/0x%lx\n",
132 address, delim, modname, delim, symname, offset, symsize);
133}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134#else
Ingo Molnar3ac94932006-07-03 00:24:36 -0700135void printk_address(unsigned long address)
136{
137 printk(" [<%016lx>]\n", address);
138}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#endif
140
Andi Kleen0a658002005-04-16 15:25:17 -0700141static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
Andi Kleenc0b766f2006-09-26 10:52:34 +0200142 unsigned *usedp, char **idp)
Andi Kleen0a658002005-04-16 15:25:17 -0700143{
Jan Beulichb556b352006-01-11 22:43:00 +0100144 static char ids[][8] = {
Andi Kleen0a658002005-04-16 15:25:17 -0700145 [DEBUG_STACK - 1] = "#DB",
146 [NMI_STACK - 1] = "NMI",
147 [DOUBLEFAULT_STACK - 1] = "#DF",
148 [STACKFAULT_STACK - 1] = "#SS",
149 [MCE_STACK - 1] = "#MC",
Jan Beulichb556b352006-01-11 22:43:00 +0100150#if DEBUG_STKSZ > EXCEPTION_STKSZ
151 [N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
152#endif
Andi Kleen0a658002005-04-16 15:25:17 -0700153 };
154 unsigned k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700156 /*
157 * Iterate over all exception stacks, and figure out whether
158 * 'stack' is in one of them:
159 */
Andi Kleen0a658002005-04-16 15:25:17 -0700160 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
Keith Owensf5741642006-09-26 10:52:38 +0200161 unsigned long end = per_cpu(orig_ist, cpu).ist[k];
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700162 /*
163 * Is 'stack' above this exception frame's end?
164 * If yes then skip to the next frame.
165 */
Andi Kleen0a658002005-04-16 15:25:17 -0700166 if (stack >= end)
167 continue;
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700168 /*
169 * Is 'stack' above this exception frame's start address?
170 * If yes then we found the right frame.
171 */
Andi Kleen0a658002005-04-16 15:25:17 -0700172 if (stack >= end - EXCEPTION_STKSZ) {
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700173 /*
174 * Make sure we only iterate through an exception
175 * stack once. If it comes up for the second time
176 * then there's something wrong going on - just
177 * break out and return NULL:
178 */
Andi Kleen0a658002005-04-16 15:25:17 -0700179 if (*usedp & (1U << k))
180 break;
181 *usedp |= 1U << k;
182 *idp = ids[k];
183 return (unsigned long *)end;
184 }
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700185 /*
186 * If this is a debug stack, and if it has a larger size than
187 * the usual exception stacks, then 'stack' might still
188 * be within the lower portion of the debug stack:
189 */
Jan Beulichb556b352006-01-11 22:43:00 +0100190#if DEBUG_STKSZ > EXCEPTION_STKSZ
191 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
192 unsigned j = N_EXCEPTION_STACKS - 1;
193
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700194 /*
195 * Black magic. A large debug stack is composed of
196 * multiple exception stack entries, which we
197 * iterate through now. Dont look:
198 */
Jan Beulichb556b352006-01-11 22:43:00 +0100199 do {
200 ++j;
201 end -= EXCEPTION_STKSZ;
202 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
203 } while (stack < end - EXCEPTION_STKSZ);
204 if (*usedp & (1U << j))
205 break;
206 *usedp |= 1U << j;
207 *idp = ids[j];
208 return (unsigned long *)end;
209 }
210#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212 return NULL;
Andi Kleen0a658002005-04-16 15:25:17 -0700213}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Andi Kleenb615ebd2006-12-07 02:14:00 +0100215#define MSG(txt) ops->warning(data, txt)
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217/*
218 * x86-64 can have upto three kernel stacks:
219 * process stack
220 * interrupt stack
Andi Kleen0a658002005-04-16 15:25:17 -0700221 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 */
223
Andi Kleenc547c772006-11-28 20:12:59 +0100224static inline int valid_stack_ptr(struct thread_info *tinfo, void *p)
225{
226 void *t = (void *)tinfo;
227 return p > t && p < t + THREAD_SIZE - 3;
228}
229
Andi Kleenb615ebd2006-12-07 02:14:00 +0100230void dump_trace(struct task_struct *tsk, struct pt_regs *regs,
231 unsigned long *stack,
Andi Kleenc0b766f2006-09-26 10:52:34 +0200232 struct stacktrace_ops *ops, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Andrew Mortonda689332006-12-07 02:14:02 +0100234 const unsigned cpu = get_cpu();
Andi Kleenb615ebd2006-12-07 02:14:00 +0100235 unsigned long *irqstack_end = (unsigned long*)cpu_pda(cpu)->irqstackptr;
Andi Kleen0a658002005-04-16 15:25:17 -0700236 unsigned used = 0;
Andi Kleenc547c772006-11-28 20:12:59 +0100237 struct thread_info *tinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Jan Beulichb538ed22006-06-26 13:57:32 +0200239 if (!tsk)
240 tsk = current;
241
Andi Kleenc0b766f2006-09-26 10:52:34 +0200242 if (!stack) {
243 unsigned long dummy;
244 stack = &dummy;
245 if (tsk && tsk != current)
246 stack = (unsigned long *)tsk->thread.rsp;
Jan Beulichb538ed22006-06-26 13:57:32 +0200247 }
248
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700249 /*
250 * Print function call entries within a stack. 'cond' is the
251 * "end of stackframe" condition, that the 'stack++'
252 * iteration will eventually trigger.
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 Kleen446f7132006-12-07 02:14:12 +0100257 /* Use unlocked access here because except for NMIs \
258 we should be already protected against module unloads */ \
259 if (__kernel_text_address(addr)) { \
Andi Kleen0a658002005-04-16 15:25:17 -0700260 /* \
261 * If the address is either in the text segment of the \
262 * kernel, or in the region which contains vmalloc'ed \
263 * memory, it *may* be the address of a calling \
264 * routine; if so, print it so that someone tracing \
265 * down the cause of the crash will be able to figure \
266 * out the call path that was taken. \
267 */ \
Andi Kleenc0b766f2006-09-26 10:52:34 +0200268 ops->address(data, addr); \
Andi Kleen0a658002005-04-16 15:25:17 -0700269 } \
270 } while (0)
271
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700272 /*
273 * Print function call entries in all stacks, starting at the
274 * current stack address. If the stacks consist of nested
275 * exceptions
276 */
Andi Kleenc0b766f2006-09-26 10:52:34 +0200277 for (;;) {
278 char *id;
Andi Kleen0a658002005-04-16 15:25:17 -0700279 unsigned long *estack_end;
280 estack_end = in_exception_stack(cpu, (unsigned long)stack,
281 &used, &id);
282
283 if (estack_end) {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200284 if (ops->stack(data, id) < 0)
285 break;
Andi Kleen0a658002005-04-16 15:25:17 -0700286 HANDLE_STACK (stack < estack_end);
Andi Kleenc0b766f2006-09-26 10:52:34 +0200287 ops->stack(data, "<EOE>");
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700288 /*
289 * We link to the next stack via the
290 * second-to-last pointer (index -2 to end) in the
291 * exception stack:
292 */
Andi Kleen0a658002005-04-16 15:25:17 -0700293 stack = (unsigned long *) estack_end[-2];
294 continue;
295 }
296 if (irqstack_end) {
297 unsigned long *irqstack;
298 irqstack = irqstack_end -
299 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
300
301 if (stack >= irqstack && stack < irqstack_end) {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200302 if (ops->stack(data, "IRQ") < 0)
303 break;
Andi Kleen0a658002005-04-16 15:25:17 -0700304 HANDLE_STACK (stack < irqstack_end);
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700305 /*
306 * We link to the next stack (which would be
307 * the process stack normally) the last
308 * pointer (index -1 to end) in the IRQ stack:
309 */
Andi Kleen0a658002005-04-16 15:25:17 -0700310 stack = (unsigned long *) (irqstack_end[-1]);
311 irqstack_end = NULL;
Andi Kleenc0b766f2006-09-26 10:52:34 +0200312 ops->stack(data, "EOI");
Andi Kleen0a658002005-04-16 15:25:17 -0700313 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
315 }
Andi Kleen0a658002005-04-16 15:25:17 -0700316 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
Andi Kleen0a658002005-04-16 15:25:17 -0700318
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700319 /*
Andi Kleenc0b766f2006-09-26 10:52:34 +0200320 * This handles the process stack:
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700321 */
OGAWA Hirofumi7523c4d2007-01-04 01:21:28 +0900322 tinfo = task_thread_info(tsk);
Andi Kleenc547c772006-11-28 20:12:59 +0100323 HANDLE_STACK (valid_stack_ptr(tinfo, stack));
Andi Kleen0a658002005-04-16 15:25:17 -0700324#undef HANDLE_STACK
Andrew Mortonda689332006-12-07 02:14:02 +0100325 put_cpu();
Andi Kleenc0b766f2006-09-26 10:52:34 +0200326}
327EXPORT_SYMBOL(dump_trace);
Ingo Molnar3ac94932006-07-03 00:24:36 -0700328
Andi Kleenc0b766f2006-09-26 10:52:34 +0200329static void
330print_trace_warning_symbol(void *data, char *msg, unsigned long symbol)
331{
332 print_symbol(msg, symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 printk("\n");
334}
335
Andi Kleenc0b766f2006-09-26 10:52:34 +0200336static void print_trace_warning(void *data, char *msg)
337{
338 printk("%s\n", msg);
339}
340
341static int print_trace_stack(void *data, char *name)
342{
343 printk(" <%s> ", name);
344 return 0;
345}
346
347static void print_trace_address(void *data, unsigned long addr)
348{
349 printk_address(addr);
350}
351
352static struct stacktrace_ops print_trace_ops = {
353 .warning = print_trace_warning,
354 .warning_symbol = print_trace_warning_symbol,
355 .stack = print_trace_stack,
356 .address = print_trace_address,
357};
358
359void
360show_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long *stack)
361{
362 printk("\nCall Trace:\n");
363 dump_trace(tsk, regs, stack, &print_trace_ops, NULL);
364 printk("\n");
365}
366
367static void
368_show_stack(struct task_struct *tsk, struct pt_regs *regs, unsigned long *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370 unsigned long *stack;
371 int i;
Andi Kleen151f8cc2006-09-26 10:52:37 +0200372 const int cpu = smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100373 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
374 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 // debugging aid: "show_stack(NULL, NULL);" prints the
377 // back trace for this cpu.
378
379 if (rsp == NULL) {
380 if (tsk)
381 rsp = (unsigned long *)tsk->thread.rsp;
382 else
383 rsp = (unsigned long *)&rsp;
384 }
385
386 stack = rsp;
387 for(i=0; i < kstack_depth_to_print; i++) {
388 if (stack >= irqstack && stack <= irqstack_end) {
389 if (stack == irqstack_end) {
390 stack = (unsigned long *) (irqstack_end[-1]);
391 printk(" <EOI> ");
392 }
393 } else {
394 if (((long) stack & (THREAD_SIZE-1)) == 0)
395 break;
396 }
397 if (i && ((i % 4) == 0))
Ingo Molnar3ac94932006-07-03 00:24:36 -0700398 printk("\n");
399 printk(" %016lx", *stack++);
akpm@osdl.org35faa712005-04-16 15:24:54 -0700400 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
Jan Beulichb538ed22006-06-26 13:57:32 +0200402 show_trace(tsk, regs, rsp);
403}
404
405void show_stack(struct task_struct *tsk, unsigned long * rsp)
406{
407 _show_stack(tsk, NULL, rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
410/*
411 * The architecture-independent dump_stack generator
412 */
413void dump_stack(void)
414{
415 unsigned long dummy;
Jan Beulichb538ed22006-06-26 13:57:32 +0200416 show_trace(NULL, NULL, &dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
419EXPORT_SYMBOL(dump_stack);
420
421void show_registers(struct pt_regs *regs)
422{
423 int i;
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700424 int in_kernel = !user_mode(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 unsigned long rsp;
Andi Kleen151f8cc2006-09-26 10:52:37 +0200426 const int cpu = smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100427 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 rsp = regs->rsp;
430
431 printk("CPU %d ", cpu);
432 __show_regs(regs);
433 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
Al Viroe4f17c42006-01-12 01:05:38 -0800434 cur->comm, cur->pid, task_thread_info(cur), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 /*
437 * When in-kernel, we also print out the stack and code at the
438 * time of the fault..
439 */
440 if (in_kernel) {
441
442 printk("Stack: ");
Jan Beulichb538ed22006-06-26 13:57:32 +0200443 _show_stack(NULL, regs, (unsigned long*)rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 printk("\nCode: ");
Roberto Nibali2b692a82006-03-25 16:29:55 +0100446 if (regs->rip < PAGE_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 goto bad;
448
Roberto Nibali2b692a82006-03-25 16:29:55 +0100449 for (i=0; i<20; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 unsigned char c;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100451 if (__get_user(c, &((unsigned char*)regs->rip)[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452bad:
453 printk(" Bad RIP value.");
454 break;
455 }
456 printk("%02x ", c);
457 }
458 }
459 printk("\n");
460}
461
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -0800462int is_valid_bugaddr(unsigned long rip)
463{
464 unsigned short ud2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -0800466 if (__copy_from_user(&ud2, (const void __user *) rip, sizeof(ud2)))
467 return 0;
468
469 return ud2 == 0x0b0f;
470}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700472#ifdef CONFIG_BUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473void out_of_line_bug(void)
474{
475 BUG();
476}
Andi Kleen2ee60e172006-06-26 13:59:44 +0200477EXPORT_SYMBOL(out_of_line_bug);
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700478#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480static DEFINE_SPINLOCK(die_lock);
481static int die_owner = -1;
Corey Minyardcdc60a42006-05-08 15:17:22 +0200482static unsigned int die_nest_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100484unsigned __kprobes long oops_begin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Andi Kleen151f8cc2006-09-26 10:52:37 +0200486 int cpu = smp_processor_id();
Jan Beulich12091402005-09-12 18:49:24 +0200487 unsigned long flags;
488
Andrew Mortonabf0f102006-09-26 10:52:36 +0200489 oops_enter();
490
Jan Beulich12091402005-09-12 18:49:24 +0200491 /* racy, but better than risking deadlock. */
492 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (!spin_trylock(&die_lock)) {
494 if (cpu == die_owner)
495 /* nested oops. should stop eventually */;
496 else
Jan Beulich12091402005-09-12 18:49:24 +0200497 spin_lock(&die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
Corey Minyardcdc60a42006-05-08 15:17:22 +0200499 die_nest_count++;
Jan Beulich12091402005-09-12 18:49:24 +0200500 die_owner = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 console_verbose();
Jan Beulich12091402005-09-12 18:49:24 +0200502 bust_spinlocks(1);
503 return flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100506void __kprobes oops_end(unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 die_owner = -1;
Jan Beulich12091402005-09-12 18:49:24 +0200509 bust_spinlocks(0);
Corey Minyardcdc60a42006-05-08 15:17:22 +0200510 die_nest_count--;
511 if (die_nest_count)
512 /* We still own the lock */
513 local_irq_restore(flags);
514 else
515 /* Nest count reaches zero, release the lock. */
516 spin_unlock_irqrestore(&die_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (panic_on_oops)
Horms012c4372006-08-13 23:24:22 -0700518 panic("Fatal exception");
Andrew Mortonabf0f102006-09-26 10:52:36 +0200519 oops_exit();
Jan Beulich12091402005-09-12 18:49:24 +0200520}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100522void __kprobes __die(const char * str, struct pt_regs * regs, long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 static int die_counter;
525 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
526#ifdef CONFIG_PREEMPT
527 printk("PREEMPT ");
528#endif
529#ifdef CONFIG_SMP
530 printk("SMP ");
531#endif
532#ifdef CONFIG_DEBUG_PAGEALLOC
533 printk("DEBUG_PAGEALLOC");
534#endif
535 printk("\n");
Jan Beulich6e3f3612006-01-11 22:42:14 +0100536 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 show_registers(regs);
538 /* Executive summary in case the oops scrolled away */
539 printk(KERN_ALERT "RIP ");
540 printk_address(regs->rip);
541 printk(" RSP <%016lx>\n", regs->rsp);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200542 if (kexec_should_crash(current))
543 crash_kexec(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546void die(const char * str, struct pt_regs * regs, long err)
547{
Jan Beulich12091402005-09-12 18:49:24 +0200548 unsigned long flags = oops_begin();
549
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -0800550 if (!user_mode(regs))
551 report_bug(regs->rip);
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 __die(str, regs, err);
Jan Beulich12091402005-09-12 18:49:24 +0200554 oops_end(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 do_exit(SIGSEGV);
556}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Andi Kleenfac58552006-09-26 10:52:27 +0200558void __kprobes die_nmi(char *str, struct pt_regs *regs, int do_panic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Jan Beulich12091402005-09-12 18:49:24 +0200560 unsigned long flags = oops_begin();
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /*
563 * We are in trouble anyway, lets at least try
564 * to get a message out.
565 */
Andi Kleen151f8cc2006-09-26 10:52:37 +0200566 printk(str, smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 show_registers(regs);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200568 if (kexec_should_crash(current))
569 crash_kexec(regs);
Andi Kleenfac58552006-09-26 10:52:27 +0200570 if (do_panic || panic_on_oops)
571 panic("Non maskable interrupt");
Jan Beulich12091402005-09-12 18:49:24 +0200572 oops_end(flags);
Corey Minyard8b1ffe952006-05-08 15:17:25 +0200573 nmi_exit();
574 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 do_exit(SIGSEGV);
576}
577
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700578static void __kprobes do_trap(int trapnr, int signr, char *str,
579 struct pt_regs * regs, long error_code,
580 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100582 struct task_struct *tsk = current;
583
Jan Beulich6e3f3612006-01-11 22:42:14 +0100584 if (user_mode(regs)) {
Andi Kleend1895182007-05-02 19:27:05 +0200585 /*
586 * We want error_code and trap_no set for userspace
587 * faults and kernelspace faults which result in
588 * die(), but not kernelspace faults which are fixed
589 * up. die() gives the process no chance to handle
590 * the signal and notice the kernel fault information,
591 * so that won't result in polluting the information
592 * about previously queued, but not yet delivered,
593 * faults. See also do_general_protection below.
594 */
595 tsk->thread.error_code = error_code;
596 tsk->thread.trap_no = trapnr;
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (exception_trace && unhandled_signal(tsk, signr))
599 printk(KERN_INFO
600 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
601 tsk->comm, tsk->pid, str,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100602 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (info)
605 force_sig_info(signr, info, tsk);
606 else
607 force_sig(signr, tsk);
608 return;
609 }
610
611
612 /* kernel trap */
613 {
614 const struct exception_table_entry *fixup;
615 fixup = search_exception_tables(regs->rip);
Roberto Nibali2b692a82006-03-25 16:29:55 +0100616 if (fixup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 regs->rip = fixup->fixup;
Andi Kleend1895182007-05-02 19:27:05 +0200618 else {
619 tsk->thread.error_code = error_code;
620 tsk->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 die(str, regs, error_code);
Andi Kleend1895182007-05-02 19:27:05 +0200622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return;
624 }
625}
626
627#define DO_ERROR(trapnr, signr, str, name) \
628asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
629{ \
630 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
631 == NOTIFY_STOP) \
632 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200633 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 do_trap(trapnr, signr, str, regs, error_code, NULL); \
635}
636
637#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
638asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
639{ \
640 siginfo_t info; \
641 info.si_signo = signr; \
642 info.si_errno = 0; \
643 info.si_code = sicode; \
644 info.si_addr = (void __user *)siaddr; \
645 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
646 == NOTIFY_STOP) \
647 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200648 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 do_trap(trapnr, signr, str, regs, error_code, &info); \
650}
651
652DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
653DO_ERROR( 4, SIGSEGV, "overflow", overflow)
654DO_ERROR( 5, SIGSEGV, "bounds", bounds)
Chuck Ebbert100c0e32006-01-11 22:46:00 +0100655DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
657DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
658DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
659DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
660DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
661DO_ERROR(18, SIGSEGV, "reserved", reserved)
Andi Kleen40e59a62006-05-15 18:19:47 +0200662
663/* Runs on IST stack */
664asmlinkage void do_stack_segment(struct pt_regs *regs, long error_code)
665{
666 if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
667 12, SIGBUS) == NOTIFY_STOP)
668 return;
669 preempt_conditional_sti(regs);
670 do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
671 preempt_conditional_cli(regs);
672}
Jan Beulicheca37c12006-01-11 22:42:17 +0100673
674asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
675{
676 static const char str[] = "double fault";
677 struct task_struct *tsk = current;
678
679 /* Return not checked because double check cannot be ignored */
680 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
681
682 tsk->thread.error_code = error_code;
683 tsk->thread.trap_no = 8;
684
685 /* This is always a kernel trap and never fixable (and thus must
686 never return). */
687 for (;;)
688 die(str, regs, error_code);
689}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700691asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
692 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100694 struct task_struct *tsk = current;
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 conditional_sti(regs);
697
Jan Beulich6e3f3612006-01-11 22:42:14 +0100698 if (user_mode(regs)) {
Andi Kleend1895182007-05-02 19:27:05 +0200699 tsk->thread.error_code = error_code;
700 tsk->thread.trap_no = 13;
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
703 printk(KERN_INFO
704 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
705 tsk->comm, tsk->pid,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100706 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 force_sig(SIGSEGV, tsk);
709 return;
710 }
711
712 /* kernel gp */
713 {
714 const struct exception_table_entry *fixup;
715 fixup = search_exception_tables(regs->rip);
716 if (fixup) {
717 regs->rip = fixup->fixup;
718 return;
719 }
Andi Kleend1895182007-05-02 19:27:05 +0200720
721 tsk->thread.error_code = error_code;
722 tsk->thread.trap_no = 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (notify_die(DIE_GPF, "general protection fault", regs,
724 error_code, 13, SIGSEGV) == NOTIFY_STOP)
725 return;
726 die("general protection fault", regs, error_code);
727 }
728}
729
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100730static __kprobes void
731mem_parity_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
Don Zickusc41c5cd2006-09-26 10:52:27 +0200733 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
734 reason);
Andi Kleen9c5f8be2006-12-07 02:14:03 +0100735 printk(KERN_EMERG "You have some hardware problem, likely on the PCI bus.\n");
Don Zickusc41c5cd2006-09-26 10:52:27 +0200736
Don Zickus8da5add2006-09-26 10:52:27 +0200737 if (panic_on_unrecovered_nmi)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200738 panic("NMI: Not continuing");
739
740 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 /* Clear and disable the memory parity error line. */
743 reason = (reason & 0xf) | 4;
744 outb(reason, 0x61);
745}
746
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100747static __kprobes void
748io_check_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
750 printk("NMI: IOCK error (debug interrupt?)\n");
751 show_registers(regs);
752
753 /* Re-enable the IOCK line, wait for a few seconds */
754 reason = (reason & 0xf) | 8;
755 outb(reason, 0x61);
756 mdelay(2000);
757 reason &= ~8;
758 outb(reason, 0x61);
759}
760
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100761static __kprobes void
762unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200763{
764 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
765 reason);
766 printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n");
Don Zickus8da5add2006-09-26 10:52:27 +0200767
768 if (panic_on_unrecovered_nmi)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200769 panic("NMI: Not continuing");
Don Zickus8da5add2006-09-26 10:52:27 +0200770
Don Zickusc41c5cd2006-09-26 10:52:27 +0200771 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700774/* Runs on IST stack. This code must keep interrupts off all the time.
775 Nested NMIs are prevented by the CPU. */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100776asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
778 unsigned char reason = 0;
Ashok Raj76e4f662005-06-25 14:55:00 -0700779 int cpu;
780
781 cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 /* Only the BSP gets external NMIs from the system. */
Ashok Raj76e4f662005-06-25 14:55:00 -0700784 if (!cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 reason = get_nmi_reason();
786
787 if (!(reason & 0xc0)) {
Jan Beulich6e3f3612006-01-11 22:42:14 +0100788 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 == NOTIFY_STOP)
790 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 /*
792 * Ok, so this is none of the documented NMI sources,
793 * so it must be the NMI watchdog.
794 */
Don Zickus3adbbcce2006-09-26 10:52:26 +0200795 if (nmi_watchdog_tick(regs,reason))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 return;
Don Zickus3adbbcce2006-09-26 10:52:26 +0200797 if (!do_nmi_callback(regs,cpu))
Don Zickus3adbbcce2006-09-26 10:52:26 +0200798 unknown_nmi_error(reason, regs);
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return;
801 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100802 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return;
804
805 /* AK: following checks seem to be broken on modern chipsets. FIXME */
806
807 if (reason & 0x80)
808 mem_parity_error(reason, regs);
809 if (reason & 0x40)
810 io_check_error(reason, regs);
811}
812
Jan Beulichb556b352006-01-11 22:43:00 +0100813/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700814asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
817 return;
818 }
Andi Kleen40e59a62006-05-15 18:19:47 +0200819 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
Andi Kleen40e59a62006-05-15 18:19:47 +0200821 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700824/* Help handler running on IST stack to switch back to user stack
825 for scheduling or signal handling. The actual stack switch is done in
826 entry.S */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100827asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700829 struct pt_regs *regs = eregs;
830 /* Did already sync */
831 if (eregs == (struct pt_regs *)eregs->rsp)
832 ;
833 /* Exception from user space */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700834 else if (user_mode(eregs))
Al Virobb049232006-01-12 01:05:38 -0800835 regs = task_pt_regs(current);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700836 /* Exception from kernel and interrupts are enabled. Move to
837 kernel process stack. */
838 else if (eregs->eflags & X86_EFLAGS_IF)
839 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
840 if (eregs != regs)
841 *regs = *eregs;
842 return regs;
843}
844
845/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700846asmlinkage void __kprobes do_debug(struct pt_regs * regs,
847 unsigned long error_code)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700848{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 unsigned long condition;
850 struct task_struct *tsk = current;
851 siginfo_t info;
852
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700853 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
Andi Kleendaeeafe2005-04-16 15:25:13 -0700856 SIGTRAP) == NOTIFY_STOP)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700857 return;
Andi Kleendaeeafe2005-04-16 15:25:13 -0700858
John Blackwooda65d17c2006-02-12 14:34:58 -0800859 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861 /* Mask out spurious debug traps due to lazy DR7 setting */
862 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
863 if (!tsk->thread.debugreg7) {
864 goto clear_dr7;
865 }
866 }
867
868 tsk->thread.debugreg6 = condition;
869
870 /* Mask out spurious TF errors due to lazy TF clearing */
Andi Kleendaeeafe2005-04-16 15:25:13 -0700871 if (condition & DR_STEP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 /*
873 * The TF error should be masked out only if the current
874 * process is not traced and if the TRAP flag has been set
875 * previously by a tracing process (condition detected by
876 * the PT_DTRACE flag); remember that the i386 TRAP flag
877 * can be modified by the process itself in user mode,
878 * allowing programs to debug themselves without the ptrace()
879 * interface.
880 */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700881 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 goto clear_TF_reenable;
Andi Kleenbe61bff2005-04-16 15:24:57 -0700883 /*
884 * Was the TF flag set by a debugger? If so, clear it now,
885 * so that register information is correct.
886 */
887 if (tsk->ptrace & PT_DTRACE) {
888 regs->eflags &= ~TF_MASK;
889 tsk->ptrace &= ~PT_DTRACE;
890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892
893 /* Ok, finally something we can handle */
894 tsk->thread.trap_no = 1;
895 tsk->thread.error_code = error_code;
896 info.si_signo = SIGTRAP;
897 info.si_errno = 0;
898 info.si_code = TRAP_BRKPT;
John Blackwood01b8faa2006-01-11 22:44:15 +0100899 info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
900 force_sig_info(SIGTRAP, &info, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902clear_dr7:
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700903 set_debugreg(0UL, 7);
John Blackwooda65d17c2006-02-12 14:34:58 -0800904 preempt_conditional_cli(regs);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700905 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907clear_TF_reenable:
908 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 regs->eflags &= ~TF_MASK;
John Blackwooda65d17c2006-02-12 14:34:58 -0800910 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911}
912
Jan Beulich6e3f3612006-01-11 22:42:14 +0100913static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
915 const struct exception_table_entry *fixup;
916 fixup = search_exception_tables(regs->rip);
917 if (fixup) {
918 regs->rip = fixup->fixup;
919 return 1;
920 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100921 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
Andi Kleen3a848f62005-04-16 15:25:06 -0700922 /* Illegal floating point operation in the kernel */
Jan Beulich6e3f3612006-01-11 22:42:14 +0100923 current->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 die(str, regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return 0;
926}
927
928/*
929 * Note that we play around with the 'TS' bit in an attempt to get
930 * the correct behaviour even in the presence of the asynchronous
931 * IRQ13 behaviour
932 */
933asmlinkage void do_coprocessor_error(struct pt_regs *regs)
934{
935 void __user *rip = (void __user *)(regs->rip);
936 struct task_struct * task;
937 siginfo_t info;
938 unsigned short cwd, swd;
939
940 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700941 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100942 kernel_math_error(regs, "kernel x87 math error", 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return;
944
945 /*
946 * Save the info for the exception handler and clear the error.
947 */
948 task = current;
949 save_init_fpu(task);
950 task->thread.trap_no = 16;
951 task->thread.error_code = 0;
952 info.si_signo = SIGFPE;
953 info.si_errno = 0;
954 info.si_code = __SI_FAULT;
955 info.si_addr = rip;
956 /*
957 * (~cwd & swd) will mask out exceptions that are not set to unmasked
958 * status. 0x3f is the exception bits in these regs, 0x200 is the
959 * C1 reg you need in case of a stack fault, 0x040 is the stack
960 * fault bit. We should only be taking one exception at a time,
961 * so if this combination doesn't produce any single exception,
962 * then we have a bad program that isn't synchronizing its FPU usage
963 * and it will suffer the consequences since we won't be able to
964 * fully reproduce the context of the exception
965 */
966 cwd = get_fpu_cwd(task);
967 swd = get_fpu_swd(task);
Chuck Ebbertff347b22005-09-12 18:49:25 +0200968 switch (swd & ~cwd & 0x3f) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 case 0x000:
970 default:
971 break;
972 case 0x001: /* Invalid Op */
Chuck Ebbertff347b22005-09-12 18:49:25 +0200973 /*
974 * swd & 0x240 == 0x040: Stack Underflow
975 * swd & 0x240 == 0x240: Stack Overflow
976 * User must clear the SF bit (0x40) if set
977 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 info.si_code = FPE_FLTINV;
979 break;
980 case 0x002: /* Denormalize */
981 case 0x010: /* Underflow */
982 info.si_code = FPE_FLTUND;
983 break;
984 case 0x004: /* Zero Divide */
985 info.si_code = FPE_FLTDIV;
986 break;
987 case 0x008: /* Overflow */
988 info.si_code = FPE_FLTOVF;
989 break;
990 case 0x020: /* Precision */
991 info.si_code = FPE_FLTRES;
992 break;
993 }
994 force_sig_info(SIGFPE, &info, task);
995}
996
997asmlinkage void bad_intr(void)
998{
999 printk("bad interrupt");
1000}
1001
1002asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
1003{
1004 void __user *rip = (void __user *)(regs->rip);
1005 struct task_struct * task;
1006 siginfo_t info;
1007 unsigned short mxcsr;
1008
1009 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -07001010 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +01001011 kernel_math_error(regs, "kernel simd math error", 19))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 return;
1013
1014 /*
1015 * Save the info for the exception handler and clear the error.
1016 */
1017 task = current;
1018 save_init_fpu(task);
1019 task->thread.trap_no = 19;
1020 task->thread.error_code = 0;
1021 info.si_signo = SIGFPE;
1022 info.si_errno = 0;
1023 info.si_code = __SI_FAULT;
1024 info.si_addr = rip;
1025 /*
1026 * The SIMD FPU exceptions are handled a little differently, as there
1027 * is only a single status/control register. Thus, to determine which
1028 * unmasked exception was caught we must mask the exception mask bits
1029 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
1030 */
1031 mxcsr = get_fpu_mxcsr(task);
1032 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
1033 case 0x000:
1034 default:
1035 break;
1036 case 0x001: /* Invalid Op */
1037 info.si_code = FPE_FLTINV;
1038 break;
1039 case 0x002: /* Denormalize */
1040 case 0x010: /* Underflow */
1041 info.si_code = FPE_FLTUND;
1042 break;
1043 case 0x004: /* Zero Divide */
1044 info.si_code = FPE_FLTDIV;
1045 break;
1046 case 0x008: /* Overflow */
1047 info.si_code = FPE_FLTOVF;
1048 break;
1049 case 0x020: /* Precision */
1050 info.si_code = FPE_FLTRES;
1051 break;
1052 }
1053 force_sig_info(SIGFPE, &info, task);
1054}
1055
1056asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
1057{
1058}
1059
1060asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
1061{
1062}
1063
Jacob Shin89b831e2005-11-05 17:25:53 +01001064asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
1065{
1066}
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068/*
1069 * 'math_state_restore()' saves the current math information in the
1070 * old math state array, and gets the new ones from the current task
1071 *
1072 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1073 * Don't touch unless you *really* know how it works.
1074 */
1075asmlinkage void math_state_restore(void)
1076{
1077 struct task_struct *me = current;
1078 clts(); /* Allow maths ops (or we recurse) */
1079
1080 if (!used_math())
1081 init_fpu(me);
1082 restore_fpu_checking(&me->thread.i387.fxsave);
Al Viroe4f17c42006-01-12 01:05:38 -08001083 task_thread_info(me)->status |= TS_USEDFPU;
Arjan van de Vene07e23e2006-09-26 10:52:36 +02001084 me->fpu_counter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
1086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087void __init trap_init(void)
1088{
1089 set_intr_gate(0,&divide_error);
1090 set_intr_gate_ist(1,&debug,DEBUG_STACK);
1091 set_intr_gate_ist(2,&nmi,NMI_STACK);
Jan Beulichb556b352006-01-11 22:43:00 +01001092 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
Jan Beulich0a521582006-01-11 22:42:08 +01001093 set_system_gate(4,&overflow); /* int4 can be called from all */
1094 set_intr_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 set_intr_gate(6,&invalid_op);
1096 set_intr_gate(7,&device_not_available);
1097 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
1098 set_intr_gate(9,&coprocessor_segment_overrun);
1099 set_intr_gate(10,&invalid_TSS);
1100 set_intr_gate(11,&segment_not_present);
1101 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
1102 set_intr_gate(13,&general_protection);
1103 set_intr_gate(14,&page_fault);
1104 set_intr_gate(15,&spurious_interrupt_bug);
1105 set_intr_gate(16,&coprocessor_error);
1106 set_intr_gate(17,&alignment_check);
1107#ifdef CONFIG_X86_MCE
1108 set_intr_gate_ist(18,&machine_check, MCE_STACK);
1109#endif
1110 set_intr_gate(19,&simd_coprocessor_error);
1111
1112#ifdef CONFIG_IA32_EMULATION
1113 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1114#endif
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 /*
1117 * Should be a barrier for any external CPU state.
1118 */
1119 cpu_init();
1120}
1121
1122
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001123static int __init oops_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001125 if (!s)
1126 return -EINVAL;
1127 if (!strcmp(s, "panic"))
1128 panic_on_oops = 1;
1129 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001131early_param("oops", oops_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133static int __init kstack_setup(char *s)
1134{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001135 if (!s)
1136 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 kstack_depth_to_print = simple_strtoul(s,NULL,0);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001138 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001140early_param("kstack", kstack_setup);