blob: df690c3fa4580eed8b5cb3b2cc31705e1b1d6d7c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
4 *
5 * Pentium III FXSR, SSE support
6 * Gareth Hughes <gareth@valinux.com>, May 2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
9/*
10 * 'Traps.c' handles hardware traps and faults after we have saved some
11 * state in 'entry.S'.
12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/sched.h>
14#include <linux/kernel.h>
15#include <linux/string.h>
16#include <linux/errno.h>
17#include <linux/ptrace.h>
18#include <linux/timer.h>
19#include <linux/mm.h>
20#include <linux/init.h>
21#include <linux/delay.h>
22#include <linux/spinlock.h>
23#include <linux/interrupt.h>
Randy Dunlap4b0ff1a2006-10-05 19:07:26 +020024#include <linux/kallsyms.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
26#include <linux/moduleparam.h>
akpm@osdl.org35faa712005-04-16 15:24:54 -070027#include <linux/nmi.h>
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -070028#include <linux/kprobes.h>
Vivek Goyal8bcc5282006-04-18 12:35:13 +020029#include <linux/kexec.h>
Jan Beulichb538ed22006-06-26 13:57:32 +020030#include <linux/unwind.h>
Andi Kleenab2bf0c2006-12-07 02:14:06 +010031#include <linux/uaccess.h>
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -080032#include <linux/bug.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070033#include <linux/kdebug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Dave Jiangc0d12172007-07-19 01:49:46 -070035#if defined(CONFIG_EDAC)
36#include <linux/edac.h>
37#endif
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/io.h>
41#include <asm/atomic.h>
42#include <asm/debugreg.h>
43#include <asm/desc.h>
44#include <asm/i387.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/processor.h>
Jan Beulichb538ed22006-06-26 13:57:32 +020046#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/smp.h>
48#include <asm/pgalloc.h>
49#include <asm/pda.h>
50#include <asm/proto.h>
51#include <asm/nmi.h>
Andi Kleenc0b766f2006-09-26 10:52:34 +020052#include <asm/stacktrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054asmlinkage void divide_error(void);
55asmlinkage void debug(void);
56asmlinkage void nmi(void);
57asmlinkage void int3(void);
58asmlinkage void overflow(void);
59asmlinkage void bounds(void);
60asmlinkage void invalid_op(void);
61asmlinkage void device_not_available(void);
62asmlinkage void double_fault(void);
63asmlinkage void coprocessor_segment_overrun(void);
64asmlinkage void invalid_TSS(void);
65asmlinkage void segment_not_present(void);
66asmlinkage void stack_segment(void);
67asmlinkage void general_protection(void);
68asmlinkage void page_fault(void);
69asmlinkage void coprocessor_error(void);
70asmlinkage void simd_coprocessor_error(void);
71asmlinkage void reserved(void);
72asmlinkage void alignment_check(void);
73asmlinkage void machine_check(void);
74asmlinkage void spurious_interrupt_bug(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static inline void conditional_sti(struct pt_regs *regs)
77{
78 if (regs->eflags & X86_EFLAGS_IF)
79 local_irq_enable();
80}
81
John Blackwooda65d17c2006-02-12 14:34:58 -080082static inline void preempt_conditional_sti(struct pt_regs *regs)
83{
84 preempt_disable();
85 if (regs->eflags & X86_EFLAGS_IF)
86 local_irq_enable();
87}
88
89static inline void preempt_conditional_cli(struct pt_regs *regs)
90{
91 if (regs->eflags & X86_EFLAGS_IF)
92 local_irq_disable();
Andi Kleen40e59a62006-05-15 18:19:47 +020093 /* Make sure to not schedule here because we could be running
94 on an exception stack. */
John Blackwooda65d17c2006-02-12 14:34:58 -080095 preempt_enable_no_resched();
96}
97
Chuck Ebbert0741f4d2006-12-07 02:14:11 +010098int kstack_depth_to_print = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100#ifdef CONFIG_KALLSYMS
Ingo Molnar3ac94932006-07-03 00:24:36 -0700101void printk_address(unsigned long address)
102{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 unsigned long offset = 0, symsize;
104 const char *symname;
105 char *modname;
Ingo Molnar3ac94932006-07-03 00:24:36 -0700106 char *delim = ":";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 char namebuf[128];
108
Ingo Molnar3ac94932006-07-03 00:24:36 -0700109 symname = kallsyms_lookup(address, &symsize, &offset,
110 &modname, namebuf);
111 if (!symname) {
112 printk(" [<%016lx>]\n", address);
113 return;
114 }
115 if (!modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 modname = delim = "";
Ingo Molnar3ac94932006-07-03 00:24:36 -0700117 printk(" [<%016lx>] %s%s%s%s+0x%lx/0x%lx\n",
118 address, delim, modname, delim, symname, offset, symsize);
119}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#else
Ingo Molnar3ac94932006-07-03 00:24:36 -0700121void printk_address(unsigned long address)
122{
123 printk(" [<%016lx>]\n", address);
124}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#endif
126
Andi Kleen0a658002005-04-16 15:25:17 -0700127static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
Andi Kleenc0b766f2006-09-26 10:52:34 +0200128 unsigned *usedp, char **idp)
Andi Kleen0a658002005-04-16 15:25:17 -0700129{
Jan Beulichb556b352006-01-11 22:43:00 +0100130 static char ids[][8] = {
Andi Kleen0a658002005-04-16 15:25:17 -0700131 [DEBUG_STACK - 1] = "#DB",
132 [NMI_STACK - 1] = "NMI",
133 [DOUBLEFAULT_STACK - 1] = "#DF",
134 [STACKFAULT_STACK - 1] = "#SS",
135 [MCE_STACK - 1] = "#MC",
Jan Beulichb556b352006-01-11 22:43:00 +0100136#if DEBUG_STKSZ > EXCEPTION_STKSZ
137 [N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
138#endif
Andi Kleen0a658002005-04-16 15:25:17 -0700139 };
140 unsigned k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700142 /*
143 * Iterate over all exception stacks, and figure out whether
144 * 'stack' is in one of them:
145 */
Andi Kleen0a658002005-04-16 15:25:17 -0700146 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
Keith Owensf5741642006-09-26 10:52:38 +0200147 unsigned long end = per_cpu(orig_ist, cpu).ist[k];
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700148 /*
149 * Is 'stack' above this exception frame's end?
150 * If yes then skip to the next frame.
151 */
Andi Kleen0a658002005-04-16 15:25:17 -0700152 if (stack >= end)
153 continue;
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700154 /*
155 * Is 'stack' above this exception frame's start address?
156 * If yes then we found the right frame.
157 */
Andi Kleen0a658002005-04-16 15:25:17 -0700158 if (stack >= end - EXCEPTION_STKSZ) {
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700159 /*
160 * Make sure we only iterate through an exception
161 * stack once. If it comes up for the second time
162 * then there's something wrong going on - just
163 * break out and return NULL:
164 */
Andi Kleen0a658002005-04-16 15:25:17 -0700165 if (*usedp & (1U << k))
166 break;
167 *usedp |= 1U << k;
168 *idp = ids[k];
169 return (unsigned long *)end;
170 }
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700171 /*
172 * If this is a debug stack, and if it has a larger size than
173 * the usual exception stacks, then 'stack' might still
174 * be within the lower portion of the debug stack:
175 */
Jan Beulichb556b352006-01-11 22:43:00 +0100176#if DEBUG_STKSZ > EXCEPTION_STKSZ
177 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
178 unsigned j = N_EXCEPTION_STACKS - 1;
179
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700180 /*
181 * Black magic. A large debug stack is composed of
182 * multiple exception stack entries, which we
183 * iterate through now. Dont look:
184 */
Jan Beulichb556b352006-01-11 22:43:00 +0100185 do {
186 ++j;
187 end -= EXCEPTION_STKSZ;
188 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
189 } while (stack < end - EXCEPTION_STKSZ);
190 if (*usedp & (1U << j))
191 break;
192 *usedp |= 1U << j;
193 *idp = ids[j];
194 return (unsigned long *)end;
195 }
196#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
198 return NULL;
Andi Kleen0a658002005-04-16 15:25:17 -0700199}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Andi Kleenb615ebd2006-12-07 02:14:00 +0100201#define MSG(txt) ops->warning(data, txt)
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203/*
204 * x86-64 can have upto three kernel stacks:
205 * process stack
206 * interrupt stack
Andi Kleen0a658002005-04-16 15:25:17 -0700207 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 */
209
Andi Kleenc547c772006-11-28 20:12:59 +0100210static inline int valid_stack_ptr(struct thread_info *tinfo, void *p)
211{
212 void *t = (void *)tinfo;
213 return p > t && p < t + THREAD_SIZE - 3;
214}
215
Andi Kleenb615ebd2006-12-07 02:14:00 +0100216void dump_trace(struct task_struct *tsk, struct pt_regs *regs,
217 unsigned long *stack,
Jan Beulich9689ba82007-10-17 18:04:37 +0200218 const struct stacktrace_ops *ops, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Andrew Mortonda689332006-12-07 02:14:02 +0100220 const unsigned cpu = get_cpu();
Andi Kleenb615ebd2006-12-07 02:14:00 +0100221 unsigned long *irqstack_end = (unsigned long*)cpu_pda(cpu)->irqstackptr;
Andi Kleen0a658002005-04-16 15:25:17 -0700222 unsigned used = 0;
Andi Kleenc547c772006-11-28 20:12:59 +0100223 struct thread_info *tinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Jan Beulichb538ed22006-06-26 13:57:32 +0200225 if (!tsk)
226 tsk = current;
227
Andi Kleenc0b766f2006-09-26 10:52:34 +0200228 if (!stack) {
229 unsigned long dummy;
230 stack = &dummy;
231 if (tsk && tsk != current)
232 stack = (unsigned long *)tsk->thread.rsp;
Jan Beulichb538ed22006-06-26 13:57:32 +0200233 }
234
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700235 /*
236 * Print function call entries within a stack. 'cond' is the
237 * "end of stackframe" condition, that the 'stack++'
238 * iteration will eventually trigger.
239 */
Andi Kleen0a658002005-04-16 15:25:17 -0700240#define HANDLE_STACK(cond) \
241 do while (cond) { \
Jan Beulich1b2f6302006-01-11 22:46:45 +0100242 unsigned long addr = *stack++; \
Andi Kleen446f7132006-12-07 02:14:12 +0100243 /* Use unlocked access here because except for NMIs \
244 we should be already protected against module unloads */ \
245 if (__kernel_text_address(addr)) { \
Andi Kleen0a658002005-04-16 15:25:17 -0700246 /* \
247 * If the address is either in the text segment of the \
248 * kernel, or in the region which contains vmalloc'ed \
249 * memory, it *may* be the address of a calling \
250 * routine; if so, print it so that someone tracing \
251 * down the cause of the crash will be able to figure \
252 * out the call path that was taken. \
253 */ \
Andi Kleenc0b766f2006-09-26 10:52:34 +0200254 ops->address(data, addr); \
Andi Kleen0a658002005-04-16 15:25:17 -0700255 } \
256 } while (0)
257
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700258 /*
259 * Print function call entries in all stacks, starting at the
260 * current stack address. If the stacks consist of nested
261 * exceptions
262 */
Andi Kleenc0b766f2006-09-26 10:52:34 +0200263 for (;;) {
264 char *id;
Andi Kleen0a658002005-04-16 15:25:17 -0700265 unsigned long *estack_end;
266 estack_end = in_exception_stack(cpu, (unsigned long)stack,
267 &used, &id);
268
269 if (estack_end) {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200270 if (ops->stack(data, id) < 0)
271 break;
Andi Kleen0a658002005-04-16 15:25:17 -0700272 HANDLE_STACK (stack < estack_end);
Andi Kleenc0b766f2006-09-26 10:52:34 +0200273 ops->stack(data, "<EOE>");
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700274 /*
275 * We link to the next stack via the
276 * second-to-last pointer (index -2 to end) in the
277 * exception stack:
278 */
Andi Kleen0a658002005-04-16 15:25:17 -0700279 stack = (unsigned long *) estack_end[-2];
280 continue;
281 }
282 if (irqstack_end) {
283 unsigned long *irqstack;
284 irqstack = irqstack_end -
285 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
286
287 if (stack >= irqstack && stack < irqstack_end) {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200288 if (ops->stack(data, "IRQ") < 0)
289 break;
Andi Kleen0a658002005-04-16 15:25:17 -0700290 HANDLE_STACK (stack < irqstack_end);
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700291 /*
292 * We link to the next stack (which would be
293 * the process stack normally) the last
294 * pointer (index -1 to end) in the IRQ stack:
295 */
Andi Kleen0a658002005-04-16 15:25:17 -0700296 stack = (unsigned long *) (irqstack_end[-1]);
297 irqstack_end = NULL;
Andi Kleenc0b766f2006-09-26 10:52:34 +0200298 ops->stack(data, "EOI");
Andi Kleen0a658002005-04-16 15:25:17 -0700299 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301 }
Andi Kleen0a658002005-04-16 15:25:17 -0700302 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Andi Kleen0a658002005-04-16 15:25:17 -0700304
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700305 /*
Andi Kleenc0b766f2006-09-26 10:52:34 +0200306 * This handles the process stack:
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700307 */
OGAWA Hirofumi7523c4d2007-01-04 01:21:28 +0900308 tinfo = task_thread_info(tsk);
Andi Kleenc547c772006-11-28 20:12:59 +0100309 HANDLE_STACK (valid_stack_ptr(tinfo, stack));
Andi Kleen0a658002005-04-16 15:25:17 -0700310#undef HANDLE_STACK
Andrew Mortonda689332006-12-07 02:14:02 +0100311 put_cpu();
Andi Kleenc0b766f2006-09-26 10:52:34 +0200312}
313EXPORT_SYMBOL(dump_trace);
Ingo Molnar3ac94932006-07-03 00:24:36 -0700314
Andi Kleenc0b766f2006-09-26 10:52:34 +0200315static void
316print_trace_warning_symbol(void *data, char *msg, unsigned long symbol)
317{
318 print_symbol(msg, symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 printk("\n");
320}
321
Andi Kleenc0b766f2006-09-26 10:52:34 +0200322static void print_trace_warning(void *data, char *msg)
323{
324 printk("%s\n", msg);
325}
326
327static int print_trace_stack(void *data, char *name)
328{
329 printk(" <%s> ", name);
330 return 0;
331}
332
333static void print_trace_address(void *data, unsigned long addr)
334{
Konrad Rzeszutek1c978b92007-07-17 04:03:56 -0700335 touch_nmi_watchdog();
Andi Kleenc0b766f2006-09-26 10:52:34 +0200336 printk_address(addr);
337}
338
Jan Beulich9689ba82007-10-17 18:04:37 +0200339static const struct stacktrace_ops print_trace_ops = {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200340 .warning = print_trace_warning,
341 .warning_symbol = print_trace_warning_symbol,
342 .stack = print_trace_stack,
343 .address = print_trace_address,
344};
345
346void
347show_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long *stack)
348{
349 printk("\nCall Trace:\n");
350 dump_trace(tsk, regs, stack, &print_trace_ops, NULL);
351 printk("\n");
352}
353
354static void
355_show_stack(struct task_struct *tsk, struct pt_regs *regs, unsigned long *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 unsigned long *stack;
358 int i;
Andi Kleen151f8cc2006-09-26 10:52:37 +0200359 const int cpu = smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100360 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
361 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 // debugging aid: "show_stack(NULL, NULL);" prints the
364 // back trace for this cpu.
365
366 if (rsp == NULL) {
367 if (tsk)
368 rsp = (unsigned long *)tsk->thread.rsp;
369 else
370 rsp = (unsigned long *)&rsp;
371 }
372
373 stack = rsp;
374 for(i=0; i < kstack_depth_to_print; i++) {
375 if (stack >= irqstack && stack <= irqstack_end) {
376 if (stack == irqstack_end) {
377 stack = (unsigned long *) (irqstack_end[-1]);
378 printk(" <EOI> ");
379 }
380 } else {
381 if (((long) stack & (THREAD_SIZE-1)) == 0)
382 break;
383 }
384 if (i && ((i % 4) == 0))
Ingo Molnar3ac94932006-07-03 00:24:36 -0700385 printk("\n");
386 printk(" %016lx", *stack++);
akpm@osdl.org35faa712005-04-16 15:24:54 -0700387 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
Jan Beulichb538ed22006-06-26 13:57:32 +0200389 show_trace(tsk, regs, rsp);
390}
391
392void show_stack(struct task_struct *tsk, unsigned long * rsp)
393{
394 _show_stack(tsk, NULL, rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
397/*
398 * The architecture-independent dump_stack generator
399 */
400void dump_stack(void)
401{
402 unsigned long dummy;
Jan Beulichb538ed22006-06-26 13:57:32 +0200403 show_trace(NULL, NULL, &dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
406EXPORT_SYMBOL(dump_stack);
407
408void show_registers(struct pt_regs *regs)
409{
410 int i;
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700411 int in_kernel = !user_mode(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 unsigned long rsp;
Andi Kleen151f8cc2006-09-26 10:52:37 +0200413 const int cpu = smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100414 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Andi Kleend039c682007-05-02 19:27:08 +0200416 rsp = regs->rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 printk("CPU %d ", cpu);
418 __show_regs(regs);
419 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
Al Viroe4f17c42006-01-12 01:05:38 -0800420 cur->comm, cur->pid, task_thread_info(cur), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 /*
423 * When in-kernel, we also print out the stack and code at the
424 * time of the fault..
425 */
426 if (in_kernel) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 printk("Stack: ");
Jan Beulichb538ed22006-06-26 13:57:32 +0200428 _show_stack(NULL, regs, (unsigned long*)rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 printk("\nCode: ");
Roberto Nibali2b692a82006-03-25 16:29:55 +0100431 if (regs->rip < PAGE_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 goto bad;
433
Roberto Nibali2b692a82006-03-25 16:29:55 +0100434 for (i=0; i<20; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 unsigned char c;
Roberto Nibali2b692a82006-03-25 16:29:55 +0100436 if (__get_user(c, &((unsigned char*)regs->rip)[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437bad:
438 printk(" Bad RIP value.");
439 break;
440 }
441 printk("%02x ", c);
442 }
443 }
444 printk("\n");
445}
446
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -0800447int is_valid_bugaddr(unsigned long rip)
448{
449 unsigned short ud2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -0800451 if (__copy_from_user(&ud2, (const void __user *) rip, sizeof(ud2)))
452 return 0;
453
454 return ud2 == 0x0b0f;
455}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700457#ifdef CONFIG_BUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458void out_of_line_bug(void)
459{
460 BUG();
461}
Andi Kleen2ee60e172006-06-26 13:59:44 +0200462EXPORT_SYMBOL(out_of_line_bug);
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700463#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Andi Kleen39743c92007-10-19 20:35:03 +0200465static raw_spinlock_t die_lock = __RAW_SPIN_LOCK_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466static int die_owner = -1;
Corey Minyardcdc60a42006-05-08 15:17:22 +0200467static unsigned int die_nest_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100469unsigned __kprobes long oops_begin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Andrew Mortonb39b7032007-06-08 13:47:01 -0700471 int cpu;
Jan Beulich12091402005-09-12 18:49:24 +0200472 unsigned long flags;
473
Andrew Mortonabf0f102006-09-26 10:52:36 +0200474 oops_enter();
475
Jan Beulich12091402005-09-12 18:49:24 +0200476 /* racy, but better than risking deadlock. */
Andi Kleen39743c92007-10-19 20:35:03 +0200477 raw_local_irq_save(flags);
Andrew Mortonb39b7032007-06-08 13:47:01 -0700478 cpu = smp_processor_id();
Andi Kleen39743c92007-10-19 20:35:03 +0200479 if (!__raw_spin_trylock(&die_lock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (cpu == die_owner)
481 /* nested oops. should stop eventually */;
482 else
Andi Kleen39743c92007-10-19 20:35:03 +0200483 __raw_spin_lock(&die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
Corey Minyardcdc60a42006-05-08 15:17:22 +0200485 die_nest_count++;
Jan Beulich12091402005-09-12 18:49:24 +0200486 die_owner = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 console_verbose();
Jan Beulich12091402005-09-12 18:49:24 +0200488 bust_spinlocks(1);
489 return flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100492void __kprobes oops_end(unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
494 die_owner = -1;
Jan Beulich12091402005-09-12 18:49:24 +0200495 bust_spinlocks(0);
Corey Minyardcdc60a42006-05-08 15:17:22 +0200496 die_nest_count--;
Andi Kleen39743c92007-10-19 20:35:03 +0200497 if (!die_nest_count)
Corey Minyardcdc60a42006-05-08 15:17:22 +0200498 /* Nest count reaches zero, release the lock. */
Andi Kleen39743c92007-10-19 20:35:03 +0200499 __raw_spin_unlock(&die_lock);
500 raw_local_irq_restore(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
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200583 if (show_unhandled_signals && unhandled_signal(tsk, signr) &&
584 printk_ratelimit())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 printk(KERN_INFO
586 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
587 tsk->comm, tsk->pid, str,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100588 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (info)
591 force_sig_info(signr, info, tsk);
592 else
593 force_sig(signr, tsk);
594 return;
595 }
596
597
598 /* kernel trap */
599 {
600 const struct exception_table_entry *fixup;
601 fixup = search_exception_tables(regs->rip);
Roberto Nibali2b692a82006-03-25 16:29:55 +0100602 if (fixup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 regs->rip = fixup->fixup;
Andi Kleend1895182007-05-02 19:27:05 +0200604 else {
605 tsk->thread.error_code = error_code;
606 tsk->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 die(str, regs, error_code);
Andi Kleend1895182007-05-02 19:27:05 +0200608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return;
610 }
611}
612
613#define DO_ERROR(trapnr, signr, str, name) \
614asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
615{ \
616 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
617 == NOTIFY_STOP) \
618 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200619 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 do_trap(trapnr, signr, str, regs, error_code, NULL); \
621}
622
623#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
624asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
625{ \
626 siginfo_t info; \
627 info.si_signo = signr; \
628 info.si_errno = 0; \
629 info.si_code = sicode; \
630 info.si_addr = (void __user *)siaddr; \
631 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
632 == NOTIFY_STOP) \
633 return; \
Andi Kleen40e59a62006-05-15 18:19:47 +0200634 conditional_sti(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 do_trap(trapnr, signr, str, regs, error_code, &info); \
636}
637
638DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
639DO_ERROR( 4, SIGSEGV, "overflow", overflow)
640DO_ERROR( 5, SIGSEGV, "bounds", bounds)
Chuck Ebbert100c0e32006-01-11 22:46:00 +0100641DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
643DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
644DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
645DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
646DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
647DO_ERROR(18, SIGSEGV, "reserved", reserved)
Andi Kleen40e59a62006-05-15 18:19:47 +0200648
649/* Runs on IST stack */
650asmlinkage void do_stack_segment(struct pt_regs *regs, long error_code)
651{
652 if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
653 12, SIGBUS) == NOTIFY_STOP)
654 return;
655 preempt_conditional_sti(regs);
656 do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
657 preempt_conditional_cli(regs);
658}
Jan Beulicheca37c12006-01-11 22:42:17 +0100659
660asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
661{
662 static const char str[] = "double fault";
663 struct task_struct *tsk = current;
664
665 /* Return not checked because double check cannot be ignored */
666 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
667
668 tsk->thread.error_code = error_code;
669 tsk->thread.trap_no = 8;
670
671 /* This is always a kernel trap and never fixable (and thus must
672 never return). */
673 for (;;)
674 die(str, regs, error_code);
675}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700677asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
678 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100680 struct task_struct *tsk = current;
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 conditional_sti(regs);
683
Jan Beulich6e3f3612006-01-11 22:42:14 +0100684 if (user_mode(regs)) {
Andi Kleend1895182007-05-02 19:27:05 +0200685 tsk->thread.error_code = error_code;
686 tsk->thread.trap_no = 13;
687
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200688 if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
689 printk_ratelimit())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 printk(KERN_INFO
691 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
692 tsk->comm, tsk->pid,
Roberto Nibali2b692a82006-03-25 16:29:55 +0100693 regs->rip, regs->rsp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 force_sig(SIGSEGV, tsk);
696 return;
697 }
698
699 /* kernel gp */
700 {
701 const struct exception_table_entry *fixup;
702 fixup = search_exception_tables(regs->rip);
703 if (fixup) {
704 regs->rip = fixup->fixup;
705 return;
706 }
Andi Kleend1895182007-05-02 19:27:05 +0200707
708 tsk->thread.error_code = error_code;
709 tsk->thread.trap_no = 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (notify_die(DIE_GPF, "general protection fault", regs,
711 error_code, 13, SIGSEGV) == NOTIFY_STOP)
712 return;
713 die("general protection fault", regs, error_code);
714 }
715}
716
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100717static __kprobes void
718mem_parity_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Don Zickusc41c5cd2006-09-26 10:52:27 +0200720 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
721 reason);
Andi Kleen9c5f8be2006-12-07 02:14:03 +0100722 printk(KERN_EMERG "You have some hardware problem, likely on the PCI bus.\n");
Don Zickusc41c5cd2006-09-26 10:52:27 +0200723
Dave Jiangc0d12172007-07-19 01:49:46 -0700724#if defined(CONFIG_EDAC)
725 if(edac_handler_set()) {
726 edac_atomic_assert_error();
727 return;
728 }
729#endif
730
Don Zickus8da5add2006-09-26 10:52:27 +0200731 if (panic_on_unrecovered_nmi)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200732 panic("NMI: Not continuing");
733
734 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 /* Clear and disable the memory parity error line. */
737 reason = (reason & 0xf) | 4;
738 outb(reason, 0x61);
739}
740
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100741static __kprobes void
742io_check_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
744 printk("NMI: IOCK error (debug interrupt?)\n");
745 show_registers(regs);
746
747 /* Re-enable the IOCK line, wait for a few seconds */
748 reason = (reason & 0xf) | 8;
749 outb(reason, 0x61);
750 mdelay(2000);
751 reason &= ~8;
752 outb(reason, 0x61);
753}
754
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100755static __kprobes void
756unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200757{
758 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
759 reason);
760 printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n");
Don Zickus8da5add2006-09-26 10:52:27 +0200761
762 if (panic_on_unrecovered_nmi)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200763 panic("NMI: Not continuing");
Don Zickus8da5add2006-09-26 10:52:27 +0200764
Don Zickusc41c5cd2006-09-26 10:52:27 +0200765 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700768/* Runs on IST stack. This code must keep interrupts off all the time.
769 Nested NMIs are prevented by the CPU. */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100770asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 unsigned char reason = 0;
Ashok Raj76e4f662005-06-25 14:55:00 -0700773 int cpu;
774
775 cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 /* Only the BSP gets external NMIs from the system. */
Ashok Raj76e4f662005-06-25 14:55:00 -0700778 if (!cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 reason = get_nmi_reason();
780
781 if (!(reason & 0xc0)) {
Jan Beulich6e3f3612006-01-11 22:42:14 +0100782 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 == NOTIFY_STOP)
784 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 /*
786 * Ok, so this is none of the documented NMI sources,
787 * so it must be the NMI watchdog.
788 */
Don Zickus3adbbcce2006-09-26 10:52:26 +0200789 if (nmi_watchdog_tick(regs,reason))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return;
Don Zickus3adbbcce2006-09-26 10:52:26 +0200791 if (!do_nmi_callback(regs,cpu))
Don Zickus3adbbcce2006-09-26 10:52:26 +0200792 unknown_nmi_error(reason, regs);
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return;
795 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100796 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return;
798
799 /* AK: following checks seem to be broken on modern chipsets. FIXME */
800
801 if (reason & 0x80)
802 mem_parity_error(reason, regs);
803 if (reason & 0x40)
804 io_check_error(reason, regs);
805}
806
Jan Beulichb556b352006-01-11 22:43:00 +0100807/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700808asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
811 return;
812 }
Andi Kleen40e59a62006-05-15 18:19:47 +0200813 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
Andi Kleen40e59a62006-05-15 18:19:47 +0200815 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700818/* Help handler running on IST stack to switch back to user stack
819 for scheduling or signal handling. The actual stack switch is done in
820 entry.S */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100821asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700823 struct pt_regs *regs = eregs;
824 /* Did already sync */
825 if (eregs == (struct pt_regs *)eregs->rsp)
826 ;
827 /* Exception from user space */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700828 else if (user_mode(eregs))
Al Virobb049232006-01-12 01:05:38 -0800829 regs = task_pt_regs(current);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700830 /* Exception from kernel and interrupts are enabled. Move to
831 kernel process stack. */
832 else if (eregs->eflags & X86_EFLAGS_IF)
833 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
834 if (eregs != regs)
835 *regs = *eregs;
836 return regs;
837}
838
839/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700840asmlinkage void __kprobes do_debug(struct pt_regs * regs,
841 unsigned long error_code)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700842{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 unsigned long condition;
844 struct task_struct *tsk = current;
845 siginfo_t info;
846
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700847 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
Andi Kleendaeeafe2005-04-16 15:25:13 -0700850 SIGTRAP) == NOTIFY_STOP)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700851 return;
Andi Kleendaeeafe2005-04-16 15:25:13 -0700852
John Blackwooda65d17c2006-02-12 14:34:58 -0800853 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 /* Mask out spurious debug traps due to lazy DR7 setting */
856 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
857 if (!tsk->thread.debugreg7) {
858 goto clear_dr7;
859 }
860 }
861
862 tsk->thread.debugreg6 = condition;
863
864 /* Mask out spurious TF errors due to lazy TF clearing */
Andi Kleendaeeafe2005-04-16 15:25:13 -0700865 if (condition & DR_STEP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 /*
867 * The TF error should be masked out only if the current
868 * process is not traced and if the TRAP flag has been set
869 * previously by a tracing process (condition detected by
870 * the PT_DTRACE flag); remember that the i386 TRAP flag
871 * can be modified by the process itself in user mode,
872 * allowing programs to debug themselves without the ptrace()
873 * interface.
874 */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700875 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 goto clear_TF_reenable;
Andi Kleenbe61bff2005-04-16 15:24:57 -0700877 /*
878 * Was the TF flag set by a debugger? If so, clear it now,
879 * so that register information is correct.
880 */
881 if (tsk->ptrace & PT_DTRACE) {
882 regs->eflags &= ~TF_MASK;
883 tsk->ptrace &= ~PT_DTRACE;
884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
886
887 /* Ok, finally something we can handle */
888 tsk->thread.trap_no = 1;
889 tsk->thread.error_code = error_code;
890 info.si_signo = SIGTRAP;
891 info.si_errno = 0;
892 info.si_code = TRAP_BRKPT;
John Blackwood01b8faa2006-01-11 22:44:15 +0100893 info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
894 force_sig_info(SIGTRAP, &info, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896clear_dr7:
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700897 set_debugreg(0UL, 7);
John Blackwooda65d17c2006-02-12 14:34:58 -0800898 preempt_conditional_cli(regs);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700899 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901clear_TF_reenable:
902 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 regs->eflags &= ~TF_MASK;
John Blackwooda65d17c2006-02-12 14:34:58 -0800904 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
906
Jan Beulich6e3f3612006-01-11 22:42:14 +0100907static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
909 const struct exception_table_entry *fixup;
910 fixup = search_exception_tables(regs->rip);
911 if (fixup) {
912 regs->rip = fixup->fixup;
913 return 1;
914 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100915 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
Andi Kleen3a848f62005-04-16 15:25:06 -0700916 /* Illegal floating point operation in the kernel */
Jan Beulich6e3f3612006-01-11 22:42:14 +0100917 current->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 die(str, regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 return 0;
920}
921
922/*
923 * Note that we play around with the 'TS' bit in an attempt to get
924 * the correct behaviour even in the presence of the asynchronous
925 * IRQ13 behaviour
926 */
927asmlinkage void do_coprocessor_error(struct pt_regs *regs)
928{
929 void __user *rip = (void __user *)(regs->rip);
930 struct task_struct * task;
931 siginfo_t info;
932 unsigned short cwd, swd;
933
934 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700935 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100936 kernel_math_error(regs, "kernel x87 math error", 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 return;
938
939 /*
940 * Save the info for the exception handler and clear the error.
941 */
942 task = current;
943 save_init_fpu(task);
944 task->thread.trap_no = 16;
945 task->thread.error_code = 0;
946 info.si_signo = SIGFPE;
947 info.si_errno = 0;
948 info.si_code = __SI_FAULT;
949 info.si_addr = rip;
950 /*
951 * (~cwd & swd) will mask out exceptions that are not set to unmasked
952 * status. 0x3f is the exception bits in these regs, 0x200 is the
953 * C1 reg you need in case of a stack fault, 0x040 is the stack
954 * fault bit. We should only be taking one exception at a time,
955 * so if this combination doesn't produce any single exception,
956 * then we have a bad program that isn't synchronizing its FPU usage
957 * and it will suffer the consequences since we won't be able to
958 * fully reproduce the context of the exception
959 */
960 cwd = get_fpu_cwd(task);
961 swd = get_fpu_swd(task);
Chuck Ebbertff347b22005-09-12 18:49:25 +0200962 switch (swd & ~cwd & 0x3f) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 case 0x000:
964 default:
965 break;
966 case 0x001: /* Invalid Op */
Chuck Ebbertff347b22005-09-12 18:49:25 +0200967 /*
968 * swd & 0x240 == 0x040: Stack Underflow
969 * swd & 0x240 == 0x240: Stack Overflow
970 * User must clear the SF bit (0x40) if set
971 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 info.si_code = FPE_FLTINV;
973 break;
974 case 0x002: /* Denormalize */
975 case 0x010: /* Underflow */
976 info.si_code = FPE_FLTUND;
977 break;
978 case 0x004: /* Zero Divide */
979 info.si_code = FPE_FLTDIV;
980 break;
981 case 0x008: /* Overflow */
982 info.si_code = FPE_FLTOVF;
983 break;
984 case 0x020: /* Precision */
985 info.si_code = FPE_FLTRES;
986 break;
987 }
988 force_sig_info(SIGFPE, &info, task);
989}
990
991asmlinkage void bad_intr(void)
992{
993 printk("bad interrupt");
994}
995
996asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
997{
998 void __user *rip = (void __user *)(regs->rip);
999 struct task_struct * task;
1000 siginfo_t info;
1001 unsigned short mxcsr;
1002
1003 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -07001004 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +01001005 kernel_math_error(regs, "kernel simd math error", 19))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return;
1007
1008 /*
1009 * Save the info for the exception handler and clear the error.
1010 */
1011 task = current;
1012 save_init_fpu(task);
1013 task->thread.trap_no = 19;
1014 task->thread.error_code = 0;
1015 info.si_signo = SIGFPE;
1016 info.si_errno = 0;
1017 info.si_code = __SI_FAULT;
1018 info.si_addr = rip;
1019 /*
1020 * The SIMD FPU exceptions are handled a little differently, as there
1021 * is only a single status/control register. Thus, to determine which
1022 * unmasked exception was caught we must mask the exception mask bits
1023 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
1024 */
1025 mxcsr = get_fpu_mxcsr(task);
1026 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
1027 case 0x000:
1028 default:
1029 break;
1030 case 0x001: /* Invalid Op */
1031 info.si_code = FPE_FLTINV;
1032 break;
1033 case 0x002: /* Denormalize */
1034 case 0x010: /* Underflow */
1035 info.si_code = FPE_FLTUND;
1036 break;
1037 case 0x004: /* Zero Divide */
1038 info.si_code = FPE_FLTDIV;
1039 break;
1040 case 0x008: /* Overflow */
1041 info.si_code = FPE_FLTOVF;
1042 break;
1043 case 0x020: /* Precision */
1044 info.si_code = FPE_FLTRES;
1045 break;
1046 }
1047 force_sig_info(SIGFPE, &info, task);
1048}
1049
1050asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
1051{
1052}
1053
1054asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
1055{
1056}
1057
Jacob Shin89b831e2005-11-05 17:25:53 +01001058asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
1059{
1060}
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062/*
1063 * 'math_state_restore()' saves the current math information in the
1064 * old math state array, and gets the new ones from the current task
1065 *
1066 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1067 * Don't touch unless you *really* know how it works.
1068 */
1069asmlinkage void math_state_restore(void)
1070{
1071 struct task_struct *me = current;
1072 clts(); /* Allow maths ops (or we recurse) */
1073
1074 if (!used_math())
1075 init_fpu(me);
1076 restore_fpu_checking(&me->thread.i387.fxsave);
Al Viroe4f17c42006-01-12 01:05:38 -08001077 task_thread_info(me)->status |= TS_USEDFPU;
Arjan van de Vene07e23e2006-09-26 10:52:36 +02001078 me->fpu_counter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079}
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081void __init trap_init(void)
1082{
1083 set_intr_gate(0,&divide_error);
1084 set_intr_gate_ist(1,&debug,DEBUG_STACK);
1085 set_intr_gate_ist(2,&nmi,NMI_STACK);
Jan Beulichb556b352006-01-11 22:43:00 +01001086 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
Jan Beulich0a521582006-01-11 22:42:08 +01001087 set_system_gate(4,&overflow); /* int4 can be called from all */
1088 set_intr_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 set_intr_gate(6,&invalid_op);
1090 set_intr_gate(7,&device_not_available);
1091 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
1092 set_intr_gate(9,&coprocessor_segment_overrun);
1093 set_intr_gate(10,&invalid_TSS);
1094 set_intr_gate(11,&segment_not_present);
1095 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
1096 set_intr_gate(13,&general_protection);
1097 set_intr_gate(14,&page_fault);
1098 set_intr_gate(15,&spurious_interrupt_bug);
1099 set_intr_gate(16,&coprocessor_error);
1100 set_intr_gate(17,&alignment_check);
1101#ifdef CONFIG_X86_MCE
1102 set_intr_gate_ist(18,&machine_check, MCE_STACK);
1103#endif
1104 set_intr_gate(19,&simd_coprocessor_error);
1105
1106#ifdef CONFIG_IA32_EMULATION
1107 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1108#endif
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /*
1111 * Should be a barrier for any external CPU state.
1112 */
1113 cpu_init();
1114}
1115
1116
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001117static int __init oops_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001119 if (!s)
1120 return -EINVAL;
1121 if (!strcmp(s, "panic"))
1122 panic_on_oops = 1;
1123 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001125early_param("oops", oops_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127static int __init kstack_setup(char *s)
1128{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001129 if (!s)
1130 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 kstack_depth_to_print = simple_strtoul(s,NULL,0);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001132 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001134early_param("kstack", kstack_setup);