blob: d345c712c6ca192705b2b637768c6532ffc234f1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/x86-64/traps.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
6 *
7 * Pentium III FXSR, SSE support
8 * Gareth Hughes <gareth@valinux.com>, May 2000
9 *
10 * $Id: traps.c,v 1.36 2002/03/24 11:09:10 ak Exp $
11 */
12
13/*
14 * 'Traps.c' handles hardware traps and faults after we have saved some
15 * state in 'entry.S'.
16 */
17#include <linux/config.h>
18#include <linux/sched.h>
19#include <linux/kernel.h>
20#include <linux/string.h>
21#include <linux/errno.h>
22#include <linux/ptrace.h>
23#include <linux/timer.h>
24#include <linux/mm.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/spinlock.h>
28#include <linux/interrupt.h>
29#include <linux/module.h>
30#include <linux/moduleparam.h>
akpm@osdl.org35faa712005-04-16 15:24:54 -070031#include <linux/nmi.h>
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -070032#include <linux/kprobes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/system.h>
35#include <asm/uaccess.h>
36#include <asm/io.h>
37#include <asm/atomic.h>
38#include <asm/debugreg.h>
39#include <asm/desc.h>
40#include <asm/i387.h>
41#include <asm/kdebug.h>
42#include <asm/processor.h>
43
44#include <asm/smp.h>
45#include <asm/pgalloc.h>
46#include <asm/pda.h>
47#include <asm/proto.h>
48#include <asm/nmi.h>
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050extern struct gate_struct idt_table[256];
51
52asmlinkage void divide_error(void);
53asmlinkage void debug(void);
54asmlinkage void nmi(void);
55asmlinkage void int3(void);
56asmlinkage void overflow(void);
57asmlinkage void bounds(void);
58asmlinkage void invalid_op(void);
59asmlinkage void device_not_available(void);
60asmlinkage void double_fault(void);
61asmlinkage void coprocessor_segment_overrun(void);
62asmlinkage void invalid_TSS(void);
63asmlinkage void segment_not_present(void);
64asmlinkage void stack_segment(void);
65asmlinkage void general_protection(void);
66asmlinkage void page_fault(void);
67asmlinkage void coprocessor_error(void);
68asmlinkage void simd_coprocessor_error(void);
69asmlinkage void reserved(void);
70asmlinkage void alignment_check(void);
71asmlinkage void machine_check(void);
72asmlinkage void spurious_interrupt_bug(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74struct notifier_block *die_chain;
75static DEFINE_SPINLOCK(die_notifier_lock);
76
77int register_die_notifier(struct notifier_block *nb)
78{
79 int err = 0;
80 unsigned long flags;
81 spin_lock_irqsave(&die_notifier_lock, flags);
82 err = notifier_chain_register(&die_chain, nb);
83 spin_unlock_irqrestore(&die_notifier_lock, flags);
84 return err;
85}
86
87static inline void conditional_sti(struct pt_regs *regs)
88{
89 if (regs->eflags & X86_EFLAGS_IF)
90 local_irq_enable();
91}
92
93static int kstack_depth_to_print = 10;
94
95#ifdef CONFIG_KALLSYMS
96#include <linux/kallsyms.h>
97int printk_address(unsigned long address)
98{
99 unsigned long offset = 0, symsize;
100 const char *symname;
101 char *modname;
102 char *delim = ":";
103 char namebuf[128];
104
105 symname = kallsyms_lookup(address, &symsize, &offset, &modname, namebuf);
106 if (!symname)
107 return printk("[<%016lx>]", address);
108 if (!modname)
109 modname = delim = "";
110 return printk("<%016lx>{%s%s%s%s%+ld}",
111 address,delim,modname,delim,symname,offset);
112}
113#else
114int printk_address(unsigned long address)
115{
116 return printk("[<%016lx>]", address);
117}
118#endif
119
Andi Kleen0a658002005-04-16 15:25:17 -0700120static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
121 unsigned *usedp, const char **idp)
122{
Jan Beulichb556b352006-01-11 22:43:00 +0100123 static char ids[][8] = {
Andi Kleen0a658002005-04-16 15:25:17 -0700124 [DEBUG_STACK - 1] = "#DB",
125 [NMI_STACK - 1] = "NMI",
126 [DOUBLEFAULT_STACK - 1] = "#DF",
127 [STACKFAULT_STACK - 1] = "#SS",
128 [MCE_STACK - 1] = "#MC",
Jan Beulichb556b352006-01-11 22:43:00 +0100129#if DEBUG_STKSZ > EXCEPTION_STKSZ
130 [N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
131#endif
Andi Kleen0a658002005-04-16 15:25:17 -0700132 };
133 unsigned k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Andi Kleen0a658002005-04-16 15:25:17 -0700135 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
136 unsigned long end;
137
Jan Beulichb556b352006-01-11 22:43:00 +0100138 switch (k + 1) {
139#if DEBUG_STKSZ > EXCEPTION_STKSZ
140 case DEBUG_STACK:
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100141 end = cpu_pda(cpu)->debugstack + DEBUG_STKSZ;
Jan Beulichb556b352006-01-11 22:43:00 +0100142 break;
143#endif
144 default:
145 end = per_cpu(init_tss, cpu).ist[k];
146 break;
147 }
Andi Kleen0a658002005-04-16 15:25:17 -0700148 if (stack >= end)
149 continue;
150 if (stack >= end - EXCEPTION_STKSZ) {
151 if (*usedp & (1U << k))
152 break;
153 *usedp |= 1U << k;
154 *idp = ids[k];
155 return (unsigned long *)end;
156 }
Jan Beulichb556b352006-01-11 22:43:00 +0100157#if DEBUG_STKSZ > EXCEPTION_STKSZ
158 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
159 unsigned j = N_EXCEPTION_STACKS - 1;
160
161 do {
162 ++j;
163 end -= EXCEPTION_STKSZ;
164 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
165 } while (stack < end - EXCEPTION_STKSZ);
166 if (*usedp & (1U << j))
167 break;
168 *usedp |= 1U << j;
169 *idp = ids[j];
170 return (unsigned long *)end;
171 }
172#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174 return NULL;
Andi Kleen0a658002005-04-16 15:25:17 -0700175}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177/*
178 * x86-64 can have upto three kernel stacks:
179 * process stack
180 * interrupt stack
Andi Kleen0a658002005-04-16 15:25:17 -0700181 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 */
183
184void show_trace(unsigned long *stack)
185{
Andi Kleen0a658002005-04-16 15:25:17 -0700186 const unsigned cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100187 unsigned long *irqstack_end = (unsigned long *)cpu_pda(cpu)->irqstackptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 int i;
Andi Kleen0a658002005-04-16 15:25:17 -0700189 unsigned used = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 printk("\nCall Trace:");
Andi Kleen0a658002005-04-16 15:25:17 -0700192
193#define HANDLE_STACK(cond) \
194 do while (cond) { \
Jan Beulich1b2f6302006-01-11 22:46:45 +0100195 unsigned long addr = *stack++; \
Andi Kleen0a658002005-04-16 15:25:17 -0700196 if (kernel_text_address(addr)) { \
Jan Beulich1b2f6302006-01-11 22:46:45 +0100197 if (i > 50) { \
198 printk("\n "); \
199 i = 0; \
200 } \
201 else \
202 i += printk(" "); \
Andi Kleen0a658002005-04-16 15:25:17 -0700203 /* \
204 * If the address is either in the text segment of the \
205 * kernel, or in the region which contains vmalloc'ed \
206 * memory, it *may* be the address of a calling \
207 * routine; if so, print it so that someone tracing \
208 * down the cause of the crash will be able to figure \
209 * out the call path that was taken. \
210 */ \
211 i += printk_address(addr); \
Andi Kleen0a658002005-04-16 15:25:17 -0700212 } \
213 } while (0)
214
Jan Beulich1b2f6302006-01-11 22:46:45 +0100215 for(i = 11; ; ) {
Andi Kleen0a658002005-04-16 15:25:17 -0700216 const char *id;
217 unsigned long *estack_end;
218 estack_end = in_exception_stack(cpu, (unsigned long)stack,
219 &used, &id);
220
221 if (estack_end) {
Jan Beulich1b2f6302006-01-11 22:46:45 +0100222 i += printk(" <%s>", id);
Andi Kleen0a658002005-04-16 15:25:17 -0700223 HANDLE_STACK (stack < estack_end);
Jan Beulich1b2f6302006-01-11 22:46:45 +0100224 i += printk(" <EOE>");
Andi Kleen0a658002005-04-16 15:25:17 -0700225 stack = (unsigned long *) estack_end[-2];
226 continue;
227 }
228 if (irqstack_end) {
229 unsigned long *irqstack;
230 irqstack = irqstack_end -
231 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
232
233 if (stack >= irqstack && stack < irqstack_end) {
Jan Beulich1b2f6302006-01-11 22:46:45 +0100234 i += printk(" <IRQ>");
Andi Kleen0a658002005-04-16 15:25:17 -0700235 HANDLE_STACK (stack < irqstack_end);
236 stack = (unsigned long *) (irqstack_end[-1]);
237 irqstack_end = NULL;
Jan Beulich1b2f6302006-01-11 22:46:45 +0100238 i += printk(" <EOI>");
Andi Kleen0a658002005-04-16 15:25:17 -0700239 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
241 }
Andi Kleen0a658002005-04-16 15:25:17 -0700242 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
Andi Kleen0a658002005-04-16 15:25:17 -0700244
245 HANDLE_STACK (((long) stack & (THREAD_SIZE-1)) != 0);
246#undef HANDLE_STACK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 printk("\n");
248}
249
250void show_stack(struct task_struct *tsk, unsigned long * rsp)
251{
252 unsigned long *stack;
253 int i;
254 const int cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100255 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
256 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 // debugging aid: "show_stack(NULL, NULL);" prints the
259 // back trace for this cpu.
260
261 if (rsp == NULL) {
262 if (tsk)
263 rsp = (unsigned long *)tsk->thread.rsp;
264 else
265 rsp = (unsigned long *)&rsp;
266 }
267
268 stack = rsp;
269 for(i=0; i < kstack_depth_to_print; i++) {
270 if (stack >= irqstack && stack <= irqstack_end) {
271 if (stack == irqstack_end) {
272 stack = (unsigned long *) (irqstack_end[-1]);
273 printk(" <EOI> ");
274 }
275 } else {
276 if (((long) stack & (THREAD_SIZE-1)) == 0)
277 break;
278 }
279 if (i && ((i % 4) == 0))
280 printk("\n ");
281 printk("%016lx ", *stack++);
akpm@osdl.org35faa712005-04-16 15:24:54 -0700282 touch_nmi_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284 show_trace((unsigned long *)rsp);
285}
286
287/*
288 * The architecture-independent dump_stack generator
289 */
290void dump_stack(void)
291{
292 unsigned long dummy;
293 show_trace(&dummy);
294}
295
296EXPORT_SYMBOL(dump_stack);
297
298void show_registers(struct pt_regs *regs)
299{
300 int i;
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700301 int in_kernel = !user_mode(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 unsigned long rsp;
303 const int cpu = safe_smp_processor_id();
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100304 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 rsp = regs->rsp;
307
308 printk("CPU %d ", cpu);
309 __show_regs(regs);
310 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
311 cur->comm, cur->pid, cur->thread_info, cur);
312
313 /*
314 * When in-kernel, we also print out the stack and code at the
315 * time of the fault..
316 */
317 if (in_kernel) {
318
319 printk("Stack: ");
320 show_stack(NULL, (unsigned long*)rsp);
321
322 printk("\nCode: ");
323 if(regs->rip < PAGE_OFFSET)
324 goto bad;
325
326 for(i=0;i<20;i++)
327 {
328 unsigned char c;
329 if(__get_user(c, &((unsigned char*)regs->rip)[i])) {
330bad:
331 printk(" Bad RIP value.");
332 break;
333 }
334 printk("%02x ", c);
335 }
336 }
337 printk("\n");
338}
339
340void handle_BUG(struct pt_regs *regs)
341{
342 struct bug_frame f;
343 char tmp;
344
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700345 if (user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return;
Stephen Hemminger77a75332006-01-11 22:46:30 +0100347 if (__copy_from_user(&f, (const void __user *) regs->rip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 sizeof(struct bug_frame)))
349 return;
Jan Beulich049cdef2005-09-12 18:49:25 +0200350 if (f.filename >= 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 f.ud2[0] != 0x0f || f.ud2[1] != 0x0b)
352 return;
Jan Beulich049cdef2005-09-12 18:49:25 +0200353 if (__get_user(tmp, (char *)(long)f.filename))
354 f.filename = (int)(long)"unmapped filename";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 printk("----------- [cut here ] --------- [please bite here ] ---------\n");
Jan Beulich049cdef2005-09-12 18:49:25 +0200356 printk(KERN_ALERT "Kernel BUG at %.50s:%d\n", (char *)(long)f.filename, f.line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700359#ifdef CONFIG_BUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360void out_of_line_bug(void)
361{
362 BUG();
363}
Alexander Nyberg4f60fdf2005-05-25 12:31:28 -0700364#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366static DEFINE_SPINLOCK(die_lock);
367static int die_owner = -1;
368
Jan Beulich12091402005-09-12 18:49:24 +0200369unsigned long oops_begin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Jan Beulich12091402005-09-12 18:49:24 +0200371 int cpu = safe_smp_processor_id();
372 unsigned long flags;
373
374 /* racy, but better than risking deadlock. */
375 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (!spin_trylock(&die_lock)) {
377 if (cpu == die_owner)
378 /* nested oops. should stop eventually */;
379 else
Jan Beulich12091402005-09-12 18:49:24 +0200380 spin_lock(&die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Jan Beulich12091402005-09-12 18:49:24 +0200382 die_owner = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 console_verbose();
Jan Beulich12091402005-09-12 18:49:24 +0200384 bust_spinlocks(1);
385 return flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Jan Beulich12091402005-09-12 18:49:24 +0200388void oops_end(unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 die_owner = -1;
Jan Beulich12091402005-09-12 18:49:24 +0200391 bust_spinlocks(0);
392 spin_unlock_irqrestore(&die_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (panic_on_oops)
Jan Beulich12091402005-09-12 18:49:24 +0200394 panic("Oops");
395}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397void __die(const char * str, struct pt_regs * regs, long err)
398{
399 static int die_counter;
400 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
401#ifdef CONFIG_PREEMPT
402 printk("PREEMPT ");
403#endif
404#ifdef CONFIG_SMP
405 printk("SMP ");
406#endif
407#ifdef CONFIG_DEBUG_PAGEALLOC
408 printk("DEBUG_PAGEALLOC");
409#endif
410 printk("\n");
Jan Beulich6e3f3612006-01-11 22:42:14 +0100411 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 show_registers(regs);
413 /* Executive summary in case the oops scrolled away */
414 printk(KERN_ALERT "RIP ");
415 printk_address(regs->rip);
416 printk(" RSP <%016lx>\n", regs->rsp);
417}
418
419void die(const char * str, struct pt_regs * regs, long err)
420{
Jan Beulich12091402005-09-12 18:49:24 +0200421 unsigned long flags = oops_begin();
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 handle_BUG(regs);
424 __die(str, regs, err);
Jan Beulich12091402005-09-12 18:49:24 +0200425 oops_end(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 do_exit(SIGSEGV);
427}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429void die_nmi(char *str, struct pt_regs *regs)
430{
Jan Beulich12091402005-09-12 18:49:24 +0200431 unsigned long flags = oops_begin();
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 /*
434 * We are in trouble anyway, lets at least try
435 * to get a message out.
436 */
437 printk(str, safe_smp_processor_id());
438 show_registers(regs);
439 if (panic_on_timeout || panic_on_oops)
440 panic("nmi watchdog");
441 printk("console shuts up ...\n");
Jan Beulich12091402005-09-12 18:49:24 +0200442 oops_end(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 do_exit(SIGSEGV);
444}
445
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700446static void __kprobes do_trap(int trapnr, int signr, char *str,
447 struct pt_regs * regs, long error_code,
448 siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100450 struct task_struct *tsk = current;
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 conditional_sti(regs);
453
Jan Beulich6e3f3612006-01-11 22:42:14 +0100454 tsk->thread.error_code = error_code;
455 tsk->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Jan Beulich6e3f3612006-01-11 22:42:14 +0100457 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (exception_trace && unhandled_signal(tsk, signr))
459 printk(KERN_INFO
460 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
461 tsk->comm, tsk->pid, str,
462 regs->rip,regs->rsp,error_code);
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (info)
465 force_sig_info(signr, info, tsk);
466 else
467 force_sig(signr, tsk);
468 return;
469 }
470
471
472 /* kernel trap */
473 {
474 const struct exception_table_entry *fixup;
475 fixup = search_exception_tables(regs->rip);
476 if (fixup) {
477 regs->rip = fixup->fixup;
478 } else
479 die(str, regs, error_code);
480 return;
481 }
482}
483
484#define DO_ERROR(trapnr, signr, str, name) \
485asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
486{ \
487 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
488 == NOTIFY_STOP) \
489 return; \
490 do_trap(trapnr, signr, str, regs, error_code, NULL); \
491}
492
493#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
494asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
495{ \
496 siginfo_t info; \
497 info.si_signo = signr; \
498 info.si_errno = 0; \
499 info.si_code = sicode; \
500 info.si_addr = (void __user *)siaddr; \
501 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
502 == NOTIFY_STOP) \
503 return; \
504 do_trap(trapnr, signr, str, regs, error_code, &info); \
505}
506
507DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
508DO_ERROR( 4, SIGSEGV, "overflow", overflow)
509DO_ERROR( 5, SIGSEGV, "bounds", bounds)
Chuck Ebbert100c0e32006-01-11 22:46:00 +0100510DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
512DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
513DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
514DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
515DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
516DO_ERROR(18, SIGSEGV, "reserved", reserved)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700517DO_ERROR(12, SIGBUS, "stack segment", stack_segment)
Jan Beulicheca37c12006-01-11 22:42:17 +0100518
519asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
520{
521 static const char str[] = "double fault";
522 struct task_struct *tsk = current;
523
524 /* Return not checked because double check cannot be ignored */
525 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
526
527 tsk->thread.error_code = error_code;
528 tsk->thread.trap_no = 8;
529
530 /* This is always a kernel trap and never fixable (and thus must
531 never return). */
532 for (;;)
533 die(str, regs, error_code);
534}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700536asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
537 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
Jan Beulich6e3f3612006-01-11 22:42:14 +0100539 struct task_struct *tsk = current;
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 conditional_sti(regs);
542
Jan Beulich6e3f3612006-01-11 22:42:14 +0100543 tsk->thread.error_code = error_code;
544 tsk->thread.trap_no = 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Jan Beulich6e3f3612006-01-11 22:42:14 +0100546 if (user_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
548 printk(KERN_INFO
549 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
550 tsk->comm, tsk->pid,
551 regs->rip,regs->rsp,error_code);
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 force_sig(SIGSEGV, tsk);
554 return;
555 }
556
557 /* kernel gp */
558 {
559 const struct exception_table_entry *fixup;
560 fixup = search_exception_tables(regs->rip);
561 if (fixup) {
562 regs->rip = fixup->fixup;
563 return;
564 }
565 if (notify_die(DIE_GPF, "general protection fault", regs,
566 error_code, 13, SIGSEGV) == NOTIFY_STOP)
567 return;
568 die("general protection fault", regs, error_code);
569 }
570}
571
572static void mem_parity_error(unsigned char reason, struct pt_regs * regs)
573{
574 printk("Uhhuh. NMI received. Dazed and confused, but trying to continue\n");
575 printk("You probably have a hardware problem with your RAM chips\n");
576
577 /* Clear and disable the memory parity error line. */
578 reason = (reason & 0xf) | 4;
579 outb(reason, 0x61);
580}
581
582static void io_check_error(unsigned char reason, struct pt_regs * regs)
583{
584 printk("NMI: IOCK error (debug interrupt?)\n");
585 show_registers(regs);
586
587 /* Re-enable the IOCK line, wait for a few seconds */
588 reason = (reason & 0xf) | 8;
589 outb(reason, 0x61);
590 mdelay(2000);
591 reason &= ~8;
592 outb(reason, 0x61);
593}
594
595static void unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
596{ printk("Uhhuh. NMI received for unknown reason %02x.\n", reason);
597 printk("Dazed and confused, but trying to continue\n");
598 printk("Do you have a strange power saving mode enabled?\n");
599}
600
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700601/* Runs on IST stack. This code must keep interrupts off all the time.
602 Nested NMIs are prevented by the CPU. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603asmlinkage void default_do_nmi(struct pt_regs *regs)
604{
605 unsigned char reason = 0;
Ashok Raj76e4f662005-06-25 14:55:00 -0700606 int cpu;
607
608 cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 /* Only the BSP gets external NMIs from the system. */
Ashok Raj76e4f662005-06-25 14:55:00 -0700611 if (!cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 reason = get_nmi_reason();
613
614 if (!(reason & 0xc0)) {
Jan Beulich6e3f3612006-01-11 22:42:14 +0100615 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 == NOTIFY_STOP)
617 return;
618#ifdef CONFIG_X86_LOCAL_APIC
619 /*
620 * Ok, so this is none of the documented NMI sources,
621 * so it must be the NMI watchdog.
622 */
623 if (nmi_watchdog > 0) {
624 nmi_watchdog_tick(regs,reason);
625 return;
626 }
627#endif
628 unknown_nmi_error(reason, regs);
629 return;
630 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100631 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return;
633
634 /* AK: following checks seem to be broken on modern chipsets. FIXME */
635
636 if (reason & 0x80)
637 mem_parity_error(reason, regs);
638 if (reason & 0x40)
639 io_check_error(reason, regs);
640}
641
Jan Beulichb556b352006-01-11 22:43:00 +0100642/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700643asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
645 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
646 return;
647 }
648 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
649 return;
650}
651
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700652/* Help handler running on IST stack to switch back to user stack
653 for scheduling or signal handling. The actual stack switch is done in
654 entry.S */
655asmlinkage struct pt_regs *sync_regs(struct pt_regs *eregs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700657 struct pt_regs *regs = eregs;
658 /* Did already sync */
659 if (eregs == (struct pt_regs *)eregs->rsp)
660 ;
661 /* Exception from user space */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700662 else if (user_mode(eregs))
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700663 regs = ((struct pt_regs *)current->thread.rsp0) - 1;
664 /* Exception from kernel and interrupts are enabled. Move to
665 kernel process stack. */
666 else if (eregs->eflags & X86_EFLAGS_IF)
667 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
668 if (eregs != regs)
669 *regs = *eregs;
670 return regs;
671}
672
673/* runs on IST stack. */
Prasanna S Panchamukhi0f2fbdc2005-09-06 15:19:28 -0700674asmlinkage void __kprobes do_debug(struct pt_regs * regs,
675 unsigned long error_code)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700676{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 unsigned long condition;
678 struct task_struct *tsk = current;
679 siginfo_t info;
680
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700681 get_debugreg(condition, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
Andi Kleendaeeafe2005-04-16 15:25:13 -0700684 SIGTRAP) == NOTIFY_STOP)
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700685 return;
Andi Kleendaeeafe2005-04-16 15:25:13 -0700686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 conditional_sti(regs);
688
689 /* Mask out spurious debug traps due to lazy DR7 setting */
690 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
691 if (!tsk->thread.debugreg7) {
692 goto clear_dr7;
693 }
694 }
695
696 tsk->thread.debugreg6 = condition;
697
698 /* Mask out spurious TF errors due to lazy TF clearing */
Andi Kleendaeeafe2005-04-16 15:25:13 -0700699 if (condition & DR_STEP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 /*
701 * The TF error should be masked out only if the current
702 * process is not traced and if the TRAP flag has been set
703 * previously by a tracing process (condition detected by
704 * the PT_DTRACE flag); remember that the i386 TRAP flag
705 * can be modified by the process itself in user mode,
706 * allowing programs to debug themselves without the ptrace()
707 * interface.
708 */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700709 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 goto clear_TF_reenable;
Andi Kleenbe61bff2005-04-16 15:24:57 -0700711 /*
712 * Was the TF flag set by a debugger? If so, clear it now,
713 * so that register information is correct.
714 */
715 if (tsk->ptrace & PT_DTRACE) {
716 regs->eflags &= ~TF_MASK;
717 tsk->ptrace &= ~PT_DTRACE;
718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720
721 /* Ok, finally something we can handle */
722 tsk->thread.trap_no = 1;
723 tsk->thread.error_code = error_code;
724 info.si_signo = SIGTRAP;
725 info.si_errno = 0;
726 info.si_code = TRAP_BRKPT;
John Blackwood01b8faa2006-01-11 22:44:15 +0100727 info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
728 force_sig_info(SIGTRAP, &info, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730clear_dr7:
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700731 set_debugreg(0UL, 7);
Andi Kleen6fefb0d2005-04-16 15:25:03 -0700732 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734clear_TF_reenable:
735 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 regs->eflags &= ~TF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
Jan Beulich6e3f3612006-01-11 22:42:14 +0100739static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
741 const struct exception_table_entry *fixup;
742 fixup = search_exception_tables(regs->rip);
743 if (fixup) {
744 regs->rip = fixup->fixup;
745 return 1;
746 }
Jan Beulich6e3f3612006-01-11 22:42:14 +0100747 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
Andi Kleen3a848f62005-04-16 15:25:06 -0700748 /* Illegal floating point operation in the kernel */
Jan Beulich6e3f3612006-01-11 22:42:14 +0100749 current->thread.trap_no = trapnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 die(str, regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return 0;
752}
753
754/*
755 * Note that we play around with the 'TS' bit in an attempt to get
756 * the correct behaviour even in the presence of the asynchronous
757 * IRQ13 behaviour
758 */
759asmlinkage void do_coprocessor_error(struct pt_regs *regs)
760{
761 void __user *rip = (void __user *)(regs->rip);
762 struct task_struct * task;
763 siginfo_t info;
764 unsigned short cwd, swd;
765
766 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700767 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100768 kernel_math_error(regs, "kernel x87 math error", 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return;
770
771 /*
772 * Save the info for the exception handler and clear the error.
773 */
774 task = current;
775 save_init_fpu(task);
776 task->thread.trap_no = 16;
777 task->thread.error_code = 0;
778 info.si_signo = SIGFPE;
779 info.si_errno = 0;
780 info.si_code = __SI_FAULT;
781 info.si_addr = rip;
782 /*
783 * (~cwd & swd) will mask out exceptions that are not set to unmasked
784 * status. 0x3f is the exception bits in these regs, 0x200 is the
785 * C1 reg you need in case of a stack fault, 0x040 is the stack
786 * fault bit. We should only be taking one exception at a time,
787 * so if this combination doesn't produce any single exception,
788 * then we have a bad program that isn't synchronizing its FPU usage
789 * and it will suffer the consequences since we won't be able to
790 * fully reproduce the context of the exception
791 */
792 cwd = get_fpu_cwd(task);
793 swd = get_fpu_swd(task);
Chuck Ebbertff347b22005-09-12 18:49:25 +0200794 switch (swd & ~cwd & 0x3f) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 case 0x000:
796 default:
797 break;
798 case 0x001: /* Invalid Op */
Chuck Ebbertff347b22005-09-12 18:49:25 +0200799 /*
800 * swd & 0x240 == 0x040: Stack Underflow
801 * swd & 0x240 == 0x240: Stack Overflow
802 * User must clear the SF bit (0x40) if set
803 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 info.si_code = FPE_FLTINV;
805 break;
806 case 0x002: /* Denormalize */
807 case 0x010: /* Underflow */
808 info.si_code = FPE_FLTUND;
809 break;
810 case 0x004: /* Zero Divide */
811 info.si_code = FPE_FLTDIV;
812 break;
813 case 0x008: /* Overflow */
814 info.si_code = FPE_FLTOVF;
815 break;
816 case 0x020: /* Precision */
817 info.si_code = FPE_FLTRES;
818 break;
819 }
820 force_sig_info(SIGFPE, &info, task);
821}
822
823asmlinkage void bad_intr(void)
824{
825 printk("bad interrupt");
826}
827
828asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
829{
830 void __user *rip = (void __user *)(regs->rip);
831 struct task_struct * task;
832 siginfo_t info;
833 unsigned short mxcsr;
834
835 conditional_sti(regs);
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700836 if (!user_mode(regs) &&
Jan Beulich6e3f3612006-01-11 22:42:14 +0100837 kernel_math_error(regs, "kernel simd math error", 19))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 return;
839
840 /*
841 * Save the info for the exception handler and clear the error.
842 */
843 task = current;
844 save_init_fpu(task);
845 task->thread.trap_no = 19;
846 task->thread.error_code = 0;
847 info.si_signo = SIGFPE;
848 info.si_errno = 0;
849 info.si_code = __SI_FAULT;
850 info.si_addr = rip;
851 /*
852 * The SIMD FPU exceptions are handled a little differently, as there
853 * is only a single status/control register. Thus, to determine which
854 * unmasked exception was caught we must mask the exception mask bits
855 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
856 */
857 mxcsr = get_fpu_mxcsr(task);
858 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
859 case 0x000:
860 default:
861 break;
862 case 0x001: /* Invalid Op */
863 info.si_code = FPE_FLTINV;
864 break;
865 case 0x002: /* Denormalize */
866 case 0x010: /* Underflow */
867 info.si_code = FPE_FLTUND;
868 break;
869 case 0x004: /* Zero Divide */
870 info.si_code = FPE_FLTDIV;
871 break;
872 case 0x008: /* Overflow */
873 info.si_code = FPE_FLTOVF;
874 break;
875 case 0x020: /* Precision */
876 info.si_code = FPE_FLTRES;
877 break;
878 }
879 force_sig_info(SIGFPE, &info, task);
880}
881
882asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
883{
884}
885
886asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
887{
888}
889
Jacob Shin89b831e2005-11-05 17:25:53 +0100890asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
891{
892}
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894/*
895 * 'math_state_restore()' saves the current math information in the
896 * old math state array, and gets the new ones from the current task
897 *
898 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
899 * Don't touch unless you *really* know how it works.
900 */
901asmlinkage void math_state_restore(void)
902{
903 struct task_struct *me = current;
904 clts(); /* Allow maths ops (or we recurse) */
905
906 if (!used_math())
907 init_fpu(me);
908 restore_fpu_checking(&me->thread.i387.fxsave);
909 me->thread_info->status |= TS_USEDFPU;
910}
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912void __init trap_init(void)
913{
914 set_intr_gate(0,&divide_error);
915 set_intr_gate_ist(1,&debug,DEBUG_STACK);
916 set_intr_gate_ist(2,&nmi,NMI_STACK);
Jan Beulichb556b352006-01-11 22:43:00 +0100917 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
Jan Beulich0a521582006-01-11 22:42:08 +0100918 set_system_gate(4,&overflow); /* int4 can be called from all */
919 set_intr_gate(5,&bounds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 set_intr_gate(6,&invalid_op);
921 set_intr_gate(7,&device_not_available);
922 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
923 set_intr_gate(9,&coprocessor_segment_overrun);
924 set_intr_gate(10,&invalid_TSS);
925 set_intr_gate(11,&segment_not_present);
926 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
927 set_intr_gate(13,&general_protection);
928 set_intr_gate(14,&page_fault);
929 set_intr_gate(15,&spurious_interrupt_bug);
930 set_intr_gate(16,&coprocessor_error);
931 set_intr_gate(17,&alignment_check);
932#ifdef CONFIG_X86_MCE
933 set_intr_gate_ist(18,&machine_check, MCE_STACK);
934#endif
935 set_intr_gate(19,&simd_coprocessor_error);
936
937#ifdef CONFIG_IA32_EMULATION
938 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
939#endif
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 /*
942 * Should be a barrier for any external CPU state.
943 */
944 cpu_init();
945}
946
947
948/* Actual parsing is done early in setup.c. */
949static int __init oops_dummy(char *s)
950{
951 panic_on_oops = 1;
952 return -1;
953}
954__setup("oops=", oops_dummy);
955
956static int __init kstack_setup(char *s)
957{
958 kstack_depth_to_print = simple_strtoul(s,NULL,0);
959 return 0;
960}
961__setup("kstack=", kstack_setup);
962