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 | |
Jiri Olsa | ea71454 | 2011-03-07 19:10:39 +0100 | [diff] [blame] | 49 | .section .entry.text, "ax" |
| 50 | |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 51 | /* |
| 52 | * We use macros for low-level operations which need to be overridden |
| 53 | * for paravirtualization. The following will never clobber any registers: |
| 54 | * INTERRUPT_RETURN (aka. "iret") |
| 55 | * GET_CR0_INTO_EAX (aka. "movl %cr0, %eax") |
Jeremy Fitzhardinge | d75cd22 | 2008-06-25 00:19:26 -0400 | [diff] [blame] | 56 | * ENABLE_INTERRUPTS_SYSEXIT (aka "sti; sysexit"). |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 57 | * |
| 58 | * For DISABLE_INTERRUPTS/ENABLE_INTERRUPTS (aka "cli"/"sti"), you must |
| 59 | * specify what registers can be overwritten (CLBR_NONE, CLBR_EAX/EDX/ECX/ANY). |
| 60 | * Allowing a register to be clobbered can shrink the paravirt replacement |
| 61 | * enough to patch inline, increasing performance. |
| 62 | */ |
| 63 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #ifdef CONFIG_PREEMPT |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 65 | # define preempt_stop(clobbers) DISABLE_INTERRUPTS(clobbers); TRACE_IRQS_OFF |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | #else |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 67 | # define preempt_stop(clobbers) |
| 68 | # define resume_kernel restore_all |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | #endif |
| 70 | |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 71 | .macro TRACE_IRQS_IRET |
| 72 | #ifdef CONFIG_TRACE_IRQFLAGS |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 73 | testl $X86_EFLAGS_IF, PT_EFLAGS(%esp) # interrupts off? |
| 74 | jz 1f |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 75 | TRACE_IRQS_ON |
| 76 | 1: |
| 77 | #endif |
| 78 | .endm |
| 79 | |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 80 | /* |
| 81 | * User gs save/restore |
| 82 | * |
| 83 | * %gs is used for userland TLS and kernel only uses it for stack |
| 84 | * canary which is required to be at %gs:20 by gcc. Read the comment |
| 85 | * at the top of stackprotector.h for more info. |
| 86 | * |
| 87 | * Local labels 98 and 99 are used. |
| 88 | */ |
| 89 | #ifdef CONFIG_X86_32_LAZY_GS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 91 | /* unfortunately push/pop can't be no-op */ |
| 92 | .macro PUSH_GS |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 93 | pushl $0 |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 94 | .endm |
| 95 | .macro POP_GS pop=0 |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 96 | addl $(4 + \pop), %esp |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 97 | .endm |
| 98 | .macro POP_GS_EX |
| 99 | .endm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 101 | /* all the rest are no-op */ |
| 102 | .macro PTGS_TO_GS |
| 103 | .endm |
| 104 | .macro PTGS_TO_GS_EX |
| 105 | .endm |
| 106 | .macro GS_TO_REG reg |
| 107 | .endm |
| 108 | .macro REG_TO_PTGS reg |
| 109 | .endm |
| 110 | .macro SET_KERNEL_GS reg |
| 111 | .endm |
| 112 | |
| 113 | #else /* CONFIG_X86_32_LAZY_GS */ |
| 114 | |
| 115 | .macro PUSH_GS |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 116 | pushl %gs |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 117 | .endm |
| 118 | |
| 119 | .macro POP_GS pop=0 |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 120 | 98: popl %gs |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 121 | .if \pop <> 0 |
Denys Vlasenko | 9b47feb | 2015-06-08 22:35:33 +0200 | [diff] [blame] | 122 | add $\pop, %esp |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 123 | .endif |
| 124 | .endm |
| 125 | .macro POP_GS_EX |
| 126 | .pushsection .fixup, "ax" |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 127 | 99: movl $0, (%esp) |
| 128 | jmp 98b |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 129 | .popsection |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 130 | _ASM_EXTABLE(98b, 99b) |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 131 | .endm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 133 | .macro PTGS_TO_GS |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 134 | 98: mov PT_GS(%esp), %gs |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 135 | .endm |
| 136 | .macro PTGS_TO_GS_EX |
| 137 | .pushsection .fixup, "ax" |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 138 | 99: movl $0, PT_GS(%esp) |
| 139 | jmp 98b |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 140 | .popsection |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 141 | _ASM_EXTABLE(98b, 99b) |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 142 | .endm |
| 143 | |
| 144 | .macro GS_TO_REG reg |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 145 | movl %gs, \reg |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 146 | .endm |
| 147 | .macro REG_TO_PTGS reg |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 148 | movl \reg, PT_GS(%esp) |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 149 | .endm |
| 150 | .macro SET_KERNEL_GS reg |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 151 | movl $(__KERNEL_STACK_CANARY), \reg |
| 152 | movl \reg, %gs |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 153 | .endm |
| 154 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 155 | #endif /* CONFIG_X86_32_LAZY_GS */ |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 156 | |
Andy Lutomirski | 150ac78 | 2015-10-05 17:48:14 -0700 | [diff] [blame] | 157 | .macro SAVE_ALL pt_regs_ax=%eax |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 158 | cld |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 159 | PUSH_GS |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 160 | pushl %fs |
| 161 | pushl %es |
| 162 | pushl %ds |
Andy Lutomirski | 150ac78 | 2015-10-05 17:48:14 -0700 | [diff] [blame] | 163 | pushl \pt_regs_ax |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 164 | pushl %ebp |
| 165 | pushl %edi |
| 166 | pushl %esi |
| 167 | pushl %edx |
| 168 | pushl %ecx |
| 169 | pushl %ebx |
| 170 | movl $(__USER_DS), %edx |
| 171 | movl %edx, %ds |
| 172 | movl %edx, %es |
| 173 | movl $(__KERNEL_PERCPU), %edx |
| 174 | movl %edx, %fs |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 175 | SET_KERNEL_GS %edx |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 176 | .endm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 178 | /* |
| 179 | * This is a sneaky trick to help the unwinder find pt_regs on the stack. The |
| 180 | * frame pointer is replaced with an encoded pointer to pt_regs. The encoding |
Josh Poimboeuf | 5c99b69 | 2017-10-09 20:20:03 -0500 | [diff] [blame] | 181 | * is just clearing the MSB, which makes it an invalid stack address and is also |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 182 | * a signal to the unwinder that it's a pt_regs pointer in disguise. |
| 183 | * |
| 184 | * NOTE: This macro must be used *after* SAVE_ALL because it corrupts the |
| 185 | * original rbp. |
| 186 | */ |
| 187 | .macro ENCODE_FRAME_POINTER |
| 188 | #ifdef CONFIG_FRAME_POINTER |
| 189 | mov %esp, %ebp |
Josh Poimboeuf | 5c99b69 | 2017-10-09 20:20:03 -0500 | [diff] [blame] | 190 | andl $0x7fffffff, %ebp |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 191 | #endif |
| 192 | .endm |
| 193 | |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 194 | .macro RESTORE_INT_REGS |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 195 | popl %ebx |
| 196 | popl %ecx |
| 197 | popl %edx |
| 198 | popl %esi |
| 199 | popl %edi |
| 200 | popl %ebp |
| 201 | popl %eax |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 202 | .endm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 204 | .macro RESTORE_REGS pop=0 |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 205 | RESTORE_INT_REGS |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 206 | 1: popl %ds |
| 207 | 2: popl %es |
| 208 | 3: popl %fs |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 209 | POP_GS \pop |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 210 | .pushsection .fixup, "ax" |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 211 | 4: movl $0, (%esp) |
| 212 | jmp 1b |
| 213 | 5: movl $0, (%esp) |
| 214 | jmp 2b |
| 215 | 6: movl $0, (%esp) |
| 216 | jmp 3b |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | .popsection |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 218 | _ASM_EXTABLE(1b, 4b) |
| 219 | _ASM_EXTABLE(2b, 5b) |
| 220 | _ASM_EXTABLE(3b, 6b) |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 221 | POP_GS_EX |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 222 | .endm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Joerg Roedel | 46eabca | 2018-07-18 11:40:41 +0200 | [diff] [blame] | 224 | .macro CHECK_AND_APPLY_ESPFIX |
| 225 | #ifdef CONFIG_X86_ESPFIX32 |
| 226 | #define GDT_ESPFIX_SS PER_CPU_VAR(gdt_page) + (GDT_ENTRY_ESPFIX_SS * 8) |
| 227 | |
| 228 | ALTERNATIVE "jmp .Lend_\@", "", X86_BUG_ESPFIX |
| 229 | |
| 230 | movl PT_EFLAGS(%esp), %eax # mix EFLAGS, SS and CS |
| 231 | /* |
| 232 | * Warning: PT_OLDSS(%esp) contains the wrong/random values if we |
| 233 | * are returning to the kernel. |
| 234 | * See comments in process.c:copy_thread() for details. |
| 235 | */ |
| 236 | movb PT_OLDSS(%esp), %ah |
| 237 | movb PT_CS(%esp), %al |
| 238 | andl $(X86_EFLAGS_VM | (SEGMENT_TI_MASK << 8) | SEGMENT_RPL_MASK), %eax |
| 239 | cmpl $((SEGMENT_LDT << 8) | USER_RPL), %eax |
| 240 | jne .Lend_\@ # returning to user-space with LDT SS |
| 241 | |
| 242 | /* |
| 243 | * Setup and switch to ESPFIX stack |
| 244 | * |
| 245 | * We're returning to userspace with a 16 bit stack. The CPU will not |
| 246 | * restore the high word of ESP for us on executing iret... This is an |
| 247 | * "official" bug of all the x86-compatible CPUs, which we can work |
| 248 | * around to make dosemu and wine happy. We do this by preloading the |
| 249 | * high word of ESP with the high word of the userspace ESP while |
| 250 | * compensating for the offset by changing to the ESPFIX segment with |
| 251 | * a base address that matches for the difference. |
| 252 | */ |
| 253 | mov %esp, %edx /* load kernel esp */ |
| 254 | mov PT_OLDESP(%esp), %eax /* load userspace esp */ |
| 255 | mov %dx, %ax /* eax: new kernel esp */ |
| 256 | sub %eax, %edx /* offset (low word is 0) */ |
| 257 | shr $16, %edx |
| 258 | mov %dl, GDT_ESPFIX_SS + 4 /* bits 16..23 */ |
| 259 | mov %dh, GDT_ESPFIX_SS + 7 /* bits 24..31 */ |
| 260 | pushl $__ESPFIX_SS |
| 261 | pushl %eax /* new kernel esp */ |
| 262 | /* |
| 263 | * Disable interrupts, but do not irqtrace this section: we |
| 264 | * will soon execute iret and the tracer was already set to |
| 265 | * the irqstate after the IRET: |
| 266 | */ |
| 267 | DISABLE_INTERRUPTS(CLBR_ANY) |
| 268 | lss (%esp), %esp /* switch to espfix segment */ |
| 269 | .Lend_\@: |
| 270 | #endif /* CONFIG_X86_ESPFIX32 */ |
| 271 | .endm |
Brian Gerst | 0100301 | 2016-08-13 12:38:19 -0400 | [diff] [blame] | 272 | /* |
| 273 | * %eax: prev task |
| 274 | * %edx: next task |
| 275 | */ |
| 276 | ENTRY(__switch_to_asm) |
| 277 | /* |
| 278 | * Save callee-saved registers |
| 279 | * This must match the order in struct inactive_task_frame |
| 280 | */ |
| 281 | pushl %ebp |
| 282 | pushl %ebx |
| 283 | pushl %edi |
| 284 | pushl %esi |
| 285 | |
| 286 | /* switch stack */ |
| 287 | movl %esp, TASK_threadsp(%eax) |
| 288 | movl TASK_threadsp(%edx), %esp |
| 289 | |
Linus Torvalds | 050e9ba | 2018-06-14 12:21:18 +0900 | [diff] [blame] | 290 | #ifdef CONFIG_STACKPROTECTOR |
Brian Gerst | 0100301 | 2016-08-13 12:38:19 -0400 | [diff] [blame] | 291 | movl TASK_stack_canary(%edx), %ebx |
| 292 | movl %ebx, PER_CPU_VAR(stack_canary)+stack_canary_offset |
| 293 | #endif |
| 294 | |
David Woodhouse | c995efd | 2018-01-12 17:49:25 +0000 | [diff] [blame] | 295 | #ifdef CONFIG_RETPOLINE |
| 296 | /* |
| 297 | * When switching from a shallower to a deeper call stack |
| 298 | * the RSB may either underflow or use entries populated |
| 299 | * with userspace addresses. On CPUs where those concerns |
| 300 | * exist, overwrite the RSB with entries which capture |
| 301 | * speculative execution to prevent attack. |
| 302 | */ |
David Woodhouse | d1c9910 | 2018-02-19 10:50:56 +0000 | [diff] [blame] | 303 | FILL_RETURN_BUFFER %ebx, RSB_CLEAR_LOOPS, X86_FEATURE_RSB_CTXSW |
David Woodhouse | c995efd | 2018-01-12 17:49:25 +0000 | [diff] [blame] | 304 | #endif |
| 305 | |
Brian Gerst | 0100301 | 2016-08-13 12:38:19 -0400 | [diff] [blame] | 306 | /* restore callee-saved registers */ |
| 307 | popl %esi |
| 308 | popl %edi |
| 309 | popl %ebx |
| 310 | popl %ebp |
| 311 | |
| 312 | jmp __switch_to |
| 313 | END(__switch_to_asm) |
| 314 | |
| 315 | /* |
Josh Poimboeuf | ebd5749 | 2017-05-23 10:37:29 -0500 | [diff] [blame] | 316 | * The unwinder expects the last frame on the stack to always be at the same |
| 317 | * offset from the end of the page, which allows it to validate the stack. |
| 318 | * Calling schedule_tail() directly would break that convention because its an |
| 319 | * asmlinkage function so its argument has to be pushed on the stack. This |
| 320 | * wrapper creates a proper "end of stack" frame header before the call. |
| 321 | */ |
| 322 | ENTRY(schedule_tail_wrapper) |
| 323 | FRAME_BEGIN |
| 324 | |
| 325 | pushl %eax |
| 326 | call schedule_tail |
| 327 | popl %eax |
| 328 | |
| 329 | FRAME_END |
| 330 | ret |
| 331 | ENDPROC(schedule_tail_wrapper) |
| 332 | /* |
Brian Gerst | 0100301 | 2016-08-13 12:38:19 -0400 | [diff] [blame] | 333 | * A newly forked process directly context switches into this address. |
| 334 | * |
| 335 | * eax: prev task we switched from |
Brian Gerst | 616d248 | 2016-08-13 12:38:20 -0400 | [diff] [blame] | 336 | * ebx: kernel thread func (NULL for user thread) |
| 337 | * edi: kernel thread arg |
Brian Gerst | 0100301 | 2016-08-13 12:38:19 -0400 | [diff] [blame] | 338 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | ENTRY(ret_from_fork) |
Josh Poimboeuf | ebd5749 | 2017-05-23 10:37:29 -0500 | [diff] [blame] | 340 | call schedule_tail_wrapper |
Andy Lutomirski | 39e8701 | 2015-10-05 17:48:13 -0700 | [diff] [blame] | 341 | |
Brian Gerst | 616d248 | 2016-08-13 12:38:20 -0400 | [diff] [blame] | 342 | testl %ebx, %ebx |
| 343 | jnz 1f /* kernel threads are uncommon */ |
| 344 | |
| 345 | 2: |
Andy Lutomirski | 39e8701 | 2015-10-05 17:48:13 -0700 | [diff] [blame] | 346 | /* When we fork, we trace the syscall return in the child, too. */ |
Josh Poimboeuf | ebd5749 | 2017-05-23 10:37:29 -0500 | [diff] [blame] | 347 | movl %esp, %eax |
Andy Lutomirski | 39e8701 | 2015-10-05 17:48:13 -0700 | [diff] [blame] | 348 | call syscall_return_slowpath |
| 349 | jmp restore_all |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | |
Brian Gerst | 616d248 | 2016-08-13 12:38:20 -0400 | [diff] [blame] | 351 | /* kernel thread */ |
| 352 | 1: movl %edi, %eax |
David Woodhouse | 2641f08 | 2018-01-11 21:46:28 +0000 | [diff] [blame] | 353 | CALL_NOSPEC %ebx |
Andy Lutomirski | 39e8701 | 2015-10-05 17:48:13 -0700 | [diff] [blame] | 354 | /* |
Brian Gerst | 616d248 | 2016-08-13 12:38:20 -0400 | [diff] [blame] | 355 | * A kernel thread is allowed to return here after successfully |
| 356 | * calling do_execve(). Exit to userspace to complete the execve() |
| 357 | * syscall. |
Andy Lutomirski | 39e8701 | 2015-10-05 17:48:13 -0700 | [diff] [blame] | 358 | */ |
Brian Gerst | 616d248 | 2016-08-13 12:38:20 -0400 | [diff] [blame] | 359 | movl $0, PT_EAX(%esp) |
| 360 | jmp 2b |
| 361 | END(ret_from_fork) |
Al Viro | 6783eaa2 | 2012-08-02 23:05:11 +0400 | [diff] [blame] | 362 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | /* |
| 364 | * Return to user mode is not as complex as all this looks, |
| 365 | * but we want the default path for a system call return to |
| 366 | * go as quickly as possible which is why some of this is |
| 367 | * less clear than it otherwise should be. |
| 368 | */ |
| 369 | |
| 370 | # userspace resumption stub bypassing syscall exit tracing |
| 371 | ALIGN |
| 372 | ret_from_exception: |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 373 | preempt_stop(CLBR_ANY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | ret_from_intr: |
Dmitry Adamushko | 29a2e28 | 2012-03-22 21:39:25 +0100 | [diff] [blame] | 375 | #ifdef CONFIG_VM86 |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 376 | movl PT_EFLAGS(%esp), %eax # mix EFLAGS and CS |
| 377 | movb PT_CS(%esp), %al |
| 378 | andl $(X86_EFLAGS_VM | SEGMENT_RPL_MASK), %eax |
Dmitry Adamushko | 29a2e28 | 2012-03-22 21:39:25 +0100 | [diff] [blame] | 379 | #else |
| 380 | /* |
Al Viro | 6783eaa2 | 2012-08-02 23:05:11 +0400 | [diff] [blame] | 381 | * We can be coming here from child spawned by kernel_thread(). |
Dmitry Adamushko | 29a2e28 | 2012-03-22 21:39:25 +0100 | [diff] [blame] | 382 | */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 383 | movl PT_CS(%esp), %eax |
| 384 | andl $SEGMENT_RPL_MASK, %eax |
Dmitry Adamushko | 29a2e28 | 2012-03-22 21:39:25 +0100 | [diff] [blame] | 385 | #endif |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 386 | cmpl $USER_RPL, %eax |
| 387 | jb resume_kernel # not returning to v8086 or userspace |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 388 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | ENTRY(resume_userspace) |
Andy Lutomirski | 5d73fc7 | 2015-07-31 14:41:09 -0700 | [diff] [blame] | 390 | DISABLE_INTERRUPTS(CLBR_ANY) |
Peter Zijlstra | e32e58a | 2008-06-06 10:14:08 +0200 | [diff] [blame] | 391 | TRACE_IRQS_OFF |
Andy Lutomirski | 5d73fc7 | 2015-07-31 14:41:09 -0700 | [diff] [blame] | 392 | movl %esp, %eax |
| 393 | call prepare_exit_to_usermode |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 394 | jmp restore_all |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 395 | END(ret_from_exception) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | |
| 397 | #ifdef CONFIG_PREEMPT |
| 398 | ENTRY(resume_kernel) |
Rusty Russell | 139ec7c | 2006-12-07 02:14:08 +0100 | [diff] [blame] | 399 | DISABLE_INTERRUPTS(CLBR_ANY) |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 400 | .Lneed_resched: |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 401 | cmpl $0, PER_CPU_VAR(__preempt_count) |
| 402 | jnz restore_all |
| 403 | testl $X86_EFLAGS_IF, PT_EFLAGS(%esp) # interrupts off (exception path) ? |
| 404 | jz restore_all |
| 405 | call preempt_schedule_irq |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 406 | jmp .Lneed_resched |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 407 | END(resume_kernel) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | #endif |
| 409 | |
Andy Lutomirski | f2b3757 | 2016-03-09 19:00:30 -0800 | [diff] [blame] | 410 | GLOBAL(__begin_SYSENTER_singlestep_region) |
| 411 | /* |
| 412 | * All code from here through __end_SYSENTER_singlestep_region is subject |
| 413 | * to being single-stepped if a user program sets TF and executes SYSENTER. |
| 414 | * There is absolutely nothing that we can do to prevent this from happening |
| 415 | * (thanks Intel!). To keep our handling of this situation as simple as |
| 416 | * possible, we handle TF just like AC and NT, except that our #DB handler |
| 417 | * will ignore all of the single-step traps generated in this range. |
| 418 | */ |
| 419 | |
| 420 | #ifdef CONFIG_XEN |
| 421 | /* |
| 422 | * Xen doesn't set %esp to be precisely what the normal SYSENTER |
| 423 | * entry point expects, so fix it up before using the normal path. |
| 424 | */ |
| 425 | ENTRY(xen_sysenter_target) |
| 426 | addl $5*4, %esp /* remove xen-provided frame */ |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 427 | jmp .Lsysenter_past_esp |
Andy Lutomirski | f2b3757 | 2016-03-09 19:00:30 -0800 | [diff] [blame] | 428 | #endif |
| 429 | |
Andy Lutomirski | fda57b2 | 2016-03-09 19:00:35 -0800 | [diff] [blame] | 430 | /* |
| 431 | * 32-bit SYSENTER entry. |
| 432 | * |
| 433 | * 32-bit system calls through the vDSO's __kernel_vsyscall enter here |
| 434 | * if X86_FEATURE_SEP is available. This is the preferred system call |
| 435 | * entry on 32-bit systems. |
| 436 | * |
| 437 | * The SYSENTER instruction, in principle, should *only* occur in the |
| 438 | * vDSO. In practice, a small number of Android devices were shipped |
| 439 | * with a copy of Bionic that inlined a SYSENTER instruction. This |
| 440 | * never happened in any of Google's Bionic versions -- it only happened |
| 441 | * in a narrow range of Intel-provided versions. |
| 442 | * |
| 443 | * SYSENTER loads SS, ESP, CS, and EIP from previously programmed MSRs. |
| 444 | * IF and VM in RFLAGS are cleared (IOW: interrupts are off). |
| 445 | * SYSENTER does not save anything on the stack, |
| 446 | * and does not save old EIP (!!!), ESP, or EFLAGS. |
| 447 | * |
| 448 | * To avoid losing track of EFLAGS.VM (and thus potentially corrupting |
| 449 | * user and/or vm86 state), we explicitly disable the SYSENTER |
| 450 | * instruction in vm86 mode by reprogramming the MSRs. |
| 451 | * |
| 452 | * Arguments: |
| 453 | * eax system call number |
| 454 | * ebx arg1 |
| 455 | * ecx arg2 |
| 456 | * edx arg3 |
| 457 | * esi arg4 |
| 458 | * edi arg5 |
| 459 | * ebp user stack |
| 460 | * 0(%ebp) arg6 |
| 461 | */ |
Ingo Molnar | 4c8cd0c | 2015-06-08 08:33:56 +0200 | [diff] [blame] | 462 | ENTRY(entry_SYSENTER_32) |
Joerg Roedel | ae2e565 | 2018-07-18 11:40:39 +0200 | [diff] [blame] | 463 | movl TSS_entry2task_stack(%esp), %esp |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 464 | .Lsysenter_past_esp: |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 465 | pushl $__USER_DS /* pt_regs->ss */ |
Andy Lutomirski | 30bfa7b | 2015-12-16 23:18:48 -0800 | [diff] [blame] | 466 | pushl %ebp /* pt_regs->sp (stashed in bp) */ |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 467 | pushfl /* pt_regs->flags (except IF = 0) */ |
| 468 | orl $X86_EFLAGS_IF, (%esp) /* Fix IF */ |
| 469 | pushl $__USER_CS /* pt_regs->cs */ |
| 470 | pushl $0 /* pt_regs->ip = 0 (placeholder) */ |
| 471 | pushl %eax /* pt_regs->orig_ax */ |
| 472 | SAVE_ALL pt_regs_ax=$-ENOSYS /* save rest */ |
| 473 | |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 474 | /* |
Andy Lutomirski | f2b3757 | 2016-03-09 19:00:30 -0800 | [diff] [blame] | 475 | * SYSENTER doesn't filter flags, so we need to clear NT, AC |
| 476 | * and TF ourselves. To save a few cycles, we can check whether |
Andy Lutomirski | 67f590e | 2016-03-09 19:00:26 -0800 | [diff] [blame] | 477 | * either was set instead of doing an unconditional popfq. |
| 478 | * This needs to happen before enabling interrupts so that |
| 479 | * we don't get preempted with NT set. |
| 480 | * |
Andy Lutomirski | f2b3757 | 2016-03-09 19:00:30 -0800 | [diff] [blame] | 481 | * If TF is set, we will single-step all the way to here -- do_debug |
| 482 | * will ignore all the traps. (Yes, this is slow, but so is |
| 483 | * single-stepping in general. This allows us to avoid having |
| 484 | * a more complicated code to handle the case where a user program |
| 485 | * forces us to single-step through the SYSENTER entry code.) |
| 486 | * |
Andy Lutomirski | 67f590e | 2016-03-09 19:00:26 -0800 | [diff] [blame] | 487 | * NB.: .Lsysenter_fix_flags is a label with the code under it moved |
| 488 | * out-of-line as an optimization: NT is unlikely to be set in the |
| 489 | * majority of the cases and instead of polluting the I$ unnecessarily, |
| 490 | * we're keeping that code behind a branch which will predict as |
| 491 | * not-taken and therefore its instructions won't be fetched. |
| 492 | */ |
Andy Lutomirski | f2b3757 | 2016-03-09 19:00:30 -0800 | [diff] [blame] | 493 | 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] | 494 | jnz .Lsysenter_fix_flags |
| 495 | .Lsysenter_flags_fixed: |
| 496 | |
| 497 | /* |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 498 | * User mode is traced as though IRQs are on, and SYSENTER |
| 499 | * turned them off. |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 500 | */ |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 501 | TRACE_IRQS_OFF |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 502 | |
| 503 | movl %esp, %eax |
| 504 | call do_fast_syscall_32 |
Boris Ostrovsky | 91e2eea | 2015-11-19 16:55:45 -0500 | [diff] [blame] | 505 | /* XEN PV guests always use IRET path */ |
| 506 | ALTERNATIVE "testl %eax, %eax; jz .Lsyscall_32_done", \ |
| 507 | "jmp .Lsyscall_32_done", X86_FEATURE_XENPV |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 508 | |
| 509 | /* Opportunistic SYSEXIT */ |
| 510 | TRACE_IRQS_ON /* User mode traces as IRQs on. */ |
| 511 | movl PT_EIP(%esp), %edx /* pt_regs->ip */ |
| 512 | movl PT_OLDESP(%esp), %ecx /* pt_regs->sp */ |
Andy Lutomirski | 3bd2951 | 2015-10-16 15:42:55 -0700 | [diff] [blame] | 513 | 1: mov PT_FS(%esp), %fs |
| 514 | PTGS_TO_GS |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 515 | popl %ebx /* pt_regs->bx */ |
| 516 | addl $2*4, %esp /* skip pt_regs->cx and pt_regs->dx */ |
| 517 | popl %esi /* pt_regs->si */ |
| 518 | popl %edi /* pt_regs->di */ |
| 519 | popl %ebp /* pt_regs->bp */ |
| 520 | popl %eax /* pt_regs->ax */ |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 521 | |
| 522 | /* |
Andy Lutomirski | c2c9b52 | 2016-03-09 19:00:27 -0800 | [diff] [blame] | 523 | * Restore all flags except IF. (We restore IF separately because |
| 524 | * STI gives a one-instruction window in which we won't be interrupted, |
| 525 | * whereas POPF does not.) |
| 526 | */ |
| 527 | addl $PT_EFLAGS-PT_DS, %esp /* point esp at pt_regs->flags */ |
Jan Beulich | 236f0cd | 2018-06-25 04:21:59 -0600 | [diff] [blame] | 528 | btrl $X86_EFLAGS_IF_BIT, (%esp) |
Andy Lutomirski | c2c9b52 | 2016-03-09 19:00:27 -0800 | [diff] [blame] | 529 | popfl |
| 530 | |
| 531 | /* |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 532 | * Return back to the vDSO, which will pop ecx and edx. |
| 533 | * Don't bother with DS and ES (they already contain __USER_DS). |
| 534 | */ |
Boris Ostrovsky | 88c15ec | 2015-11-19 16:55:46 -0500 | [diff] [blame] | 535 | sti |
| 536 | sysexit |
Roland McGrath | af0575b | 2008-06-24 04:16:52 -0700 | [diff] [blame] | 537 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 538 | .pushsection .fixup, "ax" |
| 539 | 2: movl $0, PT_FS(%esp) |
| 540 | jmp 1b |
Jeremy Fitzhardinge | f95d47c | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 541 | .popsection |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 542 | _ASM_EXTABLE(1b, 2b) |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 543 | PTGS_TO_GS_EX |
Andy Lutomirski | 67f590e | 2016-03-09 19:00:26 -0800 | [diff] [blame] | 544 | |
| 545 | .Lsysenter_fix_flags: |
| 546 | pushl $X86_EFLAGS_FIXED |
| 547 | popfl |
| 548 | jmp .Lsysenter_flags_fixed |
Andy Lutomirski | f2b3757 | 2016-03-09 19:00:30 -0800 | [diff] [blame] | 549 | GLOBAL(__end_SYSENTER_singlestep_region) |
Ingo Molnar | 4c8cd0c | 2015-06-08 08:33:56 +0200 | [diff] [blame] | 550 | ENDPROC(entry_SYSENTER_32) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | |
Andy Lutomirski | fda57b2 | 2016-03-09 19:00:35 -0800 | [diff] [blame] | 552 | /* |
| 553 | * 32-bit legacy system call entry. |
| 554 | * |
| 555 | * 32-bit x86 Linux system calls traditionally used the INT $0x80 |
| 556 | * instruction. INT $0x80 lands here. |
| 557 | * |
| 558 | * This entry point can be used by any 32-bit perform system calls. |
| 559 | * Instances of INT $0x80 can be found inline in various programs and |
| 560 | * libraries. It is also used by the vDSO's __kernel_vsyscall |
| 561 | * fallback for hardware that doesn't support a faster entry method. |
| 562 | * Restarted 32-bit system calls also fall back to INT $0x80 |
| 563 | * regardless of what instruction was originally used to do the system |
| 564 | * call. (64-bit programs can use INT $0x80 as well, but they can |
| 565 | * only run on 64-bit kernels and therefore land in |
| 566 | * entry_INT80_compat.) |
| 567 | * |
| 568 | * This is considered a slow path. It is not used by most libc |
| 569 | * implementations on modern hardware except during process startup. |
| 570 | * |
| 571 | * Arguments: |
| 572 | * eax system call number |
| 573 | * ebx arg1 |
| 574 | * ecx arg2 |
| 575 | * edx arg3 |
| 576 | * esi arg4 |
| 577 | * edi arg5 |
| 578 | * ebp arg6 |
| 579 | */ |
Ingo Molnar | b2502b4 | 2015-06-08 08:42:03 +0200 | [diff] [blame] | 580 | ENTRY(entry_INT80_32) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 581 | ASM_CLAC |
Andy Lutomirski | 150ac78 | 2015-10-05 17:48:14 -0700 | [diff] [blame] | 582 | pushl %eax /* pt_regs->orig_ax */ |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 583 | SAVE_ALL pt_regs_ax=$-ENOSYS /* save rest */ |
Andy Lutomirski | 150ac78 | 2015-10-05 17:48:14 -0700 | [diff] [blame] | 584 | |
| 585 | /* |
Andy Lutomirski | a798f09 | 2016-03-09 13:24:32 -0800 | [diff] [blame] | 586 | * User mode is traced as though IRQs are on, and the interrupt gate |
| 587 | * turned them off. |
Andy Lutomirski | 150ac78 | 2015-10-05 17:48:14 -0700 | [diff] [blame] | 588 | */ |
Andy Lutomirski | a798f09 | 2016-03-09 13:24:32 -0800 | [diff] [blame] | 589 | TRACE_IRQS_OFF |
Andy Lutomirski | 150ac78 | 2015-10-05 17:48:14 -0700 | [diff] [blame] | 590 | |
| 591 | movl %esp, %eax |
Andy Lutomirski | a798f09 | 2016-03-09 13:24:32 -0800 | [diff] [blame] | 592 | call do_int80_syscall_32 |
Andy Lutomirski | 5f310f7 | 2015-10-05 17:48:15 -0700 | [diff] [blame] | 593 | .Lsyscall_32_done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | |
| 595 | restore_all: |
Alexander van Heukelum | 2e04bc7 | 2009-06-18 00:35:57 +0200 | [diff] [blame] | 596 | TRACE_IRQS_IRET |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 597 | .Lrestore_all_notrace: |
Joerg Roedel | 46eabca | 2018-07-18 11:40:41 +0200 | [diff] [blame] | 598 | CHECK_AND_APPLY_ESPFIX |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 599 | .Lrestore_nocheck: |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 600 | RESTORE_REGS 4 # skip orig_eax/error_code |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 601 | .Lirq_return: |
Mathieu Desnoyers | 10bcc80 | 2018-01-29 15:20:18 -0500 | [diff] [blame] | 602 | /* |
| 603 | * ARCH_HAS_MEMBARRIER_SYNC_CORE rely on IRET core serialization |
| 604 | * when returning from IPI handler and when returning from |
| 605 | * scheduler to user-space. |
| 606 | */ |
Ingo Molnar | 3701d863 | 2008-02-09 23:24:08 +0100 | [diff] [blame] | 607 | INTERRUPT_RETURN |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 608 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 609 | .section .fixup, "ax" |
| 610 | ENTRY(iret_exc ) |
| 611 | pushl $0 # no error code |
| 612 | pushl $do_iret_error |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 613 | jmp common_exception |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | .previous |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 615 | _ASM_EXTABLE(.Lirq_return, iret_exc) |
Ingo Molnar | b2502b4 | 2015-06-08 08:42:03 +0200 | [diff] [blame] | 616 | ENDPROC(entry_INT80_32) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 618 | .macro FIXUP_ESPFIX_STACK |
Alexander van Heukelum | dc4c2a0 | 2009-06-18 00:35:58 +0200 | [diff] [blame] | 619 | /* |
| 620 | * Switch back for ESPFIX stack to the normal zerobased stack |
| 621 | * |
| 622 | * We can't call C functions using the ESPFIX stack. This code reads |
| 623 | * the high word of the segment base from the GDT and swiches to the |
| 624 | * normal stack and adjusts ESP with the matching offset. |
| 625 | */ |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 626 | #ifdef CONFIG_X86_ESPFIX32 |
Alexander van Heukelum | dc4c2a0 | 2009-06-18 00:35:58 +0200 | [diff] [blame] | 627 | /* fixup the stack */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 628 | mov GDT_ESPFIX_SS + 4, %al /* bits 16..23 */ |
| 629 | mov GDT_ESPFIX_SS + 7, %ah /* bits 24..31 */ |
Denys Vlasenko | 9b47feb | 2015-06-08 22:35:33 +0200 | [diff] [blame] | 630 | shl $16, %eax |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 631 | addl %esp, %eax /* the adjusted stack pointer */ |
| 632 | pushl $__KERNEL_DS |
| 633 | pushl %eax |
| 634 | lss (%esp), %esp /* switch to the normal stack segment */ |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 635 | #endif |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 636 | .endm |
| 637 | .macro UNWIND_ESPFIX_STACK |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 638 | #ifdef CONFIG_X86_ESPFIX32 |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 639 | movl %ss, %eax |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 640 | /* see if on espfix stack */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 641 | cmpw $__ESPFIX_SS, %ax |
| 642 | jne 27f |
| 643 | movl $__KERNEL_DS, %eax |
| 644 | movl %eax, %ds |
| 645 | movl %eax, %es |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 646 | /* switch to normal stack */ |
| 647 | FIXUP_ESPFIX_STACK |
| 648 | 27: |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 649 | #endif |
Tejun Heo | f0d9611 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 650 | .endm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | |
| 652 | /* |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 653 | * Build the entry stubs with some assembler magic. |
| 654 | * We pack 1 stub into every 8-byte block. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | */ |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 656 | .align 8 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | ENTRY(irq_entries_start) |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 658 | vector=FIRST_EXTERNAL_VECTOR |
| 659 | .rept (FIRST_SYSTEM_VECTOR - FIRST_EXTERNAL_VECTOR) |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 660 | pushl $(~vector+0x80) /* Note: always in signed byte range */ |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 661 | vector=vector+1 |
| 662 | jmp common_interrupt |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 663 | .align 8 |
| 664 | .endr |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 665 | END(irq_entries_start) |
| 666 | |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 667 | /* |
| 668 | * the CPU automatically disables interrupts when executing an IRQ vector, |
| 669 | * so IRQ-flags tracing has to follow that: |
| 670 | */ |
H. Peter Anvin | b7c6244 | 2008-11-11 13:24:58 -0800 | [diff] [blame] | 671 | .p2align CONFIG_X86_L1_CACHE_SHIFT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | common_interrupt: |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 673 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 674 | addl $-0x80, (%esp) /* Adjust vector into the [-256, -1] range */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | SAVE_ALL |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 676 | ENCODE_FRAME_POINTER |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 677 | TRACE_IRQS_OFF |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 678 | movl %esp, %eax |
| 679 | call do_IRQ |
| 680 | jmp ret_from_intr |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 681 | ENDPROC(common_interrupt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | |
Tejun Heo | 02cf94c | 2009-01-21 17:26:06 +0900 | [diff] [blame] | 683 | #define BUILD_INTERRUPT3(name, nr, fn) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | ENTRY(name) \ |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 685 | ASM_CLAC; \ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 686 | pushl $~(nr); \ |
Jan Beulich | fe7cacc | 2006-06-26 13:57:44 +0200 | [diff] [blame] | 687 | SAVE_ALL; \ |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 688 | ENCODE_FRAME_POINTER; \ |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 689 | TRACE_IRQS_OFF \ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 690 | movl %esp, %eax; \ |
| 691 | call fn; \ |
| 692 | jmp ret_from_intr; \ |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 693 | ENDPROC(name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 695 | #define BUILD_INTERRUPT(name, nr) \ |
| 696 | BUILD_INTERRUPT3(name, nr, smp_##name); \ |
Tejun Heo | 02cf94c | 2009-01-21 17:26:06 +0900 | [diff] [blame] | 697 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | /* The include is where all of the SMP etc. interrupts come from */ |
Ingo Molnar | 1164dd0 | 2009-01-28 19:34:09 +0100 | [diff] [blame] | 699 | #include <asm/entry_arch.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | ENTRY(coprocessor_error) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 702 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 703 | pushl $0 |
| 704 | pushl $do_coprocessor_error |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 705 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 706 | END(coprocessor_error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | |
| 708 | ENTRY(simd_coprocessor_error) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 709 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 710 | pushl $0 |
Brian Gerst | 40d2e76 | 2010-03-21 09:00:43 -0400 | [diff] [blame] | 711 | #ifdef CONFIG_X86_INVD_BUG |
| 712 | /* AMD 486 bug: invd from userspace calls exception 19 instead of #GP */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 713 | ALTERNATIVE "pushl $do_general_protection", \ |
| 714 | "pushl $do_simd_coprocessor_error", \ |
Borislav Petkov | 8e65f6e | 2015-01-18 12:35:55 +0100 | [diff] [blame] | 715 | X86_FEATURE_XMM |
Brian Gerst | 40d2e76 | 2010-03-21 09:00:43 -0400 | [diff] [blame] | 716 | #else |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 717 | pushl $do_simd_coprocessor_error |
Brian Gerst | 40d2e76 | 2010-03-21 09:00:43 -0400 | [diff] [blame] | 718 | #endif |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 719 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 720 | END(simd_coprocessor_error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | |
| 722 | ENTRY(device_not_available) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 723 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 724 | pushl $-1 # mark this as an int |
| 725 | pushl $do_device_not_available |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 726 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 727 | END(device_not_available) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | |
Rusty Russell | d3561b7 | 2006-12-07 02:14:07 +0100 | [diff] [blame] | 729 | #ifdef CONFIG_PARAVIRT |
| 730 | ENTRY(native_iret) |
Ingo Molnar | 3701d863 | 2008-02-09 23:24:08 +0100 | [diff] [blame] | 731 | iret |
H. Peter Anvin | 6837a54 | 2012-04-20 12:19:50 -0700 | [diff] [blame] | 732 | _ASM_EXTABLE(native_iret, iret_exc) |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 733 | END(native_iret) |
Rusty Russell | d3561b7 | 2006-12-07 02:14:07 +0100 | [diff] [blame] | 734 | #endif |
| 735 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | ENTRY(overflow) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 737 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 738 | pushl $0 |
| 739 | pushl $do_overflow |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 740 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 741 | END(overflow) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | |
| 743 | ENTRY(bounds) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 744 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 745 | pushl $0 |
| 746 | pushl $do_bounds |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 747 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 748 | END(bounds) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | |
| 750 | ENTRY(invalid_op) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 751 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 752 | pushl $0 |
| 753 | pushl $do_invalid_op |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 754 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 755 | END(invalid_op) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | |
| 757 | ENTRY(coprocessor_segment_overrun) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 758 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 759 | pushl $0 |
| 760 | pushl $do_coprocessor_segment_overrun |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 761 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 762 | END(coprocessor_segment_overrun) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | |
| 764 | ENTRY(invalid_TSS) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 765 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 766 | pushl $do_invalid_TSS |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 767 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 768 | END(invalid_TSS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
| 770 | ENTRY(segment_not_present) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 771 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 772 | pushl $do_segment_not_present |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 773 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 774 | END(segment_not_present) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | |
| 776 | ENTRY(stack_segment) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 777 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 778 | pushl $do_stack_segment |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 779 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 780 | END(stack_segment) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | ENTRY(alignment_check) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 783 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 784 | pushl $do_alignment_check |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 785 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 786 | END(alignment_check) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | |
Prasanna S.P | d28c439 | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 788 | ENTRY(divide_error) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 789 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 790 | pushl $0 # no error code |
| 791 | pushl $do_divide_error |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 792 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 793 | END(divide_error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | |
| 795 | #ifdef CONFIG_X86_MCE |
| 796 | ENTRY(machine_check) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 797 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 798 | pushl $0 |
| 799 | pushl machine_check_vector |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 800 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 801 | END(machine_check) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | #endif |
| 803 | |
| 804 | ENTRY(spurious_interrupt_bug) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 805 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 806 | pushl $0 |
| 807 | pushl $do_spurious_interrupt_bug |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 808 | jmp common_exception |
Jan Beulich | 47a55cd | 2007-02-13 13:26:24 +0100 | [diff] [blame] | 809 | END(spurious_interrupt_bug) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 811 | #ifdef CONFIG_XEN |
| 812 | ENTRY(xen_hypervisor_callback) |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 813 | pushl $-1 /* orig_ax = -1 => not a system call */ |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 814 | SAVE_ALL |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 815 | ENCODE_FRAME_POINTER |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 816 | TRACE_IRQS_OFF |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 817 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 818 | /* |
| 819 | * Check to see if we got the event in the critical |
| 820 | * region in xen_iret_direct, after we've reenabled |
| 821 | * events and checked for pending events. This simulates |
| 822 | * iret instruction's behaviour where it delivers a |
| 823 | * pending interrupt when enabling interrupts: |
| 824 | */ |
| 825 | movl PT_EIP(%esp), %eax |
| 826 | cmpl $xen_iret_start_crit, %eax |
| 827 | jb 1f |
| 828 | cmpl $xen_iret_end_crit, %eax |
| 829 | jae 1f |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 830 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 831 | jmp xen_iret_crit_fixup |
Jeremy Fitzhardinge | 9ec2b80 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 832 | |
Jeremy Fitzhardinge | e2a81ba | 2008-03-17 16:37:17 -0700 | [diff] [blame] | 833 | ENTRY(xen_do_upcall) |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 834 | 1: mov %esp, %eax |
| 835 | call xen_evtchn_do_upcall |
David Vrabel | fdfd811 | 2015-02-19 15:23:17 +0000 | [diff] [blame] | 836 | #ifndef CONFIG_PREEMPT |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 837 | call xen_maybe_preempt_hcall |
David Vrabel | fdfd811 | 2015-02-19 15:23:17 +0000 | [diff] [blame] | 838 | #endif |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 839 | jmp ret_from_intr |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 840 | ENDPROC(xen_hypervisor_callback) |
| 841 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 842 | /* |
| 843 | * Hypervisor uses this for application faults while it executes. |
| 844 | * We get here for two reasons: |
| 845 | * 1. Fault while reloading DS, ES, FS or GS |
| 846 | * 2. Fault while executing IRET |
| 847 | * Category 1 we fix up by reattempting the load, and zeroing the segment |
| 848 | * register if the load fails. |
| 849 | * Category 2 we fix up by jumping to do_iret_error. We cannot use the |
| 850 | * normal Linux return path in this case because if we use the IRET hypercall |
| 851 | * to pop the stack frame we end up in an infinite loop of failsafe callbacks. |
| 852 | * We distinguish between categories by maintaining a status value in EAX. |
| 853 | */ |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 854 | ENTRY(xen_failsafe_callback) |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 855 | pushl %eax |
| 856 | movl $1, %eax |
| 857 | 1: mov 4(%esp), %ds |
| 858 | 2: mov 8(%esp), %es |
| 859 | 3: mov 12(%esp), %fs |
| 860 | 4: mov 16(%esp), %gs |
David Vrabel | a349e23d1 | 2012-10-19 17:29:07 +0100 | [diff] [blame] | 861 | /* EAX == 0 => Category 1 (Bad segment) |
| 862 | EAX != 0 => Category 2 (Bad IRET) */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 863 | testl %eax, %eax |
| 864 | popl %eax |
| 865 | lea 16(%esp), %esp |
| 866 | jz 5f |
| 867 | jmp iret_exc |
| 868 | 5: pushl $-1 /* orig_ax = -1 => not a system call */ |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 869 | SAVE_ALL |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 870 | ENCODE_FRAME_POINTER |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 871 | jmp ret_from_exception |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 872 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 873 | .section .fixup, "ax" |
| 874 | 6: xorl %eax, %eax |
| 875 | movl %eax, 4(%esp) |
| 876 | jmp 1b |
| 877 | 7: xorl %eax, %eax |
| 878 | movl %eax, 8(%esp) |
| 879 | jmp 2b |
| 880 | 8: xorl %eax, %eax |
| 881 | movl %eax, 12(%esp) |
| 882 | jmp 3b |
| 883 | 9: xorl %eax, %eax |
| 884 | movl %eax, 16(%esp) |
| 885 | jmp 4b |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 886 | .previous |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 887 | _ASM_EXTABLE(1b, 6b) |
| 888 | _ASM_EXTABLE(2b, 7b) |
| 889 | _ASM_EXTABLE(3b, 8b) |
| 890 | _ASM_EXTABLE(4b, 9b) |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 891 | ENDPROC(xen_failsafe_callback) |
| 892 | |
K. Y. Srinivasan | bc2b033 | 2013-02-03 17:22:39 -0800 | [diff] [blame] | 893 | BUILD_INTERRUPT3(xen_hvm_callback_vector, HYPERVISOR_CALLBACK_VECTOR, |
Thomas Gleixner | 4b9a8dc | 2017-08-28 08:47:31 +0200 | [diff] [blame] | 894 | xen_evtchn_do_upcall) |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 895 | |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 896 | #endif /* CONFIG_XEN */ |
Jeremy Fitzhardinge | 5ead97c | 2007-07-17 18:37:04 -0700 | [diff] [blame] | 897 | |
K. Y. Srinivasan | bc2b033 | 2013-02-03 17:22:39 -0800 | [diff] [blame] | 898 | #if IS_ENABLED(CONFIG_HYPERV) |
| 899 | |
| 900 | BUILD_INTERRUPT3(hyperv_callback_vector, HYPERVISOR_CALLBACK_VECTOR, |
Thomas Gleixner | 4b9a8dc | 2017-08-28 08:47:31 +0200 | [diff] [blame] | 901 | hyperv_vector_handler) |
K. Y. Srinivasan | bc2b033 | 2013-02-03 17:22:39 -0800 | [diff] [blame] | 902 | |
Vitaly Kuznetsov | 9328626 | 2018-01-24 14:23:33 +0100 | [diff] [blame] | 903 | BUILD_INTERRUPT3(hyperv_reenlightenment_vector, HYPERV_REENLIGHTENMENT_VECTOR, |
| 904 | hyperv_reenlightenment_intr) |
| 905 | |
Michael Kelley | 248e742 | 2018-03-04 22:17:18 -0700 | [diff] [blame] | 906 | BUILD_INTERRUPT3(hv_stimer0_callback_vector, HYPERV_STIMER0_VECTOR, |
| 907 | hv_stimer0_vector_handler) |
| 908 | |
K. Y. Srinivasan | bc2b033 | 2013-02-03 17:22:39 -0800 | [diff] [blame] | 909 | #endif /* CONFIG_HYPERV */ |
| 910 | |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 911 | ENTRY(page_fault) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 912 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 913 | pushl $do_page_fault |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 914 | ALIGN |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 915 | jmp common_exception |
| 916 | END(page_fault) |
| 917 | |
| 918 | common_exception: |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 919 | /* the function address is in %gs's slot on the stack */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 920 | pushl %fs |
| 921 | pushl %es |
| 922 | pushl %ds |
| 923 | pushl %eax |
| 924 | pushl %ebp |
| 925 | pushl %edi |
| 926 | pushl %esi |
| 927 | pushl %edx |
| 928 | pushl %ecx |
| 929 | pushl %ebx |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 930 | ENCODE_FRAME_POINTER |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 931 | cld |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 932 | movl $(__KERNEL_PERCPU), %ecx |
| 933 | movl %ecx, %fs |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 934 | UNWIND_ESPFIX_STACK |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 935 | GS_TO_REG %ecx |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 936 | movl PT_GS(%esp), %edi # get the function address |
| 937 | movl PT_ORIG_EAX(%esp), %edx # get the error code |
| 938 | movl $-1, PT_ORIG_EAX(%esp) # no syscall to restart |
Tejun Heo | ccbeed3 | 2009-02-09 22:17:40 +0900 | [diff] [blame] | 939 | REG_TO_PTGS %ecx |
| 940 | SET_KERNEL_GS %ecx |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 941 | movl $(__USER_DS), %ecx |
| 942 | movl %ecx, %ds |
| 943 | movl %ecx, %es |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 944 | TRACE_IRQS_OFF |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 945 | movl %esp, %eax # pt_regs pointer |
David Woodhouse | 2641f08 | 2018-01-11 21:46:28 +0000 | [diff] [blame] | 946 | CALL_NOSPEC %edi |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 947 | jmp ret_from_exception |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 948 | END(common_exception) |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 949 | |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 950 | ENTRY(debug) |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 951 | /* |
| 952 | * #DB can happen at the first instruction of |
| 953 | * entry_SYSENTER_32 or in Xen's SYSENTER prologue. If this |
| 954 | * happens, then we will be running on a very small stack. We |
| 955 | * need to detect this condition and switch to the thread |
| 956 | * stack before calling any C code at all. |
| 957 | * |
| 958 | * If you edit this code, keep in mind that NMIs can happen in here. |
| 959 | */ |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 960 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 961 | pushl $-1 # mark this as an int |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 962 | SAVE_ALL |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 963 | ENCODE_FRAME_POINTER |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 964 | xorl %edx, %edx # error code 0 |
| 965 | movl %esp, %eax # pt_regs pointer |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 966 | |
| 967 | /* Are we currently on the SYSENTER stack? */ |
Andy Lutomirski | 72f5e08 | 2017-12-04 15:07:20 +0100 | [diff] [blame] | 968 | movl PER_CPU_VAR(cpu_entry_area), %ecx |
Dave Hansen | 4fe2d8b | 2017-12-04 17:25:07 -0800 | [diff] [blame] | 969 | addl $CPU_ENTRY_AREA_entry_stack + SIZEOF_entry_stack, %ecx |
| 970 | subl %eax, %ecx /* ecx = (end of entry_stack) - esp */ |
| 971 | cmpl $SIZEOF_entry_stack, %ecx |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 972 | jb .Ldebug_from_sysenter_stack |
| 973 | |
| 974 | TRACE_IRQS_OFF |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 975 | call do_debug |
| 976 | jmp ret_from_exception |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 977 | |
| 978 | .Ldebug_from_sysenter_stack: |
| 979 | /* We're on the SYSENTER stack. Switch off. */ |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 980 | movl %esp, %ebx |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 981 | movl PER_CPU_VAR(cpu_current_top_of_stack), %esp |
| 982 | TRACE_IRQS_OFF |
| 983 | call do_debug |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 984 | movl %ebx, %esp |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 985 | jmp ret_from_exception |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 986 | END(debug) |
| 987 | |
| 988 | /* |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 989 | * NMI is doubly nasty. It can happen on the first instruction of |
| 990 | * entry_SYSENTER_32 (just like #DB), but it can also interrupt the beginning |
| 991 | * of the #DB handler even if that #DB in turn hit before entry_SYSENTER_32 |
| 992 | * switched stacks. We handle both conditions by simply checking whether we |
| 993 | * interrupted kernel code running on the SYSENTER stack. |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 994 | */ |
| 995 | ENTRY(nmi) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 996 | ASM_CLAC |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 997 | #ifdef CONFIG_X86_ESPFIX32 |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 998 | pushl %eax |
| 999 | movl %ss, %eax |
| 1000 | cmpw $__ESPFIX_SS, %ax |
| 1001 | popl %eax |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 1002 | je .Lnmi_espfix_stack |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 1003 | #endif |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 1004 | |
| 1005 | pushl %eax # pt_regs->orig_ax |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1006 | SAVE_ALL |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 1007 | ENCODE_FRAME_POINTER |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1008 | xorl %edx, %edx # zero error code |
| 1009 | movl %esp, %eax # pt_regs pointer |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 1010 | |
| 1011 | /* Are we currently on the SYSENTER stack? */ |
Andy Lutomirski | 72f5e08 | 2017-12-04 15:07:20 +0100 | [diff] [blame] | 1012 | movl PER_CPU_VAR(cpu_entry_area), %ecx |
Dave Hansen | 4fe2d8b | 2017-12-04 17:25:07 -0800 | [diff] [blame] | 1013 | addl $CPU_ENTRY_AREA_entry_stack + SIZEOF_entry_stack, %ecx |
| 1014 | subl %eax, %ecx /* ecx = (end of entry_stack) - esp */ |
| 1015 | cmpl $SIZEOF_entry_stack, %ecx |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 1016 | jb .Lnmi_from_sysenter_stack |
| 1017 | |
| 1018 | /* Not on SYSENTER stack. */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1019 | call do_nmi |
Joerg Roedel | 8e676ce | 2018-07-18 11:40:42 +0200 | [diff] [blame^] | 1020 | jmp .Lnmi_return |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1021 | |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 1022 | .Lnmi_from_sysenter_stack: |
| 1023 | /* |
| 1024 | * We're on the SYSENTER stack. Switch off. No one (not even debug) |
| 1025 | * is using the thread stack right now, so it's safe for us to use it. |
| 1026 | */ |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 1027 | movl %esp, %ebx |
Andy Lutomirski | 7536656 | 2016-03-09 19:00:32 -0800 | [diff] [blame] | 1028 | movl PER_CPU_VAR(cpu_current_top_of_stack), %esp |
| 1029 | call do_nmi |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 1030 | movl %ebx, %esp |
Joerg Roedel | 8e676ce | 2018-07-18 11:40:42 +0200 | [diff] [blame^] | 1031 | |
| 1032 | .Lnmi_return: |
| 1033 | CHECK_AND_APPLY_ESPFIX |
| 1034 | RESTORE_REGS 4 |
| 1035 | jmp .Lirq_return |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1036 | |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 1037 | #ifdef CONFIG_X86_ESPFIX32 |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 1038 | .Lnmi_espfix_stack: |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 1039 | /* |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1040 | * create the pointer to lss back |
| 1041 | */ |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1042 | pushl %ss |
| 1043 | pushl %esp |
| 1044 | addl $4, (%esp) |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1045 | /* copy the iret frame of 12 bytes */ |
| 1046 | .rept 3 |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1047 | pushl 16(%esp) |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1048 | .endr |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1049 | pushl %eax |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1050 | SAVE_ALL |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 1051 | ENCODE_FRAME_POINTER |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1052 | FIXUP_ESPFIX_STACK # %eax == %esp |
| 1053 | xorl %edx, %edx # zero error code |
| 1054 | call do_nmi |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1055 | RESTORE_REGS |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1056 | lss 12+4(%esp), %esp # back to espfix stack |
Josh Poimboeuf | 1b00255 | 2016-09-21 16:03:59 -0500 | [diff] [blame] | 1057 | jmp .Lirq_return |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 1058 | #endif |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1059 | END(nmi) |
| 1060 | |
| 1061 | ENTRY(int3) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1062 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1063 | pushl $-1 # mark this as an int |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1064 | SAVE_ALL |
Josh Poimboeuf | 946c191 | 2016-10-20 11:34:40 -0500 | [diff] [blame] | 1065 | ENCODE_FRAME_POINTER |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1066 | TRACE_IRQS_OFF |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1067 | xorl %edx, %edx # zero error code |
| 1068 | movl %esp, %eax # pt_regs pointer |
| 1069 | call do_int3 |
| 1070 | jmp ret_from_exception |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1071 | END(int3) |
| 1072 | |
| 1073 | ENTRY(general_protection) |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1074 | pushl $do_general_protection |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1075 | jmp common_exception |
Alexander van Heukelum | d211af0 | 2008-11-24 15:38:45 +0100 | [diff] [blame] | 1076 | END(general_protection) |
| 1077 | |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 1078 | #ifdef CONFIG_KVM_GUEST |
| 1079 | ENTRY(async_page_fault) |
H. Peter Anvin | e59d1b0 | 2012-09-21 13:58:10 -0700 | [diff] [blame] | 1080 | ASM_CLAC |
Ingo Molnar | a49976d | 2015-06-08 09:49:11 +0200 | [diff] [blame] | 1081 | pushl $do_async_page_fault |
Josh Poimboeuf | 7252c4c | 2016-09-21 16:04:00 -0500 | [diff] [blame] | 1082 | jmp common_exception |
Sedat Dilek | 2ae9d29 | 2011-03-08 22:39:24 +0100 | [diff] [blame] | 1083 | END(async_page_fault) |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 1084 | #endif |
Andy Lutomirski | 2deb4be | 2016-07-14 13:22:55 -0700 | [diff] [blame] | 1085 | |
| 1086 | ENTRY(rewind_stack_do_exit) |
| 1087 | /* Prevent any naive code from trying to unwind to our caller. */ |
| 1088 | xorl %ebp, %ebp |
| 1089 | |
| 1090 | movl PER_CPU_VAR(cpu_current_top_of_stack), %esi |
| 1091 | leal -TOP_OF_KERNEL_STACK_PADDING-PTREGS_SIZE(%esi), %esp |
| 1092 | |
| 1093 | call do_exit |
| 1094 | 1: jmp 1b |
| 1095 | END(rewind_stack_do_exit) |