blob: 37b07d08704b1b787f307400f13ad8b5ce062ecc [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>
Arjan van de Ven57c351d2007-11-26 20:42:19 +010034#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Dave Jiangc0d12172007-07-19 01:49:46 -070036#if defined(CONFIG_EDAC)
37#include <linux/edac.h>
38#endif
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/io.h>
42#include <asm/atomic.h>
43#include <asm/debugreg.h>
44#include <asm/desc.h>
45#include <asm/i387.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/processor.h>
Jan Beulichb538ed22006-06-26 13:57:32 +020047#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/smp.h>
49#include <asm/pgalloc.h>
50#include <asm/pda.h>
51#include <asm/proto.h>
52#include <asm/nmi.h>
Andi Kleenc0b766f2006-09-26 10:52:34 +020053#include <asm/stacktrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055asmlinkage void divide_error(void);
56asmlinkage void debug(void);
57asmlinkage void nmi(void);
58asmlinkage void int3(void);
59asmlinkage void overflow(void);
60asmlinkage void bounds(void);
61asmlinkage void invalid_op(void);
62asmlinkage void device_not_available(void);
63asmlinkage void double_fault(void);
64asmlinkage void coprocessor_segment_overrun(void);
65asmlinkage void invalid_TSS(void);
66asmlinkage void segment_not_present(void);
67asmlinkage void stack_segment(void);
68asmlinkage void general_protection(void);
69asmlinkage void page_fault(void);
70asmlinkage void coprocessor_error(void);
71asmlinkage void simd_coprocessor_error(void);
72asmlinkage void reserved(void);
73asmlinkage void alignment_check(void);
74asmlinkage void machine_check(void);
75asmlinkage void spurious_interrupt_bug(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static inline void conditional_sti(struct pt_regs *regs)
78{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010079 if (regs->flags & X86_EFLAGS_IF)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 local_irq_enable();
81}
82
John Blackwooda65d17c2006-02-12 14:34:58 -080083static inline void preempt_conditional_sti(struct pt_regs *regs)
84{
85 preempt_disable();
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010086 if (regs->flags & X86_EFLAGS_IF)
John Blackwooda65d17c2006-02-12 14:34:58 -080087 local_irq_enable();
88}
89
90static inline void preempt_conditional_cli(struct pt_regs *regs)
91{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010092 if (regs->flags & X86_EFLAGS_IF)
John Blackwooda65d17c2006-02-12 14:34:58 -080093 local_irq_disable();
Andi Kleen40e59a62006-05-15 18:19:47 +020094 /* Make sure to not schedule here because we could be running
95 on an exception stack. */
John Blackwooda65d17c2006-02-12 14:34:58 -080096 preempt_enable_no_resched();
97}
98
Chuck Ebbert0741f4d2006-12-07 02:14:11 +010099int kstack_depth_to_print = 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101#ifdef CONFIG_KALLSYMS
Ingo Molnar3ac94932006-07-03 00:24:36 -0700102void printk_address(unsigned long address)
103{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 unsigned long offset = 0, symsize;
105 const char *symname;
106 char *modname;
Ingo Molnar3ac94932006-07-03 00:24:36 -0700107 char *delim = ":";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 char namebuf[128];
109
Ingo Molnar3ac94932006-07-03 00:24:36 -0700110 symname = kallsyms_lookup(address, &symsize, &offset,
111 &modname, namebuf);
112 if (!symname) {
113 printk(" [<%016lx>]\n", address);
114 return;
115 }
116 if (!modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 modname = delim = "";
Ingo Molnar3ac94932006-07-03 00:24:36 -0700118 printk(" [<%016lx>] %s%s%s%s+0x%lx/0x%lx\n",
119 address, delim, modname, delim, symname, offset, symsize);
120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#else
Ingo Molnar3ac94932006-07-03 00:24:36 -0700122void printk_address(unsigned long address)
123{
124 printk(" [<%016lx>]\n", address);
125}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#endif
127
Andi Kleen0a658002005-04-16 15:25:17 -0700128static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
Andi Kleenc0b766f2006-09-26 10:52:34 +0200129 unsigned *usedp, char **idp)
Andi Kleen0a658002005-04-16 15:25:17 -0700130{
Jan Beulichb556b352006-01-11 22:43:00 +0100131 static char ids[][8] = {
Andi Kleen0a658002005-04-16 15:25:17 -0700132 [DEBUG_STACK - 1] = "#DB",
133 [NMI_STACK - 1] = "NMI",
134 [DOUBLEFAULT_STACK - 1] = "#DF",
135 [STACKFAULT_STACK - 1] = "#SS",
136 [MCE_STACK - 1] = "#MC",
Jan Beulichb556b352006-01-11 22:43:00 +0100137#if DEBUG_STKSZ > EXCEPTION_STKSZ
138 [N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
139#endif
Andi Kleen0a658002005-04-16 15:25:17 -0700140 };
141 unsigned k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700143 /*
144 * Iterate over all exception stacks, and figure out whether
145 * 'stack' is in one of them:
146 */
Andi Kleen0a658002005-04-16 15:25:17 -0700147 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
Keith Owensf5741642006-09-26 10:52:38 +0200148 unsigned long end = per_cpu(orig_ist, cpu).ist[k];
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700149 /*
150 * Is 'stack' above this exception frame's end?
151 * If yes then skip to the next frame.
152 */
Andi Kleen0a658002005-04-16 15:25:17 -0700153 if (stack >= end)
154 continue;
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700155 /*
156 * Is 'stack' above this exception frame's start address?
157 * If yes then we found the right frame.
158 */
Andi Kleen0a658002005-04-16 15:25:17 -0700159 if (stack >= end - EXCEPTION_STKSZ) {
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700160 /*
161 * Make sure we only iterate through an exception
162 * stack once. If it comes up for the second time
163 * then there's something wrong going on - just
164 * break out and return NULL:
165 */
Andi Kleen0a658002005-04-16 15:25:17 -0700166 if (*usedp & (1U << k))
167 break;
168 *usedp |= 1U << k;
169 *idp = ids[k];
170 return (unsigned long *)end;
171 }
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700172 /*
173 * If this is a debug stack, and if it has a larger size than
174 * the usual exception stacks, then 'stack' might still
175 * be within the lower portion of the debug stack:
176 */
Jan Beulichb556b352006-01-11 22:43:00 +0100177#if DEBUG_STKSZ > EXCEPTION_STKSZ
178 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
179 unsigned j = N_EXCEPTION_STACKS - 1;
180
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700181 /*
182 * Black magic. A large debug stack is composed of
183 * multiple exception stack entries, which we
184 * iterate through now. Dont look:
185 */
Jan Beulichb556b352006-01-11 22:43:00 +0100186 do {
187 ++j;
188 end -= EXCEPTION_STKSZ;
189 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
190 } while (stack < end - EXCEPTION_STKSZ);
191 if (*usedp & (1U << j))
192 break;
193 *usedp |= 1U << j;
194 *idp = ids[j];
195 return (unsigned long *)end;
196 }
197#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
199 return NULL;
Andi Kleen0a658002005-04-16 15:25:17 -0700200}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Andi Kleenb615ebd2006-12-07 02:14:00 +0100202#define MSG(txt) ops->warning(data, txt)
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/*
Simon Arlott676b1852007-10-20 01:25:36 +0200205 * x86-64 can have up to three kernel stacks:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 * process stack
207 * interrupt stack
Andi Kleen0a658002005-04-16 15:25:17 -0700208 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 */
210
Andi Kleenc547c772006-11-28 20:12:59 +0100211static inline int valid_stack_ptr(struct thread_info *tinfo, void *p)
212{
213 void *t = (void *)tinfo;
214 return p > t && p < t + THREAD_SIZE - 3;
215}
216
Andi Kleenb615ebd2006-12-07 02:14:00 +0100217void dump_trace(struct task_struct *tsk, struct pt_regs *regs,
218 unsigned long *stack,
Jan Beulich9689ba82007-10-17 18:04:37 +0200219 const struct stacktrace_ops *ops, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Andrew Mortonda689332006-12-07 02:14:02 +0100221 const unsigned cpu = get_cpu();
Andi Kleenb615ebd2006-12-07 02:14:00 +0100222 unsigned long *irqstack_end = (unsigned long*)cpu_pda(cpu)->irqstackptr;
Andi Kleen0a658002005-04-16 15:25:17 -0700223 unsigned used = 0;
Andi Kleenc547c772006-11-28 20:12:59 +0100224 struct thread_info *tinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Jan Beulichb538ed22006-06-26 13:57:32 +0200226 if (!tsk)
227 tsk = current;
228
Andi Kleenc0b766f2006-09-26 10:52:34 +0200229 if (!stack) {
230 unsigned long dummy;
231 stack = &dummy;
232 if (tsk && tsk != current)
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100233 stack = (unsigned long *)tsk->thread.sp;
Jan Beulichb538ed22006-06-26 13:57:32 +0200234 }
235
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700236 /*
237 * Print function call entries within a stack. 'cond' is the
238 * "end of stackframe" condition, that the 'stack++'
239 * iteration will eventually trigger.
240 */
Andi Kleen0a658002005-04-16 15:25:17 -0700241#define HANDLE_STACK(cond) \
242 do while (cond) { \
Jan Beulich1b2f6302006-01-11 22:46:45 +0100243 unsigned long addr = *stack++; \
Andi Kleen446f7132006-12-07 02:14:12 +0100244 /* Use unlocked access here because except for NMIs \
245 we should be already protected against module unloads */ \
246 if (__kernel_text_address(addr)) { \
Andi Kleen0a658002005-04-16 15:25:17 -0700247 /* \
248 * If the address is either in the text segment of the \
249 * kernel, or in the region which contains vmalloc'ed \
250 * memory, it *may* be the address of a calling \
251 * routine; if so, print it so that someone tracing \
252 * down the cause of the crash will be able to figure \
253 * out the call path that was taken. \
254 */ \
Andi Kleenc0b766f2006-09-26 10:52:34 +0200255 ops->address(data, addr); \
Andi Kleen0a658002005-04-16 15:25:17 -0700256 } \
257 } while (0)
258
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700259 /*
260 * Print function call entries in all stacks, starting at the
261 * current stack address. If the stacks consist of nested
262 * exceptions
263 */
Andi Kleenc0b766f2006-09-26 10:52:34 +0200264 for (;;) {
265 char *id;
Andi Kleen0a658002005-04-16 15:25:17 -0700266 unsigned long *estack_end;
267 estack_end = in_exception_stack(cpu, (unsigned long)stack,
268 &used, &id);
269
270 if (estack_end) {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200271 if (ops->stack(data, id) < 0)
272 break;
Andi Kleen0a658002005-04-16 15:25:17 -0700273 HANDLE_STACK (stack < estack_end);
Andi Kleenc0b766f2006-09-26 10:52:34 +0200274 ops->stack(data, "<EOE>");
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700275 /*
276 * We link to the next stack via the
277 * second-to-last pointer (index -2 to end) in the
278 * exception stack:
279 */
Andi Kleen0a658002005-04-16 15:25:17 -0700280 stack = (unsigned long *) estack_end[-2];
281 continue;
282 }
283 if (irqstack_end) {
284 unsigned long *irqstack;
285 irqstack = irqstack_end -
286 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
287
288 if (stack >= irqstack && stack < irqstack_end) {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200289 if (ops->stack(data, "IRQ") < 0)
290 break;
Andi Kleen0a658002005-04-16 15:25:17 -0700291 HANDLE_STACK (stack < irqstack_end);
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700292 /*
293 * We link to the next stack (which would be
294 * the process stack normally) the last
295 * pointer (index -1 to end) in the IRQ stack:
296 */
Andi Kleen0a658002005-04-16 15:25:17 -0700297 stack = (unsigned long *) (irqstack_end[-1]);
298 irqstack_end = NULL;
Andi Kleenc0b766f2006-09-26 10:52:34 +0200299 ops->stack(data, "EOI");
Andi Kleen0a658002005-04-16 15:25:17 -0700300 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302 }
Andi Kleen0a658002005-04-16 15:25:17 -0700303 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
Andi Kleen0a658002005-04-16 15:25:17 -0700305
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700306 /*
Andi Kleenc0b766f2006-09-26 10:52:34 +0200307 * This handles the process stack:
Ingo Molnarc9ca1ba2006-07-03 00:24:36 -0700308 */
OGAWA Hirofumi7523c4d2007-01-04 01:21:28 +0900309 tinfo = task_thread_info(tsk);
Andi Kleenc547c772006-11-28 20:12:59 +0100310 HANDLE_STACK (valid_stack_ptr(tinfo, stack));
Andi Kleen0a658002005-04-16 15:25:17 -0700311#undef HANDLE_STACK
Andrew Mortonda689332006-12-07 02:14:02 +0100312 put_cpu();
Andi Kleenc0b766f2006-09-26 10:52:34 +0200313}
314EXPORT_SYMBOL(dump_trace);
Ingo Molnar3ac94932006-07-03 00:24:36 -0700315
Andi Kleenc0b766f2006-09-26 10:52:34 +0200316static void
317print_trace_warning_symbol(void *data, char *msg, unsigned long symbol)
318{
319 print_symbol(msg, symbol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 printk("\n");
321}
322
Andi Kleenc0b766f2006-09-26 10:52:34 +0200323static void print_trace_warning(void *data, char *msg)
324{
325 printk("%s\n", msg);
326}
327
328static int print_trace_stack(void *data, char *name)
329{
330 printk(" <%s> ", name);
331 return 0;
332}
333
334static void print_trace_address(void *data, unsigned long addr)
335{
Konrad Rzeszutek1c978b92007-07-17 04:03:56 -0700336 touch_nmi_watchdog();
Andi Kleenc0b766f2006-09-26 10:52:34 +0200337 printk_address(addr);
338}
339
Jan Beulich9689ba82007-10-17 18:04:37 +0200340static const struct stacktrace_ops print_trace_ops = {
Andi Kleenc0b766f2006-09-26 10:52:34 +0200341 .warning = print_trace_warning,
342 .warning_symbol = print_trace_warning_symbol,
343 .stack = print_trace_stack,
344 .address = print_trace_address,
345};
346
347void
348show_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long *stack)
349{
350 printk("\nCall Trace:\n");
351 dump_trace(tsk, regs, stack, &print_trace_ops, NULL);
352 printk("\n");
353}
354
355static void
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100356_show_stack(struct task_struct *tsk, struct pt_regs *regs, unsigned long *sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 unsigned long *stack;
359 int i;
Andi Kleen151f8cc2006-09-26 10:52:37 +0200360 const int cpu = smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100361 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
362 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 // debugging aid: "show_stack(NULL, NULL);" prints the
365 // back trace for this cpu.
366
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100367 if (sp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (tsk)
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100369 sp = (unsigned long *)tsk->thread.sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 else
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100371 sp = (unsigned long *)&sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
373
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100374 stack = sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 for(i=0; i < kstack_depth_to_print; i++) {
376 if (stack >= irqstack && stack <= irqstack_end) {
377 if (stack == irqstack_end) {
378 stack = (unsigned long *) (irqstack_end[-1]);
379 printk(" <EOI> ");
380 }
381 } else {
382 if (((long) stack & (THREAD_SIZE-1)) == 0)
383 break;
384 }
385 if (i && ((i % 4) == 0))
Ingo Molnar3ac94932006-07-03 00:24:36 -0700386 printk("\n");
387 printk(" %016lx", *stack++);
akpm@osdl.org35faa712005-04-16 15:24:54 -0700388 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100390 show_trace(tsk, regs, sp);
Jan Beulichb538ed22006-06-26 13:57:32 +0200391}
392
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100393void show_stack(struct task_struct *tsk, unsigned long * sp)
Jan Beulichb538ed22006-06-26 13:57:32 +0200394{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100395 _show_stack(tsk, NULL, sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398/*
399 * The architecture-independent dump_stack generator
400 */
401void dump_stack(void)
402{
403 unsigned long dummy;
Arjan van de Ven57c351d2007-11-26 20:42:19 +0100404
405 printk("Pid: %d, comm: %.20s %s %s %.*s\n",
406 current->pid, current->comm, print_tainted(),
407 init_utsname()->release,
408 (int)strcspn(init_utsname()->version, " "),
409 init_utsname()->version);
Jan Beulichb538ed22006-06-26 13:57:32 +0200410 show_trace(NULL, NULL, &dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
413EXPORT_SYMBOL(dump_stack);
414
415void show_registers(struct pt_regs *regs)
416{
417 int i;
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700418 int in_kernel = !user_mode(regs);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100419 unsigned long sp;
Andi Kleen151f8cc2006-09-26 10:52:37 +0200420 const int cpu = smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100421 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100423 sp = regs->sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 printk("CPU %d ", cpu);
425 __show_regs(regs);
426 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
Al Viroe4f17c42006-01-12 01:05:38 -0800427 cur->comm, cur->pid, task_thread_info(cur), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 /*
430 * When in-kernel, we also print out the stack and code at the
431 * time of the fault..
432 */
433 if (in_kernel) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 printk("Stack: ");
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100435 _show_stack(NULL, regs, (unsigned long*)sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 printk("\nCode: ");
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100438 if (regs->ip < PAGE_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 goto bad;
440
Roberto Nibali2b692a82006-03-25 16:29:55 +0100441 for (i=0; i<20; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 unsigned char c;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100443 if (__get_user(c, &((unsigned char*)regs->ip)[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444bad:
445 printk(" Bad RIP value.");
446 break;
447 }
448 printk("%02x ", c);
449 }
450 }
451 printk("\n");
452}
453
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100454int is_valid_bugaddr(unsigned long ip)
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -0800455{
456 unsigned short ud2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100458 if (__copy_from_user(&ud2, (const void __user *) ip, sizeof(ud2)))
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -0800459 return 0;
460
461 return ud2 == 0x0b0f;
462}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Andi Kleen39743c92007-10-19 20:35:03 +0200464static raw_spinlock_t die_lock = __RAW_SPIN_LOCK_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465static int die_owner = -1;
Corey Minyardcdc60a42006-05-08 15:17:22 +0200466static unsigned int die_nest_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100468unsigned __kprobes long oops_begin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Andrew Mortonb39b7032007-06-08 13:47:01 -0700470 int cpu;
Jan Beulich12091402005-09-12 18:49:24 +0200471 unsigned long flags;
472
Andrew Mortonabf0f102006-09-26 10:52:36 +0200473 oops_enter();
474
Jan Beulich12091402005-09-12 18:49:24 +0200475 /* racy, but better than risking deadlock. */
Andi Kleen39743c92007-10-19 20:35:03 +0200476 raw_local_irq_save(flags);
Andrew Mortonb39b7032007-06-08 13:47:01 -0700477 cpu = smp_processor_id();
Andi Kleen39743c92007-10-19 20:35:03 +0200478 if (!__raw_spin_trylock(&die_lock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (cpu == die_owner)
480 /* nested oops. should stop eventually */;
481 else
Andi Kleen39743c92007-10-19 20:35:03 +0200482 __raw_spin_lock(&die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
Corey Minyardcdc60a42006-05-08 15:17:22 +0200484 die_nest_count++;
Jan Beulich12091402005-09-12 18:49:24 +0200485 die_owner = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 console_verbose();
Jan Beulich12091402005-09-12 18:49:24 +0200487 bust_spinlocks(1);
488 return flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
Jan Beulich22f59912008-01-30 13:31:23 +0100491void __kprobes oops_end(unsigned long flags, struct pt_regs *regs, int signr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 die_owner = -1;
Jan Beulich12091402005-09-12 18:49:24 +0200494 bust_spinlocks(0);
Corey Minyardcdc60a42006-05-08 15:17:22 +0200495 die_nest_count--;
Andi Kleen39743c92007-10-19 20:35:03 +0200496 if (!die_nest_count)
Corey Minyardcdc60a42006-05-08 15:17:22 +0200497 /* Nest count reaches zero, release the lock. */
Andi Kleen39743c92007-10-19 20:35:03 +0200498 __raw_spin_unlock(&die_lock);
499 raw_local_irq_restore(flags);
Jan Beulich22f59912008-01-30 13:31:23 +0100500 if (!regs) {
501 oops_exit();
502 return;
503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (panic_on_oops)
Horms012c4372006-08-13 23:24:22 -0700505 panic("Fatal exception");
Andrew Mortonabf0f102006-09-26 10:52:36 +0200506 oops_exit();
Jan Beulich22f59912008-01-30 13:31:23 +0100507 do_exit(signr);
Jan Beulich12091402005-09-12 18:49:24 +0200508}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Jan Beulich22f59912008-01-30 13:31:23 +0100510int __kprobes __die(const char * str, struct pt_regs * regs, long err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
512 static int die_counter;
513 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
514#ifdef CONFIG_PREEMPT
515 printk("PREEMPT ");
516#endif
517#ifdef CONFIG_SMP
518 printk("SMP ");
519#endif
520#ifdef CONFIG_DEBUG_PAGEALLOC
521 printk("DEBUG_PAGEALLOC");
522#endif
523 printk("\n");
Jan Beulich22f59912008-01-30 13:31:23 +0100524 if (notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV) == NOTIFY_STOP)
525 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 show_registers(regs);
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -0700527 add_taint(TAINT_DIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /* Executive summary in case the oops scrolled away */
529 printk(KERN_ALERT "RIP ");
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100530 printk_address(regs->ip);
531 printk(" RSP <%016lx>\n", regs->sp);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200532 if (kexec_should_crash(current))
533 crash_kexec(regs);
Jan Beulich22f59912008-01-30 13:31:23 +0100534 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
537void die(const char * str, struct pt_regs * regs, long err)
538{
Jan Beulich12091402005-09-12 18:49:24 +0200539 unsigned long flags = oops_begin();
540
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -0800541 if (!user_mode(regs))
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100542 report_bug(regs->ip, regs);
Jeremy Fitzhardingec31a0bf2006-12-08 02:36:22 -0800543
Jan Beulich22f59912008-01-30 13:31:23 +0100544 if (__die(str, regs, err))
545 regs = NULL;
546 oops_end(flags, regs, SIGSEGV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Andi Kleenfac58552006-09-26 10:52:27 +0200549void __kprobes die_nmi(char *str, struct pt_regs *regs, int do_panic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Jan Beulich12091402005-09-12 18:49:24 +0200551 unsigned long flags = oops_begin();
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 /*
554 * We are in trouble anyway, lets at least try
555 * to get a message out.
556 */
Andi Kleen151f8cc2006-09-26 10:52:37 +0200557 printk(str, smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 show_registers(regs);
Vivek Goyal8bcc5282006-04-18 12:35:13 +0200559 if (kexec_should_crash(current))
560 crash_kexec(regs);
Andi Kleenfac58552006-09-26 10:52:27 +0200561 if (do_panic || panic_on_oops)
562 panic("Non maskable interrupt");
Jan Beulich22f59912008-01-30 13:31:23 +0100563 oops_end(flags, NULL, SIGBUS);
Corey Minyard8b1ffe952006-05-08 15:17:25 +0200564 nmi_exit();
565 local_irq_enable();
Jan Beulich22f59912008-01-30 13:31:23 +0100566 do_exit(SIGBUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700569static void __kprobes do_trap(int trapnr, int signr, char *str,
570 struct pt_regs * regs, long error_code,
571 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100573 struct task_struct *tsk = current;
574
Jan Beulich6e3f3612006-01-11 22:42:14 +0100575 if (user_mode(regs)) {
Andi Kleend1895182007-05-02 19:27:05 +0200576 /*
577 * We want error_code and trap_no set for userspace
578 * faults and kernelspace faults which result in
579 * die(), but not kernelspace faults which are fixed
580 * up. die() gives the process no chance to handle
581 * the signal and notice the kernel fault information,
582 * so that won't result in polluting the information
583 * about previously queued, but not yet delivered,
584 * faults. See also do_general_protection below.
585 */
586 tsk->thread.error_code = error_code;
587 tsk->thread.trap_no = trapnr;
588
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200589 if (show_unhandled_signals && unhandled_signal(tsk, signr) &&
590 printk_ratelimit())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 printk(KERN_INFO
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100592 "%s[%d] trap %s ip:%lx sp:%lx error:%lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 tsk->comm, tsk->pid, str,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100594 regs->ip, regs->sp, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (info)
597 force_sig_info(signr, info, tsk);
598 else
599 force_sig(signr, tsk);
600 return;
601 }
602
603
Harvey Harrisonb3a5acc2008-01-30 13:32:59 +0100604 if (!fixup_exception(regs)) {
605 tsk->thread.error_code = error_code;
606 tsk->thread.trap_no = trapnr;
607 die(str, regs, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
Harvey Harrisonb3a5acc2008-01-30 13:32:59 +0100609 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
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; \
Peter Zijlstrafb1dac92008-01-16 09:51:59 +0100630 trace_hardirqs_fixup(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 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
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100638DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639DO_ERROR( 4, SIGSEGV, "overflow", overflow)
640DO_ERROR( 5, SIGSEGV, "bounds", bounds)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100641DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->ip)
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
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100691 "%s[%d] general protection ip:%lx sp:%lx error:%lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 tsk->comm, tsk->pid,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100693 regs->ip, regs->sp, 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
Harvey Harrisonb3a5acc2008-01-30 13:32:59 +0100699 if (fixup_exception(regs))
700 return;
Andi Kleend1895182007-05-02 19:27:05 +0200701
Harvey Harrisonb3a5acc2008-01-30 13:32:59 +0100702 tsk->thread.error_code = error_code;
703 tsk->thread.trap_no = 13;
704 if (notify_die(DIE_GPF, "general protection fault", regs,
705 error_code, 13, SIGSEGV) == NOTIFY_STOP)
706 return;
707 die("general protection fault", regs, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100710static __kprobes void
711mem_parity_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Don Zickusc41c5cd2006-09-26 10:52:27 +0200713 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
714 reason);
Andi Kleen9c5f8be2006-12-07 02:14:03 +0100715 printk(KERN_EMERG "You have some hardware problem, likely on the PCI bus.\n");
Don Zickusc41c5cd2006-09-26 10:52:27 +0200716
Dave Jiangc0d12172007-07-19 01:49:46 -0700717#if defined(CONFIG_EDAC)
718 if(edac_handler_set()) {
719 edac_atomic_assert_error();
720 return;
721 }
722#endif
723
Don Zickus8da5add2006-09-26 10:52:27 +0200724 if (panic_on_unrecovered_nmi)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200725 panic("NMI: Not continuing");
726
727 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 /* Clear and disable the memory parity error line. */
730 reason = (reason & 0xf) | 4;
731 outb(reason, 0x61);
732}
733
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100734static __kprobes void
735io_check_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
737 printk("NMI: IOCK error (debug interrupt?)\n");
738 show_registers(regs);
739
740 /* Re-enable the IOCK line, wait for a few seconds */
741 reason = (reason & 0xf) | 8;
742 outb(reason, 0x61);
743 mdelay(2000);
744 reason &= ~8;
745 outb(reason, 0x61);
746}
747
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100748static __kprobes void
749unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200750{
751 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
752 reason);
753 printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n");
Don Zickus8da5add2006-09-26 10:52:27 +0200754
755 if (panic_on_unrecovered_nmi)
Don Zickusc41c5cd2006-09-26 10:52:27 +0200756 panic("NMI: Not continuing");
Don Zickus8da5add2006-09-26 10:52:27 +0200757
Don Zickusc41c5cd2006-09-26 10:52:27 +0200758 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700761/* Runs on IST stack. This code must keep interrupts off all the time.
762 Nested NMIs are prevented by the CPU. */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100763asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
765 unsigned char reason = 0;
Ashok Raj76e4f662005-06-25 14:55:00 -0700766 int cpu;
767
768 cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 /* Only the BSP gets external NMIs from the system. */
Ashok Raj76e4f662005-06-25 14:55:00 -0700771 if (!cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 reason = get_nmi_reason();
773
774 if (!(reason & 0xc0)) {
Jan Beulich6e3f3612006-01-11 22:42:14 +0100775 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 == NOTIFY_STOP)
777 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 /*
779 * Ok, so this is none of the documented NMI sources,
780 * so it must be the NMI watchdog.
781 */
Don Zickus3adbbcce2006-09-26 10:52:26 +0200782 if (nmi_watchdog_tick(regs,reason))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 return;
Don Zickus3adbbcce2006-09-26 10:52:26 +0200784 if (!do_nmi_callback(regs,cpu))
Don Zickus3adbbcce2006-09-26 10:52:26 +0200785 unknown_nmi_error(reason, regs);
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 return;
788 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100789 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return;
791
792 /* AK: following checks seem to be broken on modern chipsets. FIXME */
793
794 if (reason & 0x80)
795 mem_parity_error(reason, regs);
796 if (reason & 0x40)
797 io_check_error(reason, regs);
798}
799
Jan Beulichb556b352006-01-11 22:43:00 +0100800/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700801asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Peter Zijlstra143a5d32007-10-25 14:01:10 +0200803 trace_hardirqs_fixup();
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
806 return;
807 }
Andi Kleen40e59a62006-05-15 18:19:47 +0200808 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
Andi Kleen40e59a62006-05-15 18:19:47 +0200810 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700813/* Help handler running on IST stack to switch back to user stack
814 for scheduling or signal handling. The actual stack switch is done in
815 entry.S */
Andi Kleeneddb6fb2006-02-03 21:50:41 +0100816asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700818 struct pt_regs *regs = eregs;
819 /* Did already sync */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100820 if (eregs == (struct pt_regs *)eregs->sp)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700821 ;
822 /* Exception from user space */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700823 else if (user_mode(eregs))
Al Virobb049232006-01-12 01:05:38 -0800824 regs = task_pt_regs(current);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700825 /* Exception from kernel and interrupts are enabled. Move to
826 kernel process stack. */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100827 else if (eregs->flags & X86_EFLAGS_IF)
828 regs = (struct pt_regs *)(eregs->sp -= sizeof(struct pt_regs));
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700829 if (eregs != regs)
830 *regs = *eregs;
831 return regs;
832}
833
834/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700835asmlinkage void __kprobes do_debug(struct pt_regs * regs,
836 unsigned long error_code)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700837{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 unsigned long condition;
839 struct task_struct *tsk = current;
840 siginfo_t info;
841
Peter Zijlstra000f4a92007-11-26 20:42:19 +0100842 trace_hardirqs_fixup();
843
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700844 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Roland McGrath10faa812008-01-30 13:30:54 +0100846 /*
847 * The processor cleared BTF, so don't mark that we need it set.
848 */
849 clear_tsk_thread_flag(tsk, TIF_DEBUGCTLMSR);
850 tsk->thread.debugctlmsr = 0;
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
Andi Kleendaeeafe2005-04-16 15:25:13 -0700853 SIGTRAP) == NOTIFY_STOP)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700854 return;
Andi Kleendaeeafe2005-04-16 15:25:13 -0700855
John Blackwooda65d17c2006-02-12 14:34:58 -0800856 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 /* Mask out spurious debug traps due to lazy DR7 setting */
859 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
860 if (!tsk->thread.debugreg7) {
861 goto clear_dr7;
862 }
863 }
864
865 tsk->thread.debugreg6 = condition;
866
Roland McGrathe1f28772008-01-30 13:30:50 +0100867
868 /*
869 * Single-stepping through TF: make sure we ignore any events in
870 * kernel space (but re-enable TF when returning to user mode).
871 */
Andi Kleendaeeafe2005-04-16 15:25:13 -0700872 if (condition & DR_STEP) {
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700873 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 goto clear_TF_reenable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
876
877 /* Ok, finally something we can handle */
878 tsk->thread.trap_no = 1;
879 tsk->thread.error_code = error_code;
880 info.si_signo = SIGTRAP;
881 info.si_errno = 0;
882 info.si_code = TRAP_BRKPT;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100883 info.si_addr = user_mode(regs) ? (void __user *)regs->ip : NULL;
John Blackwood01b8faa2006-01-11 22:44:15 +0100884 force_sig_info(SIGTRAP, &info, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886clear_dr7:
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700887 set_debugreg(0UL, 7);
John Blackwooda65d17c2006-02-12 14:34:58 -0800888 preempt_conditional_cli(regs);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700889 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891clear_TF_reenable:
892 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
Glauber de Oliveira Costa053de042008-01-30 13:31:27 +0100893 regs->flags &= ~X86_EFLAGS_TF;
John Blackwooda65d17c2006-02-12 14:34:58 -0800894 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896
Jan Beulich6e3f3612006-01-11 22:42:14 +0100897static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Harvey Harrisonb3a5acc2008-01-30 13:32:59 +0100899 if (fixup_exception(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return 1;
Harvey Harrisonb3a5acc2008-01-30 13:32:59 +0100901
Jan Beulich6e3f3612006-01-11 22:42:14 +0100902 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
Andi Kleen3a848f62005-04-16 15:25:06 -0700903 /* Illegal floating point operation in the kernel */
Jan Beulich6e3f3612006-01-11 22:42:14 +0100904 current->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 die(str, regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return 0;
907}
908
909/*
910 * Note that we play around with the 'TS' bit in an attempt to get
911 * the correct behaviour even in the presence of the asynchronous
912 * IRQ13 behaviour
913 */
914asmlinkage void do_coprocessor_error(struct pt_regs *regs)
915{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100916 void __user *ip = (void __user *)(regs->ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 struct task_struct * task;
918 siginfo_t info;
919 unsigned short cwd, swd;
920
921 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700922 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100923 kernel_math_error(regs, "kernel x87 math error", 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return;
925
926 /*
927 * Save the info for the exception handler and clear the error.
928 */
929 task = current;
930 save_init_fpu(task);
931 task->thread.trap_no = 16;
932 task->thread.error_code = 0;
933 info.si_signo = SIGFPE;
934 info.si_errno = 0;
935 info.si_code = __SI_FAULT;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100936 info.si_addr = ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 /*
938 * (~cwd & swd) will mask out exceptions that are not set to unmasked
939 * status. 0x3f is the exception bits in these regs, 0x200 is the
940 * C1 reg you need in case of a stack fault, 0x040 is the stack
941 * fault bit. We should only be taking one exception at a time,
942 * so if this combination doesn't produce any single exception,
943 * then we have a bad program that isn't synchronizing its FPU usage
944 * and it will suffer the consequences since we won't be able to
945 * fully reproduce the context of the exception
946 */
947 cwd = get_fpu_cwd(task);
948 swd = get_fpu_swd(task);
Chuck Ebbertff347b22005-09-12 18:49:25 +0200949 switch (swd & ~cwd & 0x3f) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 case 0x000:
951 default:
952 break;
953 case 0x001: /* Invalid Op */
Chuck Ebbertff347b22005-09-12 18:49:25 +0200954 /*
955 * swd & 0x240 == 0x040: Stack Underflow
956 * swd & 0x240 == 0x240: Stack Overflow
957 * User must clear the SF bit (0x40) if set
958 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 info.si_code = FPE_FLTINV;
960 break;
961 case 0x002: /* Denormalize */
962 case 0x010: /* Underflow */
963 info.si_code = FPE_FLTUND;
964 break;
965 case 0x004: /* Zero Divide */
966 info.si_code = FPE_FLTDIV;
967 break;
968 case 0x008: /* Overflow */
969 info.si_code = FPE_FLTOVF;
970 break;
971 case 0x020: /* Precision */
972 info.si_code = FPE_FLTRES;
973 break;
974 }
975 force_sig_info(SIGFPE, &info, task);
976}
977
978asmlinkage void bad_intr(void)
979{
980 printk("bad interrupt");
981}
982
983asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
984{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100985 void __user *ip = (void __user *)(regs->ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 struct task_struct * task;
987 siginfo_t info;
988 unsigned short mxcsr;
989
990 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700991 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100992 kernel_math_error(regs, "kernel simd math error", 19))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return;
994
995 /*
996 * Save the info for the exception handler and clear the error.
997 */
998 task = current;
999 save_init_fpu(task);
1000 task->thread.trap_no = 19;
1001 task->thread.error_code = 0;
1002 info.si_signo = SIGFPE;
1003 info.si_errno = 0;
1004 info.si_code = __SI_FAULT;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001005 info.si_addr = ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 /*
1007 * The SIMD FPU exceptions are handled a little differently, as there
1008 * is only a single status/control register. Thus, to determine which
1009 * unmasked exception was caught we must mask the exception mask bits
1010 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
1011 */
1012 mxcsr = get_fpu_mxcsr(task);
1013 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
1014 case 0x000:
1015 default:
1016 break;
1017 case 0x001: /* Invalid Op */
1018 info.si_code = FPE_FLTINV;
1019 break;
1020 case 0x002: /* Denormalize */
1021 case 0x010: /* Underflow */
1022 info.si_code = FPE_FLTUND;
1023 break;
1024 case 0x004: /* Zero Divide */
1025 info.si_code = FPE_FLTDIV;
1026 break;
1027 case 0x008: /* Overflow */
1028 info.si_code = FPE_FLTOVF;
1029 break;
1030 case 0x020: /* Precision */
1031 info.si_code = FPE_FLTRES;
1032 break;
1033 }
1034 force_sig_info(SIGFPE, &info, task);
1035}
1036
1037asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
1038{
1039}
1040
1041asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
1042{
1043}
1044
Jacob Shin89b831e2005-11-05 17:25:53 +01001045asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
1046{
1047}
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049/*
1050 * 'math_state_restore()' saves the current math information in the
1051 * old math state array, and gets the new ones from the current task
1052 *
1053 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1054 * Don't touch unless you *really* know how it works.
1055 */
1056asmlinkage void math_state_restore(void)
1057{
1058 struct task_struct *me = current;
1059 clts(); /* Allow maths ops (or we recurse) */
1060
1061 if (!used_math())
1062 init_fpu(me);
1063 restore_fpu_checking(&me->thread.i387.fxsave);
Al Viroe4f17c42006-01-12 01:05:38 -08001064 task_thread_info(me)->status |= TS_USEDFPU;
Arjan van de Vene07e23e2006-09-26 10:52:36 +02001065 me->fpu_counter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066}
Glauber de Oliveira Costa21db5582008-01-30 13:31:10 +01001067EXPORT_SYMBOL_GPL(math_state_restore);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069void __init trap_init(void)
1070{
1071 set_intr_gate(0,&divide_error);
1072 set_intr_gate_ist(1,&debug,DEBUG_STACK);
1073 set_intr_gate_ist(2,&nmi,NMI_STACK);
Jan Beulichb556b352006-01-11 22:43:00 +01001074 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
Jan Beulich0a521582006-01-11 22:42:08 +01001075 set_system_gate(4,&overflow); /* int4 can be called from all */
1076 set_intr_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 set_intr_gate(6,&invalid_op);
1078 set_intr_gate(7,&device_not_available);
1079 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
1080 set_intr_gate(9,&coprocessor_segment_overrun);
1081 set_intr_gate(10,&invalid_TSS);
1082 set_intr_gate(11,&segment_not_present);
1083 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
1084 set_intr_gate(13,&general_protection);
1085 set_intr_gate(14,&page_fault);
1086 set_intr_gate(15,&spurious_interrupt_bug);
1087 set_intr_gate(16,&coprocessor_error);
1088 set_intr_gate(17,&alignment_check);
1089#ifdef CONFIG_X86_MCE
1090 set_intr_gate_ist(18,&machine_check, MCE_STACK);
1091#endif
1092 set_intr_gate(19,&simd_coprocessor_error);
1093
1094#ifdef CONFIG_IA32_EMULATION
1095 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1096#endif
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 /*
1099 * Should be a barrier for any external CPU state.
1100 */
1101 cpu_init();
1102}
1103
1104
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001105static int __init oops_setup(char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001107 if (!s)
1108 return -EINVAL;
1109 if (!strcmp(s, "panic"))
1110 panic_on_oops = 1;
1111 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001113early_param("oops", oops_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115static int __init kstack_setup(char *s)
1116{
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001117 if (!s)
1118 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 kstack_depth_to_print = simple_strtoul(s,NULL,0);
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001120 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
Andi Kleen2c8c0e62006-09-26 10:52:32 +02001122early_param("kstack", kstack_setup);