Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 3 | * Copyright (C) 1991,1992 Linus Torvalds |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 5 | * entry_32.S contains the system-call and low-level fault and trap handling routines. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
Andy Lutomirski | 39e8701 | 2015-10-05 17:48:13 -0700 | [diff] [blame] | 7 | * Stack layout while running C code: |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 8 | * ptrace needs to have all registers on the stack. |
| 9 | * If the order here is changed, it needs to be |
| 10 | * updated in fork.c:copy_process(), signal.c:do_signal(), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * ptrace.c and ptrace.h |
| 12 | * |
| 13 | * 0(%esp) - %ebx |
| 14 | * 4(%esp) - %ecx |
| 15 | * 8(%esp) - %edx |
Denys Vlasenko | 9b47feb | 2015-06-08 22:35:33 +0200 | [diff] [blame] | 16 | * C(%esp) - %esi |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | * 10(%esp) - %edi |
| 18 | * 14(%esp) - %ebp |
| 19 | * 18(%esp) - %eax |
| 20 | * 1C(%esp) - %ds |
| 21 | * 20(%esp) - %es |
Jeremy Fitzhardinge | 464d1a7 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 22 | * 24(%esp) - %fs |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 23 | * 28(%esp) - %gs saved iff !CONFIG_X86_32_LAZY_GS |
| 24 | * 2C(%esp) - orig_eax |
| 25 | * 30(%esp) - %eip |
| 26 | * 34(%esp) - %cs |
| 27 | * 38(%esp) - %eflags |
| 28 | * 3C(%esp) - %oldesp |
| 29 | * 40(%esp) - %oldss |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | */ |
| 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/linkage.h> |
Eric Paris | d7e7528 | 2012-01-03 14:23:06 -0500 | [diff] [blame] | 33 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <asm/thread_info.h> |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 35 | #include <asm/irqflags.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <asm/errno.h> |
| 37 | #include <asm/segment.h> |
| 38 | #include <asm/smp.h> |
Stas Sergeev | be44d2a | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 39 | #include <asm/percpu.h> |
Cyrill Gorcunov | ab68ed9 | 2008-03-25 22:16:32 +0300 | [diff] [blame] | 40 | #include <asm/processor-flags.h> |
Thomas Gleixner | 9b7dc56 | 2008-05-02 20:10:09 +0200 | [diff] [blame] | 41 | #include <asm/irq_vectors.h> |
Borislav Petkov | cd4d09e | 2016-01-26 22:12:04 +0100 | [diff] [blame] | 42 | #include <asm/cpufeatures.h> |
Andy Lutomirski | b4ca46e | 2011-08-25 16:10:33 -0400 | [diff] [blame] | 43 | #include <asm/alternative-asm.h> |
H. Peter Anvin | 6837a54 | 2012-04-20 12:19:50 -0700 | [diff] [blame] | 44 | #include <asm/asm.h> |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 45 | #include <asm/smap.h> |
Josh Poimboeuf | 4d516f4 | 2016-09-21 16:04:01 -0500 | [diff] [blame] | 46 | #include <asm/frame.h> |
David Woodhouse | 2641f08 | 2018-01-11 21:46:28 +0000 | [diff] [blame] | 47 | #include <asm/nospec-branch.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Alexander Popov | afaef01 | 2018-08-17 01:16:58 +0300 | [diff] [blame] | 49 | #include "calling.h" |
| 50 | |
Jiri Olsa | ea71454 | 2011-03-07 19:10:39 +0100 | [diff] [blame] | 51 | .section .entry.text, "ax" |
| 52 | |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 53 | /* |
| 54 | * We use macros for low-level operations which need to be overridden |
| 55 | * for paravirtualization. The following will never clobber any registers: |
| 56 | * INTERRUPT_RETURN (aka. "iret") |
| 57 | * GET_CR0_INTO_EAX (aka. "movl %cr0, %eax") |
Jeremy Fitzhardinge | d75cd22 | 2008-06-25 00:19:26 -0400 | [diff] [blame] | 58 | * ENABLE_INTERRUPTS_SYSEXIT (aka "sti; sysexit"). |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 59 | * |
| 60 | * For DISABLE_INTERRUPTS/ENABLE_INTERRUPTS (aka "cli"/"sti"), you must |
| 61 | * specify what registers can be overwritten (CLBR_NONE, CLBR_EAX/EDX/ECX/ANY). |
| 62 | * Allowing a register to be clobbered can shrink the paravirt replacement |
| 63 | * enough to patch inline, increasing performance. |
| 64 | */ |
| 65 | |
Thomas Gleixner | 4859397 | 2019-07-26 23:19:42 +0200 | [diff] [blame] | 66 | #ifdef CONFIG_PREEMPTION |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 67 | # define preempt_stop(clobbers) DISABLE_INTERRUPTS(clobbers); TRACE_IRQS_OFF |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #else |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 69 | # define preempt_stop(clobbers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | #endif |
| 71 | |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 72 | .macro TRACE_IRQS_IRET |
| 73 | #ifdef CONFIG_TRACE_IRQFLAGS |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 74 | testl $X86_EFLAGS_IF, PT_EFLAGS(%esp) # interrupts off? |
| 75 | jz 1f |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 76 | TRACE_IRQS_ON |
| 77 | 1: |
| 78 | #endif |
| 79 | .endm |
| 80 | |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 81 | #define PTI_SWITCH_MASK (1 << PAGE_SHIFT) |
| 82 | |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 83 | /* |
| 84 | * User gs save/restore |
| 85 | * |
| 86 | * %gs is used for userland TLS and kernel only uses it for stack |
| 87 | * canary which is required to be at %gs:20 by gcc. Read the comment |
| 88 | * at the top of stackprotector.h for more info. |
| 89 | * |
| 90 | * Local labels 98 and 99 are used. |
| 91 | */ |
| 92 | #ifdef CONFIG_X86_32_LAZY_GS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 94 | /* unfortunately push/pop can't be no-op */ |
| 95 | .macro PUSH_GS |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 96 | pushl $0 |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 97 | .endm |
| 98 | .macro POP_GS pop=0 |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 99 | addl $(4 + \pop), %esp |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 100 | .endm |
| 101 | .macro POP_GS_EX |
| 102 | .endm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 104 | /* all the rest are no-op */ |
| 105 | .macro PTGS_TO_GS |
| 106 | .endm |
| 107 | .macro PTGS_TO_GS_EX |
| 108 | .endm |
| 109 | .macro GS_TO_REG reg |
| 110 | .endm |
| 111 | .macro REG_TO_PTGS reg |
| 112 | .endm |
| 113 | .macro SET_KERNEL_GS reg |
| 114 | .endm |
| 115 | |
| 116 | #else /* CONFIG_X86_32_LAZY_GS */ |
| 117 | |
| 118 | .macro PUSH_GS |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 119 | pushl %gs |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 120 | .endm |
| 121 | |
| 122 | .macro POP_GS pop=0 |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 123 | 98: popl %gs |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 124 | .if \pop <> 0 |
Denys Vlasenko | 9b47feb | 2015-06-08 22:35:33 +0200 | [diff] [blame] | 125 | add $\pop, %esp |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 126 | .endif |
| 127 | .endm |
| 128 | .macro POP_GS_EX |
| 129 | .pushsection .fixup, "ax" |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 130 | 99: movl $0, (%esp) |
| 131 | jmp 98b |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 132 | .popsection |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 133 | _ASM_EXTABLE(98b, 99b) |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 134 | .endm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 136 | .macro PTGS_TO_GS |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 137 | 98: mov PT_GS(%esp), %gs |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 138 | .endm |
| 139 | .macro PTGS_TO_GS_EX |
| 140 | .pushsection .fixup, "ax" |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 141 | 99: movl $0, PT_GS(%esp) |
| 142 | jmp 98b |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 143 | .popsection |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 144 | _ASM_EXTABLE(98b, 99b) |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 145 | .endm |
| 146 | |
| 147 | .macro GS_TO_REG reg |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 148 | movl %gs, \reg |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 149 | .endm |
| 150 | .macro REG_TO_PTGS reg |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 151 | movl \reg, PT_GS(%esp) |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 152 | .endm |
| 153 | .macro SET_KERNEL_GS reg |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 154 | movl $(__KERNEL_STACK_CANARY), \reg |
| 155 | movl \reg, %gs |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 156 | .endm |
| 157 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 158 | #endif /* CONFIG_X86_32_LAZY_GS */ |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 159 | |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 160 | /* Unconditionally switch to user cr3 */ |
| 161 | .macro SWITCH_TO_USER_CR3 scratch_reg:req |
| 162 | ALTERNATIVE "jmp .Lend_\@", "", X86_FEATURE_PTI |
| 163 | |
| 164 | movl %cr3, \scratch_reg |
| 165 | orl $PTI_SWITCH_MASK, \scratch_reg |
| 166 | movl \scratch_reg, %cr3 |
| 167 | .Lend_\@: |
| 168 | .endm |
| 169 | |
Joerg Roedel | 9719370 | 2018-07-18 11:41:16 +0200 | [diff] [blame] | 170 | .macro BUG_IF_WRONG_CR3 no_user_check=0 |
| 171 | #ifdef CONFIG_DEBUG_ENTRY |
| 172 | ALTERNATIVE "jmp .Lend_\@", "", X86_FEATURE_PTI |
| 173 | .if \no_user_check == 0 |
| 174 | /* coming from usermode? */ |
Jan Beulich | 81ff2c3 | 2019-11-18 16:21:12 +0100 | [diff] [blame] | 175 | testl $USER_SEGMENT_RPL_MASK, PT_CS(%esp) |
Joerg Roedel | 9719370 | 2018-07-18 11:41:16 +0200 | [diff] [blame] | 176 | jz .Lend_\@ |
| 177 | .endif |
| 178 | /* On user-cr3? */ |
| 179 | movl %cr3, %eax |
| 180 | testl $PTI_SWITCH_MASK, %eax |
| 181 | jnz .Lend_\@ |
| 182 | /* From userspace with kernel cr3 - BUG */ |
| 183 | ud2 |
| 184 | .Lend_\@: |
| 185 | #endif |
| 186 | .endm |
| 187 | |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 188 | /* |
| 189 | * Switch to kernel cr3 if not already loaded and return current cr3 in |
| 190 | * \scratch_reg |
| 191 | */ |
| 192 | .macro SWITCH_TO_KERNEL_CR3 scratch_reg:req |
| 193 | ALTERNATIVE "jmp .Lend_\@", "", X86_FEATURE_PTI |
| 194 | movl %cr3, \scratch_reg |
| 195 | /* Test if we are already on kernel CR3 */ |
| 196 | testl $PTI_SWITCH_MASK, \scratch_reg |
| 197 | jz .Lend_\@ |
| 198 | andl $(~PTI_SWITCH_MASK), \scratch_reg |
| 199 | movl \scratch_reg, %cr3 |
| 200 | /* Return original CR3 in \scratch_reg */ |
| 201 | orl $PTI_SWITCH_MASK, \scratch_reg |
| 202 | .Lend_\@: |
| 203 | .endm |
| 204 | |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 205 | #define CS_FROM_ENTRY_STACK (1 << 31) |
| 206 | #define CS_FROM_USER_CR3 (1 << 30) |
| 207 | #define CS_FROM_KERNEL (1 << 29) |
| 208 | |
| 209 | .macro FIXUP_FRAME |
| 210 | /* |
| 211 | * The high bits of the CS dword (__csh) are used for CS_FROM_*. |
| 212 | * Clear them in case hardware didn't do this for us. |
Andy Lutomirski | 4c4fd55 | 2019-11-20 09:49:33 +0100 | [diff] [blame] | 213 | * |
| 214 | * Be careful: we may have nonzero SS base due to ESPFIX. |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 215 | */ |
Andy Lutomirski | 82cb8a0 | 2019-11-20 09:56:36 +0100 | [diff] [blame^] | 216 | andl $0x0000ffff, 4*4(%esp) |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 217 | |
| 218 | #ifdef CONFIG_VM86 |
Andy Lutomirski | 82cb8a0 | 2019-11-20 09:56:36 +0100 | [diff] [blame^] | 219 | testl $X86_EFLAGS_VM, 5*4(%esp) |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 220 | jnz .Lfrom_usermode_no_fixup_\@ |
| 221 | #endif |
Andy Lutomirski | 82cb8a0 | 2019-11-20 09:56:36 +0100 | [diff] [blame^] | 222 | testl $USER_SEGMENT_RPL_MASK, 4*4(%esp) |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 223 | jnz .Lfrom_usermode_no_fixup_\@ |
| 224 | |
Andy Lutomirski | 82cb8a0 | 2019-11-20 09:56:36 +0100 | [diff] [blame^] | 225 | orl $CS_FROM_KERNEL, 4*4(%esp) |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 226 | |
| 227 | /* |
| 228 | * When we're here from kernel mode; the (exception) stack looks like: |
| 229 | * |
Andy Lutomirski | 82cb8a0 | 2019-11-20 09:56:36 +0100 | [diff] [blame^] | 230 | * 6*4(%esp) - <previous context> |
| 231 | * 5*4(%esp) - flags |
| 232 | * 4*4(%esp) - cs |
| 233 | * 3*4(%esp) - ip |
| 234 | * 2*4(%esp) - orig_eax |
| 235 | * 1*4(%esp) - gs / function |
| 236 | * 0*4(%esp) - fs |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 237 | * |
| 238 | * Lets build a 5 entry IRET frame after that, such that struct pt_regs |
| 239 | * is complete and in particular regs->sp is correct. This gives us |
Andy Lutomirski | 82cb8a0 | 2019-11-20 09:56:36 +0100 | [diff] [blame^] | 240 | * the original 6 enties as gap: |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 241 | * |
Andy Lutomirski | 82cb8a0 | 2019-11-20 09:56:36 +0100 | [diff] [blame^] | 242 | * 14*4(%esp) - <previous context> |
| 243 | * 13*4(%esp) - gap / flags |
| 244 | * 12*4(%esp) - gap / cs |
| 245 | * 11*4(%esp) - gap / ip |
| 246 | * 10*4(%esp) - gap / orig_eax |
| 247 | * 9*4(%esp) - gap / gs / function |
| 248 | * 8*4(%esp) - gap / fs |
| 249 | * 7*4(%esp) - ss |
| 250 | * 6*4(%esp) - sp |
| 251 | * 5*4(%esp) - flags |
| 252 | * 4*4(%esp) - cs |
| 253 | * 3*4(%esp) - ip |
| 254 | * 2*4(%esp) - orig_eax |
| 255 | * 1*4(%esp) - gs / function |
| 256 | * 0*4(%esp) - fs |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 257 | */ |
| 258 | |
| 259 | pushl %ss # ss |
| 260 | pushl %esp # sp (points at ss) |
Andy Lutomirski | 82cb8a0 | 2019-11-20 09:56:36 +0100 | [diff] [blame^] | 261 | addl $7*4, (%esp) # point sp back at the previous context |
| 262 | pushl 7*4(%esp) # flags |
| 263 | pushl 7*4(%esp) # cs |
| 264 | pushl 7*4(%esp) # ip |
| 265 | pushl 7*4(%esp) # orig_eax |
| 266 | pushl 7*4(%esp) # gs / function |
| 267 | pushl 7*4(%esp) # fs |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 268 | .Lfrom_usermode_no_fixup_\@: |
| 269 | .endm |
| 270 | |
| 271 | .macro IRET_FRAME |
Andy Lutomirski | 4c4fd55 | 2019-11-20 09:49:33 +0100 | [diff] [blame] | 272 | /* |
| 273 | * We're called with %ds, %es, %fs, and %gs from the interrupted |
| 274 | * frame, so we shouldn't use them. Also, we may be in ESPFIX |
| 275 | * mode and therefore have a nonzero SS base and an offset ESP, |
| 276 | * so any attempt to access the stack needs to use SS. (except for |
| 277 | * accesses through %esp, which automatically use SS.) |
| 278 | */ |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 279 | testl $CS_FROM_KERNEL, 1*4(%esp) |
| 280 | jz .Lfinished_frame_\@ |
| 281 | |
| 282 | /* |
| 283 | * Reconstruct the 3 entry IRET frame right after the (modified) |
| 284 | * regs->sp without lowering %esp in between, such that an NMI in the |
| 285 | * middle doesn't scribble our stack. |
| 286 | */ |
| 287 | pushl %eax |
| 288 | pushl %ecx |
| 289 | movl 5*4(%esp), %eax # (modified) regs->sp |
| 290 | |
| 291 | movl 4*4(%esp), %ecx # flags |
Andy Lutomirski | 4c4fd55 | 2019-11-20 09:49:33 +0100 | [diff] [blame] | 292 | movl %ecx, %ss:-1*4(%eax) |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 293 | |
| 294 | movl 3*4(%esp), %ecx # cs |
| 295 | andl $0x0000ffff, %ecx |
Andy Lutomirski | 4c4fd55 | 2019-11-20 09:49:33 +0100 | [diff] [blame] | 296 | movl %ecx, %ss:-2*4(%eax) |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 297 | |
| 298 | movl 2*4(%esp), %ecx # ip |
Andy Lutomirski | 4c4fd55 | 2019-11-20 09:49:33 +0100 | [diff] [blame] | 299 | movl %ecx, %ss:-3*4(%eax) |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 300 | |
| 301 | movl 1*4(%esp), %ecx # eax |
Andy Lutomirski | 4c4fd55 | 2019-11-20 09:49:33 +0100 | [diff] [blame] | 302 | movl %ecx, %ss:-4*4(%eax) |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 303 | |
| 304 | popl %ecx |
Andy Lutomirski | 4c4fd55 | 2019-11-20 09:49:33 +0100 | [diff] [blame] | 305 | lea -4*4(%eax), %esp |
Peter Zijlstra | 3c88c69 | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 306 | popl %eax |
| 307 | .Lfinished_frame_\@: |
| 308 | .endm |
| 309 | |
Peter Zijlstra | e67f1c1 | 2019-07-11 13:40:56 +0200 | [diff] [blame] | 310 | .macro SAVE_ALL pt_regs_ax=%eax switch_stacks=0 skip_gs=0 |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 311 | cld |
Peter Zijlstra | e67f1c1 | 2019-07-11 13:40:56 +0200 | [diff] [blame] | 312 | .if \skip_gs == 0 |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 313 | PUSH_GS |
Peter Zijlstra | e67f1c1 | 2019-07-11 13:40:56 +0200 | [diff] [blame] | 314 | .endif |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 315 | pushl %fs |
Andy Lutomirski | 82cb8a0 | 2019-11-20 09:56:36 +0100 | [diff] [blame^] | 316 | FIXUP_FRAME |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 317 | pushl %es |
| 318 | pushl %ds |
Andy Lutomirski | 150ac78 | 2015-10-05 17:48:14 -0700 | [diff] [blame] | 319 | pushl \pt_regs_ax |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 320 | pushl %ebp |
| 321 | pushl %edi |
| 322 | pushl %esi |
| 323 | pushl %edx |
| 324 | pushl %ecx |
| 325 | pushl %ebx |
| 326 | movl $(__USER_DS), %edx |
| 327 | movl %edx, %ds |
| 328 | movl %edx, %es |
| 329 | movl $(__KERNEL_PERCPU), %edx |
| 330 | movl %edx, %fs |
Peter Zijlstra | e67f1c1 | 2019-07-11 13:40:56 +0200 | [diff] [blame] | 331 | .if \skip_gs == 0 |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 332 | SET_KERNEL_GS %edx |
Peter Zijlstra | e67f1c1 | 2019-07-11 13:40:56 +0200 | [diff] [blame] | 333 | .endif |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 334 | /* Switch to kernel stack if necessary */ |
| 335 | .if \switch_stacks > 0 |
| 336 | SWITCH_TO_KERNEL_STACK |
| 337 | .endif |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 338 | .endm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
Joerg Roedel | b65bef4 | 2018-07-18 11:40:50 +0200 | [diff] [blame] | 340 | .macro SAVE_ALL_NMI cr3_reg:req |
Joerg Roedel | 8b376fa | 2018-07-18 11:40:46 +0200 | [diff] [blame] | 341 | SAVE_ALL |
Joerg Roedel | b65bef4 | 2018-07-18 11:40:50 +0200 | [diff] [blame] | 342 | |
Joerg Roedel | 9719370 | 2018-07-18 11:41:16 +0200 | [diff] [blame] | 343 | BUG_IF_WRONG_CR3 |
| 344 | |
Joerg Roedel | b65bef4 | 2018-07-18 11:40:50 +0200 | [diff] [blame] | 345 | /* |
| 346 | * Now switch the CR3 when PTI is enabled. |
| 347 | * |
| 348 | * We can enter with either user or kernel cr3, the code will |
| 349 | * store the old cr3 in \cr3_reg and switches to the kernel cr3 |
| 350 | * if necessary. |
| 351 | */ |
| 352 | SWITCH_TO_KERNEL_CR3 scratch_reg=\cr3_reg |
| 353 | |
| 354 | .Lend_\@: |
Joerg Roedel | 8b376fa | 2018-07-18 11:40:46 +0200 | [diff] [blame] | 355 | .endm |
Joerg Roedel | 9719370 | 2018-07-18 11:41:16 +0200 | [diff] [blame] | 356 | |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 357 | .macro RESTORE_INT_REGS |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 358 | popl %ebx |
| 359 | popl %ecx |
| 360 | popl %edx |
| 361 | popl %esi |
| 362 | popl %edi |
| 363 | popl %ebp |
| 364 | popl %eax |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 365 | .endm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 367 | .macro RESTORE_REGS pop=0 |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 368 | RESTORE_INT_REGS |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 369 | 1: popl %ds |
| 370 | 2: popl %es |
| 371 | 3: popl %fs |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 372 | POP_GS \pop |
Peter Zijlstra | 40ad219 | 2019-11-20 13:05:06 +0100 | [diff] [blame] | 373 | IRET_FRAME |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 374 | .pushsection .fixup, "ax" |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 375 | 4: movl $0, (%esp) |
| 376 | jmp 1b |
| 377 | 5: movl $0, (%esp) |
| 378 | jmp 2b |
| 379 | 6: movl $0, (%esp) |
| 380 | jmp 3b |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | .popsection |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 382 | _ASM_EXTABLE(1b, 4b) |
| 383 | _ASM_EXTABLE(2b, 5b) |
| 384 | _ASM_EXTABLE(3b, 6b) |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 385 | POP_GS_EX |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 386 | .endm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Joerg Roedel | b65bef4 | 2018-07-18 11:40:50 +0200 | [diff] [blame] | 388 | .macro RESTORE_ALL_NMI cr3_reg:req pop=0 |
| 389 | /* |
| 390 | * Now switch the CR3 when PTI is enabled. |
| 391 | * |
| 392 | * We enter with kernel cr3 and switch the cr3 to the value |
| 393 | * stored on \cr3_reg, which is either a user or a kernel cr3. |
| 394 | */ |
| 395 | ALTERNATIVE "jmp .Lswitched_\@", "", X86_FEATURE_PTI |
| 396 | |
| 397 | testl $PTI_SWITCH_MASK, \cr3_reg |
| 398 | jz .Lswitched_\@ |
| 399 | |
| 400 | /* User cr3 in \cr3_reg - write it to hardware cr3 */ |
| 401 | movl \cr3_reg, %cr3 |
| 402 | |
| 403 | .Lswitched_\@: |
| 404 | |
Joerg Roedel | 9719370 | 2018-07-18 11:41:16 +0200 | [diff] [blame] | 405 | BUG_IF_WRONG_CR3 |
| 406 | |
Joerg Roedel | 8b376fa | 2018-07-18 11:40:46 +0200 | [diff] [blame] | 407 | RESTORE_REGS pop=\pop |
| 408 | .endm |
| 409 | |
Joerg Roedel | 46eabca | 2018-07-18 11:40:41 +0200 | [diff] [blame] | 410 | .macro CHECK_AND_APPLY_ESPFIX |
| 411 | #ifdef CONFIG_X86_ESPFIX32 |
| 412 | #define GDT_ESPFIX_SS PER_CPU_VAR(gdt_page) + (GDT_ENTRY_ESPFIX_SS * 8) |
| 413 | |
| 414 | ALTERNATIVE "jmp .Lend_\@", "", X86_BUG_ESPFIX |
| 415 | |
| 416 | movl PT_EFLAGS(%esp), %eax # mix EFLAGS, SS and CS |
| 417 | /* |
| 418 | * Warning: PT_OLDSS(%esp) contains the wrong/random values if we |
| 419 | * are returning to the kernel. |
| 420 | * See comments in process.c:copy_thread() for details. |
| 421 | */ |
| 422 | movb PT_OLDSS(%esp), %ah |
| 423 | movb PT_CS(%esp), %al |
| 424 | andl $(X86_EFLAGS_VM | (SEGMENT_TI_MASK << 8) | SEGMENT_RPL_MASK), %eax |
| 425 | cmpl $((SEGMENT_LDT << 8) | USER_RPL), %eax |
| 426 | jne .Lend_\@ # returning to user-space with LDT SS |
| 427 | |
| 428 | /* |
| 429 | * Setup and switch to ESPFIX stack |
| 430 | * |
| 431 | * We're returning to userspace with a 16 bit stack. The CPU will not |
| 432 | * restore the high word of ESP for us on executing iret... This is an |
| 433 | * "official" bug of all the x86-compatible CPUs, which we can work |
| 434 | * around to make dosemu and wine happy. We do this by preloading the |
| 435 | * high word of ESP with the high word of the userspace ESP while |
| 436 | * compensating for the offset by changing to the ESPFIX segment with |
| 437 | * a base address that matches for the difference. |
| 438 | */ |
| 439 | mov %esp, %edx /* load kernel esp */ |
| 440 | mov PT_OLDESP(%esp), %eax /* load userspace esp */ |
| 441 | mov %dx, %ax /* eax: new kernel esp */ |
| 442 | sub %eax, %edx /* offset (low word is 0) */ |
| 443 | shr $16, %edx |
| 444 | mov %dl, GDT_ESPFIX_SS + 4 /* bits 16..23 */ |
| 445 | mov %dh, GDT_ESPFIX_SS + 7 /* bits 24..31 */ |
| 446 | pushl $__ESPFIX_SS |
| 447 | pushl %eax /* new kernel esp */ |
| 448 | /* |
| 449 | * Disable interrupts, but do not irqtrace this section: we |
| 450 | * will soon execute iret and the tracer was already set to |
| 451 | * the irqstate after the IRET: |
| 452 | */ |
| 453 | DISABLE_INTERRUPTS(CLBR_ANY) |
| 454 | lss (%esp), %esp /* switch to espfix segment */ |
| 455 | .Lend_\@: |
| 456 | #endif /* CONFIG_X86_ESPFIX32 */ |
| 457 | .endm |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 458 | |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 459 | /* |
| 460 | * Called with pt_regs fully populated and kernel segments loaded, |
| 461 | * so we can access PER_CPU and use the integer registers. |
| 462 | * |
| 463 | * We need to be very careful here with the %esp switch, because an NMI |
| 464 | * can happen everywhere. If the NMI handler finds itself on the |
| 465 | * entry-stack, it will overwrite the task-stack and everything we |
| 466 | * copied there. So allocate the stack-frame on the task-stack and |
| 467 | * switch to it before we do any copying. |
| 468 | */ |
Joerg Roedel | b92a165 | 2018-07-18 11:40:47 +0200 | [diff] [blame] | 469 | |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 470 | .macro SWITCH_TO_KERNEL_STACK |
| 471 | |
| 472 | ALTERNATIVE "", "jmp .Lend_\@", X86_FEATURE_XENPV |
| 473 | |
Joerg Roedel | 9719370 | 2018-07-18 11:41:16 +0200 | [diff] [blame] | 474 | BUG_IF_WRONG_CR3 |
| 475 | |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 476 | SWITCH_TO_KERNEL_CR3 scratch_reg=%eax |
| 477 | |
| 478 | /* |
| 479 | * %eax now contains the entry cr3 and we carry it forward in |
| 480 | * that register for the time this macro runs |
| 481 | */ |
| 482 | |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 483 | /* Are we on the entry stack? Bail out if not! */ |
| 484 | movl PER_CPU_VAR(cpu_entry_area), %ecx |
| 485 | addl $CPU_ENTRY_AREA_entry_stack + SIZEOF_entry_stack, %ecx |
| 486 | subl %esp, %ecx /* ecx = (end of entry_stack) - esp */ |
| 487 | cmpl $SIZEOF_entry_stack, %ecx |
| 488 | jae .Lend_\@ |
| 489 | |
| 490 | /* Load stack pointer into %esi and %edi */ |
| 491 | movl %esp, %esi |
| 492 | movl %esi, %edi |
| 493 | |
| 494 | /* Move %edi to the top of the entry stack */ |
| 495 | andl $(MASK_entry_stack), %edi |
| 496 | addl $(SIZEOF_entry_stack), %edi |
| 497 | |
| 498 | /* Load top of task-stack into %edi */ |
| 499 | movl TSS_entry2task_stack(%edi), %edi |
| 500 | |
Joerg Roedel | b92a165 | 2018-07-18 11:40:47 +0200 | [diff] [blame] | 501 | /* Special case - entry from kernel mode via entry stack */ |
Joerg Roedel | d5e84c2 | 2018-07-20 18:22:23 +0200 | [diff] [blame] | 502 | #ifdef CONFIG_VM86 |
| 503 | movl PT_EFLAGS(%esp), %ecx # mix EFLAGS and CS |
| 504 | movb PT_CS(%esp), %cl |
| 505 | andl $(X86_EFLAGS_VM | SEGMENT_RPL_MASK), %ecx |
| 506 | #else |
| 507 | movl PT_CS(%esp), %ecx |
| 508 | andl $SEGMENT_RPL_MASK, %ecx |
| 509 | #endif |
| 510 | cmpl $USER_RPL, %ecx |
| 511 | jb .Lentry_from_kernel_\@ |
Joerg Roedel | b92a165 | 2018-07-18 11:40:47 +0200 | [diff] [blame] | 512 | |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 513 | /* Bytes to copy */ |
| 514 | movl $PTREGS_SIZE, %ecx |
| 515 | |
| 516 | #ifdef CONFIG_VM86 |
| 517 | testl $X86_EFLAGS_VM, PT_EFLAGS(%esi) |
| 518 | jz .Lcopy_pt_regs_\@ |
| 519 | |
| 520 | /* |
| 521 | * Stack-frame contains 4 additional segment registers when |
| 522 | * coming from VM86 mode |
| 523 | */ |
| 524 | addl $(4 * 4), %ecx |
| 525 | |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 526 | #endif |
Joerg Roedel | b92a165 | 2018-07-18 11:40:47 +0200 | [diff] [blame] | 527 | .Lcopy_pt_regs_\@: |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 528 | |
| 529 | /* Allocate frame on task-stack */ |
| 530 | subl %ecx, %edi |
| 531 | |
| 532 | /* Switch to task-stack */ |
| 533 | movl %edi, %esp |
| 534 | |
| 535 | /* |
| 536 | * We are now on the task-stack and can safely copy over the |
| 537 | * stack-frame |
| 538 | */ |
| 539 | shrl $2, %ecx |
| 540 | cld |
| 541 | rep movsl |
| 542 | |
Joerg Roedel | b92a165 | 2018-07-18 11:40:47 +0200 | [diff] [blame] | 543 | jmp .Lend_\@ |
| 544 | |
| 545 | .Lentry_from_kernel_\@: |
| 546 | |
| 547 | /* |
| 548 | * This handles the case when we enter the kernel from |
| 549 | * kernel-mode and %esp points to the entry-stack. When this |
| 550 | * happens we need to switch to the task-stack to run C code, |
| 551 | * but switch back to the entry-stack again when we approach |
| 552 | * iret and return to the interrupted code-path. This usually |
| 553 | * happens when we hit an exception while restoring user-space |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 554 | * segment registers on the way back to user-space or when the |
| 555 | * sysenter handler runs with eflags.tf set. |
Joerg Roedel | b92a165 | 2018-07-18 11:40:47 +0200 | [diff] [blame] | 556 | * |
| 557 | * When we switch to the task-stack here, we can't trust the |
| 558 | * contents of the entry-stack anymore, as the exception handler |
| 559 | * might be scheduled out or moved to another CPU. Therefore we |
| 560 | * copy the complete entry-stack to the task-stack and set a |
| 561 | * marker in the iret-frame (bit 31 of the CS dword) to detect |
| 562 | * what we've done on the iret path. |
| 563 | * |
| 564 | * On the iret path we copy everything back and switch to the |
| 565 | * entry-stack, so that the interrupted kernel code-path |
| 566 | * continues on the same stack it was interrupted with. |
| 567 | * |
| 568 | * Be aware that an NMI can happen anytime in this code. |
| 569 | * |
| 570 | * %esi: Entry-Stack pointer (same as %esp) |
| 571 | * %edi: Top of the task stack |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 572 | * %eax: CR3 on kernel entry |
Joerg Roedel | b92a165 | 2018-07-18 11:40:47 +0200 | [diff] [blame] | 573 | */ |
| 574 | |
| 575 | /* Calculate number of bytes on the entry stack in %ecx */ |
| 576 | movl %esi, %ecx |
| 577 | |
| 578 | /* %ecx to the top of entry-stack */ |
| 579 | andl $(MASK_entry_stack), %ecx |
| 580 | addl $(SIZEOF_entry_stack), %ecx |
| 581 | |
| 582 | /* Number of bytes on the entry stack to %ecx */ |
| 583 | sub %esi, %ecx |
| 584 | |
| 585 | /* Mark stackframe as coming from entry stack */ |
| 586 | orl $CS_FROM_ENTRY_STACK, PT_CS(%esp) |
| 587 | |
| 588 | /* |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 589 | * Test the cr3 used to enter the kernel and add a marker |
| 590 | * so that we can switch back to it before iret. |
| 591 | */ |
| 592 | testl $PTI_SWITCH_MASK, %eax |
| 593 | jz .Lcopy_pt_regs_\@ |
| 594 | orl $CS_FROM_USER_CR3, PT_CS(%esp) |
| 595 | |
| 596 | /* |
Joerg Roedel | b92a165 | 2018-07-18 11:40:47 +0200 | [diff] [blame] | 597 | * %esi and %edi are unchanged, %ecx contains the number of |
| 598 | * bytes to copy. The code at .Lcopy_pt_regs_\@ will allocate |
| 599 | * the stack-frame on task-stack and copy everything over |
| 600 | */ |
| 601 | jmp .Lcopy_pt_regs_\@ |
| 602 | |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 603 | .Lend_\@: |
| 604 | .endm |
| 605 | |
Brian Gerst | 0100301 | 2016-08-13 12:38:19 -0400 | [diff] [blame] | 606 | /* |
Joerg Roedel | e5862d0 | 2018-07-18 11:40:45 +0200 | [diff] [blame] | 607 | * Switch back from the kernel stack to the entry stack. |
| 608 | * |
| 609 | * The %esp register must point to pt_regs on the task stack. It will |
| 610 | * first calculate the size of the stack-frame to copy, depending on |
| 611 | * whether we return to VM86 mode or not. With that it uses 'rep movsl' |
| 612 | * to copy the contents of the stack over to the entry stack. |
| 613 | * |
| 614 | * We must be very careful here, as we can't trust the contents of the |
| 615 | * task-stack once we switched to the entry-stack. When an NMI happens |
| 616 | * while on the entry-stack, the NMI handler will switch back to the top |
| 617 | * of the task stack, overwriting our stack-frame we are about to copy. |
| 618 | * Therefore we switch the stack only after everything is copied over. |
| 619 | */ |
| 620 | .macro SWITCH_TO_ENTRY_STACK |
| 621 | |
| 622 | ALTERNATIVE "", "jmp .Lend_\@", X86_FEATURE_XENPV |
| 623 | |
| 624 | /* Bytes to copy */ |
| 625 | movl $PTREGS_SIZE, %ecx |
| 626 | |
| 627 | #ifdef CONFIG_VM86 |
| 628 | testl $(X86_EFLAGS_VM), PT_EFLAGS(%esp) |
| 629 | jz .Lcopy_pt_regs_\@ |
| 630 | |
| 631 | /* Additional 4 registers to copy when returning to VM86 mode */ |
| 632 | addl $(4 * 4), %ecx |
| 633 | |
| 634 | .Lcopy_pt_regs_\@: |
| 635 | #endif |
| 636 | |
| 637 | /* Initialize source and destination for movsl */ |
| 638 | movl PER_CPU_VAR(cpu_tss_rw + TSS_sp0), %edi |
| 639 | subl %ecx, %edi |
| 640 | movl %esp, %esi |
| 641 | |
| 642 | /* Save future stack pointer in %ebx */ |
| 643 | movl %edi, %ebx |
| 644 | |
| 645 | /* Copy over the stack-frame */ |
| 646 | shrl $2, %ecx |
| 647 | cld |
| 648 | rep movsl |
| 649 | |
| 650 | /* |
| 651 | * Switch to entry-stack - needs to happen after everything is |
| 652 | * copied because the NMI handler will overwrite the task-stack |
| 653 | * when on entry-stack |
| 654 | */ |
| 655 | movl %ebx, %esp |
| 656 | |
| 657 | .Lend_\@: |
| 658 | .endm |
| 659 | |
| 660 | /* |
Joerg Roedel | b92a165 | 2018-07-18 11:40:47 +0200 | [diff] [blame] | 661 | * This macro handles the case when we return to kernel-mode on the iret |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 662 | * path and have to switch back to the entry stack and/or user-cr3 |
Joerg Roedel | b92a165 | 2018-07-18 11:40:47 +0200 | [diff] [blame] | 663 | * |
| 664 | * See the comments below the .Lentry_from_kernel_\@ label in the |
| 665 | * SWITCH_TO_KERNEL_STACK macro for more details. |
| 666 | */ |
| 667 | .macro PARANOID_EXIT_TO_KERNEL_MODE |
| 668 | |
| 669 | /* |
| 670 | * Test if we entered the kernel with the entry-stack. Most |
| 671 | * likely we did not, because this code only runs on the |
| 672 | * return-to-kernel path. |
| 673 | */ |
| 674 | testl $CS_FROM_ENTRY_STACK, PT_CS(%esp) |
| 675 | jz .Lend_\@ |
| 676 | |
| 677 | /* Unlikely slow-path */ |
| 678 | |
| 679 | /* Clear marker from stack-frame */ |
| 680 | andl $(~CS_FROM_ENTRY_STACK), PT_CS(%esp) |
| 681 | |
| 682 | /* Copy the remaining task-stack contents to entry-stack */ |
| 683 | movl %esp, %esi |
| 684 | movl PER_CPU_VAR(cpu_tss_rw + TSS_sp0), %edi |
| 685 | |
| 686 | /* Bytes on the task-stack to ecx */ |
| 687 | movl PER_CPU_VAR(cpu_tss_rw + TSS_sp1), %ecx |
| 688 | subl %esi, %ecx |
| 689 | |
| 690 | /* Allocate stack-frame on entry-stack */ |
| 691 | subl %ecx, %edi |
| 692 | |
| 693 | /* |
| 694 | * Save future stack-pointer, we must not switch until the |
| 695 | * copy is done, otherwise the NMI handler could destroy the |
| 696 | * contents of the task-stack we are about to copy. |
| 697 | */ |
| 698 | movl %edi, %ebx |
| 699 | |
| 700 | /* Do the copy */ |
| 701 | shrl $2, %ecx |
| 702 | cld |
| 703 | rep movsl |
| 704 | |
| 705 | /* Safe to switch to entry-stack now */ |
| 706 | movl %ebx, %esp |
| 707 | |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 708 | /* |
| 709 | * We came from entry-stack and need to check if we also need to |
| 710 | * switch back to user cr3. |
| 711 | */ |
| 712 | testl $CS_FROM_USER_CR3, PT_CS(%esp) |
| 713 | jz .Lend_\@ |
| 714 | |
| 715 | /* Clear marker from stack-frame */ |
| 716 | andl $(~CS_FROM_USER_CR3), PT_CS(%esp) |
| 717 | |
| 718 | SWITCH_TO_USER_CR3 scratch_reg=%eax |
| 719 | |
Joerg Roedel | b92a165 | 2018-07-18 11:40:47 +0200 | [diff] [blame] | 720 | .Lend_\@: |
| 721 | .endm |
| 722 | /* |
Brian Gerst | 0100301 | 2016-08-13 12:38:19 -0400 | [diff] [blame] | 723 | * %eax: prev task |
| 724 | * %edx: next task |
| 725 | */ |
| 726 | ENTRY(__switch_to_asm) |
| 727 | /* |
| 728 | * Save callee-saved registers |
| 729 | * This must match the order in struct inactive_task_frame |
| 730 | */ |
| 731 | pushl %ebp |
| 732 | pushl %ebx |
| 733 | pushl %edi |
| 734 | pushl %esi |
Peter Zijlstra | 6690e86 | 2019-02-14 10:30:52 +0100 | [diff] [blame] | 735 | pushfl |
Brian Gerst | 0100301 | 2016-08-13 12:38:19 -0400 | [diff] [blame] | 736 | |
| 737 | /* switch stack */ |
| 738 | movl %esp, TASK_threadsp(%eax) |
| 739 | movl TASK_threadsp(%edx), %esp |
| 740 | |
Linus Torvalds | 050e9ba | 2018-06-14 12:21:18 +0900 | [diff] [blame] | 741 | #ifdef CONFIG_STACKPROTECTOR |
Brian Gerst | 0100301 | 2016-08-13 12:38:19 -0400 | [diff] [blame] | 742 | movl TASK_stack_canary(%edx), %ebx |
| 743 | movl %ebx, PER_CPU_VAR(stack_canary)+stack_canary_offset |
| 744 | #endif |
| 745 | |
David Woodhouse | c995efd | 2018-01-12 17:49:25 +0000 | [diff] [blame] | 746 | #ifdef CONFIG_RETPOLINE |
| 747 | /* |
| 748 | * When switching from a shallower to a deeper call stack |
| 749 | * the RSB may either underflow or use entries populated |
| 750 | * with userspace addresses. On CPUs where those concerns |
| 751 | * exist, overwrite the RSB with entries which capture |
| 752 | * speculative execution to prevent attack. |
| 753 | */ |
David Woodhouse | d1c9910 | 2018-02-19 10:50:56 +0000 | [diff] [blame] | 754 | FILL_RETURN_BUFFER %ebx, RSB_CLEAR_LOOPS, X86_FEATURE_RSB_CTXSW |
David Woodhouse | c995efd | 2018-01-12 17:49:25 +0000 | [diff] [blame] | 755 | #endif |
| 756 | |
Brian Gerst | 0100301 | 2016-08-13 12:38:19 -0400 | [diff] [blame] | 757 | /* restore callee-saved registers */ |
Peter Zijlstra | 6690e86 | 2019-02-14 10:30:52 +0100 | [diff] [blame] | 758 | popfl |
Brian Gerst | 0100301 | 2016-08-13 12:38:19 -0400 | [diff] [blame] | 759 | popl %esi |
| 760 | popl %edi |
| 761 | popl %ebx |
| 762 | popl %ebp |
| 763 | |
| 764 | jmp __switch_to |
| 765 | END(__switch_to_asm) |
| 766 | |
| 767 | /* |
Josh Poimboeuf | ebd5749 | 2017-05-23 10:37:29 -0500 | [diff] [blame] | 768 | * The unwinder expects the last frame on the stack to always be at the same |
| 769 | * offset from the end of the page, which allows it to validate the stack. |
| 770 | * Calling schedule_tail() directly would break that convention because its an |
| 771 | * asmlinkage function so its argument has to be pushed on the stack. This |
| 772 | * wrapper creates a proper "end of stack" frame header before the call. |
| 773 | */ |
| 774 | ENTRY(schedule_tail_wrapper) |
| 775 | FRAME_BEGIN |
| 776 | |
| 777 | pushl %eax |
| 778 | call schedule_tail |
| 779 | popl %eax |
| 780 | |
| 781 | FRAME_END |
| 782 | ret |
| 783 | ENDPROC(schedule_tail_wrapper) |
| 784 | /* |
Brian Gerst | 0100301 | 2016-08-13 12:38:19 -0400 | [diff] [blame] | 785 | * A newly forked process directly context switches into this address. |
| 786 | * |
| 787 | * eax: prev task we switched from |
Brian Gerst | 616d248 | 2016-08-13 12:38:20 -0400 | [diff] [blame] | 788 | * ebx: kernel thread func (NULL for user thread) |
| 789 | * edi: kernel thread arg |
Brian Gerst | 0100301 | 2016-08-13 12:38:19 -0400 | [diff] [blame] | 790 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | ENTRY(ret_from_fork) |
Josh Poimboeuf | ebd5749 | 2017-05-23 10:37:29 -0500 | [diff] [blame] | 792 | call schedule_tail_wrapper |
Andy Lutomirski | 39e8701 | 2015-10-05 17:48:13 -0700 | [diff] [blame] | 793 | |
Brian Gerst | 616d248 | 2016-08-13 12:38:20 -0400 | [diff] [blame] | 794 | testl %ebx, %ebx |
| 795 | jnz 1f /* kernel threads are uncommon */ |
| 796 | |
| 797 | 2: |
Andy Lutomirski | 39e8701 | 2015-10-05 17:48:13 -0700 | [diff] [blame] | 798 | /* When we fork, we trace the syscall return in the child, too. */ |
Josh Poimboeuf | ebd5749 | 2017-05-23 10:37:29 -0500 | [diff] [blame] | 799 | movl %esp, %eax |
Andy Lutomirski | 39e8701 | 2015-10-05 17:48:13 -0700 | [diff] [blame] | 800 | call syscall_return_slowpath |
Alexander Popov | afaef01 | 2018-08-17 01:16:58 +0300 | [diff] [blame] | 801 | STACKLEAK_ERASE |
Andy Lutomirski | 39e8701 | 2015-10-05 17:48:13 -0700 | [diff] [blame] | 802 | jmp restore_all |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | |
Brian Gerst | 616d248 | 2016-08-13 12:38:20 -0400 | [diff] [blame] | 804 | /* kernel thread */ |
| 805 | 1: movl %edi, %eax |
David Woodhouse | 2641f08 | 2018-01-11 21:46:28 +0000 | [diff] [blame] | 806 | CALL_NOSPEC %ebx |
Andy Lutomirski | 39e8701 | 2015-10-05 17:48:13 -0700 | [diff] [blame] | 807 | /* |
Brian Gerst | 616d248 | 2016-08-13 12:38:20 -0400 | [diff] [blame] | 808 | * A kernel thread is allowed to return here after successfully |
| 809 | * calling do_execve(). Exit to userspace to complete the execve() |
| 810 | * syscall. |
Andy Lutomirski | 39e8701 | 2015-10-05 17:48:13 -0700 | [diff] [blame] | 811 | */ |
Brian Gerst | 616d248 | 2016-08-13 12:38:20 -0400 | [diff] [blame] | 812 | movl $0, PT_EAX(%esp) |
| 813 | jmp 2b |
| 814 | END(ret_from_fork) |
Al Viro | 6783eaa2 | 2012-08-02 23:05:11 +0400 | [diff] [blame] | 815 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | /* |
| 817 | * Return to user mode is not as complex as all this looks, |
| 818 | * but we want the default path for a system call return to |
| 819 | * go as quickly as possible which is why some of this is |
| 820 | * less clear than it otherwise should be. |
| 821 | */ |
| 822 | |
| 823 | # userspace resumption stub bypassing syscall exit tracing |
| 824 | ALIGN |
| 825 | ret_from_exception: |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 826 | preempt_stop(CLBR_ANY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | ret_from_intr: |
Dmitry Adamushko | 29a2e28 | 2012-03-22 21:39:25 +0100 | [diff] [blame] | 828 | #ifdef CONFIG_VM86 |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 829 | movl PT_EFLAGS(%esp), %eax # mix EFLAGS and CS |
| 830 | movb PT_CS(%esp), %al |
| 831 | andl $(X86_EFLAGS_VM | SEGMENT_RPL_MASK), %eax |
Dmitry Adamushko | 29a2e28 | 2012-03-22 21:39:25 +0100 | [diff] [blame] | 832 | #else |
| 833 | /* |
Al Viro | 6783eaa2 | 2012-08-02 23:05:11 +0400 | [diff] [blame] | 834 | * We can be coming here from child spawned by kernel_thread(). |
Dmitry Adamushko | 29a2e28 | 2012-03-22 21:39:25 +0100 | [diff] [blame] | 835 | */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 836 | movl PT_CS(%esp), %eax |
| 837 | andl $SEGMENT_RPL_MASK, %eax |
Dmitry Adamushko | 29a2e28 | 2012-03-22 21:39:25 +0100 | [diff] [blame] | 838 | #endif |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 839 | cmpl $USER_RPL, %eax |
Peter Zijlstra | 5e1246f | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 840 | jb restore_all_kernel # not returning to v8086 or userspace |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 841 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | ENTRY(resume_userspace) |
Andy Lutomirski | 5d73fc7 | 2015-07-31 14:41:09 -0700 | [diff] [blame] | 843 | DISABLE_INTERRUPTS(CLBR_ANY) |
Peter Zijlstra | e32e58a | 2008-06-06 10:14:08 +0200 | [diff] [blame] | 844 | TRACE_IRQS_OFF |
Andy Lutomirski | 5d73fc7 | 2015-07-31 14:41:09 -0700 | [diff] [blame] | 845 | movl %esp, %eax |
| 846 | call prepare_exit_to_usermode |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 847 | jmp restore_all |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 848 | END(ret_from_exception) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | |
Andy Lutomirski | f2b3757 | 2016-03-09 19:00:30 -0800 | [diff] [blame] | 850 | GLOBAL(__begin_SYSENTER_singlestep_region) |
| 851 | /* |
| 852 | * All code from here through __end_SYSENTER_singlestep_region is subject |
| 853 | * to being single-stepped if a user program sets TF and executes SYSENTER. |
| 854 | * There is absolutely nothing that we can do to prevent this from happening |
| 855 | * (thanks Intel!). To keep our handling of this situation as simple as |
| 856 | * possible, we handle TF just like AC and NT, except that our #DB handler |
| 857 | * will ignore all of the single-step traps generated in this range. |
| 858 | */ |
| 859 | |
Juergen Gross | 28c11b0 | 2018-08-28 09:40:12 +0200 | [diff] [blame] | 860 | #ifdef CONFIG_XEN_PV |
Andy Lutomirski | f2b3757 | 2016-03-09 19:00:30 -0800 | [diff] [blame] | 861 | /* |
| 862 | * Xen doesn't set %esp to be precisely what the normal SYSENTER |
| 863 | * entry point expects, so fix it up before using the normal path. |
| 864 | */ |
| 865 | ENTRY(xen_sysenter_target) |
| 866 | addl $5*4, %esp /* remove xen-provided frame */ |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 867 | jmp .Lsysenter_past_esp |
Andy Lutomirski | f2b3757 | 2016-03-09 19:00:30 -0800 | [diff] [blame] | 868 | #endif |
| 869 | |
Andy Lutomirski | fda57b2 | 2016-03-09 19:00:35 -0800 | [diff] [blame] | 870 | /* |
| 871 | * 32-bit SYSENTER entry. |
| 872 | * |
| 873 | * 32-bit system calls through the vDSO's __kernel_vsyscall enter here |
| 874 | * if X86_FEATURE_SEP is available. This is the preferred system call |
| 875 | * entry on 32-bit systems. |
| 876 | * |
| 877 | * The SYSENTER instruction, in principle, should *only* occur in the |
| 878 | * vDSO. In practice, a small number of Android devices were shipped |
| 879 | * with a copy of Bionic that inlined a SYSENTER instruction. This |
| 880 | * never happened in any of Google's Bionic versions -- it only happened |
| 881 | * in a narrow range of Intel-provided versions. |
| 882 | * |
| 883 | * SYSENTER loads SS, ESP, CS, and EIP from previously programmed MSRs. |
| 884 | * IF and VM in RFLAGS are cleared (IOW: interrupts are off). |
| 885 | * SYSENTER does not save anything on the stack, |
| 886 | * and does not save old EIP (!!!), ESP, or EFLAGS. |
| 887 | * |
| 888 | * To avoid losing track of EFLAGS.VM (and thus potentially corrupting |
| 889 | * user and/or vm86 state), we explicitly disable the SYSENTER |
| 890 | * instruction in vm86 mode by reprogramming the MSRs. |
| 891 | * |
| 892 | * Arguments: |
| 893 | * eax system call number |
| 894 | * ebx arg1 |
| 895 | * ecx arg2 |
| 896 | * edx arg3 |
| 897 | * esi arg4 |
| 898 | * edi arg5 |
| 899 | * ebp user stack |
| 900 | * 0(%ebp) arg6 |
| 901 | */ |
Ingo Molnar | 4c8cd0c | 2015-06-08 08:33:56 +0200 | [diff] [blame] | 902 | ENTRY(entry_SYSENTER_32) |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 903 | /* |
| 904 | * On entry-stack with all userspace-regs live - save and |
| 905 | * restore eflags and %eax to use it as scratch-reg for the cr3 |
| 906 | * switch. |
| 907 | */ |
| 908 | pushfl |
| 909 | pushl %eax |
Joerg Roedel | 9719370 | 2018-07-18 11:41:16 +0200 | [diff] [blame] | 910 | BUG_IF_WRONG_CR3 no_user_check=1 |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 911 | SWITCH_TO_KERNEL_CR3 scratch_reg=%eax |
| 912 | popl %eax |
| 913 | popfl |
| 914 | |
| 915 | /* Stack empty again, switch to task stack */ |
Joerg Roedel | ae2e565 | 2018-07-18 11:40:39 +0200 | [diff] [blame] | 916 | movl TSS_entry2task_stack(%esp), %esp |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 917 | |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 918 | .Lsysenter_past_esp: |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 919 | pushl $__USER_DS /* pt_regs->ss */ |
Andy Lutomirski | 30bfa7b | 2015-12-16 23:18:48 -0800 | [diff] [blame] | 920 | pushl %ebp /* pt_regs->sp (stashed in bp) */ |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 921 | pushfl /* pt_regs->flags (except IF = 0) */ |
| 922 | orl $X86_EFLAGS_IF, (%esp) /* Fix IF */ |
| 923 | pushl $__USER_CS /* pt_regs->cs */ |
| 924 | pushl $0 /* pt_regs->ip = 0 (placeholder) */ |
| 925 | pushl %eax /* pt_regs->orig_ax */ |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 926 | SAVE_ALL pt_regs_ax=$-ENOSYS /* save rest, stack already switched */ |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 927 | |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 928 | /* |
Andy Lutomirski | f2b3757 | 2016-03-09 19:00:30 -0800 | [diff] [blame] | 929 | * SYSENTER doesn't filter flags, so we need to clear NT, AC |
| 930 | * and TF ourselves. To save a few cycles, we can check whether |
Andy Lutomirski | 67f590e | 2016-03-09 19:00:26 -0800 | [diff] [blame] | 931 | * either was set instead of doing an unconditional popfq. |
| 932 | * This needs to happen before enabling interrupts so that |
| 933 | * we don't get preempted with NT set. |
| 934 | * |
Andy Lutomirski | f2b3757 | 2016-03-09 19:00:30 -0800 | [diff] [blame] | 935 | * If TF is set, we will single-step all the way to here -- do_debug |
| 936 | * will ignore all the traps. (Yes, this is slow, but so is |
| 937 | * single-stepping in general. This allows us to avoid having |
| 938 | * a more complicated code to handle the case where a user program |
| 939 | * forces us to single-step through the SYSENTER entry code.) |
| 940 | * |
Andy Lutomirski | 67f590e | 2016-03-09 19:00:26 -0800 | [diff] [blame] | 941 | * NB.: .Lsysenter_fix_flags is a label with the code under it moved |
| 942 | * out-of-line as an optimization: NT is unlikely to be set in the |
| 943 | * majority of the cases and instead of polluting the I$ unnecessarily, |
| 944 | * we're keeping that code behind a branch which will predict as |
| 945 | * not-taken and therefore its instructions won't be fetched. |
| 946 | */ |
Andy Lutomirski | f2b3757 | 2016-03-09 19:00:30 -0800 | [diff] [blame] | 947 | testl $X86_EFLAGS_NT|X86_EFLAGS_AC|X86_EFLAGS_TF, PT_EFLAGS(%esp) |
Andy Lutomirski | 67f590e | 2016-03-09 19:00:26 -0800 | [diff] [blame] | 948 | jnz .Lsysenter_fix_flags |
| 949 | .Lsysenter_flags_fixed: |
| 950 | |
| 951 | /* |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 952 | * User mode is traced as though IRQs are on, and SYSENTER |
| 953 | * turned them off. |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 954 | */ |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 955 | TRACE_IRQS_OFF |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 956 | |
| 957 | movl %esp, %eax |
| 958 | call do_fast_syscall_32 |
Boris Ostrovsky | 91e2eea | 2015-11-19 16:55:45 -0500 | [diff] [blame] | 959 | /* XEN PV guests always use IRET path */ |
| 960 | ALTERNATIVE "testl %eax, %eax; jz .Lsyscall_32_done", \ |
| 961 | "jmp .Lsyscall_32_done", X86_FEATURE_XENPV |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 962 | |
Alexander Popov | afaef01 | 2018-08-17 01:16:58 +0300 | [diff] [blame] | 963 | STACKLEAK_ERASE |
| 964 | |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 965 | /* Opportunistic SYSEXIT */ |
| 966 | TRACE_IRQS_ON /* User mode traces as IRQs on. */ |
Joerg Roedel | e5862d0 | 2018-07-18 11:40:45 +0200 | [diff] [blame] | 967 | |
| 968 | /* |
| 969 | * Setup entry stack - we keep the pointer in %eax and do the |
| 970 | * switch after almost all user-state is restored. |
| 971 | */ |
| 972 | |
| 973 | /* Load entry stack pointer and allocate frame for eflags/eax */ |
| 974 | movl PER_CPU_VAR(cpu_tss_rw + TSS_sp0), %eax |
| 975 | subl $(2*4), %eax |
| 976 | |
| 977 | /* Copy eflags and eax to entry stack */ |
| 978 | movl PT_EFLAGS(%esp), %edi |
| 979 | movl PT_EAX(%esp), %esi |
| 980 | movl %edi, (%eax) |
| 981 | movl %esi, 4(%eax) |
| 982 | |
| 983 | /* Restore user registers and segments */ |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 984 | movl PT_EIP(%esp), %edx /* pt_regs->ip */ |
| 985 | movl PT_OLDESP(%esp), %ecx /* pt_regs->sp */ |
Andy Lutomirski | 3bd2951 | 2015-10-16 15:42:55 -0700 | [diff] [blame] | 986 | 1: mov PT_FS(%esp), %fs |
| 987 | PTGS_TO_GS |
Joerg Roedel | e5862d0 | 2018-07-18 11:40:45 +0200 | [diff] [blame] | 988 | |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 989 | popl %ebx /* pt_regs->bx */ |
| 990 | addl $2*4, %esp /* skip pt_regs->cx and pt_regs->dx */ |
| 991 | popl %esi /* pt_regs->si */ |
| 992 | popl %edi /* pt_regs->di */ |
| 993 | popl %ebp /* pt_regs->bp */ |
Joerg Roedel | e5862d0 | 2018-07-18 11:40:45 +0200 | [diff] [blame] | 994 | |
| 995 | /* Switch to entry stack */ |
| 996 | movl %eax, %esp |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 997 | |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 998 | /* Now ready to switch the cr3 */ |
| 999 | SWITCH_TO_USER_CR3 scratch_reg=%eax |
| 1000 | |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 1001 | /* |
Andy Lutomirski | c2c9b52 | 2016-03-09 19:00:27 -0800 | [diff] [blame] | 1002 | * Restore all flags except IF. (We restore IF separately because |
| 1003 | * STI gives a one-instruction window in which we won't be interrupted, |
| 1004 | * whereas POPF does not.) |
| 1005 | */ |
Jan Beulich | 236f0cd | 2018-06-25 04:21:59 -0600 | [diff] [blame] | 1006 | btrl $X86_EFLAGS_IF_BIT, (%esp) |
Joerg Roedel | 9719370 | 2018-07-18 11:41:16 +0200 | [diff] [blame] | 1007 | BUG_IF_WRONG_CR3 no_user_check=1 |
Andy Lutomirski | c2c9b52 | 2016-03-09 19:00:27 -0800 | [diff] [blame] | 1008 | popfl |
Joerg Roedel | e5862d0 | 2018-07-18 11:40:45 +0200 | [diff] [blame] | 1009 | popl %eax |
Andy Lutomirski | c2c9b52 | 2016-03-09 19:00:27 -0800 | [diff] [blame] | 1010 | |
| 1011 | /* |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 1012 | * Return back to the vDSO, which will pop ecx and edx. |
| 1013 | * Don't bother with DS and ES (they already contain __USER_DS). |
| 1014 | */ |
Boris Ostrovsky | 88c15ec | 2015-11-19 16:55:46 -0500 | [diff] [blame] | 1015 | sti |
| 1016 | sysexit |
Roland McGrath | af0575b | 2008-06-24 04:16:52 -0700 | [diff] [blame] | 1017 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1018 | .pushsection .fixup, "ax" |
| 1019 | 2: movl $0, PT_FS(%esp) |
| 1020 | jmp 1b |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 1021 | .popsection |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1022 | _ASM_EXTABLE(1b, 2b) |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 1023 | PTGS_TO_GS_EX |
Andy Lutomirski | 67f590e | 2016-03-09 19:00:26 -0800 | [diff] [blame] | 1024 | |
| 1025 | .Lsysenter_fix_flags: |
| 1026 | pushl $X86_EFLAGS_FIXED |
| 1027 | popfl |
| 1028 | jmp .Lsysenter_flags_fixed |
Andy Lutomirski | f2b3757 | 2016-03-09 19:00:30 -0800 | [diff] [blame] | 1029 | GLOBAL(__end_SYSENTER_singlestep_region) |
Ingo Molnar | 4c8cd0c | 2015-06-08 08:33:56 +0200 | [diff] [blame] | 1030 | ENDPROC(entry_SYSENTER_32) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | |
Andy Lutomirski | fda57b2 | 2016-03-09 19:00:35 -0800 | [diff] [blame] | 1032 | /* |
| 1033 | * 32-bit legacy system call entry. |
| 1034 | * |
| 1035 | * 32-bit x86 Linux system calls traditionally used the INT $0x80 |
| 1036 | * instruction. INT $0x80 lands here. |
| 1037 | * |
| 1038 | * This entry point can be used by any 32-bit perform system calls. |
| 1039 | * Instances of INT $0x80 can be found inline in various programs and |
| 1040 | * libraries. It is also used by the vDSO's __kernel_vsyscall |
| 1041 | * fallback for hardware that doesn't support a faster entry method. |
| 1042 | * Restarted 32-bit system calls also fall back to INT $0x80 |
| 1043 | * regardless of what instruction was originally used to do the system |
| 1044 | * call. (64-bit programs can use INT $0x80 as well, but they can |
| 1045 | * only run on 64-bit kernels and therefore land in |
| 1046 | * entry_INT80_compat.) |
| 1047 | * |
| 1048 | * This is considered a slow path. It is not used by most libc |
| 1049 | * implementations on modern hardware except during process startup. |
| 1050 | * |
| 1051 | * Arguments: |
| 1052 | * eax system call number |
| 1053 | * ebx arg1 |
| 1054 | * ecx arg2 |
| 1055 | * edx arg3 |
| 1056 | * esi arg4 |
| 1057 | * edi arg5 |
| 1058 | * ebp arg6 |
| 1059 | */ |
Ingo Molnar | b2502b4 | 2015-06-08 08:42:03 +0200 | [diff] [blame] | 1060 | ENTRY(entry_INT80_32) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1061 | ASM_CLAC |
Andy Lutomirski | 150ac78 | 2015-10-05 17:48:14 -0700 | [diff] [blame] | 1062 | pushl %eax /* pt_regs->orig_ax */ |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 1063 | |
| 1064 | SAVE_ALL pt_regs_ax=$-ENOSYS switch_stacks=1 /* save rest */ |
Andy Lutomirski | 150ac78 | 2015-10-05 17:48:14 -0700 | [diff] [blame] | 1065 | |
| 1066 | /* |
Andy Lutomirski | a798f09 | 2016-03-09 13:24:32 -0800 | [diff] [blame] | 1067 | * User mode is traced as though IRQs are on, and the interrupt gate |
| 1068 | * turned them off. |
Andy Lutomirski | 150ac78 | 2015-10-05 17:48:14 -0700 | [diff] [blame] | 1069 | */ |
Andy Lutomirski | a798f09 | 2016-03-09 13:24:32 -0800 | [diff] [blame] | 1070 | TRACE_IRQS_OFF |
Andy Lutomirski | 150ac78 | 2015-10-05 17:48:14 -0700 | [diff] [blame] | 1071 | |
| 1072 | movl %esp, %eax |
Andy Lutomirski | a798f09 | 2016-03-09 13:24:32 -0800 | [diff] [blame] | 1073 | call do_int80_syscall_32 |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 1074 | .Lsyscall_32_done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | |
Alexander Popov | afaef01 | 2018-08-17 01:16:58 +0300 | [diff] [blame] | 1076 | STACKLEAK_ERASE |
| 1077 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | restore_all: |
Alexander van Heukelum | 2e04bc7 | 2009-06-18 00:35:57 +0200 | [diff] [blame] | 1079 | TRACE_IRQS_IRET |
Joerg Roedel | e5862d0 | 2018-07-18 11:40:45 +0200 | [diff] [blame] | 1080 | SWITCH_TO_ENTRY_STACK |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 1081 | .Lrestore_all_notrace: |
Joerg Roedel | 46eabca | 2018-07-18 11:40:41 +0200 | [diff] [blame] | 1082 | CHECK_AND_APPLY_ESPFIX |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 1083 | .Lrestore_nocheck: |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 1084 | /* Switch back to user CR3 */ |
| 1085 | SWITCH_TO_USER_CR3 scratch_reg=%eax |
| 1086 | |
Joerg Roedel | 9719370 | 2018-07-18 11:41:16 +0200 | [diff] [blame] | 1087 | BUG_IF_WRONG_CR3 |
| 1088 | |
Joerg Roedel | e464fb9 | 2018-07-18 11:40:49 +0200 | [diff] [blame] | 1089 | /* Restore user state */ |
| 1090 | RESTORE_REGS pop=4 # skip orig_eax/error_code |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 1091 | .Lirq_return: |
Mathieu Desnoyers | 10bcc80 | 2018-01-29 15:20:18 -0500 | [diff] [blame] | 1092 | /* |
| 1093 | * ARCH_HAS_MEMBARRIER_SYNC_CORE rely on IRET core serialization |
| 1094 | * when returning from IPI handler and when returning from |
| 1095 | * scheduler to user-space. |
| 1096 | */ |
Ingo Molnar | 3701d863 | 2008-02-09 23:24:08 +0100 | [diff] [blame] | 1097 | INTERRUPT_RETURN |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 1098 | |
Joerg Roedel | 0d2eb73 | 2018-07-18 11:40:43 +0200 | [diff] [blame] | 1099 | restore_all_kernel: |
Thomas Gleixner | 4859397 | 2019-07-26 23:19:42 +0200 | [diff] [blame] | 1100 | #ifdef CONFIG_PREEMPTION |
Peter Zijlstra | 5e1246f | 2019-05-07 23:25:54 +0200 | [diff] [blame] | 1101 | DISABLE_INTERRUPTS(CLBR_ANY) |
| 1102 | cmpl $0, PER_CPU_VAR(__preempt_count) |
| 1103 | jnz .Lno_preempt |
| 1104 | testl $X86_EFLAGS_IF, PT_EFLAGS(%esp) # interrupts off (exception path) ? |
| 1105 | jz .Lno_preempt |
| 1106 | call preempt_schedule_irq |
| 1107 | .Lno_preempt: |
| 1108 | #endif |
Joerg Roedel | 0d2eb73 | 2018-07-18 11:40:43 +0200 | [diff] [blame] | 1109 | TRACE_IRQS_IRET |
Joerg Roedel | b92a165 | 2018-07-18 11:40:47 +0200 | [diff] [blame] | 1110 | PARANOID_EXIT_TO_KERNEL_MODE |
Joerg Roedel | 9719370 | 2018-07-18 11:41:16 +0200 | [diff] [blame] | 1111 | BUG_IF_WRONG_CR3 |
Joerg Roedel | 0d2eb73 | 2018-07-18 11:40:43 +0200 | [diff] [blame] | 1112 | RESTORE_REGS 4 |
| 1113 | jmp .Lirq_return |
| 1114 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1115 | .section .fixup, "ax" |
| 1116 | ENTRY(iret_exc ) |
| 1117 | pushl $0 # no error code |
| 1118 | pushl $do_iret_error |
Joerg Roedel | 9719370 | 2018-07-18 11:41:16 +0200 | [diff] [blame] | 1119 | |
| 1120 | #ifdef CONFIG_DEBUG_ENTRY |
| 1121 | /* |
| 1122 | * The stack-frame here is the one that iret faulted on, so its a |
| 1123 | * return-to-user frame. We are on kernel-cr3 because we come here from |
| 1124 | * the fixup code. This confuses the CR3 checker, so switch to user-cr3 |
| 1125 | * as the checker expects it. |
| 1126 | */ |
| 1127 | pushl %eax |
| 1128 | SWITCH_TO_USER_CR3 scratch_reg=%eax |
| 1129 | popl %eax |
| 1130 | #endif |
| 1131 | |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1132 | jmp common_exception |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | .previous |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 1134 | _ASM_EXTABLE(.Lirq_return, iret_exc) |
Ingo Molnar | b2502b4 | 2015-06-08 08:42:03 +0200 | [diff] [blame] | 1135 | ENDPROC(entry_INT80_32) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 1137 | .macro FIXUP_ESPFIX_STACK |
Alexander van Heukelum | dc4c2a0 | 2009-06-18 00:35:58 +0200 | [diff] [blame] | 1138 | /* |
| 1139 | * Switch back for ESPFIX stack to the normal zerobased stack |
| 1140 | * |
| 1141 | * We can't call C functions using the ESPFIX stack. This code reads |
| 1142 | * the high word of the segment base from the GDT and swiches to the |
| 1143 | * normal stack and adjusts ESP with the matching offset. |
| 1144 | */ |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 1145 | #ifdef CONFIG_X86_ESPFIX32 |
Alexander van Heukelum | dc4c2a0 | 2009-06-18 00:35:58 +0200 | [diff] [blame] | 1146 | /* fixup the stack */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1147 | mov GDT_ESPFIX_SS + 4, %al /* bits 16..23 */ |
| 1148 | mov GDT_ESPFIX_SS + 7, %ah /* bits 24..31 */ |
Denys Vlasenko | 9b47feb | 2015-06-08 22:35:33 +0200 | [diff] [blame] | 1149 | shl $16, %eax |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1150 | addl %esp, %eax /* the adjusted stack pointer */ |
| 1151 | pushl $__KERNEL_DS |
| 1152 | pushl %eax |
| 1153 | lss (%esp), %esp /* switch to the normal stack segment */ |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 1154 | #endif |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 1155 | .endm |
| 1156 | .macro UNWIND_ESPFIX_STACK |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 1157 | #ifdef CONFIG_X86_ESPFIX32 |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1158 | movl %ss, %eax |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 1159 | /* see if on espfix stack */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1160 | cmpw $__ESPFIX_SS, %ax |
| 1161 | jne 27f |
| 1162 | movl $__KERNEL_DS, %eax |
| 1163 | movl %eax, %ds |
| 1164 | movl %eax, %es |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 1165 | /* switch to normal stack */ |
| 1166 | FIXUP_ESPFIX_STACK |
| 1167 | 27: |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 1168 | #endif |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 1169 | .endm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | |
| 1171 | /* |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 1172 | * Build the entry stubs with some assembler magic. |
| 1173 | * We pack 1 stub into every 8-byte block. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | */ |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 1175 | .align 8 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | ENTRY(irq_entries_start) |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 1177 | vector=FIRST_EXTERNAL_VECTOR |
| 1178 | .rept (FIRST_SYSTEM_VECTOR - FIRST_EXTERNAL_VECTOR) |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1179 | pushl $(~vector+0x80) /* Note: always in signed byte range */ |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 1180 | vector=vector+1 |
| 1181 | jmp common_interrupt |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 1182 | .align 8 |
| 1183 | .endr |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1184 | END(irq_entries_start) |
| 1185 | |
Thomas Gleixner | f8a8fe6 | 2019-06-28 13:11:54 +0200 | [diff] [blame] | 1186 | #ifdef CONFIG_X86_LOCAL_APIC |
| 1187 | .align 8 |
| 1188 | ENTRY(spurious_entries_start) |
| 1189 | vector=FIRST_SYSTEM_VECTOR |
| 1190 | .rept (NR_VECTORS - FIRST_SYSTEM_VECTOR) |
| 1191 | pushl $(~vector+0x80) /* Note: always in signed byte range */ |
| 1192 | vector=vector+1 |
| 1193 | jmp common_spurious |
| 1194 | .align 8 |
| 1195 | .endr |
| 1196 | END(spurious_entries_start) |
| 1197 | |
| 1198 | common_spurious: |
| 1199 | ASM_CLAC |
| 1200 | addl $-0x80, (%esp) /* Adjust vector into the [-256, -1] range */ |
| 1201 | SAVE_ALL switch_stacks=1 |
| 1202 | ENCODE_FRAME_POINTER |
| 1203 | TRACE_IRQS_OFF |
| 1204 | movl %esp, %eax |
| 1205 | call smp_spurious_interrupt |
| 1206 | jmp ret_from_intr |
Jiri Slaby | 1cbec37 | 2019-07-09 08:34:02 +0200 | [diff] [blame] | 1207 | ENDPROC(common_spurious) |
Thomas Gleixner | f8a8fe6 | 2019-06-28 13:11:54 +0200 | [diff] [blame] | 1208 | #endif |
| 1209 | |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 1210 | /* |
| 1211 | * the CPU automatically disables interrupts when executing an IRQ vector, |
| 1212 | * so IRQ-flags tracing has to follow that: |
| 1213 | */ |
H. Peter Anvin | b7c6244 | 2008-11-11 13:24:58 -0800 | [diff] [blame] | 1214 | .p2align CONFIG_X86_L1_CACHE_SHIFT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | common_interrupt: |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1216 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1217 | addl $-0x80, (%esp) /* Adjust vector into the [-256, -1] range */ |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 1218 | |
| 1219 | SAVE_ALL switch_stacks=1 |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 1220 | ENCODE_FRAME_POINTER |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 1221 | TRACE_IRQS_OFF |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1222 | movl %esp, %eax |
| 1223 | call do_IRQ |
| 1224 | jmp ret_from_intr |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1225 | ENDPROC(common_interrupt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 1227 | #define BUILD_INTERRUPT3(name, nr, fn) \ |
| 1228 | ENTRY(name) \ |
| 1229 | ASM_CLAC; \ |
| 1230 | pushl $~(nr); \ |
| 1231 | SAVE_ALL switch_stacks=1; \ |
| 1232 | ENCODE_FRAME_POINTER; \ |
| 1233 | TRACE_IRQS_OFF \ |
| 1234 | movl %esp, %eax; \ |
| 1235 | call fn; \ |
| 1236 | jmp ret_from_intr; \ |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1237 | ENDPROC(name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1239 | #define BUILD_INTERRUPT(name, nr) \ |
| 1240 | BUILD_INTERRUPT3(name, nr, smp_##name); \ |
Tejun Heo | 02cf94c | 2009-01-21 17:26:06 +0900 | [diff] [blame] | 1241 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | /* The include is where all of the SMP etc. interrupts come from */ |
Ingo Molnar | 1164dd0 | 2009-01-28 19:34:09 +0100 | [diff] [blame] | 1243 | #include <asm/entry_arch.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | ENTRY(coprocessor_error) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1246 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1247 | pushl $0 |
| 1248 | pushl $do_coprocessor_error |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1249 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1250 | END(coprocessor_error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | |
| 1252 | ENTRY(simd_coprocessor_error) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1253 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1254 | pushl $0 |
Brian Gerst | 40d2e76 | 2010-03-21 09:00:43 -0400 | [diff] [blame] | 1255 | #ifdef CONFIG_X86_INVD_BUG |
| 1256 | /* AMD 486 bug: invd from userspace calls exception 19 instead of #GP */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1257 | ALTERNATIVE "pushl $do_general_protection", \ |
| 1258 | "pushl $do_simd_coprocessor_error", \ |
Borislav Petkov | 8e65f6e | 2015-01-18 12:35:55 +0100 | [diff] [blame] | 1259 | X86_FEATURE_XMM |
Brian Gerst | 40d2e76 | 2010-03-21 09:00:43 -0400 | [diff] [blame] | 1260 | #else |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1261 | pushl $do_simd_coprocessor_error |
Brian Gerst | 40d2e76 | 2010-03-21 09:00:43 -0400 | [diff] [blame] | 1262 | #endif |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1263 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1264 | END(simd_coprocessor_error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | |
| 1266 | ENTRY(device_not_available) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1267 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1268 | pushl $-1 # mark this as an int |
| 1269 | pushl $do_device_not_available |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1270 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1271 | END(device_not_available) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | |
Rusty Russell | d3561b7 | 2006-12-07 02:14:07 +0100 | [diff] [blame] | 1273 | #ifdef CONFIG_PARAVIRT |
| 1274 | ENTRY(native_iret) |
Ingo Molnar | 3701d863 | 2008-02-09 23:24:08 +0100 | [diff] [blame] | 1275 | iret |
H. Peter Anvin | 6837a54 | 2012-04-20 12:19:50 -0700 | [diff] [blame] | 1276 | _ASM_EXTABLE(native_iret, iret_exc) |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1277 | END(native_iret) |
Rusty Russell | d3561b7 | 2006-12-07 02:14:07 +0100 | [diff] [blame] | 1278 | #endif |
| 1279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | ENTRY(overflow) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1281 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1282 | pushl $0 |
| 1283 | pushl $do_overflow |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1284 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1285 | END(overflow) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | |
| 1287 | ENTRY(bounds) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1288 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1289 | pushl $0 |
| 1290 | pushl $do_bounds |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1291 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1292 | END(bounds) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | |
| 1294 | ENTRY(invalid_op) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1295 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1296 | pushl $0 |
| 1297 | pushl $do_invalid_op |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1298 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1299 | END(invalid_op) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | |
| 1301 | ENTRY(coprocessor_segment_overrun) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1302 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1303 | pushl $0 |
| 1304 | pushl $do_coprocessor_segment_overrun |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1305 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1306 | END(coprocessor_segment_overrun) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | |
| 1308 | ENTRY(invalid_TSS) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1309 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1310 | pushl $do_invalid_TSS |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1311 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1312 | END(invalid_TSS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | |
| 1314 | ENTRY(segment_not_present) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1315 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1316 | pushl $do_segment_not_present |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1317 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1318 | END(segment_not_present) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | |
| 1320 | ENTRY(stack_segment) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1321 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1322 | pushl $do_stack_segment |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1323 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1324 | END(stack_segment) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | ENTRY(alignment_check) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1327 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1328 | pushl $do_alignment_check |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1329 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1330 | END(alignment_check) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | |
Prasanna S.P | d28c439 | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 1332 | ENTRY(divide_error) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1333 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1334 | pushl $0 # no error code |
| 1335 | pushl $do_divide_error |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1336 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1337 | END(divide_error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | |
| 1339 | #ifdef CONFIG_X86_MCE |
| 1340 | ENTRY(machine_check) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1341 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1342 | pushl $0 |
| 1343 | pushl machine_check_vector |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1344 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1345 | END(machine_check) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | #endif |
| 1347 | |
| 1348 | ENTRY(spurious_interrupt_bug) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1349 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1350 | pushl $0 |
| 1351 | pushl $do_spurious_interrupt_bug |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1352 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 1353 | END(spurious_interrupt_bug) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | |
Juergen Gross | 28c11b0 | 2018-08-28 09:40:12 +0200 | [diff] [blame] | 1355 | #ifdef CONFIG_XEN_PV |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 1356 | ENTRY(xen_hypervisor_callback) |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1357 | /* |
| 1358 | * Check to see if we got the event in the critical |
| 1359 | * region in xen_iret_direct, after we've reenabled |
| 1360 | * events and checked for pending events. This simulates |
| 1361 | * iret instruction's behaviour where it delivers a |
| 1362 | * pending interrupt when enabling interrupts: |
| 1363 | */ |
Jan Beulich | 29b810f | 2019-11-11 15:32:12 +0100 | [diff] [blame] | 1364 | cmpl $xen_iret_start_crit, (%esp) |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1365 | jb 1f |
Jan Beulich | 29b810f | 2019-11-11 15:32:12 +0100 | [diff] [blame] | 1366 | cmpl $xen_iret_end_crit, (%esp) |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1367 | jae 1f |
Jan Beulich | 29b810f | 2019-11-11 15:32:12 +0100 | [diff] [blame] | 1368 | call xen_iret_crit_fixup |
| 1369 | 1: |
| 1370 | pushl $-1 /* orig_ax = -1 => not a system call */ |
| 1371 | SAVE_ALL |
| 1372 | ENCODE_FRAME_POINTER |
| 1373 | TRACE_IRQS_OFF |
| 1374 | mov %esp, %eax |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1375 | call xen_evtchn_do_upcall |
Thomas Gleixner | 4859397 | 2019-07-26 23:19:42 +0200 | [diff] [blame] | 1376 | #ifndef CONFIG_PREEMPTION |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1377 | call xen_maybe_preempt_hcall |
David Vrabel | fdfd811 | 2015-02-19 15:23:17 +0000 | [diff] [blame] | 1378 | #endif |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1379 | jmp ret_from_intr |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 1380 | ENDPROC(xen_hypervisor_callback) |
| 1381 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1382 | /* |
| 1383 | * Hypervisor uses this for application faults while it executes. |
| 1384 | * We get here for two reasons: |
| 1385 | * 1. Fault while reloading DS, ES, FS or GS |
| 1386 | * 2. Fault while executing IRET |
| 1387 | * Category 1 we fix up by reattempting the load, and zeroing the segment |
| 1388 | * register if the load fails. |
| 1389 | * Category 2 we fix up by jumping to do_iret_error. We cannot use the |
| 1390 | * normal Linux return path in this case because if we use the IRET hypercall |
| 1391 | * to pop the stack frame we end up in an infinite loop of failsafe callbacks. |
| 1392 | * We distinguish between categories by maintaining a status value in EAX. |
| 1393 | */ |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 1394 | ENTRY(xen_failsafe_callback) |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1395 | pushl %eax |
| 1396 | movl $1, %eax |
| 1397 | 1: mov 4(%esp), %ds |
| 1398 | 2: mov 8(%esp), %es |
| 1399 | 3: mov 12(%esp), %fs |
| 1400 | 4: mov 16(%esp), %gs |
David Vrabel | a349e23d1 | 2012-10-19 17:29:07 +0100 | [diff] [blame] | 1401 | /* EAX == 0 => Category 1 (Bad segment) |
| 1402 | EAX != 0 => Category 2 (Bad IRET) */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1403 | testl %eax, %eax |
| 1404 | popl %eax |
| 1405 | lea 16(%esp), %esp |
| 1406 | jz 5f |
| 1407 | jmp iret_exc |
| 1408 | 5: pushl $-1 /* orig_ax = -1 => not a system call */ |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 1409 | SAVE_ALL |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 1410 | ENCODE_FRAME_POINTER |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1411 | jmp ret_from_exception |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 1412 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1413 | .section .fixup, "ax" |
| 1414 | 6: xorl %eax, %eax |
| 1415 | movl %eax, 4(%esp) |
| 1416 | jmp 1b |
| 1417 | 7: xorl %eax, %eax |
| 1418 | movl %eax, 8(%esp) |
| 1419 | jmp 2b |
| 1420 | 8: xorl %eax, %eax |
| 1421 | movl %eax, 12(%esp) |
| 1422 | jmp 3b |
| 1423 | 9: xorl %eax, %eax |
| 1424 | movl %eax, 16(%esp) |
| 1425 | jmp 4b |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 1426 | .previous |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1427 | _ASM_EXTABLE(1b, 6b) |
| 1428 | _ASM_EXTABLE(2b, 7b) |
| 1429 | _ASM_EXTABLE(3b, 8b) |
| 1430 | _ASM_EXTABLE(4b, 9b) |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 1431 | ENDPROC(xen_failsafe_callback) |
Juergen Gross | 28c11b0 | 2018-08-28 09:40:12 +0200 | [diff] [blame] | 1432 | #endif /* CONFIG_XEN_PV */ |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 1433 | |
Juergen Gross | 28c11b0 | 2018-08-28 09:40:12 +0200 | [diff] [blame] | 1434 | #ifdef CONFIG_XEN_PVHVM |
K. Y. Srinivasan | bc2b033 | 2013-02-03 17:22:39 -0800 | [diff] [blame] | 1435 | BUILD_INTERRUPT3(xen_hvm_callback_vector, HYPERVISOR_CALLBACK_VECTOR, |
Thomas Gleixner | 4b9a8dc | 2017-08-28 08:47:31 +0200 | [diff] [blame] | 1436 | xen_evtchn_do_upcall) |
Juergen Gross | 28c11b0 | 2018-08-28 09:40:12 +0200 | [diff] [blame] | 1437 | #endif |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 1438 | |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 1439 | |
K. Y. Srinivasan | bc2b033 | 2013-02-03 17:22:39 -0800 | [diff] [blame] | 1440 | #if IS_ENABLED(CONFIG_HYPERV) |
| 1441 | |
| 1442 | BUILD_INTERRUPT3(hyperv_callback_vector, HYPERVISOR_CALLBACK_VECTOR, |
Thomas Gleixner | 4b9a8dc | 2017-08-28 08:47:31 +0200 | [diff] [blame] | 1443 | hyperv_vector_handler) |
K. Y. Srinivasan | bc2b033 | 2013-02-03 17:22:39 -0800 | [diff] [blame] | 1444 | |
Vitaly Kuznetsov | 9328626 | 2018-01-24 14:23:33 +0100 | [diff] [blame] | 1445 | BUILD_INTERRUPT3(hyperv_reenlightenment_vector, HYPERV_REENLIGHTENMENT_VECTOR, |
| 1446 | hyperv_reenlightenment_intr) |
| 1447 | |
Michael Kelley | 248e742 | 2018-03-04 22:17:18 -0700 | [diff] [blame] | 1448 | BUILD_INTERRUPT3(hv_stimer0_callback_vector, HYPERV_STIMER0_VECTOR, |
| 1449 | hv_stimer0_vector_handler) |
| 1450 | |
K. Y. Srinivasan | bc2b033 | 2013-02-03 17:22:39 -0800 | [diff] [blame] | 1451 | #endif /* CONFIG_HYPERV */ |
| 1452 | |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1453 | ENTRY(page_fault) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1454 | ASM_CLAC |
Matt Mullins | b8f7095 | 2019-07-23 21:20:58 -0700 | [diff] [blame] | 1455 | pushl $do_page_fault |
| 1456 | jmp common_exception_read_cr2 |
| 1457 | END(page_fault) |
Peter Zijlstra | a0d14b8 | 2019-07-11 13:40:59 +0200 | [diff] [blame] | 1458 | |
Matt Mullins | b8f7095 | 2019-07-23 21:20:58 -0700 | [diff] [blame] | 1459 | common_exception_read_cr2: |
| 1460 | /* the function address is in %gs's slot on the stack */ |
Peter Zijlstra | a0d14b8 | 2019-07-11 13:40:59 +0200 | [diff] [blame] | 1461 | SAVE_ALL switch_stacks=1 skip_gs=1 |
| 1462 | |
| 1463 | ENCODE_FRAME_POINTER |
| 1464 | UNWIND_ESPFIX_STACK |
| 1465 | |
| 1466 | /* fixup %gs */ |
| 1467 | GS_TO_REG %ecx |
Matt Mullins | b8f7095 | 2019-07-23 21:20:58 -0700 | [diff] [blame] | 1468 | movl PT_GS(%esp), %edi |
Peter Zijlstra | a0d14b8 | 2019-07-11 13:40:59 +0200 | [diff] [blame] | 1469 | REG_TO_PTGS %ecx |
| 1470 | SET_KERNEL_GS %ecx |
| 1471 | |
| 1472 | GET_CR2_INTO(%ecx) # might clobber %eax |
| 1473 | |
| 1474 | /* fixup orig %eax */ |
| 1475 | movl PT_ORIG_EAX(%esp), %edx # get the error code |
| 1476 | movl $-1, PT_ORIG_EAX(%esp) # no syscall to restart |
| 1477 | |
| 1478 | TRACE_IRQS_OFF |
| 1479 | movl %esp, %eax # pt_regs pointer |
Matt Mullins | b8f7095 | 2019-07-23 21:20:58 -0700 | [diff] [blame] | 1480 | CALL_NOSPEC %edi |
Peter Zijlstra | a0d14b8 | 2019-07-11 13:40:59 +0200 | [diff] [blame] | 1481 | jmp ret_from_exception |
Matt Mullins | b8f7095 | 2019-07-23 21:20:58 -0700 | [diff] [blame] | 1482 | END(common_exception_read_cr2) |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1483 | |
| 1484 | common_exception: |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 1485 | /* the function address is in %gs's slot on the stack */ |
Peter Zijlstra | e67f1c1 | 2019-07-11 13:40:56 +0200 | [diff] [blame] | 1486 | SAVE_ALL switch_stacks=1 skip_gs=1 |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 1487 | ENCODE_FRAME_POINTER |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1488 | UNWIND_ESPFIX_STACK |
Peter Zijlstra | e67f1c1 | 2019-07-11 13:40:56 +0200 | [diff] [blame] | 1489 | |
| 1490 | /* fixup %gs */ |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 1491 | GS_TO_REG %ecx |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1492 | movl PT_GS(%esp), %edi # get the function address |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 1493 | REG_TO_PTGS %ecx |
| 1494 | SET_KERNEL_GS %ecx |
Peter Zijlstra | e67f1c1 | 2019-07-11 13:40:56 +0200 | [diff] [blame] | 1495 | |
| 1496 | /* fixup orig %eax */ |
| 1497 | movl PT_ORIG_EAX(%esp), %edx # get the error code |
| 1498 | movl $-1, PT_ORIG_EAX(%esp) # no syscall to restart |
| 1499 | |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1500 | TRACE_IRQS_OFF |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1501 | movl %esp, %eax # pt_regs pointer |
David Woodhouse | 2641f08 | 2018-01-11 21:46:28 +0000 | [diff] [blame] | 1502 | CALL_NOSPEC %edi |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1503 | jmp ret_from_exception |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1504 | END(common_exception) |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1505 | |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1506 | ENTRY(debug) |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 1507 | /* |
Joerg Roedel | 929b44e | 2018-07-18 11:40:48 +0200 | [diff] [blame] | 1508 | * Entry from sysenter is now handled in common_exception |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 1509 | */ |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1510 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1511 | pushl $-1 # mark this as an int |
Joerg Roedel | 929b44e | 2018-07-18 11:40:48 +0200 | [diff] [blame] | 1512 | pushl $do_debug |
| 1513 | jmp common_exception |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1514 | END(debug) |
| 1515 | |
| 1516 | /* |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 1517 | * NMI is doubly nasty. It can happen on the first instruction of |
| 1518 | * entry_SYSENTER_32 (just like #DB), but it can also interrupt the beginning |
| 1519 | * of the #DB handler even if that #DB in turn hit before entry_SYSENTER_32 |
| 1520 | * switched stacks. We handle both conditions by simply checking whether we |
| 1521 | * interrupted kernel code running on the SYSENTER stack. |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1522 | */ |
| 1523 | ENTRY(nmi) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1524 | ASM_CLAC |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 1525 | |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 1526 | #ifdef CONFIG_X86_ESPFIX32 |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1527 | pushl %eax |
| 1528 | movl %ss, %eax |
| 1529 | cmpw $__ESPFIX_SS, %ax |
| 1530 | popl %eax |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 1531 | je .Lnmi_espfix_stack |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 1532 | #endif |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 1533 | |
| 1534 | pushl %eax # pt_regs->orig_ax |
Joerg Roedel | b65bef4 | 2018-07-18 11:40:50 +0200 | [diff] [blame] | 1535 | SAVE_ALL_NMI cr3_reg=%edi |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 1536 | ENCODE_FRAME_POINTER |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1537 | xorl %edx, %edx # zero error code |
| 1538 | movl %esp, %eax # pt_regs pointer |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 1539 | |
| 1540 | /* Are we currently on the SYSENTER stack? */ |
Andy Lutomirski | 72f5e08 | 2017-12-04 15:07:20 +0100 | [diff] [blame] | 1541 | movl PER_CPU_VAR(cpu_entry_area), %ecx |
Dave Hansen | 4fe2d8b | 2017-12-04 17:25:07 -0800 | [diff] [blame] | 1542 | addl $CPU_ENTRY_AREA_entry_stack + SIZEOF_entry_stack, %ecx |
| 1543 | subl %eax, %ecx /* ecx = (end of entry_stack) - esp */ |
| 1544 | cmpl $SIZEOF_entry_stack, %ecx |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 1545 | jb .Lnmi_from_sysenter_stack |
| 1546 | |
| 1547 | /* Not on SYSENTER stack. */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1548 | call do_nmi |
Joerg Roedel | 8e676ce | 2018-07-18 11:40:42 +0200 | [diff] [blame] | 1549 | jmp .Lnmi_return |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1550 | |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 1551 | .Lnmi_from_sysenter_stack: |
| 1552 | /* |
| 1553 | * We're on the SYSENTER stack. Switch off. No one (not even debug) |
| 1554 | * is using the thread stack right now, so it's safe for us to use it. |
| 1555 | */ |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 1556 | movl %esp, %ebx |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 1557 | movl PER_CPU_VAR(cpu_current_top_of_stack), %esp |
| 1558 | call do_nmi |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 1559 | movl %ebx, %esp |
Joerg Roedel | 8e676ce | 2018-07-18 11:40:42 +0200 | [diff] [blame] | 1560 | |
| 1561 | .Lnmi_return: |
| 1562 | CHECK_AND_APPLY_ESPFIX |
Joerg Roedel | b65bef4 | 2018-07-18 11:40:50 +0200 | [diff] [blame] | 1563 | RESTORE_ALL_NMI cr3_reg=%edi pop=4 |
Joerg Roedel | 8e676ce | 2018-07-18 11:40:42 +0200 | [diff] [blame] | 1564 | jmp .Lirq_return |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1565 | |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 1566 | #ifdef CONFIG_X86_ESPFIX32 |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 1567 | .Lnmi_espfix_stack: |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 1568 | /* |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1569 | * create the pointer to lss back |
| 1570 | */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1571 | pushl %ss |
| 1572 | pushl %esp |
| 1573 | addl $4, (%esp) |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1574 | /* copy the iret frame of 12 bytes */ |
| 1575 | .rept 3 |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1576 | pushl 16(%esp) |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1577 | .endr |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1578 | pushl %eax |
Joerg Roedel | b65bef4 | 2018-07-18 11:40:50 +0200 | [diff] [blame] | 1579 | SAVE_ALL_NMI cr3_reg=%edi |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 1580 | ENCODE_FRAME_POINTER |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1581 | FIXUP_ESPFIX_STACK # %eax == %esp |
| 1582 | xorl %edx, %edx # zero error code |
| 1583 | call do_nmi |
Joerg Roedel | b65bef4 | 2018-07-18 11:40:50 +0200 | [diff] [blame] | 1584 | RESTORE_ALL_NMI cr3_reg=%edi |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1585 | lss 12+4(%esp), %esp # back to espfix stack |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 1586 | jmp .Lirq_return |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 1587 | #endif |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1588 | END(nmi) |
| 1589 | |
| 1590 | ENTRY(int3) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1591 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1592 | pushl $-1 # mark this as an int |
Joerg Roedel | 45d7b25 | 2018-07-18 11:40:44 +0200 | [diff] [blame] | 1593 | |
| 1594 | SAVE_ALL switch_stacks=1 |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 1595 | ENCODE_FRAME_POINTER |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1596 | TRACE_IRQS_OFF |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1597 | xorl %edx, %edx # zero error code |
| 1598 | movl %esp, %eax # pt_regs pointer |
| 1599 | call do_int3 |
| 1600 | jmp ret_from_exception |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1601 | END(int3) |
| 1602 | |
| 1603 | ENTRY(general_protection) |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1604 | pushl $do_general_protection |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1605 | jmp common_exception |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1606 | END(general_protection) |
| 1607 | |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 1608 | #ifdef CONFIG_KVM_GUEST |
| 1609 | ENTRY(async_page_fault) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1610 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1611 | pushl $do_async_page_fault |
Matt Mullins | b8f7095 | 2019-07-23 21:20:58 -0700 | [diff] [blame] | 1612 | jmp common_exception_read_cr2 |
Sedat Dilek | 2ae9d29 | 2011-03-08 22:39:24 +0100 | [diff] [blame] | 1613 | END(async_page_fault) |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 1614 | #endif |
Andy Lutomirski | 2deb4be | 2016-07-14 13:22:55 -0700 | [diff] [blame] | 1615 | |
| 1616 | ENTRY(rewind_stack_do_exit) |
| 1617 | /* Prevent any naive code from trying to unwind to our caller. */ |
| 1618 | xorl %ebp, %ebp |
| 1619 | |
| 1620 | movl PER_CPU_VAR(cpu_current_top_of_stack), %esi |
| 1621 | leal -TOP_OF_KERNEL_STACK_PADDING-PTREGS_SIZE(%esi), %esp |
| 1622 | |
| 1623 | call do_exit |
| 1624 | 1: jmp 1b |
| 1625 | END(rewind_stack_do_exit) |