Thomas Gleixner | 457c899 | 2019-05-19 13:08:55 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Paul Gortmaker | 744c193 | 2016-09-19 17:04:18 -0400 | [diff] [blame] | 2 | #include <linux/extable.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 3 | #include <linux/uaccess.h> |
Ingo Molnar | b17b015 | 2017-02-08 18:51:35 +0100 | [diff] [blame] | 4 | #include <linux/sched/debug.h> |
Juergen Gross | 42b3a4c | 2017-11-24 09:42:21 +0100 | [diff] [blame] | 5 | #include <xen/xen.h> |
Ingo Molnar | b17b015 | 2017-02-08 18:51:35 +0100 | [diff] [blame] | 6 | |
Eric Biggers | d5c8028 | 2017-09-23 15:00:09 +0200 | [diff] [blame] | 7 | #include <asm/fpu/internal.h> |
Andy Lutomirski | 0d0efc0 | 2016-04-02 07:01:33 -0700 | [diff] [blame] | 8 | #include <asm/traps.h> |
Borislav Petkov | 81c2949 | 2016-07-05 00:31:27 +0200 | [diff] [blame] | 9 | #include <asm/kdebug.h> |
Harvey Harrison | 6d48583 | 2008-01-30 13:31:41 +0100 | [diff] [blame] | 10 | |
Tony Luck | 548acf1 | 2016-02-17 10:20:12 -0800 | [diff] [blame] | 11 | typedef bool (*ex_handler_t)(const struct exception_table_entry *, |
Jann Horn | 81fd9c1 | 2018-08-28 22:14:19 +0200 | [diff] [blame] | 12 | struct pt_regs *, int, unsigned long, |
| 13 | unsigned long); |
Tony Luck | 548acf1 | 2016-02-17 10:20:12 -0800 | [diff] [blame] | 14 | |
H. Peter Anvin | 7062765 | 2012-04-20 17:12:48 -0700 | [diff] [blame] | 15 | static inline unsigned long |
H. Peter Anvin | 7062765 | 2012-04-20 17:12:48 -0700 | [diff] [blame] | 16 | ex_fixup_addr(const struct exception_table_entry *x) |
| 17 | { |
| 18 | return (unsigned long)&x->fixup + x->fixup; |
| 19 | } |
Tony Luck | 548acf1 | 2016-02-17 10:20:12 -0800 | [diff] [blame] | 20 | static inline ex_handler_t |
| 21 | ex_fixup_handler(const struct exception_table_entry *x) |
Harvey Harrison | 6d48583 | 2008-01-30 13:31:41 +0100 | [diff] [blame] | 22 | { |
Tony Luck | 548acf1 | 2016-02-17 10:20:12 -0800 | [diff] [blame] | 23 | return (ex_handler_t)((unsigned long)&x->handler + x->handler); |
| 24 | } |
| 25 | |
Andi Kleen | 80a3e39 | 2017-12-21 16:18:20 -0800 | [diff] [blame] | 26 | __visible bool ex_handler_default(const struct exception_table_entry *fixup, |
Jann Horn | 81fd9c1 | 2018-08-28 22:14:19 +0200 | [diff] [blame] | 27 | struct pt_regs *regs, int trapnr, |
| 28 | unsigned long error_code, |
| 29 | unsigned long fault_addr) |
Tony Luck | 548acf1 | 2016-02-17 10:20:12 -0800 | [diff] [blame] | 30 | { |
| 31 | regs->ip = ex_fixup_addr(fixup); |
| 32 | return true; |
| 33 | } |
| 34 | EXPORT_SYMBOL(ex_handler_default); |
| 35 | |
Andi Kleen | 80a3e39 | 2017-12-21 16:18:20 -0800 | [diff] [blame] | 36 | __visible bool ex_handler_fault(const struct exception_table_entry *fixup, |
Jann Horn | 81fd9c1 | 2018-08-28 22:14:19 +0200 | [diff] [blame] | 37 | struct pt_regs *regs, int trapnr, |
| 38 | unsigned long error_code, |
| 39 | unsigned long fault_addr) |
Tony Luck | 548acf1 | 2016-02-17 10:20:12 -0800 | [diff] [blame] | 40 | { |
| 41 | regs->ip = ex_fixup_addr(fixup); |
| 42 | regs->ax = trapnr; |
| 43 | return true; |
| 44 | } |
| 45 | EXPORT_SYMBOL_GPL(ex_handler_fault); |
| 46 | |
Kees Cook | 7a46ec0 | 2017-08-15 09:19:24 -0700 | [diff] [blame] | 47 | /* |
Eric Biggers | d5c8028 | 2017-09-23 15:00:09 +0200 | [diff] [blame] | 48 | * Handler for when we fail to restore a task's FPU state. We should never get |
| 49 | * here because the FPU state of a task using the FPU (task->thread.fpu.state) |
| 50 | * should always be valid. However, past bugs have allowed userspace to set |
| 51 | * reserved bits in the XSAVE area using PTRACE_SETREGSET or sys_rt_sigreturn(). |
| 52 | * These caused XRSTOR to fail when switching to the task, leaking the FPU |
| 53 | * registers of the task previously executing on the CPU. Mitigate this class |
| 54 | * of vulnerability by restoring from the initial state (essentially, zeroing |
| 55 | * out all the FPU registers) if we can't restore from the task's FPU state. |
| 56 | */ |
Andi Kleen | 80a3e39 | 2017-12-21 16:18:20 -0800 | [diff] [blame] | 57 | __visible bool ex_handler_fprestore(const struct exception_table_entry *fixup, |
Jann Horn | 81fd9c1 | 2018-08-28 22:14:19 +0200 | [diff] [blame] | 58 | struct pt_regs *regs, int trapnr, |
| 59 | unsigned long error_code, |
| 60 | unsigned long fault_addr) |
Eric Biggers | d5c8028 | 2017-09-23 15:00:09 +0200 | [diff] [blame] | 61 | { |
| 62 | regs->ip = ex_fixup_addr(fixup); |
| 63 | |
| 64 | WARN_ONCE(1, "Bad FPU state detected at %pB, reinitializing FPU registers.", |
| 65 | (void *)instruction_pointer(regs)); |
| 66 | |
| 67 | __copy_kernel_to_fpregs(&init_fpstate, -1); |
| 68 | return true; |
| 69 | } |
| 70 | EXPORT_SYMBOL_GPL(ex_handler_fprestore); |
| 71 | |
Jann Horn | 75045f7 | 2018-08-28 22:14:18 +0200 | [diff] [blame] | 72 | __visible bool ex_handler_uaccess(const struct exception_table_entry *fixup, |
Jann Horn | 81fd9c1 | 2018-08-28 22:14:19 +0200 | [diff] [blame] | 73 | struct pt_regs *regs, int trapnr, |
| 74 | unsigned long error_code, |
| 75 | unsigned long fault_addr) |
Jann Horn | 75045f7 | 2018-08-28 22:14:18 +0200 | [diff] [blame] | 76 | { |
Linus Torvalds | 00c4237 | 2019-02-26 09:16:04 -0800 | [diff] [blame] | 77 | WARN_ONCE(trapnr == X86_TRAP_GP, "General protection fault in user access. Non-canonical address?"); |
Jann Horn | 75045f7 | 2018-08-28 22:14:18 +0200 | [diff] [blame] | 78 | regs->ip = ex_fixup_addr(fixup); |
| 79 | return true; |
| 80 | } |
| 81 | EXPORT_SYMBOL(ex_handler_uaccess); |
| 82 | |
Andi Kleen | 80a3e39 | 2017-12-21 16:18:20 -0800 | [diff] [blame] | 83 | __visible bool ex_handler_ext(const struct exception_table_entry *fixup, |
Jann Horn | 81fd9c1 | 2018-08-28 22:14:19 +0200 | [diff] [blame] | 84 | struct pt_regs *regs, int trapnr, |
| 85 | unsigned long error_code, |
| 86 | unsigned long fault_addr) |
Tony Luck | 548acf1 | 2016-02-17 10:20:12 -0800 | [diff] [blame] | 87 | { |
| 88 | /* Special hack for uaccess_err */ |
Andy Lutomirski | dfa9a94 | 2016-07-14 13:22:56 -0700 | [diff] [blame] | 89 | current->thread.uaccess_err = 1; |
Tony Luck | 548acf1 | 2016-02-17 10:20:12 -0800 | [diff] [blame] | 90 | regs->ip = ex_fixup_addr(fixup); |
| 91 | return true; |
| 92 | } |
| 93 | EXPORT_SYMBOL(ex_handler_ext); |
| 94 | |
Andi Kleen | 80a3e39 | 2017-12-21 16:18:20 -0800 | [diff] [blame] | 95 | __visible bool ex_handler_rdmsr_unsafe(const struct exception_table_entry *fixup, |
Jann Horn | 81fd9c1 | 2018-08-28 22:14:19 +0200 | [diff] [blame] | 96 | struct pt_regs *regs, int trapnr, |
| 97 | unsigned long error_code, |
| 98 | unsigned long fault_addr) |
Andy Lutomirski | fbd7043 | 2016-04-02 07:01:37 -0700 | [diff] [blame] | 99 | { |
Sakari Ailus | d75f773 | 2019-03-25 21:32:28 +0200 | [diff] [blame] | 100 | if (pr_warn_once("unchecked MSR access error: RDMSR from 0x%x at rIP: 0x%lx (%pS)\n", |
Borislav Petkov | 81c2949 | 2016-07-05 00:31:27 +0200 | [diff] [blame] | 101 | (unsigned int)regs->cx, regs->ip, (void *)regs->ip)) |
| 102 | show_stack_regs(regs); |
Andy Lutomirski | fbd7043 | 2016-04-02 07:01:37 -0700 | [diff] [blame] | 103 | |
| 104 | /* Pretend that the read succeeded and returned 0. */ |
| 105 | regs->ip = ex_fixup_addr(fixup); |
| 106 | regs->ax = 0; |
| 107 | regs->dx = 0; |
| 108 | return true; |
| 109 | } |
| 110 | EXPORT_SYMBOL(ex_handler_rdmsr_unsafe); |
| 111 | |
Andi Kleen | 80a3e39 | 2017-12-21 16:18:20 -0800 | [diff] [blame] | 112 | __visible bool ex_handler_wrmsr_unsafe(const struct exception_table_entry *fixup, |
Jann Horn | 81fd9c1 | 2018-08-28 22:14:19 +0200 | [diff] [blame] | 113 | struct pt_regs *regs, int trapnr, |
| 114 | unsigned long error_code, |
| 115 | unsigned long fault_addr) |
Andy Lutomirski | fbd7043 | 2016-04-02 07:01:37 -0700 | [diff] [blame] | 116 | { |
Sakari Ailus | d75f773 | 2019-03-25 21:32:28 +0200 | [diff] [blame] | 117 | if (pr_warn_once("unchecked MSR access error: WRMSR to 0x%x (tried to write 0x%08x%08x) at rIP: 0x%lx (%pS)\n", |
Borislav Petkov | 81c2949 | 2016-07-05 00:31:27 +0200 | [diff] [blame] | 118 | (unsigned int)regs->cx, (unsigned int)regs->dx, |
| 119 | (unsigned int)regs->ax, regs->ip, (void *)regs->ip)) |
| 120 | show_stack_regs(regs); |
Andy Lutomirski | fbd7043 | 2016-04-02 07:01:37 -0700 | [diff] [blame] | 121 | |
| 122 | /* Pretend that the write succeeded. */ |
| 123 | regs->ip = ex_fixup_addr(fixup); |
| 124 | return true; |
| 125 | } |
| 126 | EXPORT_SYMBOL(ex_handler_wrmsr_unsafe); |
| 127 | |
Andi Kleen | 80a3e39 | 2017-12-21 16:18:20 -0800 | [diff] [blame] | 128 | __visible bool ex_handler_clear_fs(const struct exception_table_entry *fixup, |
Jann Horn | 81fd9c1 | 2018-08-28 22:14:19 +0200 | [diff] [blame] | 129 | struct pt_regs *regs, int trapnr, |
| 130 | unsigned long error_code, |
| 131 | unsigned long fault_addr) |
Andy Lutomirski | 45e876f | 2016-04-26 12:23:26 -0700 | [diff] [blame] | 132 | { |
| 133 | if (static_cpu_has(X86_BUG_NULL_SEG)) |
| 134 | asm volatile ("mov %0, %%fs" : : "rm" (__USER_DS)); |
| 135 | asm volatile ("mov %0, %%fs" : : "rm" (0)); |
Jann Horn | 81fd9c1 | 2018-08-28 22:14:19 +0200 | [diff] [blame] | 136 | return ex_handler_default(fixup, regs, trapnr, error_code, fault_addr); |
Andy Lutomirski | 45e876f | 2016-04-26 12:23:26 -0700 | [diff] [blame] | 137 | } |
| 138 | EXPORT_SYMBOL(ex_handler_clear_fs); |
| 139 | |
Andi Kleen | 80a3e39 | 2017-12-21 16:18:20 -0800 | [diff] [blame] | 140 | __visible bool ex_has_fault_handler(unsigned long ip) |
Tony Luck | 548acf1 | 2016-02-17 10:20:12 -0800 | [diff] [blame] | 141 | { |
| 142 | const struct exception_table_entry *e; |
| 143 | ex_handler_t handler; |
| 144 | |
| 145 | e = search_exception_tables(ip); |
| 146 | if (!e) |
| 147 | return false; |
| 148 | handler = ex_fixup_handler(e); |
| 149 | |
| 150 | return handler == ex_handler_fault; |
| 151 | } |
| 152 | |
Jann Horn | 81fd9c1 | 2018-08-28 22:14:19 +0200 | [diff] [blame] | 153 | int fixup_exception(struct pt_regs *regs, int trapnr, unsigned long error_code, |
| 154 | unsigned long fault_addr) |
Tony Luck | 548acf1 | 2016-02-17 10:20:12 -0800 | [diff] [blame] | 155 | { |
| 156 | const struct exception_table_entry *e; |
| 157 | ex_handler_t handler; |
Harvey Harrison | 6d48583 | 2008-01-30 13:31:41 +0100 | [diff] [blame] | 158 | |
| 159 | #ifdef CONFIG_PNPBIOS |
| 160 | if (unlikely(SEGMENT_IS_PNP_CODE(regs->cs))) { |
| 161 | extern u32 pnp_bios_fault_eip, pnp_bios_fault_esp; |
| 162 | extern u32 pnp_bios_is_utter_crap; |
| 163 | pnp_bios_is_utter_crap = 1; |
| 164 | printk(KERN_CRIT "PNPBIOS fault.. attempting recovery.\n"); |
| 165 | __asm__ volatile( |
| 166 | "movl %0, %%esp\n\t" |
| 167 | "jmp *%1\n\t" |
| 168 | : : "g" (pnp_bios_fault_esp), "g" (pnp_bios_fault_eip)); |
| 169 | panic("do_trap: can't hit this"); |
| 170 | } |
| 171 | #endif |
| 172 | |
Tony Luck | 548acf1 | 2016-02-17 10:20:12 -0800 | [diff] [blame] | 173 | e = search_exception_tables(regs->ip); |
| 174 | if (!e) |
| 175 | return 0; |
H. Peter Anvin | 7062765 | 2012-04-20 17:12:48 -0700 | [diff] [blame] | 176 | |
Tony Luck | 548acf1 | 2016-02-17 10:20:12 -0800 | [diff] [blame] | 177 | handler = ex_fixup_handler(e); |
Jann Horn | 81fd9c1 | 2018-08-28 22:14:19 +0200 | [diff] [blame] | 178 | return handler(e, regs, trapnr, error_code, fault_addr); |
Harvey Harrison | 6d48583 | 2008-01-30 13:31:41 +0100 | [diff] [blame] | 179 | } |
H. Peter Anvin | 6a1ea27 | 2012-04-19 15:24:20 -0700 | [diff] [blame] | 180 | |
Andy Lutomirski | 0e861fb | 2016-04-02 07:01:34 -0700 | [diff] [blame] | 181 | extern unsigned int early_recursion_flag; |
| 182 | |
H. Peter Anvin | 6a1ea27 | 2012-04-19 15:24:20 -0700 | [diff] [blame] | 183 | /* Restricted version used during very early boot */ |
Andy Lutomirski | 0e861fb | 2016-04-02 07:01:34 -0700 | [diff] [blame] | 184 | void __init early_fixup_exception(struct pt_regs *regs, int trapnr) |
H. Peter Anvin | 6a1ea27 | 2012-04-19 15:24:20 -0700 | [diff] [blame] | 185 | { |
Andy Lutomirski | 0d0efc0 | 2016-04-02 07:01:33 -0700 | [diff] [blame] | 186 | /* Ignore early NMIs. */ |
| 187 | if (trapnr == X86_TRAP_NMI) |
Andy Lutomirski | 0e861fb | 2016-04-02 07:01:34 -0700 | [diff] [blame] | 188 | return; |
| 189 | |
| 190 | if (early_recursion_flag > 2) |
| 191 | goto halt_loop; |
| 192 | |
Andy Lutomirski | fc0e81b | 2016-11-19 18:42:40 -0800 | [diff] [blame] | 193 | /* |
| 194 | * Old CPUs leave the high bits of CS on the stack |
| 195 | * undefined. I'm not sure which CPUs do this, but at least |
| 196 | * the 486 DX works this way. |
Juergen Gross | 42b3a4c | 2017-11-24 09:42:21 +0100 | [diff] [blame] | 197 | * Xen pv domains are not using the default __KERNEL_CS. |
Andy Lutomirski | fc0e81b | 2016-11-19 18:42:40 -0800 | [diff] [blame] | 198 | */ |
Juergen Gross | 42b3a4c | 2017-11-24 09:42:21 +0100 | [diff] [blame] | 199 | if (!xen_pv_domain() && regs->cs != __KERNEL_CS) |
Andy Lutomirski | 0e861fb | 2016-04-02 07:01:34 -0700 | [diff] [blame] | 200 | goto fail; |
Andy Lutomirski | 0d0efc0 | 2016-04-02 07:01:33 -0700 | [diff] [blame] | 201 | |
Andy Lutomirski | 60a0e20 | 2016-04-04 08:46:22 -0700 | [diff] [blame] | 202 | /* |
| 203 | * The full exception fixup machinery is available as soon as |
| 204 | * the early IDT is loaded. This means that it is the |
| 205 | * responsibility of extable users to either function correctly |
| 206 | * when handlers are invoked early or to simply avoid causing |
| 207 | * exceptions before they're ready to handle them. |
| 208 | * |
| 209 | * This is better than filtering which handlers can be used, |
| 210 | * because refusing to call a handler here is guaranteed to |
| 211 | * result in a hard-to-debug panic. |
| 212 | * |
| 213 | * Keep in mind that not all vectors actually get here. Early |
Jann Horn | 81fd9c1 | 2018-08-28 22:14:19 +0200 | [diff] [blame] | 214 | * page faults, for example, are special. |
Andy Lutomirski | 60a0e20 | 2016-04-04 08:46:22 -0700 | [diff] [blame] | 215 | */ |
Jann Horn | 81fd9c1 | 2018-08-28 22:14:19 +0200 | [diff] [blame] | 216 | if (fixup_exception(regs, trapnr, regs->orig_ax, 0)) |
Andy Lutomirski | ae7ef45 | 2016-04-02 07:01:35 -0700 | [diff] [blame] | 217 | return; |
Andy Lutomirski | 0e861fb | 2016-04-02 07:01:34 -0700 | [diff] [blame] | 218 | |
Peter Zijlstra | 8a524f8 | 2017-06-12 13:52:46 +0200 | [diff] [blame] | 219 | if (fixup_bug(regs, trapnr)) |
| 220 | return; |
| 221 | |
Andy Lutomirski | 0e861fb | 2016-04-02 07:01:34 -0700 | [diff] [blame] | 222 | fail: |
| 223 | early_printk("PANIC: early exception 0x%02x IP %lx:%lx error %lx cr2 0x%lx\n", |
| 224 | (unsigned)trapnr, (unsigned long)regs->cs, regs->ip, |
| 225 | regs->orig_ax, read_cr2()); |
| 226 | |
| 227 | show_regs(regs); |
| 228 | |
| 229 | halt_loop: |
| 230 | while (true) |
| 231 | halt(); |
H. Peter Anvin | 6a1ea27 | 2012-04-19 15:24:20 -0700 | [diff] [blame] | 232 | } |