blob: 74cbeb2e99a633947d406d27537ad5fa9341af53 [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>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070035#include <linux/kdebug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/io.h>
39#include <asm/atomic.h>
40#include <asm/debugreg.h>
41#include <asm/desc.h>
42#include <asm/i387.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#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
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static inline void conditional_sti(struct pt_regs *regs)
75{
76 if (regs->eflags & X86_EFLAGS_IF)
77 local_irq_enable();
78}
79
John Blackwooda65d17c2006-02-12 14:34:58 -080080static inline void preempt_conditional_sti(struct pt_regs *regs)
81{
82 preempt_disable();
83 if (regs->eflags & X86_EFLAGS_IF)
84 local_irq_enable();
85}
86
87static inline void preempt_conditional_cli(struct pt_regs *regs)
88{
89 if (regs->eflags & X86_EFLAGS_IF)
90 local_irq_disable();
Andi Kleen40e59a62006-05-15 18:19:47 +020091 /* Make sure to not schedule here because we could be running
92 on an exception stack. */
John Blackwooda65d17c2006-02-12 14:34:58 -080093 preempt_enable_no_resched();
94}
95
Chuck Ebbert0741f4d2006-12-07 02:14:11 +010096int kstack_depth_to_print = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98#ifdef CONFIG_KALLSYMS
Ingo Molnar3ac94932006-07-03 00:24:36 -070099void printk_address(unsigned long address)
100{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 unsigned long offset = 0, symsize;
102 const char *symname;
103 char *modname;
Ingo Molnar3ac94932006-07-03 00:24:36 -0700104 char *delim = ":";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 char namebuf[128];
106
Ingo Molnar3ac94932006-07-03 00:24:36 -0700107 symname = kallsyms_lookup(address, &symsize, &offset,
108 &modname, namebuf);
109 if (!symname) {
110 printk(" [<%016lx>]\n", address);
111 return;
112 }
113 if (!modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 modname = delim = "";
Ingo Molnar3ac94932006-07-03 00:24:36 -0700115 printk(" [<%016lx>] %s%s%s%s+0x%lx/0x%lx\n",
116 address, delim, modname, delim, symname, offset, symsize);
117}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#else
Ingo Molnar3ac94932006-07-03 00:24:36 -0700119void printk_address(unsigned long address)
120{
121 printk(" [<%016lx>]\n", address);
122}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#endif
124
Andi Kleen0a658002005-04-16 15:25:17 -0700125static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
Andi Kleenc0b766f2006-09-26 10:52:34 +0200126 unsigned *usedp, char **idp)
Andi Kleen0a658002005-04-16 15:25:17 -0700127{
Jan Beulichb556b352006-01-11 22:43:00 +0100128 static char ids[][8] = {
Andi Kleen0a658002005-04-16 15:25:17 -0700129 [DEBUG_STACK - 1] = "#DB",
130 [NMI_STACK - 1] = "NMI",
131 [DOUBLEFAULT_STACK - 1] = "#DF",
132 [STACKFAULT_STACK - 1] = "#SS",
133 [MCE_STACK - 1] = "#MC",
Jan Beulichb556b352006-01-11 22:43:00 +0100134#if DEBUG_STKSZ > EXCEPTION_STKSZ
135 [N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
136#endif
Andi Kleen0a658002005-04-16 15:25:17 -0700137 };
138 unsigned k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700140 /*
141 * Iterate over all exception stacks, and figure out whether
142 * 'stack' is in one of them:
143 */
Andi Kleen0a658002005-04-16 15:25:17 -0700144 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
Keith Owensf5741642006-09-26 10:52:38 +0200145 unsigned long end = per_cpu(orig_ist, cpu).ist[k];
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700146 /*
147 * Is 'stack' above this exception frame's end?
148 * If yes then skip to the next frame.
149 */
Andi Kleen0a658002005-04-16 15:25:17 -0700150 if (stack >= end)
151 continue;
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700152 /*
153 * Is 'stack' above this exception frame's start address?
154 * If yes then we found the right frame.
155 */
Andi Kleen0a658002005-04-16 15:25:17 -0700156 if (stack >= end - EXCEPTION_STKSZ) {
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700157 /*
158 * Make sure we only iterate through an exception
159 * stack once. If it comes up for the second time
160 * then there's something wrong going on - just
161 * break out and return NULL:
162 */
Andi Kleen0a658002005-04-16 15:25:17 -0700163 if (*usedp & (1U << k))
164 break;
165 *usedp |= 1U << k;
166 *idp = ids[k];
167 return (unsigned long *)end;
168 }
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700169 /*
170 * If this is a debug stack, and if it has a larger size than
171 * the usual exception stacks, then 'stack' might still
172 * be within the lower portion of the debug stack:
173 */
Jan Beulichb556b352006-01-11 22:43:00 +0100174#if DEBUG_STKSZ > EXCEPTION_STKSZ
175 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
176 unsigned j = N_EXCEPTION_STACKS - 1;
177
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700178 /*
179 * Black magic. A large debug stack is composed of
180 * multiple exception stack entries, which we
181 * iterate through now. Dont look:
182 */
Jan Beulichb556b352006-01-11 22:43:00 +0100183 do {
184 ++j;
185 end -= EXCEPTION_STKSZ;
186 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
187 } while (stack < end - EXCEPTION_STKSZ);
188 if (*usedp & (1U << j))
189 break;
190 *usedp |= 1U << j;
191 *idp = ids[j];
192 return (unsigned long *)end;
193 }
194#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196 return NULL;
Andi Kleen0a658002005-04-16 15:25:17 -0700197}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Andi Kleenb615ebd2006-12-07 02:14:00 +0100199#define MSG(txt) ops->warning(data, txt)
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201/*
202 * x86-64 can have upto three kernel stacks:
203 * process stack
204 * interrupt stack
Andi Kleen0a658002005-04-16 15:25:17 -0700205 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 */
207
Andi Kleenc547c772006-11-28 20:12:59 +0100208static inline int valid_stack_ptr(struct thread_info *tinfo, void *p)
209{
210 void *t = (void *)tinfo;
211 return p > t && p < t + THREAD_SIZE - 3;
212}
213
Andi Kleenb615ebd2006-12-07 02:14:00 +0100214void dump_trace(struct task_struct *tsk, struct pt_regs *regs,
215 unsigned long *stack,
Andi Kleenc0b766f2006-09-26 10:52:34 +0200216 struct stacktrace_ops *ops, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Andrew Mortonda689332006-12-07 02:14:02 +0100218 const unsigned cpu = get_cpu();
Andi Kleenb615ebd2006-12-07 02:14:00 +0100219 unsigned long *irqstack_end = (unsigned long*)cpu_pda(cpu)->irqstackptr;
Andi Kleen0a658002005-04-16 15:25:17 -0700220 unsigned used = 0;
Andi Kleenc547c772006-11-28 20:12:59 +0100221 struct thread_info *tinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Jan Beulichb538ed22006-06-26 13:57:32 +0200223 if (!tsk)
224 tsk = current;
225
Andi Kleenc0b766f2006-09-26 10:52:34 +0200226 if (!stack) {
227 unsigned long dummy;
228 stack = &dummy;
229 if (tsk && tsk != current)
230 stack = (unsigned long *)tsk->thread.rsp;
Jan Beulichb538ed22006-06-26 13:57:32 +0200231 }
232
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700233 /*
234 * Print function call entries within a stack. 'cond' is the
235 * "end of stackframe" condition, that the 'stack++'
236 * iteration will eventually trigger.
237 */
Andi Kleen0a658002005-04-16 15:25:17 -0700238#define HANDLE_STACK(cond) \
239 do while (cond) { \
Jan Beulich1b2f6302006-01-11 22:46:45 +0100240 unsigned long addr = *stack++; \
Andi Kleen446f7132006-12-07 02:14:12 +0100241 /* Use unlocked access here because except for NMIs \
242 we should be already protected against module unloads */ \
243 if (__kernel_text_address(addr)) { \
Andi Kleen0a658002005-04-16 15:25:17 -0700244 /* \
245 * If the address is either in the text segment of the \
246 * kernel, or in the region which contains vmalloc'ed \
247 * memory, it *may* be the address of a calling \
248 * routine; if so, print it so that someone tracing \
249 * down the cause of the crash will be able to figure \
250 * out the call path that was taken. \
251 */ \
Andi Kleenc0b766f2006-09-26 10:52:34 +0200252 ops->address(data, addr); \
Andi Kleen0a658002005-04-16 15:25:17 -0700253 } \
254 } while (0)
255
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700256 /*
257 * Print function call entries in all stacks, starting at the
258 * current stack address. If the stacks consist of nested
259 * exceptions
260 */
Andi Kleenc0b766f2006-09-26 10:52:34 +0200261 for (;;) {
262 char *id;
Andi Kleen0a658002005-04-16 15:25:17 -0700263 unsigned long *estack_end;
264 estack_end = in_exception_stack(cpu, (unsigned long)stack,
265 &used, &id);
266
267 if (estack_end) {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200268 if (ops->stack(data, id) < 0)
269 break;
Andi Kleen0a658002005-04-16 15:25:17 -0700270 HANDLE_STACK (stack < estack_end);
Andi Kleenc0b766f2006-09-26 10:52:34 +0200271 ops->stack(data, "<EOE>");
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700272 /*
273 * We link to the next stack via the
274 * second-to-last pointer (index -2 to end) in the
275 * exception stack:
276 */
Andi Kleen0a658002005-04-16 15:25:17 -0700277 stack = (unsigned long *) estack_end[-2];
278 continue;
279 }
280 if (irqstack_end) {
281 unsigned long *irqstack;
282 irqstack = irqstack_end -
283 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
284
285 if (stack >= irqstack && stack < irqstack_end) {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200286 if (ops->stack(data, "IRQ") < 0)
287 break;
Andi Kleen0a658002005-04-16 15:25:17 -0700288 HANDLE_STACK (stack < irqstack_end);
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700289 /*
290 * We link to the next stack (which would be
291 * the process stack normally) the last
292 * pointer (index -1 to end) in the IRQ stack:
293 */
Andi Kleen0a658002005-04-16 15:25:17 -0700294 stack = (unsigned long *) (irqstack_end[-1]);
295 irqstack_end = NULL;
Andi Kleenc0b766f2006-09-26 10:52:34 +0200296 ops->stack(data, "EOI");
Andi Kleen0a658002005-04-16 15:25:17 -0700297 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299 }
Andi Kleen0a658002005-04-16 15:25:17 -0700300 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
Andi Kleen0a658002005-04-16 15:25:17 -0700302
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700303 /*
Andi Kleenc0b766f2006-09-26 10:52:34 +0200304 * This handles the process stack:
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700305 */
OGAWA Hirofumi7523c4d2007-01-04 01:21:28 +0900306 tinfo = task_thread_info(tsk);
Andi Kleenc547c772006-11-28 20:12:59 +0100307 HANDLE_STACK (valid_stack_ptr(tinfo, stack));
Andi Kleen0a658002005-04-16 15:25:17 -0700308#undef HANDLE_STACK
Andrew Mortonda689332006-12-07 02:14:02 +0100309 put_cpu();
Andi Kleenc0b766f2006-09-26 10:52:34 +0200310}
311EXPORT_SYMBOL(dump_trace);
Ingo Molnar3ac94932006-07-03 00:24:36 -0700312
Andi Kleenc0b766f2006-09-26 10:52:34 +0200313static void
314print_trace_warning_symbol(void *data, char *msg, unsigned long symbol)
315{
316 print_symbol(msg, symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 printk("\n");
318}
319
Andi Kleenc0b766f2006-09-26 10:52:34 +0200320static void print_trace_warning(void *data, char *msg)
321{
322 printk("%s\n", msg);
323}
324
325static int print_trace_stack(void *data, char *name)
326{
327 printk(" <%s> ", name);
328 return 0;
329}
330
331static void print_trace_address(void *data, unsigned long addr)
332{
Konrad Rzeszutek1c978b92007-07-17 04:03:56 -0700333 touch_nmi_watchdog();
Andi Kleenc0b766f2006-09-26 10:52:34 +0200334 printk_address(addr);
335}
336
337static struct stacktrace_ops print_trace_ops = {
338 .warning = print_trace_warning,
339 .warning_symbol = print_trace_warning_symbol,
340 .stack = print_trace_stack,
341 .address = print_trace_address,
342};
343
344void
345show_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long *stack)
346{
347 printk("\nCall Trace:\n");
348 dump_trace(tsk, regs, stack, &print_trace_ops, NULL);
349 printk("\n");
350}
351
352static void
353_show_stack(struct task_struct *tsk, struct pt_regs *regs, unsigned long *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 unsigned long *stack;
356 int i;
Andi Kleen151f8cc2006-09-26 10:52:37 +0200357 const int cpu = smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100358 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
359 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 // debugging aid: "show_stack(NULL, NULL);" prints the
362 // back trace for this cpu.
363
364 if (rsp == NULL) {
365 if (tsk)
366 rsp = (unsigned long *)tsk->thread.rsp;
367 else
368 rsp = (unsigned long *)&rsp;
369 }
370
371 stack = rsp;
372 for(i=0; i < kstack_depth_to_print; i++) {
373 if (stack >= irqstack && stack <= irqstack_end) {
374 if (stack == irqstack_end) {
375 stack = (unsigned long *) (irqstack_end[-1]);
376 printk(" <EOI> ");
377 }
378 } else {
379 if (((long) stack & (THREAD_SIZE-1)) == 0)
380 break;
381 }
382 if (i && ((i % 4) == 0))
Ingo Molnar3ac94932006-07-03 00:24:36 -0700383 printk("\n");
384 printk(" %016lx", *stack++);
akpm@osdl.org35faa712005-04-16 15:24:54 -0700385 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
Jan Beulichb538ed22006-06-26 13:57:32 +0200387 show_trace(tsk, regs, rsp);
388}
389
390void show_stack(struct task_struct *tsk, unsigned long * rsp)
391{
392 _show_stack(tsk, NULL, rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
395/*
396 * The architecture-independent dump_stack generator
397 */
398void dump_stack(void)
399{
400 unsigned long dummy;
Jan Beulichb538ed22006-06-26 13:57:32 +0200401 show_trace(NULL, NULL, &dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404EXPORT_SYMBOL(dump_stack);
405
406void show_registers(struct pt_regs *regs)
407{
408 int i;
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700409 int in_kernel = !user_mode(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 unsigned long rsp;
Andi Kleen151f8cc2006-09-26 10:52:37 +0200411 const int cpu = smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100412 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Andi Kleend039c682007-05-02 19:27:08 +0200414 rsp = regs->rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 printk("CPU %d ", cpu);
416 __show_regs(regs);
417 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
Al Viroe4f17c42006-01-12 01:05:38 -0800418 cur->comm, cur->pid, task_thread_info(cur), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 /*
421 * When in-kernel, we also print out the stack and code at the
422 * time of the fault..
423 */
424 if (in_kernel) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 printk("Stack: ");
Jan Beulichb538ed22006-06-26 13:57:32 +0200426 _show_stack(NULL, regs, (unsigned long*)rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 printk("\nCode: ");
Roberto Nibali2b692a82006-03-25 16:29:55 +0100429 if (regs->rip < PAGE_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 goto bad;
431
Roberto Nibali2b692a82006-03-25 16:29:55 +0100432 for (i=0; i<20; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 unsigned char c;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100434 if (__get_user(c, &((unsigned char*)regs->rip)[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435bad:
436 printk(" Bad RIP value.");
437 break;
438 }
439 printk("%02x ", c);
440 }
441 }
442 printk("\n");
443}
444
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -0800445int is_valid_bugaddr(unsigned long rip)
446{
447 unsigned short ud2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -0800449 if (__copy_from_user(&ud2, (const void __user *) rip, sizeof(ud2)))
450 return 0;
451
452 return ud2 == 0x0b0f;
453}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700455#ifdef CONFIG_BUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456void out_of_line_bug(void)
457{
458 BUG();
459}
Andi Kleen2ee60e172006-06-26 13:59:44 +0200460EXPORT_SYMBOL(out_of_line_bug);
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700461#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463static DEFINE_SPINLOCK(die_lock);
464static int die_owner = -1;
Corey Minyardcdc60a42006-05-08 15:17:22 +0200465static unsigned int die_nest_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100467unsigned __kprobes long oops_begin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Andrew Mortonb39b7032007-06-08 13:47:01 -0700469 int cpu;
Jan Beulich12091402005-09-12 18:49:24 +0200470 unsigned long flags;
471
Andrew Mortonabf0f102006-09-26 10:52:36 +0200472 oops_enter();
473
Jan Beulich12091402005-09-12 18:49:24 +0200474 /* racy, but better than risking deadlock. */
475 local_irq_save(flags);
Andrew Mortonb39b7032007-06-08 13:47:01 -0700476 cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (!spin_trylock(&die_lock)) {
478 if (cpu == die_owner)
479 /* nested oops. should stop eventually */;
480 else
Jan Beulich12091402005-09-12 18:49:24 +0200481 spin_lock(&die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
Corey Minyardcdc60a42006-05-08 15:17:22 +0200483 die_nest_count++;
Jan Beulich12091402005-09-12 18:49:24 +0200484 die_owner = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 console_verbose();
Jan Beulich12091402005-09-12 18:49:24 +0200486 bust_spinlocks(1);
487 return flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100490void __kprobes oops_end(unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 die_owner = -1;
Jan Beulich12091402005-09-12 18:49:24 +0200493 bust_spinlocks(0);
Corey Minyardcdc60a42006-05-08 15:17:22 +0200494 die_nest_count--;
495 if (die_nest_count)
496 /* We still own the lock */
497 local_irq_restore(flags);
498 else
499 /* Nest count reaches zero, release the lock. */
500 spin_unlock_irqrestore(&die_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (panic_on_oops)
Horms012c4372006-08-13 23:24:22 -0700502 panic("Fatal exception");
Andrew Mortonabf0f102006-09-26 10:52:36 +0200503 oops_exit();
Jan Beulich12091402005-09-12 18:49:24 +0200504}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100506void __kprobes __die(const char * str, struct pt_regs * regs, long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 static int die_counter;
509 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
510#ifdef CONFIG_PREEMPT
511 printk("PREEMPT ");
512#endif
513#ifdef CONFIG_SMP
514 printk("SMP ");
515#endif
516#ifdef CONFIG_DEBUG_PAGEALLOC
517 printk("DEBUG_PAGEALLOC");
518#endif
519 printk("\n");
Jan Beulich6e3f3612006-01-11 22:42:14 +0100520 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 show_registers(regs);
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -0700522 add_taint(TAINT_DIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 /* Executive summary in case the oops scrolled away */
524 printk(KERN_ALERT "RIP ");
525 printk_address(regs->rip);
526 printk(" RSP <%016lx>\n", regs->rsp);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200527 if (kexec_should_crash(current))
528 crash_kexec(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
531void die(const char * str, struct pt_regs * regs, long err)
532{
Jan Beulich12091402005-09-12 18:49:24 +0200533 unsigned long flags = oops_begin();
534
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -0800535 if (!user_mode(regs))
Heiko Carstens608e2612007-07-15 23:41:39 -0700536 report_bug(regs->rip, regs);
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -0800537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 __die(str, regs, err);
Jan Beulich12091402005-09-12 18:49:24 +0200539 oops_end(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 do_exit(SIGSEGV);
541}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Andi Kleenfac58552006-09-26 10:52:27 +0200543void __kprobes die_nmi(char *str, struct pt_regs *regs, int do_panic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Jan Beulich12091402005-09-12 18:49:24 +0200545 unsigned long flags = oops_begin();
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /*
548 * We are in trouble anyway, lets at least try
549 * to get a message out.
550 */
Andi Kleen151f8cc2006-09-26 10:52:37 +0200551 printk(str, smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 show_registers(regs);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200553 if (kexec_should_crash(current))
554 crash_kexec(regs);
Andi Kleenfac58552006-09-26 10:52:27 +0200555 if (do_panic || panic_on_oops)
556 panic("Non maskable interrupt");
Jan Beulich12091402005-09-12 18:49:24 +0200557 oops_end(flags);
Corey Minyard8b1ffe952006-05-08 15:17:25 +0200558 nmi_exit();
559 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 do_exit(SIGSEGV);
561}
562
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700563static void __kprobes do_trap(int trapnr, int signr, char *str,
564 struct pt_regs * regs, long error_code,
565 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100567 struct task_struct *tsk = current;
568
Jan Beulich6e3f3612006-01-11 22:42:14 +0100569 if (user_mode(regs)) {
Andi Kleend1895182007-05-02 19:27:05 +0200570 /*
571 * We want error_code and trap_no set for userspace
572 * faults and kernelspace faults which result in
573 * die(), but not kernelspace faults which are fixed
574 * up. die() gives the process no chance to handle
575 * the signal and notice the kernel fault information,
576 * so that won't result in polluting the information
577 * about previously queued, but not yet delivered,
578 * faults. See also do_general_protection below.
579 */
580 tsk->thread.error_code = error_code;
581 tsk->thread.trap_no = trapnr;
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (exception_trace && unhandled_signal(tsk, signr))
584 printk(KERN_INFO
585 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
586 tsk->comm, tsk->pid, str,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100587 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (info)
590 force_sig_info(signr, info, tsk);
591 else
592 force_sig(signr, tsk);
593 return;
594 }
595
596
597 /* kernel trap */
598 {
599 const struct exception_table_entry *fixup;
600 fixup = search_exception_tables(regs->rip);
Roberto Nibali2b692a82006-03-25 16:29:55 +0100601 if (fixup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 regs->rip = fixup->fixup;
Andi Kleend1895182007-05-02 19:27:05 +0200603 else {
604 tsk->thread.error_code = error_code;
605 tsk->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 die(str, regs, error_code);
Andi Kleend1895182007-05-02 19:27:05 +0200607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return;
609 }
610}
611
612#define DO_ERROR(trapnr, signr, str, name) \
613asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
614{ \
615 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
616 == NOTIFY_STOP) \
617 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200618 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 do_trap(trapnr, signr, str, regs, error_code, NULL); \
620}
621
622#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
623asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
624{ \
625 siginfo_t info; \
626 info.si_signo = signr; \
627 info.si_errno = 0; \
628 info.si_code = sicode; \
629 info.si_addr = (void __user *)siaddr; \
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, &info); \
635}
636
637DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
638DO_ERROR( 4, SIGSEGV, "overflow", overflow)
639DO_ERROR( 5, SIGSEGV, "bounds", bounds)
Chuck Ebbert100c0e32006-01-11 22:46:00 +0100640DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
642DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
643DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
644DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
645DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
646DO_ERROR(18, SIGSEGV, "reserved", reserved)
Andi Kleen40e59a62006-05-15 18:19:47 +0200647
648/* Runs on IST stack */
649asmlinkage void do_stack_segment(struct pt_regs *regs, long error_code)
650{
651 if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
652 12, SIGBUS) == NOTIFY_STOP)
653 return;
654 preempt_conditional_sti(regs);
655 do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
656 preempt_conditional_cli(regs);
657}
Jan Beulicheca37c12006-01-11 22:42:17 +0100658
659asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
660{
661 static const char str[] = "double fault";
662 struct task_struct *tsk = current;
663
664 /* Return not checked because double check cannot be ignored */
665 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
666
667 tsk->thread.error_code = error_code;
668 tsk->thread.trap_no = 8;
669
670 /* This is always a kernel trap and never fixable (and thus must
671 never return). */
672 for (;;)
673 die(str, regs, error_code);
674}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700676asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
677 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100679 struct task_struct *tsk = current;
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 conditional_sti(regs);
682
Jan Beulich6e3f3612006-01-11 22:42:14 +0100683 if (user_mode(regs)) {
Andi Kleend1895182007-05-02 19:27:05 +0200684 tsk->thread.error_code = error_code;
685 tsk->thread.trap_no = 13;
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
688 printk(KERN_INFO
689 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
690 tsk->comm, tsk->pid,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100691 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 force_sig(SIGSEGV, tsk);
694 return;
695 }
696
697 /* kernel gp */
698 {
699 const struct exception_table_entry *fixup;
700 fixup = search_exception_tables(regs->rip);
701 if (fixup) {
702 regs->rip = fixup->fixup;
703 return;
704 }
Andi Kleend1895182007-05-02 19:27:05 +0200705
706 tsk->thread.error_code = error_code;
707 tsk->thread.trap_no = 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (notify_die(DIE_GPF, "general protection fault", regs,
709 error_code, 13, SIGSEGV) == NOTIFY_STOP)
710 return;
711 die("general protection fault", regs, error_code);
712 }
713}
714
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100715static __kprobes void
716mem_parity_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Don Zickusc41c5cd2006-09-26 10:52:27 +0200718 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
719 reason);
Andi Kleen9c5f8be2006-12-07 02:14:03 +0100720 printk(KERN_EMERG "You have some hardware problem, likely on the PCI bus.\n");
Don Zickusc41c5cd2006-09-26 10:52:27 +0200721
Don Zickus8da5add2006-09-26 10:52:27 +0200722 if (panic_on_unrecovered_nmi)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200723 panic("NMI: Not continuing");
724
725 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 /* Clear and disable the memory parity error line. */
728 reason = (reason & 0xf) | 4;
729 outb(reason, 0x61);
730}
731
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100732static __kprobes void
733io_check_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 printk("NMI: IOCK error (debug interrupt?)\n");
736 show_registers(regs);
737
738 /* Re-enable the IOCK line, wait for a few seconds */
739 reason = (reason & 0xf) | 8;
740 outb(reason, 0x61);
741 mdelay(2000);
742 reason &= ~8;
743 outb(reason, 0x61);
744}
745
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100746static __kprobes void
747unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200748{
749 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
750 reason);
751 printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n");
Don Zickus8da5add2006-09-26 10:52:27 +0200752
753 if (panic_on_unrecovered_nmi)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200754 panic("NMI: Not continuing");
Don Zickus8da5add2006-09-26 10:52:27 +0200755
Don Zickusc41c5cd2006-09-26 10:52:27 +0200756 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700759/* Runs on IST stack. This code must keep interrupts off all the time.
760 Nested NMIs are prevented by the CPU. */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100761asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
763 unsigned char reason = 0;
Ashok Raj76e4f662005-06-25 14:55:00 -0700764 int cpu;
765
766 cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 /* Only the BSP gets external NMIs from the system. */
Ashok Raj76e4f662005-06-25 14:55:00 -0700769 if (!cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 reason = get_nmi_reason();
771
772 if (!(reason & 0xc0)) {
Jan Beulich6e3f3612006-01-11 22:42:14 +0100773 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 == NOTIFY_STOP)
775 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 /*
777 * Ok, so this is none of the documented NMI sources,
778 * so it must be the NMI watchdog.
779 */
Don Zickus3adbbcce2006-09-26 10:52:26 +0200780 if (nmi_watchdog_tick(regs,reason))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return;
Don Zickus3adbbcce2006-09-26 10:52:26 +0200782 if (!do_nmi_callback(regs,cpu))
Don Zickus3adbbcce2006-09-26 10:52:26 +0200783 unknown_nmi_error(reason, regs);
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return;
786 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100787 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return;
789
790 /* AK: following checks seem to be broken on modern chipsets. FIXME */
791
792 if (reason & 0x80)
793 mem_parity_error(reason, regs);
794 if (reason & 0x40)
795 io_check_error(reason, regs);
796}
797
Jan Beulichb556b352006-01-11 22:43:00 +0100798/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700799asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
801 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
802 return;
803 }
Andi Kleen40e59a62006-05-15 18:19:47 +0200804 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
Andi Kleen40e59a62006-05-15 18:19:47 +0200806 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700809/* Help handler running on IST stack to switch back to user stack
810 for scheduling or signal handling. The actual stack switch is done in
811 entry.S */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100812asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700814 struct pt_regs *regs = eregs;
815 /* Did already sync */
816 if (eregs == (struct pt_regs *)eregs->rsp)
817 ;
818 /* Exception from user space */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700819 else if (user_mode(eregs))
Al Virobb049232006-01-12 01:05:38 -0800820 regs = task_pt_regs(current);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700821 /* Exception from kernel and interrupts are enabled. Move to
822 kernel process stack. */
823 else if (eregs->eflags & X86_EFLAGS_IF)
824 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
825 if (eregs != regs)
826 *regs = *eregs;
827 return regs;
828}
829
830/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700831asmlinkage void __kprobes do_debug(struct pt_regs * regs,
832 unsigned long error_code)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700833{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 unsigned long condition;
835 struct task_struct *tsk = current;
836 siginfo_t info;
837
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700838 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
Andi Kleendaeeafe2005-04-16 15:25:13 -0700841 SIGTRAP) == NOTIFY_STOP)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700842 return;
Andi Kleendaeeafe2005-04-16 15:25:13 -0700843
John Blackwooda65d17c2006-02-12 14:34:58 -0800844 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 /* Mask out spurious debug traps due to lazy DR7 setting */
847 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
848 if (!tsk->thread.debugreg7) {
849 goto clear_dr7;
850 }
851 }
852
853 tsk->thread.debugreg6 = condition;
854
855 /* Mask out spurious TF errors due to lazy TF clearing */
Andi Kleendaeeafe2005-04-16 15:25:13 -0700856 if (condition & DR_STEP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /*
858 * The TF error should be masked out only if the current
859 * process is not traced and if the TRAP flag has been set
860 * previously by a tracing process (condition detected by
861 * the PT_DTRACE flag); remember that the i386 TRAP flag
862 * can be modified by the process itself in user mode,
863 * allowing programs to debug themselves without the ptrace()
864 * interface.
865 */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700866 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 goto clear_TF_reenable;
Andi Kleenbe61bff2005-04-16 15:24:57 -0700868 /*
869 * Was the TF flag set by a debugger? If so, clear it now,
870 * so that register information is correct.
871 */
872 if (tsk->ptrace & PT_DTRACE) {
873 regs->eflags &= ~TF_MASK;
874 tsk->ptrace &= ~PT_DTRACE;
875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877
878 /* Ok, finally something we can handle */
879 tsk->thread.trap_no = 1;
880 tsk->thread.error_code = error_code;
881 info.si_signo = SIGTRAP;
882 info.si_errno = 0;
883 info.si_code = TRAP_BRKPT;
John Blackwood01b8faa2006-01-11 22:44:15 +0100884 info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
885 force_sig_info(SIGTRAP, &info, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887clear_dr7:
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700888 set_debugreg(0UL, 7);
John Blackwooda65d17c2006-02-12 14:34:58 -0800889 preempt_conditional_cli(regs);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700890 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892clear_TF_reenable:
893 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 regs->eflags &= ~TF_MASK;
John Blackwooda65d17c2006-02-12 14:34:58 -0800895 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
Jan Beulich6e3f3612006-01-11 22:42:14 +0100898static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
900 const struct exception_table_entry *fixup;
901 fixup = search_exception_tables(regs->rip);
902 if (fixup) {
903 regs->rip = fixup->fixup;
904 return 1;
905 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100906 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
Andi Kleen3a848f62005-04-16 15:25:06 -0700907 /* Illegal floating point operation in the kernel */
Jan Beulich6e3f3612006-01-11 22:42:14 +0100908 current->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 die(str, regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return 0;
911}
912
913/*
914 * Note that we play around with the 'TS' bit in an attempt to get
915 * the correct behaviour even in the presence of the asynchronous
916 * IRQ13 behaviour
917 */
918asmlinkage void do_coprocessor_error(struct pt_regs *regs)
919{
920 void __user *rip = (void __user *)(regs->rip);
921 struct task_struct * task;
922 siginfo_t info;
923 unsigned short cwd, swd;
924
925 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700926 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100927 kernel_math_error(regs, "kernel x87 math error", 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 return;
929
930 /*
931 * Save the info for the exception handler and clear the error.
932 */
933 task = current;
934 save_init_fpu(task);
935 task->thread.trap_no = 16;
936 task->thread.error_code = 0;
937 info.si_signo = SIGFPE;
938 info.si_errno = 0;
939 info.si_code = __SI_FAULT;
940 info.si_addr = rip;
941 /*
942 * (~cwd & swd) will mask out exceptions that are not set to unmasked
943 * status. 0x3f is the exception bits in these regs, 0x200 is the
944 * C1 reg you need in case of a stack fault, 0x040 is the stack
945 * fault bit. We should only be taking one exception at a time,
946 * so if this combination doesn't produce any single exception,
947 * then we have a bad program that isn't synchronizing its FPU usage
948 * and it will suffer the consequences since we won't be able to
949 * fully reproduce the context of the exception
950 */
951 cwd = get_fpu_cwd(task);
952 swd = get_fpu_swd(task);
Chuck Ebbertff347b22005-09-12 18:49:25 +0200953 switch (swd & ~cwd & 0x3f) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 case 0x000:
955 default:
956 break;
957 case 0x001: /* Invalid Op */
Chuck Ebbertff347b22005-09-12 18:49:25 +0200958 /*
959 * swd & 0x240 == 0x040: Stack Underflow
960 * swd & 0x240 == 0x240: Stack Overflow
961 * User must clear the SF bit (0x40) if set
962 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 info.si_code = FPE_FLTINV;
964 break;
965 case 0x002: /* Denormalize */
966 case 0x010: /* Underflow */
967 info.si_code = FPE_FLTUND;
968 break;
969 case 0x004: /* Zero Divide */
970 info.si_code = FPE_FLTDIV;
971 break;
972 case 0x008: /* Overflow */
973 info.si_code = FPE_FLTOVF;
974 break;
975 case 0x020: /* Precision */
976 info.si_code = FPE_FLTRES;
977 break;
978 }
979 force_sig_info(SIGFPE, &info, task);
980}
981
982asmlinkage void bad_intr(void)
983{
984 printk("bad interrupt");
985}
986
987asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
988{
989 void __user *rip = (void __user *)(regs->rip);
990 struct task_struct * task;
991 siginfo_t info;
992 unsigned short mxcsr;
993
994 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700995 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100996 kernel_math_error(regs, "kernel simd math error", 19))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return;
998
999 /*
1000 * Save the info for the exception handler and clear the error.
1001 */
1002 task = current;
1003 save_init_fpu(task);
1004 task->thread.trap_no = 19;
1005 task->thread.error_code = 0;
1006 info.si_signo = SIGFPE;
1007 info.si_errno = 0;
1008 info.si_code = __SI_FAULT;
1009 info.si_addr = rip;
1010 /*
1011 * The SIMD FPU exceptions are handled a little differently, as there
1012 * is only a single status/control register. Thus, to determine which
1013 * unmasked exception was caught we must mask the exception mask bits
1014 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
1015 */
1016 mxcsr = get_fpu_mxcsr(task);
1017 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
1018 case 0x000:
1019 default:
1020 break;
1021 case 0x001: /* Invalid Op */
1022 info.si_code = FPE_FLTINV;
1023 break;
1024 case 0x002: /* Denormalize */
1025 case 0x010: /* Underflow */
1026 info.si_code = FPE_FLTUND;
1027 break;
1028 case 0x004: /* Zero Divide */
1029 info.si_code = FPE_FLTDIV;
1030 break;
1031 case 0x008: /* Overflow */
1032 info.si_code = FPE_FLTOVF;
1033 break;
1034 case 0x020: /* Precision */
1035 info.si_code = FPE_FLTRES;
1036 break;
1037 }
1038 force_sig_info(SIGFPE, &info, task);
1039}
1040
1041asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
1042{
1043}
1044
1045asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
1046{
1047}
1048
Jacob Shin89b831e2005-11-05 17:25:53 +01001049asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
1050{
1051}
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053/*
1054 * 'math_state_restore()' saves the current math information in the
1055 * old math state array, and gets the new ones from the current task
1056 *
1057 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1058 * Don't touch unless you *really* know how it works.
1059 */
1060asmlinkage void math_state_restore(void)
1061{
1062 struct task_struct *me = current;
1063 clts(); /* Allow maths ops (or we recurse) */
1064
1065 if (!used_math())
1066 init_fpu(me);
1067 restore_fpu_checking(&me->thread.i387.fxsave);
Al Viroe4f17c42006-01-12 01:05:38 -08001068 task_thread_info(me)->status |= TS_USEDFPU;
Arjan van de Vene07e23e2006-09-26 10:52:36 +02001069 me->fpu_counter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072void __init trap_init(void)
1073{
1074 set_intr_gate(0,&divide_error);
1075 set_intr_gate_ist(1,&debug,DEBUG_STACK);
1076 set_intr_gate_ist(2,&nmi,NMI_STACK);
Jan Beulichb556b352006-01-11 22:43:00 +01001077 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
Jan Beulich0a521582006-01-11 22:42:08 +01001078 set_system_gate(4,&overflow); /* int4 can be called from all */
1079 set_intr_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 set_intr_gate(6,&invalid_op);
1081 set_intr_gate(7,&device_not_available);
1082 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
1083 set_intr_gate(9,&coprocessor_segment_overrun);
1084 set_intr_gate(10,&invalid_TSS);
1085 set_intr_gate(11,&segment_not_present);
1086 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
1087 set_intr_gate(13,&general_protection);
1088 set_intr_gate(14,&page_fault);
1089 set_intr_gate(15,&spurious_interrupt_bug);
1090 set_intr_gate(16,&coprocessor_error);
1091 set_intr_gate(17,&alignment_check);
1092#ifdef CONFIG_X86_MCE
1093 set_intr_gate_ist(18,&machine_check, MCE_STACK);
1094#endif
1095 set_intr_gate(19,&simd_coprocessor_error);
1096
1097#ifdef CONFIG_IA32_EMULATION
1098 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1099#endif
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 /*
1102 * Should be a barrier for any external CPU state.
1103 */
1104 cpu_init();
1105}
1106
1107
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001108static int __init oops_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001110 if (!s)
1111 return -EINVAL;
1112 if (!strcmp(s, "panic"))
1113 panic_on_oops = 1;
1114 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001116early_param("oops", oops_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118static int __init kstack_setup(char *s)
1119{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001120 if (!s)
1121 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 kstack_depth_to_print = simple_strtoul(s,NULL,0);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001123 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001125early_param("kstack", kstack_setup);