blob: 53ba86fc5dd825ce4c1e4e5660cfe67b514274da [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
Alexander van Heukeluma8c1be92008-07-02 01:29:44 +02003 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Pentium III FXSR, SSE support
6 * Gareth Hughes <gareth@valinux.com>, May 2000
7 */
8
9/*
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +020010 * Handle hardware traps and faults.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kallsyms.h>
Ingo Molnarb5964402008-02-26 11:15:50 +010014#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kprobes.h>
Andrew Morton1e2af922006-09-27 01:51:15 -070016#include <linux/uaccess.h>
Ingo Molnarb5964402008-02-26 11:15:50 +010017#include <linux/kdebug.h>
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/ptrace.h>
21#include <linux/string.h>
Ingo Molnarb5964402008-02-26 11:15:50 +010022#include <linux/delay.h>
23#include <linux/errno.h>
24#include <linux/kexec.h>
25#include <linux/sched.h>
26#include <linux/timer.h>
27#include <linux/init.h>
Jeremy Fitzhardinge91768d62006-12-08 02:36:21 -080028#include <linux/bug.h>
Ingo Molnarb5964402008-02-26 11:15:50 +010029#include <linux/nmi.h>
30#include <linux/mm.h>
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +020031#include <linux/smp.h>
32#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#ifdef CONFIG_EISA
35#include <linux/ioport.h>
36#include <linux/eisa.h>
37#endif
38
39#ifdef CONFIG_MCA
40#include <linux/mca.h>
41#endif
42
Dave Jiangc0d12172007-07-19 01:49:46 -070043#if defined(CONFIG_EDAC)
44#include <linux/edac.h>
45#endif
46
Vegard Nossumf8561292008-04-04 00:53:23 +020047#include <asm/kmemcheck.h>
Ingo Molnarb5964402008-02-26 11:15:50 +010048#include <asm/stacktrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/debugreg.h>
Ingo Molnarb5964402008-02-26 11:15:50 +010051#include <asm/atomic.h>
52#include <asm/system.h>
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +020053#include <asm/traps.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/desc.h>
55#include <asm/i387.h>
Hidetoshi Seto9e55e442009-06-15 17:22:15 +090056#include <asm/mce.h>
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +020057
Ingo Molnar1164dd02009-01-28 19:34:09 +010058#include <asm/mach_traps.h>
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +020059
Alexander van Heukelum081f75b2008-10-03 22:00:39 +020060#ifdef CONFIG_X86_64
Thomas Gleixner428cf902009-08-20 10:35:46 +020061#include <asm/x86_init.h>
Alexander van Heukelum081f75b2008-10-03 22:00:39 +020062#include <asm/pgalloc.h>
63#include <asm/proto.h>
Alexander van Heukelum081f75b2008-10-03 22:00:39 +020064#else
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +020065#include <asm/processor-flags.h>
Ingo Molnar8e6dafd2009-02-23 00:34:39 +010066#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068asmlinkage int system_call(void);
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/* Do we ignore FPU interrupts ? */
Ingo Molnarb5964402008-02-26 11:15:50 +010071char ignore_fpu_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/*
74 * The IDT has to be page-aligned to simplify the Pentium
Tim Abbott07e81d62009-09-16 16:44:29 -040075 * F0 0F bug workaround.
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 */
Tim Abbott07e81d62009-09-16 16:44:29 -040077gate_desc idt_table[NR_VECTORS] __page_aligned_data = { { { { 0, 0 } } }, };
Alexander van Heukelum081f75b2008-10-03 22:00:39 +020078#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Yinghai Lub77b8812008-12-19 15:23:44 -080080DECLARE_BITMAP(used_vectors, NR_VECTORS);
81EXPORT_SYMBOL_GPL(used_vectors);
82
Alexander van Heukelumbadc7652008-07-02 01:30:30 +020083static int ignore_nmis;
Alan Sterne041c682006-03-27 01:16:30 -080084
Alexander van Heukelum762db432008-09-09 21:55:55 +020085static inline void conditional_sti(struct pt_regs *regs)
86{
87 if (regs->flags & X86_EFLAGS_IF)
88 local_irq_enable();
89}
90
Alexander van Heukelum3d2a71a2008-09-30 18:41:37 +020091static inline void preempt_conditional_sti(struct pt_regs *regs)
92{
93 inc_preempt_count();
94 if (regs->flags & X86_EFLAGS_IF)
95 local_irq_enable();
96}
97
Thomas Gleixnerbe716612009-01-13 23:36:34 +010098static inline void conditional_cli(struct pt_regs *regs)
99{
100 if (regs->flags & X86_EFLAGS_IF)
101 local_irq_disable();
102}
103
Alexander van Heukelum3d2a71a2008-09-30 18:41:37 +0200104static inline void preempt_conditional_cli(struct pt_regs *regs)
105{
106 if (regs->flags & X86_EFLAGS_IF)
107 local_irq_disable();
108 dec_preempt_count();
109}
110
Ingo Molnarb5964402008-02-26 11:15:50 +0100111static void __kprobes
Alexander van Heukelum3c1326f2008-09-26 14:03:08 +0200112do_trap(int trapnr, int signr, char *str, struct pt_regs *regs,
Ingo Molnarb5964402008-02-26 11:15:50 +0100113 long error_code, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700115 struct task_struct *tsk = current;
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700116
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200117#ifdef CONFIG_X86_32
gorcunov@gmail.com6b6891f2008-03-28 17:56:57 +0300118 if (regs->flags & X86_VM_MASK) {
Alexander van Heukelum3c1326f2008-09-26 14:03:08 +0200119 /*
120 * traps 0, 1, 3, 4, and 5 should be forwarded to vm86.
121 * On nmi (interrupt 2), do_trap should not be called.
122 */
123 if (trapnr < 6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 goto vm86_trap;
125 goto trap_signal;
126 }
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200127#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Vincent Hanquez717b5942005-06-23 00:08:45 -0700129 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 goto kernel_trap;
131
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200132#ifdef CONFIG_X86_32
Ingo Molnarb5964402008-02-26 11:15:50 +0100133trap_signal:
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200134#endif
Ingo Molnarb5964402008-02-26 11:15:50 +0100135 /*
136 * We want error_code and trap_no set for userspace faults and
137 * kernelspace faults which result in die(), but not
138 * kernelspace faults which are fixed up. die() gives the
139 * process no chance to handle the signal and notice the
140 * kernel fault information, so that won't result in polluting
141 * the information about previously queued, but not yet
142 * delivered, faults. See also do_general_protection below.
143 */
144 tsk->thread.error_code = error_code;
145 tsk->thread.trap_no = trapnr;
146
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200147#ifdef CONFIG_X86_64
148 if (show_unhandled_signals && unhandled_signal(tsk, signr) &&
149 printk_ratelimit()) {
150 printk(KERN_INFO
151 "%s[%d] trap %s ip:%lx sp:%lx error:%lx",
152 tsk->comm, tsk->pid, str,
153 regs->ip, regs->sp, error_code);
154 print_vma_addr(" in ", regs->ip);
155 printk("\n");
156 }
157#endif
158
Ingo Molnarb5964402008-02-26 11:15:50 +0100159 if (info)
160 force_sig_info(signr, info, tsk);
161 else
162 force_sig(signr, tsk);
163 return;
164
165kernel_trap:
166 if (!fixup_exception(regs)) {
Andi Kleend1895182007-05-02 19:27:05 +0200167 tsk->thread.error_code = error_code;
168 tsk->thread.trap_no = trapnr;
Ingo Molnarb5964402008-02-26 11:15:50 +0100169 die(str, regs, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
Ingo Molnarb5964402008-02-26 11:15:50 +0100171 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200173#ifdef CONFIG_X86_32
Ingo Molnarb5964402008-02-26 11:15:50 +0100174vm86_trap:
175 if (handle_vm86_trap((struct kernel_vm86_regs *) regs,
176 error_code, trapnr))
177 goto trap_signal;
178 return;
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200179#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
Ingo Molnarb5964402008-02-26 11:15:50 +0100182#define DO_ERROR(trapnr, signr, str, name) \
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200183dotraplinkage void do_##name(struct pt_regs *regs, long error_code) \
Ingo Molnarb5964402008-02-26 11:15:50 +0100184{ \
185 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
Alexander van Heukeluma8c1be92008-07-02 01:29:44 +0200186 == NOTIFY_STOP) \
Ingo Molnarb5964402008-02-26 11:15:50 +0100187 return; \
Alexander van Heukelum61aef7d2008-09-09 21:55:56 +0200188 conditional_sti(regs); \
Alexander van Heukelum3c1326f2008-09-26 14:03:08 +0200189 do_trap(trapnr, signr, str, regs, error_code, NULL); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Alexander van Heukelum3c1326f2008-09-26 14:03:08 +0200192#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200193dotraplinkage void do_##name(struct pt_regs *regs, long error_code) \
Ingo Molnarb5964402008-02-26 11:15:50 +0100194{ \
195 siginfo_t info; \
196 info.si_signo = signr; \
197 info.si_errno = 0; \
198 info.si_code = sicode; \
199 info.si_addr = (void __user *)siaddr; \
Ingo Molnarb5964402008-02-26 11:15:50 +0100200 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
Alexander van Heukeluma8c1be92008-07-02 01:29:44 +0200201 == NOTIFY_STOP) \
Ingo Molnarb5964402008-02-26 11:15:50 +0100202 return; \
Alexander van Heukelum61aef7d2008-09-09 21:55:56 +0200203 conditional_sti(regs); \
Alexander van Heukelum3c1326f2008-09-26 14:03:08 +0200204 do_trap(trapnr, signr, str, regs, error_code, &info); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Alexander van Heukelum3c1326f2008-09-26 14:03:08 +0200207DO_ERROR_INFO(0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->ip)
208DO_ERROR(4, SIGSEGV, "overflow", overflow)
209DO_ERROR(5, SIGSEGV, "bounds", bounds)
210DO_ERROR_INFO(6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->ip)
Alexander van Heukelum51bc1ed2008-09-09 21:56:03 +0200211DO_ERROR(9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
Alexander van Heukelum6bf77bf2008-09-09 21:56:04 +0200212DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
Alexander van Heukelum36d936c2008-09-09 21:56:05 +0200213DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200214#ifdef CONFIG_X86_32
Alexander van Heukelumf5ca8182008-09-09 21:56:06 +0200215DO_ERROR(12, SIGBUS, "stack segment", stack_segment)
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200216#endif
Alexander van Heukelum3c1326f2008-09-26 14:03:08 +0200217DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200219#ifdef CONFIG_X86_64
220/* Runs on IST stack */
221dotraplinkage void do_stack_segment(struct pt_regs *regs, long error_code)
222{
223 if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
224 12, SIGBUS) == NOTIFY_STOP)
225 return;
226 preempt_conditional_sti(regs);
227 do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
228 preempt_conditional_cli(regs);
229}
230
231dotraplinkage void do_double_fault(struct pt_regs *regs, long error_code)
232{
233 static const char str[] = "double fault";
234 struct task_struct *tsk = current;
235
236 /* Return not checked because double check cannot be ignored */
237 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
238
239 tsk->thread.error_code = error_code;
240 tsk->thread.trap_no = 8;
241
Ingo Molnarbd8b96d2008-12-26 09:20:22 +0100242 /*
243 * This is always a kernel trap and never fixable (and thus must
244 * never return).
245 */
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200246 for (;;)
247 die(str, regs, error_code);
248}
249#endif
250
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200251dotraplinkage void __kprobes
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200252do_general_protection(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200254 struct task_struct *tsk;
Ingo Molnarb5964402008-02-26 11:15:50 +0100255
Alexander van Heukelumc6df0d72008-09-09 21:56:07 +0200256 conditional_sti(regs);
257
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200258#ifdef CONFIG_X86_32
gorcunov@gmail.com6b6891f2008-03-28 17:56:57 +0300259 if (regs->flags & X86_VM_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 goto gp_in_vm86;
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200261#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200263 tsk = current;
Vincent Hanquez717b5942005-06-23 00:08:45 -0700264 if (!user_mode(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 goto gp_in_kernel;
266
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200267 tsk->thread.error_code = error_code;
268 tsk->thread.trap_no = 13;
Ingo Molnarb5964402008-02-26 11:15:50 +0100269
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200270 if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
271 printk_ratelimit()) {
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200272 printk(KERN_INFO
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200273 "%s[%d] general protection ip:%lx sp:%lx error:%lx",
274 tsk->comm, task_pid_nr(tsk),
275 regs->ip, regs->sp, error_code);
Andi Kleen03252912008-01-30 13:33:18 +0100276 print_vma_addr(" in ", regs->ip);
277 printk("\n");
278 }
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200279
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200280 force_sig(SIGSEGV, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return;
282
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200283#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284gp_in_vm86:
285 local_irq_enable();
286 handle_vm86_fault((struct kernel_vm86_regs *) regs, error_code);
287 return;
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200288#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290gp_in_kernel:
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200291 if (fixup_exception(regs))
292 return;
293
294 tsk->thread.error_code = error_code;
295 tsk->thread.trap_no = 13;
296 if (notify_die(DIE_GPF, "general protection fault", regs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 error_code, 13, SIGSEGV) == NOTIFY_STOP)
Alexander van Heukelum13485ab2008-07-02 01:32:04 +0200298 return;
299 die("general protection fault", regs, error_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Steven Rostedt5deb45e2008-04-19 19:19:55 +0200302static notrace __kprobes void
Ingo Molnarb5964402008-02-26 11:15:50 +0100303mem_parity_error(unsigned char reason, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Ingo Molnarb5964402008-02-26 11:15:50 +0100305 printk(KERN_EMERG
306 "Uhhuh. NMI received for unknown reason %02x on CPU %d.\n",
307 reason, smp_processor_id());
308
309 printk(KERN_EMERG
310 "You have some hardware problem, likely on the PCI bus.\n");
Dave Jiangc0d12172007-07-19 01:49:46 -0700311
312#if defined(CONFIG_EDAC)
Ingo Molnarb5964402008-02-26 11:15:50 +0100313 if (edac_handler_set()) {
Dave Jiangc0d12172007-07-19 01:49:46 -0700314 edac_atomic_assert_error();
315 return;
316 }
317#endif
318
Don Zickus8da5add2006-09-26 10:52:27 +0200319 if (panic_on_unrecovered_nmi)
Ingo Molnarb5964402008-02-26 11:15:50 +0100320 panic("NMI: Not continuing");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Don Zickusc41c5cd2006-09-26 10:52:27 +0200322 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 /* Clear and disable the memory parity error line. */
Alexander van Heukelum79704792008-10-03 22:00:36 +0200325 reason = (reason & 0xf) | 4;
326 outb(reason, 0x61);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Steven Rostedt5deb45e2008-04-19 19:19:55 +0200329static notrace __kprobes void
Ingo Molnarb5964402008-02-26 11:15:50 +0100330io_check_error(unsigned char reason, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 unsigned long i;
333
Dave Jones9c107802006-01-09 20:51:32 -0800334 printk(KERN_EMERG "NMI: IOCK error (debug interrupt?)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 show_registers(regs);
336
Kurt Garloff5211a242009-06-24 14:32:11 -0700337 if (panic_on_io_nmi)
338 panic("NMI IOCK error: Not continuing");
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 /* Re-enable the IOCK line, wait for a few seconds */
341 reason = (reason & 0xf) | 8;
342 outb(reason, 0x61);
Ingo Molnarb5964402008-02-26 11:15:50 +0100343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 i = 2000;
Ingo Molnarb5964402008-02-26 11:15:50 +0100345 while (--i)
346 udelay(1000);
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 reason &= ~8;
349 outb(reason, 0x61);
350}
351
Steven Rostedt5deb45e2008-04-19 19:19:55 +0200352static notrace __kprobes void
Ingo Molnarb5964402008-02-26 11:15:50 +0100353unknown_nmi_error(unsigned char reason, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +0200355 if (notify_die(DIE_NMIUNKNOWN, "nmi", regs, reason, 2, SIGINT) ==
356 NOTIFY_STOP)
Jason Wesseld3597522008-02-15 14:55:53 -0600357 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358#ifdef CONFIG_MCA
Ingo Molnarb5964402008-02-26 11:15:50 +0100359 /*
360 * Might actually be able to figure out what the guilty party
361 * is:
362 */
363 if (MCA_bus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 mca_handle_nmi();
365 return;
366 }
367#endif
Ingo Molnarb5964402008-02-26 11:15:50 +0100368 printk(KERN_EMERG
369 "Uhhuh. NMI received for unknown reason %02x on CPU %d.\n",
370 reason, smp_processor_id());
371
Don Zickusc41c5cd2006-09-26 10:52:27 +0200372 printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n");
Don Zickus8da5add2006-09-26 10:52:27 +0200373 if (panic_on_unrecovered_nmi)
Ingo Molnarb5964402008-02-26 11:15:50 +0100374 panic("NMI: Not continuing");
Don Zickus8da5add2006-09-26 10:52:27 +0200375
Don Zickusc41c5cd2006-09-26 10:52:27 +0200376 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Steven Rostedt5deb45e2008-04-19 19:19:55 +0200379static notrace __kprobes void default_do_nmi(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 unsigned char reason = 0;
Alexander van Heukelumabd34802008-07-02 18:39:01 +0200382 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Alexander van Heukelumabd34802008-07-02 18:39:01 +0200384 cpu = smp_processor_id();
385
386 /* Only the BSP gets external NMIs from the system. */
387 if (!cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 reason = get_nmi_reason();
Ingo Molnarb5964402008-02-26 11:15:50 +0100389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (!(reason & 0xc0)) {
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800391 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
Alexander van Heukeluma8c1be92008-07-02 01:29:44 +0200392 == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return;
394#ifdef CONFIG_X86_LOCAL_APIC
395 /*
396 * Ok, so this is none of the documented NMI sources,
397 * so it must be the NMI watchdog.
398 */
Don Zickus3adbbcc2006-09-26 10:52:26 +0200399 if (nmi_watchdog_tick(regs, reason))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return;
Alexander van Heukelumabd34802008-07-02 18:39:01 +0200401 if (!do_nmi_callback(regs, cpu))
Don Zickus3adbbcc2006-09-26 10:52:26 +0200402 unknown_nmi_error(reason, regs);
Ingo Molnarb5964402008-02-26 11:15:50 +0100403#else
404 unknown_nmi_error(reason, regs);
405#endif
Don Zickus2fbe7b22006-09-26 10:52:27 +0200406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return;
408 }
Jan Beulich20c0d2d2006-03-26 01:37:01 -0800409 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return;
Alexander van Heukeluma8c1be92008-07-02 01:29:44 +0200411
412 /* AK: following checks seem to be broken on modern chipsets. FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (reason & 0x80)
414 mem_parity_error(reason, regs);
415 if (reason & 0x40)
416 io_check_error(reason, regs);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200417#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 /*
419 * Reassert NMI in case it became active meanwhile
Ingo Molnarb5964402008-02-26 11:15:50 +0100420 * as it's edge-triggered:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 */
422 reassert_nmi();
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200423#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200426dotraplinkage notrace __kprobes void
427do_nmi(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 nmi_enter();
430
Hiroshi Shimamoto915b0d02008-12-08 19:19:26 -0800431 inc_irq_stat(__nmi_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Andi Kleen8f4e9562007-07-22 11:12:32 +0200433 if (!ignore_nmis)
434 default_do_nmi(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 nmi_exit();
437}
438
Andi Kleen8f4e9562007-07-22 11:12:32 +0200439void stop_nmi(void)
440{
441 acpi_nmi_disable();
442 ignore_nmis++;
443}
444
445void restart_nmi(void)
446{
447 ignore_nmis--;
448 acpi_nmi_enable();
449}
450
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +0200451/* May run on IST stack. */
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200452dotraplinkage void __kprobes do_int3(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Alexander van Heukelumb94da1e2008-09-09 21:55:58 +0200454#ifdef CONFIG_KPROBES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP)
456 == NOTIFY_STOP)
Stas Sergeev48c882112005-05-01 08:58:49 -0700457 return;
Alexander van Heukelumb94da1e2008-09-09 21:55:58 +0200458#else
459 if (notify_die(DIE_TRAP, "int3", regs, error_code, 3, SIGTRAP)
460 == NOTIFY_STOP)
461 return;
462#endif
Ingo Molnarb5964402008-02-26 11:15:50 +0100463
Alexander van Heukelum4915a352008-10-03 22:00:34 +0200464 preempt_conditional_sti(regs);
Alexander van Heukelum3c1326f2008-09-26 14:03:08 +0200465 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
Alexander van Heukelum4915a352008-10-03 22:00:34 +0200466 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200469#ifdef CONFIG_X86_64
Ingo Molnarbd8b96d2008-12-26 09:20:22 +0100470/*
471 * Help handler running on IST stack to switch back to user stack
472 * for scheduling or signal handling. The actual stack switch is done in
473 * entry.S
474 */
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200475asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
476{
477 struct pt_regs *regs = eregs;
478 /* Did already sync */
479 if (eregs == (struct pt_regs *)eregs->sp)
480 ;
481 /* Exception from user space */
482 else if (user_mode(eregs))
483 regs = task_pt_regs(current);
Ingo Molnarbd8b96d2008-12-26 09:20:22 +0100484 /*
485 * Exception from kernel and interrupts are enabled. Move to
486 * kernel process stack.
487 */
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200488 else if (eregs->flags & X86_EFLAGS_IF)
489 regs = (struct pt_regs *)(eregs->sp -= sizeof(struct pt_regs));
490 if (eregs != regs)
491 *regs = *eregs;
492 return regs;
493}
494#endif
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496/*
497 * Our handling of the processor debug registers is non-trivial.
498 * We do not clear them on entry and exit from the kernel. Therefore
499 * it is possible to get a watchpoint trap here from inside the kernel.
500 * However, the code in ./ptrace.c has ensured that the user can
501 * only set watchpoints on userspace addresses. Therefore the in-kernel
502 * watchpoint trap can only occur in code which is reading/writing
503 * from user space. Such code must not hold kernel locks (since it
504 * can equally take a page fault), therefore it is safe to call
505 * force_sig_info even though that claims and releases locks.
Ingo Molnarb5964402008-02-26 11:15:50 +0100506 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 * Code in ./signal.c ensures that the debug control register
508 * is restored before we deliver any signal, and therefore that
509 * user code runs with the correct debug control register even though
510 * we clear it here.
511 *
512 * Being careful here means that we don't have to be as careful in a
513 * lot of more complicated places (task switching can be a bit lazy
514 * about restoring all the debug state, and ptrace doesn't have to
515 * find every occurrence of the TF bit that could be saved away even
516 * by user code)
Alexander van Heukelumc1d518c2008-10-03 23:17:11 +0200517 *
518 * May run on IST stack.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 */
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200520dotraplinkage void __kprobes do_debug(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 struct task_struct *tsk = current;
K.Prasad08d68322009-06-01 23:44:08 +0530523 unsigned long dr6;
Srinivasa Dsda654b72008-09-23 15:23:52 +0530524 int si_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
K.Prasad08d68322009-06-01 23:44:08 +0530526 get_debugreg(dr6, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
K.Prasad40f92492010-01-28 16:44:01 +0530528 /* Filter out all the reserved bits which are preset to 1 */
529 dr6 &= ~DR6_RESERVED;
530
Vegard Nossumf8561292008-04-04 00:53:23 +0200531 /* Catch kmemcheck conditions first of all! */
Ingo Molnareadb8a02009-06-17 12:52:15 +0200532 if ((dr6 & DR_STEP) && kmemcheck_trap(regs))
Vegard Nossumf8561292008-04-04 00:53:23 +0200533 return;
534
K.Prasad08d68322009-06-01 23:44:08 +0530535 /* DR6 may or may not be cleared by the CPU */
536 set_debugreg(0, 6);
Roland McGrath10faa812008-01-30 13:30:54 +0100537 /*
538 * The processor cleared BTF, so don't mark that we need it set.
539 */
540 clear_tsk_thread_flag(tsk, TIF_DEBUGCTLMSR);
541 tsk->thread.debugctlmsr = 0;
542
K.Prasad08d68322009-06-01 23:44:08 +0530543 /* Store the virtualized DR6 value */
544 tsk->thread.debugreg6 = dr6;
545
K.Prasad62edab92009-06-01 23:47:06 +0530546 if (notify_die(DIE_DEBUG, "debug", regs, PTR_ERR(&dr6), error_code,
547 SIGTRAP) == NOTIFY_STOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return;
Alexander van Heukelum3d2a71a2008-09-30 18:41:37 +0200549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 /* It's safe to allow irq's after DR6 has been saved */
Alexander van Heukelum3d2a71a2008-09-30 18:41:37 +0200551 preempt_conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
K.Prasad08d68322009-06-01 23:44:08 +0530553 if (regs->flags & X86_VM_MASK) {
554 handle_vm86_trap((struct kernel_vm86_regs *) regs,
555 error_code, 1);
556 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 /*
K.Prasad08d68322009-06-01 23:44:08 +0530560 * Single-stepping through system calls: ignore any exceptions in
561 * kernel space, but re-enable TF when returning to user mode.
562 *
563 * We already checked v86 mode above, so we can check for kernel mode
564 * by just checking the CPL of CS.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 */
K.Prasad08d68322009-06-01 23:44:08 +0530566 if ((dr6 & DR_STEP) && !user_mode(regs)) {
567 tsk->thread.debugreg6 &= ~DR_STEP;
568 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
569 regs->flags &= ~X86_EFLAGS_TF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
K.Prasad08d68322009-06-01 23:44:08 +0530571 si_code = get_si_code(tsk->thread.debugreg6);
572 if (tsk->thread.debugreg6 & (DR_STEP | DR_TRAP_BITS))
573 send_sigtrap(tsk, regs, error_code, si_code);
Alexander van Heukelum3d2a71a2008-09-30 18:41:37 +0200574 preempt_conditional_cli(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 return;
577}
578
579/*
580 * Note that we play around with the 'TS' bit in an attempt to get
581 * the correct behaviour even in the presence of the asynchronous
582 * IRQ13 behaviour
583 */
Brian Gerst9b6dba92010-03-21 09:00:44 -0400584void math_error(struct pt_regs *regs, int error_code, int trapnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Brian Gerste2e75c92010-03-21 09:00:45 -0400586 struct task_struct *task = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 siginfo_t info;
Brian Gerst9b6dba92010-03-21 09:00:44 -0400588 unsigned short err;
Brian Gerste2e75c92010-03-21 09:00:45 -0400589 char *str = (trapnr == 16) ? "fpu exception" : "simd exception";
590
591 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, SIGFPE) == NOTIFY_STOP)
592 return;
593 conditional_sti(regs);
594
595 if (!user_mode_vm(regs))
596 {
597 if (!fixup_exception(regs)) {
598 task->thread.error_code = error_code;
599 task->thread.trap_no = trapnr;
600 die(str, regs, error_code);
601 }
602 return;
603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 /*
606 * Save the info for the exception handler and clear the error.
607 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 save_init_fpu(task);
Brian Gerst9b6dba92010-03-21 09:00:44 -0400609 task->thread.trap_no = trapnr;
610 task->thread.error_code = error_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 info.si_signo = SIGFPE;
612 info.si_errno = 0;
Brian Gerst9b6dba92010-03-21 09:00:44 -0400613 info.si_addr = (void __user *)regs->ip;
614 if (trapnr == 16) {
615 unsigned short cwd, swd;
616 /*
617 * (~cwd & swd) will mask out exceptions that are not set to unmasked
618 * status. 0x3f is the exception bits in these regs, 0x200 is the
619 * C1 reg you need in case of a stack fault, 0x040 is the stack
620 * fault bit. We should only be taking one exception at a time,
621 * so if this combination doesn't produce any single exception,
622 * then we have a bad program that isn't synchronizing its FPU usage
623 * and it will suffer the consequences since we won't be able to
624 * fully reproduce the context of the exception
625 */
626 cwd = get_fpu_cwd(task);
627 swd = get_fpu_swd(task);
H. Peter Anvinadf77ba2008-12-22 17:56:05 -0800628
Brian Gerst9b6dba92010-03-21 09:00:44 -0400629 err = swd & ~cwd;
630 } else {
631 /*
632 * The SIMD FPU exceptions are handled a little differently, as there
633 * is only a single status/control register. Thus, to determine which
634 * unmasked exception was caught we must mask the exception mask bits
635 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
636 */
637 unsigned short mxcsr = get_fpu_mxcsr(task);
638 err = ~(mxcsr >> 7) & mxcsr;
639 }
H. Peter Anvinadf77ba2008-12-22 17:56:05 -0800640
641 if (err & 0x001) { /* Invalid op */
Ingo Molnarb5964402008-02-26 11:15:50 +0100642 /*
643 * swd & 0x240 == 0x040: Stack Underflow
644 * swd & 0x240 == 0x240: Stack Overflow
645 * User must clear the SF bit (0x40) if set
646 */
647 info.si_code = FPE_FLTINV;
H. Peter Anvinadf77ba2008-12-22 17:56:05 -0800648 } else if (err & 0x004) { /* Divide by Zero */
Ingo Molnarb5964402008-02-26 11:15:50 +0100649 info.si_code = FPE_FLTDIV;
H. Peter Anvinadf77ba2008-12-22 17:56:05 -0800650 } else if (err & 0x008) { /* Overflow */
Ingo Molnarb5964402008-02-26 11:15:50 +0100651 info.si_code = FPE_FLTOVF;
H. Peter Anvinadf77ba2008-12-22 17:56:05 -0800652 } else if (err & 0x012) { /* Denormal, Underflow */
653 info.si_code = FPE_FLTUND;
654 } else if (err & 0x020) { /* Precision */
Ingo Molnarb5964402008-02-26 11:15:50 +0100655 info.si_code = FPE_FLTRES;
H. Peter Anvinadf77ba2008-12-22 17:56:05 -0800656 } else {
Ingo Molnarbd8b96d2008-12-26 09:20:22 +0100657 /*
658 * If we're using IRQ 13, or supposedly even some trap 16
659 * implementations, it's possible we get a spurious trap...
660 */
H. Peter Anvina73ad332008-12-25 10:39:01 -0800661 return; /* Spurious trap, no error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663 force_sig_info(SIGFPE, &info, task);
664}
665
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200666dotraplinkage void do_coprocessor_error(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200668#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 ignore_fpu_irq = 1;
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200670#endif
671
Brian Gerst9b6dba92010-03-21 09:00:44 -0400672 math_error(regs, error_code, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200675dotraplinkage void
676do_simd_coprocessor_error(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200678#ifdef CONFIG_X86_32
Brian Gerst40d2e762010-03-21 09:00:43 -0400679 ignore_fpu_irq = 1;
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200680#endif
Brian Gerst40d2e762010-03-21 09:00:43 -0400681
Brian Gerst9b6dba92010-03-21 09:00:44 -0400682 math_error(regs, error_code, 19);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200685dotraplinkage void
686do_spurious_interrupt_bug(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Alexander van Heukelumcf819782008-09-09 21:56:08 +0200688 conditional_sti(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689#if 0
690 /* No need to warn about this any longer. */
Ingo Molnarb5964402008-02-26 11:15:50 +0100691 printk(KERN_INFO "Ignoring P6 Local APIC Spurious Interrupt Bug...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692#endif
693}
694
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200695asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
696{
697}
698
Andi Kleen7856f6c2009-04-28 23:32:56 +0200699asmlinkage void __attribute__((weak)) smp_threshold_interrupt(void)
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200700{
701}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703/*
Jeremy Fitzhardingee6e9cac2009-04-24 00:40:59 -0700704 * __math_state_restore assumes that cr0.TS is already clear and the
705 * fpu state is all ready for use. Used during context switch.
706 */
707void __math_state_restore(void)
708{
709 struct thread_info *thread = current_thread_info();
710 struct task_struct *tsk = thread->task;
711
712 /*
713 * Paranoid restore. send a SIGSEGV if we fail to restore the state.
714 */
715 if (unlikely(restore_fpu_checking(tsk))) {
716 stts();
717 force_sig(SIGSEGV, tsk);
718 return;
719 }
720
721 thread->status |= TS_USEDFPU; /* So we fnsave on switch_to() */
722 tsk->fpu_counter++;
723}
724
725/*
Ingo Molnarb5964402008-02-26 11:15:50 +0100726 * 'math_state_restore()' saves the current math information in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 * old math state array, and gets the new ones from the current task
728 *
729 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
730 * Don't touch unless you *really* know how it works.
731 *
732 * Must be called with kernel preemption disabled (in this case,
733 * local interrupts are disabled at the call-site in entry.S).
734 */
Chuck Ebbertacc20762006-12-07 02:14:01 +0100735asmlinkage void math_state_restore(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
737 struct thread_info *thread = current_thread_info();
738 struct task_struct *tsk = thread->task;
739
Suresh Siddhaaa283f42008-03-10 15:28:05 -0700740 if (!tsk_used_math(tsk)) {
741 local_irq_enable();
742 /*
743 * does a slab alloc which can sleep
744 */
745 if (init_fpu(tsk)) {
746 /*
747 * ran out of memory!
748 */
749 do_group_exit(SIGKILL);
750 return;
751 }
752 local_irq_disable();
753 }
754
Ingo Molnarb5964402008-02-26 11:15:50 +0100755 clts(); /* Allow maths ops (or we recurse) */
Jiri Slabyfcb2ac52009-04-08 13:31:58 +0200756
Jeremy Fitzhardingee6e9cac2009-04-24 00:40:59 -0700757 __math_state_restore();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
Rusty Russell5992b6d2007-07-19 01:49:21 -0700759EXPORT_SYMBOL_GPL(math_state_restore);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761#ifndef CONFIG_MATH_EMULATION
Tejun Heod3157602009-02-09 22:17:39 +0900762void math_emulate(struct math_emu_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Ingo Molnarb5964402008-02-26 11:15:50 +0100764 printk(KERN_EMERG
765 "math-emulation not enabled and no coprocessor found.\n");
766 printk(KERN_EMERG "killing %s.\n", current->comm);
767 force_sig(SIGFPE, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 schedule();
769}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770#endif /* CONFIG_MATH_EMULATION */
771
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200772dotraplinkage void __kprobes
Brian Gerstaa78bcf2009-02-10 09:51:45 -0500773do_device_not_available(struct pt_regs *regs, long error_code)
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200774{
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200775#ifdef CONFIG_X86_32
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200776 if (read_cr0() & X86_CR0_EM) {
Tejun Heod3157602009-02-09 22:17:39 +0900777 struct math_emu_info info = { };
778
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200779 conditional_sti(regs);
Tejun Heod3157602009-02-09 22:17:39 +0900780
Brian Gerstaa78bcf2009-02-10 09:51:45 -0500781 info.regs = regs;
Tejun Heod3157602009-02-09 22:17:39 +0900782 math_emulate(&info);
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200783 } else {
784 math_state_restore(); /* interrupts still off */
785 conditional_sti(regs);
786 }
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200787#else
788 math_state_restore();
789#endif
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200790}
791
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200792#ifdef CONFIG_X86_32
Alexander van Heukelume407d6202008-09-30 18:41:36 +0200793dotraplinkage void do_iret_error(struct pt_regs *regs, long error_code)
Alexander van Heukelumf8e08702008-09-09 21:56:13 +0200794{
795 siginfo_t info;
796 local_irq_enable();
797
798 info.si_signo = SIGILL;
799 info.si_errno = 0;
800 info.si_code = ILL_BADSTK;
Hannes Ederfc6fcdf2009-02-22 01:00:57 +0100801 info.si_addr = NULL;
Alexander van Heukelumf8e08702008-09-09 21:56:13 +0200802 if (notify_die(DIE_TRAP, "iret exception",
803 regs, error_code, 32, SIGILL) == NOTIFY_STOP)
804 return;
Alexander van Heukelum3c1326f2008-09-26 14:03:08 +0200805 do_trap(32, SIGILL, "iret exception", regs, error_code, &info);
Alexander van Heukelumf8e08702008-09-09 21:56:13 +0200806}
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200807#endif
Alexander van Heukelumf8e08702008-09-09 21:56:13 +0200808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809void __init trap_init(void)
810{
Rusty Russelldbeb2be2007-10-19 20:35:03 +0200811 int i;
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813#ifdef CONFIG_EISA
Ingo Molnar927222b2008-01-30 13:33:49 +0100814 void __iomem *p = early_ioremap(0x0FFFD9, 4);
Ingo Molnarb5964402008-02-26 11:15:50 +0100815
816 if (readl(p) == 'E' + ('I'<<8) + ('S'<<16) + ('A'<<24))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 EISA_bus = 1;
Ingo Molnar927222b2008-01-30 13:33:49 +0100818 early_iounmap(p, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819#endif
820
Alexander van Heukelum976382d2008-09-09 21:55:57 +0200821 set_intr_gate(0, &divide_error);
Alexander van Heukelum699d2932008-10-03 22:00:32 +0200822 set_intr_gate_ist(1, &debug, DEBUG_STACK);
823 set_intr_gate_ist(2, &nmi, NMI_STACK);
824 /* int3 can be called from all */
825 set_system_intr_gate_ist(3, &int3, DEBUG_STACK);
826 /* int4 can be called from all */
827 set_system_intr_gate(4, &overflow);
Alexander van Heukelum64f644c2008-09-09 21:56:00 +0200828 set_intr_gate(5, &bounds);
Alexander van Heukelum12394cf2008-09-09 21:56:01 +0200829 set_intr_gate(6, &invalid_op);
Alexander van Heukelum7643e9b2008-09-09 21:56:02 +0200830 set_intr_gate(7, &device_not_available);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200831#ifdef CONFIG_X86_32
Alexander van Heukeluma8c1be92008-07-02 01:29:44 +0200832 set_task_gate(8, GDT_ENTRY_DOUBLEFAULT_TSS);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200833#else
834 set_intr_gate_ist(8, &double_fault, DOUBLEFAULT_STACK);
835#endif
Alexander van Heukelum51bc1ed2008-09-09 21:56:03 +0200836 set_intr_gate(9, &coprocessor_segment_overrun);
Alexander van Heukelum6bf77bf2008-09-09 21:56:04 +0200837 set_intr_gate(10, &invalid_TSS);
Alexander van Heukelum36d936c2008-09-09 21:56:05 +0200838 set_intr_gate(11, &segment_not_present);
Alexander van Heukelum699d2932008-10-03 22:00:32 +0200839 set_intr_gate_ist(12, &stack_segment, STACKFAULT_STACK);
Alexander van Heukelumc6df0d72008-09-09 21:56:07 +0200840 set_intr_gate(13, &general_protection);
Ingo Molnarb5964402008-02-26 11:15:50 +0100841 set_intr_gate(14, &page_fault);
Alexander van Heukelumcf819782008-09-09 21:56:08 +0200842 set_intr_gate(15, &spurious_interrupt_bug);
Alexander van Heukelum252d28f2008-09-09 21:56:09 +0200843 set_intr_gate(16, &coprocessor_error);
Alexander van Heukelum5feedfd2008-09-09 21:56:10 +0200844 set_intr_gate(17, &alignment_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845#ifdef CONFIG_X86_MCE
Alexander van Heukelum699d2932008-10-03 22:00:32 +0200846 set_intr_gate_ist(18, &machine_check, MCE_STACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847#endif
Alexander van Heukelumb939bde2008-09-09 21:56:12 +0200848 set_intr_gate(19, &simd_coprocessor_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Yinghai Lubb3f0b52009-01-25 02:38:09 -0800850 /* Reserve all the builtin and the syscall vector: */
851 for (i = 0; i < FIRST_EXTERNAL_VECTOR; i++)
852 set_bit(i, used_vectors);
853
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200854#ifdef CONFIG_IA32_EMULATION
855 set_system_intr_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
Yinghai Lubb3f0b52009-01-25 02:38:09 -0800856 set_bit(IA32_SYSCALL_VECTOR, used_vectors);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200857#endif
858
859#ifdef CONFIG_X86_32
Jan Beulichd43c6e82006-01-06 00:11:49 -0800860 if (cpu_has_fxsr) {
Jan Beulichd43c6e82006-01-06 00:11:49 -0800861 printk(KERN_INFO "Enabling fast FPU save and restore... ");
862 set_in_cr4(X86_CR4_OSFXSR);
863 printk("done.\n");
864 }
865 if (cpu_has_xmm) {
Ingo Molnarb5964402008-02-26 11:15:50 +0100866 printk(KERN_INFO
867 "Enabling unmasked SIMD FPU exception support... ");
Jan Beulichd43c6e82006-01-06 00:11:49 -0800868 set_in_cr4(X86_CR4_OSXMMEXCPT);
869 printk("done.\n");
870 }
871
Alexander van Heukelum699d2932008-10-03 22:00:32 +0200872 set_system_trap_gate(SYSCALL_VECTOR, &system_call);
Rusty Russelldbeb2be2007-10-19 20:35:03 +0200873 set_bit(SYSCALL_VECTOR, used_vectors);
Alexander van Heukelum081f75b2008-10-03 22:00:39 +0200874#endif
Yinghai Lubb3f0b52009-01-25 02:38:09 -0800875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 /*
Ingo Molnarb5964402008-02-26 11:15:50 +0100877 * Should be a barrier for any external CPU state:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 */
879 cpu_init();
880
Thomas Gleixner428cf902009-08-20 10:35:46 +0200881 x86_init.irqs.trap_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}