blob: c70c41fd710bd62a87983039017d5b099401f1e1 [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{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#ifdef CONFIG_FRAME_POINTER
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100122 struct stack_frame *frame = (struct stack_frame *)bp;
Linus Torvalds36ad4882007-08-31 20:18:51 -0700123 while (valid_stack_ptr(tinfo, frame, sizeof(*frame))) {
124 struct stack_frame *next;
125 unsigned long addr;
126
127 addr = frame->return_address;
Andi Kleen2b14a782006-09-26 10:52:34 +0200128 ops->address(data, addr);
Ingo Molnarb88d4f12006-06-23 02:04:20 -0700129 /*
130 * break out of recursive entries (such as
Linus Torvalds808dbbb2006-11-17 11:14:56 -0800131 * end_of_stack_stop_unwind_function). Also,
132 * we can never allow a frame pointer to
133 * move downwards!
Linus Torvalds36ad4882007-08-31 20:18:51 -0700134 */
135 next = frame->next_frame;
136 if (next <= frame)
Ingo Molnarb88d4f12006-06-23 02:04:20 -0700137 break;
Linus Torvalds36ad4882007-08-31 20:18:51 -0700138 frame = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140#else
Linus Torvalds36ad4882007-08-31 20:18:51 -0700141 while (valid_stack_ptr(tinfo, stack, sizeof(*stack))) {
142 unsigned long addr;
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 addr = *stack++;
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800145 if (__kernel_text_address(addr))
Andi Kleen2b14a782006-09-26 10:52:34 +0200146 ops->address(data, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
148#endif
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100149 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Andi Kleenb615ebd2006-12-07 02:14:00 +0100152#define MSG(msg) ops->warning(data, msg)
153
Andi Kleen2b14a782006-09-26 10:52:34 +0200154void dump_trace(struct task_struct *task, struct pt_regs *regs,
155 unsigned long *stack,
Jan Beulich9689ba82007-10-17 18:04:37 +0200156 const struct stacktrace_ops *ops, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100158 unsigned long bp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 if (!task)
161 task = current;
162
Andi Kleena32cf392006-09-26 10:52:34 +0200163 if (!stack) {
Andi Kleen2b14a782006-09-26 10:52:34 +0200164 unsigned long dummy;
165 stack = &dummy;
Jesper Juhl028a6902007-07-21 17:11:14 +0200166 if (task != current)
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100167 stack = (unsigned long *)task->thread.sp;
Jan Beulich176a2712006-06-26 13:57:41 +0200168 }
169
Andi Kleena32cf392006-09-26 10:52:34 +0200170#ifdef CONFIG_FRAME_POINTER
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100171 if (!bp) {
Andi Kleena32cf392006-09-26 10:52:34 +0200172 if (task == current) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100173 /* Grab bp right from our regs */
174 asm ("movl %%ebp, %0" : "=r" (bp) : );
Andi Kleena32cf392006-09-26 10:52:34 +0200175 } else {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100176 /* bp is the last reg pushed by switch_to */
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100177 bp = *(unsigned long *) task->thread.sp;
Andi Kleena32cf392006-09-26 10:52:34 +0200178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
Andi Kleena32cf392006-09-26 10:52:34 +0200180#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 while (1) {
183 struct thread_info *context;
184 context = (struct thread_info *)
185 ((unsigned long)stack & (~(THREAD_SIZE - 1)));
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100186 bp = print_context_stack(context, stack, bp, ops, data);
Andi Kleen2b14a782006-09-26 10:52:34 +0200187 /* Should be after the line below, but somewhere
188 in early boot context comes out corrupted and we
189 can't reference it -AK */
190 if (ops->stack(data, "IRQ") < 0)
191 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 stack = (unsigned long*)context->previous_esp;
193 if (!stack)
194 break;
Dave Jonesa36df982006-12-07 02:14:12 +0100195 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197}
Andi Kleen2b14a782006-09-26 10:52:34 +0200198EXPORT_SYMBOL(dump_trace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Andi Kleen2b14a782006-09-26 10:52:34 +0200200static void
201print_trace_warning_symbol(void *data, char *msg, unsigned long symbol)
202{
203 printk(data);
204 print_symbol(msg, symbol);
205 printk("\n");
206}
207
208static void print_trace_warning(void *data, char *msg)
209{
210 printk("%s%s\n", (char *)data, msg);
211}
212
213static int print_trace_stack(void *data, char *name)
214{
215 return 0;
216}
217
218/*
219 * Print one address/symbol entries per line.
220 */
221static void print_trace_address(void *data, unsigned long addr)
222{
223 printk("%s [<%08lx>] ", (char *)data, addr);
224 print_symbol("%s\n", addr);
Konrad Rzeszutek601e6252007-07-21 04:37:29 -0700225 touch_nmi_watchdog();
Andi Kleen2b14a782006-09-26 10:52:34 +0200226}
227
Jan Beulich9689ba82007-10-17 18:04:37 +0200228static const struct stacktrace_ops print_trace_ops = {
Andi Kleen2b14a782006-09-26 10:52:34 +0200229 .warning = print_trace_warning,
230 .warning_symbol = print_trace_warning_symbol,
231 .stack = print_trace_stack,
232 .address = print_trace_address,
233};
234
235static void
236show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs,
237 unsigned long * stack, char *log_lvl)
238{
239 dump_trace(task, regs, stack, &print_trace_ops, log_lvl);
240 printk("%s =======================\n", log_lvl);
241}
242
243void show_trace(struct task_struct *task, struct pt_regs *regs,
244 unsigned long * stack)
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800245{
Jan Beulich176a2712006-06-26 13:57:41 +0200246 show_trace_log_lvl(task, regs, stack, "");
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800247}
248
Jan Beulich176a2712006-06-26 13:57:41 +0200249static void show_stack_log_lvl(struct task_struct *task, struct pt_regs *regs,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100250 unsigned long *sp, char *log_lvl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
252 unsigned long *stack;
253 int i;
254
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100255 if (sp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (task)
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100257 sp = (unsigned long*)task->thread.sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 else
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100259 sp = (unsigned long *)&sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
261
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100262 stack = sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 for(i = 0; i < kstack_depth_to_print; i++) {
264 if (kstack_end(stack))
265 break;
Chuck Ebbert75874d52006-03-23 02:59:52 -0800266 if (i && ((i % 8) == 0))
267 printk("\n%s ", log_lvl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 printk("%08lx ", *stack++);
269 }
Chuck Ebbert75874d52006-03-23 02:59:52 -0800270 printk("\n%sCall Trace:\n", log_lvl);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100271 show_trace_log_lvl(task, regs, sp, log_lvl);
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800272}
273
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100274void show_stack(struct task_struct *task, unsigned long *sp)
Chuck Ebbert7aa89742006-01-14 13:20:52 -0800275{
Chuck Ebbert75874d52006-03-23 02:59:52 -0800276 printk(" ");
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100277 show_stack_log_lvl(task, NULL, sp, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280/*
281 * The architecture-independent dump_stack generator
282 */
283void dump_stack(void)
284{
285 unsigned long stack;
286
Arjan van de Ven57c351d2007-11-26 20:42:19 +0100287 printk("Pid: %d, comm: %.20s %s %s %.*s\n",
288 current->pid, current->comm, print_tainted(),
289 init_utsname()->release,
290 (int)strcspn(init_utsname()->version, " "),
291 init_utsname()->version);
Jan Beulich176a2712006-06-26 13:57:41 +0200292 show_trace(current, NULL, &stack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295EXPORT_SYMBOL(dump_stack);
296
297void show_registers(struct pt_regs *regs)
298{
299 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 print_modules();
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200302 __show_registers(regs, 0);
Chuck Ebbert7e04a112006-06-23 02:04:31 -0700303 printk(KERN_EMERG "Process %.*s (pid: %d, ti=%p task=%p task.ti=%p)",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700304 TASK_COMM_LEN, current->comm, task_pid_nr(current),
Roman Zippelc9f4f062007-05-09 02:35:16 -0700305 current_thread_info(), current, task_thread_info(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 /*
307 * When in-kernel, we also print out the stack and code at the
308 * time of the fault..
309 */
Pavel Emelyanov9d975eb2007-10-19 20:35:03 +0200310 if (!user_mode_vm(regs)) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100311 u8 *ip;
Chuck Ebbert86c41832007-02-13 13:26:25 +0100312 unsigned int code_prologue = code_bytes * 43 / 64;
313 unsigned int code_len = code_bytes;
Chuck Ebbert99325322006-09-25 23:32:19 -0700314 unsigned char c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Dave Jones9c107802006-01-09 20:51:32 -0800316 printk("\n" KERN_EMERG "Stack: ");
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100317 show_stack_log_lvl(NULL, regs, &regs->sp, KERN_EMERG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Dave Jones9c107802006-01-09 20:51:32 -0800319 printk(KERN_EMERG "Code: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100321 ip = (u8 *)regs->ip - code_prologue;
322 if (ip < (u8 *)PAGE_OFFSET ||
323 probe_kernel_address(ip, c)) {
Chuck Ebbert99325322006-09-25 23:32:19 -0700324 /* try starting at EIP */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100325 ip = (u8 *)regs->ip;
Chuck Ebbert86c41832007-02-13 13:26:25 +0100326 code_len = code_len - code_prologue + 1;
Chuck Ebbert99325322006-09-25 23:32:19 -0700327 }
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100328 for (i = 0; i < code_len; i++, ip++) {
329 if (ip < (u8 *)PAGE_OFFSET ||
330 probe_kernel_address(ip, c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 printk(" Bad EIP value.");
332 break;
333 }
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100334 if (ip == (u8 *)regs->ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 printk("<%02x> ", c);
336 else
337 printk("%02x ", c);
338 }
339 }
340 printk("\n");
341}
342
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100343int is_valid_bugaddr(unsigned long ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 unsigned short ud2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100347 if (ip < PAGE_OFFSET)
Jeremy Fitzhardinge91768d62006-12-08 02:36:21 -0800348 return 0;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100349 if (probe_kernel_address((unsigned short *)ip, ud2))
Jeremy Fitzhardinge91768d62006-12-08 02:36:21 -0800350 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Jeremy Fitzhardinge91768d62006-12-08 02:36:21 -0800352 return ud2 == 0x0b0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
Jeremy Fitzhardinge91768d62006-12-08 02:36:21 -0800355/*
356 * This is gone through when something in the kernel has done something bad and
357 * is about to be terminated.
358 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359void die(const char * str, struct pt_regs * regs, long err)
360{
361 static struct {
Andi Kleen39743c92007-10-19 20:35:03 +0200362 raw_spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 u32 lock_owner;
364 int lock_owner_depth;
365 } die = {
Andi Kleen39743c92007-10-19 20:35:03 +0200366 .lock = __RAW_SPIN_LOCK_UNLOCKED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 .lock_owner = -1,
368 .lock_owner_depth = 0
369 };
370 static int die_counter;
Jan Beuliche43d6742006-01-06 00:11:48 -0800371 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Andrew Mortondd287792006-03-23 03:00:57 -0800373 oops_enter();
374
Ingo Molnar39c715b2005-06-21 17:14:34 -0700375 if (die.lock_owner != raw_smp_processor_id()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 console_verbose();
Ingo Molnarc0a698b2007-12-21 01:27:19 +0100377 raw_local_irq_save(flags);
Andi Kleen39743c92007-10-19 20:35:03 +0200378 __raw_spin_lock(&die.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 die.lock_owner = smp_processor_id();
380 die.lock_owner_depth = 0;
381 bust_spinlocks(1);
Ingo Molnarc0a698b2007-12-21 01:27:19 +0100382 } else
383 raw_local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 if (++die.lock_owner_depth < 3) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100386 unsigned long sp;
Randy Dunlap7bee5c02006-04-10 22:53:11 -0700387 unsigned short ss;
388
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100389 report_bug(regs->ip, regs);
Jeremy Fitzhardinge91768d62006-12-08 02:36:21 -0800390
Pavel Emelyanov9aa8d712007-10-17 18:04:40 +0200391 printk(KERN_EMERG "%s: %04lx [#%d] ", str, err & 0xffff,
392 ++die_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393#ifdef CONFIG_PREEMPT
Pavel Emelyanov9aa8d712007-10-17 18:04:40 +0200394 printk("PREEMPT ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#endif
396#ifdef CONFIG_SMP
397 printk("SMP ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398#endif
399#ifdef CONFIG_DEBUG_PAGEALLOC
400 printk("DEBUG_PAGEALLOC");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401#endif
Pavel Emelyanov9aa8d712007-10-17 18:04:40 +0200402 printk("\n");
403
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800404 if (notify_die(DIE_OOPS, str, regs, err,
405 current->thread.trap_no, SIGSEGV) !=
Randy Dunlap7bee5c02006-04-10 22:53:11 -0700406 NOTIFY_STOP) {
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800407 show_registers(regs);
Randy Dunlap7bee5c02006-04-10 22:53:11 -0700408 /* Executive summary in case the oops scrolled away */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100409 sp = (unsigned long) (&regs->sp);
Randy Dunlap7bee5c02006-04-10 22:53:11 -0700410 savesegment(ss, ss);
411 if (user_mode(regs)) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100412 sp = regs->sp;
413 ss = regs->ss & 0xffff;
Randy Dunlap7bee5c02006-04-10 22:53:11 -0700414 }
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100415 printk(KERN_EMERG "EIP: [<%08lx>] ", regs->ip);
416 print_symbol("%s", regs->ip);
417 printk(" SS:ESP %04x:%08lx\n", ss, sp);
Randy Dunlap7bee5c02006-04-10 22:53:11 -0700418 }
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800419 else
420 regs = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 } else
Dave Jones9c107802006-01-09 20:51:32 -0800422 printk(KERN_EMERG "Recursive die() failure, output suppressed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 bust_spinlocks(0);
425 die.lock_owner = -1;
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -0700426 add_taint(TAINT_DIE);
Andi Kleen39743c92007-10-19 20:35:03 +0200427 __raw_spin_unlock(&die.lock);
428 raw_local_irq_restore(flags);
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700429
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800430 if (!regs)
431 return;
432
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700433 if (kexec_should_crash(current))
434 crash_kexec(regs);
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (in_interrupt())
437 panic("Fatal exception in interrupt");
438
Hormscea6a4b2006-07-30 03:03:34 -0700439 if (panic_on_oops)
Horms012c4372006-08-13 23:24:22 -0700440 panic("Fatal exception");
Hormscea6a4b2006-07-30 03:03:34 -0700441
Andrew Mortondd287792006-03-23 03:00:57 -0800442 oops_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 do_exit(SIGSEGV);
444}
445
446static inline void die_if_kernel(const char * str, struct pt_regs * regs, long err)
447{
Vincent Hanquez717b5942005-06-23 00:08:45 -0700448 if (!user_mode_vm(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 die(str, regs, err);
450}
451
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -0700452static void __kprobes do_trap(int trapnr, int signr, char *str, int vm86,
453 struct pt_regs * regs, long error_code,
454 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700456 struct task_struct *tsk = current;
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700457
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100458 if (regs->flags & VM_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (vm86)
460 goto vm86_trap;
461 goto trap_signal;
462 }
463
Vincent Hanquez717b5942005-06-23 00:08:45 -0700464 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 goto kernel_trap;
466
467 trap_signal: {
Andi Kleend1895182007-05-02 19:27:05 +0200468 /*
469 * We want error_code and trap_no set for userspace faults and
470 * kernelspace faults which result in die(), but not
471 * kernelspace faults which are fixed up. die() gives the
472 * process no chance to handle the signal and notice the
473 * kernel fault information, so that won't result in polluting
474 * the information about previously queued, but not yet
475 * delivered, faults. See also do_general_protection below.
476 */
477 tsk->thread.error_code = error_code;
478 tsk->thread.trap_no = trapnr;
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (info)
481 force_sig_info(signr, info, tsk);
482 else
483 force_sig(signr, tsk);
484 return;
485 }
486
487 kernel_trap: {
Andi Kleend1895182007-05-02 19:27:05 +0200488 if (!fixup_exception(regs)) {
489 tsk->thread.error_code = error_code;
490 tsk->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 die(str, regs, error_code);
Andi Kleend1895182007-05-02 19:27:05 +0200492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return;
494 }
495
496 vm86_trap: {
497 int ret = handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, trapnr);
498 if (ret) goto trap_signal;
499 return;
500 }
501}
502
503#define DO_ERROR(trapnr, signr, str, name) \
504fastcall void do_##name(struct pt_regs * regs, long error_code) \
505{ \
506 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
507 == NOTIFY_STOP) \
508 return; \
509 do_trap(trapnr, signr, str, 0, regs, error_code, NULL); \
510}
511
Peter Zijlstraa10d9a72007-07-18 20:59:22 +0200512#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr, irq) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513fastcall void do_##name(struct pt_regs * regs, long error_code) \
514{ \
515 siginfo_t info; \
Peter Zijlstraa10d9a72007-07-18 20:59:22 +0200516 if (irq) \
517 local_irq_enable(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 info.si_signo = signr; \
519 info.si_errno = 0; \
520 info.si_code = sicode; \
521 info.si_addr = (void __user *)siaddr; \
522 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
523 == NOTIFY_STOP) \
524 return; \
525 do_trap(trapnr, signr, str, 0, regs, error_code, &info); \
526}
527
528#define DO_VM86_ERROR(trapnr, signr, str, name) \
529fastcall void do_##name(struct pt_regs * regs, long error_code) \
530{ \
531 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
532 == NOTIFY_STOP) \
533 return; \
534 do_trap(trapnr, signr, str, 1, regs, error_code, NULL); \
535}
536
537#define DO_VM86_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
538fastcall void do_##name(struct pt_regs * regs, long error_code) \
539{ \
540 siginfo_t info; \
541 info.si_signo = signr; \
542 info.si_errno = 0; \
543 info.si_code = sicode; \
544 info.si_addr = (void __user *)siaddr; \
Peter Zijlstrafb1dac92008-01-16 09:51:59 +0100545 trace_hardirqs_fixup(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
547 == NOTIFY_STOP) \
548 return; \
549 do_trap(trapnr, signr, str, 1, regs, error_code, &info); \
550}
551
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100552DO_VM86_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553#ifndef CONFIG_KPROBES
554DO_VM86_ERROR( 3, SIGTRAP, "int3", int3)
555#endif
556DO_VM86_ERROR( 4, SIGSEGV, "overflow", overflow)
557DO_VM86_ERROR( 5, SIGSEGV, "bounds", bounds)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100558DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->ip, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
560DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
561DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
562DO_ERROR(12, SIGBUS, "stack segment", stack_segment)
Peter Zijlstraa10d9a72007-07-18 20:59:22 +0200563DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0, 0)
564DO_ERROR_INFO(32, SIGSEGV, "iret exception", iret_error, ILL_BADSTK, 0, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -0700566fastcall void __kprobes do_general_protection(struct pt_regs * regs,
567 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
569 int cpu = get_cpu();
570 struct tss_struct *tss = &per_cpu(init_tss, cpu);
571 struct thread_struct *thread = &current->thread;
572
573 /*
574 * Perform the lazy TSS's I/O bitmap copy. If the TSS has an
575 * invalid offset set (the LAZY one) and the faulting thread has
576 * a valid I/O bitmap pointer, we copy the I/O bitmap in the TSS
577 * and we set the offset field correctly. Then we let the CPU to
578 * restart the faulting instruction.
579 */
Rusty Russella75c54f2007-05-02 19:27:13 +0200580 if (tss->x86_tss.io_bitmap_base == INVALID_IO_BITMAP_OFFSET_LAZY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 thread->io_bitmap_ptr) {
582 memcpy(tss->io_bitmap, thread->io_bitmap_ptr,
583 thread->io_bitmap_max);
584 /*
585 * If the previously set map was extending to higher ports
586 * than the current one, pad extra space with 0xff (no access).
587 */
588 if (thread->io_bitmap_max < tss->io_bitmap_max)
589 memset((char *) tss->io_bitmap +
590 thread->io_bitmap_max, 0xff,
591 tss->io_bitmap_max - thread->io_bitmap_max);
592 tss->io_bitmap_max = thread->io_bitmap_max;
Rusty Russella75c54f2007-05-02 19:27:13 +0200593 tss->x86_tss.io_bitmap_base = IO_BITMAP_OFFSET;
Bart Oldemand5cd4aa2005-10-30 14:59:29 -0800594 tss->io_bitmap_owner = thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 put_cpu();
596 return;
597 }
598 put_cpu();
599
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100600 if (regs->flags & VM_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 goto gp_in_vm86;
602
Vincent Hanquez717b5942005-06-23 00:08:45 -0700603 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 goto gp_in_kernel;
605
606 current->thread.error_code = error_code;
607 current->thread.trap_no = 13;
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200608 if (show_unhandled_signals && unhandled_signal(current, SIGSEGV) &&
609 printk_ratelimit())
610 printk(KERN_INFO
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100611 "%s[%d] general protection ip:%lx sp:%lx error:%lx\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700612 current->comm, task_pid_nr(current),
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100613 regs->ip, regs->sp, error_code);
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 force_sig(SIGSEGV, current);
616 return;
617
618gp_in_vm86:
619 local_irq_enable();
620 handle_vm86_fault((struct kernel_vm86_regs *) regs, error_code);
621 return;
622
623gp_in_kernel:
624 if (!fixup_exception(regs)) {
Andi Kleend1895182007-05-02 19:27:05 +0200625 current->thread.error_code = error_code;
626 current->thread.trap_no = 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (notify_die(DIE_GPF, "general protection fault", regs,
628 error_code, 13, SIGSEGV) == NOTIFY_STOP)
629 return;
630 die("general protection fault", regs, error_code);
631 }
632}
633
Fernando Luis Vázquez Cao06039752006-09-26 10:52:36 +0200634static __kprobes void
635mem_parity_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Don Zickusc41c5cd2006-09-26 10:52:27 +0200637 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x on "
638 "CPU %d.\n", reason, smp_processor_id());
Andi Kleen9c5f8be2006-12-07 02:14:03 +0100639 printk(KERN_EMERG "You have some hardware problem, likely on the PCI bus.\n");
Dave Jiangc0d12172007-07-19 01:49:46 -0700640
641#if defined(CONFIG_EDAC)
642 if(edac_handler_set()) {
643 edac_atomic_assert_error();
644 return;
645 }
646#endif
647
Don Zickus8da5add2006-09-26 10:52:27 +0200648 if (panic_on_unrecovered_nmi)
649 panic("NMI: Not continuing");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Don Zickusc41c5cd2006-09-26 10:52:27 +0200651 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 /* Clear and disable the memory parity error line. */
654 clear_mem_error(reason);
655}
656
Fernando Luis Vázquez Cao06039752006-09-26 10:52:36 +0200657static __kprobes void
658io_check_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
660 unsigned long i;
661
Dave Jones9c107802006-01-09 20:51:32 -0800662 printk(KERN_EMERG "NMI: IOCK error (debug interrupt?)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 show_registers(regs);
664
665 /* Re-enable the IOCK line, wait for a few seconds */
666 reason = (reason & 0xf) | 8;
667 outb(reason, 0x61);
668 i = 2000;
669 while (--i) udelay(1000);
670 reason &= ~8;
671 outb(reason, 0x61);
672}
673
Fernando Luis Vázquez Cao06039752006-09-26 10:52:36 +0200674static __kprobes void
675unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677#ifdef CONFIG_MCA
678 /* Might actually be able to figure out what the guilty party
679 * is. */
680 if( MCA_bus ) {
681 mca_handle_nmi();
682 return;
683 }
684#endif
Don Zickusc41c5cd2006-09-26 10:52:27 +0200685 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x on "
686 "CPU %d.\n", reason, smp_processor_id());
687 printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n");
Don Zickus8da5add2006-09-26 10:52:27 +0200688 if (panic_on_unrecovered_nmi)
689 panic("NMI: Not continuing");
690
Don Zickusc41c5cd2006-09-26 10:52:27 +0200691 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
694static DEFINE_SPINLOCK(nmi_print_lock);
695
Fernando Luis Vázquez Cao06039752006-09-26 10:52:36 +0200696void __kprobes die_nmi(struct pt_regs *regs, const char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800698 if (notify_die(DIE_NMIWATCHDOG, msg, regs, 0, 2, SIGINT) ==
George Anzinger748f2ed2005-09-03 15:56:48 -0700699 NOTIFY_STOP)
700 return;
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 spin_lock(&nmi_print_lock);
703 /*
704 * We are in trouble anyway, lets at least try
705 * to get a message out.
706 */
707 bust_spinlocks(1);
Dave Jones9c107802006-01-09 20:51:32 -0800708 printk(KERN_EMERG "%s", msg);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100709 printk(" on CPU%d, ip %08lx, registers:\n",
710 smp_processor_id(), regs->ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 show_registers(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 console_silent();
713 spin_unlock(&nmi_print_lock);
714 bust_spinlocks(0);
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700715
716 /* If we are in kernel we are probably nested up pretty bad
717 * and might aswell get out now while we still can.
718 */
Jan Beulichdb753bd2006-03-23 02:59:46 -0800719 if (!user_mode_vm(regs)) {
Alexander Nyberg6e274d12005-06-25 14:58:26 -0700720 current->thread.trap_no = 2;
721 crash_kexec(regs);
722 }
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 do_exit(SIGSEGV);
725}
726
Fernando Luis Vázquez Cao06039752006-09-26 10:52:36 +0200727static __kprobes void default_do_nmi(struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 unsigned char reason = 0;
730
731 /* Only the BSP gets external NMIs from the system. */
732 if (!smp_processor_id())
733 reason = get_nmi_reason();
734
735 if (!(reason & 0xc0)) {
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800736 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 == NOTIFY_STOP)
738 return;
739#ifdef CONFIG_X86_LOCAL_APIC
740 /*
741 * Ok, so this is none of the documented NMI sources,
742 * so it must be the NMI watchdog.
743 */
Don Zickus3adbbcc2006-09-26 10:52:26 +0200744 if (nmi_watchdog_tick(regs, reason))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return;
Don Zickus2fbe7b22006-09-26 10:52:27 +0200746 if (!do_nmi_callback(regs, smp_processor_id()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747#endif
Don Zickus3adbbcc2006-09-26 10:52:26 +0200748 unknown_nmi_error(reason, regs);
Don Zickus2fbe7b22006-09-26 10:52:27 +0200749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return;
751 }
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800752 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return;
754 if (reason & 0x80)
755 mem_parity_error(reason, regs);
756 if (reason & 0x40)
757 io_check_error(reason, regs);
758 /*
759 * Reassert NMI in case it became active meanwhile
760 * as it's edge-triggered.
761 */
762 reassert_nmi();
763}
764
Andi Kleen8f4e9562007-07-22 11:12:32 +0200765static int ignore_nmis;
766
Fernando Luis Vázquez Cao06039752006-09-26 10:52:36 +0200767fastcall __kprobes void do_nmi(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
769 int cpu;
770
771 nmi_enter();
772
773 cpu = smp_processor_id();
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 ++nmi_count(cpu);
776
Andi Kleen8f4e9562007-07-22 11:12:32 +0200777 if (!ignore_nmis)
778 default_do_nmi(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 nmi_exit();
781}
782
Andi Kleen8f4e9562007-07-22 11:12:32 +0200783void stop_nmi(void)
784{
785 acpi_nmi_disable();
786 ignore_nmis++;
787}
788
789void restart_nmi(void)
790{
791 ignore_nmis--;
792 acpi_nmi_enable();
793}
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795#ifdef CONFIG_KPROBES
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -0700796fastcall void __kprobes do_int3(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Peter Zijlstra143a5d32007-10-25 14:01:10 +0200798 trace_hardirqs_fixup();
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP)
801 == NOTIFY_STOP)
Stas Sergeev48c882112005-05-01 08:58:49 -0700802 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 /* This is an interrupt gate, because kprobes wants interrupts
804 disabled. Normal trap handlers don't. */
805 restore_interrupts(regs);
806 do_trap(3, SIGTRAP, "int3", 1, regs, error_code, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808#endif
809
810/*
811 * Our handling of the processor debug registers is non-trivial.
812 * We do not clear them on entry and exit from the kernel. Therefore
813 * it is possible to get a watchpoint trap here from inside the kernel.
814 * However, the code in ./ptrace.c has ensured that the user can
815 * only set watchpoints on userspace addresses. Therefore the in-kernel
816 * watchpoint trap can only occur in code which is reading/writing
817 * from user space. Such code must not hold kernel locks (since it
818 * can equally take a page fault), therefore it is safe to call
819 * force_sig_info even though that claims and releases locks.
820 *
821 * Code in ./signal.c ensures that the debug control register
822 * is restored before we deliver any signal, and therefore that
823 * user code runs with the correct debug control register even though
824 * we clear it here.
825 *
826 * Being careful here means that we don't have to be as careful in a
827 * lot of more complicated places (task switching can be a bit lazy
828 * about restoring all the debug state, and ptrace doesn't have to
829 * find every occurrence of the TF bit that could be saved away even
830 * by user code)
831 */
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -0700832fastcall void __kprobes do_debug(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
834 unsigned int condition;
835 struct task_struct *tsk = current;
836
Peter Zijlstra000f4a92007-11-26 20:42:19 +0100837 trace_hardirqs_fixup();
838
Vincent Hanquez1cc6f122005-06-23 00:08:43 -0700839 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Roland McGrath10faa812008-01-30 13:30:54 +0100841 /*
842 * The processor cleared BTF, so don't mark that we need it set.
843 */
844 clear_tsk_thread_flag(tsk, TIF_DEBUGCTLMSR);
845 tsk->thread.debugctlmsr = 0;
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
848 SIGTRAP) == NOTIFY_STOP)
849 return;
850 /* It's safe to allow irq's after DR6 has been saved */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100851 if (regs->flags & X86_EFLAGS_IF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 local_irq_enable();
853
854 /* Mask out spurious debug traps due to lazy DR7 setting */
855 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
Roland McGrath0f534092008-01-30 13:30:59 +0100856 if (!tsk->thread.debugreg7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 goto clear_dr7;
858 }
859
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100860 if (regs->flags & VM_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 goto debug_vm86;
862
863 /* Save debug status register where ptrace can see it */
Roland McGrath0f534092008-01-30 13:30:59 +0100864 tsk->thread.debugreg6 = condition;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 /*
867 * Single-stepping through TF: make sure we ignore any events in
868 * kernel space (but re-enable TF when returning to user mode).
869 */
870 if (condition & DR_STEP) {
871 /*
872 * We already checked v86 mode above, so we can
873 * check for kernel mode by just checking the CPL
874 * of CS.
875 */
Vincent Hanquez717b5942005-06-23 00:08:45 -0700876 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 goto clear_TF_reenable;
878 }
879
880 /* Ok, finally something we can handle */
881 send_sigtrap(tsk, regs, error_code);
882
883 /* Disable additional traps. They'll be re-enabled when
884 * the signal is delivered.
885 */
886clear_dr7:
Vincent Hanquez1cc6f122005-06-23 00:08:43 -0700887 set_debugreg(0, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return;
889
890debug_vm86:
891 handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, 1);
892 return;
893
894clear_TF_reenable:
895 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100896 regs->flags &= ~TF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 return;
898}
899
900/*
901 * Note that we play around with the 'TS' bit in an attempt to get
902 * the correct behaviour even in the presence of the asynchronous
903 * IRQ13 behaviour
904 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100905void math_error(void __user *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
907 struct task_struct * task;
908 siginfo_t info;
909 unsigned short cwd, swd;
910
911 /*
912 * Save the info for the exception handler and clear the error.
913 */
914 task = current;
915 save_init_fpu(task);
916 task->thread.trap_no = 16;
917 task->thread.error_code = 0;
918 info.si_signo = SIGFPE;
919 info.si_errno = 0;
920 info.si_code = __SI_FAULT;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100921 info.si_addr = ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 /*
923 * (~cwd & swd) will mask out exceptions that are not set to unmasked
924 * status. 0x3f is the exception bits in these regs, 0x200 is the
925 * C1 reg you need in case of a stack fault, 0x040 is the stack
926 * fault bit. We should only be taking one exception at a time,
927 * so if this combination doesn't produce any single exception,
928 * then we have a bad program that isn't syncronizing its FPU usage
929 * and it will suffer the consequences since we won't be able to
930 * fully reproduce the context of the exception
931 */
932 cwd = get_fpu_cwd(task);
933 swd = get_fpu_swd(task);
Chuck Ebbertb1daec32005-08-23 21:36:40 -0400934 switch (swd & ~cwd & 0x3f) {
Chuck Ebbert33333372005-09-13 04:55:41 -0400935 case 0x000: /* No unmasked exception */
936 return;
937 default: /* Multiple exceptions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 break;
939 case 0x001: /* Invalid Op */
Chuck Ebbertb1daec32005-08-23 21:36:40 -0400940 /*
941 * swd & 0x240 == 0x040: Stack Underflow
942 * swd & 0x240 == 0x240: Stack Overflow
943 * User must clear the SF bit (0x40) if set
944 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 info.si_code = FPE_FLTINV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 break;
947 case 0x002: /* Denormalize */
948 case 0x010: /* Underflow */
949 info.si_code = FPE_FLTUND;
950 break;
951 case 0x004: /* Zero Divide */
952 info.si_code = FPE_FLTDIV;
953 break;
954 case 0x008: /* Overflow */
955 info.si_code = FPE_FLTOVF;
956 break;
957 case 0x020: /* Precision */
958 info.si_code = FPE_FLTRES;
959 break;
960 }
961 force_sig_info(SIGFPE, &info, task);
962}
963
964fastcall void do_coprocessor_error(struct pt_regs * regs, long error_code)
965{
966 ignore_fpu_irq = 1;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100967 math_error((void __user *)regs->ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100970static void simd_math_error(void __user *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
972 struct task_struct * task;
973 siginfo_t info;
974 unsigned short mxcsr;
975
976 /*
977 * Save the info for the exception handler and clear the error.
978 */
979 task = current;
980 save_init_fpu(task);
981 task->thread.trap_no = 19;
982 task->thread.error_code = 0;
983 info.si_signo = SIGFPE;
984 info.si_errno = 0;
985 info.si_code = __SI_FAULT;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100986 info.si_addr = ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 /*
988 * The SIMD FPU exceptions are handled a little differently, as there
989 * is only a single status/control register. Thus, to determine which
990 * unmasked exception was caught we must mask the exception mask bits
991 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
992 */
993 mxcsr = get_fpu_mxcsr(task);
994 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
995 case 0x000:
996 default:
997 break;
998 case 0x001: /* Invalid Op */
999 info.si_code = FPE_FLTINV;
1000 break;
1001 case 0x002: /* Denormalize */
1002 case 0x010: /* Underflow */
1003 info.si_code = FPE_FLTUND;
1004 break;
1005 case 0x004: /* Zero Divide */
1006 info.si_code = FPE_FLTDIV;
1007 break;
1008 case 0x008: /* Overflow */
1009 info.si_code = FPE_FLTOVF;
1010 break;
1011 case 0x020: /* Precision */
1012 info.si_code = FPE_FLTRES;
1013 break;
1014 }
1015 force_sig_info(SIGFPE, &info, task);
1016}
1017
1018fastcall void do_simd_coprocessor_error(struct pt_regs * regs,
1019 long error_code)
1020{
1021 if (cpu_has_xmm) {
1022 /* Handle SIMD FPU exceptions on PIII+ processors. */
1023 ignore_fpu_irq = 1;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001024 simd_math_error((void __user *)regs->ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 } else {
1026 /*
1027 * Handle strange cache flush from user space exception
1028 * in all other cases. This is undocumented behaviour.
1029 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001030 if (regs->flags & VM_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 handle_vm86_fault((struct kernel_vm86_regs *)regs,
1032 error_code);
1033 return;
1034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 current->thread.trap_no = 19;
1036 current->thread.error_code = error_code;
Alexander Nyberg4f339ec2005-06-25 14:58:27 -07001037 die_if_kernel("cache flush denied", regs, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 force_sig(SIGSEGV, current);
1039 }
1040}
1041
1042fastcall void do_spurious_interrupt_bug(struct pt_regs * regs,
1043 long error_code)
1044{
1045#if 0
1046 /* No need to warn about this any longer. */
1047 printk("Ignoring P6 Local APIC Spurious Interrupt Bug...\n");
1048#endif
1049}
1050
Stas Sergeevbe44d2a2006-12-07 02:14:01 +01001051fastcall unsigned long patch_espfix_desc(unsigned long uesp,
1052 unsigned long kesp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
Jeremy Fitzhardinge7a61d352007-05-02 19:27:15 +02001054 struct desc_struct *gdt = __get_cpu_var(gdt_page).gdt;
Stas Sergeevbe44d2a2006-12-07 02:14:01 +01001055 unsigned long base = (kesp - uesp) & -THREAD_SIZE;
1056 unsigned long new_kesp = kesp - base;
1057 unsigned long lim_pages = (new_kesp | (THREAD_SIZE - 1)) >> PAGE_SHIFT;
1058 __u64 desc = *(__u64 *)&gdt[GDT_ENTRY_ESPFIX_SS];
1059 /* Set up base for espfix segment */
1060 desc &= 0x00f0ff0000000000ULL;
1061 desc |= ((((__u64)base) << 16) & 0x000000ffffff0000ULL) |
1062 ((((__u64)base) << 32) & 0xff00000000000000ULL) |
1063 ((((__u64)lim_pages) << 32) & 0x000f000000000000ULL) |
1064 (lim_pages & 0xffff);
1065 *(__u64 *)&gdt[GDT_ENTRY_ESPFIX_SS] = desc;
1066 return new_kesp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067}
1068
1069/*
1070 * 'math_state_restore()' saves the current math information in the
1071 * old math state array, and gets the new ones from the current task
1072 *
1073 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1074 * Don't touch unless you *really* know how it works.
1075 *
1076 * Must be called with kernel preemption disabled (in this case,
1077 * local interrupts are disabled at the call-site in entry.S).
1078 */
Chuck Ebbertacc20762006-12-07 02:14:01 +01001079asmlinkage void math_state_restore(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
1081 struct thread_info *thread = current_thread_info();
1082 struct task_struct *tsk = thread->task;
1083
1084 clts(); /* Allow maths ops (or we recurse) */
1085 if (!tsk_used_math(tsk))
1086 init_fpu(tsk);
1087 restore_fpu(tsk);
1088 thread->status |= TS_USEDFPU; /* So we fnsave on switch_to() */
Chuck Ebbertacc20762006-12-07 02:14:01 +01001089 tsk->fpu_counter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
Rusty Russell5992b6d2007-07-19 01:49:21 -07001091EXPORT_SYMBOL_GPL(math_state_restore);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093#ifndef CONFIG_MATH_EMULATION
1094
1095asmlinkage void math_emulate(long arg)
1096{
Dave Jones9c107802006-01-09 20:51:32 -08001097 printk(KERN_EMERG "math-emulation not enabled and no coprocessor found.\n");
1098 printk(KERN_EMERG "killing %s.\n",current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 force_sig(SIGFPE,current);
1100 schedule();
1101}
1102
1103#endif /* CONFIG_MATH_EMULATION */
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105/*
1106 * This needs to use 'idt_table' rather than 'idt', and
1107 * thus use the _nonmapped_ version of the IDT, as the
1108 * Pentium F0 0F bugfix can have resulted in the mapped
1109 * IDT being write-protected.
1110 */
1111void set_intr_gate(unsigned int n, void *addr)
1112{
Rusty Russell522e93e2006-09-26 10:52:35 +02001113 _set_gate(n, DESCTYPE_INT, addr, __KERNEL_CS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
1115
1116/*
1117 * This routine sets up an interrupt gate at directory privilege level 3.
1118 */
1119static inline void set_system_intr_gate(unsigned int n, void *addr)
1120{
Rusty Russell522e93e2006-09-26 10:52:35 +02001121 _set_gate(n, DESCTYPE_INT | DESCTYPE_DPL3, addr, __KERNEL_CS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122}
1123
1124static void __init set_trap_gate(unsigned int n, void *addr)
1125{
Rusty Russell522e93e2006-09-26 10:52:35 +02001126 _set_gate(n, DESCTYPE_TRAP, addr, __KERNEL_CS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127}
1128
1129static void __init set_system_gate(unsigned int n, void *addr)
1130{
Rusty Russell522e93e2006-09-26 10:52:35 +02001131 _set_gate(n, DESCTYPE_TRAP | DESCTYPE_DPL3, addr, __KERNEL_CS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
1134static void __init set_task_gate(unsigned int n, unsigned int gdt_entry)
1135{
Rusty Russell522e93e2006-09-26 10:52:35 +02001136 _set_gate(n, DESCTYPE_TASK, (void *)0, (gdt_entry<<3));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137}
1138
1139
1140void __init trap_init(void)
1141{
Rusty Russelldbeb2be2007-10-19 20:35:03 +02001142 int i;
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144#ifdef CONFIG_EISA
1145 void __iomem *p = ioremap(0x0FFFD9, 4);
1146 if (readl(p) == 'E'+('I'<<8)+('S'<<16)+('A'<<24)) {
1147 EISA_bus = 1;
1148 }
1149 iounmap(p);
1150#endif
1151
1152#ifdef CONFIG_X86_LOCAL_APIC
1153 init_apic_mappings();
1154#endif
1155
1156 set_trap_gate(0,&divide_error);
1157 set_intr_gate(1,&debug);
1158 set_intr_gate(2,&nmi);
Jan Beulicheb05c322006-01-06 00:11:49 -08001159 set_system_intr_gate(3, &int3); /* int3/4 can be called from all */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 set_system_gate(4,&overflow);
Jan Beulicheb05c322006-01-06 00:11:49 -08001161 set_trap_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 set_trap_gate(6,&invalid_op);
1163 set_trap_gate(7,&device_not_available);
1164 set_task_gate(8,GDT_ENTRY_DOUBLEFAULT_TSS);
1165 set_trap_gate(9,&coprocessor_segment_overrun);
1166 set_trap_gate(10,&invalid_TSS);
1167 set_trap_gate(11,&segment_not_present);
1168 set_trap_gate(12,&stack_segment);
1169 set_trap_gate(13,&general_protection);
1170 set_intr_gate(14,&page_fault);
1171 set_trap_gate(15,&spurious_interrupt_bug);
1172 set_trap_gate(16,&coprocessor_error);
1173 set_trap_gate(17,&alignment_check);
1174#ifdef CONFIG_X86_MCE
1175 set_trap_gate(18,&machine_check);
1176#endif
1177 set_trap_gate(19,&simd_coprocessor_error);
1178
Jan Beulichd43c6e82006-01-06 00:11:49 -08001179 if (cpu_has_fxsr) {
1180 /*
1181 * Verify that the FXSAVE/FXRSTOR data will be 16-byte aligned.
1182 * Generates a compile-time "error: zero width for bit-field" if
1183 * the alignment is wrong.
1184 */
1185 struct fxsrAlignAssert {
1186 int _:!(offsetof(struct task_struct,
1187 thread.i387.fxsave) & 15);
1188 };
1189
1190 printk(KERN_INFO "Enabling fast FPU save and restore... ");
1191 set_in_cr4(X86_CR4_OSFXSR);
1192 printk("done.\n");
1193 }
1194 if (cpu_has_xmm) {
1195 printk(KERN_INFO "Enabling unmasked SIMD FPU exception "
1196 "support... ");
1197 set_in_cr4(X86_CR4_OSXMMEXCPT);
1198 printk("done.\n");
1199 }
1200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 set_system_gate(SYSCALL_VECTOR,&system_call);
1202
Rusty Russelldbeb2be2007-10-19 20:35:03 +02001203 /* Reserve all the builtin and the syscall vector. */
1204 for (i = 0; i < FIRST_EXTERNAL_VECTOR; i++)
1205 set_bit(i, used_vectors);
1206 set_bit(SYSCALL_VECTOR, used_vectors);
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 /*
1209 * Should be a barrier for any external CPU state.
1210 */
1211 cpu_init();
1212
1213 trap_init_hook();
1214}
1215
1216static int __init kstack_setup(char *s)
1217{
1218 kstack_depth_to_print = simple_strtoul(s, NULL, 0);
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001219 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
1221__setup("kstack=", kstack_setup);
Chuck Ebbert86c41832007-02-13 13:26:25 +01001222
1223static int __init code_bytes_setup(char *s)
1224{
1225 code_bytes = simple_strtoul(s, NULL, 0);
1226 if (code_bytes > 8192)
1227 code_bytes = 8192;
1228
1229 return 1;
1230}
1231__setup("code_bytes=", code_bytes_setup);