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 | */ |
Joe Perches | c767a54 | 2012-05-21 19:50:07 -0700 | [diff] [blame] | 12 | |
| 13 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 14 | |
Frederic Weisbecker | 56dd947 | 2013-02-24 00:23:25 +0100 | [diff] [blame] | 15 | #include <linux/context_tracking.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/kallsyms.h> |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 18 | #include <linux/spinlock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/kprobes.h> |
Andrew Morton | 1e2af92 | 2006-09-27 01:51:15 -0700 | [diff] [blame] | 20 | #include <linux/uaccess.h> |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 21 | #include <linux/kdebug.h> |
Jason Wessel | f503b5a | 2010-05-20 21:04:25 -0500 | [diff] [blame] | 22 | #include <linux/kgdb.h> |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 23 | #include <linux/kernel.h> |
| 24 | #include <linux/module.h> |
| 25 | #include <linux/ptrace.h> |
Oleg Nesterov | b02ef20 | 2014-05-12 18:24:45 +0200 | [diff] [blame] | 26 | #include <linux/uprobes.h> |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 27 | #include <linux/string.h> |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 28 | #include <linux/delay.h> |
| 29 | #include <linux/errno.h> |
| 30 | #include <linux/kexec.h> |
| 31 | #include <linux/sched.h> |
| 32 | #include <linux/timer.h> |
| 33 | #include <linux/init.h> |
Jeremy Fitzhardinge | 91768d6 | 2006-12-08 02:36:21 -0800 | [diff] [blame] | 34 | #include <linux/bug.h> |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 35 | #include <linux/nmi.h> |
| 36 | #include <linux/mm.h> |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame] | 37 | #include <linux/smp.h> |
| 38 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | #ifdef CONFIG_EISA |
| 41 | #include <linux/ioport.h> |
| 42 | #include <linux/eisa.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 | |
Vegard Nossum | f856129 | 2008-04-04 00:53:23 +0200 | [diff] [blame] | 49 | #include <asm/kmemcheck.h> |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 50 | #include <asm/stacktrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #include <asm/processor.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #include <asm/debugreg.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 53 | #include <linux/atomic.h> |
Steven Rostedt | 08d636b | 2011-08-16 09:57:10 -0400 | [diff] [blame] | 54 | #include <asm/ftrace.h> |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame] | 55 | #include <asm/traps.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #include <asm/desc.h> |
| 57 | #include <asm/i387.h> |
Linus Torvalds | 1361b83 | 2012-02-21 13:19:22 -0800 | [diff] [blame] | 58 | #include <asm/fpu-internal.h> |
Hidetoshi Seto | 9e55e44 | 2009-06-15 17:22:15 +0900 | [diff] [blame] | 59 | #include <asm/mce.h> |
Kees Cook | 4eefbe7 | 2013-04-10 12:24:22 -0700 | [diff] [blame] | 60 | #include <asm/fixmap.h> |
Ingo Molnar | 1164dd0 | 2009-01-28 19:34:09 +0100 | [diff] [blame] | 61 | #include <asm/mach_traps.h> |
Jiri Kosina | 17f4157 | 2013-07-23 10:09:28 +0200 | [diff] [blame] | 62 | #include <asm/alternative.h> |
Dave Hansen | fe3d197 | 2014-11-14 07:18:29 -0800 | [diff] [blame] | 63 | #include <asm/mpx.h> |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame] | 64 | |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 65 | #ifdef CONFIG_X86_64 |
Thomas Gleixner | 428cf90 | 2009-08-20 10:35:46 +0200 | [diff] [blame] | 66 | #include <asm/x86_init.h> |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 67 | #include <asm/pgalloc.h> |
| 68 | #include <asm/proto.h> |
Kees Cook | 4df05f3 | 2013-07-16 11:34:41 -0700 | [diff] [blame] | 69 | |
| 70 | /* No need to be aligned, but done to keep all IDTs defined the same way. */ |
| 71 | gate_desc debug_idt_table[NR_VECTORS] __page_aligned_bss; |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 72 | #else |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame] | 73 | #include <asm/processor-flags.h> |
Ingo Molnar | 8e6dafd | 2009-02-23 00:34:39 +0100 | [diff] [blame] | 74 | #include <asm/setup.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | asmlinkage int system_call(void); |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 77 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Kees Cook | 4df05f3 | 2013-07-16 11:34:41 -0700 | [diff] [blame] | 79 | /* Must be page-aligned because the real IDT is used in a fixmap. */ |
| 80 | gate_desc idt_table[NR_VECTORS] __page_aligned_bss; |
| 81 | |
Yinghai Lu | b77b881 | 2008-12-19 15:23:44 -0800 | [diff] [blame] | 82 | DECLARE_BITMAP(used_vectors, NR_VECTORS); |
| 83 | EXPORT_SYMBOL_GPL(used_vectors); |
| 84 | |
Alexander van Heukelum | 762db43 | 2008-09-09 21:55:55 +0200 | [diff] [blame] | 85 | static inline void conditional_sti(struct pt_regs *regs) |
| 86 | { |
| 87 | if (regs->flags & X86_EFLAGS_IF) |
| 88 | local_irq_enable(); |
| 89 | } |
| 90 | |
Alexander van Heukelum | 3d2a71a | 2008-09-30 18:41:37 +0200 | [diff] [blame] | 91 | static inline void preempt_conditional_sti(struct pt_regs *regs) |
| 92 | { |
Peter Zijlstra | bdb4380 | 2013-09-10 12:15:23 +0200 | [diff] [blame] | 93 | preempt_count_inc(); |
Alexander van Heukelum | 3d2a71a | 2008-09-30 18:41:37 +0200 | [diff] [blame] | 94 | if (regs->flags & X86_EFLAGS_IF) |
| 95 | local_irq_enable(); |
| 96 | } |
| 97 | |
Thomas Gleixner | be71661 | 2009-01-13 23:36:34 +0100 | [diff] [blame] | 98 | static inline void conditional_cli(struct pt_regs *regs) |
| 99 | { |
| 100 | if (regs->flags & X86_EFLAGS_IF) |
| 101 | local_irq_disable(); |
| 102 | } |
| 103 | |
Alexander van Heukelum | 3d2a71a | 2008-09-30 18:41:37 +0200 | [diff] [blame] | 104 | static inline void preempt_conditional_cli(struct pt_regs *regs) |
| 105 | { |
| 106 | if (regs->flags & X86_EFLAGS_IF) |
| 107 | local_irq_disable(); |
Peter Zijlstra | bdb4380 | 2013-09-10 12:15:23 +0200 | [diff] [blame] | 108 | preempt_count_dec(); |
Alexander van Heukelum | 3d2a71a | 2008-09-30 18:41:37 +0200 | [diff] [blame] | 109 | } |
| 110 | |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 111 | static nokprobe_inline int |
Frederic Weisbecker | c416ddf | 2012-09-25 14:51:19 +0200 | [diff] [blame] | 112 | do_trap_no_signal(struct task_struct *tsk, int trapnr, char *str, |
| 113 | struct pt_regs *regs, long error_code) |
| 114 | { |
| 115 | #ifdef CONFIG_X86_32 |
| 116 | if (regs->flags & X86_VM_MASK) { |
| 117 | /* |
| 118 | * Traps 0, 1, 3, 4, and 5 should be forwarded to vm86. |
| 119 | * On nmi (interrupt 2), do_trap should not be called. |
| 120 | */ |
| 121 | if (trapnr < X86_TRAP_UD) { |
| 122 | if (!handle_vm86_trap((struct kernel_vm86_regs *) regs, |
| 123 | error_code, trapnr)) |
| 124 | return 0; |
| 125 | } |
| 126 | return -1; |
| 127 | } |
| 128 | #endif |
| 129 | if (!user_mode(regs)) { |
| 130 | if (!fixup_exception(regs)) { |
| 131 | tsk->thread.error_code = error_code; |
| 132 | tsk->thread.trap_nr = trapnr; |
| 133 | die(str, regs, error_code); |
| 134 | } |
| 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | return -1; |
| 139 | } |
| 140 | |
Oleg Nesterov | 1c326c4 | 2014-05-08 20:04:11 +0200 | [diff] [blame] | 141 | static siginfo_t *fill_trap_info(struct pt_regs *regs, int signr, int trapnr, |
| 142 | siginfo_t *info) |
Oleg Nesterov | 958d3d7 | 2014-05-07 17:59:39 +0200 | [diff] [blame] | 143 | { |
| 144 | unsigned long siaddr; |
| 145 | int sicode; |
| 146 | |
| 147 | switch (trapnr) { |
Oleg Nesterov | 1c326c4 | 2014-05-08 20:04:11 +0200 | [diff] [blame] | 148 | default: |
| 149 | return SEND_SIG_PRIV; |
| 150 | |
Oleg Nesterov | 958d3d7 | 2014-05-07 17:59:39 +0200 | [diff] [blame] | 151 | case X86_TRAP_DE: |
| 152 | sicode = FPE_INTDIV; |
Oleg Nesterov | b02ef20 | 2014-05-12 18:24:45 +0200 | [diff] [blame] | 153 | siaddr = uprobe_get_trap_addr(regs); |
Oleg Nesterov | 958d3d7 | 2014-05-07 17:59:39 +0200 | [diff] [blame] | 154 | break; |
| 155 | case X86_TRAP_UD: |
| 156 | sicode = ILL_ILLOPN; |
Oleg Nesterov | b02ef20 | 2014-05-12 18:24:45 +0200 | [diff] [blame] | 157 | siaddr = uprobe_get_trap_addr(regs); |
Oleg Nesterov | 958d3d7 | 2014-05-07 17:59:39 +0200 | [diff] [blame] | 158 | break; |
| 159 | case X86_TRAP_AC: |
| 160 | sicode = BUS_ADRALN; |
| 161 | siaddr = 0; |
| 162 | break; |
| 163 | } |
| 164 | |
| 165 | info->si_signo = signr; |
| 166 | info->si_errno = 0; |
| 167 | info->si_code = sicode; |
| 168 | info->si_addr = (void __user *)siaddr; |
Oleg Nesterov | 1c326c4 | 2014-05-08 20:04:11 +0200 | [diff] [blame] | 169 | return info; |
Oleg Nesterov | 958d3d7 | 2014-05-07 17:59:39 +0200 | [diff] [blame] | 170 | } |
| 171 | |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 172 | static void |
Alexander van Heukelum | 3c1326f | 2008-09-26 14:03:08 +0200 | [diff] [blame] | 173 | do_trap(int trapnr, int signr, char *str, struct pt_regs *regs, |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 174 | long error_code, siginfo_t *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | { |
Alexander Nyberg | 4f339ec | 2005-06-25 14:58:27 -0700 | [diff] [blame] | 176 | struct task_struct *tsk = current; |
Alexander Nyberg | 4f339ec | 2005-06-25 14:58:27 -0700 | [diff] [blame] | 177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Frederic Weisbecker | c416ddf | 2012-09-25 14:51:19 +0200 | [diff] [blame] | 179 | if (!do_trap_no_signal(tsk, trapnr, str, regs, error_code)) |
| 180 | return; |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 181 | /* |
Srikar Dronamraju | 51e7dc7 | 2012-03-12 14:55:55 +0530 | [diff] [blame] | 182 | * We want error_code and trap_nr set for userspace faults and |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 183 | * kernelspace faults which result in die(), but not |
| 184 | * kernelspace faults which are fixed up. die() gives the |
| 185 | * process no chance to handle the signal and notice the |
| 186 | * kernel fault information, so that won't result in polluting |
| 187 | * the information about previously queued, but not yet |
| 188 | * delivered, faults. See also do_general_protection below. |
| 189 | */ |
| 190 | tsk->thread.error_code = error_code; |
Srikar Dronamraju | 51e7dc7 | 2012-03-12 14:55:55 +0530 | [diff] [blame] | 191 | tsk->thread.trap_nr = trapnr; |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 192 | |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 193 | #ifdef CONFIG_X86_64 |
| 194 | if (show_unhandled_signals && unhandled_signal(tsk, signr) && |
| 195 | printk_ratelimit()) { |
Joe Perches | c767a54 | 2012-05-21 19:50:07 -0700 | [diff] [blame] | 196 | pr_info("%s[%d] trap %s ip:%lx sp:%lx error:%lx", |
| 197 | tsk->comm, tsk->pid, str, |
| 198 | regs->ip, regs->sp, error_code); |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 199 | print_vma_addr(" in ", regs->ip); |
Joe Perches | c767a54 | 2012-05-21 19:50:07 -0700 | [diff] [blame] | 200 | pr_cont("\n"); |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 201 | } |
| 202 | #endif |
| 203 | |
Oleg Nesterov | 38cad57 | 2014-05-07 16:47:09 +0200 | [diff] [blame] | 204 | force_sig_info(signr, info ?: SEND_SIG_PRIV, tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | } |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 206 | NOKPROBE_SYMBOL(do_trap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Oleg Nesterov | dff0796 | 2014-05-07 17:21:34 +0200 | [diff] [blame] | 208 | static void do_error_trap(struct pt_regs *regs, long error_code, char *str, |
Oleg Nesterov | 1c326c4 | 2014-05-08 20:04:11 +0200 | [diff] [blame] | 209 | unsigned long trapnr, int signr) |
Oleg Nesterov | dff0796 | 2014-05-07 17:21:34 +0200 | [diff] [blame] | 210 | { |
| 211 | enum ctx_state prev_state = exception_enter(); |
Oleg Nesterov | 1c326c4 | 2014-05-08 20:04:11 +0200 | [diff] [blame] | 212 | siginfo_t info; |
Oleg Nesterov | dff0796 | 2014-05-07 17:21:34 +0200 | [diff] [blame] | 213 | |
| 214 | if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) != |
| 215 | NOTIFY_STOP) { |
| 216 | conditional_sti(regs); |
Oleg Nesterov | 1c326c4 | 2014-05-08 20:04:11 +0200 | [diff] [blame] | 217 | do_trap(trapnr, signr, str, regs, error_code, |
| 218 | fill_trap_info(regs, signr, trapnr, &info)); |
Oleg Nesterov | dff0796 | 2014-05-07 17:21:34 +0200 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | exception_exit(prev_state); |
| 222 | } |
| 223 | |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 224 | #define DO_ERROR(trapnr, signr, str, name) \ |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 225 | dotraplinkage void do_##name(struct pt_regs *regs, long error_code) \ |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 226 | { \ |
Oleg Nesterov | 1c326c4 | 2014-05-08 20:04:11 +0200 | [diff] [blame] | 227 | do_error_trap(regs, error_code, str, trapnr, signr); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | } |
| 229 | |
Oleg Nesterov | 0eb1483 | 2014-05-08 20:12:24 +0200 | [diff] [blame] | 230 | DO_ERROR(X86_TRAP_DE, SIGFPE, "divide error", divide_error) |
| 231 | DO_ERROR(X86_TRAP_OF, SIGSEGV, "overflow", overflow) |
Oleg Nesterov | 0eb1483 | 2014-05-08 20:12:24 +0200 | [diff] [blame] | 232 | DO_ERROR(X86_TRAP_UD, SIGILL, "invalid opcode", invalid_op) |
| 233 | DO_ERROR(X86_TRAP_OLD_MF, SIGFPE, "coprocessor segment overrun",coprocessor_segment_overrun) |
| 234 | DO_ERROR(X86_TRAP_TS, SIGSEGV, "invalid TSS", invalid_TSS) |
| 235 | DO_ERROR(X86_TRAP_NP, SIGBUS, "segment not present", segment_not_present) |
Oleg Nesterov | 0eb1483 | 2014-05-08 20:12:24 +0200 | [diff] [blame] | 236 | DO_ERROR(X86_TRAP_SS, SIGBUS, "stack segment", stack_segment) |
Oleg Nesterov | 0eb1483 | 2014-05-08 20:12:24 +0200 | [diff] [blame] | 237 | DO_ERROR(X86_TRAP_AC, SIGBUS, "alignment check", alignment_check) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 239 | #ifdef CONFIG_X86_64 |
| 240 | /* Runs on IST stack */ |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 241 | dotraplinkage void do_double_fault(struct pt_regs *regs, long error_code) |
| 242 | { |
| 243 | static const char str[] = "double fault"; |
| 244 | struct task_struct *tsk = current; |
| 245 | |
Andy Lutomirski | af726f2 | 2014-11-22 18:00:31 -0800 | [diff] [blame] | 246 | #ifdef CONFIG_X86_ESPFIX64 |
| 247 | extern unsigned char native_irq_return_iret[]; |
| 248 | |
| 249 | /* |
| 250 | * If IRET takes a non-IST fault on the espfix64 stack, then we |
| 251 | * end up promoting it to a doublefault. In that case, modify |
| 252 | * the stack to make it look like we just entered the #GP |
| 253 | * handler from user space, similar to bad_iret. |
| 254 | */ |
| 255 | if (((long)regs->sp >> PGDIR_SHIFT) == ESPFIX_PGD_ENTRY && |
| 256 | regs->cs == __KERNEL_CS && |
| 257 | regs->ip == (unsigned long)native_irq_return_iret) |
| 258 | { |
| 259 | struct pt_regs *normal_regs = task_pt_regs(current); |
| 260 | |
| 261 | /* Fake a #GP(0) from userspace. */ |
| 262 | memmove(&normal_regs->ip, (void *)regs->sp, 5*8); |
| 263 | normal_regs->orig_ax = 0; /* Missing (lost) #GP error code */ |
| 264 | regs->ip = (unsigned long)general_protection; |
| 265 | regs->sp = (unsigned long)&normal_regs->orig_ax; |
| 266 | return; |
| 267 | } |
| 268 | #endif |
| 269 | |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 270 | exception_enter(); |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 271 | /* Return not checked because double check cannot be ignored */ |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 272 | notify_die(DIE_TRAP, str, regs, error_code, X86_TRAP_DF, SIGSEGV); |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 273 | |
| 274 | tsk->thread.error_code = error_code; |
Srikar Dronamraju | 51e7dc7 | 2012-03-12 14:55:55 +0530 | [diff] [blame] | 275 | tsk->thread.trap_nr = X86_TRAP_DF; |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 276 | |
Borislav Petkov | 4d067d8 | 2013-05-09 12:02:29 +0200 | [diff] [blame] | 277 | #ifdef CONFIG_DOUBLEFAULT |
| 278 | df_debug(regs, error_code); |
| 279 | #endif |
Ingo Molnar | bd8b96d | 2008-12-26 09:20:22 +0100 | [diff] [blame] | 280 | /* |
| 281 | * This is always a kernel trap and never fixable (and thus must |
| 282 | * never return). |
| 283 | */ |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 284 | for (;;) |
| 285 | die(str, regs, error_code); |
| 286 | } |
| 287 | #endif |
| 288 | |
Dave Hansen | fe3d197 | 2014-11-14 07:18:29 -0800 | [diff] [blame] | 289 | dotraplinkage void do_bounds(struct pt_regs *regs, long error_code) |
| 290 | { |
| 291 | struct task_struct *tsk = current; |
| 292 | struct xsave_struct *xsave_buf; |
| 293 | enum ctx_state prev_state; |
| 294 | struct bndcsr *bndcsr; |
| 295 | siginfo_t *info; |
| 296 | |
| 297 | prev_state = exception_enter(); |
| 298 | if (notify_die(DIE_TRAP, "bounds", regs, error_code, |
| 299 | X86_TRAP_BR, SIGSEGV) == NOTIFY_STOP) |
| 300 | goto exit; |
| 301 | conditional_sti(regs); |
| 302 | |
| 303 | if (!user_mode(regs)) |
| 304 | die("bounds", regs, error_code); |
| 305 | |
| 306 | if (!cpu_feature_enabled(X86_FEATURE_MPX)) { |
| 307 | /* The exception is not from Intel MPX */ |
| 308 | goto exit_trap; |
| 309 | } |
| 310 | |
| 311 | /* |
| 312 | * We need to look at BNDSTATUS to resolve this exception. |
| 313 | * It is not directly accessible, though, so we need to |
| 314 | * do an xsave and then pull it out of the xsave buffer. |
| 315 | */ |
| 316 | fpu_save_init(&tsk->thread.fpu); |
| 317 | xsave_buf = &(tsk->thread.fpu.state->xsave); |
| 318 | bndcsr = get_xsave_addr(xsave_buf, XSTATE_BNDCSR); |
| 319 | if (!bndcsr) |
| 320 | goto exit_trap; |
| 321 | |
| 322 | /* |
| 323 | * The error code field of the BNDSTATUS register communicates status |
| 324 | * information of a bound range exception #BR or operation involving |
| 325 | * bound directory. |
| 326 | */ |
| 327 | switch (bndcsr->bndstatus & MPX_BNDSTA_ERROR_CODE) { |
| 328 | case 2: /* Bound directory has invalid entry. */ |
| 329 | if (mpx_handle_bd_fault(xsave_buf)) |
| 330 | goto exit_trap; |
| 331 | break; /* Success, it was handled */ |
| 332 | case 1: /* Bound violation. */ |
| 333 | info = mpx_generate_siginfo(regs, xsave_buf); |
Dan Carpenter | e10abb2 | 2014-11-25 20:21:14 +0300 | [diff] [blame] | 334 | if (IS_ERR(info)) { |
Dave Hansen | fe3d197 | 2014-11-14 07:18:29 -0800 | [diff] [blame] | 335 | /* |
| 336 | * We failed to decode the MPX instruction. Act as if |
| 337 | * the exception was not caused by MPX. |
| 338 | */ |
| 339 | goto exit_trap; |
| 340 | } |
| 341 | /* |
| 342 | * Success, we decoded the instruction and retrieved |
| 343 | * an 'info' containing the address being accessed |
| 344 | * which caused the exception. This information |
| 345 | * allows and application to possibly handle the |
| 346 | * #BR exception itself. |
| 347 | */ |
| 348 | do_trap(X86_TRAP_BR, SIGSEGV, "bounds", regs, error_code, info); |
| 349 | kfree(info); |
| 350 | break; |
| 351 | case 0: /* No exception caused by Intel MPX operations. */ |
| 352 | goto exit_trap; |
| 353 | default: |
| 354 | die("bounds", regs, error_code); |
| 355 | } |
| 356 | |
| 357 | exit: |
| 358 | exception_exit(prev_state); |
| 359 | return; |
| 360 | exit_trap: |
| 361 | /* |
| 362 | * This path out is for all the cases where we could not |
| 363 | * handle the exception in some way (like allocating a |
| 364 | * table or telling userspace about it. We will also end |
| 365 | * up here if the kernel has MPX turned off at compile |
| 366 | * time.. |
| 367 | */ |
| 368 | do_trap(X86_TRAP_BR, SIGSEGV, "bounds", regs, error_code, NULL); |
| 369 | exception_exit(prev_state); |
| 370 | } |
| 371 | |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 372 | dotraplinkage void |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 373 | do_general_protection(struct pt_regs *regs, long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | { |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 375 | struct task_struct *tsk; |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 376 | enum ctx_state prev_state; |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 377 | |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 378 | prev_state = exception_enter(); |
Alexander van Heukelum | c6df0d7 | 2008-09-09 21:56:07 +0200 | [diff] [blame] | 379 | conditional_sti(regs); |
| 380 | |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 381 | #ifdef CONFIG_X86_32 |
Frederic Weisbecker | ef3f6288 | 2012-09-24 21:05:52 +0200 | [diff] [blame] | 382 | if (regs->flags & X86_VM_MASK) { |
| 383 | local_irq_enable(); |
| 384 | handle_vm86_fault((struct kernel_vm86_regs *) regs, error_code); |
Frederic Weisbecker | 6ba3c97 | 2012-07-11 20:26:35 +0200 | [diff] [blame] | 385 | goto exit; |
Frederic Weisbecker | ef3f6288 | 2012-09-24 21:05:52 +0200 | [diff] [blame] | 386 | } |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 387 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 389 | tsk = current; |
Frederic Weisbecker | ef3f6288 | 2012-09-24 21:05:52 +0200 | [diff] [blame] | 390 | if (!user_mode(regs)) { |
| 391 | if (fixup_exception(regs)) |
Frederic Weisbecker | 6ba3c97 | 2012-07-11 20:26:35 +0200 | [diff] [blame] | 392 | goto exit; |
Frederic Weisbecker | ef3f6288 | 2012-09-24 21:05:52 +0200 | [diff] [blame] | 393 | |
| 394 | tsk->thread.error_code = error_code; |
| 395 | tsk->thread.trap_nr = X86_TRAP_GP; |
Frederic Weisbecker | 6ba3c97 | 2012-07-11 20:26:35 +0200 | [diff] [blame] | 396 | if (notify_die(DIE_GPF, "general protection fault", regs, error_code, |
| 397 | X86_TRAP_GP, SIGSEGV) != NOTIFY_STOP) |
Frederic Weisbecker | ef3f6288 | 2012-09-24 21:05:52 +0200 | [diff] [blame] | 398 | die("general protection fault", regs, error_code); |
Frederic Weisbecker | 6ba3c97 | 2012-07-11 20:26:35 +0200 | [diff] [blame] | 399 | goto exit; |
Frederic Weisbecker | ef3f6288 | 2012-09-24 21:05:52 +0200 | [diff] [blame] | 400 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 402 | tsk->thread.error_code = error_code; |
Srikar Dronamraju | 51e7dc7 | 2012-03-12 14:55:55 +0530 | [diff] [blame] | 403 | tsk->thread.trap_nr = X86_TRAP_GP; |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 404 | |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 405 | if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) && |
| 406 | printk_ratelimit()) { |
Joe Perches | c767a54 | 2012-05-21 19:50:07 -0700 | [diff] [blame] | 407 | pr_info("%s[%d] general protection ip:%lx sp:%lx error:%lx", |
Alexander van Heukelum | 13485ab | 2008-07-02 01:32:04 +0200 | [diff] [blame] | 408 | tsk->comm, task_pid_nr(tsk), |
| 409 | regs->ip, regs->sp, error_code); |
Andi Kleen | 0325291 | 2008-01-30 13:33:18 +0100 | [diff] [blame] | 410 | print_vma_addr(" in ", regs->ip); |
Joe Perches | c767a54 | 2012-05-21 19:50:07 -0700 | [diff] [blame] | 411 | pr_cont("\n"); |
Andi Kleen | 0325291 | 2008-01-30 13:33:18 +0100 | [diff] [blame] | 412 | } |
Masoud Asgharifard Sharbiani | abd4f75 | 2007-07-22 11:12:28 +0200 | [diff] [blame] | 413 | |
Oleg Nesterov | 38cad57 | 2014-05-07 16:47:09 +0200 | [diff] [blame] | 414 | force_sig_info(SIGSEGV, SEND_SIG_PRIV, tsk); |
Frederic Weisbecker | 6ba3c97 | 2012-07-11 20:26:35 +0200 | [diff] [blame] | 415 | exit: |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 416 | exception_exit(prev_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | } |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 418 | NOKPROBE_SYMBOL(do_general_protection); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame] | 420 | /* May run on IST stack. */ |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 421 | dotraplinkage void notrace do_int3(struct pt_regs *regs, long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | { |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 423 | enum ctx_state prev_state; |
| 424 | |
Steven Rostedt | 08d636b | 2011-08-16 09:57:10 -0400 | [diff] [blame] | 425 | #ifdef CONFIG_DYNAMIC_FTRACE |
Steven Rostedt | a192cd0 | 2012-05-30 13:26:37 -0400 | [diff] [blame] | 426 | /* |
| 427 | * ftrace must be first, everything else may cause a recursive crash. |
| 428 | * See note by declaration of modifying_ftrace_code in ftrace.c |
| 429 | */ |
| 430 | if (unlikely(atomic_read(&modifying_ftrace_code)) && |
| 431 | ftrace_int3_handler(regs)) |
Steven Rostedt | 08d636b | 2011-08-16 09:57:10 -0400 | [diff] [blame] | 432 | return; |
| 433 | #endif |
Jiri Kosina | 17f4157 | 2013-07-23 10:09:28 +0200 | [diff] [blame] | 434 | if (poke_int3_handler(regs)) |
| 435 | return; |
| 436 | |
Masami Hiramatsu | 4cdf77a | 2014-06-14 06:47:12 +0000 | [diff] [blame] | 437 | prev_state = exception_enter(); |
Jason Wessel | f503b5a | 2010-05-20 21:04:25 -0500 | [diff] [blame] | 438 | #ifdef CONFIG_KGDB_LOW_LEVEL_TRAP |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 439 | if (kgdb_ll_trap(DIE_INT3, "int3", regs, error_code, X86_TRAP_BP, |
| 440 | SIGTRAP) == NOTIFY_STOP) |
Frederic Weisbecker | 6ba3c97 | 2012-07-11 20:26:35 +0200 | [diff] [blame] | 441 | goto exit; |
Jason Wessel | f503b5a | 2010-05-20 21:04:25 -0500 | [diff] [blame] | 442 | #endif /* CONFIG_KGDB_LOW_LEVEL_TRAP */ |
Srikar Dronamraju | cc3a1bf | 2011-10-25 19:51:59 +0530 | [diff] [blame] | 443 | |
Masami Hiramatsu | 6f6343f | 2014-04-17 17:17:33 +0900 | [diff] [blame] | 444 | #ifdef CONFIG_KPROBES |
| 445 | if (kprobe_int3_handler(regs)) |
Masami Hiramatsu | 4cdf77a | 2014-06-14 06:47:12 +0000 | [diff] [blame] | 446 | goto exit; |
Masami Hiramatsu | 6f6343f | 2014-04-17 17:17:33 +0900 | [diff] [blame] | 447 | #endif |
| 448 | |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 449 | if (notify_die(DIE_INT3, "int3", regs, error_code, X86_TRAP_BP, |
| 450 | SIGTRAP) == NOTIFY_STOP) |
Frederic Weisbecker | 6ba3c97 | 2012-07-11 20:26:35 +0200 | [diff] [blame] | 451 | goto exit; |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 452 | |
Steven Rostedt | 4218118 | 2011-12-16 11:43:02 -0500 | [diff] [blame] | 453 | /* |
| 454 | * Let others (NMI) know that the debug stack is in use |
| 455 | * as we may switch to the interrupt stack. |
| 456 | */ |
| 457 | debug_stack_usage_inc(); |
Alexander van Heukelum | 4915a35 | 2008-10-03 22:00:34 +0200 | [diff] [blame] | 458 | preempt_conditional_sti(regs); |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 459 | do_trap(X86_TRAP_BP, SIGTRAP, "int3", regs, error_code, NULL); |
Alexander van Heukelum | 4915a35 | 2008-10-03 22:00:34 +0200 | [diff] [blame] | 460 | preempt_conditional_cli(regs); |
Steven Rostedt | 4218118 | 2011-12-16 11:43:02 -0500 | [diff] [blame] | 461 | debug_stack_usage_dec(); |
Frederic Weisbecker | 6ba3c97 | 2012-07-11 20:26:35 +0200 | [diff] [blame] | 462 | exit: |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 463 | exception_exit(prev_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | } |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 465 | NOKPROBE_SYMBOL(do_int3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 467 | #ifdef CONFIG_X86_64 |
Ingo Molnar | bd8b96d | 2008-12-26 09:20:22 +0100 | [diff] [blame] | 468 | /* |
Andy Lutomirski | 48e08d0 | 2014-11-11 12:49:41 -0800 | [diff] [blame^] | 469 | * Help handler running on IST stack to switch off the IST stack if the |
| 470 | * interrupted code was in user mode. The actual stack switch is done in |
| 471 | * entry_64.S |
Ingo Molnar | bd8b96d | 2008-12-26 09:20:22 +0100 | [diff] [blame] | 472 | */ |
Andy Lutomirski | 7ddc6a2 | 2014-11-24 17:39:06 -0800 | [diff] [blame] | 473 | asmlinkage __visible notrace struct pt_regs *sync_regs(struct pt_regs *eregs) |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 474 | { |
Andy Lutomirski | 48e08d0 | 2014-11-11 12:49:41 -0800 | [diff] [blame^] | 475 | struct pt_regs *regs = task_pt_regs(current); |
| 476 | *regs = *eregs; |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 477 | return regs; |
| 478 | } |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 479 | NOKPROBE_SYMBOL(sync_regs); |
Andy Lutomirski | b645af2 | 2014-11-22 18:00:33 -0800 | [diff] [blame] | 480 | |
| 481 | struct bad_iret_stack { |
| 482 | void *error_entry_ret; |
| 483 | struct pt_regs regs; |
| 484 | }; |
| 485 | |
Andy Lutomirski | 7ddc6a2 | 2014-11-24 17:39:06 -0800 | [diff] [blame] | 486 | asmlinkage __visible notrace |
Andy Lutomirski | b645af2 | 2014-11-22 18:00:33 -0800 | [diff] [blame] | 487 | struct bad_iret_stack *fixup_bad_iret(struct bad_iret_stack *s) |
| 488 | { |
| 489 | /* |
| 490 | * This is called from entry_64.S early in handling a fault |
| 491 | * caused by a bad iret to user mode. To handle the fault |
| 492 | * correctly, we want move our stack frame to task_pt_regs |
| 493 | * and we want to pretend that the exception came from the |
| 494 | * iret target. |
| 495 | */ |
| 496 | struct bad_iret_stack *new_stack = |
| 497 | container_of(task_pt_regs(current), |
| 498 | struct bad_iret_stack, regs); |
| 499 | |
| 500 | /* Copy the IRET target to the new stack. */ |
| 501 | memmove(&new_stack->regs.ip, (void *)s->regs.sp, 5*8); |
| 502 | |
| 503 | /* Copy the remainder of the stack from the current stack. */ |
| 504 | memmove(new_stack, s, offsetof(struct bad_iret_stack, regs.ip)); |
| 505 | |
| 506 | BUG_ON(!user_mode_vm(&new_stack->regs)); |
| 507 | return new_stack; |
| 508 | } |
Andy Lutomirski | 7ddc6a2 | 2014-11-24 17:39:06 -0800 | [diff] [blame] | 509 | NOKPROBE_SYMBOL(fixup_bad_iret); |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 510 | #endif |
| 511 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | /* |
| 513 | * Our handling of the processor debug registers is non-trivial. |
| 514 | * We do not clear them on entry and exit from the kernel. Therefore |
| 515 | * it is possible to get a watchpoint trap here from inside the kernel. |
| 516 | * However, the code in ./ptrace.c has ensured that the user can |
| 517 | * only set watchpoints on userspace addresses. Therefore the in-kernel |
| 518 | * watchpoint trap can only occur in code which is reading/writing |
| 519 | * from user space. Such code must not hold kernel locks (since it |
| 520 | * can equally take a page fault), therefore it is safe to call |
| 521 | * force_sig_info even though that claims and releases locks. |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 522 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | * Code in ./signal.c ensures that the debug control register |
| 524 | * is restored before we deliver any signal, and therefore that |
| 525 | * user code runs with the correct debug control register even though |
| 526 | * we clear it here. |
| 527 | * |
| 528 | * Being careful here means that we don't have to be as careful in a |
| 529 | * lot of more complicated places (task switching can be a bit lazy |
| 530 | * about restoring all the debug state, and ptrace doesn't have to |
| 531 | * find every occurrence of the TF bit that could be saved away even |
| 532 | * by user code) |
Alexander van Heukelum | c1d518c | 2008-10-03 23:17:11 +0200 | [diff] [blame] | 533 | * |
| 534 | * May run on IST stack. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | */ |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 536 | dotraplinkage void do_debug(struct pt_regs *regs, long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | struct task_struct *tsk = current; |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 539 | enum ctx_state prev_state; |
Frederic Weisbecker | a1e80fa | 2010-06-30 15:09:06 +0200 | [diff] [blame] | 540 | int user_icebp = 0; |
K.Prasad | 08d6832 | 2009-06-01 23:44:08 +0530 | [diff] [blame] | 541 | unsigned long dr6; |
Srinivasa Ds | da654b7 | 2008-09-23 15:23:52 +0530 | [diff] [blame] | 542 | int si_code; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
Masami Hiramatsu | 4cdf77a | 2014-06-14 06:47:12 +0000 | [diff] [blame] | 544 | prev_state = exception_enter(); |
| 545 | |
K.Prasad | 08d6832 | 2009-06-01 23:44:08 +0530 | [diff] [blame] | 546 | get_debugreg(dr6, 6); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | |
K.Prasad | 40f9249 | 2010-01-28 16:44:01 +0530 | [diff] [blame] | 548 | /* Filter out all the reserved bits which are preset to 1 */ |
| 549 | dr6 &= ~DR6_RESERVED; |
| 550 | |
Frederic Weisbecker | a1e80fa | 2010-06-30 15:09:06 +0200 | [diff] [blame] | 551 | /* |
| 552 | * If dr6 has no reason to give us about the origin of this trap, |
| 553 | * then it's very likely the result of an icebp/int01 trap. |
| 554 | * User wants a sigtrap for that. |
| 555 | */ |
| 556 | if (!dr6 && user_mode(regs)) |
| 557 | user_icebp = 1; |
| 558 | |
Vegard Nossum | f856129 | 2008-04-04 00:53:23 +0200 | [diff] [blame] | 559 | /* Catch kmemcheck conditions first of all! */ |
Ingo Molnar | eadb8a0 | 2009-06-17 12:52:15 +0200 | [diff] [blame] | 560 | if ((dr6 & DR_STEP) && kmemcheck_trap(regs)) |
Frederic Weisbecker | 6ba3c97 | 2012-07-11 20:26:35 +0200 | [diff] [blame] | 561 | goto exit; |
Vegard Nossum | f856129 | 2008-04-04 00:53:23 +0200 | [diff] [blame] | 562 | |
K.Prasad | 08d6832 | 2009-06-01 23:44:08 +0530 | [diff] [blame] | 563 | /* DR6 may or may not be cleared by the CPU */ |
| 564 | set_debugreg(0, 6); |
Roland McGrath | 10faa81 | 2008-01-30 13:30:54 +0100 | [diff] [blame] | 565 | |
Peter Zijlstra | ea8e61b | 2010-03-25 14:51:51 +0100 | [diff] [blame] | 566 | /* |
| 567 | * The processor cleared BTF, so don't mark that we need it set. |
| 568 | */ |
| 569 | clear_tsk_thread_flag(tsk, TIF_BLOCKSTEP); |
| 570 | |
K.Prasad | 08d6832 | 2009-06-01 23:44:08 +0530 | [diff] [blame] | 571 | /* Store the virtualized DR6 value */ |
| 572 | tsk->thread.debugreg6 = dr6; |
| 573 | |
Masami Hiramatsu | 6f6343f | 2014-04-17 17:17:33 +0900 | [diff] [blame] | 574 | #ifdef CONFIG_KPROBES |
| 575 | if (kprobe_debug_handler(regs)) |
| 576 | goto exit; |
| 577 | #endif |
| 578 | |
Rusty Russell | 5a802e1 | 2013-06-16 14:12:47 +0930 | [diff] [blame] | 579 | if (notify_die(DIE_DEBUG, "debug", regs, (long)&dr6, error_code, |
K.Prasad | 62edab9 | 2009-06-01 23:47:06 +0530 | [diff] [blame] | 580 | SIGTRAP) == NOTIFY_STOP) |
Frederic Weisbecker | 6ba3c97 | 2012-07-11 20:26:35 +0200 | [diff] [blame] | 581 | goto exit; |
Alexander van Heukelum | 3d2a71a | 2008-09-30 18:41:37 +0200 | [diff] [blame] | 582 | |
Steven Rostedt | 4218118 | 2011-12-16 11:43:02 -0500 | [diff] [blame] | 583 | /* |
| 584 | * Let others (NMI) know that the debug stack is in use |
| 585 | * as we may switch to the interrupt stack. |
| 586 | */ |
| 587 | debug_stack_usage_inc(); |
| 588 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | /* 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] | 590 | preempt_conditional_sti(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | |
K.Prasad | 08d6832 | 2009-06-01 23:44:08 +0530 | [diff] [blame] | 592 | if (regs->flags & X86_VM_MASK) { |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 593 | handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, |
| 594 | X86_TRAP_DB); |
Bart Oldeman | 6554287 | 2010-09-23 13:16:58 -0400 | [diff] [blame] | 595 | preempt_conditional_cli(regs); |
Steven Rostedt | 4218118 | 2011-12-16 11:43:02 -0500 | [diff] [blame] | 596 | debug_stack_usage_dec(); |
Frederic Weisbecker | 6ba3c97 | 2012-07-11 20:26:35 +0200 | [diff] [blame] | 597 | goto exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | } |
| 599 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | /* |
K.Prasad | 08d6832 | 2009-06-01 23:44:08 +0530 | [diff] [blame] | 601 | * Single-stepping through system calls: ignore any exceptions in |
| 602 | * kernel space, but re-enable TF when returning to user mode. |
| 603 | * |
| 604 | * We already checked v86 mode above, so we can check for kernel mode |
| 605 | * by just checking the CPL of CS. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | */ |
K.Prasad | 08d6832 | 2009-06-01 23:44:08 +0530 | [diff] [blame] | 607 | if ((dr6 & DR_STEP) && !user_mode(regs)) { |
| 608 | tsk->thread.debugreg6 &= ~DR_STEP; |
| 609 | set_tsk_thread_flag(tsk, TIF_SINGLESTEP); |
| 610 | regs->flags &= ~X86_EFLAGS_TF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | } |
K.Prasad | 08d6832 | 2009-06-01 23:44:08 +0530 | [diff] [blame] | 612 | si_code = get_si_code(tsk->thread.debugreg6); |
Frederic Weisbecker | a1e80fa | 2010-06-30 15:09:06 +0200 | [diff] [blame] | 613 | if (tsk->thread.debugreg6 & (DR_STEP | DR_TRAP_BITS) || user_icebp) |
K.Prasad | 08d6832 | 2009-06-01 23:44:08 +0530 | [diff] [blame] | 614 | send_sigtrap(tsk, regs, error_code, si_code); |
Alexander van Heukelum | 3d2a71a | 2008-09-30 18:41:37 +0200 | [diff] [blame] | 615 | preempt_conditional_cli(regs); |
Steven Rostedt | 4218118 | 2011-12-16 11:43:02 -0500 | [diff] [blame] | 616 | debug_stack_usage_dec(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | |
Frederic Weisbecker | 6ba3c97 | 2012-07-11 20:26:35 +0200 | [diff] [blame] | 618 | exit: |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 619 | exception_exit(prev_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | } |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 621 | NOKPROBE_SYMBOL(do_debug); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
| 623 | /* |
| 624 | * Note that we play around with the 'TS' bit in an attempt to get |
| 625 | * the correct behaviour even in the presence of the asynchronous |
| 626 | * IRQ13 behaviour |
| 627 | */ |
Oleg Nesterov | 5e1b05b | 2014-05-08 20:34:00 +0200 | [diff] [blame] | 628 | static void math_error(struct pt_regs *regs, int error_code, int trapnr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | { |
Brian Gerst | e2e75c91 | 2010-03-21 09:00:45 -0400 | [diff] [blame] | 630 | struct task_struct *task = current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | siginfo_t info; |
Brian Gerst | 9b6dba9 | 2010-03-21 09:00:44 -0400 | [diff] [blame] | 632 | unsigned short err; |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 633 | char *str = (trapnr == X86_TRAP_MF) ? "fpu exception" : |
| 634 | "simd exception"; |
Brian Gerst | e2e75c91 | 2010-03-21 09:00:45 -0400 | [diff] [blame] | 635 | |
| 636 | if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, SIGFPE) == NOTIFY_STOP) |
| 637 | return; |
| 638 | conditional_sti(regs); |
| 639 | |
| 640 | if (!user_mode_vm(regs)) |
| 641 | { |
| 642 | if (!fixup_exception(regs)) { |
| 643 | task->thread.error_code = error_code; |
Srikar Dronamraju | 51e7dc7 | 2012-03-12 14:55:55 +0530 | [diff] [blame] | 644 | task->thread.trap_nr = trapnr; |
Brian Gerst | e2e75c91 | 2010-03-21 09:00:45 -0400 | [diff] [blame] | 645 | die(str, regs, error_code); |
| 646 | } |
| 647 | return; |
| 648 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | |
| 650 | /* |
| 651 | * Save the info for the exception handler and clear the error. |
| 652 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | save_init_fpu(task); |
Srikar Dronamraju | 51e7dc7 | 2012-03-12 14:55:55 +0530 | [diff] [blame] | 654 | task->thread.trap_nr = trapnr; |
Brian Gerst | 9b6dba9 | 2010-03-21 09:00:44 -0400 | [diff] [blame] | 655 | task->thread.error_code = error_code; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | info.si_signo = SIGFPE; |
| 657 | info.si_errno = 0; |
Oleg Nesterov | b02ef20 | 2014-05-12 18:24:45 +0200 | [diff] [blame] | 658 | info.si_addr = (void __user *)uprobe_get_trap_addr(regs); |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 659 | if (trapnr == X86_TRAP_MF) { |
Brian Gerst | 9b6dba9 | 2010-03-21 09:00:44 -0400 | [diff] [blame] | 660 | unsigned short cwd, swd; |
| 661 | /* |
| 662 | * (~cwd & swd) will mask out exceptions that are not set to unmasked |
| 663 | * status. 0x3f is the exception bits in these regs, 0x200 is the |
| 664 | * C1 reg you need in case of a stack fault, 0x040 is the stack |
| 665 | * fault bit. We should only be taking one exception at a time, |
| 666 | * so if this combination doesn't produce any single exception, |
| 667 | * then we have a bad program that isn't synchronizing its FPU usage |
| 668 | * and it will suffer the consequences since we won't be able to |
| 669 | * fully reproduce the context of the exception |
| 670 | */ |
| 671 | cwd = get_fpu_cwd(task); |
| 672 | swd = get_fpu_swd(task); |
H. Peter Anvin | adf77ba | 2008-12-22 17:56:05 -0800 | [diff] [blame] | 673 | |
Brian Gerst | 9b6dba9 | 2010-03-21 09:00:44 -0400 | [diff] [blame] | 674 | err = swd & ~cwd; |
| 675 | } else { |
| 676 | /* |
| 677 | * The SIMD FPU exceptions are handled a little differently, as there |
| 678 | * is only a single status/control register. Thus, to determine which |
| 679 | * unmasked exception was caught we must mask the exception mask bits |
| 680 | * at 0x1f80, and then use these to mask the exception bits at 0x3f. |
| 681 | */ |
| 682 | unsigned short mxcsr = get_fpu_mxcsr(task); |
| 683 | err = ~(mxcsr >> 7) & mxcsr; |
| 684 | } |
H. Peter Anvin | adf77ba | 2008-12-22 17:56:05 -0800 | [diff] [blame] | 685 | |
| 686 | if (err & 0x001) { /* Invalid op */ |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 687 | /* |
| 688 | * swd & 0x240 == 0x040: Stack Underflow |
| 689 | * swd & 0x240 == 0x240: Stack Overflow |
| 690 | * User must clear the SF bit (0x40) if set |
| 691 | */ |
| 692 | info.si_code = FPE_FLTINV; |
H. Peter Anvin | adf77ba | 2008-12-22 17:56:05 -0800 | [diff] [blame] | 693 | } else if (err & 0x004) { /* Divide by Zero */ |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 694 | info.si_code = FPE_FLTDIV; |
H. Peter Anvin | adf77ba | 2008-12-22 17:56:05 -0800 | [diff] [blame] | 695 | } else if (err & 0x008) { /* Overflow */ |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 696 | info.si_code = FPE_FLTOVF; |
H. Peter Anvin | adf77ba | 2008-12-22 17:56:05 -0800 | [diff] [blame] | 697 | } else if (err & 0x012) { /* Denormal, Underflow */ |
| 698 | info.si_code = FPE_FLTUND; |
| 699 | } else if (err & 0x020) { /* Precision */ |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 700 | info.si_code = FPE_FLTRES; |
H. Peter Anvin | adf77ba | 2008-12-22 17:56:05 -0800 | [diff] [blame] | 701 | } else { |
Ingo Molnar | bd8b96d | 2008-12-26 09:20:22 +0100 | [diff] [blame] | 702 | /* |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 703 | * If we're using IRQ 13, or supposedly even some trap |
| 704 | * X86_TRAP_MF implementations, it's possible |
| 705 | * we get a spurious trap, which is not an error. |
Ingo Molnar | bd8b96d | 2008-12-26 09:20:22 +0100 | [diff] [blame] | 706 | */ |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 707 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | } |
| 709 | force_sig_info(SIGFPE, &info, task); |
| 710 | } |
| 711 | |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 712 | dotraplinkage void do_coprocessor_error(struct pt_regs *regs, long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | { |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 714 | enum ctx_state prev_state; |
| 715 | |
| 716 | prev_state = exception_enter(); |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 717 | math_error(regs, error_code, X86_TRAP_MF); |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 718 | exception_exit(prev_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | } |
| 720 | |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 721 | dotraplinkage void |
| 722 | do_simd_coprocessor_error(struct pt_regs *regs, long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | { |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 724 | enum ctx_state prev_state; |
| 725 | |
| 726 | prev_state = exception_enter(); |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 727 | math_error(regs, error_code, X86_TRAP_XF); |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 728 | exception_exit(prev_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | } |
| 730 | |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 731 | dotraplinkage void |
| 732 | do_spurious_interrupt_bug(struct pt_regs *regs, long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | { |
Alexander van Heukelum | cf81978 | 2008-09-09 21:56:08 +0200 | [diff] [blame] | 734 | conditional_sti(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | #if 0 |
| 736 | /* No need to warn about this any longer. */ |
Joe Perches | c767a54 | 2012-05-21 19:50:07 -0700 | [diff] [blame] | 737 | pr_info("Ignoring P6 Local APIC Spurious Interrupt Bug...\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | #endif |
| 739 | } |
| 740 | |
Andi Kleen | 2605fc2 | 2014-05-02 00:44:37 +0200 | [diff] [blame] | 741 | asmlinkage __visible void __attribute__((weak)) smp_thermal_interrupt(void) |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 742 | { |
| 743 | } |
| 744 | |
Andi Kleen | 2605fc2 | 2014-05-02 00:44:37 +0200 | [diff] [blame] | 745 | asmlinkage __visible void __attribute__((weak)) smp_threshold_interrupt(void) |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 746 | { |
| 747 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | |
| 749 | /* |
Linus Torvalds | 34ddc81 | 2012-02-18 12:56:35 -0800 | [diff] [blame] | 750 | * 'math_state_restore()' saves the current math information in the |
| 751 | * old math state array, and gets the new ones from the current task |
| 752 | * |
| 753 | * Careful.. There are problems with IBM-designed IRQ13 behaviour. |
| 754 | * Don't touch unless you *really* know how it works. |
| 755 | * |
| 756 | * Must be called with kernel preemption disabled (eg with local |
| 757 | * local interrupts as in the case of do_device_not_available). |
| 758 | */ |
| 759 | void math_state_restore(void) |
| 760 | { |
| 761 | struct task_struct *tsk = current; |
| 762 | |
| 763 | if (!tsk_used_math(tsk)) { |
| 764 | local_irq_enable(); |
| 765 | /* |
| 766 | * does a slab alloc which can sleep |
| 767 | */ |
| 768 | if (init_fpu(tsk)) { |
| 769 | /* |
| 770 | * ran out of memory! |
| 771 | */ |
| 772 | do_group_exit(SIGKILL); |
| 773 | return; |
| 774 | } |
| 775 | local_irq_disable(); |
| 776 | } |
| 777 | |
| 778 | __thread_fpu_begin(tsk); |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 779 | |
Linus Torvalds | 80ab6f1 | 2012-02-19 11:48:44 -0800 | [diff] [blame] | 780 | /* |
| 781 | * Paranoid restore. send a SIGSEGV if we fail to restore the state. |
| 782 | */ |
| 783 | if (unlikely(restore_fpu_checking(tsk))) { |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 784 | drop_init_fpu(tsk); |
Oleg Nesterov | 38cad57 | 2014-05-07 16:47:09 +0200 | [diff] [blame] | 785 | force_sig_info(SIGSEGV, SEND_SIG_PRIV, tsk); |
Linus Torvalds | 80ab6f1 | 2012-02-19 11:48:44 -0800 | [diff] [blame] | 786 | return; |
| 787 | } |
Linus Torvalds | b3b0870 | 2012-02-16 15:45:23 -0800 | [diff] [blame] | 788 | |
Vineet Gupta | c375f15 | 2013-11-12 15:08:46 -0800 | [diff] [blame] | 789 | tsk->thread.fpu_counter++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | } |
Rusty Russell | 5992b6d | 2007-07-19 01:49:21 -0700 | [diff] [blame] | 791 | EXPORT_SYMBOL_GPL(math_state_restore); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 793 | dotraplinkage void |
Brian Gerst | aa78bcf | 2009-02-10 09:51:45 -0500 | [diff] [blame] | 794 | do_device_not_available(struct pt_regs *regs, long error_code) |
Alexander van Heukelum | 7643e9b | 2008-09-09 21:56:02 +0200 | [diff] [blame] | 795 | { |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 796 | enum ctx_state prev_state; |
| 797 | |
| 798 | prev_state = exception_enter(); |
Suresh Siddha | 5d2bd70 | 2012-09-06 14:58:52 -0700 | [diff] [blame] | 799 | BUG_ON(use_eager_fpu()); |
Suresh Siddha | 304bced | 2012-08-24 14:13:02 -0700 | [diff] [blame] | 800 | |
Brian Gerst | a334fe4 | 2010-09-03 21:17:15 -0400 | [diff] [blame] | 801 | #ifdef CONFIG_MATH_EMULATION |
Alexander van Heukelum | 7643e9b | 2008-09-09 21:56:02 +0200 | [diff] [blame] | 802 | if (read_cr0() & X86_CR0_EM) { |
Tejun Heo | d315760 | 2009-02-09 22:17:39 +0900 | [diff] [blame] | 803 | struct math_emu_info info = { }; |
| 804 | |
Alexander van Heukelum | 7643e9b | 2008-09-09 21:56:02 +0200 | [diff] [blame] | 805 | conditional_sti(regs); |
Tejun Heo | d315760 | 2009-02-09 22:17:39 +0900 | [diff] [blame] | 806 | |
Brian Gerst | aa78bcf | 2009-02-10 09:51:45 -0500 | [diff] [blame] | 807 | info.regs = regs; |
Tejun Heo | d315760 | 2009-02-09 22:17:39 +0900 | [diff] [blame] | 808 | math_emulate(&info); |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 809 | exception_exit(prev_state); |
Brian Gerst | a334fe4 | 2010-09-03 21:17:15 -0400 | [diff] [blame] | 810 | return; |
Alexander van Heukelum | 7643e9b | 2008-09-09 21:56:02 +0200 | [diff] [blame] | 811 | } |
Brian Gerst | a334fe4 | 2010-09-03 21:17:15 -0400 | [diff] [blame] | 812 | #endif |
| 813 | math_state_restore(); /* interrupts still off */ |
| 814 | #ifdef CONFIG_X86_32 |
| 815 | conditional_sti(regs); |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 816 | #endif |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 817 | exception_exit(prev_state); |
Alexander van Heukelum | 7643e9b | 2008-09-09 21:56:02 +0200 | [diff] [blame] | 818 | } |
Masami Hiramatsu | 9326638 | 2014-04-17 17:18:14 +0900 | [diff] [blame] | 819 | NOKPROBE_SYMBOL(do_device_not_available); |
Alexander van Heukelum | 7643e9b | 2008-09-09 21:56:02 +0200 | [diff] [blame] | 820 | |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 821 | #ifdef CONFIG_X86_32 |
Alexander van Heukelum | e407d620 | 2008-09-30 18:41:36 +0200 | [diff] [blame] | 822 | 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] | 823 | { |
| 824 | siginfo_t info; |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 825 | enum ctx_state prev_state; |
Frederic Weisbecker | 6ba3c97 | 2012-07-11 20:26:35 +0200 | [diff] [blame] | 826 | |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 827 | prev_state = exception_enter(); |
Alexander van Heukelum | f8e0870 | 2008-09-09 21:56:13 +0200 | [diff] [blame] | 828 | local_irq_enable(); |
| 829 | |
| 830 | info.si_signo = SIGILL; |
| 831 | info.si_errno = 0; |
| 832 | info.si_code = ILL_BADSTK; |
Hannes Eder | fc6fcdf | 2009-02-22 01:00:57 +0100 | [diff] [blame] | 833 | info.si_addr = NULL; |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 834 | if (notify_die(DIE_TRAP, "iret exception", regs, error_code, |
Frederic Weisbecker | 6ba3c97 | 2012-07-11 20:26:35 +0200 | [diff] [blame] | 835 | X86_TRAP_IRET, SIGILL) != NOTIFY_STOP) { |
| 836 | do_trap(X86_TRAP_IRET, SIGILL, "iret exception", regs, error_code, |
| 837 | &info); |
| 838 | } |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 839 | exception_exit(prev_state); |
Alexander van Heukelum | f8e0870 | 2008-09-09 21:56:13 +0200 | [diff] [blame] | 840 | } |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 841 | #endif |
Alexander van Heukelum | f8e0870 | 2008-09-09 21:56:13 +0200 | [diff] [blame] | 842 | |
Jan Kiszka | 29c8439 | 2010-05-20 21:04:29 -0500 | [diff] [blame] | 843 | /* Set of traps needed for early debugging. */ |
| 844 | void __init early_trap_init(void) |
| 845 | { |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 846 | set_intr_gate_ist(X86_TRAP_DB, &debug, DEBUG_STACK); |
Jan Kiszka | 29c8439 | 2010-05-20 21:04:29 -0500 | [diff] [blame] | 847 | /* int3 can be called from all */ |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 848 | set_system_intr_gate_ist(X86_TRAP_BP, &int3, DEBUG_STACK); |
H. Peter Anvin | 8170e6b | 2013-01-24 12:19:52 -0800 | [diff] [blame] | 849 | #ifdef CONFIG_X86_32 |
Seiji Aguchi | 25c74b1 | 2013-10-30 16:37:00 -0400 | [diff] [blame] | 850 | set_intr_gate(X86_TRAP_PF, page_fault); |
H. Peter Anvin | 8170e6b | 2013-01-24 12:19:52 -0800 | [diff] [blame] | 851 | #endif |
Jan Kiszka | 29c8439 | 2010-05-20 21:04:29 -0500 | [diff] [blame] | 852 | load_idt(&idt_descr); |
| 853 | } |
| 854 | |
H. Peter Anvin | 8170e6b | 2013-01-24 12:19:52 -0800 | [diff] [blame] | 855 | void __init early_trap_pf_init(void) |
| 856 | { |
| 857 | #ifdef CONFIG_X86_64 |
Seiji Aguchi | 25c74b1 | 2013-10-30 16:37:00 -0400 | [diff] [blame] | 858 | set_intr_gate(X86_TRAP_PF, page_fault); |
H. Peter Anvin | 8170e6b | 2013-01-24 12:19:52 -0800 | [diff] [blame] | 859 | #endif |
| 860 | } |
| 861 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | void __init trap_init(void) |
| 863 | { |
Rusty Russell | dbeb2be | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 864 | int i; |
| 865 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | #ifdef CONFIG_EISA |
Ingo Molnar | 927222b | 2008-01-30 13:33:49 +0100 | [diff] [blame] | 867 | void __iomem *p = early_ioremap(0x0FFFD9, 4); |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 868 | |
| 869 | if (readl(p) == 'E' + ('I'<<8) + ('S'<<16) + ('A'<<24)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | EISA_bus = 1; |
Ingo Molnar | 927222b | 2008-01-30 13:33:49 +0100 | [diff] [blame] | 871 | early_iounmap(p, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | #endif |
| 873 | |
Seiji Aguchi | 25c74b1 | 2013-10-30 16:37:00 -0400 | [diff] [blame] | 874 | set_intr_gate(X86_TRAP_DE, divide_error); |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 875 | set_intr_gate_ist(X86_TRAP_NMI, &nmi, NMI_STACK); |
Alexander van Heukelum | 699d293 | 2008-10-03 22:00:32 +0200 | [diff] [blame] | 876 | /* int4 can be called from all */ |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 877 | set_system_intr_gate(X86_TRAP_OF, &overflow); |
Seiji Aguchi | 25c74b1 | 2013-10-30 16:37:00 -0400 | [diff] [blame] | 878 | set_intr_gate(X86_TRAP_BR, bounds); |
| 879 | set_intr_gate(X86_TRAP_UD, invalid_op); |
| 880 | set_intr_gate(X86_TRAP_NM, device_not_available); |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 881 | #ifdef CONFIG_X86_32 |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 882 | set_task_gate(X86_TRAP_DF, GDT_ENTRY_DOUBLEFAULT_TSS); |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 883 | #else |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 884 | set_intr_gate_ist(X86_TRAP_DF, &double_fault, DOUBLEFAULT_STACK); |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 885 | #endif |
Seiji Aguchi | 25c74b1 | 2013-10-30 16:37:00 -0400 | [diff] [blame] | 886 | set_intr_gate(X86_TRAP_OLD_MF, coprocessor_segment_overrun); |
| 887 | set_intr_gate(X86_TRAP_TS, invalid_TSS); |
| 888 | set_intr_gate(X86_TRAP_NP, segment_not_present); |
Andy Lutomirski | 6f442be | 2014-11-22 18:00:32 -0800 | [diff] [blame] | 889 | set_intr_gate(X86_TRAP_SS, stack_segment); |
Seiji Aguchi | 25c74b1 | 2013-10-30 16:37:00 -0400 | [diff] [blame] | 890 | set_intr_gate(X86_TRAP_GP, general_protection); |
| 891 | set_intr_gate(X86_TRAP_SPURIOUS, spurious_interrupt_bug); |
| 892 | set_intr_gate(X86_TRAP_MF, coprocessor_error); |
| 893 | set_intr_gate(X86_TRAP_AC, alignment_check); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | #ifdef CONFIG_X86_MCE |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 895 | set_intr_gate_ist(X86_TRAP_MC, &machine_check, MCE_STACK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | #endif |
Seiji Aguchi | 25c74b1 | 2013-10-30 16:37:00 -0400 | [diff] [blame] | 897 | set_intr_gate(X86_TRAP_XF, simd_coprocessor_error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | |
Yinghai Lu | bb3f0b5 | 2009-01-25 02:38:09 -0800 | [diff] [blame] | 899 | /* Reserve all the builtin and the syscall vector: */ |
| 900 | for (i = 0; i < FIRST_EXTERNAL_VECTOR; i++) |
| 901 | set_bit(i, used_vectors); |
| 902 | |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 903 | #ifdef CONFIG_IA32_EMULATION |
| 904 | set_system_intr_gate(IA32_SYSCALL_VECTOR, ia32_syscall); |
Yinghai Lu | bb3f0b5 | 2009-01-25 02:38:09 -0800 | [diff] [blame] | 905 | set_bit(IA32_SYSCALL_VECTOR, used_vectors); |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 906 | #endif |
| 907 | |
| 908 | #ifdef CONFIG_X86_32 |
Alexander van Heukelum | 699d293 | 2008-10-03 22:00:32 +0200 | [diff] [blame] | 909 | set_system_trap_gate(SYSCALL_VECTOR, &system_call); |
Rusty Russell | dbeb2be | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 910 | set_bit(SYSCALL_VECTOR, used_vectors); |
Alexander van Heukelum | 081f75b | 2008-10-03 22:00:39 +0200 | [diff] [blame] | 911 | #endif |
Yinghai Lu | bb3f0b5 | 2009-01-25 02:38:09 -0800 | [diff] [blame] | 912 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | /* |
Kees Cook | 4eefbe7 | 2013-04-10 12:24:22 -0700 | [diff] [blame] | 914 | * Set the IDT descriptor to a fixed read-only location, so that the |
| 915 | * "sidt" instruction will not leak the location of the kernel, and |
| 916 | * to defend the IDT against arbitrary memory write vulnerabilities. |
| 917 | * It will be reloaded in cpu_init() */ |
| 918 | __set_fixmap(FIX_RO_IDT, __pa_symbol(idt_table), PAGE_KERNEL_RO); |
| 919 | idt_descr.address = fix_to_virt(FIX_RO_IDT); |
| 920 | |
| 921 | /* |
Ingo Molnar | b596440 | 2008-02-26 11:15:50 +0100 | [diff] [blame] | 922 | * Should be a barrier for any external CPU state: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | */ |
| 924 | cpu_init(); |
| 925 | |
Thomas Gleixner | 428cf90 | 2009-08-20 10:35:46 +0200 | [diff] [blame] | 926 | x86_init.irqs.trap_init(); |
Steven Rostedt | 228bdaa | 2011-12-09 03:02:19 -0500 | [diff] [blame] | 927 | |
| 928 | #ifdef CONFIG_X86_64 |
Seiji Aguchi | 629f4f9 | 2013-06-20 11:45:44 -0400 | [diff] [blame] | 929 | memcpy(&debug_idt_table, &idt_table, IDT_ENTRIES * 16); |
Kees Cook | c940826 | 2012-03-09 16:07:10 -0800 | [diff] [blame] | 930 | set_nmi_gate(X86_TRAP_DB, &debug); |
| 931 | set_nmi_gate(X86_TRAP_BP, &int3); |
Steven Rostedt | 228bdaa | 2011-12-09 03:02:19 -0500 | [diff] [blame] | 932 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | } |