[PATCH] Merge stacktrace and show_trace
[deliverable/linux.git] / arch / x86_64 / kernel / traps.c
1 /*
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
11 /*
12 * 'Traps.c' handles hardware traps and faults after we have saved some
13 * state in 'entry.S'.
14 */
15 #include <linux/sched.h>
16 #include <linux/kernel.h>
17 #include <linux/string.h>
18 #include <linux/errno.h>
19 #include <linux/ptrace.h>
20 #include <linux/timer.h>
21 #include <linux/mm.h>
22 #include <linux/init.h>
23 #include <linux/delay.h>
24 #include <linux/spinlock.h>
25 #include <linux/interrupt.h>
26 #include <linux/module.h>
27 #include <linux/moduleparam.h>
28 #include <linux/nmi.h>
29 #include <linux/kprobes.h>
30 #include <linux/kexec.h>
31 #include <linux/unwind.h>
32
33 #include <asm/system.h>
34 #include <asm/uaccess.h>
35 #include <asm/io.h>
36 #include <asm/atomic.h>
37 #include <asm/debugreg.h>
38 #include <asm/desc.h>
39 #include <asm/i387.h>
40 #include <asm/kdebug.h>
41 #include <asm/processor.h>
42 #include <asm/unwind.h>
43 #include <asm/smp.h>
44 #include <asm/pgalloc.h>
45 #include <asm/pda.h>
46 #include <asm/proto.h>
47 #include <asm/nmi.h>
48 #include <asm/stacktrace.h>
49
50 asmlinkage void divide_error(void);
51 asmlinkage void debug(void);
52 asmlinkage void nmi(void);
53 asmlinkage void int3(void);
54 asmlinkage void overflow(void);
55 asmlinkage void bounds(void);
56 asmlinkage void invalid_op(void);
57 asmlinkage void device_not_available(void);
58 asmlinkage void double_fault(void);
59 asmlinkage void coprocessor_segment_overrun(void);
60 asmlinkage void invalid_TSS(void);
61 asmlinkage void segment_not_present(void);
62 asmlinkage void stack_segment(void);
63 asmlinkage void general_protection(void);
64 asmlinkage void page_fault(void);
65 asmlinkage void coprocessor_error(void);
66 asmlinkage void simd_coprocessor_error(void);
67 asmlinkage void reserved(void);
68 asmlinkage void alignment_check(void);
69 asmlinkage void machine_check(void);
70 asmlinkage void spurious_interrupt_bug(void);
71
72 ATOMIC_NOTIFIER_HEAD(die_chain);
73 EXPORT_SYMBOL(die_chain);
74
75 int register_die_notifier(struct notifier_block *nb)
76 {
77 vmalloc_sync_all();
78 return atomic_notifier_chain_register(&die_chain, nb);
79 }
80 EXPORT_SYMBOL(register_die_notifier); /* used modular by kdb */
81
82 int unregister_die_notifier(struct notifier_block *nb)
83 {
84 return atomic_notifier_chain_unregister(&die_chain, nb);
85 }
86 EXPORT_SYMBOL(unregister_die_notifier); /* used modular by kdb */
87
88 static inline void conditional_sti(struct pt_regs *regs)
89 {
90 if (regs->eflags & X86_EFLAGS_IF)
91 local_irq_enable();
92 }
93
94 static inline void preempt_conditional_sti(struct pt_regs *regs)
95 {
96 preempt_disable();
97 if (regs->eflags & X86_EFLAGS_IF)
98 local_irq_enable();
99 }
100
101 static inline void preempt_conditional_cli(struct pt_regs *regs)
102 {
103 if (regs->eflags & X86_EFLAGS_IF)
104 local_irq_disable();
105 /* Make sure to not schedule here because we could be running
106 on an exception stack. */
107 preempt_enable_no_resched();
108 }
109
110 static int kstack_depth_to_print = 12;
111 #ifdef CONFIG_STACK_UNWIND
112 static int call_trace = 1;
113 #else
114 #define call_trace (-1)
115 #endif
116
117 #ifdef CONFIG_KALLSYMS
118 # include <linux/kallsyms.h>
119 void printk_address(unsigned long address)
120 {
121 unsigned long offset = 0, symsize;
122 const char *symname;
123 char *modname;
124 char *delim = ":";
125 char namebuf[128];
126
127 symname = kallsyms_lookup(address, &symsize, &offset,
128 &modname, namebuf);
129 if (!symname) {
130 printk(" [<%016lx>]\n", address);
131 return;
132 }
133 if (!modname)
134 modname = delim = "";
135 printk(" [<%016lx>] %s%s%s%s+0x%lx/0x%lx\n",
136 address, delim, modname, delim, symname, offset, symsize);
137 }
138 #else
139 void printk_address(unsigned long address)
140 {
141 printk(" [<%016lx>]\n", address);
142 }
143 #endif
144
145 static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
146 unsigned *usedp, char **idp)
147 {
148 static char ids[][8] = {
149 [DEBUG_STACK - 1] = "#DB",
150 [NMI_STACK - 1] = "NMI",
151 [DOUBLEFAULT_STACK - 1] = "#DF",
152 [STACKFAULT_STACK - 1] = "#SS",
153 [MCE_STACK - 1] = "#MC",
154 #if DEBUG_STKSZ > EXCEPTION_STKSZ
155 [N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
156 #endif
157 };
158 unsigned k;
159
160 /*
161 * Iterate over all exception stacks, and figure out whether
162 * 'stack' is in one of them:
163 */
164 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
165 unsigned long end;
166
167 /*
168 * set 'end' to the end of the exception stack.
169 */
170 switch (k + 1) {
171 /*
172 * TODO: this block is not needed i think, because
173 * setup64.c:cpu_init() sets up t->ist[DEBUG_STACK]
174 * properly too.
175 */
176 #if DEBUG_STKSZ > EXCEPTION_STKSZ
177 case DEBUG_STACK:
178 end = cpu_pda(cpu)->debugstack + DEBUG_STKSZ;
179 break;
180 #endif
181 default:
182 end = per_cpu(orig_ist, cpu).ist[k];
183 break;
184 }
185 /*
186 * Is 'stack' above this exception frame's end?
187 * If yes then skip to the next frame.
188 */
189 if (stack >= end)
190 continue;
191 /*
192 * Is 'stack' above this exception frame's start address?
193 * If yes then we found the right frame.
194 */
195 if (stack >= end - EXCEPTION_STKSZ) {
196 /*
197 * Make sure we only iterate through an exception
198 * stack once. If it comes up for the second time
199 * then there's something wrong going on - just
200 * break out and return NULL:
201 */
202 if (*usedp & (1U << k))
203 break;
204 *usedp |= 1U << k;
205 *idp = ids[k];
206 return (unsigned long *)end;
207 }
208 /*
209 * If this is a debug stack, and if it has a larger size than
210 * the usual exception stacks, then 'stack' might still
211 * be within the lower portion of the debug stack:
212 */
213 #if DEBUG_STKSZ > EXCEPTION_STKSZ
214 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
215 unsigned j = N_EXCEPTION_STACKS - 1;
216
217 /*
218 * Black magic. A large debug stack is composed of
219 * multiple exception stack entries, which we
220 * iterate through now. Dont look:
221 */
222 do {
223 ++j;
224 end -= EXCEPTION_STKSZ;
225 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
226 } while (stack < end - EXCEPTION_STKSZ);
227 if (*usedp & (1U << j))
228 break;
229 *usedp |= 1U << j;
230 *idp = ids[j];
231 return (unsigned long *)end;
232 }
233 #endif
234 }
235 return NULL;
236 }
237
238 struct ops_and_data {
239 struct stacktrace_ops *ops;
240 void *data;
241 };
242
243 static int dump_trace_unwind(struct unwind_frame_info *info, void *context)
244 {
245 struct ops_and_data *oad = (struct ops_and_data *)context;
246 int n = 0;
247
248 while (unwind(info) == 0 && UNW_PC(info)) {
249 n++;
250 oad->ops->address(oad->data, UNW_PC(info));
251 if (arch_unw_user_mode(info))
252 break;
253 }
254 return n;
255 }
256
257 /*
258 * x86-64 can have upto three kernel stacks:
259 * process stack
260 * interrupt stack
261 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
262 */
263
264 void dump_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long * stack,
265 struct stacktrace_ops *ops, void *data)
266 {
267 const unsigned cpu = safe_smp_processor_id();
268 unsigned long *irqstack_end = (unsigned long *)cpu_pda(cpu)->irqstackptr;
269 unsigned used = 0;
270
271 if (!tsk)
272 tsk = current;
273
274 if (call_trace >= 0) {
275 int unw_ret = 0;
276 struct unwind_frame_info info;
277 struct ops_and_data oad = { .ops = ops, .data = data };
278
279 if (regs) {
280 if (unwind_init_frame_info(&info, tsk, regs) == 0)
281 unw_ret = dump_trace_unwind(&info, &oad);
282 } else if (tsk == current)
283 unw_ret = unwind_init_running(&info, dump_trace_unwind, &oad);
284 else {
285 if (unwind_init_blocked(&info, tsk) == 0)
286 unw_ret = dump_trace_unwind(&info, &oad);
287 }
288 if (unw_ret > 0) {
289 if (call_trace == 1 && !arch_unw_user_mode(&info)) {
290 ops->warning_symbol(data, "DWARF2 unwinder stuck at %s\n",
291 UNW_PC(&info));
292 if ((long)UNW_SP(&info) < 0) {
293 ops->warning(data, "Leftover inexact backtrace:\n");
294 stack = (unsigned long *)UNW_SP(&info);
295 } else
296 ops->warning(data, "Full inexact backtrace again:\n");
297 } else if (call_trace >= 1)
298 return;
299 else
300 ops->warning(data, "Full inexact backtrace again:\n");
301 } else
302 ops->warning(data, "Inexact backtrace:\n");
303 }
304 if (!stack) {
305 unsigned long dummy;
306 stack = &dummy;
307 if (tsk && tsk != current)
308 stack = (unsigned long *)tsk->thread.rsp;
309 }
310
311 /*
312 * Print function call entries within a stack. 'cond' is the
313 * "end of stackframe" condition, that the 'stack++'
314 * iteration will eventually trigger.
315 */
316 #define HANDLE_STACK(cond) \
317 do while (cond) { \
318 unsigned long addr = *stack++; \
319 if (kernel_text_address(addr)) { \
320 /* \
321 * If the address is either in the text segment of the \
322 * kernel, or in the region which contains vmalloc'ed \
323 * memory, it *may* be the address of a calling \
324 * routine; if so, print it so that someone tracing \
325 * down the cause of the crash will be able to figure \
326 * out the call path that was taken. \
327 */ \
328 ops->address(data, addr); \
329 } \
330 } while (0)
331
332 /*
333 * Print function call entries in all stacks, starting at the
334 * current stack address. If the stacks consist of nested
335 * exceptions
336 */
337 for (;;) {
338 char *id;
339 unsigned long *estack_end;
340 estack_end = in_exception_stack(cpu, (unsigned long)stack,
341 &used, &id);
342
343 if (estack_end) {
344 if (ops->stack(data, id) < 0)
345 break;
346 HANDLE_STACK (stack < estack_end);
347 ops->stack(data, "<EOE>");
348 /*
349 * We link to the next stack via the
350 * second-to-last pointer (index -2 to end) in the
351 * exception stack:
352 */
353 stack = (unsigned long *) estack_end[-2];
354 continue;
355 }
356 if (irqstack_end) {
357 unsigned long *irqstack;
358 irqstack = irqstack_end -
359 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
360
361 if (stack >= irqstack && stack < irqstack_end) {
362 if (ops->stack(data, "IRQ") < 0)
363 break;
364 HANDLE_STACK (stack < irqstack_end);
365 /*
366 * We link to the next stack (which would be
367 * the process stack normally) the last
368 * pointer (index -1 to end) in the IRQ stack:
369 */
370 stack = (unsigned long *) (irqstack_end[-1]);
371 irqstack_end = NULL;
372 ops->stack(data, "EOI");
373 continue;
374 }
375 }
376 break;
377 }
378
379 /*
380 * This handles the process stack:
381 */
382 HANDLE_STACK (((long) stack & (THREAD_SIZE-1)) != 0);
383 #undef HANDLE_STACK
384 }
385 EXPORT_SYMBOL(dump_trace);
386
387 static void
388 print_trace_warning_symbol(void *data, char *msg, unsigned long symbol)
389 {
390 print_symbol(msg, symbol);
391 printk("\n");
392 }
393
394 static void print_trace_warning(void *data, char *msg)
395 {
396 printk("%s\n", msg);
397 }
398
399 static int print_trace_stack(void *data, char *name)
400 {
401 printk(" <%s> ", name);
402 return 0;
403 }
404
405 static void print_trace_address(void *data, unsigned long addr)
406 {
407 printk_address(addr);
408 }
409
410 static struct stacktrace_ops print_trace_ops = {
411 .warning = print_trace_warning,
412 .warning_symbol = print_trace_warning_symbol,
413 .stack = print_trace_stack,
414 .address = print_trace_address,
415 };
416
417 void
418 show_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long *stack)
419 {
420 printk("\nCall Trace:\n");
421 dump_trace(tsk, regs, stack, &print_trace_ops, NULL);
422 printk("\n");
423 }
424
425 static void
426 _show_stack(struct task_struct *tsk, struct pt_regs *regs, unsigned long *rsp)
427 {
428 unsigned long *stack;
429 int i;
430 const int cpu = safe_smp_processor_id();
431 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
432 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
433
434 // debugging aid: "show_stack(NULL, NULL);" prints the
435 // back trace for this cpu.
436
437 if (rsp == NULL) {
438 if (tsk)
439 rsp = (unsigned long *)tsk->thread.rsp;
440 else
441 rsp = (unsigned long *)&rsp;
442 }
443
444 stack = rsp;
445 for(i=0; i < kstack_depth_to_print; i++) {
446 if (stack >= irqstack && stack <= irqstack_end) {
447 if (stack == irqstack_end) {
448 stack = (unsigned long *) (irqstack_end[-1]);
449 printk(" <EOI> ");
450 }
451 } else {
452 if (((long) stack & (THREAD_SIZE-1)) == 0)
453 break;
454 }
455 if (i && ((i % 4) == 0))
456 printk("\n");
457 printk(" %016lx", *stack++);
458 touch_nmi_watchdog();
459 }
460 show_trace(tsk, regs, rsp);
461 }
462
463 void show_stack(struct task_struct *tsk, unsigned long * rsp)
464 {
465 _show_stack(tsk, NULL, rsp);
466 }
467
468 /*
469 * The architecture-independent dump_stack generator
470 */
471 void dump_stack(void)
472 {
473 unsigned long dummy;
474 show_trace(NULL, NULL, &dummy);
475 }
476
477 EXPORT_SYMBOL(dump_stack);
478
479 void show_registers(struct pt_regs *regs)
480 {
481 int i;
482 int in_kernel = !user_mode(regs);
483 unsigned long rsp;
484 const int cpu = safe_smp_processor_id();
485 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
486
487 rsp = regs->rsp;
488
489 printk("CPU %d ", cpu);
490 __show_regs(regs);
491 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
492 cur->comm, cur->pid, task_thread_info(cur), cur);
493
494 /*
495 * When in-kernel, we also print out the stack and code at the
496 * time of the fault..
497 */
498 if (in_kernel) {
499
500 printk("Stack: ");
501 _show_stack(NULL, regs, (unsigned long*)rsp);
502
503 printk("\nCode: ");
504 if (regs->rip < PAGE_OFFSET)
505 goto bad;
506
507 for (i=0; i<20; i++) {
508 unsigned char c;
509 if (__get_user(c, &((unsigned char*)regs->rip)[i])) {
510 bad:
511 printk(" Bad RIP value.");
512 break;
513 }
514 printk("%02x ", c);
515 }
516 }
517 printk("\n");
518 }
519
520 void handle_BUG(struct pt_regs *regs)
521 {
522 struct bug_frame f;
523 long len;
524 const char *prefix = "";
525
526 if (user_mode(regs))
527 return;
528 if (__copy_from_user(&f, (const void __user *) regs->rip,
529 sizeof(struct bug_frame)))
530 return;
531 if (f.filename >= 0 ||
532 f.ud2[0] != 0x0f || f.ud2[1] != 0x0b)
533 return;
534 len = __strnlen_user((char *)(long)f.filename, PATH_MAX) - 1;
535 if (len < 0 || len >= PATH_MAX)
536 f.filename = (int)(long)"unmapped filename";
537 else if (len > 50) {
538 f.filename += len - 50;
539 prefix = "...";
540 }
541 printk("----------- [cut here ] --------- [please bite here ] ---------\n");
542 printk(KERN_ALERT "Kernel BUG at %s%.50s:%d\n", prefix, (char *)(long)f.filename, f.line);
543 }
544
545 #ifdef CONFIG_BUG
546 void out_of_line_bug(void)
547 {
548 BUG();
549 }
550 EXPORT_SYMBOL(out_of_line_bug);
551 #endif
552
553 static DEFINE_SPINLOCK(die_lock);
554 static int die_owner = -1;
555 static unsigned int die_nest_count;
556
557 unsigned __kprobes long oops_begin(void)
558 {
559 int cpu = safe_smp_processor_id();
560 unsigned long flags;
561
562 /* racy, but better than risking deadlock. */
563 local_irq_save(flags);
564 if (!spin_trylock(&die_lock)) {
565 if (cpu == die_owner)
566 /* nested oops. should stop eventually */;
567 else
568 spin_lock(&die_lock);
569 }
570 die_nest_count++;
571 die_owner = cpu;
572 console_verbose();
573 bust_spinlocks(1);
574 return flags;
575 }
576
577 void __kprobes oops_end(unsigned long flags)
578 {
579 die_owner = -1;
580 bust_spinlocks(0);
581 die_nest_count--;
582 if (die_nest_count)
583 /* We still own the lock */
584 local_irq_restore(flags);
585 else
586 /* Nest count reaches zero, release the lock. */
587 spin_unlock_irqrestore(&die_lock, flags);
588 if (panic_on_oops)
589 panic("Fatal exception");
590 }
591
592 void __kprobes __die(const char * str, struct pt_regs * regs, long err)
593 {
594 static int die_counter;
595 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
596 #ifdef CONFIG_PREEMPT
597 printk("PREEMPT ");
598 #endif
599 #ifdef CONFIG_SMP
600 printk("SMP ");
601 #endif
602 #ifdef CONFIG_DEBUG_PAGEALLOC
603 printk("DEBUG_PAGEALLOC");
604 #endif
605 printk("\n");
606 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
607 show_registers(regs);
608 /* Executive summary in case the oops scrolled away */
609 printk(KERN_ALERT "RIP ");
610 printk_address(regs->rip);
611 printk(" RSP <%016lx>\n", regs->rsp);
612 if (kexec_should_crash(current))
613 crash_kexec(regs);
614 }
615
616 void die(const char * str, struct pt_regs * regs, long err)
617 {
618 unsigned long flags = oops_begin();
619
620 handle_BUG(regs);
621 __die(str, regs, err);
622 oops_end(flags);
623 do_exit(SIGSEGV);
624 }
625
626 void __kprobes die_nmi(char *str, struct pt_regs *regs, int do_panic)
627 {
628 unsigned long flags = oops_begin();
629
630 /*
631 * We are in trouble anyway, lets at least try
632 * to get a message out.
633 */
634 printk(str, safe_smp_processor_id());
635 show_registers(regs);
636 if (kexec_should_crash(current))
637 crash_kexec(regs);
638 if (do_panic || panic_on_oops)
639 panic("Non maskable interrupt");
640 oops_end(flags);
641 nmi_exit();
642 local_irq_enable();
643 do_exit(SIGSEGV);
644 }
645
646 static void __kprobes do_trap(int trapnr, int signr, char *str,
647 struct pt_regs * regs, long error_code,
648 siginfo_t *info)
649 {
650 struct task_struct *tsk = current;
651
652 tsk->thread.error_code = error_code;
653 tsk->thread.trap_no = trapnr;
654
655 if (user_mode(regs)) {
656 if (exception_trace && unhandled_signal(tsk, signr))
657 printk(KERN_INFO
658 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
659 tsk->comm, tsk->pid, str,
660 regs->rip, regs->rsp, error_code);
661
662 if (info)
663 force_sig_info(signr, info, tsk);
664 else
665 force_sig(signr, tsk);
666 return;
667 }
668
669
670 /* kernel trap */
671 {
672 const struct exception_table_entry *fixup;
673 fixup = search_exception_tables(regs->rip);
674 if (fixup)
675 regs->rip = fixup->fixup;
676 else
677 die(str, regs, error_code);
678 return;
679 }
680 }
681
682 #define DO_ERROR(trapnr, signr, str, name) \
683 asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
684 { \
685 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
686 == NOTIFY_STOP) \
687 return; \
688 conditional_sti(regs); \
689 do_trap(trapnr, signr, str, regs, error_code, NULL); \
690 }
691
692 #define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
693 asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
694 { \
695 siginfo_t info; \
696 info.si_signo = signr; \
697 info.si_errno = 0; \
698 info.si_code = sicode; \
699 info.si_addr = (void __user *)siaddr; \
700 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
701 == NOTIFY_STOP) \
702 return; \
703 conditional_sti(regs); \
704 do_trap(trapnr, signr, str, regs, error_code, &info); \
705 }
706
707 DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
708 DO_ERROR( 4, SIGSEGV, "overflow", overflow)
709 DO_ERROR( 5, SIGSEGV, "bounds", bounds)
710 DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
711 DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
712 DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
713 DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
714 DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
715 DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
716 DO_ERROR(18, SIGSEGV, "reserved", reserved)
717
718 /* Runs on IST stack */
719 asmlinkage void do_stack_segment(struct pt_regs *regs, long error_code)
720 {
721 if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
722 12, SIGBUS) == NOTIFY_STOP)
723 return;
724 preempt_conditional_sti(regs);
725 do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
726 preempt_conditional_cli(regs);
727 }
728
729 asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
730 {
731 static const char str[] = "double fault";
732 struct task_struct *tsk = current;
733
734 /* Return not checked because double check cannot be ignored */
735 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
736
737 tsk->thread.error_code = error_code;
738 tsk->thread.trap_no = 8;
739
740 /* This is always a kernel trap and never fixable (and thus must
741 never return). */
742 for (;;)
743 die(str, regs, error_code);
744 }
745
746 asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
747 long error_code)
748 {
749 struct task_struct *tsk = current;
750
751 conditional_sti(regs);
752
753 tsk->thread.error_code = error_code;
754 tsk->thread.trap_no = 13;
755
756 if (user_mode(regs)) {
757 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
758 printk(KERN_INFO
759 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
760 tsk->comm, tsk->pid,
761 regs->rip, regs->rsp, error_code);
762
763 force_sig(SIGSEGV, tsk);
764 return;
765 }
766
767 /* kernel gp */
768 {
769 const struct exception_table_entry *fixup;
770 fixup = search_exception_tables(regs->rip);
771 if (fixup) {
772 regs->rip = fixup->fixup;
773 return;
774 }
775 if (notify_die(DIE_GPF, "general protection fault", regs,
776 error_code, 13, SIGSEGV) == NOTIFY_STOP)
777 return;
778 die("general protection fault", regs, error_code);
779 }
780 }
781
782 static __kprobes void
783 mem_parity_error(unsigned char reason, struct pt_regs * regs)
784 {
785 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
786 reason);
787 printk(KERN_EMERG "You probably have a hardware problem with your "
788 "RAM chips\n");
789
790 if (panic_on_unrecovered_nmi)
791 panic("NMI: Not continuing");
792
793 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
794
795 /* Clear and disable the memory parity error line. */
796 reason = (reason & 0xf) | 4;
797 outb(reason, 0x61);
798 }
799
800 static __kprobes void
801 io_check_error(unsigned char reason, struct pt_regs * regs)
802 {
803 printk("NMI: IOCK error (debug interrupt?)\n");
804 show_registers(regs);
805
806 /* Re-enable the IOCK line, wait for a few seconds */
807 reason = (reason & 0xf) | 8;
808 outb(reason, 0x61);
809 mdelay(2000);
810 reason &= ~8;
811 outb(reason, 0x61);
812 }
813
814 static __kprobes void
815 unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
816 {
817 printk(KERN_EMERG "Uhhuh. NMI received for unknown reason %02x.\n",
818 reason);
819 printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n");
820
821 if (panic_on_unrecovered_nmi)
822 panic("NMI: Not continuing");
823
824 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
825 }
826
827 /* Runs on IST stack. This code must keep interrupts off all the time.
828 Nested NMIs are prevented by the CPU. */
829 asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs)
830 {
831 unsigned char reason = 0;
832 int cpu;
833
834 cpu = smp_processor_id();
835
836 /* Only the BSP gets external NMIs from the system. */
837 if (!cpu)
838 reason = get_nmi_reason();
839
840 if (!(reason & 0xc0)) {
841 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
842 == NOTIFY_STOP)
843 return;
844 /*
845 * Ok, so this is none of the documented NMI sources,
846 * so it must be the NMI watchdog.
847 */
848 if (nmi_watchdog_tick(regs,reason))
849 return;
850 if (!do_nmi_callback(regs,cpu))
851 unknown_nmi_error(reason, regs);
852
853 return;
854 }
855 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
856 return;
857
858 /* AK: following checks seem to be broken on modern chipsets. FIXME */
859
860 if (reason & 0x80)
861 mem_parity_error(reason, regs);
862 if (reason & 0x40)
863 io_check_error(reason, regs);
864 }
865
866 /* runs on IST stack. */
867 asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
868 {
869 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
870 return;
871 }
872 preempt_conditional_sti(regs);
873 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
874 preempt_conditional_cli(regs);
875 }
876
877 /* Help handler running on IST stack to switch back to user stack
878 for scheduling or signal handling. The actual stack switch is done in
879 entry.S */
880 asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
881 {
882 struct pt_regs *regs = eregs;
883 /* Did already sync */
884 if (eregs == (struct pt_regs *)eregs->rsp)
885 ;
886 /* Exception from user space */
887 else if (user_mode(eregs))
888 regs = task_pt_regs(current);
889 /* Exception from kernel and interrupts are enabled. Move to
890 kernel process stack. */
891 else if (eregs->eflags & X86_EFLAGS_IF)
892 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
893 if (eregs != regs)
894 *regs = *eregs;
895 return regs;
896 }
897
898 /* runs on IST stack. */
899 asmlinkage void __kprobes do_debug(struct pt_regs * regs,
900 unsigned long error_code)
901 {
902 unsigned long condition;
903 struct task_struct *tsk = current;
904 siginfo_t info;
905
906 get_debugreg(condition, 6);
907
908 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
909 SIGTRAP) == NOTIFY_STOP)
910 return;
911
912 preempt_conditional_sti(regs);
913
914 /* Mask out spurious debug traps due to lazy DR7 setting */
915 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
916 if (!tsk->thread.debugreg7) {
917 goto clear_dr7;
918 }
919 }
920
921 tsk->thread.debugreg6 = condition;
922
923 /* Mask out spurious TF errors due to lazy TF clearing */
924 if (condition & DR_STEP) {
925 /*
926 * The TF error should be masked out only if the current
927 * process is not traced and if the TRAP flag has been set
928 * previously by a tracing process (condition detected by
929 * the PT_DTRACE flag); remember that the i386 TRAP flag
930 * can be modified by the process itself in user mode,
931 * allowing programs to debug themselves without the ptrace()
932 * interface.
933 */
934 if (!user_mode(regs))
935 goto clear_TF_reenable;
936 /*
937 * Was the TF flag set by a debugger? If so, clear it now,
938 * so that register information is correct.
939 */
940 if (tsk->ptrace & PT_DTRACE) {
941 regs->eflags &= ~TF_MASK;
942 tsk->ptrace &= ~PT_DTRACE;
943 }
944 }
945
946 /* Ok, finally something we can handle */
947 tsk->thread.trap_no = 1;
948 tsk->thread.error_code = error_code;
949 info.si_signo = SIGTRAP;
950 info.si_errno = 0;
951 info.si_code = TRAP_BRKPT;
952 info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
953 force_sig_info(SIGTRAP, &info, tsk);
954
955 clear_dr7:
956 set_debugreg(0UL, 7);
957 preempt_conditional_cli(regs);
958 return;
959
960 clear_TF_reenable:
961 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
962 regs->eflags &= ~TF_MASK;
963 preempt_conditional_cli(regs);
964 }
965
966 static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
967 {
968 const struct exception_table_entry *fixup;
969 fixup = search_exception_tables(regs->rip);
970 if (fixup) {
971 regs->rip = fixup->fixup;
972 return 1;
973 }
974 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
975 /* Illegal floating point operation in the kernel */
976 current->thread.trap_no = trapnr;
977 die(str, regs, 0);
978 return 0;
979 }
980
981 /*
982 * Note that we play around with the 'TS' bit in an attempt to get
983 * the correct behaviour even in the presence of the asynchronous
984 * IRQ13 behaviour
985 */
986 asmlinkage void do_coprocessor_error(struct pt_regs *regs)
987 {
988 void __user *rip = (void __user *)(regs->rip);
989 struct task_struct * task;
990 siginfo_t info;
991 unsigned short cwd, swd;
992
993 conditional_sti(regs);
994 if (!user_mode(regs) &&
995 kernel_math_error(regs, "kernel x87 math error", 16))
996 return;
997
998 /*
999 * Save the info for the exception handler and clear the error.
1000 */
1001 task = current;
1002 save_init_fpu(task);
1003 task->thread.trap_no = 16;
1004 task->thread.error_code = 0;
1005 info.si_signo = SIGFPE;
1006 info.si_errno = 0;
1007 info.si_code = __SI_FAULT;
1008 info.si_addr = rip;
1009 /*
1010 * (~cwd & swd) will mask out exceptions that are not set to unmasked
1011 * status. 0x3f is the exception bits in these regs, 0x200 is the
1012 * C1 reg you need in case of a stack fault, 0x040 is the stack
1013 * fault bit. We should only be taking one exception at a time,
1014 * so if this combination doesn't produce any single exception,
1015 * then we have a bad program that isn't synchronizing its FPU usage
1016 * and it will suffer the consequences since we won't be able to
1017 * fully reproduce the context of the exception
1018 */
1019 cwd = get_fpu_cwd(task);
1020 swd = get_fpu_swd(task);
1021 switch (swd & ~cwd & 0x3f) {
1022 case 0x000:
1023 default:
1024 break;
1025 case 0x001: /* Invalid Op */
1026 /*
1027 * swd & 0x240 == 0x040: Stack Underflow
1028 * swd & 0x240 == 0x240: Stack Overflow
1029 * User must clear the SF bit (0x40) if set
1030 */
1031 info.si_code = FPE_FLTINV;
1032 break;
1033 case 0x002: /* Denormalize */
1034 case 0x010: /* Underflow */
1035 info.si_code = FPE_FLTUND;
1036 break;
1037 case 0x004: /* Zero Divide */
1038 info.si_code = FPE_FLTDIV;
1039 break;
1040 case 0x008: /* Overflow */
1041 info.si_code = FPE_FLTOVF;
1042 break;
1043 case 0x020: /* Precision */
1044 info.si_code = FPE_FLTRES;
1045 break;
1046 }
1047 force_sig_info(SIGFPE, &info, task);
1048 }
1049
1050 asmlinkage void bad_intr(void)
1051 {
1052 printk("bad interrupt");
1053 }
1054
1055 asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
1056 {
1057 void __user *rip = (void __user *)(regs->rip);
1058 struct task_struct * task;
1059 siginfo_t info;
1060 unsigned short mxcsr;
1061
1062 conditional_sti(regs);
1063 if (!user_mode(regs) &&
1064 kernel_math_error(regs, "kernel simd math error", 19))
1065 return;
1066
1067 /*
1068 * Save the info for the exception handler and clear the error.
1069 */
1070 task = current;
1071 save_init_fpu(task);
1072 task->thread.trap_no = 19;
1073 task->thread.error_code = 0;
1074 info.si_signo = SIGFPE;
1075 info.si_errno = 0;
1076 info.si_code = __SI_FAULT;
1077 info.si_addr = rip;
1078 /*
1079 * The SIMD FPU exceptions are handled a little differently, as there
1080 * is only a single status/control register. Thus, to determine which
1081 * unmasked exception was caught we must mask the exception mask bits
1082 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
1083 */
1084 mxcsr = get_fpu_mxcsr(task);
1085 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
1086 case 0x000:
1087 default:
1088 break;
1089 case 0x001: /* Invalid Op */
1090 info.si_code = FPE_FLTINV;
1091 break;
1092 case 0x002: /* Denormalize */
1093 case 0x010: /* Underflow */
1094 info.si_code = FPE_FLTUND;
1095 break;
1096 case 0x004: /* Zero Divide */
1097 info.si_code = FPE_FLTDIV;
1098 break;
1099 case 0x008: /* Overflow */
1100 info.si_code = FPE_FLTOVF;
1101 break;
1102 case 0x020: /* Precision */
1103 info.si_code = FPE_FLTRES;
1104 break;
1105 }
1106 force_sig_info(SIGFPE, &info, task);
1107 }
1108
1109 asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
1110 {
1111 }
1112
1113 asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
1114 {
1115 }
1116
1117 asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
1118 {
1119 }
1120
1121 /*
1122 * 'math_state_restore()' saves the current math information in the
1123 * old math state array, and gets the new ones from the current task
1124 *
1125 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1126 * Don't touch unless you *really* know how it works.
1127 */
1128 asmlinkage void math_state_restore(void)
1129 {
1130 struct task_struct *me = current;
1131 clts(); /* Allow maths ops (or we recurse) */
1132
1133 if (!used_math())
1134 init_fpu(me);
1135 restore_fpu_checking(&me->thread.i387.fxsave);
1136 task_thread_info(me)->status |= TS_USEDFPU;
1137 }
1138
1139 void __init trap_init(void)
1140 {
1141 set_intr_gate(0,&divide_error);
1142 set_intr_gate_ist(1,&debug,DEBUG_STACK);
1143 set_intr_gate_ist(2,&nmi,NMI_STACK);
1144 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
1145 set_system_gate(4,&overflow); /* int4 can be called from all */
1146 set_intr_gate(5,&bounds);
1147 set_intr_gate(6,&invalid_op);
1148 set_intr_gate(7,&device_not_available);
1149 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
1150 set_intr_gate(9,&coprocessor_segment_overrun);
1151 set_intr_gate(10,&invalid_TSS);
1152 set_intr_gate(11,&segment_not_present);
1153 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
1154 set_intr_gate(13,&general_protection);
1155 set_intr_gate(14,&page_fault);
1156 set_intr_gate(15,&spurious_interrupt_bug);
1157 set_intr_gate(16,&coprocessor_error);
1158 set_intr_gate(17,&alignment_check);
1159 #ifdef CONFIG_X86_MCE
1160 set_intr_gate_ist(18,&machine_check, MCE_STACK);
1161 #endif
1162 set_intr_gate(19,&simd_coprocessor_error);
1163
1164 #ifdef CONFIG_IA32_EMULATION
1165 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1166 #endif
1167
1168 /*
1169 * Should be a barrier for any external CPU state.
1170 */
1171 cpu_init();
1172 }
1173
1174
1175 static int __init oops_setup(char *s)
1176 {
1177 if (!s)
1178 return -EINVAL;
1179 if (!strcmp(s, "panic"))
1180 panic_on_oops = 1;
1181 return 0;
1182 }
1183 early_param("oops", oops_setup);
1184
1185 static int __init kstack_setup(char *s)
1186 {
1187 if (!s)
1188 return -EINVAL;
1189 kstack_depth_to_print = simple_strtoul(s,NULL,0);
1190 return 0;
1191 }
1192 early_param("kstack", kstack_setup);
1193
1194 #ifdef CONFIG_STACK_UNWIND
1195 static int __init call_trace_setup(char *s)
1196 {
1197 if (!s)
1198 return -EINVAL;
1199 if (strcmp(s, "old") == 0)
1200 call_trace = -1;
1201 else if (strcmp(s, "both") == 0)
1202 call_trace = 0;
1203 else if (strcmp(s, "newfallback") == 0)
1204 call_trace = 1;
1205 else if (strcmp(s, "new") == 0)
1206 call_trace = 2;
1207 return 0;
1208 }
1209 early_param("call_trace", call_trace_setup);
1210 #endif
This page took 0.103557 seconds and 5 git commands to generate.