blob: f048e384ff54e06530b657efc3b00cdf50f1ce5b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/arch/x86_64/entry.S
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 * Copyright (C) 2000, 2001, 2002 Andi Kleen SuSE Labs
7 * Copyright (C) 2000 Pavel Machek <pavel@suse.cz>
Ingo Molnar4d732132015-06-08 20:43:07 +02008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * entry.S contains the system-call and fault low-level handling routines.
10 *
Andy Lutomirski8b4777a2011-06-05 13:50:18 -040011 * Some of this is documented in Documentation/x86/entry_64.txt
12 *
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010013 * A note on terminology:
Ingo Molnar4d732132015-06-08 20:43:07 +020014 * - iret frame: Architecture defined interrupt frame from SS to RIP
15 * at the top of the kernel process stack.
Andi Kleen2e91a172006-09-26 10:52:29 +020016 *
17 * Some macro usage:
Ingo Molnar4d732132015-06-08 20:43:07 +020018 * - ENTRY/END: Define functions in the symbol table.
19 * - TRACE_IRQ_*: Trace hardirq state for lock debugging.
20 * - idtentry: Define exception entry points.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/linkage.h>
23#include <asm/segment.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/cache.h>
25#include <asm/errno.h>
Sam Ravnborge2d5df92005-09-09 21:28:48 +020026#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/msr.h>
28#include <asm/unistd.h>
29#include <asm/thread_info.h>
30#include <asm/hw_irq.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080031#include <asm/page_types.h>
Ingo Molnar2601e642006-07-03 00:24:45 -070032#include <asm/irqflags.h>
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010033#include <asm/paravirt.h>
Tejun Heo9939dda2009-01-13 20:41:35 +090034#include <asm/percpu.h>
H. Peter Anvind7abc0f2012-04-20 12:19:50 -070035#include <asm/asm.h>
H. Peter Anvin63bcff22012-09-21 12:43:12 -070036#include <asm/smap.h>
H. Peter Anvin3891a042014-04-29 16:46:09 -070037#include <asm/pgtable_types.h>
Al Viro784d5692016-01-11 11:04:34 -050038#include <asm/export.h>
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -050039#include <asm/frame.h>
Eric Parisd7e75282012-01-03 14:23:06 -050040#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Peter Zijlstra6fd166a2017-12-04 15:07:59 +010042#include "calling.h"
43
Ingo Molnar4d732132015-06-08 20:43:07 +020044.code64
45.section .entry.text, "ax"
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020046
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010047#ifdef CONFIG_PARAVIRT
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -040048ENTRY(native_usergs_sysret64)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -050049 UNWIND_HINT_EMPTY
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010050 swapgs
51 sysretq
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -050052END(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010053#endif /* CONFIG_PARAVIRT */
54
Andy Lutomirskica37e572017-11-22 20:39:16 -080055.macro TRACE_IRQS_FLAGS flags:req
Ingo Molnar2601e642006-07-03 00:24:45 -070056#ifdef CONFIG_TRACE_IRQFLAGS
Andy Lutomirskica37e572017-11-22 20:39:16 -080057 bt $9, \flags /* interrupts off? */
Ingo Molnar4d732132015-06-08 20:43:07 +020058 jnc 1f
Ingo Molnar2601e642006-07-03 00:24:45 -070059 TRACE_IRQS_ON
601:
61#endif
62.endm
63
Andy Lutomirskica37e572017-11-22 20:39:16 -080064.macro TRACE_IRQS_IRETQ
65 TRACE_IRQS_FLAGS EFLAGS(%rsp)
66.endm
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/*
Steven Rostedt5963e312012-05-30 11:54:53 -040069 * When dynamic function tracer is enabled it will add a breakpoint
70 * to all locations that it is about to modify, sync CPUs, update
71 * all the code, sync CPUs, then remove the breakpoints. In this time
72 * if lockdep is enabled, it might jump back into the debug handler
73 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
74 *
75 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
76 * make sure the stack pointer does not get reset back to the top
77 * of the debug stack, and instead just reuses the current stack.
78 */
79#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
80
81.macro TRACE_IRQS_OFF_DEBUG
Ingo Molnar4d732132015-06-08 20:43:07 +020082 call debug_stack_set_zero
Steven Rostedt5963e312012-05-30 11:54:53 -040083 TRACE_IRQS_OFF
Ingo Molnar4d732132015-06-08 20:43:07 +020084 call debug_stack_reset
Steven Rostedt5963e312012-05-30 11:54:53 -040085.endm
86
87.macro TRACE_IRQS_ON_DEBUG
Ingo Molnar4d732132015-06-08 20:43:07 +020088 call debug_stack_set_zero
Steven Rostedt5963e312012-05-30 11:54:53 -040089 TRACE_IRQS_ON
Ingo Molnar4d732132015-06-08 20:43:07 +020090 call debug_stack_reset
Steven Rostedt5963e312012-05-30 11:54:53 -040091.endm
92
Denys Vlasenkof2db9382015-02-26 14:40:30 -080093.macro TRACE_IRQS_IRETQ_DEBUG
Ingo Molnar4d732132015-06-08 20:43:07 +020094 bt $9, EFLAGS(%rsp) /* interrupts off? */
95 jnc 1f
Steven Rostedt5963e312012-05-30 11:54:53 -040096 TRACE_IRQS_ON_DEBUG
971:
98.endm
99
100#else
Ingo Molnar4d732132015-06-08 20:43:07 +0200101# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
102# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
103# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
Steven Rostedt5963e312012-05-30 11:54:53 -0400104#endif
105
106/*
Ingo Molnar4d732132015-06-08 20:43:07 +0200107 * 64-bit SYSCALL instruction entry. Up to 6 arguments in registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 *
Andy Lutomirskifda57b22016-03-09 19:00:35 -0800109 * This is the only entry point used for 64-bit system calls. The
110 * hardware interface is reasonably well designed and the register to
111 * argument mapping Linux uses fits well with the registers that are
112 * available when SYSCALL is used.
113 *
114 * SYSCALL instructions can be found inlined in libc implementations as
115 * well as some other programs and libraries. There are also a handful
116 * of SYSCALL instructions in the vDSO used, for example, as a
117 * clock_gettimeofday fallback.
118 *
Ingo Molnar4d732132015-06-08 20:43:07 +0200119 * 64-bit SYSCALL saves rip to rcx, clears rflags.RF, then saves rflags to r11,
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800120 * then loads new ss, cs, and rip from previously programmed MSRs.
121 * rflags gets masked by a value from another MSR (so CLD and CLAC
122 * are not needed). SYSCALL does not save anything on the stack
123 * and does not change rsp.
124 *
125 * Registers on entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 * rax system call number
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800127 * rcx return address
128 * r11 saved rflags (note: r11 is callee-clobbered register in C ABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 * rdi arg0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100131 * rdx arg2
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800132 * r10 arg3 (needs to be moved to rcx to conform to C ABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * r8 arg4
134 * r9 arg5
Ingo Molnar4d732132015-06-08 20:43:07 +0200135 * (note: r12-r15, rbp, rbx are callee-preserved in C ABI)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100136 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 * Only called from user space.
138 *
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100139 * When user can change pt_regs->foo always force IRET. That is because
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200140 * it deals with uncanonical addresses better. SYSRET has trouble
141 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100142 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Andy Lutomirski3386bc82017-12-04 15:07:25 +0100144 .pushsection .entry_trampoline, "ax"
145
146/*
147 * The code in here gets remapped into cpu_entry_area's trampoline. This means
148 * that the assembler and linker have the wrong idea as to where this code
149 * lives (and, in fact, it's mapped more than once, so it's not even at a
150 * fixed address). So we can't reference any symbols outside the entry
151 * trampoline and expect it to work.
152 *
153 * Instead, we carefully abuse %rip-relative addressing.
154 * _entry_trampoline(%rip) refers to the start of the remapped) entry
155 * trampoline. We can thus find cpu_entry_area with this macro:
156 */
157
158#define CPU_ENTRY_AREA \
159 _entry_trampoline - CPU_ENTRY_AREA_entry_trampoline(%rip)
160
161/* The top word of the SYSENTER stack is hot and is usable as scratch space. */
Dave Hansen4fe2d8b2017-12-04 17:25:07 -0800162#define RSP_SCRATCH CPU_ENTRY_AREA_entry_stack + \
163 SIZEOF_entry_stack - 8 + CPU_ENTRY_AREA
Andy Lutomirski3386bc82017-12-04 15:07:25 +0100164
165ENTRY(entry_SYSCALL_64_trampoline)
166 UNWIND_HINT_EMPTY
167 swapgs
168
169 /* Stash the user RSP. */
170 movq %rsp, RSP_SCRATCH
171
Dave Hansen8a093172017-12-04 15:07:35 +0100172 /* Note: using %rsp as a scratch reg. */
173 SWITCH_TO_KERNEL_CR3 scratch_reg=%rsp
174
Andy Lutomirski3386bc82017-12-04 15:07:25 +0100175 /* Load the top of the task stack into RSP */
176 movq CPU_ENTRY_AREA_tss + TSS_sp1 + CPU_ENTRY_AREA, %rsp
177
178 /* Start building the simulated IRET frame. */
179 pushq $__USER_DS /* pt_regs->ss */
180 pushq RSP_SCRATCH /* pt_regs->sp */
181 pushq %r11 /* pt_regs->flags */
182 pushq $__USER_CS /* pt_regs->cs */
183 pushq %rcx /* pt_regs->ip */
184
185 /*
186 * x86 lacks a near absolute jump, and we can't jump to the real
187 * entry text with a relative jump. We could push the target
188 * address and then use retq, but this destroys the pipeline on
189 * many CPUs (wasting over 20 cycles on Sandy Bridge). Instead,
190 * spill RDI and restore it in a second-stage trampoline.
191 */
192 pushq %rdi
193 movq $entry_SYSCALL_64_stage2, %rdi
194 jmp *%rdi
195END(entry_SYSCALL_64_trampoline)
196
197 .popsection
198
199ENTRY(entry_SYSCALL_64_stage2)
200 UNWIND_HINT_EMPTY
201 popq %rdi
202 jmp entry_SYSCALL_64_after_hwframe
203END(entry_SYSCALL_64_stage2)
204
Ingo Molnarb2502b42015-06-08 08:42:03 +0200205ENTRY(entry_SYSCALL_64)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500206 UNWIND_HINT_EMPTY
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100207 /*
208 * Interrupts are off on entry.
209 * We do not frame this tiny irq-off block with TRACE_IRQS_OFF/ON,
210 * it is too small to ever cause noticeable irq latency.
211 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100212
Andy Lutomirski8a9949b2017-08-07 20:59:21 -0700213 swapgs
Dave Hansen8a093172017-12-04 15:07:35 +0100214 /*
215 * This path is not taken when PAGE_TABLE_ISOLATION is disabled so it
216 * is not required to switch CR3.
217 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200218 movq %rsp, PER_CPU_VAR(rsp_scratch)
219 movq PER_CPU_VAR(cpu_current_top_of_stack), %rsp
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100220
221 /* Construct struct pt_regs on stack */
Ingo Molnar4d732132015-06-08 20:43:07 +0200222 pushq $__USER_DS /* pt_regs->ss */
223 pushq PER_CPU_VAR(rsp_scratch) /* pt_regs->sp */
Ingo Molnar4d732132015-06-08 20:43:07 +0200224 pushq %r11 /* pt_regs->flags */
225 pushq $__USER_CS /* pt_regs->cs */
226 pushq %rcx /* pt_regs->ip */
Andy Lutomirski8a9949b2017-08-07 20:59:21 -0700227GLOBAL(entry_SYSCALL_64_after_hwframe)
Ingo Molnar4d732132015-06-08 20:43:07 +0200228 pushq %rax /* pt_regs->orig_ax */
229 pushq %rdi /* pt_regs->di */
230 pushq %rsi /* pt_regs->si */
231 pushq %rdx /* pt_regs->dx */
232 pushq %rcx /* pt_regs->cx */
233 pushq $-ENOSYS /* pt_regs->ax */
234 pushq %r8 /* pt_regs->r8 */
235 pushq %r9 /* pt_regs->r9 */
236 pushq %r10 /* pt_regs->r10 */
237 pushq %r11 /* pt_regs->r11 */
238 sub $(6*8), %rsp /* pt_regs->bp, bx, r12-15 not saved */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500239 UNWIND_HINT_REGS extra=0
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100240
Andy Lutomirski548c3052017-11-21 20:43:56 -0800241 TRACE_IRQS_OFF
242
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800243 /*
244 * If we need to do entry work or if we guess we'll need to do
245 * exit work, go straight to the slow path.
246 */
Andy Lutomirski15f4eae2016-09-13 14:29:25 -0700247 movq PER_CPU_VAR(current_task), %r11
248 testl $_TIF_WORK_SYSCALL_ENTRY|_TIF_ALLWORK_MASK, TASK_TI_flags(%r11)
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800249 jnz entry_SYSCALL64_slow_path
250
Ingo Molnarb2502b42015-06-08 08:42:03 +0200251entry_SYSCALL_64_fastpath:
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800252 /*
253 * Easy case: enable interrupts and issue the syscall. If the syscall
254 * needs pt_regs, we'll call a stub that disables interrupts again
255 * and jumps to the slow path.
256 */
257 TRACE_IRQS_ON
258 ENABLE_INTERRUPTS(CLBR_NONE)
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800259#if __SYSCALL_MASK == ~0
Ingo Molnar4d732132015-06-08 20:43:07 +0200260 cmpq $__NR_syscall_max, %rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800261#else
Ingo Molnar4d732132015-06-08 20:43:07 +0200262 andl $__SYSCALL_MASK, %eax
263 cmpl $__NR_syscall_max, %eax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800264#endif
Ingo Molnar4d732132015-06-08 20:43:07 +0200265 ja 1f /* return -ENOSYS (already in pt_regs->ax) */
266 movq %r10, %rcx
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800267
268 /*
269 * This call instruction is handled specially in stub_ptregs_64.
Andy Lutomirskib7765082016-01-31 09:33:26 -0800270 * It might end up jumping to the slow path. If it jumps, RAX
271 * and all argument registers are clobbered.
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800272 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200273 call *sys_call_table(, %rax, 8)
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800274.Lentry_SYSCALL_64_after_fastpath_call:
275
Ingo Molnar4d732132015-06-08 20:43:07 +0200276 movq %rax, RAX(%rsp)
Denys Vlasenko146b2b02015-03-25 18:18:13 +01002771:
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800278
Denys Vlasenko4416c5a2015-03-31 19:00:03 +0200279 /*
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800280 * If we get here, then we know that pt_regs is clean for SYSRET64.
281 * If we see that no exit work is required (which we are required
282 * to check with IRQs off), then we can go straight to SYSRET64.
Denys Vlasenko4416c5a2015-03-31 19:00:03 +0200283 */
Jan Beulich2140a992017-02-03 02:03:25 -0700284 DISABLE_INTERRUPTS(CLBR_ANY)
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800285 TRACE_IRQS_OFF
Andy Lutomirski15f4eae2016-09-13 14:29:25 -0700286 movq PER_CPU_VAR(current_task), %r11
287 testl $_TIF_ALLWORK_MASK, TASK_TI_flags(%r11)
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800288 jnz 1f
Andy Lutomirskib3494a42015-03-23 12:32:54 -0700289
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800290 LOCKDEP_SYS_EXIT
291 TRACE_IRQS_ON /* user mode is traced as IRQs on */
Andy Lutomirskieb2a54c2016-01-31 09:33:27 -0800292 movq RIP(%rsp), %rcx
293 movq EFLAGS(%rsp), %r11
Andy Lutomirskia5122102017-11-02 00:59:04 -0700294 addq $6*8, %rsp /* skip extra regs -- they were preserved */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500295 UNWIND_HINT_EMPTY
Andy Lutomirskia5122102017-11-02 00:59:04 -0700296 jmp .Lpop_c_regs_except_rcx_r11_and_sysret
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Andy Lutomirski1e423bf2016-01-28 15:11:28 -08002981:
299 /*
300 * The fast path looked good when we started, but something changed
301 * along the way and we need to switch to the slow path. Calling
302 * raise(3) will trigger this, for example. IRQs are off.
303 */
Andy Lutomirski29ea1b22015-07-03 12:44:28 -0700304 TRACE_IRQS_ON
Jan Beulich2140a992017-02-03 02:03:25 -0700305 ENABLE_INTERRUPTS(CLBR_ANY)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800306 SAVE_EXTRA_REGS
Andy Lutomirski29ea1b22015-07-03 12:44:28 -0700307 movq %rsp, %rdi
308 call syscall_return_slowpath /* returns with IRQs disabled */
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800309 jmp return_from_SYSCALL_64
310
311entry_SYSCALL64_slow_path:
312 /* IRQs are off. */
313 SAVE_EXTRA_REGS
314 movq %rsp, %rdi
315 call do_syscall_64 /* returns with IRQs disabled */
316
317return_from_SYSCALL_64:
Andy Lutomirski29ea1b22015-07-03 12:44:28 -0700318 TRACE_IRQS_IRETQ /* we're about to change IF */
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200319
320 /*
321 * Try to use SYSRET instead of IRET if we're returning to
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700322 * a completely clean 64-bit userspace context. If we're not,
323 * go to the slow exit path.
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200324 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200325 movq RCX(%rsp), %rcx
326 movq RIP(%rsp), %r11
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700327
328 cmpq %rcx, %r11 /* SYSRET requires RCX == RIP */
329 jne swapgs_restore_regs_and_return_to_usermode
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200330
331 /*
332 * On Intel CPUs, SYSRET with non-canonical RCX/RIP will #GP
333 * in kernel space. This essentially lets the user take over
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200334 * the kernel, since userspace controls RSP.
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200335 *
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200336 * If width of "canonical tail" ever becomes variable, this will need
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200337 * to be updated to remain correct on both old and new CPUs.
Kirill A. Shutemov361b4b52017-03-30 11:07:26 +0300338 *
Kirill A. Shutemovcbe03172017-06-06 14:31:21 +0300339 * Change top bits to match most significant bit (47th or 56th bit
340 * depending on paging mode) in the address.
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200341 */
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200342 shl $(64 - (__VIRTUAL_MASK_SHIFT+1)), %rcx
343 sar $(64 - (__VIRTUAL_MASK_SHIFT+1)), %rcx
Ingo Molnar4d732132015-06-08 20:43:07 +0200344
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200345 /* If this changed %rcx, it was not canonical */
346 cmpq %rcx, %r11
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700347 jne swapgs_restore_regs_and_return_to_usermode
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200348
Ingo Molnar4d732132015-06-08 20:43:07 +0200349 cmpq $__USER_CS, CS(%rsp) /* CS must match SYSRET */
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700350 jne swapgs_restore_regs_and_return_to_usermode
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200351
Ingo Molnar4d732132015-06-08 20:43:07 +0200352 movq R11(%rsp), %r11
353 cmpq %r11, EFLAGS(%rsp) /* R11 == RFLAGS */
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700354 jne swapgs_restore_regs_and_return_to_usermode
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200355
356 /*
Borislav Petkov3e035302016-08-03 19:14:29 +0200357 * SYSCALL clears RF when it saves RFLAGS in R11 and SYSRET cannot
358 * restore RF properly. If the slowpath sets it for whatever reason, we
359 * need to restore it correctly.
360 *
361 * SYSRET can restore TF, but unlike IRET, restoring TF results in a
362 * trap from userspace immediately after SYSRET. This would cause an
363 * infinite loop whenever #DB happens with register state that satisfies
364 * the opportunistic SYSRET conditions. For example, single-stepping
365 * this user code:
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200366 *
Ingo Molnar4d732132015-06-08 20:43:07 +0200367 * movq $stuck_here, %rcx
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200368 * pushfq
369 * popq %r11
370 * stuck_here:
371 *
372 * would never get past 'stuck_here'.
373 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200374 testq $(X86_EFLAGS_RF|X86_EFLAGS_TF), %r11
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700375 jnz swapgs_restore_regs_and_return_to_usermode
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200376
377 /* nothing to check for RSP */
378
Ingo Molnar4d732132015-06-08 20:43:07 +0200379 cmpq $__USER_DS, SS(%rsp) /* SS must match SYSRET */
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700380 jne swapgs_restore_regs_and_return_to_usermode
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200381
382 /*
Ingo Molnar4d732132015-06-08 20:43:07 +0200383 * We win! This label is here just for ease of understanding
384 * perf profiles. Nothing jumps here.
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200385 */
386syscall_return_via_sysret:
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200387 /* rcx and r11 are already restored (see code above) */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500388 UNWIND_HINT_EMPTY
Andy Lutomirski4fbb3912017-11-02 00:59:03 -0700389 POP_EXTRA_REGS
Andy Lutomirskia5122102017-11-02 00:59:04 -0700390.Lpop_c_regs_except_rcx_r11_and_sysret:
Andy Lutomirski4fbb3912017-11-02 00:59:03 -0700391 popq %rsi /* skip r11 */
392 popq %r10
393 popq %r9
394 popq %r8
395 popq %rax
396 popq %rsi /* skip rcx */
397 popq %rdx
398 popq %rsi
Andy Lutomirski3e3b9292017-12-04 15:07:24 +0100399
400 /*
401 * Now all regs are restored except RSP and RDI.
402 * Save old stack pointer and switch to trampoline stack.
403 */
404 movq %rsp, %rdi
Andy Lutomirskic482fee2017-12-04 15:07:29 +0100405 movq PER_CPU_VAR(cpu_tss_rw + TSS_sp0), %rsp
Andy Lutomirski3e3b9292017-12-04 15:07:24 +0100406
407 pushq RSP-RDI(%rdi) /* RSP */
408 pushq (%rdi) /* RDI */
409
410 /*
411 * We are on the trampoline stack. All regs except RDI are live.
412 * We can do future final exit work right here.
413 */
Peter Zijlstra6fd166a2017-12-04 15:07:59 +0100414 SWITCH_TO_USER_CR3_STACK scratch_reg=%rdi
Andy Lutomirski3e3b9292017-12-04 15:07:24 +0100415
Andy Lutomirski4fbb3912017-11-02 00:59:03 -0700416 popq %rdi
Andy Lutomirski3e3b9292017-12-04 15:07:24 +0100417 popq %rsp
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200418 USERGS_SYSRET64
Ingo Molnarb2502b42015-06-08 08:42:03 +0200419END(entry_SYSCALL_64)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100420
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800421ENTRY(stub_ptregs_64)
422 /*
423 * Syscalls marked as needing ptregs land here.
Andy Lutomirskib7765082016-01-31 09:33:26 -0800424 * If we are on the fast path, we need to save the extra regs,
425 * which we achieve by trying again on the slow path. If we are on
426 * the slow path, the extra regs are already saved.
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800427 *
428 * RAX stores a pointer to the C function implementing the syscall.
Andy Lutomirskib7765082016-01-31 09:33:26 -0800429 * IRQs are on.
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800430 */
431 cmpq $.Lentry_SYSCALL_64_after_fastpath_call, (%rsp)
432 jne 1f
433
Andy Lutomirskib7765082016-01-31 09:33:26 -0800434 /*
435 * Called from fast path -- disable IRQs again, pop return address
436 * and jump to slow path
437 */
Jan Beulich2140a992017-02-03 02:03:25 -0700438 DISABLE_INTERRUPTS(CLBR_ANY)
Andy Lutomirskib7765082016-01-31 09:33:26 -0800439 TRACE_IRQS_OFF
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800440 popq %rax
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500441 UNWIND_HINT_REGS extra=0
Andy Lutomirskib7765082016-01-31 09:33:26 -0800442 jmp entry_SYSCALL64_slow_path
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800443
4441:
Borislav Petkovb3830e82016-08-01 12:05:02 +0200445 jmp *%rax /* Called from C */
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800446END(stub_ptregs_64)
447
448.macro ptregs_stub func
449ENTRY(ptregs_\func)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500450 UNWIND_HINT_FUNC
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800451 leaq \func(%rip), %rax
452 jmp stub_ptregs_64
453END(ptregs_\func)
454.endm
455
456/* Instantiate ptregs_stub for each ptregs-using syscall */
457#define __SYSCALL_64_QUAL_(sym)
458#define __SYSCALL_64_QUAL_ptregs(sym) ptregs_stub sym
459#define __SYSCALL_64(nr, sym, qual) __SYSCALL_64_QUAL_##qual(sym)
460#include <asm/syscalls_64.h>
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200461
Jan Beulich7effaa82005-09-12 18:49:24 +0200462/*
Brian Gerst01003012016-08-13 12:38:19 -0400463 * %rdi: prev task
464 * %rsi: next task
465 */
466ENTRY(__switch_to_asm)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500467 UNWIND_HINT_FUNC
Brian Gerst01003012016-08-13 12:38:19 -0400468 /*
469 * Save callee-saved registers
470 * This must match the order in inactive_task_frame
471 */
472 pushq %rbp
473 pushq %rbx
474 pushq %r12
475 pushq %r13
476 pushq %r14
477 pushq %r15
478
479 /* switch stack */
480 movq %rsp, TASK_threadsp(%rdi)
481 movq TASK_threadsp(%rsi), %rsp
482
483#ifdef CONFIG_CC_STACKPROTECTOR
484 movq TASK_stack_canary(%rsi), %rbx
485 movq %rbx, PER_CPU_VAR(irq_stack_union)+stack_canary_offset
486#endif
487
488 /* restore callee-saved registers */
489 popq %r15
490 popq %r14
491 popq %r13
492 popq %r12
493 popq %rbx
494 popq %rbp
495
496 jmp __switch_to
497END(__switch_to_asm)
498
499/*
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800500 * A newly forked process directly context switches into this address.
501 *
Brian Gerst01003012016-08-13 12:38:19 -0400502 * rax: prev task we switched from
Brian Gerst616d2482016-08-13 12:38:20 -0400503 * rbx: kernel thread func (NULL for user thread)
504 * r12: kernel thread arg
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800505 */
506ENTRY(ret_from_fork)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500507 UNWIND_HINT_EMPTY
Brian Gerst01003012016-08-13 12:38:19 -0400508 movq %rax, %rdi
Josh Poimboeufebd57492017-05-23 10:37:29 -0500509 call schedule_tail /* rdi: 'prev' task parameter */
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800510
Josh Poimboeufebd57492017-05-23 10:37:29 -0500511 testq %rbx, %rbx /* from kernel_thread? */
512 jnz 1f /* kernel threads are uncommon */
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800513
Brian Gerst616d2482016-08-13 12:38:20 -04005142:
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500515 UNWIND_HINT_REGS
Josh Poimboeufebd57492017-05-23 10:37:29 -0500516 movq %rsp, %rdi
Andy Lutomirski24d978b2016-01-28 15:11:27 -0800517 call syscall_return_slowpath /* returns with IRQs disabled */
518 TRACE_IRQS_ON /* user mode is traced as IRQS on */
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700519 jmp swapgs_restore_regs_and_return_to_usermode
Brian Gerst616d2482016-08-13 12:38:20 -0400520
5211:
522 /* kernel thread */
523 movq %r12, %rdi
524 call *%rbx
525 /*
526 * A kernel thread is allowed to return here after successfully
527 * calling do_execve(). Exit to userspace to complete the execve()
528 * syscall.
529 */
530 movq $0, RAX(%rsp)
531 jmp 2b
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800532END(ret_from_fork)
533
534/*
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200535 * Build the entry stubs with some assembler magic.
536 * We pack 1 stub into every 8-byte block.
H. Peter Anvin939b7872008-11-11 13:51:52 -0800537 */
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200538 .align 8
H. Peter Anvin939b7872008-11-11 13:51:52 -0800539ENTRY(irq_entries_start)
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200540 vector=FIRST_EXTERNAL_VECTOR
541 .rept (FIRST_SYSTEM_VECTOR - FIRST_EXTERNAL_VECTOR)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500542 UNWIND_HINT_IRET_REGS
Ingo Molnar4d732132015-06-08 20:43:07 +0200543 pushq $(~vector+0x80) /* Note: always in signed byte range */
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200544 jmp common_interrupt
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200545 .align 8
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500546 vector=vector+1
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200547 .endr
H. Peter Anvin939b7872008-11-11 13:51:52 -0800548END(irq_entries_start)
549
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500550.macro DEBUG_ENTRY_ASSERT_IRQS_OFF
551#ifdef CONFIG_DEBUG_ENTRY
Boris Ostrovskye17f8232017-12-04 15:07:07 +0100552 pushq %rax
553 SAVE_FLAGS(CLBR_RAX)
554 testl $X86_EFLAGS_IF, %eax
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500555 jz .Lokay_\@
556 ud2
557.Lokay_\@:
Boris Ostrovskye17f8232017-12-04 15:07:07 +0100558 popq %rax
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500559#endif
560.endm
561
562/*
563 * Enters the IRQ stack if we're not already using it. NMI-safe. Clobbers
564 * flags and puts old RSP into old_rsp, and leaves all other GPRs alone.
565 * Requires kernel GSBASE.
566 *
567 * The invariant is that, if irq_count != -1, then the IRQ stack is in use.
568 */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500569.macro ENTER_IRQ_STACK regs=1 old_rsp
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500570 DEBUG_ENTRY_ASSERT_IRQS_OFF
571 movq %rsp, \old_rsp
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500572
573 .if \regs
574 UNWIND_HINT_REGS base=\old_rsp
575 .endif
576
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500577 incl PER_CPU_VAR(irq_count)
Andy Lutomirski29955902017-07-11 10:33:39 -0500578 jnz .Lirq_stack_push_old_rsp_\@
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500579
580 /*
581 * Right now, if we just incremented irq_count to zero, we've
582 * claimed the IRQ stack but we haven't switched to it yet.
583 *
584 * If anything is added that can interrupt us here without using IST,
585 * it must be *extremely* careful to limit its stack usage. This
586 * could include kprobes and a hypothetical future IST-less #DB
587 * handler.
Andy Lutomirski29955902017-07-11 10:33:39 -0500588 *
589 * The OOPS unwinder relies on the word at the top of the IRQ
590 * stack linking back to the previous RSP for the entire time we're
591 * on the IRQ stack. For this to work reliably, we need to write
592 * it before we actually move ourselves to the IRQ stack.
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500593 */
594
Andy Lutomirski29955902017-07-11 10:33:39 -0500595 movq \old_rsp, PER_CPU_VAR(irq_stack_union + IRQ_STACK_SIZE - 8)
596 movq PER_CPU_VAR(irq_stack_ptr), %rsp
597
598#ifdef CONFIG_DEBUG_ENTRY
599 /*
600 * If the first movq above becomes wrong due to IRQ stack layout
601 * changes, the only way we'll notice is if we try to unwind right
602 * here. Assert that we set up the stack right to catch this type
603 * of bug quickly.
604 */
605 cmpq -8(%rsp), \old_rsp
606 je .Lirq_stack_okay\@
607 ud2
608 .Lirq_stack_okay\@:
609#endif
610
611.Lirq_stack_push_old_rsp_\@:
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500612 pushq \old_rsp
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500613
614 .if \regs
615 UNWIND_HINT_REGS indirect=1
616 .endif
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500617.endm
618
619/*
620 * Undoes ENTER_IRQ_STACK.
621 */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500622.macro LEAVE_IRQ_STACK regs=1
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500623 DEBUG_ENTRY_ASSERT_IRQS_OFF
624 /* We need to be off the IRQ stack before decrementing irq_count. */
625 popq %rsp
626
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500627 .if \regs
628 UNWIND_HINT_REGS
629 .endif
630
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500631 /*
632 * As in ENTER_IRQ_STACK, irq_count == 0, we are still claiming
633 * the irq stack but we're not on it.
634 */
635
636 decl PER_CPU_VAR(irq_count)
637.endm
638
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100639/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 * Interrupt entry/exit.
641 *
642 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100643 *
644 * Entry runs with interrupts off.
645 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100647/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 .macro interrupt func
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100649 cld
Andy Lutomirski7f2590a2017-12-04 15:07:23 +0100650
651 testb $3, CS-ORIG_RAX(%rsp)
652 jz 1f
653 SWAPGS
654 call switch_to_thread_stack
6551:
656
Andy Lutomirskiff467592015-07-03 12:44:29 -0700657 ALLOC_PT_GPREGS_ON_STACK
658 SAVE_C_REGS
659 SAVE_EXTRA_REGS
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500660 ENCODE_FRAME_POINTER
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100661
Andy Lutomirskiff467592015-07-03 12:44:29 -0700662 testb $3, CS(%rsp)
Denys Vlasenkodde74f22015-04-27 15:21:51 +0200663 jz 1f
Andy Lutomirski02bc7762015-07-03 12:44:31 -0700664
665 /*
Andy Lutomirski7f2590a2017-12-04 15:07:23 +0100666 * IRQ from user mode.
667 *
Andy Lutomirskif1075052015-11-12 12:59:00 -0800668 * We need to tell lockdep that IRQs are off. We can't do this until
669 * we fix gsbase, and we should do it before enter_from_user_mode
670 * (which can take locks). Since TRACE_IRQS_OFF idempotent,
671 * the simplest way to handle it is to just call it twice if
672 * we enter from user mode. There's no reason to optimize this since
673 * TRACE_IRQS_OFF is a no-op if lockdep is off.
674 */
675 TRACE_IRQS_OFF
676
Andy Lutomirski478dc892015-11-12 12:59:04 -0800677 CALL_enter_from_user_mode
Andy Lutomirski02bc7762015-07-03 12:44:31 -0700678
Denys Vlasenko76f5df42015-02-26 14:40:27 -08006791:
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500680 ENTER_IRQ_STACK old_rsp=%rdi
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100681 /* We entered an interrupt context - irqs are off: */
682 TRACE_IRQS_OFF
683
Andy Lutomirskia586f982015-07-03 12:44:30 -0700684 call \func /* rdi points to pt_regs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 .endm
686
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100687 /*
688 * The interrupt stubs push (~vector+0x80) onto the stack and
689 * then jump to common_interrupt.
690 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800691 .p2align CONFIG_X86_L1_CACHE_SHIFT
692common_interrupt:
Jan Beulichee4eb872012-11-02 11:18:39 +0000693 ASM_CLAC
Ingo Molnar4d732132015-06-08 20:43:07 +0200694 addq $-0x80, (%rsp) /* Adjust vector to [-256, -1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 interrupt do_IRQ
Denys Vlasenko34061f12015-03-23 14:03:59 +0100696 /* 0(%rsp): old RSP */
Jan Beulich7effaa82005-09-12 18:49:24 +0200697ret_from_intr:
Jan Beulich2140a992017-02-03 02:03:25 -0700698 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700699 TRACE_IRQS_OFF
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100700
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500701 LEAVE_IRQ_STACK
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100702
Denys Vlasenko03335e92015-04-27 15:21:52 +0200703 testb $3, CS(%rsp)
Denys Vlasenkodde74f22015-04-27 15:21:51 +0200704 jz retint_kernel
Andy Lutomirski02bc7762015-07-03 12:44:31 -0700705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 /* Interrupt came from user space */
Andy Lutomirski02bc7762015-07-03 12:44:31 -0700707GLOBAL(retint_user)
708 mov %rsp,%rdi
709 call prepare_exit_to_usermode
Ingo Molnar2601e642006-07-03 00:24:45 -0700710 TRACE_IRQS_IRETQ
Andy Lutomirski26c4ef92017-11-02 00:58:59 -0700711
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700712GLOBAL(swapgs_restore_regs_and_return_to_usermode)
Andy Lutomirski26c4ef92017-11-02 00:58:59 -0700713#ifdef CONFIG_DEBUG_ENTRY
714 /* Assert that pt_regs indicates user mode. */
Borislav Petkov1e4c4f62017-11-02 13:09:26 +0100715 testb $3, CS(%rsp)
Andy Lutomirski26c4ef92017-11-02 00:58:59 -0700716 jnz 1f
717 ud2
7181:
719#endif
Andy Lutomirskie8720452017-11-02 00:59:01 -0700720 POP_EXTRA_REGS
Andy Lutomirski3e3b9292017-12-04 15:07:24 +0100721 popq %r11
722 popq %r10
723 popq %r9
724 popq %r8
725 popq %rax
726 popq %rcx
727 popq %rdx
728 popq %rsi
729
730 /*
731 * The stack is now user RDI, orig_ax, RIP, CS, EFLAGS, RSP, SS.
732 * Save old stack pointer and switch to trampoline stack.
733 */
734 movq %rsp, %rdi
Andy Lutomirskic482fee2017-12-04 15:07:29 +0100735 movq PER_CPU_VAR(cpu_tss_rw + TSS_sp0), %rsp
Andy Lutomirski3e3b9292017-12-04 15:07:24 +0100736
737 /* Copy the IRET frame to the trampoline stack. */
738 pushq 6*8(%rdi) /* SS */
739 pushq 5*8(%rdi) /* RSP */
740 pushq 4*8(%rdi) /* EFLAGS */
741 pushq 3*8(%rdi) /* CS */
742 pushq 2*8(%rdi) /* RIP */
743
744 /* Push user RDI on the trampoline stack. */
745 pushq (%rdi)
746
747 /*
748 * We are on the trampoline stack. All regs except RDI are live.
749 * We can do future final exit work right here.
750 */
751
Peter Zijlstra6fd166a2017-12-04 15:07:59 +0100752 SWITCH_TO_USER_CR3_STACK scratch_reg=%rdi
Dave Hansen8a093172017-12-04 15:07:35 +0100753
Andy Lutomirski3e3b9292017-12-04 15:07:24 +0100754 /* Restore RDI. */
755 popq %rdi
756 SWAPGS
Andy Lutomirski26c4ef92017-11-02 00:58:59 -0700757 INTERRUPT_RETURN
758
Ingo Molnar2601e642006-07-03 00:24:45 -0700759
Denys Vlasenko627276c2015-03-30 20:09:31 +0200760/* Returning to kernel space */
Denys Vlasenko6ba71b72015-03-31 19:00:05 +0200761retint_kernel:
Denys Vlasenko627276c2015-03-30 20:09:31 +0200762#ifdef CONFIG_PREEMPT
763 /* Interrupts are off */
764 /* Check if we need preemption */
Ingo Molnar4d732132015-06-08 20:43:07 +0200765 bt $9, EFLAGS(%rsp) /* were interrupts off? */
Denys Vlasenko6ba71b72015-03-31 19:00:05 +0200766 jnc 1f
Ingo Molnar4d732132015-06-08 20:43:07 +02007670: cmpl $0, PER_CPU_VAR(__preempt_count)
Denys Vlasenko36acef22015-03-31 19:00:07 +0200768 jnz 1f
Denys Vlasenko627276c2015-03-30 20:09:31 +0200769 call preempt_schedule_irq
Denys Vlasenko36acef22015-03-31 19:00:07 +0200770 jmp 0b
Denys Vlasenko6ba71b72015-03-31 19:00:05 +02007711:
Denys Vlasenko627276c2015-03-30 20:09:31 +0200772#endif
Ingo Molnar2601e642006-07-03 00:24:45 -0700773 /*
774 * The iretq could re-enable interrupts:
775 */
776 TRACE_IRQS_IRETQ
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200777
Andy Lutomirski26c4ef92017-11-02 00:58:59 -0700778GLOBAL(restore_regs_and_return_to_kernel)
779#ifdef CONFIG_DEBUG_ENTRY
780 /* Assert that pt_regs indicates kernel mode. */
Borislav Petkov1e4c4f62017-11-02 13:09:26 +0100781 testb $3, CS(%rsp)
Andy Lutomirski26c4ef92017-11-02 00:58:59 -0700782 jz 1f
783 ud2
7841:
785#endif
Andy Lutomirskie8720452017-11-02 00:59:01 -0700786 POP_EXTRA_REGS
787 POP_C_REGS
788 addq $8, %rsp /* skip regs->orig_ax */
Andy Lutomirski7209a752014-07-23 08:34:11 -0700789 INTERRUPT_RETURN
790
791ENTRY(native_iret)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500792 UNWIND_HINT_IRET_REGS
H. Peter Anvin3891a042014-04-29 16:46:09 -0700793 /*
794 * Are we returning to a stack segment from the LDT? Note: in
795 * 64-bit mode SS:RSP on the exception stack is always valid.
796 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700797#ifdef CONFIG_X86_ESPFIX64
Ingo Molnar4d732132015-06-08 20:43:07 +0200798 testb $4, (SS-RIP)(%rsp)
799 jnz native_irq_return_ldt
H. Peter Anvin34273f42014-05-04 10:36:22 -0700800#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700801
Andy Lutomirskiaf726f22014-11-22 18:00:31 -0800802.global native_irq_return_iret
Andy Lutomirski7209a752014-07-23 08:34:11 -0700803native_irq_return_iret:
Andy Lutomirskib645af22014-11-22 18:00:33 -0800804 /*
805 * This may fault. Non-paranoid faults on return to userspace are
806 * handled by fixup_bad_iret. These include #SS, #GP, and #NP.
807 * Double-faults due to espfix64 are handled in do_double_fault.
808 * Other faults here are fatal.
809 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 iretq
Ingo Molnar3701d8632008-02-09 23:24:08 +0100811
H. Peter Anvin34273f42014-05-04 10:36:22 -0700812#ifdef CONFIG_X86_ESPFIX64
Andy Lutomirski7209a752014-07-23 08:34:11 -0700813native_irq_return_ldt:
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700814 /*
815 * We are running with user GSBASE. All GPRs contain their user
816 * values. We have a percpu ESPFIX stack that is eight slots
817 * long (see ESPFIX_STACK_SIZE). espfix_waddr points to the bottom
818 * of the ESPFIX stack.
819 *
820 * We clobber RAX and RDI in this code. We stash RDI on the
821 * normal stack and RAX on the ESPFIX stack.
822 *
823 * The ESPFIX stack layout we set up looks like this:
824 *
825 * --- top of ESPFIX stack ---
826 * SS
827 * RSP
828 * RFLAGS
829 * CS
830 * RIP <-- RSP points here when we're done
831 * RAX <-- espfix_waddr points here
832 * --- bottom of ESPFIX stack ---
833 */
834
835 pushq %rdi /* Stash user RDI */
Dave Hansen8a093172017-12-04 15:07:35 +0100836 SWAPGS /* to kernel GS */
837 SWITCH_TO_KERNEL_CR3 scratch_reg=%rdi /* to kernel CR3 */
838
Ingo Molnar4d732132015-06-08 20:43:07 +0200839 movq PER_CPU_VAR(espfix_waddr), %rdi
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700840 movq %rax, (0*8)(%rdi) /* user RAX */
841 movq (1*8)(%rsp), %rax /* user RIP */
Ingo Molnar4d732132015-06-08 20:43:07 +0200842 movq %rax, (1*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700843 movq (2*8)(%rsp), %rax /* user CS */
Ingo Molnar4d732132015-06-08 20:43:07 +0200844 movq %rax, (2*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700845 movq (3*8)(%rsp), %rax /* user RFLAGS */
Ingo Molnar4d732132015-06-08 20:43:07 +0200846 movq %rax, (3*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700847 movq (5*8)(%rsp), %rax /* user SS */
Ingo Molnar4d732132015-06-08 20:43:07 +0200848 movq %rax, (5*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700849 movq (4*8)(%rsp), %rax /* user RSP */
Ingo Molnar4d732132015-06-08 20:43:07 +0200850 movq %rax, (4*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700851 /* Now RAX == RSP. */
852
853 andl $0xffff0000, %eax /* RAX = (RSP & 0xffff0000) */
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700854
855 /*
856 * espfix_stack[31:16] == 0. The page tables are set up such that
857 * (espfix_stack | (X & 0xffff0000)) points to a read-only alias of
858 * espfix_waddr for any X. That is, there are 65536 RO aliases of
859 * the same page. Set up RSP so that RSP[31:16] contains the
860 * respective 16 bits of the /userspace/ RSP and RSP nonetheless
861 * still points to an RO alias of the ESPFIX stack.
862 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200863 orq PER_CPU_VAR(espfix_stack), %rax
Dave Hansen8a093172017-12-04 15:07:35 +0100864
Peter Zijlstra6fd166a2017-12-04 15:07:59 +0100865 SWITCH_TO_USER_CR3_STACK scratch_reg=%rdi
Dave Hansen8a093172017-12-04 15:07:35 +0100866 SWAPGS /* to user GS */
867 popq %rdi /* Restore user RDI */
868
Ingo Molnar4d732132015-06-08 20:43:07 +0200869 movq %rax, %rsp
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500870 UNWIND_HINT_IRET_REGS offset=8
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700871
872 /*
873 * At this point, we cannot write to the stack any more, but we can
874 * still read.
875 */
876 popq %rax /* Restore user RAX */
877
878 /*
879 * RSP now points to an ordinary IRET frame, except that the page
880 * is read-only and RSP[31:16] are preloaded with the userspace
881 * values. We can now IRET back to userspace.
882 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200883 jmp native_irq_return_iret
H. Peter Anvin34273f42014-05-04 10:36:22 -0700884#endif
Jan Beulich4b787e02006-06-26 13:56:55 +0200885END(common_interrupt)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700886
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400887/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100889 */
Seiji Aguchicf910e82013-06-20 11:46:53 -0400890.macro apicinterrupt3 num sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100891ENTRY(\sym)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500892 UNWIND_HINT_IRET_REGS
Jan Beulichee4eb872012-11-02 11:18:39 +0000893 ASM_CLAC
Ingo Molnar4d732132015-06-08 20:43:07 +0200894 pushq $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +0000895.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100896 interrupt \do_sym
Ingo Molnar4d732132015-06-08 20:43:07 +0200897 jmp ret_from_intr
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100898END(\sym)
899.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100900
Alexander Potapenko469f0022016-07-15 11:42:43 +0200901/* Make sure APIC interrupt handlers end up in the irqentry section: */
Masami Hiramatsu229a7182017-08-03 11:38:21 +0900902#define PUSH_SECTION_IRQENTRY .pushsection .irqentry.text, "ax"
903#define POP_SECTION_IRQENTRY .popsection
Alexander Potapenko469f0022016-07-15 11:42:43 +0200904
Seiji Aguchicf910e82013-06-20 11:46:53 -0400905.macro apicinterrupt num sym do_sym
Alexander Potapenko469f0022016-07-15 11:42:43 +0200906PUSH_SECTION_IRQENTRY
Seiji Aguchicf910e82013-06-20 11:46:53 -0400907apicinterrupt3 \num \sym \do_sym
Alexander Potapenko469f0022016-07-15 11:42:43 +0200908POP_SECTION_IRQENTRY
Seiji Aguchicf910e82013-06-20 11:46:53 -0400909.endm
910
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100911#ifdef CONFIG_SMP
Ingo Molnar4d732132015-06-08 20:43:07 +0200912apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
913apicinterrupt3 REBOOT_VECTOR reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914#endif
915
Nick Piggin03b48632009-01-20 04:36:04 +0100916#ifdef CONFIG_X86_UV
Ingo Molnar4d732132015-06-08 20:43:07 +0200917apicinterrupt3 UV_BAU_MESSAGE uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100918#endif
Ingo Molnar4d732132015-06-08 20:43:07 +0200919
920apicinterrupt LOCAL_TIMER_VECTOR apic_timer_interrupt smp_apic_timer_interrupt
921apicinterrupt X86_PLATFORM_IPI_VECTOR x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Yang Zhangd78f2662013-04-11 19:25:11 +0800923#ifdef CONFIG_HAVE_KVM
Ingo Molnar4d732132015-06-08 20:43:07 +0200924apicinterrupt3 POSTED_INTR_VECTOR kvm_posted_intr_ipi smp_kvm_posted_intr_ipi
925apicinterrupt3 POSTED_INTR_WAKEUP_VECTOR kvm_posted_intr_wakeup_ipi smp_kvm_posted_intr_wakeup_ipi
Wincy Van210f84b2017-04-28 13:13:58 +0800926apicinterrupt3 POSTED_INTR_NESTED_VECTOR kvm_posted_intr_nested_ipi smp_kvm_posted_intr_nested_ipi
Yang Zhangd78f2662013-04-11 19:25:11 +0800927#endif
928
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400929#ifdef CONFIG_X86_MCE_THRESHOLD
Ingo Molnar4d732132015-06-08 20:43:07 +0200930apicinterrupt THRESHOLD_APIC_VECTOR threshold_interrupt smp_threshold_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400931#endif
932
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500933#ifdef CONFIG_X86_MCE_AMD
Ingo Molnar4d732132015-06-08 20:43:07 +0200934apicinterrupt DEFERRED_ERROR_VECTOR deferred_error_interrupt smp_deferred_error_interrupt
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500935#endif
936
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400937#ifdef CONFIG_X86_THERMAL_VECTOR
Ingo Molnar4d732132015-06-08 20:43:07 +0200938apicinterrupt THERMAL_APIC_VECTOR thermal_interrupt smp_thermal_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400939#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100941#ifdef CONFIG_SMP
Ingo Molnar4d732132015-06-08 20:43:07 +0200942apicinterrupt CALL_FUNCTION_SINGLE_VECTOR call_function_single_interrupt smp_call_function_single_interrupt
943apicinterrupt CALL_FUNCTION_VECTOR call_function_interrupt smp_call_function_interrupt
944apicinterrupt RESCHEDULE_VECTOR reschedule_interrupt smp_reschedule_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100945#endif
946
Ingo Molnar4d732132015-06-08 20:43:07 +0200947apicinterrupt ERROR_APIC_VECTOR error_interrupt smp_error_interrupt
948apicinterrupt SPURIOUS_APIC_VECTOR spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100949
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800950#ifdef CONFIG_IRQ_WORK
Ingo Molnar4d732132015-06-08 20:43:07 +0200951apicinterrupt IRQ_WORK_VECTOR irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +0100952#endif
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954/*
955 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100956 */
Andy Lutomirskic482fee2017-12-04 15:07:29 +0100957#define CPU_TSS_IST(x) PER_CPU_VAR(cpu_tss_rw) + (TSS_ist + ((x) - 1) * 8)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700958
Andy Lutomirski7f2590a2017-12-04 15:07:23 +0100959/*
960 * Switch to the thread stack. This is called with the IRET frame and
961 * orig_ax on the stack. (That is, RDI..R12 are not on the stack and
962 * space has not been allocated for them.)
963 */
964ENTRY(switch_to_thread_stack)
965 UNWIND_HINT_FUNC
966
967 pushq %rdi
Dave Hansen8a093172017-12-04 15:07:35 +0100968 /* Need to switch before accessing the thread stack. */
969 SWITCH_TO_KERNEL_CR3 scratch_reg=%rdi
Andy Lutomirski7f2590a2017-12-04 15:07:23 +0100970 movq %rsp, %rdi
971 movq PER_CPU_VAR(cpu_current_top_of_stack), %rsp
972 UNWIND_HINT sp_offset=16 sp_reg=ORC_REG_DI
973
974 pushq 7*8(%rdi) /* regs->ss */
975 pushq 6*8(%rdi) /* regs->rsp */
976 pushq 5*8(%rdi) /* regs->eflags */
977 pushq 4*8(%rdi) /* regs->cs */
978 pushq 3*8(%rdi) /* regs->ip */
979 pushq 2*8(%rdi) /* regs->orig_ax */
980 pushq 8(%rdi) /* return address */
981 UNWIND_HINT_FUNC
982
983 movq (%rdi), %rdi
984 ret
985END(switch_to_thread_stack)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700986
987.macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100988ENTRY(\sym)
Josh Poimboeuf98990a32017-10-20 11:21:33 -0500989 UNWIND_HINT_IRET_REGS offset=\has_error_code*8
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500990
Andy Lutomirski577ed452014-05-21 15:07:09 -0700991 /* Sanity check */
992 .if \shift_ist != -1 && \paranoid == 0
993 .error "using shift_ist requires paranoid=1"
994 .endif
995
Jan Beulichee4eb872012-11-02 11:18:39 +0000996 ASM_CLAC
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700997
Josh Poimboeuf82c62fa2017-10-20 11:21:35 -0500998 .if \has_error_code == 0
Ingo Molnar4d732132015-06-08 20:43:07 +0200999 pushq $-1 /* ORIG_RAX: no syscall to restart */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001000 .endif
1001
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001002 ALLOC_PT_GPREGS_ON_STACK
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001003
Andy Lutomirski7f2590a2017-12-04 15:07:23 +01001004 .if \paranoid < 2
Ingo Molnar4d732132015-06-08 20:43:07 +02001005 testb $3, CS(%rsp) /* If coming from userspace, switch stacks */
Andy Lutomirski7f2590a2017-12-04 15:07:23 +01001006 jnz .Lfrom_usermode_switch_stack_\@
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001007 .endif
Andy Lutomirski7f2590a2017-12-04 15:07:23 +01001008
1009 .if \paranoid
Ingo Molnar4d732132015-06-08 20:43:07 +02001010 call paranoid_entry
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001011 .else
Ingo Molnar4d732132015-06-08 20:43:07 +02001012 call error_entry
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001013 .endif
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001014 UNWIND_HINT_REGS
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001015 /* returned flag: ebx=0: need swapgs on exit, ebx=1: don't need it */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001016
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001017 .if \paranoid
Andy Lutomirski577ed452014-05-21 15:07:09 -07001018 .if \shift_ist != -1
Ingo Molnar4d732132015-06-08 20:43:07 +02001019 TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */
Andy Lutomirski577ed452014-05-21 15:07:09 -07001020 .else
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001021 TRACE_IRQS_OFF
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001022 .endif
Andy Lutomirski577ed452014-05-21 15:07:09 -07001023 .endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001024
Ingo Molnar4d732132015-06-08 20:43:07 +02001025 movq %rsp, %rdi /* pt_regs pointer */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001026
1027 .if \has_error_code
Ingo Molnar4d732132015-06-08 20:43:07 +02001028 movq ORIG_RAX(%rsp), %rsi /* get error code */
1029 movq $-1, ORIG_RAX(%rsp) /* no syscall to restart */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001030 .else
Ingo Molnar4d732132015-06-08 20:43:07 +02001031 xorl %esi, %esi /* no error code */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001032 .endif
1033
Andy Lutomirski577ed452014-05-21 15:07:09 -07001034 .if \shift_ist != -1
Ingo Molnar4d732132015-06-08 20:43:07 +02001035 subq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001036 .endif
1037
Ingo Molnar4d732132015-06-08 20:43:07 +02001038 call \do_sym
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001039
Andy Lutomirski577ed452014-05-21 15:07:09 -07001040 .if \shift_ist != -1
Ingo Molnar4d732132015-06-08 20:43:07 +02001041 addq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001042 .endif
1043
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001044 /* these procedures expect "no swapgs" flag in ebx */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001045 .if \paranoid
Ingo Molnar4d732132015-06-08 20:43:07 +02001046 jmp paranoid_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001047 .else
Ingo Molnar4d732132015-06-08 20:43:07 +02001048 jmp error_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001049 .endif
1050
Andy Lutomirski7f2590a2017-12-04 15:07:23 +01001051 .if \paranoid < 2
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001052 /*
Andy Lutomirski7f2590a2017-12-04 15:07:23 +01001053 * Entry from userspace. Switch stacks and treat it
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001054 * as a normal entry. This means that paranoid handlers
1055 * run in real process context if user_mode(regs).
1056 */
Andy Lutomirski7f2590a2017-12-04 15:07:23 +01001057.Lfrom_usermode_switch_stack_\@:
Ingo Molnar4d732132015-06-08 20:43:07 +02001058 call error_entry
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001059
Ingo Molnar4d732132015-06-08 20:43:07 +02001060 movq %rsp, %rdi /* pt_regs pointer */
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001061
1062 .if \has_error_code
Ingo Molnar4d732132015-06-08 20:43:07 +02001063 movq ORIG_RAX(%rsp), %rsi /* get error code */
1064 movq $-1, ORIG_RAX(%rsp) /* no syscall to restart */
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001065 .else
Ingo Molnar4d732132015-06-08 20:43:07 +02001066 xorl %esi, %esi /* no error code */
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001067 .endif
1068
Ingo Molnar4d732132015-06-08 20:43:07 +02001069 call \do_sym
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001070
Ingo Molnar4d732132015-06-08 20:43:07 +02001071 jmp error_exit /* %ebx: no swapgs flag */
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001072 .endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001073END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001074.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001075
Ingo Molnar4d732132015-06-08 20:43:07 +02001076idtentry divide_error do_divide_error has_error_code=0
1077idtentry overflow do_overflow has_error_code=0
1078idtentry bounds do_bounds has_error_code=0
1079idtentry invalid_op do_invalid_op has_error_code=0
1080idtentry device_not_available do_device_not_available has_error_code=0
1081idtentry double_fault do_double_fault has_error_code=1 paranoid=2
1082idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0
1083idtentry invalid_TSS do_invalid_TSS has_error_code=1
1084idtentry segment_not_present do_segment_not_present has_error_code=1
1085idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0
1086idtentry coprocessor_error do_coprocessor_error has_error_code=0
1087idtentry alignment_check do_alignment_check has_error_code=1
1088idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001089
Ingo Molnar2601e642006-07-03 00:24:45 -07001090
Ingo Molnar4d732132015-06-08 20:43:07 +02001091 /*
1092 * Reload gs selector with exception handling
1093 * edi: new selector
1094 */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001095ENTRY(native_load_gs_index)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001096 FRAME_BEGIN
Ingo Molnar131484c2015-05-28 12:21:47 +02001097 pushfq
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001098 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Andy Lutomirskica37e572017-11-22 20:39:16 -08001099 TRACE_IRQS_OFF
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001100 SWAPGS
Borislav Petkov42c748bb2016-04-07 17:31:50 -07001101.Lgs_change:
Ingo Molnar4d732132015-06-08 20:43:07 +02001102 movl %edi, %gs
Borislav Petkov96e5d282016-04-07 17:31:49 -070011032: ALTERNATIVE "", "mfence", X86_BUG_SWAPGS_FENCE
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001104 SWAPGS
Andy Lutomirskica37e572017-11-22 20:39:16 -08001105 TRACE_IRQS_FLAGS (%rsp)
Ingo Molnar131484c2015-05-28 12:21:47 +02001106 popfq
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001107 FRAME_END
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001108 ret
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001109ENDPROC(native_load_gs_index)
Al Viro784d5692016-01-11 11:04:34 -05001110EXPORT_SYMBOL(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001111
Borislav Petkov42c748bb2016-04-07 17:31:50 -07001112 _ASM_EXTABLE(.Lgs_change, bad_gs)
Ingo Molnar4d732132015-06-08 20:43:07 +02001113 .section .fixup, "ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001115bad_gs:
Ingo Molnar4d732132015-06-08 20:43:07 +02001116 SWAPGS /* switch back to user gs */
Andy Lutomirskib038c842016-04-26 12:23:27 -07001117.macro ZAP_GS
1118 /* This can't be a string because the preprocessor needs to see it. */
1119 movl $__USER_DS, %eax
1120 movl %eax, %gs
1121.endm
1122 ALTERNATIVE "", "ZAP_GS", X86_BUG_NULL_SEG
Ingo Molnar4d732132015-06-08 20:43:07 +02001123 xorl %eax, %eax
1124 movl %eax, %gs
1125 jmp 2b
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001126 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001127
Andi Kleen26995002006-08-02 22:37:28 +02001128/* Call softirq on interrupt stack. Interrupts are off. */
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001129ENTRY(do_softirq_own_stack)
Ingo Molnar4d732132015-06-08 20:43:07 +02001130 pushq %rbp
1131 mov %rsp, %rbp
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001132 ENTER_IRQ_STACK regs=0 old_rsp=%r11
Ingo Molnar4d732132015-06-08 20:43:07 +02001133 call __do_softirq
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001134 LEAVE_IRQ_STACK regs=0
Andi Kleen26995002006-08-02 22:37:28 +02001135 leaveq
Andi Kleened6b6762005-07-28 21:15:49 -07001136 ret
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001137ENDPROC(do_softirq_own_stack)
Andi Kleen75154f42007-06-23 02:29:25 +02001138
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001139#ifdef CONFIG_XEN
Juergen Gross5878d5d2017-08-31 19:42:49 +02001140idtentry hypervisor_callback xen_do_hypervisor_callback has_error_code=0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001141
1142/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001143 * A note on the "critical region" in our callback handler.
1144 * We want to avoid stacking callback handlers due to events occurring
1145 * during handling of the last event. To do this, we keep events disabled
1146 * until we've done all processing. HOWEVER, we must enable events before
1147 * popping the stack frame (can't be done atomically) and so it would still
1148 * be possible to get enough handler activations to overflow the stack.
1149 * Although unlikely, bugs of that kind are hard to track down, so we'd
1150 * like to avoid the possibility.
1151 * So, on entry to the handler we detect whether we interrupted an
1152 * existing activation in its critical region -- if so, we pop the current
1153 * activation and restart the handler using the previous one.
1154 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001155ENTRY(xen_do_hypervisor_callback) /* do_hypervisor_callback(struct *pt_regs) */
1156
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001157/*
1158 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1159 * see the correct pointer to the pt_regs
1160 */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001161 UNWIND_HINT_FUNC
Ingo Molnar4d732132015-06-08 20:43:07 +02001162 movq %rdi, %rsp /* we don't return, adjust the stack frame */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001163 UNWIND_HINT_REGS
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -05001164
1165 ENTER_IRQ_STACK old_rsp=%r10
Ingo Molnar4d732132015-06-08 20:43:07 +02001166 call xen_evtchn_do_upcall
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -05001167 LEAVE_IRQ_STACK
1168
David Vrabelfdfd8112015-02-19 15:23:17 +00001169#ifndef CONFIG_PREEMPT
Ingo Molnar4d732132015-06-08 20:43:07 +02001170 call xen_maybe_preempt_hcall
David Vrabelfdfd8112015-02-19 15:23:17 +00001171#endif
Ingo Molnar4d732132015-06-08 20:43:07 +02001172 jmp error_exit
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001173END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001174
1175/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001176 * Hypervisor uses this for application faults while it executes.
1177 * We get here for two reasons:
1178 * 1. Fault while reloading DS, ES, FS or GS
1179 * 2. Fault while executing IRET
1180 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1181 * registers that could be reloaded and zeroed the others.
1182 * Category 2 we fix up by killing the current process. We cannot use the
1183 * normal Linux return path in this case because if we use the IRET hypercall
1184 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1185 * We distinguish between categories by comparing each saved segment register
1186 * with its current contents: any discrepancy means we in category 1.
1187 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001188ENTRY(xen_failsafe_callback)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001189 UNWIND_HINT_EMPTY
Ingo Molnar4d732132015-06-08 20:43:07 +02001190 movl %ds, %ecx
1191 cmpw %cx, 0x10(%rsp)
1192 jne 1f
1193 movl %es, %ecx
1194 cmpw %cx, 0x18(%rsp)
1195 jne 1f
1196 movl %fs, %ecx
1197 cmpw %cx, 0x20(%rsp)
1198 jne 1f
1199 movl %gs, %ecx
1200 cmpw %cx, 0x28(%rsp)
1201 jne 1f
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001202 /* All segments match their saved values => Category 2 (Bad IRET). */
Ingo Molnar4d732132015-06-08 20:43:07 +02001203 movq (%rsp), %rcx
1204 movq 8(%rsp), %r11
1205 addq $0x30, %rsp
1206 pushq $0 /* RIP */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001207 UNWIND_HINT_IRET_REGS offset=8
Ingo Molnar4d732132015-06-08 20:43:07 +02001208 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -070012091: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
Ingo Molnar4d732132015-06-08 20:43:07 +02001210 movq (%rsp), %rcx
1211 movq 8(%rsp), %r11
1212 addq $0x30, %rsp
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001213 UNWIND_HINT_IRET_REGS
Ingo Molnar4d732132015-06-08 20:43:07 +02001214 pushq $-1 /* orig_ax = -1 => not a system call */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001215 ALLOC_PT_GPREGS_ON_STACK
1216 SAVE_C_REGS
1217 SAVE_EXTRA_REGS
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001218 ENCODE_FRAME_POINTER
Ingo Molnar4d732132015-06-08 20:43:07 +02001219 jmp error_exit
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001220END(xen_failsafe_callback)
1221
Seiji Aguchicf910e82013-06-20 11:46:53 -04001222apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
Sheng Yang38e20b02010-05-14 12:40:51 +01001223 xen_hvm_callback_vector xen_evtchn_do_upcall
1224
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001225#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001226
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001227#if IS_ENABLED(CONFIG_HYPERV)
Seiji Aguchicf910e82013-06-20 11:46:53 -04001228apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001229 hyperv_callback_vector hyperv_vector_handler
1230#endif /* CONFIG_HYPERV */
1231
Ingo Molnar4d732132015-06-08 20:43:07 +02001232idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1233idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1234idtentry stack_segment do_stack_segment has_error_code=1
1235
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001236#ifdef CONFIG_XEN
Juergen Gross43e41112017-11-02 00:59:07 -07001237idtentry xennmi do_nmi has_error_code=0
Juergen Gross5878d5d2017-08-31 19:42:49 +02001238idtentry xendebug do_debug has_error_code=0
1239idtentry xenint3 do_int3 has_error_code=0
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001240#endif
Ingo Molnar4d732132015-06-08 20:43:07 +02001241
1242idtentry general_protection do_general_protection has_error_code=1
Thomas Gleixner11a7ffb2017-08-28 08:47:22 +02001243idtentry page_fault do_page_fault has_error_code=1
Ingo Molnar4d732132015-06-08 20:43:07 +02001244
Gleb Natapov631bc482010-10-14 11:22:52 +02001245#ifdef CONFIG_KVM_GUEST
Ingo Molnar4d732132015-06-08 20:43:07 +02001246idtentry async_page_fault do_async_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001247#endif
Ingo Molnar4d732132015-06-08 20:43:07 +02001248
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001249#ifdef CONFIG_X86_MCE
Ingo Molnar4d732132015-06-08 20:43:07 +02001250idtentry machine_check has_error_code=0 paranoid=1 do_sym=*machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001251#endif
1252
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001253/*
1254 * Save all registers in pt_regs, and switch gs if needed.
1255 * Use slow, but surefire "are we in kernel?" check.
1256 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
1257 */
1258ENTRY(paranoid_entry)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001259 UNWIND_HINT_FUNC
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001260 cld
1261 SAVE_C_REGS 8
1262 SAVE_EXTRA_REGS 8
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001263 ENCODE_FRAME_POINTER 8
Ingo Molnar4d732132015-06-08 20:43:07 +02001264 movl $1, %ebx
1265 movl $MSR_GS_BASE, %ecx
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001266 rdmsr
Ingo Molnar4d732132015-06-08 20:43:07 +02001267 testl %edx, %edx
1268 js 1f /* negative -> in kernel */
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001269 SWAPGS
Ingo Molnar4d732132015-06-08 20:43:07 +02001270 xorl %ebx, %ebx
Dave Hansen8a093172017-12-04 15:07:35 +01001271
12721:
1273 SAVE_AND_SWITCH_TO_KERNEL_CR3 scratch_reg=%rax save_reg=%r14
1274
1275 ret
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001276END(paranoid_entry)
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001277
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001278/*
1279 * "Paranoid" exit path from exception stack. This is invoked
1280 * only on return from non-NMI IST interrupts that came
1281 * from kernel space.
1282 *
1283 * We may be returning to very strange contexts (e.g. very early
1284 * in syscall entry), so checking for preemption here would
1285 * be complicated. Fortunately, we there's no good reason
1286 * to try to handle preemption here.
Ingo Molnar4d732132015-06-08 20:43:07 +02001287 *
1288 * On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it)
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001289 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001290ENTRY(paranoid_exit)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001291 UNWIND_HINT_REGS
Jan Beulich2140a992017-02-03 02:03:25 -07001292 DISABLE_INTERRUPTS(CLBR_ANY)
Steven Rostedt5963e312012-05-30 11:54:53 -04001293 TRACE_IRQS_OFF_DEBUG
Ingo Molnar4d732132015-06-08 20:43:07 +02001294 testl %ebx, %ebx /* swapgs needed? */
Andy Lutomirskie53178322017-11-02 00:59:02 -07001295 jnz .Lparanoid_exit_no_swapgs
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001296 TRACE_IRQS_IRETQ
Peter Zijlstra21e94452017-12-04 15:08:00 +01001297 RESTORE_CR3 scratch_reg=%rbx save_reg=%r14
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001298 SWAPGS_UNSAFE_STACK
Andy Lutomirskie53178322017-11-02 00:59:02 -07001299 jmp .Lparanoid_exit_restore
1300.Lparanoid_exit_no_swapgs:
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001301 TRACE_IRQS_IRETQ_DEBUG
Andy Lutomirskie53178322017-11-02 00:59:02 -07001302.Lparanoid_exit_restore:
1303 jmp restore_regs_and_return_to_kernel
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001304END(paranoid_exit)
1305
1306/*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001307 * Save all registers in pt_regs, and switch gs if needed.
Andy Lutomirski539f5112015-06-09 12:36:01 -07001308 * Return: EBX=0: came from user mode; EBX=1: otherwise
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001309 */
1310ENTRY(error_entry)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001311 UNWIND_HINT_FUNC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001312 cld
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001313 SAVE_C_REGS 8
1314 SAVE_EXTRA_REGS 8
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001315 ENCODE_FRAME_POINTER 8
Ingo Molnar4d732132015-06-08 20:43:07 +02001316 xorl %ebx, %ebx
Denys Vlasenko03335e92015-04-27 15:21:52 +02001317 testb $3, CS+8(%rsp)
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001318 jz .Lerror_kernelspace
Andy Lutomirski539f5112015-06-09 12:36:01 -07001319
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001320 /*
1321 * We entered from user mode or we're pretending to have entered
1322 * from user mode due to an IRET fault.
1323 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001324 SWAPGS
Dave Hansen8a093172017-12-04 15:07:35 +01001325 /* We have user CR3. Change to kernel CR3. */
1326 SWITCH_TO_KERNEL_CR3 scratch_reg=%rax
Andy Lutomirski539f5112015-06-09 12:36:01 -07001327
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001328.Lerror_entry_from_usermode_after_swapgs:
Andy Lutomirski7f2590a2017-12-04 15:07:23 +01001329 /* Put us onto the real thread stack. */
1330 popq %r12 /* save return addr in %12 */
1331 movq %rsp, %rdi /* arg0 = pt_regs pointer */
1332 call sync_regs
1333 movq %rax, %rsp /* switch stack */
1334 ENCODE_FRAME_POINTER
1335 pushq %r12
1336
Andy Lutomirskif1075052015-11-12 12:59:00 -08001337 /*
1338 * We need to tell lockdep that IRQs are off. We can't do this until
1339 * we fix gsbase, and we should do it before enter_from_user_mode
1340 * (which can take locks).
1341 */
1342 TRACE_IRQS_OFF
Andy Lutomirski478dc892015-11-12 12:59:04 -08001343 CALL_enter_from_user_mode
Andy Lutomirskif1075052015-11-12 12:59:00 -08001344 ret
Andy Lutomirski02bc7762015-07-03 12:44:31 -07001345
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001346.Lerror_entry_done:
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001347 TRACE_IRQS_OFF
1348 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001349
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001350 /*
1351 * There are two places in the kernel that can potentially fault with
1352 * usergs. Handle them here. B stepping K8s sometimes report a
1353 * truncated RIP for IRET exceptions returning to compat mode. Check
1354 * for these here too.
1355 */
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001356.Lerror_kernelspace:
Ingo Molnar4d732132015-06-08 20:43:07 +02001357 incl %ebx
1358 leaq native_irq_return_iret(%rip), %rcx
1359 cmpq %rcx, RIP+8(%rsp)
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001360 je .Lerror_bad_iret
Ingo Molnar4d732132015-06-08 20:43:07 +02001361 movl %ecx, %eax /* zero extend */
1362 cmpq %rax, RIP+8(%rsp)
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001363 je .Lbstep_iret
Borislav Petkov42c748bb2016-04-07 17:31:50 -07001364 cmpq $.Lgs_change, RIP+8(%rsp)
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001365 jne .Lerror_entry_done
Andy Lutomirski539f5112015-06-09 12:36:01 -07001366
1367 /*
Borislav Petkov42c748bb2016-04-07 17:31:50 -07001368 * hack: .Lgs_change can fail with user gsbase. If this happens, fix up
Andy Lutomirski539f5112015-06-09 12:36:01 -07001369 * gsbase and proceed. We'll fix up the exception and land in
Borislav Petkov42c748bb2016-04-07 17:31:50 -07001370 * .Lgs_change's error handler with kernel gsbase.
Andy Lutomirski539f5112015-06-09 12:36:01 -07001371 */
Wanpeng Li2fa5f042016-09-30 09:01:06 +08001372 SWAPGS
Dave Hansen8a093172017-12-04 15:07:35 +01001373 SWITCH_TO_KERNEL_CR3 scratch_reg=%rax
Wanpeng Li2fa5f042016-09-30 09:01:06 +08001374 jmp .Lerror_entry_done
Brian Gerstae24ffe2009-10-12 10:18:23 -04001375
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001376.Lbstep_iret:
Brian Gerstae24ffe2009-10-12 10:18:23 -04001377 /* Fix truncated RIP */
Ingo Molnar4d732132015-06-08 20:43:07 +02001378 movq %rcx, RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001379 /* fall through */
1380
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001381.Lerror_bad_iret:
Andy Lutomirski539f5112015-06-09 12:36:01 -07001382 /*
Dave Hansen8a093172017-12-04 15:07:35 +01001383 * We came from an IRET to user mode, so we have user
1384 * gsbase and CR3. Switch to kernel gsbase and CR3:
Andy Lutomirski539f5112015-06-09 12:36:01 -07001385 */
Andy Lutomirskib645af22014-11-22 18:00:33 -08001386 SWAPGS
Dave Hansen8a093172017-12-04 15:07:35 +01001387 SWITCH_TO_KERNEL_CR3 scratch_reg=%rax
Andy Lutomirski539f5112015-06-09 12:36:01 -07001388
1389 /*
1390 * Pretend that the exception came from user mode: set up pt_regs
1391 * as if we faulted immediately after IRET and clear EBX so that
1392 * error_exit knows that we will be returning to user mode.
1393 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001394 mov %rsp, %rdi
1395 call fixup_bad_iret
1396 mov %rax, %rsp
Andy Lutomirski539f5112015-06-09 12:36:01 -07001397 decl %ebx
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001398 jmp .Lerror_entry_from_usermode_after_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001399END(error_entry)
1400
1401
Andy Lutomirski539f5112015-06-09 12:36:01 -07001402/*
Nicolas Iooss75ca5b22016-07-29 13:39:51 +02001403 * On entry, EBX is a "return to kernel mode" flag:
Andy Lutomirski539f5112015-06-09 12:36:01 -07001404 * 1: already in kernel mode, don't need SWAPGS
1405 * 0: user gsbase is loaded, we need SWAPGS and standard preparation for return to usermode
1406 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001407ENTRY(error_exit)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001408 UNWIND_HINT_REGS
Jan Beulich2140a992017-02-03 02:03:25 -07001409 DISABLE_INTERRUPTS(CLBR_ANY)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001410 TRACE_IRQS_OFF
Jan Beulich2140a992017-02-03 02:03:25 -07001411 testl %ebx, %ebx
Ingo Molnar4d732132015-06-08 20:43:07 +02001412 jnz retint_kernel
1413 jmp retint_user
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001414END(error_exit)
1415
Andy Lutomirski929bace2017-11-02 00:59:08 -07001416/*
1417 * Runs on exception stack. Xen PV does not go through this path at all,
1418 * so we can use real assembly here.
Dave Hansen8a093172017-12-04 15:07:35 +01001419 *
1420 * Registers:
1421 * %r14: Used to save/restore the CR3 of the interrupted context
1422 * when PAGE_TABLE_ISOLATION is in use. Do not clobber.
Andy Lutomirski929bace2017-11-02 00:59:08 -07001423 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001424ENTRY(nmi)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001425 UNWIND_HINT_IRET_REGS
Andy Lutomirski929bace2017-11-02 00:59:08 -07001426
Andy Lutomirskifc57a7c2015-09-20 16:32:04 -07001427 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001428 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1429 * the iretq it performs will take us out of NMI context.
1430 * This means that we can have nested NMIs where the next
1431 * NMI is using the top of the stack of the previous NMI. We
1432 * can't let it execute because the nested NMI will corrupt the
1433 * stack of the previous NMI. NMI handlers are not re-entrant
1434 * anyway.
1435 *
1436 * To handle this case we do the following:
1437 * Check the a special location on the stack that contains
1438 * a variable that is set when NMIs are executing.
1439 * The interrupted task's stack is also checked to see if it
1440 * is an NMI stack.
1441 * If the variable is not set and the stack is not the NMI
1442 * stack then:
1443 * o Set the special variable on the stack
Andy Lutomirski0b229302015-07-15 10:29:36 -07001444 * o Copy the interrupt frame into an "outermost" location on the
1445 * stack
1446 * o Copy the interrupt frame into an "iret" location on the stack
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001447 * o Continue processing the NMI
1448 * If the variable is set or the previous stack is the NMI stack:
Andy Lutomirski0b229302015-07-15 10:29:36 -07001449 * o Modify the "iret" location to jump to the repeat_nmi
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001450 * o return back to the first NMI
1451 *
1452 * Now on exit of the first NMI, we first clear the stack variable
1453 * The NMI stack will tell any nested NMIs at that point that it is
1454 * nested. Then we pop the stack normally with iret, and if there was
1455 * a nested NMI that updated the copy interrupt stack frame, a
1456 * jump will be made to the repeat_nmi code that will handle the second
1457 * NMI.
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001458 *
1459 * However, espfix prevents us from directly returning to userspace
1460 * with a single IRET instruction. Similarly, IRET to user mode
1461 * can fault. We therefore handle NMIs from user space like
1462 * other IST entries.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001463 */
1464
Andy Lutomirskie93c1732017-08-07 19:43:13 -07001465 ASM_CLAC
1466
Denys Vlasenko146b2b02015-03-25 18:18:13 +01001467 /* Use %rdx as our temp variable throughout */
Ingo Molnar4d732132015-06-08 20:43:07 +02001468 pushq %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001469
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001470 testb $3, CS-RIP+8(%rsp)
1471 jz .Lnmi_from_kernel
Steven Rostedt45d5a162012-02-19 16:43:37 -05001472
1473 /*
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001474 * NMI from user mode. We need to run on the thread stack, but we
1475 * can't go through the normal entry paths: NMIs are masked, and
1476 * we don't want to enable interrupts, because then we'll end
1477 * up in an awkward situation in which IRQs are on but NMIs
1478 * are off.
Andy Lutomirski83c133c2015-09-20 16:32:05 -07001479 *
1480 * We also must not push anything to the stack before switching
1481 * stacks lest we corrupt the "NMI executing" variable.
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001482 */
1483
Andy Lutomirski929bace2017-11-02 00:59:08 -07001484 swapgs
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001485 cld
Dave Hansen8a093172017-12-04 15:07:35 +01001486 SWITCH_TO_KERNEL_CR3 scratch_reg=%rdx
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001487 movq %rsp, %rdx
1488 movq PER_CPU_VAR(cpu_current_top_of_stack), %rsp
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001489 UNWIND_HINT_IRET_REGS base=%rdx offset=8
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001490 pushq 5*8(%rdx) /* pt_regs->ss */
1491 pushq 4*8(%rdx) /* pt_regs->rsp */
1492 pushq 3*8(%rdx) /* pt_regs->flags */
1493 pushq 2*8(%rdx) /* pt_regs->cs */
1494 pushq 1*8(%rdx) /* pt_regs->rip */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001495 UNWIND_HINT_IRET_REGS
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001496 pushq $-1 /* pt_regs->orig_ax */
1497 pushq %rdi /* pt_regs->di */
1498 pushq %rsi /* pt_regs->si */
1499 pushq (%rdx) /* pt_regs->dx */
1500 pushq %rcx /* pt_regs->cx */
1501 pushq %rax /* pt_regs->ax */
1502 pushq %r8 /* pt_regs->r8 */
1503 pushq %r9 /* pt_regs->r9 */
1504 pushq %r10 /* pt_regs->r10 */
1505 pushq %r11 /* pt_regs->r11 */
1506 pushq %rbx /* pt_regs->rbx */
1507 pushq %rbp /* pt_regs->rbp */
1508 pushq %r12 /* pt_regs->r12 */
1509 pushq %r13 /* pt_regs->r13 */
1510 pushq %r14 /* pt_regs->r14 */
1511 pushq %r15 /* pt_regs->r15 */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001512 UNWIND_HINT_REGS
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001513 ENCODE_FRAME_POINTER
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001514
1515 /*
1516 * At this point we no longer need to worry about stack damage
1517 * due to nesting -- we're on the normal thread stack and we're
1518 * done with the NMI stack.
1519 */
1520
1521 movq %rsp, %rdi
1522 movq $-1, %rsi
1523 call do_nmi
1524
1525 /*
1526 * Return back to user mode. We must *not* do the normal exit
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001527 * work, because we don't want to enable interrupts.
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001528 */
Andy Lutomirski8a055d72017-11-02 00:59:00 -07001529 jmp swapgs_restore_regs_and_return_to_usermode
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001530
1531.Lnmi_from_kernel:
1532 /*
Andy Lutomirski0b229302015-07-15 10:29:36 -07001533 * Here's what our stack frame will look like:
1534 * +---------------------------------------------------------+
1535 * | original SS |
1536 * | original Return RSP |
1537 * | original RFLAGS |
1538 * | original CS |
1539 * | original RIP |
1540 * +---------------------------------------------------------+
1541 * | temp storage for rdx |
1542 * +---------------------------------------------------------+
1543 * | "NMI executing" variable |
1544 * +---------------------------------------------------------+
1545 * | iret SS } Copied from "outermost" frame |
1546 * | iret Return RSP } on each loop iteration; overwritten |
1547 * | iret RFLAGS } by a nested NMI to force another |
1548 * | iret CS } iteration if needed. |
1549 * | iret RIP } |
1550 * +---------------------------------------------------------+
1551 * | outermost SS } initialized in first_nmi; |
1552 * | outermost Return RSP } will not be changed before |
1553 * | outermost RFLAGS } NMI processing is done. |
1554 * | outermost CS } Copied to "iret" frame on each |
1555 * | outermost RIP } iteration. |
1556 * +---------------------------------------------------------+
1557 * | pt_regs |
1558 * +---------------------------------------------------------+
1559 *
1560 * The "original" frame is used by hardware. Before re-enabling
1561 * NMIs, we need to be done with it, and we need to leave enough
1562 * space for the asm code here.
1563 *
1564 * We return by executing IRET while RSP points to the "iret" frame.
1565 * That will either return for real or it will loop back into NMI
1566 * processing.
1567 *
1568 * The "outermost" frame is copied to the "iret" frame on each
1569 * iteration of the loop, so each iteration starts with the "iret"
1570 * frame pointing to the final return target.
1571 */
1572
1573 /*
1574 * Determine whether we're a nested NMI.
1575 *
Andy Lutomirskia27507c2015-07-15 10:29:37 -07001576 * If we interrupted kernel code between repeat_nmi and
1577 * end_repeat_nmi, then we are a nested NMI. We must not
1578 * modify the "iret" frame because it's being written by
1579 * the outer NMI. That's okay; the outer NMI handler is
1580 * about to about to call do_nmi anyway, so we can just
1581 * resume the outer NMI.
1582 */
1583
1584 movq $repeat_nmi, %rdx
1585 cmpq 8(%rsp), %rdx
1586 ja 1f
1587 movq $end_repeat_nmi, %rdx
1588 cmpq 8(%rsp), %rdx
1589 ja nested_nmi_out
15901:
1591
1592 /*
1593 * Now check "NMI executing". If it's set, then we're nested.
Andy Lutomirski0b229302015-07-15 10:29:36 -07001594 * This will not detect if we interrupted an outer NMI just
1595 * before IRET.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001596 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001597 cmpl $1, -8(%rsp)
1598 je nested_nmi
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001599
1600 /*
Andy Lutomirski0b229302015-07-15 10:29:36 -07001601 * Now test if the previous stack was an NMI stack. This covers
1602 * the case where we interrupt an outer NMI after it clears
Andy Lutomirski810bc072015-07-15 10:29:38 -07001603 * "NMI executing" but before IRET. We need to be careful, though:
1604 * there is one case in which RSP could point to the NMI stack
1605 * despite there being no NMI active: naughty userspace controls
1606 * RSP at the very beginning of the SYSCALL targets. We can
1607 * pull a fast one on naughty userspace, though: we program
1608 * SYSCALL to mask DF, so userspace cannot cause DF to be set
1609 * if it controls the kernel's RSP. We set DF before we clear
1610 * "NMI executing".
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001611 */
Denys Vlasenko0784b362015-04-01 16:50:57 +02001612 lea 6*8(%rsp), %rdx
1613 /* Compare the NMI stack (rdx) with the stack we came from (4*8(%rsp)) */
1614 cmpq %rdx, 4*8(%rsp)
1615 /* If the stack pointer is above the NMI stack, this is a normal NMI */
1616 ja first_nmi
Ingo Molnar4d732132015-06-08 20:43:07 +02001617
Denys Vlasenko0784b362015-04-01 16:50:57 +02001618 subq $EXCEPTION_STKSZ, %rdx
1619 cmpq %rdx, 4*8(%rsp)
1620 /* If it is below the NMI stack, it is a normal NMI */
1621 jb first_nmi
Andy Lutomirski810bc072015-07-15 10:29:38 -07001622
1623 /* Ah, it is within the NMI stack. */
1624
1625 testb $(X86_EFLAGS_DF >> 8), (3*8 + 1)(%rsp)
1626 jz first_nmi /* RSP was user controlled. */
1627
1628 /* This is a nested NMI. */
Denys Vlasenko0784b362015-04-01 16:50:57 +02001629
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001630nested_nmi:
1631 /*
Andy Lutomirski0b229302015-07-15 10:29:36 -07001632 * Modify the "iret" frame to point to repeat_nmi, forcing another
1633 * iteration of NMI handling.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001634 */
Andy Lutomirski23a781e2015-07-15 10:29:39 -07001635 subq $8, %rsp
Ingo Molnar4d732132015-06-08 20:43:07 +02001636 leaq -10*8(%rsp), %rdx
1637 pushq $__KERNEL_DS
1638 pushq %rdx
Ingo Molnar131484c2015-05-28 12:21:47 +02001639 pushfq
Ingo Molnar4d732132015-06-08 20:43:07 +02001640 pushq $__KERNEL_CS
1641 pushq $repeat_nmi
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001642
1643 /* Put stack back */
Ingo Molnar4d732132015-06-08 20:43:07 +02001644 addq $(6*8), %rsp
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001645
1646nested_nmi_out:
Ingo Molnar4d732132015-06-08 20:43:07 +02001647 popq %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001648
Andy Lutomirski0b229302015-07-15 10:29:36 -07001649 /* We are returning to kernel mode, so this cannot result in a fault. */
Andy Lutomirski929bace2017-11-02 00:59:08 -07001650 iretq
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001651
1652first_nmi:
Andy Lutomirski0b229302015-07-15 10:29:36 -07001653 /* Restore rdx. */
Ingo Molnar4d732132015-06-08 20:43:07 +02001654 movq (%rsp), %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001655
Andy Lutomirski36f1a772015-07-15 10:29:40 -07001656 /* Make room for "NMI executing". */
1657 pushq $0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001658
Andy Lutomirski0b229302015-07-15 10:29:36 -07001659 /* Leave room for the "iret" frame */
Ingo Molnar4d732132015-06-08 20:43:07 +02001660 subq $(5*8), %rsp
Salman Qazi28696f42012-10-01 17:29:25 -07001661
Andy Lutomirski0b229302015-07-15 10:29:36 -07001662 /* Copy the "original" frame to the "outermost" frame */
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001663 .rept 5
Ingo Molnar4d732132015-06-08 20:43:07 +02001664 pushq 11*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001665 .endr
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001666 UNWIND_HINT_IRET_REGS
Jan Beulich62610912012-02-24 14:54:37 +00001667
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001668 /* Everything up to here is safe from nested NMIs */
1669
Andy Lutomirskia97439a2015-07-15 10:29:41 -07001670#ifdef CONFIG_DEBUG_ENTRY
1671 /*
1672 * For ease of testing, unmask NMIs right away. Disabled by
1673 * default because IRET is very expensive.
1674 */
1675 pushq $0 /* SS */
1676 pushq %rsp /* RSP (minus 8 because of the previous push) */
1677 addq $8, (%rsp) /* Fix up RSP */
1678 pushfq /* RFLAGS */
1679 pushq $__KERNEL_CS /* CS */
1680 pushq $1f /* RIP */
Andy Lutomirski929bace2017-11-02 00:59:08 -07001681 iretq /* continues at repeat_nmi below */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001682 UNWIND_HINT_IRET_REGS
Andy Lutomirskia97439a2015-07-15 10:29:41 -070016831:
1684#endif
1685
Andy Lutomirski0b229302015-07-15 10:29:36 -07001686repeat_nmi:
Jan Beulich62610912012-02-24 14:54:37 +00001687 /*
1688 * If there was a nested NMI, the first NMI's iret will return
1689 * here. But NMIs are still enabled and we can take another
1690 * nested NMI. The nested NMI checks the interrupted RIP to see
1691 * if it is between repeat_nmi and end_repeat_nmi, and if so
1692 * it will just return, as we are about to repeat an NMI anyway.
1693 * This makes it safe to copy to the stack frame that a nested
1694 * NMI will update.
Andy Lutomirski0b229302015-07-15 10:29:36 -07001695 *
1696 * RSP is pointing to "outermost RIP". gsbase is unknown, but, if
1697 * we're repeating an NMI, gsbase has the same value that it had on
1698 * the first iteration. paranoid_entry will load the kernel
Andy Lutomirski36f1a772015-07-15 10:29:40 -07001699 * gsbase if needed before we call do_nmi. "NMI executing"
1700 * is zero.
Jan Beulich62610912012-02-24 14:54:37 +00001701 */
Andy Lutomirski36f1a772015-07-15 10:29:40 -07001702 movq $1, 10*8(%rsp) /* Set "NMI executing". */
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001703
Andy Lutomirski0b229302015-07-15 10:29:36 -07001704 /*
1705 * Copy the "outermost" frame to the "iret" frame. NMIs that nest
1706 * here must not modify the "iret" frame while we're writing to
1707 * it or it will end up containing garbage.
1708 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001709 addq $(10*8), %rsp
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001710 .rept 5
Ingo Molnar4d732132015-06-08 20:43:07 +02001711 pushq -6*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001712 .endr
Ingo Molnar4d732132015-06-08 20:43:07 +02001713 subq $(5*8), %rsp
Jan Beulich62610912012-02-24 14:54:37 +00001714end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001715
1716 /*
Andy Lutomirski0b229302015-07-15 10:29:36 -07001717 * Everything below this point can be preempted by a nested NMI.
1718 * If this happens, then the inner NMI will change the "iret"
1719 * frame to point back to repeat_nmi.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001720 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001721 pushq $-1 /* ORIG_RAX: no syscall to restart */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001722 ALLOC_PT_GPREGS_ON_STACK
1723
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001724 /*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001725 * Use paranoid_entry to handle SWAPGS, but no need to use paranoid_exit
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001726 * as we should not be calling schedule in NMI context.
1727 * Even with normal interrupts enabled. An NMI should not be
1728 * setting NEED_RESCHED or anything that normal interrupts and
1729 * exceptions might do.
1730 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001731 call paranoid_entry
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001732 UNWIND_HINT_REGS
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001733
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001734 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
Ingo Molnar4d732132015-06-08 20:43:07 +02001735 movq %rsp, %rdi
1736 movq $-1, %rsi
1737 call do_nmi
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001738
Peter Zijlstra21e94452017-12-04 15:08:00 +01001739 RESTORE_CR3 scratch_reg=%r15 save_reg=%r14
Dave Hansen8a093172017-12-04 15:07:35 +01001740
Ingo Molnar4d732132015-06-08 20:43:07 +02001741 testl %ebx, %ebx /* swapgs needed? */
1742 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001743nmi_swapgs:
1744 SWAPGS_UNSAFE_STACK
1745nmi_restore:
Andy Lutomirski471ee482017-11-02 00:59:05 -07001746 POP_EXTRA_REGS
1747 POP_C_REGS
Andy Lutomirski0b229302015-07-15 10:29:36 -07001748
Andy Lutomirski471ee482017-11-02 00:59:05 -07001749 /*
1750 * Skip orig_ax and the "outermost" frame to point RSP at the "iret"
1751 * at the "iret" frame.
1752 */
1753 addq $6*8, %rsp
Salman Qazi28696f42012-10-01 17:29:25 -07001754
Andy Lutomirski810bc072015-07-15 10:29:38 -07001755 /*
1756 * Clear "NMI executing". Set DF first so that we can easily
1757 * distinguish the remaining code between here and IRET from
Andy Lutomirski929bace2017-11-02 00:59:08 -07001758 * the SYSCALL entry and exit paths.
1759 *
1760 * We arguably should just inspect RIP instead, but I (Andy) wrote
1761 * this code when I had the misapprehension that Xen PV supported
1762 * NMIs, and Xen PV would break that approach.
Andy Lutomirski810bc072015-07-15 10:29:38 -07001763 */
1764 std
1765 movq $0, 5*8(%rsp) /* clear "NMI executing" */
Andy Lutomirski0b229302015-07-15 10:29:36 -07001766
1767 /*
Andy Lutomirski929bace2017-11-02 00:59:08 -07001768 * iretq reads the "iret" frame and exits the NMI stack in a
1769 * single instruction. We are returning to kernel mode, so this
1770 * cannot result in a fault. Similarly, we don't need to worry
1771 * about espfix64 on the way back to kernel mode.
Andy Lutomirski0b229302015-07-15 10:29:36 -07001772 */
Andy Lutomirski929bace2017-11-02 00:59:08 -07001773 iretq
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001774END(nmi)
1775
1776ENTRY(ignore_sysret)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001777 UNWIND_HINT_EMPTY
Ingo Molnar4d732132015-06-08 20:43:07 +02001778 mov $-ENOSYS, %eax
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001779 sysret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001780END(ignore_sysret)
Andy Lutomirski2deb4be2016-07-14 13:22:55 -07001781
1782ENTRY(rewind_stack_do_exit)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001783 UNWIND_HINT_FUNC
Andy Lutomirski2deb4be2016-07-14 13:22:55 -07001784 /* Prevent any naive code from trying to unwind to our caller. */
1785 xorl %ebp, %ebp
1786
1787 movq PER_CPU_VAR(cpu_current_top_of_stack), %rax
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001788 leaq -PTREGS_SIZE(%rax), %rsp
1789 UNWIND_HINT_FUNC sp_offset=PTREGS_SIZE
Andy Lutomirski2deb4be2016-07-14 13:22:55 -07001790
1791 call do_exit
Andy Lutomirski2deb4be2016-07-14 13:22:55 -07001792END(rewind_stack_do_exit)