2 * linux/arch/x86-64/traps.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
7 * Pentium III FXSR, SSE support
8 * Gareth Hughes <gareth@valinux.com>, May 2000
12 * 'Traps.c' handles hardware traps and faults after we have saved some
15 #include <linux/config.h>
16 #include <linux/sched.h>
17 #include <linux/kernel.h>
18 #include <linux/string.h>
19 #include <linux/errno.h>
20 #include <linux/ptrace.h>
21 #include <linux/timer.h>
23 #include <linux/init.h>
24 #include <linux/delay.h>
25 #include <linux/spinlock.h>
26 #include <linux/interrupt.h>
27 #include <linux/module.h>
28 #include <linux/moduleparam.h>
29 #include <linux/nmi.h>
30 #include <linux/kprobes.h>
31 #include <linux/kexec.h>
32 #include <linux/unwind.h>
34 #include <asm/system.h>
35 #include <asm/uaccess.h>
37 #include <asm/atomic.h>
38 #include <asm/debugreg.h>
41 #include <asm/kdebug.h>
42 #include <asm/processor.h>
43 #include <asm/unwind.h>
45 #include <asm/pgalloc.h>
47 #include <asm/proto.h>
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);
72 ATOMIC_NOTIFIER_HEAD(die_chain);
73 EXPORT_SYMBOL(die_chain);
75 int register_die_notifier(struct notifier_block *nb)
78 return atomic_notifier_chain_register(&die_chain, nb);
80 EXPORT_SYMBOL(register_die_notifier);
82 int unregister_die_notifier(struct notifier_block *nb)
84 return atomic_notifier_chain_unregister(&die_chain, nb);
86 EXPORT_SYMBOL(unregister_die_notifier);
88 static inline void conditional_sti(struct pt_regs *regs)
90 if (regs->eflags & X86_EFLAGS_IF)
94 static inline void preempt_conditional_sti(struct pt_regs *regs)
97 if (regs->eflags & X86_EFLAGS_IF)
101 static inline void preempt_conditional_cli(struct pt_regs *regs)
103 if (regs->eflags & X86_EFLAGS_IF)
105 /* Make sure to not schedule here because we could be running
106 on an exception stack. */
107 preempt_enable_no_resched();
110 static int kstack_depth_to_print = 12;
111 static int call_trace = 1;
113 #ifdef CONFIG_KALLSYMS
114 #include <linux/kallsyms.h>
115 int printk_address(unsigned long address)
117 unsigned long offset = 0, symsize;
123 symname = kallsyms_lookup(address, &symsize, &offset, &modname, namebuf);
125 return printk("[<%016lx>]", address);
127 modname = delim = "";
128 return printk("<%016lx>{%s%s%s%s%+ld}",
129 address, delim, modname, delim, symname, offset);
132 int printk_address(unsigned long address)
134 return printk("[<%016lx>]", address);
138 static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
139 unsigned *usedp, const char **idp)
141 static char ids[][8] = {
142 [DEBUG_STACK - 1] = "#DB",
143 [NMI_STACK - 1] = "NMI",
144 [DOUBLEFAULT_STACK - 1] = "#DF",
145 [STACKFAULT_STACK - 1] = "#SS",
146 [MCE_STACK - 1] = "#MC",
147 #if DEBUG_STKSZ > EXCEPTION_STKSZ
148 [N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
153 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
157 #if DEBUG_STKSZ > EXCEPTION_STKSZ
159 end = cpu_pda(cpu)->debugstack + DEBUG_STKSZ;
163 end = per_cpu(init_tss, cpu).ist[k];
168 if (stack >= end - EXCEPTION_STKSZ) {
169 if (*usedp & (1U << k))
173 return (unsigned long *)end;
175 #if DEBUG_STKSZ > EXCEPTION_STKSZ
176 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
177 unsigned j = N_EXCEPTION_STACKS - 1;
181 end -= EXCEPTION_STKSZ;
182 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
183 } while (stack < end - EXCEPTION_STKSZ);
184 if (*usedp & (1U << j))
188 return (unsigned long *)end;
195 static int show_trace_unwind(struct unwind_frame_info *info, void *context)
199 while (unwind(info) == 0 && UNW_PC(info)) {
206 i += printk_address(UNW_PC(info));
207 if (arch_unw_user_mode(info))
215 * x86-64 can have upto three kernel stacks:
218 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
221 void show_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long * stack)
223 const unsigned cpu = safe_smp_processor_id();
224 unsigned long *irqstack_end = (unsigned long *)cpu_pda(cpu)->irqstackptr;
228 printk("\nCall Trace:");
233 if (call_trace >= 0) {
235 struct unwind_frame_info info;
238 if (unwind_init_frame_info(&info, tsk, regs) == 0)
239 unw_ret = show_trace_unwind(&info, NULL);
240 } else if (tsk == current)
241 unw_ret = unwind_init_running(&info, show_trace_unwind, NULL);
243 if (unwind_init_blocked(&info, tsk) == 0)
244 unw_ret = show_trace_unwind(&info, NULL);
249 printk("Legacy call trace:");
254 #define HANDLE_STACK(cond) \
256 unsigned long addr = *stack++; \
257 if (kernel_text_address(addr)) { \
265 * If the address is either in the text segment of the \
266 * kernel, or in the region which contains vmalloc'ed \
267 * memory, it *may* be the address of a calling \
268 * routine; if so, print it so that someone tracing \
269 * down the cause of the crash will be able to figure \
270 * out the call path that was taken. \
272 i += printk_address(addr); \
278 unsigned long *estack_end;
279 estack_end = in_exception_stack(cpu, (unsigned long)stack,
283 i += printk(" <%s>", id);
284 HANDLE_STACK (stack < estack_end);
285 i += printk(" <EOE>");
286 stack = (unsigned long *) estack_end[-2];
290 unsigned long *irqstack;
291 irqstack = irqstack_end -
292 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
294 if (stack >= irqstack && stack < irqstack_end) {
295 i += printk(" <IRQ>");
296 HANDLE_STACK (stack < irqstack_end);
297 stack = (unsigned long *) (irqstack_end[-1]);
299 i += printk(" <EOI>");
306 HANDLE_STACK (((long) stack & (THREAD_SIZE-1)) != 0);
311 static void _show_stack(struct task_struct *tsk, struct pt_regs *regs, unsigned long * rsp)
313 unsigned long *stack;
315 const int cpu = safe_smp_processor_id();
316 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
317 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
319 // debugging aid: "show_stack(NULL, NULL);" prints the
320 // back trace for this cpu.
324 rsp = (unsigned long *)tsk->thread.rsp;
326 rsp = (unsigned long *)&rsp;
330 for(i=0; i < kstack_depth_to_print; i++) {
331 if (stack >= irqstack && stack <= irqstack_end) {
332 if (stack == irqstack_end) {
333 stack = (unsigned long *) (irqstack_end[-1]);
337 if (((long) stack & (THREAD_SIZE-1)) == 0)
340 if (i && ((i % 4) == 0))
342 printk("%016lx ", *stack++);
343 touch_nmi_watchdog();
345 show_trace(tsk, regs, rsp);
348 void show_stack(struct task_struct *tsk, unsigned long * rsp)
350 _show_stack(tsk, NULL, rsp);
354 * The architecture-independent dump_stack generator
356 void dump_stack(void)
359 show_trace(NULL, NULL, &dummy);
362 EXPORT_SYMBOL(dump_stack);
364 void show_registers(struct pt_regs *regs)
367 int in_kernel = !user_mode(regs);
369 const int cpu = safe_smp_processor_id();
370 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
374 printk("CPU %d ", cpu);
376 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
377 cur->comm, cur->pid, task_thread_info(cur), cur);
380 * When in-kernel, we also print out the stack and code at the
381 * time of the fault..
386 _show_stack(NULL, regs, (unsigned long*)rsp);
389 if (regs->rip < PAGE_OFFSET)
392 for (i=0; i<20; i++) {
394 if (__get_user(c, &((unsigned char*)regs->rip)[i])) {
396 printk(" Bad RIP value.");
405 void handle_BUG(struct pt_regs *regs)
409 const char *prefix = "";
413 if (__copy_from_user(&f, (const void __user *) regs->rip,
414 sizeof(struct bug_frame)))
416 if (f.filename >= 0 ||
417 f.ud2[0] != 0x0f || f.ud2[1] != 0x0b)
419 len = __strnlen_user((char *)(long)f.filename, PATH_MAX) - 1;
420 if (len < 0 || len >= PATH_MAX)
421 f.filename = (int)(long)"unmapped filename";
423 f.filename += len - 50;
426 printk("----------- [cut here ] --------- [please bite here ] ---------\n");
427 printk(KERN_ALERT "Kernel BUG at %s%.50s:%d\n", prefix, (char *)(long)f.filename, f.line);
431 void out_of_line_bug(void)
435 EXPORT_SYMBOL(out_of_line_bug);
438 static DEFINE_SPINLOCK(die_lock);
439 static int die_owner = -1;
440 static unsigned int die_nest_count;
442 unsigned __kprobes long oops_begin(void)
444 int cpu = safe_smp_processor_id();
447 /* racy, but better than risking deadlock. */
448 local_irq_save(flags);
449 if (!spin_trylock(&die_lock)) {
450 if (cpu == die_owner)
451 /* nested oops. should stop eventually */;
453 spin_lock(&die_lock);
462 void __kprobes oops_end(unsigned long flags)
468 /* We still own the lock */
469 local_irq_restore(flags);
471 /* Nest count reaches zero, release the lock. */
472 spin_unlock_irqrestore(&die_lock, flags);
477 void __kprobes __die(const char * str, struct pt_regs * regs, long err)
479 static int die_counter;
480 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
481 #ifdef CONFIG_PREEMPT
487 #ifdef CONFIG_DEBUG_PAGEALLOC
488 printk("DEBUG_PAGEALLOC");
491 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
492 show_registers(regs);
493 /* Executive summary in case the oops scrolled away */
494 printk(KERN_ALERT "RIP ");
495 printk_address(regs->rip);
496 printk(" RSP <%016lx>\n", regs->rsp);
497 if (kexec_should_crash(current))
501 void die(const char * str, struct pt_regs * regs, long err)
503 unsigned long flags = oops_begin();
506 __die(str, regs, err);
511 void __kprobes die_nmi(char *str, struct pt_regs *regs)
513 unsigned long flags = oops_begin();
516 * We are in trouble anyway, lets at least try
517 * to get a message out.
519 printk(str, safe_smp_processor_id());
520 show_registers(regs);
521 if (kexec_should_crash(current))
523 if (panic_on_timeout || panic_on_oops)
524 panic("nmi watchdog");
525 printk("console shuts up ...\n");
532 static void __kprobes do_trap(int trapnr, int signr, char *str,
533 struct pt_regs * regs, long error_code,
536 struct task_struct *tsk = current;
538 tsk->thread.error_code = error_code;
539 tsk->thread.trap_no = trapnr;
541 if (user_mode(regs)) {
542 if (exception_trace && unhandled_signal(tsk, signr))
544 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
545 tsk->comm, tsk->pid, str,
546 regs->rip, regs->rsp, error_code);
549 force_sig_info(signr, info, tsk);
551 force_sig(signr, tsk);
558 const struct exception_table_entry *fixup;
559 fixup = search_exception_tables(regs->rip);
561 regs->rip = fixup->fixup;
563 die(str, regs, error_code);
568 #define DO_ERROR(trapnr, signr, str, name) \
569 asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
571 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
574 conditional_sti(regs); \
575 do_trap(trapnr, signr, str, regs, error_code, NULL); \
578 #define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
579 asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
582 info.si_signo = signr; \
584 info.si_code = sicode; \
585 info.si_addr = (void __user *)siaddr; \
586 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
589 conditional_sti(regs); \
590 do_trap(trapnr, signr, str, regs, error_code, &info); \
593 DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
594 DO_ERROR( 4, SIGSEGV, "overflow", overflow)
595 DO_ERROR( 5, SIGSEGV, "bounds", bounds)
596 DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
597 DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
598 DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
599 DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
600 DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
601 DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
602 DO_ERROR(18, SIGSEGV, "reserved", reserved)
604 /* Runs on IST stack */
605 asmlinkage void do_stack_segment(struct pt_regs *regs, long error_code)
607 if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
608 12, SIGBUS) == NOTIFY_STOP)
610 preempt_conditional_sti(regs);
611 do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
612 preempt_conditional_cli(regs);
615 asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
617 static const char str[] = "double fault";
618 struct task_struct *tsk = current;
620 /* Return not checked because double check cannot be ignored */
621 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
623 tsk->thread.error_code = error_code;
624 tsk->thread.trap_no = 8;
626 /* This is always a kernel trap and never fixable (and thus must
629 die(str, regs, error_code);
632 asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
635 struct task_struct *tsk = current;
637 conditional_sti(regs);
639 tsk->thread.error_code = error_code;
640 tsk->thread.trap_no = 13;
642 if (user_mode(regs)) {
643 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
645 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
647 regs->rip, regs->rsp, error_code);
649 force_sig(SIGSEGV, tsk);
655 const struct exception_table_entry *fixup;
656 fixup = search_exception_tables(regs->rip);
658 regs->rip = fixup->fixup;
661 if (notify_die(DIE_GPF, "general protection fault", regs,
662 error_code, 13, SIGSEGV) == NOTIFY_STOP)
664 die("general protection fault", regs, error_code);
668 static __kprobes void
669 mem_parity_error(unsigned char reason, struct pt_regs * regs)
671 printk("Uhhuh. NMI received. Dazed and confused, but trying to continue\n");
672 printk("You probably have a hardware problem with your RAM chips\n");
674 /* Clear and disable the memory parity error line. */
675 reason = (reason & 0xf) | 4;
679 static __kprobes void
680 io_check_error(unsigned char reason, struct pt_regs * regs)
682 printk("NMI: IOCK error (debug interrupt?)\n");
683 show_registers(regs);
685 /* Re-enable the IOCK line, wait for a few seconds */
686 reason = (reason & 0xf) | 8;
693 static __kprobes void
694 unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
695 { printk("Uhhuh. NMI received for unknown reason %02x.\n", reason);
696 printk("Dazed and confused, but trying to continue\n");
697 printk("Do you have a strange power saving mode enabled?\n");
700 /* Runs on IST stack. This code must keep interrupts off all the time.
701 Nested NMIs are prevented by the CPU. */
702 asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs)
704 unsigned char reason = 0;
707 cpu = smp_processor_id();
709 /* Only the BSP gets external NMIs from the system. */
711 reason = get_nmi_reason();
713 if (!(reason & 0xc0)) {
714 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
717 #ifdef CONFIG_X86_LOCAL_APIC
719 * Ok, so this is none of the documented NMI sources,
720 * so it must be the NMI watchdog.
722 if (nmi_watchdog > 0) {
723 nmi_watchdog_tick(regs,reason);
727 unknown_nmi_error(reason, regs);
730 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
733 /* AK: following checks seem to be broken on modern chipsets. FIXME */
736 mem_parity_error(reason, regs);
738 io_check_error(reason, regs);
741 /* runs on IST stack. */
742 asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
744 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
747 preempt_conditional_sti(regs);
748 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
749 preempt_conditional_cli(regs);
752 /* Help handler running on IST stack to switch back to user stack
753 for scheduling or signal handling. The actual stack switch is done in
755 asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
757 struct pt_regs *regs = eregs;
758 /* Did already sync */
759 if (eregs == (struct pt_regs *)eregs->rsp)
761 /* Exception from user space */
762 else if (user_mode(eregs))
763 regs = task_pt_regs(current);
764 /* Exception from kernel and interrupts are enabled. Move to
765 kernel process stack. */
766 else if (eregs->eflags & X86_EFLAGS_IF)
767 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
773 /* runs on IST stack. */
774 asmlinkage void __kprobes do_debug(struct pt_regs * regs,
775 unsigned long error_code)
777 unsigned long condition;
778 struct task_struct *tsk = current;
781 get_debugreg(condition, 6);
783 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
784 SIGTRAP) == NOTIFY_STOP)
787 preempt_conditional_sti(regs);
789 /* Mask out spurious debug traps due to lazy DR7 setting */
790 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
791 if (!tsk->thread.debugreg7) {
796 tsk->thread.debugreg6 = condition;
798 /* Mask out spurious TF errors due to lazy TF clearing */
799 if (condition & DR_STEP) {
801 * The TF error should be masked out only if the current
802 * process is not traced and if the TRAP flag has been set
803 * previously by a tracing process (condition detected by
804 * the PT_DTRACE flag); remember that the i386 TRAP flag
805 * can be modified by the process itself in user mode,
806 * allowing programs to debug themselves without the ptrace()
809 if (!user_mode(regs))
810 goto clear_TF_reenable;
812 * Was the TF flag set by a debugger? If so, clear it now,
813 * so that register information is correct.
815 if (tsk->ptrace & PT_DTRACE) {
816 regs->eflags &= ~TF_MASK;
817 tsk->ptrace &= ~PT_DTRACE;
821 /* Ok, finally something we can handle */
822 tsk->thread.trap_no = 1;
823 tsk->thread.error_code = error_code;
824 info.si_signo = SIGTRAP;
826 info.si_code = TRAP_BRKPT;
827 info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
828 force_sig_info(SIGTRAP, &info, tsk);
831 set_debugreg(0UL, 7);
832 preempt_conditional_cli(regs);
836 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
837 regs->eflags &= ~TF_MASK;
838 preempt_conditional_cli(regs);
841 static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
843 const struct exception_table_entry *fixup;
844 fixup = search_exception_tables(regs->rip);
846 regs->rip = fixup->fixup;
849 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
850 /* Illegal floating point operation in the kernel */
851 current->thread.trap_no = trapnr;
857 * Note that we play around with the 'TS' bit in an attempt to get
858 * the correct behaviour even in the presence of the asynchronous
861 asmlinkage void do_coprocessor_error(struct pt_regs *regs)
863 void __user *rip = (void __user *)(regs->rip);
864 struct task_struct * task;
866 unsigned short cwd, swd;
868 conditional_sti(regs);
869 if (!user_mode(regs) &&
870 kernel_math_error(regs, "kernel x87 math error", 16))
874 * Save the info for the exception handler and clear the error.
878 task->thread.trap_no = 16;
879 task->thread.error_code = 0;
880 info.si_signo = SIGFPE;
882 info.si_code = __SI_FAULT;
885 * (~cwd & swd) will mask out exceptions that are not set to unmasked
886 * status. 0x3f is the exception bits in these regs, 0x200 is the
887 * C1 reg you need in case of a stack fault, 0x040 is the stack
888 * fault bit. We should only be taking one exception at a time,
889 * so if this combination doesn't produce any single exception,
890 * then we have a bad program that isn't synchronizing its FPU usage
891 * and it will suffer the consequences since we won't be able to
892 * fully reproduce the context of the exception
894 cwd = get_fpu_cwd(task);
895 swd = get_fpu_swd(task);
896 switch (swd & ~cwd & 0x3f) {
900 case 0x001: /* Invalid Op */
902 * swd & 0x240 == 0x040: Stack Underflow
903 * swd & 0x240 == 0x240: Stack Overflow
904 * User must clear the SF bit (0x40) if set
906 info.si_code = FPE_FLTINV;
908 case 0x002: /* Denormalize */
909 case 0x010: /* Underflow */
910 info.si_code = FPE_FLTUND;
912 case 0x004: /* Zero Divide */
913 info.si_code = FPE_FLTDIV;
915 case 0x008: /* Overflow */
916 info.si_code = FPE_FLTOVF;
918 case 0x020: /* Precision */
919 info.si_code = FPE_FLTRES;
922 force_sig_info(SIGFPE, &info, task);
925 asmlinkage void bad_intr(void)
927 printk("bad interrupt");
930 asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
932 void __user *rip = (void __user *)(regs->rip);
933 struct task_struct * task;
935 unsigned short mxcsr;
937 conditional_sti(regs);
938 if (!user_mode(regs) &&
939 kernel_math_error(regs, "kernel simd math error", 19))
943 * Save the info for the exception handler and clear the error.
947 task->thread.trap_no = 19;
948 task->thread.error_code = 0;
949 info.si_signo = SIGFPE;
951 info.si_code = __SI_FAULT;
954 * The SIMD FPU exceptions are handled a little differently, as there
955 * is only a single status/control register. Thus, to determine which
956 * unmasked exception was caught we must mask the exception mask bits
957 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
959 mxcsr = get_fpu_mxcsr(task);
960 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
964 case 0x001: /* Invalid Op */
965 info.si_code = FPE_FLTINV;
967 case 0x002: /* Denormalize */
968 case 0x010: /* Underflow */
969 info.si_code = FPE_FLTUND;
971 case 0x004: /* Zero Divide */
972 info.si_code = FPE_FLTDIV;
974 case 0x008: /* Overflow */
975 info.si_code = FPE_FLTOVF;
977 case 0x020: /* Precision */
978 info.si_code = FPE_FLTRES;
981 force_sig_info(SIGFPE, &info, task);
984 asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
988 asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
992 asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
997 * 'math_state_restore()' saves the current math information in the
998 * old math state array, and gets the new ones from the current task
1000 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
1001 * Don't touch unless you *really* know how it works.
1003 asmlinkage void math_state_restore(void)
1005 struct task_struct *me = current;
1006 clts(); /* Allow maths ops (or we recurse) */
1010 restore_fpu_checking(&me->thread.i387.fxsave);
1011 task_thread_info(me)->status |= TS_USEDFPU;
1014 void __init trap_init(void)
1016 set_intr_gate(0,÷_error);
1017 set_intr_gate_ist(1,&debug,DEBUG_STACK);
1018 set_intr_gate_ist(2,&nmi,NMI_STACK);
1019 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
1020 set_system_gate(4,&overflow); /* int4 can be called from all */
1021 set_intr_gate(5,&bounds);
1022 set_intr_gate(6,&invalid_op);
1023 set_intr_gate(7,&device_not_available);
1024 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
1025 set_intr_gate(9,&coprocessor_segment_overrun);
1026 set_intr_gate(10,&invalid_TSS);
1027 set_intr_gate(11,&segment_not_present);
1028 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
1029 set_intr_gate(13,&general_protection);
1030 set_intr_gate(14,&page_fault);
1031 set_intr_gate(15,&spurious_interrupt_bug);
1032 set_intr_gate(16,&coprocessor_error);
1033 set_intr_gate(17,&alignment_check);
1034 #ifdef CONFIG_X86_MCE
1035 set_intr_gate_ist(18,&machine_check, MCE_STACK);
1037 set_intr_gate(19,&simd_coprocessor_error);
1039 #ifdef CONFIG_IA32_EMULATION
1040 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1044 * Should be a barrier for any external CPU state.
1050 /* Actual parsing is done early in setup.c. */
1051 static int __init oops_dummy(char *s)
1056 __setup("oops=", oops_dummy);
1058 static int __init kstack_setup(char *s)
1060 kstack_depth_to_print = simple_strtoul(s,NULL,0);
1063 __setup("kstack=", kstack_setup);
1065 static int __init call_trace_setup(char *s)
1067 if (strcmp(s, "old") == 0)
1069 else if (strcmp(s, "both") == 0)
1071 else if (strcmp(s, "new") == 0)
1075 __setup("call_trace=", call_trace_setup);