blob: 270cfd483160e96834569fa6fe8845c24ac71d80 [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 *
4 * Pentium III FXSR, SSE support
5 * Gareth Hughes <gareth@valinux.com>, May 2000
6 */
7
8/*
9 * 'Traps.c' handles hardware traps and faults after we have saved some
10 * state in 'asm.s'.
11 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/sched.h>
13#include <linux/kernel.h>
14#include <linux/string.h>
15#include <linux/errno.h>
16#include <linux/timer.h>
17#include <linux/mm.h>
18#include <linux/init.h>
19#include <linux/delay.h>
20#include <linux/spinlock.h>
21#include <linux/interrupt.h>
22#include <linux/highmem.h>
23#include <linux/kallsyms.h>
24#include <linux/ptrace.h>
25#include <linux/utsname.h>
26#include <linux/kprobes.h>
Alexander Nyberg6e274d12005-06-25 14:58:26 -070027#include <linux/kexec.h>
Jan Beulich176a2712006-06-26 13:57:41 +020028#include <linux/unwind.h>
Andrew Morton1e2af922006-09-27 01:51:15 -070029#include <linux/uaccess.h>
Dave Jonesa36df982006-12-07 02:14:12 +010030#include <linux/nmi.h>
Jeremy Fitzhardinge91768d62006-12-08 02:36:21 -080031#include <linux/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#ifdef CONFIG_EISA
34#include <linux/ioport.h>
35#include <linux/eisa.h>
36#endif
37
38#ifdef CONFIG_MCA
39#include <linux/mca.h>
40#endif
41
Dave Jiangc0d12172007-07-19 01:49:46 -070042#if defined(CONFIG_EDAC)
43#include <linux/edac.h>
44#endif
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/processor.h>
47#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/io.h>
49#include <asm/atomic.h>
50#include <asm/debugreg.h>
51#include <asm/desc.h>
52#include <asm/i387.h>
53#include <asm/nmi.h>
Jan Beulich176a2712006-06-26 13:57:41 +020054#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/smp.h>
56#include <asm/arch_hooks.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070057#include <linux/kdebug.h>
Andi Kleen2b14a782006-09-26 10:52:34 +020058#include <asm/stacktrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/module.h>
61
62#include "mach_traps.h"
63
Andi Kleen29cbc782006-09-30 01:47:55 +020064int panic_on_unrecovered_nmi;
65
Rusty Russelldbeb2be2007-10-19 20:35:03 +020066DECLARE_BITMAP(used_vectors, NR_VECTORS);
67EXPORT_SYMBOL_GPL(used_vectors);
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069asmlinkage int system_call(void);
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/* Do we ignore FPU interrupts ? */
72char ignore_fpu_irq = 0;
73
74/*
75 * The IDT has to be page-aligned to simplify the Pentium
76 * F0 0F bug workaround.. We have a special link segment
77 * for this.
78 */
Glauber de Oliveira Costa010d4f82008-01-30 13:31:12 +010079gate_desc idt_table[256]
Glauber de Oliveira Costa6842ef02008-01-30 13:31:11 +010080 __attribute__((__section__(".data.idt"))) = { { { { 0, 0 } } }, };
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82asmlinkage void divide_error(void);
83asmlinkage void debug(void);
84asmlinkage void nmi(void);
85asmlinkage void int3(void);
86asmlinkage void overflow(void);
87asmlinkage void bounds(void);
88asmlinkage void invalid_op(void);
89asmlinkage void device_not_available(void);
90asmlinkage void coprocessor_segment_overrun(void);
91asmlinkage void invalid_TSS(void);
92asmlinkage void segment_not_present(void);
93asmlinkage void stack_segment(void);
94asmlinkage void general_protection(void);
95asmlinkage void page_fault(void);
96asmlinkage void coprocessor_error(void);
97asmlinkage void simd_coprocessor_error(void);
98asmlinkage void alignment_check(void);
99asmlinkage void spurious_interrupt_bug(void);
100asmlinkage void machine_check(void);
101
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100102int kstack_depth_to_print = 24;
Chuck Ebbert86c41832007-02-13 13:26:25 +0100103static unsigned int code_bytes = 64;
Alan Sterne041c682006-03-27 01:16:30 -0800104
Linus Torvalds36ad4882007-08-31 20:18:51 -0700105static inline int valid_stack_ptr(struct thread_info *tinfo, void *p, unsigned size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 return p > (void *)tinfo &&
Linus Torvalds36ad4882007-08-31 20:18:51 -0700108 p <= (void *)tinfo + THREAD_SIZE - size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
Linus Torvalds36ad4882007-08-31 20:18:51 -0700111/* The form of the top of the frame on the stack */
112struct stack_frame {
113 struct stack_frame *next_frame;
114 unsigned long return_address;
115};
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static inline unsigned long print_context_stack(struct thread_info *tinfo,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100118 unsigned long *stack, unsigned long bp,
Jan Beulich9689ba82007-10-17 18:04:37 +0200119 const struct stacktrace_ops *ops, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100121 struct stack_frame *frame = (struct stack_frame *)bp;
Linus Torvalds36ad4882007-08-31 20:18:51 -0700122
Linus Torvalds36ad4882007-08-31 20:18:51 -0700123 while (valid_stack_ptr(tinfo, stack, sizeof(*stack))) {
124 unsigned long addr;
125
Arjan van de Vene9d4efd2008-01-30 13:33:07 +0100126 addr = *stack;
127 if (__kernel_text_address(addr)) {
128 if ((unsigned long) stack == bp + 4) {
129 ops->address(data, addr, 1);
130 frame = frame->next_frame;
131 bp = (unsigned long) frame;
132 } else {
Arjan van de Ven5bc27dc2008-01-30 13:33:07 +0100133 ops->address(data, addr, bp == 0);
Arjan van de Vene9d4efd2008-01-30 13:33:07 +0100134 }
135 }
136 stack++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100138 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Andi Kleenb615ebd2006-12-07 02:14:00 +0100141#define MSG(msg) ops->warning(data, msg)
142
Andi Kleen2b14a782006-09-26 10:52:34 +0200143void dump_trace(struct task_struct *task, struct pt_regs *regs,
Arjan van de Ven5bc27dc2008-01-30 13:33:07 +0100144 unsigned long *stack, unsigned long bp,
Jan Beulich9689ba82007-10-17 18:04:37 +0200145 const struct stacktrace_ops *ops, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (!task)
148 task = current;
149
Andi Kleena32cf392006-09-26 10:52:34 +0200150 if (!stack) {
Andi Kleen2b14a782006-09-26 10:52:34 +0200151 unsigned long dummy;
152 stack = &dummy;
Jesper Juhl028a6902007-07-21 17:11:14 +0200153 if (task != current)
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100154 stack = (unsigned long *)task->thread.sp;
Jan Beulich176a2712006-06-26 13:57:41 +0200155 }
156
Andi Kleena32cf392006-09-26 10:52:34 +0200157#ifdef CONFIG_FRAME_POINTER
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100158 if (!bp) {
Andi Kleena32cf392006-09-26 10:52:34 +0200159 if (task == current) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100160 /* Grab bp right from our regs */
161 asm ("movl %%ebp, %0" : "=r" (bp) : );
Andi Kleena32cf392006-09-26 10:52:34 +0200162 } else {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100163 /* bp is the last reg pushed by switch_to */
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100164 bp = *(unsigned long *) task->thread.sp;
Andi Kleena32cf392006-09-26 10:52:34 +0200165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
Andi Kleena32cf392006-09-26 10:52:34 +0200167#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 while (1) {
170 struct thread_info *context;
171 context = (struct thread_info *)
172 ((unsigned long)stack & (~(THREAD_SIZE - 1)));
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100173 bp = print_context_stack(context, stack, bp, ops, data);
Andi Kleen2b14a782006-09-26 10:52:34 +0200174 /* Should be after the line below, but somewhere
175 in early boot context comes out corrupted and we
176 can't reference it -AK */
177 if (ops->stack(data, "IRQ") < 0)
178 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 stack = (unsigned long*)context->previous_esp;
180 if (!stack)
181 break;
Dave Jonesa36df982006-12-07 02:14:12 +0100182 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184}
Andi Kleen2b14a782006-09-26 10:52:34 +0200185EXPORT_SYMBOL(dump_trace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Andi Kleen2b14a782006-09-26 10:52:34 +0200187static void
188print_trace_warning_symbol(void *data, char *msg, unsigned long symbol)
189{
190 printk(data);
191 print_symbol(msg, symbol);
192 printk("\n");
193}
194
195static void print_trace_warning(void *data, char *msg)
196{
197 printk("%s%s\n", (char *)data, msg);
198}
199
200static int print_trace_stack(void *data, char *name)
201{
202 return 0;
203}
204
205/*
206 * Print one address/symbol entries per line.
207 */
Arjan van de Venbc850d62008-01-30 13:33:07 +0100208static void print_trace_address(void *data, unsigned long addr, int reliable)
Andi Kleen2b14a782006-09-26 10:52:34 +0200209{
210 printk("%s [<%08lx>] ", (char *)data, addr);
Arjan van de Venbc850d62008-01-30 13:33:07 +0100211 if (!reliable)
212 printk("? ");
Andi Kleen2b14a782006-09-26 10:52:34 +0200213 print_symbol("%s\n", addr);
Konrad Rzeszutek601e6252007-07-21 04:37:29 -0700214 touch_nmi_watchdog();
Andi Kleen2b14a782006-09-26 10:52:34 +0200215}
216
Jan Beulich9689ba82007-10-17 18:04:37 +0200217static const struct stacktrace_ops print_trace_ops = {
Andi Kleen2b14a782006-09-26 10:52:34 +0200218 .warning = print_trace_warning,
219 .warning_symbol = print_trace_warning_symbol,
220 .stack = print_trace_stack,
221 .address = print_trace_address,
222};
223
224static void
225show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs,
Arjan van de Ven5bc27dc2008-01-30 13:33:07 +0100226 unsigned long *stack, unsigned long bp, char *log_lvl)
Andi Kleen2b14a782006-09-26 10:52:34 +0200227{
Arjan van de Ven5bc27dc2008-01-30 13:33:07 +0100228 dump_trace(task, regs, stack, bp, &print_trace_ops, log_lvl);
Andi Kleen2b14a782006-09-26 10:52:34 +0200229 printk("%s =======================\n", log_lvl);
230}
231
232void show_trace(struct task_struct *task, struct pt_regs *regs,
Arjan van de Ven5bc27dc2008-01-30 13:33:07 +0100233 unsigned long *stack, unsigned long bp)
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800234{
Arjan van de Ven5bc27dc2008-01-30 13:33:07 +0100235 show_trace_log_lvl(task, regs, stack, bp, "");
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800236}
237
Jan Beulich176a2712006-06-26 13:57:41 +0200238static void show_stack_log_lvl(struct task_struct *task, struct pt_regs *regs,
Arjan van de Ven5bc27dc2008-01-30 13:33:07 +0100239 unsigned long *sp, unsigned long bp, char *log_lvl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
241 unsigned long *stack;
242 int i;
243
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100244 if (sp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (task)
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100246 sp = (unsigned long*)task->thread.sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 else
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100248 sp = (unsigned long *)&sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100251 stack = sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 for(i = 0; i < kstack_depth_to_print; i++) {
253 if (kstack_end(stack))
254 break;
Chuck Ebbert75874d52006-03-23 02:59:52 -0800255 if (i && ((i % 8) == 0))
256 printk("\n%s ", log_lvl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 printk("%08lx ", *stack++);
258 }
Chuck Ebbert75874d52006-03-23 02:59:52 -0800259 printk("\n%sCall Trace:\n", log_lvl);
Arjan van de Ven5bc27dc2008-01-30 13:33:07 +0100260 show_trace_log_lvl(task, regs, sp, bp, log_lvl);
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800261}
262
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100263void show_stack(struct task_struct *task, unsigned long *sp)
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800264{
Chuck Ebbert75874d52006-03-23 02:59:52 -0800265 printk(" ");
Arjan van de Ven5bc27dc2008-01-30 13:33:07 +0100266 show_stack_log_lvl(task, NULL, sp, 0, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269/*
270 * The architecture-independent dump_stack generator
271 */
272void dump_stack(void)
273{
274 unsigned long stack;
Arjan van de Ven5bc27dc2008-01-30 13:33:07 +0100275 unsigned long bp = 0;
276
277#ifdef CONFIG_FRAME_POINTER
278 if (!bp)
279 asm("movl %%ebp, %0" : "=r" (bp):);
280#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Arjan van de Ven57c351d2007-11-26 20:42:19 +0100282 printk("Pid: %d, comm: %.20s %s %s %.*s\n",
283 current->pid, current->comm, print_tainted(),
284 init_utsname()->release,
285 (int)strcspn(init_utsname()->version, " "),
286 init_utsname()->version);
Arjan van de Ven5bc27dc2008-01-30 13:33:07 +0100287 show_trace(current, NULL, &stack, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
290EXPORT_SYMBOL(dump_stack);
291
292void show_registers(struct pt_regs *regs)
293{
294 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 print_modules();
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200297 __show_registers(regs, 0);
Chuck Ebbert7e04a112006-06-23 02:04:31 -0700298 printk(KERN_EMERG "Process %.*s (pid: %d, ti=%p task=%p task.ti=%p)",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700299 TASK_COMM_LEN, current->comm, task_pid_nr(current),
Roman Zippelc9f4f062007-05-09 02:35:16 -0700300 current_thread_info(), current, task_thread_info(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /*
302 * When in-kernel, we also print out the stack and code at the
303 * time of the fault..
304 */
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200305 if (!user_mode_vm(regs)) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100306 u8 *ip;
Chuck Ebbert86c41832007-02-13 13:26:25 +0100307 unsigned int code_prologue = code_bytes * 43 / 64;
308 unsigned int code_len = code_bytes;
Chuck Ebbert99325322006-09-25 23:32:19 -0700309 unsigned char c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Dave Jones9c107802006-01-09 20:51:32 -0800311 printk("\n" KERN_EMERG "Stack: ");
Arjan van de Ven5bc27dc2008-01-30 13:33:07 +0100312 show_stack_log_lvl(NULL, regs, &regs->sp, 0, KERN_EMERG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Dave Jones9c107802006-01-09 20:51:32 -0800314 printk(KERN_EMERG "Code: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100316 ip = (u8 *)regs->ip - code_prologue;
317 if (ip < (u8 *)PAGE_OFFSET ||
318 probe_kernel_address(ip, c)) {
Chuck Ebbert99325322006-09-25 23:32:19 -0700319 /* try starting at EIP */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100320 ip = (u8 *)regs->ip;
Chuck Ebbert86c41832007-02-13 13:26:25 +0100321 code_len = code_len - code_prologue + 1;
Chuck Ebbert99325322006-09-25 23:32:19 -0700322 }
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100323 for (i = 0; i < code_len; i++, ip++) {
324 if (ip < (u8 *)PAGE_OFFSET ||
325 probe_kernel_address(ip, c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 printk(" Bad EIP value.");
327 break;
328 }
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100329 if (ip == (u8 *)regs->ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 printk("<%02x> ", c);
331 else
332 printk("%02x ", c);
333 }
334 }
335 printk("\n");
336}
337
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100338int is_valid_bugaddr(unsigned long ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340 unsigned short ud2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100342 if (ip < PAGE_OFFSET)
Jeremy Fitzhardinge91768d62006-12-08 02:36:21 -0800343 return 0;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100344 if (probe_kernel_address((unsigned short *)ip, ud2))
Jeremy Fitzhardinge91768d62006-12-08 02:36:21 -0800345 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Jeremy Fitzhardinge91768d62006-12-08 02:36:21 -0800347 return ud2 == 0x0b0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
Harvey Harrisona604b382008-01-30 13:32:59 +0100350static int die_counter;
351
352int __kprobes __die(const char * str, struct pt_regs * regs, long err)
353{
354 unsigned long sp;
355 unsigned short ss;
356
357 printk(KERN_EMERG "%s: %04lx [#%d] ", str, err & 0xffff, ++die_counter);
358#ifdef CONFIG_PREEMPT
359 printk("PREEMPT ");
360#endif
361#ifdef CONFIG_SMP
362 printk("SMP ");
363#endif
364#ifdef CONFIG_DEBUG_PAGEALLOC
365 printk("DEBUG_PAGEALLOC");
366#endif
367 printk("\n");
368
369 if (notify_die(DIE_OOPS, str, regs, err,
370 current->thread.trap_no, SIGSEGV) !=
371 NOTIFY_STOP) {
372 show_registers(regs);
373 /* Executive summary in case the oops scrolled away */
374 sp = (unsigned long) (&regs->sp);
375 savesegment(ss, ss);
376 if (user_mode(regs)) {
377 sp = regs->sp;
378 ss = regs->ss & 0xffff;
379 }
380 printk(KERN_EMERG "EIP: [<%08lx>] ", regs->ip);
381 print_symbol("%s", regs->ip);
382 printk(" SS:ESP %04x:%08lx\n", ss, sp);
383 return 0;
384 } else {
385 return 1;
386 }
387}
388
Jeremy Fitzhardinge91768d62006-12-08 02:36:21 -0800389/*
390 * This is gone through when something in the kernel has done something bad and
391 * is about to be terminated.
392 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393void die(const char * str, struct pt_regs * regs, long err)
394{
395 static struct {
Andi Kleen39743c92007-10-19 20:35:03 +0200396 raw_spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 u32 lock_owner;
398 int lock_owner_depth;
399 } die = {
Andi Kleen39743c92007-10-19 20:35:03 +0200400 .lock = __RAW_SPIN_LOCK_UNLOCKED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 .lock_owner = -1,
402 .lock_owner_depth = 0
403 };
Jan Beuliche43d6742006-01-06 00:11:48 -0800404 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Andrew Mortondd287792006-03-23 03:00:57 -0800406 oops_enter();
407
Ingo Molnar39c715b2005-06-21 17:14:34 -0700408 if (die.lock_owner != raw_smp_processor_id()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 console_verbose();
Ingo Molnarc0a698b2007-12-21 01:27:19 +0100410 raw_local_irq_save(flags);
Andi Kleen39743c92007-10-19 20:35:03 +0200411 __raw_spin_lock(&die.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 die.lock_owner = smp_processor_id();
413 die.lock_owner_depth = 0;
414 bust_spinlocks(1);
Ingo Molnarc0a698b2007-12-21 01:27:19 +0100415 } else
416 raw_local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 if (++die.lock_owner_depth < 3) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100419 report_bug(regs->ip, regs);
Jeremy Fitzhardinge91768d62006-12-08 02:36:21 -0800420
Harvey Harrisona604b382008-01-30 13:32:59 +0100421 if (__die(str, regs, err))
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800422 regs = NULL;
Harvey Harrisona604b382008-01-30 13:32:59 +0100423 } else {
Dave Jones9c107802006-01-09 20:51:32 -0800424 printk(KERN_EMERG "Recursive die() failure, output suppressed\n");
Harvey Harrisona604b382008-01-30 13:32:59 +0100425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 bust_spinlocks(0);
428 die.lock_owner = -1;
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -0700429 add_taint(TAINT_DIE);
Andi Kleen39743c92007-10-19 20:35:03 +0200430 __raw_spin_unlock(&die.lock);
431 raw_local_irq_restore(flags);
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700432
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800433 if (!regs)
434 return;
435
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700436 if (kexec_should_crash(current))
437 crash_kexec(regs);
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (in_interrupt())
440 panic("Fatal exception in interrupt");
441
Hormscea6a4b2006-07-30 03:03:34 -0700442 if (panic_on_oops)
Horms012c4372006-08-13 23:24:22 -0700443 panic("Fatal exception");
Hormscea6a4b2006-07-30 03:03:34 -0700444
Andrew Mortondd287792006-03-23 03:00:57 -0800445 oops_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 do_exit(SIGSEGV);
447}
448
449static inline void die_if_kernel(const char * str, struct pt_regs * regs, long err)
450{
Vincent Hanquez717b5942005-06-23 00:08:45 -0700451 if (!user_mode_vm(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 die(str, regs, err);
453}
454
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -0700455static void __kprobes do_trap(int trapnr, int signr, char *str, int vm86,
456 struct pt_regs * regs, long error_code,
457 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700459 struct task_struct *tsk = current;
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700460
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100461 if (regs->flags & VM_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (vm86)
463 goto vm86_trap;
464 goto trap_signal;
465 }
466
Vincent Hanquez717b5942005-06-23 00:08:45 -0700467 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 goto kernel_trap;
469
470 trap_signal: {
Andi Kleend1895182007-05-02 19:27:05 +0200471 /*
472 * We want error_code and trap_no set for userspace faults and
473 * kernelspace faults which result in die(), but not
474 * kernelspace faults which are fixed up. die() gives the
475 * process no chance to handle the signal and notice the
476 * kernel fault information, so that won't result in polluting
477 * the information about previously queued, but not yet
478 * delivered, faults. See also do_general_protection below.
479 */
480 tsk->thread.error_code = error_code;
481 tsk->thread.trap_no = trapnr;
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (info)
484 force_sig_info(signr, info, tsk);
485 else
486 force_sig(signr, tsk);
487 return;
488 }
489
490 kernel_trap: {
Andi Kleend1895182007-05-02 19:27:05 +0200491 if (!fixup_exception(regs)) {
492 tsk->thread.error_code = error_code;
493 tsk->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 die(str, regs, error_code);
Andi Kleend1895182007-05-02 19:27:05 +0200495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return;
497 }
498
499 vm86_trap: {
500 int ret = handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, trapnr);
501 if (ret) goto trap_signal;
502 return;
503 }
504}
505
506#define DO_ERROR(trapnr, signr, str, name) \
Harvey Harrison75604d72008-01-30 13:31:17 +0100507void do_##name(struct pt_regs * regs, long error_code) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{ \
509 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
510 == NOTIFY_STOP) \
511 return; \
512 do_trap(trapnr, signr, str, 0, regs, error_code, NULL); \
513}
514
Peter Zijlstraa10d9a72007-07-18 20:59:22 +0200515#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr, irq) \
Harvey Harrison75604d72008-01-30 13:31:17 +0100516void do_##name(struct pt_regs * regs, long error_code) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{ \
518 siginfo_t info; \
Peter Zijlstraa10d9a72007-07-18 20:59:22 +0200519 if (irq) \
520 local_irq_enable(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 info.si_signo = signr; \
522 info.si_errno = 0; \
523 info.si_code = sicode; \
524 info.si_addr = (void __user *)siaddr; \
525 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
526 == NOTIFY_STOP) \
527 return; \
528 do_trap(trapnr, signr, str, 0, regs, error_code, &info); \
529}
530
531#define DO_VM86_ERROR(trapnr, signr, str, name) \
Harvey Harrison75604d72008-01-30 13:31:17 +0100532void do_##name(struct pt_regs * regs, long error_code) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{ \
534 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
535 == NOTIFY_STOP) \
536 return; \
537 do_trap(trapnr, signr, str, 1, regs, error_code, NULL); \
538}
539
540#define DO_VM86_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
Harvey Harrison75604d72008-01-30 13:31:17 +0100541void do_##name(struct pt_regs * regs, long error_code) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{ \
543 siginfo_t info; \
544 info.si_signo = signr; \
545 info.si_errno = 0; \
546 info.si_code = sicode; \
547 info.si_addr = (void __user *)siaddr; \
Peter Zijlstrafb1dac92008-01-16 09:51:59 +0100548 trace_hardirqs_fixup(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
550 == NOTIFY_STOP) \
551 return; \
552 do_trap(trapnr, signr, str, 1, regs, error_code, &info); \
553}
554
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100555DO_VM86_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556#ifndef CONFIG_KPROBES
557DO_VM86_ERROR( 3, SIGTRAP, "int3", int3)
558#endif
559DO_VM86_ERROR( 4, SIGSEGV, "overflow", overflow)
560DO_VM86_ERROR( 5, SIGSEGV, "bounds", bounds)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100561DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->ip, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
563DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
564DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
565DO_ERROR(12, SIGBUS, "stack segment", stack_segment)
Peter Zijlstraa10d9a72007-07-18 20:59:22 +0200566DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0, 0)
567DO_ERROR_INFO(32, SIGSEGV, "iret exception", iret_error, ILL_BADSTK, 0, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Harvey Harrison75604d72008-01-30 13:31:17 +0100569void __kprobes do_general_protection(struct pt_regs * regs,
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -0700570 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
572 int cpu = get_cpu();
573 struct tss_struct *tss = &per_cpu(init_tss, cpu);
574 struct thread_struct *thread = &current->thread;
575
576 /*
577 * Perform the lazy TSS's I/O bitmap copy. If the TSS has an
578 * invalid offset set (the LAZY one) and the faulting thread has
579 * a valid I/O bitmap pointer, we copy the I/O bitmap in the TSS
580 * and we set the offset field correctly. Then we let the CPU to
581 * restart the faulting instruction.
582 */
Rusty Russella75c54f2007-05-02 19:27:13 +0200583 if (tss->x86_tss.io_bitmap_base == INVALID_IO_BITMAP_OFFSET_LAZY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 thread->io_bitmap_ptr) {
585 memcpy(tss->io_bitmap, thread->io_bitmap_ptr,
586 thread->io_bitmap_max);
587 /*
588 * If the previously set map was extending to higher ports
589 * than the current one, pad extra space with 0xff (no access).
590 */
591 if (thread->io_bitmap_max < tss->io_bitmap_max)
592 memset((char *) tss->io_bitmap +
593 thread->io_bitmap_max, 0xff,
594 tss->io_bitmap_max - thread->io_bitmap_max);
595 tss->io_bitmap_max = thread->io_bitmap_max;
Rusty Russella75c54f2007-05-02 19:27:13 +0200596 tss->x86_tss.io_bitmap_base = IO_BITMAP_OFFSET;
Bart Oldemand5cd4aa2005-10-30 14:59:29 -0800597 tss->io_bitmap_owner = thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 put_cpu();
599 return;
600 }
601 put_cpu();
602
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100603 if (regs->flags & VM_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 goto gp_in_vm86;
605
Vincent Hanquez717b5942005-06-23 00:08:45 -0700606 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 goto gp_in_kernel;
608
609 current->thread.error_code = error_code;
610 current->thread.trap_no = 13;
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200611 if (show_unhandled_signals && unhandled_signal(current, SIGSEGV) &&
Andi Kleen03252912008-01-30 13:33:18 +0100612 printk_ratelimit()) {
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200613 printk(KERN_INFO
Andi Kleen03252912008-01-30 13:33:18 +0100614 "%s[%d] general protection ip:%lx sp:%lx error:%lx",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700615 current->comm, task_pid_nr(current),
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100616 regs->ip, regs->sp, error_code);
Andi Kleen03252912008-01-30 13:33:18 +0100617 print_vma_addr(" in ", regs->ip);
618 printk("\n");
619 }
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 force_sig(SIGSEGV, current);
622 return;
623
624gp_in_vm86:
625 local_irq_enable();
626 handle_vm86_fault((struct kernel_vm86_regs *) regs, error_code);
627 return;
628
629gp_in_kernel:
630 if (!fixup_exception(regs)) {
Andi Kleend1895182007-05-02 19:27:05 +0200631 current->thread.error_code = error_code;
632 current->thread.trap_no = 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (notify_die(DIE_GPF, "general protection fault", regs,
634 error_code, 13, SIGSEGV) == NOTIFY_STOP)
635 return;
636 die("general protection fault", regs, error_code);
637 }
638}
639
Fernando Luis Vázquez Cao06039752006-09-26 10:52:36 +0200640static __kprobes void
641mem_parity_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Don Zickusc41c5cd2006-09-26 10:52:27 +0200643 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x on "
644 "CPU %d.\n", reason, smp_processor_id());
Andi Kleen9c5f8be2006-12-07 02:14:03 +0100645 printk(KERN_EMERG "You have some hardware problem, likely on the PCI bus.\n");
Dave Jiangc0d12172007-07-19 01:49:46 -0700646
647#if defined(CONFIG_EDAC)
648 if(edac_handler_set()) {
649 edac_atomic_assert_error();
650 return;
651 }
652#endif
653
Don Zickus8da5add2006-09-26 10:52:27 +0200654 if (panic_on_unrecovered_nmi)
655 panic("NMI: Not continuing");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Don Zickusc41c5cd2006-09-26 10:52:27 +0200657 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 /* Clear and disable the memory parity error line. */
660 clear_mem_error(reason);
661}
662
Fernando Luis Vázquez Cao06039752006-09-26 10:52:36 +0200663static __kprobes void
664io_check_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 unsigned long i;
667
Dave Jones9c107802006-01-09 20:51:32 -0800668 printk(KERN_EMERG "NMI: IOCK error (debug interrupt?)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 show_registers(regs);
670
671 /* Re-enable the IOCK line, wait for a few seconds */
672 reason = (reason & 0xf) | 8;
673 outb(reason, 0x61);
674 i = 2000;
675 while (--i) udelay(1000);
676 reason &= ~8;
677 outb(reason, 0x61);
678}
679
Fernando Luis Vázquez Cao06039752006-09-26 10:52:36 +0200680static __kprobes void
681unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683#ifdef CONFIG_MCA
684 /* Might actually be able to figure out what the guilty party
685 * is. */
686 if( MCA_bus ) {
687 mca_handle_nmi();
688 return;
689 }
690#endif
Don Zickusc41c5cd2006-09-26 10:52:27 +0200691 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x on "
692 "CPU %d.\n", reason, smp_processor_id());
693 printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n");
Don Zickus8da5add2006-09-26 10:52:27 +0200694 if (panic_on_unrecovered_nmi)
695 panic("NMI: Not continuing");
696
Don Zickusc41c5cd2006-09-26 10:52:27 +0200697 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
700static DEFINE_SPINLOCK(nmi_print_lock);
701
Fernando Luis Vázquez Cao06039752006-09-26 10:52:36 +0200702void __kprobes die_nmi(struct pt_regs *regs, const char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800704 if (notify_die(DIE_NMIWATCHDOG, msg, regs, 0, 2, SIGINT) ==
George Anzinger748f2ed2005-09-03 15:56:48 -0700705 NOTIFY_STOP)
706 return;
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 spin_lock(&nmi_print_lock);
709 /*
710 * We are in trouble anyway, lets at least try
711 * to get a message out.
712 */
713 bust_spinlocks(1);
Dave Jones9c107802006-01-09 20:51:32 -0800714 printk(KERN_EMERG "%s", msg);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100715 printk(" on CPU%d, ip %08lx, registers:\n",
716 smp_processor_id(), regs->ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 show_registers(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 console_silent();
719 spin_unlock(&nmi_print_lock);
720 bust_spinlocks(0);
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700721
722 /* If we are in kernel we are probably nested up pretty bad
723 * and might aswell get out now while we still can.
724 */
Jan Beulichdb753bd2006-03-23 02:59:46 -0800725 if (!user_mode_vm(regs)) {
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700726 current->thread.trap_no = 2;
727 crash_kexec(regs);
728 }
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 do_exit(SIGSEGV);
731}
732
Fernando Luis Vázquez Cao06039752006-09-26 10:52:36 +0200733static __kprobes void default_do_nmi(struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 unsigned char reason = 0;
736
737 /* Only the BSP gets external NMIs from the system. */
738 if (!smp_processor_id())
739 reason = get_nmi_reason();
740
741 if (!(reason & 0xc0)) {
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800742 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 == NOTIFY_STOP)
744 return;
745#ifdef CONFIG_X86_LOCAL_APIC
746 /*
747 * Ok, so this is none of the documented NMI sources,
748 * so it must be the NMI watchdog.
749 */
Don Zickus3adbbcc2006-09-26 10:52:26 +0200750 if (nmi_watchdog_tick(regs, reason))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return;
Don Zickus2fbe7b22006-09-26 10:52:27 +0200752 if (!do_nmi_callback(regs, smp_processor_id()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753#endif
Don Zickus3adbbcc2006-09-26 10:52:26 +0200754 unknown_nmi_error(reason, regs);
Don Zickus2fbe7b22006-09-26 10:52:27 +0200755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return;
757 }
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800758 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return;
760 if (reason & 0x80)
761 mem_parity_error(reason, regs);
762 if (reason & 0x40)
763 io_check_error(reason, regs);
764 /*
765 * Reassert NMI in case it became active meanwhile
766 * as it's edge-triggered.
767 */
768 reassert_nmi();
769}
770
Andi Kleen8f4e9562007-07-22 11:12:32 +0200771static int ignore_nmis;
772
Harvey Harrison75604d72008-01-30 13:31:17 +0100773__kprobes void do_nmi(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
775 int cpu;
776
777 nmi_enter();
778
779 cpu = smp_processor_id();
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 ++nmi_count(cpu);
782
Andi Kleen8f4e9562007-07-22 11:12:32 +0200783 if (!ignore_nmis)
784 default_do_nmi(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 nmi_exit();
787}
788
Andi Kleen8f4e9562007-07-22 11:12:32 +0200789void stop_nmi(void)
790{
791 acpi_nmi_disable();
792 ignore_nmis++;
793}
794
795void restart_nmi(void)
796{
797 ignore_nmis--;
798 acpi_nmi_enable();
799}
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801#ifdef CONFIG_KPROBES
Harvey Harrison75604d72008-01-30 13:31:17 +0100802void __kprobes do_int3(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Peter Zijlstra143a5d32007-10-25 14:01:10 +0200804 trace_hardirqs_fixup();
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP)
807 == NOTIFY_STOP)
Stas Sergeev48c882112005-05-01 08:58:49 -0700808 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 /* This is an interrupt gate, because kprobes wants interrupts
810 disabled. Normal trap handlers don't. */
811 restore_interrupts(regs);
812 do_trap(3, SIGTRAP, "int3", 1, regs, error_code, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
814#endif
815
816/*
817 * Our handling of the processor debug registers is non-trivial.
818 * We do not clear them on entry and exit from the kernel. Therefore
819 * it is possible to get a watchpoint trap here from inside the kernel.
820 * However, the code in ./ptrace.c has ensured that the user can
821 * only set watchpoints on userspace addresses. Therefore the in-kernel
822 * watchpoint trap can only occur in code which is reading/writing
823 * from user space. Such code must not hold kernel locks (since it
824 * can equally take a page fault), therefore it is safe to call
825 * force_sig_info even though that claims and releases locks.
826 *
827 * Code in ./signal.c ensures that the debug control register
828 * is restored before we deliver any signal, and therefore that
829 * user code runs with the correct debug control register even though
830 * we clear it here.
831 *
832 * Being careful here means that we don't have to be as careful in a
833 * lot of more complicated places (task switching can be a bit lazy
834 * about restoring all the debug state, and ptrace doesn't have to
835 * find every occurrence of the TF bit that could be saved away even
836 * by user code)
837 */
Harvey Harrison75604d72008-01-30 13:31:17 +0100838void __kprobes do_debug(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
840 unsigned int condition;
841 struct task_struct *tsk = current;
842
Peter Zijlstra000f4a92007-11-26 20:42:19 +0100843 trace_hardirqs_fixup();
844
Vincent Hanquez1cc6f122005-06-23 00:08:43 -0700845 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Roland McGrath10faa812008-01-30 13:30:54 +0100847 /*
848 * The processor cleared BTF, so don't mark that we need it set.
849 */
850 clear_tsk_thread_flag(tsk, TIF_DEBUGCTLMSR);
851 tsk->thread.debugctlmsr = 0;
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
854 SIGTRAP) == NOTIFY_STOP)
855 return;
856 /* It's safe to allow irq's after DR6 has been saved */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100857 if (regs->flags & X86_EFLAGS_IF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 local_irq_enable();
859
860 /* Mask out spurious debug traps due to lazy DR7 setting */
861 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
Roland McGrath0f534092008-01-30 13:30:59 +0100862 if (!tsk->thread.debugreg7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 goto clear_dr7;
864 }
865
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100866 if (regs->flags & VM_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 goto debug_vm86;
868
869 /* Save debug status register where ptrace can see it */
Roland McGrath0f534092008-01-30 13:30:59 +0100870 tsk->thread.debugreg6 = condition;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 /*
873 * Single-stepping through TF: make sure we ignore any events in
874 * kernel space (but re-enable TF when returning to user mode).
875 */
876 if (condition & DR_STEP) {
877 /*
878 * We already checked v86 mode above, so we can
879 * check for kernel mode by just checking the CPL
880 * of CS.
881 */
Vincent Hanquez717b5942005-06-23 00:08:45 -0700882 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 goto clear_TF_reenable;
884 }
885
886 /* Ok, finally something we can handle */
887 send_sigtrap(tsk, regs, error_code);
888
889 /* Disable additional traps. They'll be re-enabled when
890 * the signal is delivered.
891 */
892clear_dr7:
Vincent Hanquez1cc6f122005-06-23 00:08:43 -0700893 set_debugreg(0, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return;
895
896debug_vm86:
897 handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, 1);
898 return;
899
900clear_TF_reenable:
901 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100902 regs->flags &= ~TF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return;
904}
905
906/*
907 * Note that we play around with the 'TS' bit in an attempt to get
908 * the correct behaviour even in the presence of the asynchronous
909 * IRQ13 behaviour
910 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100911void math_error(void __user *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 struct task_struct * task;
914 siginfo_t info;
915 unsigned short cwd, swd;
916
917 /*
918 * Save the info for the exception handler and clear the error.
919 */
920 task = current;
921 save_init_fpu(task);
922 task->thread.trap_no = 16;
923 task->thread.error_code = 0;
924 info.si_signo = SIGFPE;
925 info.si_errno = 0;
926 info.si_code = __SI_FAULT;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100927 info.si_addr = ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 /*
929 * (~cwd & swd) will mask out exceptions that are not set to unmasked
930 * status. 0x3f is the exception bits in these regs, 0x200 is the
931 * C1 reg you need in case of a stack fault, 0x040 is the stack
932 * fault bit. We should only be taking one exception at a time,
933 * so if this combination doesn't produce any single exception,
934 * then we have a bad program that isn't syncronizing its FPU usage
935 * and it will suffer the consequences since we won't be able to
936 * fully reproduce the context of the exception
937 */
938 cwd = get_fpu_cwd(task);
939 swd = get_fpu_swd(task);
Chuck Ebbertb1daec32005-08-23 21:36:40 -0400940 switch (swd & ~cwd & 0x3f) {
Chuck Ebbert33333372005-09-13 04:55:41 -0400941 case 0x000: /* No unmasked exception */
942 return;
943 default: /* Multiple exceptions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 break;
945 case 0x001: /* Invalid Op */
Chuck Ebbertb1daec32005-08-23 21:36:40 -0400946 /*
947 * swd & 0x240 == 0x040: Stack Underflow
948 * swd & 0x240 == 0x240: Stack Overflow
949 * User must clear the SF bit (0x40) if set
950 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 info.si_code = FPE_FLTINV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 break;
953 case 0x002: /* Denormalize */
954 case 0x010: /* Underflow */
955 info.si_code = FPE_FLTUND;
956 break;
957 case 0x004: /* Zero Divide */
958 info.si_code = FPE_FLTDIV;
959 break;
960 case 0x008: /* Overflow */
961 info.si_code = FPE_FLTOVF;
962 break;
963 case 0x020: /* Precision */
964 info.si_code = FPE_FLTRES;
965 break;
966 }
967 force_sig_info(SIGFPE, &info, task);
968}
969
Harvey Harrison75604d72008-01-30 13:31:17 +0100970void do_coprocessor_error(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
972 ignore_fpu_irq = 1;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100973 math_error((void __user *)regs->ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
975
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100976static void simd_math_error(void __user *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
978 struct task_struct * task;
979 siginfo_t info;
980 unsigned short mxcsr;
981
982 /*
983 * Save the info for the exception handler and clear the error.
984 */
985 task = current;
986 save_init_fpu(task);
987 task->thread.trap_no = 19;
988 task->thread.error_code = 0;
989 info.si_signo = SIGFPE;
990 info.si_errno = 0;
991 info.si_code = __SI_FAULT;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100992 info.si_addr = ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 /*
994 * The SIMD FPU exceptions are handled a little differently, as there
995 * is only a single status/control register. Thus, to determine which
996 * unmasked exception was caught we must mask the exception mask bits
997 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
998 */
999 mxcsr = get_fpu_mxcsr(task);
1000 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
1001 case 0x000:
1002 default:
1003 break;
1004 case 0x001: /* Invalid Op */
1005 info.si_code = FPE_FLTINV;
1006 break;
1007 case 0x002: /* Denormalize */
1008 case 0x010: /* Underflow */
1009 info.si_code = FPE_FLTUND;
1010 break;
1011 case 0x004: /* Zero Divide */
1012 info.si_code = FPE_FLTDIV;
1013 break;
1014 case 0x008: /* Overflow */
1015 info.si_code = FPE_FLTOVF;
1016 break;
1017 case 0x020: /* Precision */
1018 info.si_code = FPE_FLTRES;
1019 break;
1020 }
1021 force_sig_info(SIGFPE, &info, task);
1022}
1023
Harvey Harrison75604d72008-01-30 13:31:17 +01001024void do_simd_coprocessor_error(struct pt_regs * regs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 long error_code)
1026{
1027 if (cpu_has_xmm) {
1028 /* Handle SIMD FPU exceptions on PIII+ processors. */
1029 ignore_fpu_irq = 1;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001030 simd_math_error((void __user *)regs->ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 } else {
1032 /*
1033 * Handle strange cache flush from user space exception
1034 * in all other cases. This is undocumented behaviour.
1035 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001036 if (regs->flags & VM_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 handle_vm86_fault((struct kernel_vm86_regs *)regs,
1038 error_code);
1039 return;
1040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 current->thread.trap_no = 19;
1042 current->thread.error_code = error_code;
Alexander Nyberg4f339ec2005-06-25 14:58:27 -07001043 die_if_kernel("cache flush denied", regs, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 force_sig(SIGSEGV, current);
1045 }
1046}
1047
Harvey Harrison75604d72008-01-30 13:31:17 +01001048void do_spurious_interrupt_bug(struct pt_regs * regs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 long error_code)
1050{
1051#if 0
1052 /* No need to warn about this any longer. */
1053 printk("Ignoring P6 Local APIC Spurious Interrupt Bug...\n");
1054#endif
1055}
1056
Harvey Harrison75604d72008-01-30 13:31:17 +01001057unsigned long patch_espfix_desc(unsigned long uesp,
Stas Sergeevbe44d2a2006-12-07 02:14:01 +01001058 unsigned long kesp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Jeremy Fitzhardinge7a61d352007-05-02 19:27:15 +02001060 struct desc_struct *gdt = __get_cpu_var(gdt_page).gdt;
Stas Sergeevbe44d2a2006-12-07 02:14:01 +01001061 unsigned long base = (kesp - uesp) & -THREAD_SIZE;
1062 unsigned long new_kesp = kesp - base;
1063 unsigned long lim_pages = (new_kesp | (THREAD_SIZE - 1)) >> PAGE_SHIFT;
1064 __u64 desc = *(__u64 *)&gdt[GDT_ENTRY_ESPFIX_SS];
1065 /* Set up base for espfix segment */
1066 desc &= 0x00f0ff0000000000ULL;
1067 desc |= ((((__u64)base) << 16) & 0x000000ffffff0000ULL) |
1068 ((((__u64)base) << 32) & 0xff00000000000000ULL) |
1069 ((((__u64)lim_pages) << 32) & 0x000f000000000000ULL) |
1070 (lim_pages & 0xffff);
1071 *(__u64 *)&gdt[GDT_ENTRY_ESPFIX_SS] = desc;
1072 return new_kesp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073}
1074
1075/*
1076 * 'math_state_restore()' saves the current math information in the
1077 * old math state array, and gets the new ones from the current task
1078 *
1079 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1080 * Don't touch unless you *really* know how it works.
1081 *
1082 * Must be called with kernel preemption disabled (in this case,
1083 * local interrupts are disabled at the call-site in entry.S).
1084 */
Chuck Ebbertacc20762006-12-07 02:14:01 +01001085asmlinkage void math_state_restore(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
1087 struct thread_info *thread = current_thread_info();
1088 struct task_struct *tsk = thread->task;
1089
1090 clts(); /* Allow maths ops (or we recurse) */
1091 if (!tsk_used_math(tsk))
1092 init_fpu(tsk);
1093 restore_fpu(tsk);
1094 thread->status |= TS_USEDFPU; /* So we fnsave on switch_to() */
Chuck Ebbertacc20762006-12-07 02:14:01 +01001095 tsk->fpu_counter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
Rusty Russell5992b6d2007-07-19 01:49:21 -07001097EXPORT_SYMBOL_GPL(math_state_restore);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099#ifndef CONFIG_MATH_EMULATION
1100
1101asmlinkage void math_emulate(long arg)
1102{
Dave Jones9c107802006-01-09 20:51:32 -08001103 printk(KERN_EMERG "math-emulation not enabled and no coprocessor found.\n");
1104 printk(KERN_EMERG "killing %s.\n",current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 force_sig(SIGFPE,current);
1106 schedule();
1107}
1108
1109#endif /* CONFIG_MATH_EMULATION */
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112void __init trap_init(void)
1113{
Rusty Russelldbeb2be2007-10-19 20:35:03 +02001114 int i;
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116#ifdef CONFIG_EISA
1117 void __iomem *p = ioremap(0x0FFFD9, 4);
1118 if (readl(p) == 'E'+('I'<<8)+('S'<<16)+('A'<<24)) {
1119 EISA_bus = 1;
1120 }
1121 iounmap(p);
1122#endif
1123
1124#ifdef CONFIG_X86_LOCAL_APIC
1125 init_apic_mappings();
1126#endif
1127
1128 set_trap_gate(0,&divide_error);
1129 set_intr_gate(1,&debug);
1130 set_intr_gate(2,&nmi);
Jan Beulicheb05c322006-01-06 00:11:49 -08001131 set_system_intr_gate(3, &int3); /* int3/4 can be called from all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 set_system_gate(4,&overflow);
Jan Beulicheb05c322006-01-06 00:11:49 -08001133 set_trap_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 set_trap_gate(6,&invalid_op);
1135 set_trap_gate(7,&device_not_available);
1136 set_task_gate(8,GDT_ENTRY_DOUBLEFAULT_TSS);
1137 set_trap_gate(9,&coprocessor_segment_overrun);
1138 set_trap_gate(10,&invalid_TSS);
1139 set_trap_gate(11,&segment_not_present);
1140 set_trap_gate(12,&stack_segment);
1141 set_trap_gate(13,&general_protection);
1142 set_intr_gate(14,&page_fault);
1143 set_trap_gate(15,&spurious_interrupt_bug);
1144 set_trap_gate(16,&coprocessor_error);
1145 set_trap_gate(17,&alignment_check);
1146#ifdef CONFIG_X86_MCE
1147 set_trap_gate(18,&machine_check);
1148#endif
1149 set_trap_gate(19,&simd_coprocessor_error);
1150
Jan Beulichd43c6e82006-01-06 00:11:49 -08001151 if (cpu_has_fxsr) {
1152 /*
1153 * Verify that the FXSAVE/FXRSTOR data will be 16-byte aligned.
1154 * Generates a compile-time "error: zero width for bit-field" if
1155 * the alignment is wrong.
1156 */
1157 struct fxsrAlignAssert {
1158 int _:!(offsetof(struct task_struct,
1159 thread.i387.fxsave) & 15);
1160 };
1161
1162 printk(KERN_INFO "Enabling fast FPU save and restore... ");
1163 set_in_cr4(X86_CR4_OSFXSR);
1164 printk("done.\n");
1165 }
1166 if (cpu_has_xmm) {
1167 printk(KERN_INFO "Enabling unmasked SIMD FPU exception "
1168 "support... ");
1169 set_in_cr4(X86_CR4_OSXMMEXCPT);
1170 printk("done.\n");
1171 }
1172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 set_system_gate(SYSCALL_VECTOR,&system_call);
1174
Rusty Russelldbeb2be2007-10-19 20:35:03 +02001175 /* Reserve all the builtin and the syscall vector. */
1176 for (i = 0; i < FIRST_EXTERNAL_VECTOR; i++)
1177 set_bit(i, used_vectors);
1178 set_bit(SYSCALL_VECTOR, used_vectors);
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 /*
1181 * Should be a barrier for any external CPU state.
1182 */
1183 cpu_init();
1184
1185 trap_init_hook();
1186}
1187
1188static int __init kstack_setup(char *s)
1189{
1190 kstack_depth_to_print = simple_strtoul(s, NULL, 0);
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001191 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193__setup("kstack=", kstack_setup);
Chuck Ebbert86c41832007-02-13 13:26:25 +01001194
1195static int __init code_bytes_setup(char *s)
1196{
1197 code_bytes = simple_strtoul(s, NULL, 0);
1198 if (code_bytes > 8192)
1199 code_bytes = 8192;
1200
1201 return 1;
1202}
1203__setup("code_bytes=", code_bytes_setup);