Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Copyright (C) 1991, 1992 Linus Torvalds |
Alexander van Heukelum | a8c1be9 | 2008-07-02 01:29:44 +0200 | [diff] [blame] | 3 | * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 5 | * Pentium III FXSR, SSE support |
| 6 | * Gareth Hughes <gareth@valinux.com>, May 2000 |
| 7 | */ |
| 8 | |
| 9 | /* |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame^] | 10 | * Handle hardware traps and faults. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/kallsyms.h> |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 14 | #include <linux/spinlock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/kprobes.h> |
Andrew Morton | 1e2af92 | 2006-09-27 01:51:15 -0700 | [diff] [blame] | 16 | #include <linux/uaccess.h> |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 17 | #include <linux/utsname.h> |
| 18 | #include <linux/kdebug.h> |
| 19 | #include <linux/kernel.h> |
| 20 | #include <linux/module.h> |
| 21 | #include <linux/ptrace.h> |
| 22 | #include <linux/string.h> |
| 23 | #include <linux/unwind.h> |
| 24 | #include <linux/delay.h> |
| 25 | #include <linux/errno.h> |
| 26 | #include <linux/kexec.h> |
| 27 | #include <linux/sched.h> |
| 28 | #include <linux/timer.h> |
| 29 | #include <linux/init.h> |
Jeremy Fitzhardinge | 91768d6 | 2006-12-08 02:36:21 -0800 | [diff] [blame] | 30 | #include <linux/bug.h> |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 31 | #include <linux/nmi.h> |
| 32 | #include <linux/mm.h> |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame^] | 33 | #include <linux/smp.h> |
| 34 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | #ifdef CONFIG_EISA |
| 37 | #include <linux/ioport.h> |
| 38 | #include <linux/eisa.h> |
| 39 | #endif |
| 40 | |
| 41 | #ifdef CONFIG_MCA |
| 42 | #include <linux/mca.h> |
| 43 | #endif |
| 44 | |
Dave Jiang | c0d1217 | 2007-07-19 01:49:46 -0700 | [diff] [blame] | 45 | #if defined(CONFIG_EDAC) |
| 46 | #include <linux/edac.h> |
| 47 | #endif |
| 48 | |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 49 | #include <asm/stacktrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include <asm/processor.h> |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame^] | 51 | #include <asm/kmemcheck.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #include <asm/debugreg.h> |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 53 | #include <asm/atomic.h> |
| 54 | #include <asm/system.h> |
| 55 | #include <asm/unwind.h> |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame^] | 56 | #include <asm/traps.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #include <asm/desc.h> |
| 58 | #include <asm/i387.h> |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame^] | 59 | |
| 60 | #include <mach_traps.h> |
| 61 | |
| 62 | #include <asm/processor-flags.h> |
| 63 | #include <asm/arch_hooks.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #include <asm/nmi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #include <asm/smp.h> |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 66 | #include <asm/io.h> |
Jaswinder Singh | 6ac8d51 | 2008-07-15 21:09:13 +0530 | [diff] [blame] | 67 | #include <asm/traps.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
Alexander van Heukelum | eb642f6 | 2008-09-09 21:56:11 +0200 | [diff] [blame] | 69 | #include "cpu/mcheck/mce.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Rusty Russell | dbeb2be | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 71 | DECLARE_BITMAP(used_vectors, NR_VECTORS); |
| 72 | EXPORT_SYMBOL_GPL(used_vectors); |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | asmlinkage int system_call(void); |
| 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | /* Do we ignore FPU interrupts ? */ |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 77 | char ignore_fpu_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
| 79 | /* |
| 80 | * The IDT has to be page-aligned to simplify the Pentium |
| 81 | * F0 0F bug workaround.. We have a special link segment |
| 82 | * for this. |
| 83 | */ |
Glauber de Oliveira Costa | 010d4f8 | 2008-01-30 13:31:12 +0100 | [diff] [blame] | 84 | gate_desc idt_table[256] |
Glauber de Oliveira Costa | 6842ef0 | 2008-01-30 13:31:11 +0100 | [diff] [blame] | 85 | __attribute__((__section__(".data.idt"))) = { { { { 0, 0 } } }, }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
Alexander van Heukelum | badc765 | 2008-07-02 01:30:30 +0200 | [diff] [blame] | 87 | static int ignore_nmis; |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 88 | |
Alexander van Heukelum | 762db43 | 2008-09-09 21:55:55 +0200 | [diff] [blame] | 89 | static inline void conditional_sti(struct pt_regs *regs) |
| 90 | { |
| 91 | if (regs->flags & X86_EFLAGS_IF) |
| 92 | local_irq_enable(); |
| 93 | } |
| 94 | |
Alexander van Heukelum | 3d2a71a | 2008-09-30 18:41:37 +0200 | [diff] [blame] | 95 | static inline void preempt_conditional_sti(struct pt_regs *regs) |
| 96 | { |
| 97 | inc_preempt_count(); |
| 98 | if (regs->flags & X86_EFLAGS_IF) |
| 99 | local_irq_enable(); |
| 100 | } |
| 101 | |
| 102 | static inline void preempt_conditional_cli(struct pt_regs *regs) |
| 103 | { |
| 104 | if (regs->flags & X86_EFLAGS_IF) |
| 105 | local_irq_disable(); |
| 106 | dec_preempt_count(); |
| 107 | } |
| 108 | |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 109 | static inline void |
| 110 | die_if_kernel(const char *str, struct pt_regs *regs, long err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | { |
Vincent Hanquez | 717b594 | 2005-06-23 00:08:45 -0700 | [diff] [blame] | 112 | if (!user_mode_vm(regs)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | die(str, regs, err); |
| 114 | } |
| 115 | |
Alexander van Heukelum | ae82157 | 2008-09-30 18:41:35 +0200 | [diff] [blame] | 116 | /* |
| 117 | * Perform the lazy TSS's I/O bitmap copy. If the TSS has an |
| 118 | * invalid offset set (the LAZY one) and the faulting thread has |
| 119 | * a valid I/O bitmap pointer, we copy the I/O bitmap in the TSS, |
| 120 | * we set the offset field correctly and return 1. |
| 121 | */ |
| 122 | static int lazy_iobitmap_copy(void) |
| 123 | { |
| 124 | struct thread_struct *thread; |
| 125 | struct tss_struct *tss; |
| 126 | int cpu; |
| 127 | |
| 128 | cpu = get_cpu(); |
| 129 | tss = &per_cpu(init_tss, cpu); |
| 130 | thread = ¤t->thread; |
| 131 | |
| 132 | if (tss->x86_tss.io_bitmap_base == INVALID_IO_BITMAP_OFFSET_LAZY && |
| 133 | thread->io_bitmap_ptr) { |
| 134 | memcpy(tss->io_bitmap, thread->io_bitmap_ptr, |
| 135 | thread->io_bitmap_max); |
| 136 | /* |
| 137 | * If the previously set map was extending to higher ports |
| 138 | * than the current one, pad extra space with 0xff (no access). |
| 139 | */ |
| 140 | if (thread->io_bitmap_max < tss->io_bitmap_max) { |
| 141 | memset((char *) tss->io_bitmap + |
| 142 | thread->io_bitmap_max, 0xff, |
| 143 | tss->io_bitmap_max - thread->io_bitmap_max); |
| 144 | } |
| 145 | tss->io_bitmap_max = thread->io_bitmap_max; |
| 146 | tss->x86_tss.io_bitmap_base = IO_BITMAP_OFFSET; |
| 147 | tss->io_bitmap_owner = thread; |
| 148 | put_cpu(); |
| 149 | |
| 150 | return 1; |
| 151 | } |
| 152 | put_cpu(); |
| 153 | |
| 154 | return 0; |
| 155 | } |
| 156 | |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 157 | static void __kprobes |
Alexander van Heukelum | 3c1326f | 2008-09-26 14:03:08 +0200 | [diff] [blame] | 158 | do_trap(int trapnr, int signr, char *str, struct pt_regs *regs, |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 159 | long error_code, siginfo_t *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
Alexander Nyberg | 4f339ec | 2005-06-25 14:58:27 -0700 | [diff] [blame] | 161 | struct task_struct *tsk = current; |
Alexander Nyberg | 4f339ec | 2005-06-25 14:58:27 -0700 | [diff] [blame] | 162 | |
gorcunov@gmail.com | 6b6891f | 2008-03-28 17:56:57 +0300 | [diff] [blame] | 163 | if (regs->flags & X86_VM_MASK) { |
Alexander van Heukelum | 3c1326f | 2008-09-26 14:03:08 +0200 | [diff] [blame] | 164 | /* |
| 165 | * traps 0, 1, 3, 4, and 5 should be forwarded to vm86. |
| 166 | * On nmi (interrupt 2), do_trap should not be called. |
| 167 | */ |
| 168 | if (trapnr < 6) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | goto vm86_trap; |
| 170 | goto trap_signal; |
| 171 | } |
| 172 | |
Vincent Hanquez | 717b594 | 2005-06-23 00:08:45 -0700 | [diff] [blame] | 173 | if (!user_mode(regs)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | goto kernel_trap; |
| 175 | |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 176 | trap_signal: |
| 177 | /* |
| 178 | * We want error_code and trap_no set for userspace faults and |
| 179 | * kernelspace faults which result in die(), but not |
| 180 | * kernelspace faults which are fixed up. die() gives the |
| 181 | * process no chance to handle the signal and notice the |
| 182 | * kernel fault information, so that won't result in polluting |
| 183 | * the information about previously queued, but not yet |
| 184 | * delivered, faults. See also do_general_protection below. |
| 185 | */ |
| 186 | tsk->thread.error_code = error_code; |
| 187 | tsk->thread.trap_no = trapnr; |
| 188 | |
| 189 | if (info) |
| 190 | force_sig_info(signr, info, tsk); |
| 191 | else |
| 192 | force_sig(signr, tsk); |
| 193 | return; |
| 194 | |
| 195 | kernel_trap: |
| 196 | if (!fixup_exception(regs)) { |
Andi Kleen | d189518 | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 197 | tsk->thread.error_code = error_code; |
| 198 | tsk->thread.trap_no = trapnr; |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 199 | die(str, regs, error_code); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 201 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 203 | vm86_trap: |
| 204 | if (handle_vm86_trap((struct kernel_vm86_regs *) regs, |
| 205 | error_code, trapnr)) |
| 206 | goto trap_signal; |
| 207 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | } |
| 209 | |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 210 | #define DO_ERROR(trapnr, signr, str, name) \ |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 211 | dotraplinkage void do_##name(struct pt_regs *regs, long error_code) \ |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 212 | { \ |
| 213 | if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \ |
Alexander van Heukelum | a8c1be9 | 2008-07-02 01:29:44 +0200 | [diff] [blame] | 214 | == NOTIFY_STOP) \ |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 215 | return; \ |
Alexander van Heukelum | 61aef7d | 2008-09-09 21:55:56 +0200 | [diff] [blame] | 216 | conditional_sti(regs); \ |
Alexander van Heukelum | 3c1326f | 2008-09-26 14:03:08 +0200 | [diff] [blame] | 217 | do_trap(trapnr, signr, str, regs, error_code, NULL); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | } |
| 219 | |
Alexander van Heukelum | 3c1326f | 2008-09-26 14:03:08 +0200 | [diff] [blame] | 220 | #define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \ |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 221 | dotraplinkage void do_##name(struct pt_regs *regs, long error_code) \ |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 222 | { \ |
| 223 | siginfo_t info; \ |
| 224 | info.si_signo = signr; \ |
| 225 | info.si_errno = 0; \ |
| 226 | info.si_code = sicode; \ |
| 227 | info.si_addr = (void __user *)siaddr; \ |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 228 | if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \ |
Alexander van Heukelum | a8c1be9 | 2008-07-02 01:29:44 +0200 | [diff] [blame] | 229 | == NOTIFY_STOP) \ |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 230 | return; \ |
Alexander van Heukelum | 61aef7d | 2008-09-09 21:55:56 +0200 | [diff] [blame] | 231 | conditional_sti(regs); \ |
Alexander van Heukelum | 3c1326f | 2008-09-26 14:03:08 +0200 | [diff] [blame] | 232 | do_trap(trapnr, signr, str, regs, error_code, &info); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } |
| 234 | |
Alexander van Heukelum | 3c1326f | 2008-09-26 14:03:08 +0200 | [diff] [blame] | 235 | DO_ERROR_INFO(0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->ip) |
| 236 | DO_ERROR(4, SIGSEGV, "overflow", overflow) |
| 237 | DO_ERROR(5, SIGSEGV, "bounds", bounds) |
| 238 | DO_ERROR_INFO(6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->ip) |
Alexander van Heukelum | 51bc1ed | 2008-09-09 21:56:03 +0200 | [diff] [blame] | 239 | DO_ERROR(9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun) |
Alexander van Heukelum | 6bf77bf | 2008-09-09 21:56:04 +0200 | [diff] [blame] | 240 | DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS) |
Alexander van Heukelum | 36d936c | 2008-09-09 21:56:05 +0200 | [diff] [blame] | 241 | DO_ERROR(11, SIGBUS, "segment not present", segment_not_present) |
Alexander van Heukelum | f5ca818 | 2008-09-09 21:56:06 +0200 | [diff] [blame] | 242 | DO_ERROR(12, SIGBUS, "stack segment", stack_segment) |
Alexander van Heukelum | 3c1326f | 2008-09-26 14:03:08 +0200 | [diff] [blame] | 243 | DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 245 | dotraplinkage void __kprobes |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 246 | do_general_protection(struct pt_regs *regs, long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | { |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 248 | struct task_struct *tsk; |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 249 | |
Alexander van Heukelum | c6df0d7 | 2008-09-09 21:56:07 +0200 | [diff] [blame] | 250 | conditional_sti(regs); |
| 251 | |
Alexander van Heukelum | ae82157 | 2008-09-30 18:41:35 +0200 | [diff] [blame] | 252 | if (lazy_iobitmap_copy()) { |
| 253 | /* restart the faulting instruction */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | return; |
| 255 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
gorcunov@gmail.com | 6b6891f | 2008-03-28 17:56:57 +0300 | [diff] [blame] | 257 | if (regs->flags & X86_VM_MASK) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | goto gp_in_vm86; |
| 259 | |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 260 | tsk = current; |
Vincent Hanquez | 717b594 | 2005-06-23 00:08:45 -0700 | [diff] [blame] | 261 | if (!user_mode(regs)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | goto gp_in_kernel; |
| 263 | |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 264 | tsk->thread.error_code = error_code; |
| 265 | tsk->thread.trap_no = 13; |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 266 | |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 267 | if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) && |
| 268 | printk_ratelimit()) { |
Masoud Asgharifard Sharbiani | abd4f75 | 2007-07-22 11:12:28 +0200 | [diff] [blame] | 269 | printk(KERN_INFO |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 270 | "%s[%d] general protection ip:%lx sp:%lx error:%lx", |
| 271 | tsk->comm, task_pid_nr(tsk), |
| 272 | regs->ip, regs->sp, error_code); |
Andi Kleen | 0325291 | 2008-01-30 13:33:18 +0100 | [diff] [blame] | 273 | print_vma_addr(" in ", regs->ip); |
| 274 | printk("\n"); |
| 275 | } |
Masoud Asgharifard Sharbiani | abd4f75 | 2007-07-22 11:12:28 +0200 | [diff] [blame] | 276 | |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 277 | force_sig(SIGSEGV, tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | return; |
| 279 | |
| 280 | gp_in_vm86: |
| 281 | local_irq_enable(); |
| 282 | handle_vm86_fault((struct kernel_vm86_regs *) regs, error_code); |
| 283 | return; |
| 284 | |
| 285 | gp_in_kernel: |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 286 | if (fixup_exception(regs)) |
| 287 | return; |
| 288 | |
| 289 | tsk->thread.error_code = error_code; |
| 290 | tsk->thread.trap_no = 13; |
| 291 | if (notify_die(DIE_GPF, "general protection fault", regs, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | error_code, 13, SIGSEGV) == NOTIFY_STOP) |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 293 | return; |
| 294 | die("general protection fault", regs, error_code); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | } |
| 296 | |
Steven Rostedt | 5deb45e | 2008-04-19 19:19:55 +0200 | [diff] [blame] | 297 | static notrace __kprobes void |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 298 | mem_parity_error(unsigned char reason, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | { |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 300 | printk(KERN_EMERG |
| 301 | "Uhhuh. NMI received for unknown reason %02x on CPU %d.\n", |
| 302 | reason, smp_processor_id()); |
| 303 | |
| 304 | printk(KERN_EMERG |
| 305 | "You have some hardware problem, likely on the PCI bus.\n"); |
Dave Jiang | c0d1217 | 2007-07-19 01:49:46 -0700 | [diff] [blame] | 306 | |
| 307 | #if defined(CONFIG_EDAC) |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 308 | if (edac_handler_set()) { |
Dave Jiang | c0d1217 | 2007-07-19 01:49:46 -0700 | [diff] [blame] | 309 | edac_atomic_assert_error(); |
| 310 | return; |
| 311 | } |
| 312 | #endif |
| 313 | |
Don Zickus | 8da5add | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 314 | if (panic_on_unrecovered_nmi) |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 315 | panic("NMI: Not continuing"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
Don Zickus | c41c5cd | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 317 | printk(KERN_EMERG "Dazed and confused, but trying to continue\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
| 319 | /* Clear and disable the memory parity error line. */ |
Alexander van Heukelum | 7970479 | 2008-10-03 22:00:36 +0200 | [diff] [blame] | 320 | reason = (reason & 0xf) | 4; |
| 321 | outb(reason, 0x61); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Steven Rostedt | 5deb45e | 2008-04-19 19:19:55 +0200 | [diff] [blame] | 324 | static notrace __kprobes void |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 325 | io_check_error(unsigned char reason, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | { |
| 327 | unsigned long i; |
| 328 | |
Dave Jones | 9c10780 | 2006-01-09 20:51:32 -0800 | [diff] [blame] | 329 | printk(KERN_EMERG "NMI: IOCK error (debug interrupt?)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | show_registers(regs); |
| 331 | |
| 332 | /* Re-enable the IOCK line, wait for a few seconds */ |
| 333 | reason = (reason & 0xf) | 8; |
| 334 | outb(reason, 0x61); |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | i = 2000; |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 337 | while (--i) |
| 338 | udelay(1000); |
| 339 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | reason &= ~8; |
| 341 | outb(reason, 0x61); |
| 342 | } |
| 343 | |
Steven Rostedt | 5deb45e | 2008-04-19 19:19:55 +0200 | [diff] [blame] | 344 | static notrace __kprobes void |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 345 | unknown_nmi_error(unsigned char reason, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | { |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame^] | 347 | if (notify_die(DIE_NMIUNKNOWN, "nmi", regs, reason, 2, SIGINT) == |
| 348 | NOTIFY_STOP) |
Jason Wessel | d359752 | 2008-02-15 14:55:53 -0600 | [diff] [blame] | 349 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | #ifdef CONFIG_MCA |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 351 | /* |
| 352 | * Might actually be able to figure out what the guilty party |
| 353 | * is: |
| 354 | */ |
| 355 | if (MCA_bus) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | mca_handle_nmi(); |
| 357 | return; |
| 358 | } |
| 359 | #endif |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 360 | printk(KERN_EMERG |
| 361 | "Uhhuh. NMI received for unknown reason %02x on CPU %d.\n", |
| 362 | reason, smp_processor_id()); |
| 363 | |
Don Zickus | c41c5cd | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 364 | printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n"); |
Don Zickus | 8da5add | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 365 | if (panic_on_unrecovered_nmi) |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 366 | panic("NMI: Not continuing"); |
Don Zickus | 8da5add | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 367 | |
Don Zickus | c41c5cd | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 368 | printk(KERN_EMERG "Dazed and confused, but trying to continue\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | static DEFINE_SPINLOCK(nmi_print_lock); |
| 372 | |
Cyrill Gorcunov | ddca03c | 2008-05-24 19:36:31 +0400 | [diff] [blame] | 373 | void notrace __kprobes die_nmi(char *str, struct pt_regs *regs, int do_panic) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | { |
Cyrill Gorcunov | ddca03c | 2008-05-24 19:36:31 +0400 | [diff] [blame] | 375 | if (notify_die(DIE_NMIWATCHDOG, str, regs, 0, 2, SIGINT) == NOTIFY_STOP) |
George Anzinger | 748f2ed | 2005-09-03 15:56:48 -0700 | [diff] [blame] | 376 | return; |
| 377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | spin_lock(&nmi_print_lock); |
| 379 | /* |
| 380 | * We are in trouble anyway, lets at least try |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 381 | * to get a message out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | */ |
| 383 | bust_spinlocks(1); |
Cyrill Gorcunov | ddca03c | 2008-05-24 19:36:31 +0400 | [diff] [blame] | 384 | printk(KERN_EMERG "%s", str); |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 385 | printk(" on CPU%d, ip %08lx, registers:\n", |
| 386 | smp_processor_id(), regs->ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | show_registers(regs); |
Cyrill Gorcunov | ddca03c | 2008-05-24 19:36:31 +0400 | [diff] [blame] | 388 | if (do_panic) |
| 389 | panic("Non maskable interrupt"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | console_silent(); |
| 391 | spin_unlock(&nmi_print_lock); |
| 392 | bust_spinlocks(0); |
Alexander Nyberg | 6e274d1 | 2005-06-25 14:58:26 -0700 | [diff] [blame] | 393 | |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 394 | /* |
| 395 | * If we are in kernel we are probably nested up pretty bad |
| 396 | * and might aswell get out now while we still can: |
| 397 | */ |
Jan Beulich | db753bd | 2006-03-23 02:59:46 -0800 | [diff] [blame] | 398 | if (!user_mode_vm(regs)) { |
Alexander Nyberg | 6e274d1 | 2005-06-25 14:58:26 -0700 | [diff] [blame] | 399 | current->thread.trap_no = 2; |
| 400 | crash_kexec(regs); |
| 401 | } |
| 402 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | do_exit(SIGSEGV); |
| 404 | } |
| 405 | |
Steven Rostedt | 5deb45e | 2008-04-19 19:19:55 +0200 | [diff] [blame] | 406 | static notrace __kprobes void default_do_nmi(struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | { |
| 408 | unsigned char reason = 0; |
Alexander van Heukelum | abd3480 | 2008-07-02 18:39:01 +0200 | [diff] [blame] | 409 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
Alexander van Heukelum | abd3480 | 2008-07-02 18:39:01 +0200 | [diff] [blame] | 411 | cpu = smp_processor_id(); |
| 412 | |
| 413 | /* Only the BSP gets external NMIs from the system. */ |
| 414 | if (!cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | reason = get_nmi_reason(); |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 416 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | if (!(reason & 0xc0)) { |
Jan Beulich | 20c0d2d | 2006-03-26 01:37:01 -0800 | [diff] [blame] | 418 | if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT) |
Alexander van Heukelum | a8c1be9 | 2008-07-02 01:29:44 +0200 | [diff] [blame] | 419 | == NOTIFY_STOP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | return; |
| 421 | #ifdef CONFIG_X86_LOCAL_APIC |
| 422 | /* |
| 423 | * Ok, so this is none of the documented NMI sources, |
| 424 | * so it must be the NMI watchdog. |
| 425 | */ |
Don Zickus | 3adbbcc | 2006-09-26 10:52:26 +0200 | [diff] [blame] | 426 | if (nmi_watchdog_tick(regs, reason)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | return; |
Alexander van Heukelum | abd3480 | 2008-07-02 18:39:01 +0200 | [diff] [blame] | 428 | if (!do_nmi_callback(regs, cpu)) |
Don Zickus | 3adbbcc | 2006-09-26 10:52:26 +0200 | [diff] [blame] | 429 | unknown_nmi_error(reason, regs); |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 430 | #else |
| 431 | unknown_nmi_error(reason, regs); |
| 432 | #endif |
Don Zickus | 2fbe7b2 | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | return; |
| 435 | } |
Jan Beulich | 20c0d2d | 2006-03-26 01:37:01 -0800 | [diff] [blame] | 436 | if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | return; |
Alexander van Heukelum | a8c1be9 | 2008-07-02 01:29:44 +0200 | [diff] [blame] | 438 | |
| 439 | /* AK: following checks seem to be broken on modern chipsets. FIXME */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | if (reason & 0x80) |
| 441 | mem_parity_error(reason, regs); |
| 442 | if (reason & 0x40) |
| 443 | io_check_error(reason, regs); |
| 444 | /* |
| 445 | * Reassert NMI in case it became active meanwhile |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 446 | * as it's edge-triggered: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | */ |
| 448 | reassert_nmi(); |
| 449 | } |
| 450 | |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 451 | dotraplinkage notrace __kprobes void |
| 452 | do_nmi(struct pt_regs *regs, long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | nmi_enter(); |
| 455 | |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame^] | 456 | { int cpu; cpu = smp_processor_id(); ++nmi_count(cpu); } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | |
Andi Kleen | 8f4e956 | 2007-07-22 11:12:32 +0200 | [diff] [blame] | 458 | if (!ignore_nmis) |
| 459 | default_do_nmi(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
| 461 | nmi_exit(); |
| 462 | } |
| 463 | |
Andi Kleen | 8f4e956 | 2007-07-22 11:12:32 +0200 | [diff] [blame] | 464 | void stop_nmi(void) |
| 465 | { |
| 466 | acpi_nmi_disable(); |
| 467 | ignore_nmis++; |
| 468 | } |
| 469 | |
| 470 | void restart_nmi(void) |
| 471 | { |
| 472 | ignore_nmis--; |
| 473 | acpi_nmi_enable(); |
| 474 | } |
| 475 | |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame^] | 476 | /* May run on IST stack. */ |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 477 | dotraplinkage void __kprobes do_int3(struct pt_regs *regs, long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | { |
Alexander van Heukelum | b94da1e | 2008-09-09 21:55:58 +0200 | [diff] [blame] | 479 | #ifdef CONFIG_KPROBES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) |
| 481 | == NOTIFY_STOP) |
Stas Sergeev | 48c88211 | 2005-05-01 08:58:49 -0700 | [diff] [blame] | 482 | return; |
Alexander van Heukelum | b94da1e | 2008-09-09 21:55:58 +0200 | [diff] [blame] | 483 | #else |
| 484 | if (notify_die(DIE_TRAP, "int3", regs, error_code, 3, SIGTRAP) |
| 485 | == NOTIFY_STOP) |
| 486 | return; |
| 487 | #endif |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 488 | |
Alexander van Heukelum | 4915a35 | 2008-10-03 22:00:34 +0200 | [diff] [blame] | 489 | preempt_conditional_sti(regs); |
Alexander van Heukelum | 3c1326f | 2008-09-26 14:03:08 +0200 | [diff] [blame] | 490 | do_trap(3, SIGTRAP, "int3", regs, error_code, NULL); |
Alexander van Heukelum | 4915a35 | 2008-10-03 22:00:34 +0200 | [diff] [blame] | 491 | preempt_conditional_cli(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | |
| 494 | /* |
| 495 | * Our handling of the processor debug registers is non-trivial. |
| 496 | * We do not clear them on entry and exit from the kernel. Therefore |
| 497 | * it is possible to get a watchpoint trap here from inside the kernel. |
| 498 | * However, the code in ./ptrace.c has ensured that the user can |
| 499 | * only set watchpoints on userspace addresses. Therefore the in-kernel |
| 500 | * watchpoint trap can only occur in code which is reading/writing |
| 501 | * from user space. Such code must not hold kernel locks (since it |
| 502 | * can equally take a page fault), therefore it is safe to call |
| 503 | * force_sig_info even though that claims and releases locks. |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 504 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | * Code in ./signal.c ensures that the debug control register |
| 506 | * is restored before we deliver any signal, and therefore that |
| 507 | * user code runs with the correct debug control register even though |
| 508 | * we clear it here. |
| 509 | * |
| 510 | * Being careful here means that we don't have to be as careful in a |
| 511 | * lot of more complicated places (task switching can be a bit lazy |
| 512 | * about restoring all the debug state, and ptrace doesn't have to |
| 513 | * find every occurrence of the TF bit that could be saved away even |
| 514 | * by user code) |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame^] | 515 | * |
| 516 | * May run on IST stack. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | */ |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 518 | dotraplinkage void __kprobes do_debug(struct pt_regs *regs, long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | struct task_struct *tsk = current; |
Alexander van Heukelum | 3d2a71a | 2008-09-30 18:41:37 +0200 | [diff] [blame] | 521 | unsigned long condition; |
Srinivasa Ds | da654b7 | 2008-09-23 15:23:52 +0530 | [diff] [blame] | 522 | int si_code; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
Vincent Hanquez | 1cc6f12 | 2005-06-23 00:08:43 -0700 | [diff] [blame] | 524 | get_debugreg(condition, 6); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
Roland McGrath | 10faa81 | 2008-01-30 13:30:54 +0100 | [diff] [blame] | 526 | /* |
| 527 | * The processor cleared BTF, so don't mark that we need it set. |
| 528 | */ |
| 529 | clear_tsk_thread_flag(tsk, TIF_DEBUGCTLMSR); |
| 530 | tsk->thread.debugctlmsr = 0; |
| 531 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code, |
Alexander van Heukelum | a8c1be9 | 2008-07-02 01:29:44 +0200 | [diff] [blame] | 533 | SIGTRAP) == NOTIFY_STOP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | return; |
Alexander van Heukelum | 3d2a71a | 2008-09-30 18:41:37 +0200 | [diff] [blame] | 535 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | /* It's safe to allow irq's after DR6 has been saved */ |
Alexander van Heukelum | 3d2a71a | 2008-09-30 18:41:37 +0200 | [diff] [blame] | 537 | preempt_conditional_sti(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
| 539 | /* Mask out spurious debug traps due to lazy DR7 setting */ |
| 540 | if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) { |
Roland McGrath | 0f53409 | 2008-01-30 13:30:59 +0100 | [diff] [blame] | 541 | if (!tsk->thread.debugreg7) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | goto clear_dr7; |
| 543 | } |
| 544 | |
gorcunov@gmail.com | 6b6891f | 2008-03-28 17:56:57 +0300 | [diff] [blame] | 545 | if (regs->flags & X86_VM_MASK) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | goto debug_vm86; |
| 547 | |
| 548 | /* Save debug status register where ptrace can see it */ |
Roland McGrath | 0f53409 | 2008-01-30 13:30:59 +0100 | [diff] [blame] | 549 | tsk->thread.debugreg6 = condition; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | |
| 551 | /* |
| 552 | * Single-stepping through TF: make sure we ignore any events in |
| 553 | * kernel space (but re-enable TF when returning to user mode). |
| 554 | */ |
| 555 | if (condition & DR_STEP) { |
Vincent Hanquez | 717b594 | 2005-06-23 00:08:45 -0700 | [diff] [blame] | 556 | if (!user_mode(regs)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | goto clear_TF_reenable; |
| 558 | } |
| 559 | |
Alexander van Heukelum | 3d2a71a | 2008-09-30 18:41:37 +0200 | [diff] [blame] | 560 | si_code = get_si_code(condition); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | /* Ok, finally something we can handle */ |
Srinivasa Ds | da654b7 | 2008-09-23 15:23:52 +0530 | [diff] [blame] | 562 | send_sigtrap(tsk, regs, error_code, si_code); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 564 | /* |
| 565 | * Disable additional traps. They'll be re-enabled when |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | * the signal is delivered. |
| 567 | */ |
| 568 | clear_dr7: |
Vincent Hanquez | 1cc6f12 | 2005-06-23 00:08:43 -0700 | [diff] [blame] | 569 | set_debugreg(0, 7); |
Alexander van Heukelum | 3d2a71a | 2008-09-30 18:41:37 +0200 | [diff] [blame] | 570 | preempt_conditional_cli(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | return; |
| 572 | |
| 573 | debug_vm86: |
| 574 | handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, 1); |
Alexander van Heukelum | 3d2a71a | 2008-09-30 18:41:37 +0200 | [diff] [blame] | 575 | preempt_conditional_cli(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | return; |
| 577 | |
| 578 | clear_TF_reenable: |
| 579 | set_tsk_thread_flag(tsk, TIF_SINGLESTEP); |
Ingo Molnar | 6093015 | 2008-03-30 11:45:23 +0200 | [diff] [blame] | 580 | regs->flags &= ~X86_EFLAGS_TF; |
Alexander van Heukelum | 3d2a71a | 2008-09-30 18:41:37 +0200 | [diff] [blame] | 581 | preempt_conditional_cli(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | return; |
| 583 | } |
| 584 | |
| 585 | /* |
| 586 | * Note that we play around with the 'TS' bit in an attempt to get |
| 587 | * the correct behaviour even in the presence of the asynchronous |
| 588 | * IRQ13 behaviour |
| 589 | */ |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 590 | void math_error(void __user *ip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | { |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 592 | struct task_struct *task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | siginfo_t info; |
Alexander van Heukelum | 7b4fd4b | 2008-07-02 01:33:14 +0200 | [diff] [blame] | 594 | unsigned short cwd, swd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | |
| 596 | /* |
| 597 | * Save the info for the exception handler and clear the error. |
| 598 | */ |
| 599 | task = current; |
| 600 | save_init_fpu(task); |
| 601 | task->thread.trap_no = 16; |
| 602 | task->thread.error_code = 0; |
| 603 | info.si_signo = SIGFPE; |
| 604 | info.si_errno = 0; |
| 605 | info.si_code = __SI_FAULT; |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 606 | info.si_addr = ip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | /* |
| 608 | * (~cwd & swd) will mask out exceptions that are not set to unmasked |
| 609 | * status. 0x3f is the exception bits in these regs, 0x200 is the |
| 610 | * C1 reg you need in case of a stack fault, 0x040 is the stack |
| 611 | * fault bit. We should only be taking one exception at a time, |
| 612 | * so if this combination doesn't produce any single exception, |
Alexander van Heukelum | a8c1be9 | 2008-07-02 01:29:44 +0200 | [diff] [blame] | 613 | * then we have a bad program that isn't synchronizing its FPU usage |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | * and it will suffer the consequences since we won't be able to |
| 615 | * fully reproduce the context of the exception |
| 616 | */ |
| 617 | cwd = get_fpu_cwd(task); |
| 618 | swd = get_fpu_swd(task); |
Chuck Ebbert | b1daec3 | 2005-08-23 21:36:40 -0400 | [diff] [blame] | 619 | switch (swd & ~cwd & 0x3f) { |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 620 | case 0x000: /* No unmasked exception */ |
| 621 | return; |
Alexander van Heukelum | a8c1be9 | 2008-07-02 01:29:44 +0200 | [diff] [blame] | 622 | default: /* Multiple exceptions */ |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 623 | break; |
| 624 | case 0x001: /* Invalid Op */ |
| 625 | /* |
| 626 | * swd & 0x240 == 0x040: Stack Underflow |
| 627 | * swd & 0x240 == 0x240: Stack Overflow |
| 628 | * User must clear the SF bit (0x40) if set |
| 629 | */ |
| 630 | info.si_code = FPE_FLTINV; |
| 631 | break; |
| 632 | case 0x002: /* Denormalize */ |
| 633 | case 0x010: /* Underflow */ |
| 634 | info.si_code = FPE_FLTUND; |
| 635 | break; |
| 636 | case 0x004: /* Zero Divide */ |
| 637 | info.si_code = FPE_FLTDIV; |
| 638 | break; |
| 639 | case 0x008: /* Overflow */ |
| 640 | info.si_code = FPE_FLTOVF; |
| 641 | break; |
| 642 | case 0x020: /* Precision */ |
| 643 | info.si_code = FPE_FLTRES; |
| 644 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | } |
| 646 | force_sig_info(SIGFPE, &info, task); |
| 647 | } |
| 648 | |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 649 | dotraplinkage void do_coprocessor_error(struct pt_regs *regs, long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | { |
Alexander van Heukelum | 252d28f | 2008-09-09 21:56:09 +0200 | [diff] [blame] | 651 | conditional_sti(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | ignore_fpu_irq = 1; |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 653 | math_error((void __user *)regs->ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | } |
| 655 | |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 656 | static void simd_math_error(void __user *ip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | { |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 658 | struct task_struct *task; |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 659 | siginfo_t info; |
Alexander van Heukelum | 7b4fd4b | 2008-07-02 01:33:14 +0200 | [diff] [blame] | 660 | unsigned short mxcsr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | |
| 662 | /* |
| 663 | * Save the info for the exception handler and clear the error. |
| 664 | */ |
| 665 | task = current; |
| 666 | save_init_fpu(task); |
| 667 | task->thread.trap_no = 19; |
| 668 | task->thread.error_code = 0; |
| 669 | info.si_signo = SIGFPE; |
| 670 | info.si_errno = 0; |
| 671 | info.si_code = __SI_FAULT; |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 672 | info.si_addr = ip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | /* |
| 674 | * The SIMD FPU exceptions are handled a little differently, as there |
| 675 | * is only a single status/control register. Thus, to determine which |
| 676 | * unmasked exception was caught we must mask the exception mask bits |
| 677 | * at 0x1f80, and then use these to mask the exception bits at 0x3f. |
| 678 | */ |
| 679 | mxcsr = get_fpu_mxcsr(task); |
| 680 | switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) { |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 681 | case 0x000: |
| 682 | default: |
| 683 | break; |
| 684 | case 0x001: /* Invalid Op */ |
| 685 | info.si_code = FPE_FLTINV; |
| 686 | break; |
| 687 | case 0x002: /* Denormalize */ |
| 688 | case 0x010: /* Underflow */ |
| 689 | info.si_code = FPE_FLTUND; |
| 690 | break; |
| 691 | case 0x004: /* Zero Divide */ |
| 692 | info.si_code = FPE_FLTDIV; |
| 693 | break; |
| 694 | case 0x008: /* Overflow */ |
| 695 | info.si_code = FPE_FLTOVF; |
| 696 | break; |
| 697 | case 0x020: /* Precision */ |
| 698 | info.si_code = FPE_FLTRES; |
| 699 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | } |
| 701 | force_sig_info(SIGFPE, &info, task); |
| 702 | } |
| 703 | |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 704 | dotraplinkage void |
| 705 | do_simd_coprocessor_error(struct pt_regs *regs, long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | { |
Alexander van Heukelum | b939bde | 2008-09-09 21:56:12 +0200 | [diff] [blame] | 707 | conditional_sti(regs); |
| 708 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | if (cpu_has_xmm) { |
| 710 | /* Handle SIMD FPU exceptions on PIII+ processors. */ |
| 711 | ignore_fpu_irq = 1; |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 712 | simd_math_error((void __user *)regs->ip); |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 713 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | } |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 715 | /* |
| 716 | * Handle strange cache flush from user space exception |
| 717 | * in all other cases. This is undocumented behaviour. |
| 718 | */ |
gorcunov@gmail.com | 6b6891f | 2008-03-28 17:56:57 +0300 | [diff] [blame] | 719 | if (regs->flags & X86_VM_MASK) { |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 720 | handle_vm86_fault((struct kernel_vm86_regs *)regs, error_code); |
| 721 | return; |
| 722 | } |
| 723 | current->thread.trap_no = 19; |
| 724 | current->thread.error_code = error_code; |
| 725 | die_if_kernel("cache flush denied", regs, error_code); |
| 726 | force_sig(SIGSEGV, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | } |
| 728 | |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 729 | dotraplinkage void |
| 730 | do_spurious_interrupt_bug(struct pt_regs *regs, long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | { |
Alexander van Heukelum | cf81978 | 2008-09-09 21:56:08 +0200 | [diff] [blame] | 732 | conditional_sti(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | #if 0 |
| 734 | /* No need to warn about this any longer. */ |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 735 | printk(KERN_INFO "Ignoring P6 Local APIC Spurious Interrupt Bug...\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | #endif |
| 737 | } |
| 738 | |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 739 | unsigned long patch_espfix_desc(unsigned long uesp, unsigned long kesp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | { |
Glauber Costa | 736f12b | 2008-05-27 20:14:51 -0700 | [diff] [blame] | 741 | struct desc_struct *gdt = get_cpu_gdt_table(smp_processor_id()); |
Stas Sergeev | be44d2a | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 742 | unsigned long base = (kesp - uesp) & -THREAD_SIZE; |
| 743 | unsigned long new_kesp = kesp - base; |
| 744 | unsigned long lim_pages = (new_kesp | (THREAD_SIZE - 1)) >> PAGE_SHIFT; |
| 745 | __u64 desc = *(__u64 *)&gdt[GDT_ENTRY_ESPFIX_SS]; |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 746 | |
Stas Sergeev | be44d2a | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 747 | /* Set up base for espfix segment */ |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 748 | desc &= 0x00f0ff0000000000ULL; |
| 749 | desc |= ((((__u64)base) << 16) & 0x000000ffffff0000ULL) | |
Stas Sergeev | be44d2a | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 750 | ((((__u64)base) << 32) & 0xff00000000000000ULL) | |
| 751 | ((((__u64)lim_pages) << 32) & 0x000f000000000000ULL) | |
| 752 | (lim_pages & 0xffff); |
| 753 | *(__u64 *)&gdt[GDT_ENTRY_ESPFIX_SS] = desc; |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 754 | |
Stas Sergeev | be44d2a | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 755 | return new_kesp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | } |
| 757 | |
| 758 | /* |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 759 | * 'math_state_restore()' saves the current math information in the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | * old math state array, and gets the new ones from the current task |
| 761 | * |
| 762 | * Careful.. There are problems with IBM-designed IRQ13 behaviour. |
| 763 | * Don't touch unless you *really* know how it works. |
| 764 | * |
| 765 | * Must be called with kernel preemption disabled (in this case, |
| 766 | * local interrupts are disabled at the call-site in entry.S). |
| 767 | */ |
Chuck Ebbert | acc2076 | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 768 | asmlinkage void math_state_restore(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | { |
| 770 | struct thread_info *thread = current_thread_info(); |
| 771 | struct task_struct *tsk = thread->task; |
| 772 | |
Suresh Siddha | aa283f4 | 2008-03-10 15:28:05 -0700 | [diff] [blame] | 773 | if (!tsk_used_math(tsk)) { |
| 774 | local_irq_enable(); |
| 775 | /* |
| 776 | * does a slab alloc which can sleep |
| 777 | */ |
| 778 | if (init_fpu(tsk)) { |
| 779 | /* |
| 780 | * ran out of memory! |
| 781 | */ |
| 782 | do_group_exit(SIGKILL); |
| 783 | return; |
| 784 | } |
| 785 | local_irq_disable(); |
| 786 | } |
| 787 | |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 788 | clts(); /* Allow maths ops (or we recurse) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | restore_fpu(tsk); |
| 790 | thread->status |= TS_USEDFPU; /* So we fnsave on switch_to() */ |
Chuck Ebbert | acc2076 | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 791 | tsk->fpu_counter++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | } |
Rusty Russell | 5992b6d | 2007-07-19 01:49:21 -0700 | [diff] [blame] | 793 | EXPORT_SYMBOL_GPL(math_state_restore); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | |
| 795 | #ifndef CONFIG_MATH_EMULATION |
| 796 | |
| 797 | asmlinkage void math_emulate(long arg) |
| 798 | { |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 799 | printk(KERN_EMERG |
| 800 | "math-emulation not enabled and no coprocessor found.\n"); |
| 801 | printk(KERN_EMERG "killing %s.\n", current->comm); |
| 802 | force_sig(SIGFPE, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | schedule(); |
| 804 | } |
| 805 | |
| 806 | #endif /* CONFIG_MATH_EMULATION */ |
| 807 | |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 808 | dotraplinkage void __kprobes |
| 809 | do_device_not_available(struct pt_regs *regs, long error) |
Alexander van Heukelum | 7643e9b | 2008-09-09 21:56:02 +0200 | [diff] [blame] | 810 | { |
| 811 | if (read_cr0() & X86_CR0_EM) { |
| 812 | conditional_sti(regs); |
| 813 | math_emulate(0); |
| 814 | } else { |
| 815 | math_state_restore(); /* interrupts still off */ |
| 816 | conditional_sti(regs); |
| 817 | } |
| 818 | } |
| 819 | |
Alexander van Heukelum | eb642f6 | 2008-09-09 21:56:11 +0200 | [diff] [blame] | 820 | #ifdef CONFIG_X86_MCE |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 821 | dotraplinkage void __kprobes do_machine_check(struct pt_regs *regs, long error) |
Alexander van Heukelum | eb642f6 | 2008-09-09 21:56:11 +0200 | [diff] [blame] | 822 | { |
| 823 | conditional_sti(regs); |
| 824 | machine_check_vector(regs, error); |
| 825 | } |
| 826 | #endif |
| 827 | |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 828 | dotraplinkage void do_iret_error(struct pt_regs *regs, long error_code) |
Alexander van Heukelum | f8e0870 | 2008-09-09 21:56:13 +0200 | [diff] [blame] | 829 | { |
| 830 | siginfo_t info; |
| 831 | local_irq_enable(); |
| 832 | |
| 833 | info.si_signo = SIGILL; |
| 834 | info.si_errno = 0; |
| 835 | info.si_code = ILL_BADSTK; |
| 836 | info.si_addr = 0; |
| 837 | if (notify_die(DIE_TRAP, "iret exception", |
| 838 | regs, error_code, 32, SIGILL) == NOTIFY_STOP) |
| 839 | return; |
Alexander van Heukelum | 3c1326f | 2008-09-26 14:03:08 +0200 | [diff] [blame] | 840 | do_trap(32, SIGILL, "iret exception", regs, error_code, &info); |
Alexander van Heukelum | f8e0870 | 2008-09-09 21:56:13 +0200 | [diff] [blame] | 841 | } |
| 842 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | void __init trap_init(void) |
| 844 | { |
Rusty Russell | dbeb2be | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 845 | int i; |
| 846 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | #ifdef CONFIG_EISA |
Ingo Molnar | 927222b | 2008-01-30 13:33:49 +0100 | [diff] [blame] | 848 | void __iomem *p = early_ioremap(0x0FFFD9, 4); |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 849 | |
| 850 | if (readl(p) == 'E' + ('I'<<8) + ('S'<<16) + ('A'<<24)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | EISA_bus = 1; |
Ingo Molnar | 927222b | 2008-01-30 13:33:49 +0100 | [diff] [blame] | 852 | early_iounmap(p, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | #endif |
| 854 | |
Alexander van Heukelum | 976382d | 2008-09-09 21:55:57 +0200 | [diff] [blame] | 855 | set_intr_gate(0, ÷_error); |
Alexander van Heukelum | 699d293 | 2008-10-03 22:00:32 +0200 | [diff] [blame] | 856 | set_intr_gate_ist(1, &debug, DEBUG_STACK); |
| 857 | set_intr_gate_ist(2, &nmi, NMI_STACK); |
| 858 | /* int3 can be called from all */ |
| 859 | set_system_intr_gate_ist(3, &int3, DEBUG_STACK); |
| 860 | /* int4 can be called from all */ |
| 861 | set_system_intr_gate(4, &overflow); |
Alexander van Heukelum | 64f644c | 2008-09-09 21:56:00 +0200 | [diff] [blame] | 862 | set_intr_gate(5, &bounds); |
Alexander van Heukelum | 12394cf | 2008-09-09 21:56:01 +0200 | [diff] [blame] | 863 | set_intr_gate(6, &invalid_op); |
Alexander van Heukelum | 7643e9b | 2008-09-09 21:56:02 +0200 | [diff] [blame] | 864 | set_intr_gate(7, &device_not_available); |
Alexander van Heukelum | a8c1be9 | 2008-07-02 01:29:44 +0200 | [diff] [blame] | 865 | set_task_gate(8, GDT_ENTRY_DOUBLEFAULT_TSS); |
Alexander van Heukelum | 51bc1ed | 2008-09-09 21:56:03 +0200 | [diff] [blame] | 866 | set_intr_gate(9, &coprocessor_segment_overrun); |
Alexander van Heukelum | 6bf77bf | 2008-09-09 21:56:04 +0200 | [diff] [blame] | 867 | set_intr_gate(10, &invalid_TSS); |
Alexander van Heukelum | 36d936c | 2008-09-09 21:56:05 +0200 | [diff] [blame] | 868 | set_intr_gate(11, &segment_not_present); |
Alexander van Heukelum | 699d293 | 2008-10-03 22:00:32 +0200 | [diff] [blame] | 869 | set_intr_gate_ist(12, &stack_segment, STACKFAULT_STACK); |
Alexander van Heukelum | c6df0d7 | 2008-09-09 21:56:07 +0200 | [diff] [blame] | 870 | set_intr_gate(13, &general_protection); |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 871 | set_intr_gate(14, &page_fault); |
Alexander van Heukelum | cf81978 | 2008-09-09 21:56:08 +0200 | [diff] [blame] | 872 | set_intr_gate(15, &spurious_interrupt_bug); |
Alexander van Heukelum | 252d28f | 2008-09-09 21:56:09 +0200 | [diff] [blame] | 873 | set_intr_gate(16, &coprocessor_error); |
Alexander van Heukelum | 5feedfd | 2008-09-09 21:56:10 +0200 | [diff] [blame] | 874 | set_intr_gate(17, &alignment_check); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | #ifdef CONFIG_X86_MCE |
Alexander van Heukelum | 699d293 | 2008-10-03 22:00:32 +0200 | [diff] [blame] | 876 | set_intr_gate_ist(18, &machine_check, MCE_STACK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | #endif |
Alexander van Heukelum | b939bde | 2008-09-09 21:56:12 +0200 | [diff] [blame] | 878 | set_intr_gate(19, &simd_coprocessor_error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | |
Jan Beulich | d43c6e8 | 2006-01-06 00:11:49 -0800 | [diff] [blame] | 880 | if (cpu_has_fxsr) { |
Jan Beulich | d43c6e8 | 2006-01-06 00:11:49 -0800 | [diff] [blame] | 881 | printk(KERN_INFO "Enabling fast FPU save and restore... "); |
| 882 | set_in_cr4(X86_CR4_OSFXSR); |
| 883 | printk("done.\n"); |
| 884 | } |
| 885 | if (cpu_has_xmm) { |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 886 | printk(KERN_INFO |
| 887 | "Enabling unmasked SIMD FPU exception support... "); |
Jan Beulich | d43c6e8 | 2006-01-06 00:11:49 -0800 | [diff] [blame] | 888 | set_in_cr4(X86_CR4_OSXMMEXCPT); |
| 889 | printk("done.\n"); |
| 890 | } |
| 891 | |
Alexander van Heukelum | 699d293 | 2008-10-03 22:00:32 +0200 | [diff] [blame] | 892 | set_system_trap_gate(SYSCALL_VECTOR, &system_call); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 894 | /* Reserve all the builtin and the syscall vector: */ |
Rusty Russell | dbeb2be | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 895 | for (i = 0; i < FIRST_EXTERNAL_VECTOR; i++) |
| 896 | set_bit(i, used_vectors); |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 897 | |
Rusty Russell | dbeb2be | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 898 | set_bit(SYSCALL_VECTOR, used_vectors); |
| 899 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | /* |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 901 | * Should be a barrier for any external CPU state: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | */ |
| 903 | cpu_init(); |
| 904 | |
| 905 | trap_init_hook(); |
| 906 | } |