blob: fd501844af1fd9dbf30946623cbbec0bef32d130 [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
Denys Vlasenkof2db9382015-02-26 14:40:30 -080055.macro TRACE_IRQS_IRETQ
Ingo Molnar2601e642006-07-03 00:24:45 -070056#ifdef CONFIG_TRACE_IRQFLAGS
Ingo Molnar4d732132015-06-08 20:43:07 +020057 bt $9, EFLAGS(%rsp) /* interrupts off? */
58 jnc 1f
Ingo Molnar2601e642006-07-03 00:24:45 -070059 TRACE_IRQS_ON
601:
61#endif
62.endm
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/*
Steven Rostedt5963e312012-05-30 11:54:53 -040065 * When dynamic function tracer is enabled it will add a breakpoint
66 * to all locations that it is about to modify, sync CPUs, update
67 * all the code, sync CPUs, then remove the breakpoints. In this time
68 * if lockdep is enabled, it might jump back into the debug handler
69 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
70 *
71 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
72 * make sure the stack pointer does not get reset back to the top
73 * of the debug stack, and instead just reuses the current stack.
74 */
75#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
76
77.macro TRACE_IRQS_OFF_DEBUG
Ingo Molnar4d732132015-06-08 20:43:07 +020078 call debug_stack_set_zero
Steven Rostedt5963e312012-05-30 11:54:53 -040079 TRACE_IRQS_OFF
Ingo Molnar4d732132015-06-08 20:43:07 +020080 call debug_stack_reset
Steven Rostedt5963e312012-05-30 11:54:53 -040081.endm
82
83.macro TRACE_IRQS_ON_DEBUG
Ingo Molnar4d732132015-06-08 20:43:07 +020084 call debug_stack_set_zero
Steven Rostedt5963e312012-05-30 11:54:53 -040085 TRACE_IRQS_ON
Ingo Molnar4d732132015-06-08 20:43:07 +020086 call debug_stack_reset
Steven Rostedt5963e312012-05-30 11:54:53 -040087.endm
88
Denys Vlasenkof2db9382015-02-26 14:40:30 -080089.macro TRACE_IRQS_IRETQ_DEBUG
Ingo Molnar4d732132015-06-08 20:43:07 +020090 bt $9, EFLAGS(%rsp) /* interrupts off? */
91 jnc 1f
Steven Rostedt5963e312012-05-30 11:54:53 -040092 TRACE_IRQS_ON_DEBUG
931:
94.endm
95
96#else
Ingo Molnar4d732132015-06-08 20:43:07 +020097# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
98# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
99# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
Steven Rostedt5963e312012-05-30 11:54:53 -0400100#endif
101
102/*
Ingo Molnar4d732132015-06-08 20:43:07 +0200103 * 64-bit SYSCALL instruction entry. Up to 6 arguments in registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 *
Andy Lutomirskifda57b22016-03-09 19:00:35 -0800105 * This is the only entry point used for 64-bit system calls. The
106 * hardware interface is reasonably well designed and the register to
107 * argument mapping Linux uses fits well with the registers that are
108 * available when SYSCALL is used.
109 *
110 * SYSCALL instructions can be found inlined in libc implementations as
111 * well as some other programs and libraries. There are also a handful
112 * of SYSCALL instructions in the vDSO used, for example, as a
113 * clock_gettimeofday fallback.
114 *
Ingo Molnar4d732132015-06-08 20:43:07 +0200115 * 64-bit SYSCALL saves rip to rcx, clears rflags.RF, then saves rflags to r11,
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800116 * then loads new ss, cs, and rip from previously programmed MSRs.
117 * rflags gets masked by a value from another MSR (so CLD and CLAC
118 * are not needed). SYSCALL does not save anything on the stack
119 * and does not change rsp.
120 *
121 * Registers on entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 * rax system call number
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800123 * rcx return address
124 * r11 saved rflags (note: r11 is callee-clobbered register in C ABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 * rdi arg0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100127 * rdx arg2
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800128 * r10 arg3 (needs to be moved to rcx to conform to C ABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 * r8 arg4
130 * r9 arg5
Ingo Molnar4d732132015-06-08 20:43:07 +0200131 * (note: r12-r15, rbp, rbx are callee-preserved in C ABI)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100132 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * Only called from user space.
134 *
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100135 * When user can change pt_regs->foo always force IRET. That is because
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200136 * it deals with uncanonical addresses better. SYSRET has trouble
137 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100138 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Andy Lutomirski3386bc82017-12-04 15:07:25 +0100140 .pushsection .entry_trampoline, "ax"
141
142/*
143 * The code in here gets remapped into cpu_entry_area's trampoline. This means
144 * that the assembler and linker have the wrong idea as to where this code
145 * lives (and, in fact, it's mapped more than once, so it's not even at a
146 * fixed address). So we can't reference any symbols outside the entry
147 * trampoline and expect it to work.
148 *
149 * Instead, we carefully abuse %rip-relative addressing.
150 * _entry_trampoline(%rip) refers to the start of the remapped) entry
151 * trampoline. We can thus find cpu_entry_area with this macro:
152 */
153
154#define CPU_ENTRY_AREA \
155 _entry_trampoline - CPU_ENTRY_AREA_entry_trampoline(%rip)
156
157/* The top word of the SYSENTER stack is hot and is usable as scratch space. */
Dave Hansen4fe2d8b2017-12-04 17:25:07 -0800158#define RSP_SCRATCH CPU_ENTRY_AREA_entry_stack + \
159 SIZEOF_entry_stack - 8 + CPU_ENTRY_AREA
Andy Lutomirski3386bc82017-12-04 15:07:25 +0100160
161ENTRY(entry_SYSCALL_64_trampoline)
162 UNWIND_HINT_EMPTY
163 swapgs
164
165 /* Stash the user RSP. */
166 movq %rsp, RSP_SCRATCH
167
Dave Hansen8a093172017-12-04 15:07:35 +0100168 /* Note: using %rsp as a scratch reg. */
169 SWITCH_TO_KERNEL_CR3 scratch_reg=%rsp
170
Andy Lutomirski3386bc82017-12-04 15:07:25 +0100171 /* Load the top of the task stack into RSP */
172 movq CPU_ENTRY_AREA_tss + TSS_sp1 + CPU_ENTRY_AREA, %rsp
173
174 /* Start building the simulated IRET frame. */
175 pushq $__USER_DS /* pt_regs->ss */
176 pushq RSP_SCRATCH /* pt_regs->sp */
177 pushq %r11 /* pt_regs->flags */
178 pushq $__USER_CS /* pt_regs->cs */
179 pushq %rcx /* pt_regs->ip */
180
181 /*
182 * x86 lacks a near absolute jump, and we can't jump to the real
183 * entry text with a relative jump. We could push the target
184 * address and then use retq, but this destroys the pipeline on
185 * many CPUs (wasting over 20 cycles on Sandy Bridge). Instead,
186 * spill RDI and restore it in a second-stage trampoline.
187 */
188 pushq %rdi
189 movq $entry_SYSCALL_64_stage2, %rdi
190 jmp *%rdi
191END(entry_SYSCALL_64_trampoline)
192
193 .popsection
194
195ENTRY(entry_SYSCALL_64_stage2)
196 UNWIND_HINT_EMPTY
197 popq %rdi
198 jmp entry_SYSCALL_64_after_hwframe
199END(entry_SYSCALL_64_stage2)
200
Ingo Molnarb2502b42015-06-08 08:42:03 +0200201ENTRY(entry_SYSCALL_64)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500202 UNWIND_HINT_EMPTY
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100203 /*
204 * Interrupts are off on entry.
205 * We do not frame this tiny irq-off block with TRACE_IRQS_OFF/ON,
206 * it is too small to ever cause noticeable irq latency.
207 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100208
Andy Lutomirski8a9949b2017-08-07 20:59:21 -0700209 swapgs
Dave Hansen8a093172017-12-04 15:07:35 +0100210 /*
211 * This path is not taken when PAGE_TABLE_ISOLATION is disabled so it
212 * is not required to switch CR3.
213 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200214 movq %rsp, PER_CPU_VAR(rsp_scratch)
215 movq PER_CPU_VAR(cpu_current_top_of_stack), %rsp
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100216
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800217 TRACE_IRQS_OFF
218
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100219 /* Construct struct pt_regs on stack */
Ingo Molnar4d732132015-06-08 20:43:07 +0200220 pushq $__USER_DS /* pt_regs->ss */
221 pushq PER_CPU_VAR(rsp_scratch) /* pt_regs->sp */
Ingo Molnar4d732132015-06-08 20:43:07 +0200222 pushq %r11 /* pt_regs->flags */
223 pushq $__USER_CS /* pt_regs->cs */
224 pushq %rcx /* pt_regs->ip */
Andy Lutomirski8a9949b2017-08-07 20:59:21 -0700225GLOBAL(entry_SYSCALL_64_after_hwframe)
Ingo Molnar4d732132015-06-08 20:43:07 +0200226 pushq %rax /* pt_regs->orig_ax */
227 pushq %rdi /* pt_regs->di */
228 pushq %rsi /* pt_regs->si */
229 pushq %rdx /* pt_regs->dx */
230 pushq %rcx /* pt_regs->cx */
231 pushq $-ENOSYS /* pt_regs->ax */
232 pushq %r8 /* pt_regs->r8 */
233 pushq %r9 /* pt_regs->r9 */
234 pushq %r10 /* pt_regs->r10 */
235 pushq %r11 /* pt_regs->r11 */
236 sub $(6*8), %rsp /* pt_regs->bp, bx, r12-15 not saved */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500237 UNWIND_HINT_REGS extra=0
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100238
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800239 /*
240 * If we need to do entry work or if we guess we'll need to do
241 * exit work, go straight to the slow path.
242 */
Andy Lutomirski15f4eae2016-09-13 14:29:25 -0700243 movq PER_CPU_VAR(current_task), %r11
244 testl $_TIF_WORK_SYSCALL_ENTRY|_TIF_ALLWORK_MASK, TASK_TI_flags(%r11)
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800245 jnz entry_SYSCALL64_slow_path
246
Ingo Molnarb2502b42015-06-08 08:42:03 +0200247entry_SYSCALL_64_fastpath:
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800248 /*
249 * Easy case: enable interrupts and issue the syscall. If the syscall
250 * needs pt_regs, we'll call a stub that disables interrupts again
251 * and jumps to the slow path.
252 */
253 TRACE_IRQS_ON
254 ENABLE_INTERRUPTS(CLBR_NONE)
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800255#if __SYSCALL_MASK == ~0
Ingo Molnar4d732132015-06-08 20:43:07 +0200256 cmpq $__NR_syscall_max, %rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800257#else
Ingo Molnar4d732132015-06-08 20:43:07 +0200258 andl $__SYSCALL_MASK, %eax
259 cmpl $__NR_syscall_max, %eax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800260#endif
Ingo Molnar4d732132015-06-08 20:43:07 +0200261 ja 1f /* return -ENOSYS (already in pt_regs->ax) */
262 movq %r10, %rcx
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800263
264 /*
265 * This call instruction is handled specially in stub_ptregs_64.
Andy Lutomirskib7765082016-01-31 09:33:26 -0800266 * It might end up jumping to the slow path. If it jumps, RAX
267 * and all argument registers are clobbered.
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800268 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200269 call *sys_call_table(, %rax, 8)
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800270.Lentry_SYSCALL_64_after_fastpath_call:
271
Ingo Molnar4d732132015-06-08 20:43:07 +0200272 movq %rax, RAX(%rsp)
Denys Vlasenko146b2b02015-03-25 18:18:13 +01002731:
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800274
Denys Vlasenko4416c5a2015-03-31 19:00:03 +0200275 /*
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800276 * If we get here, then we know that pt_regs is clean for SYSRET64.
277 * If we see that no exit work is required (which we are required
278 * to check with IRQs off), then we can go straight to SYSRET64.
Denys Vlasenko4416c5a2015-03-31 19:00:03 +0200279 */
Jan Beulich2140a992017-02-03 02:03:25 -0700280 DISABLE_INTERRUPTS(CLBR_ANY)
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800281 TRACE_IRQS_OFF
Andy Lutomirski15f4eae2016-09-13 14:29:25 -0700282 movq PER_CPU_VAR(current_task), %r11
283 testl $_TIF_ALLWORK_MASK, TASK_TI_flags(%r11)
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800284 jnz 1f
Andy Lutomirskib3494a42015-03-23 12:32:54 -0700285
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800286 LOCKDEP_SYS_EXIT
287 TRACE_IRQS_ON /* user mode is traced as IRQs on */
Andy Lutomirskieb2a54c2016-01-31 09:33:27 -0800288 movq RIP(%rsp), %rcx
289 movq EFLAGS(%rsp), %r11
Andy Lutomirskia5122102017-11-02 00:59:04 -0700290 addq $6*8, %rsp /* skip extra regs -- they were preserved */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500291 UNWIND_HINT_EMPTY
Andy Lutomirskia5122102017-11-02 00:59:04 -0700292 jmp .Lpop_c_regs_except_rcx_r11_and_sysret
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Andy Lutomirski1e423bf2016-01-28 15:11:28 -08002941:
295 /*
296 * The fast path looked good when we started, but something changed
297 * along the way and we need to switch to the slow path. Calling
298 * raise(3) will trigger this, for example. IRQs are off.
299 */
Andy Lutomirski29ea1b22015-07-03 12:44:28 -0700300 TRACE_IRQS_ON
Jan Beulich2140a992017-02-03 02:03:25 -0700301 ENABLE_INTERRUPTS(CLBR_ANY)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800302 SAVE_EXTRA_REGS
Andy Lutomirski29ea1b22015-07-03 12:44:28 -0700303 movq %rsp, %rdi
304 call syscall_return_slowpath /* returns with IRQs disabled */
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800305 jmp return_from_SYSCALL_64
306
307entry_SYSCALL64_slow_path:
308 /* IRQs are off. */
309 SAVE_EXTRA_REGS
310 movq %rsp, %rdi
311 call do_syscall_64 /* returns with IRQs disabled */
312
313return_from_SYSCALL_64:
Andy Lutomirski29ea1b22015-07-03 12:44:28 -0700314 TRACE_IRQS_IRETQ /* we're about to change IF */
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200315
316 /*
317 * Try to use SYSRET instead of IRET if we're returning to
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700318 * a completely clean 64-bit userspace context. If we're not,
319 * go to the slow exit path.
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200320 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200321 movq RCX(%rsp), %rcx
322 movq RIP(%rsp), %r11
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700323
324 cmpq %rcx, %r11 /* SYSRET requires RCX == RIP */
325 jne swapgs_restore_regs_and_return_to_usermode
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200326
327 /*
328 * On Intel CPUs, SYSRET with non-canonical RCX/RIP will #GP
329 * in kernel space. This essentially lets the user take over
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200330 * the kernel, since userspace controls RSP.
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200331 *
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200332 * If width of "canonical tail" ever becomes variable, this will need
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200333 * to be updated to remain correct on both old and new CPUs.
Kirill A. Shutemov361b4b52017-03-30 11:07:26 +0300334 *
Kirill A. Shutemovcbe03172017-06-06 14:31:21 +0300335 * Change top bits to match most significant bit (47th or 56th bit
336 * depending on paging mode) in the address.
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200337 */
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200338 shl $(64 - (__VIRTUAL_MASK_SHIFT+1)), %rcx
339 sar $(64 - (__VIRTUAL_MASK_SHIFT+1)), %rcx
Ingo Molnar4d732132015-06-08 20:43:07 +0200340
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200341 /* If this changed %rcx, it was not canonical */
342 cmpq %rcx, %r11
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700343 jne swapgs_restore_regs_and_return_to_usermode
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200344
Ingo Molnar4d732132015-06-08 20:43:07 +0200345 cmpq $__USER_CS, CS(%rsp) /* CS must match SYSRET */
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700346 jne swapgs_restore_regs_and_return_to_usermode
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200347
Ingo Molnar4d732132015-06-08 20:43:07 +0200348 movq R11(%rsp), %r11
349 cmpq %r11, EFLAGS(%rsp) /* R11 == RFLAGS */
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700350 jne swapgs_restore_regs_and_return_to_usermode
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200351
352 /*
Borislav Petkov3e035302016-08-03 19:14:29 +0200353 * SYSCALL clears RF when it saves RFLAGS in R11 and SYSRET cannot
354 * restore RF properly. If the slowpath sets it for whatever reason, we
355 * need to restore it correctly.
356 *
357 * SYSRET can restore TF, but unlike IRET, restoring TF results in a
358 * trap from userspace immediately after SYSRET. This would cause an
359 * infinite loop whenever #DB happens with register state that satisfies
360 * the opportunistic SYSRET conditions. For example, single-stepping
361 * this user code:
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200362 *
Ingo Molnar4d732132015-06-08 20:43:07 +0200363 * movq $stuck_here, %rcx
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200364 * pushfq
365 * popq %r11
366 * stuck_here:
367 *
368 * would never get past 'stuck_here'.
369 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200370 testq $(X86_EFLAGS_RF|X86_EFLAGS_TF), %r11
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700371 jnz swapgs_restore_regs_and_return_to_usermode
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200372
373 /* nothing to check for RSP */
374
Ingo Molnar4d732132015-06-08 20:43:07 +0200375 cmpq $__USER_DS, SS(%rsp) /* SS must match SYSRET */
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700376 jne swapgs_restore_regs_and_return_to_usermode
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200377
378 /*
Ingo Molnar4d732132015-06-08 20:43:07 +0200379 * We win! This label is here just for ease of understanding
380 * perf profiles. Nothing jumps here.
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200381 */
382syscall_return_via_sysret:
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200383 /* rcx and r11 are already restored (see code above) */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500384 UNWIND_HINT_EMPTY
Andy Lutomirski4fbb3912017-11-02 00:59:03 -0700385 POP_EXTRA_REGS
Andy Lutomirskia5122102017-11-02 00:59:04 -0700386.Lpop_c_regs_except_rcx_r11_and_sysret:
Andy Lutomirski4fbb3912017-11-02 00:59:03 -0700387 popq %rsi /* skip r11 */
388 popq %r10
389 popq %r9
390 popq %r8
391 popq %rax
392 popq %rsi /* skip rcx */
393 popq %rdx
394 popq %rsi
Andy Lutomirski3e3b9292017-12-04 15:07:24 +0100395
396 /*
397 * Now all regs are restored except RSP and RDI.
398 * Save old stack pointer and switch to trampoline stack.
399 */
400 movq %rsp, %rdi
Andy Lutomirskic482fee2017-12-04 15:07:29 +0100401 movq PER_CPU_VAR(cpu_tss_rw + TSS_sp0), %rsp
Andy Lutomirski3e3b9292017-12-04 15:07:24 +0100402
403 pushq RSP-RDI(%rdi) /* RSP */
404 pushq (%rdi) /* RDI */
405
406 /*
407 * We are on the trampoline stack. All regs except RDI are live.
408 * We can do future final exit work right here.
409 */
Peter Zijlstra6fd166a2017-12-04 15:07:59 +0100410 SWITCH_TO_USER_CR3_STACK scratch_reg=%rdi
Andy Lutomirski3e3b9292017-12-04 15:07:24 +0100411
Andy Lutomirski4fbb3912017-11-02 00:59:03 -0700412 popq %rdi
Andy Lutomirski3e3b9292017-12-04 15:07:24 +0100413 popq %rsp
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200414 USERGS_SYSRET64
Ingo Molnarb2502b42015-06-08 08:42:03 +0200415END(entry_SYSCALL_64)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100416
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800417ENTRY(stub_ptregs_64)
418 /*
419 * Syscalls marked as needing ptregs land here.
Andy Lutomirskib7765082016-01-31 09:33:26 -0800420 * If we are on the fast path, we need to save the extra regs,
421 * which we achieve by trying again on the slow path. If we are on
422 * the slow path, the extra regs are already saved.
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800423 *
424 * RAX stores a pointer to the C function implementing the syscall.
Andy Lutomirskib7765082016-01-31 09:33:26 -0800425 * IRQs are on.
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800426 */
427 cmpq $.Lentry_SYSCALL_64_after_fastpath_call, (%rsp)
428 jne 1f
429
Andy Lutomirskib7765082016-01-31 09:33:26 -0800430 /*
431 * Called from fast path -- disable IRQs again, pop return address
432 * and jump to slow path
433 */
Jan Beulich2140a992017-02-03 02:03:25 -0700434 DISABLE_INTERRUPTS(CLBR_ANY)
Andy Lutomirskib7765082016-01-31 09:33:26 -0800435 TRACE_IRQS_OFF
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800436 popq %rax
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500437 UNWIND_HINT_REGS extra=0
Andy Lutomirskib7765082016-01-31 09:33:26 -0800438 jmp entry_SYSCALL64_slow_path
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800439
4401:
Borislav Petkovb3830e82016-08-01 12:05:02 +0200441 jmp *%rax /* Called from C */
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800442END(stub_ptregs_64)
443
444.macro ptregs_stub func
445ENTRY(ptregs_\func)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500446 UNWIND_HINT_FUNC
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800447 leaq \func(%rip), %rax
448 jmp stub_ptregs_64
449END(ptregs_\func)
450.endm
451
452/* Instantiate ptregs_stub for each ptregs-using syscall */
453#define __SYSCALL_64_QUAL_(sym)
454#define __SYSCALL_64_QUAL_ptregs(sym) ptregs_stub sym
455#define __SYSCALL_64(nr, sym, qual) __SYSCALL_64_QUAL_##qual(sym)
456#include <asm/syscalls_64.h>
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200457
Jan Beulich7effaa82005-09-12 18:49:24 +0200458/*
Brian Gerst01003012016-08-13 12:38:19 -0400459 * %rdi: prev task
460 * %rsi: next task
461 */
462ENTRY(__switch_to_asm)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500463 UNWIND_HINT_FUNC
Brian Gerst01003012016-08-13 12:38:19 -0400464 /*
465 * Save callee-saved registers
466 * This must match the order in inactive_task_frame
467 */
468 pushq %rbp
469 pushq %rbx
470 pushq %r12
471 pushq %r13
472 pushq %r14
473 pushq %r15
474
475 /* switch stack */
476 movq %rsp, TASK_threadsp(%rdi)
477 movq TASK_threadsp(%rsi), %rsp
478
479#ifdef CONFIG_CC_STACKPROTECTOR
480 movq TASK_stack_canary(%rsi), %rbx
481 movq %rbx, PER_CPU_VAR(irq_stack_union)+stack_canary_offset
482#endif
483
484 /* restore callee-saved registers */
485 popq %r15
486 popq %r14
487 popq %r13
488 popq %r12
489 popq %rbx
490 popq %rbp
491
492 jmp __switch_to
493END(__switch_to_asm)
494
495/*
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800496 * A newly forked process directly context switches into this address.
497 *
Brian Gerst01003012016-08-13 12:38:19 -0400498 * rax: prev task we switched from
Brian Gerst616d2482016-08-13 12:38:20 -0400499 * rbx: kernel thread func (NULL for user thread)
500 * r12: kernel thread arg
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800501 */
502ENTRY(ret_from_fork)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500503 UNWIND_HINT_EMPTY
Brian Gerst01003012016-08-13 12:38:19 -0400504 movq %rax, %rdi
Josh Poimboeufebd57492017-05-23 10:37:29 -0500505 call schedule_tail /* rdi: 'prev' task parameter */
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800506
Josh Poimboeufebd57492017-05-23 10:37:29 -0500507 testq %rbx, %rbx /* from kernel_thread? */
508 jnz 1f /* kernel threads are uncommon */
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800509
Brian Gerst616d2482016-08-13 12:38:20 -04005102:
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500511 UNWIND_HINT_REGS
Josh Poimboeufebd57492017-05-23 10:37:29 -0500512 movq %rsp, %rdi
Andy Lutomirski24d978b2016-01-28 15:11:27 -0800513 call syscall_return_slowpath /* returns with IRQs disabled */
514 TRACE_IRQS_ON /* user mode is traced as IRQS on */
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700515 jmp swapgs_restore_regs_and_return_to_usermode
Brian Gerst616d2482016-08-13 12:38:20 -0400516
5171:
518 /* kernel thread */
519 movq %r12, %rdi
520 call *%rbx
521 /*
522 * A kernel thread is allowed to return here after successfully
523 * calling do_execve(). Exit to userspace to complete the execve()
524 * syscall.
525 */
526 movq $0, RAX(%rsp)
527 jmp 2b
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800528END(ret_from_fork)
529
530/*
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200531 * Build the entry stubs with some assembler magic.
532 * We pack 1 stub into every 8-byte block.
H. Peter Anvin939b7872008-11-11 13:51:52 -0800533 */
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200534 .align 8
H. Peter Anvin939b7872008-11-11 13:51:52 -0800535ENTRY(irq_entries_start)
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200536 vector=FIRST_EXTERNAL_VECTOR
537 .rept (FIRST_SYSTEM_VECTOR - FIRST_EXTERNAL_VECTOR)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500538 UNWIND_HINT_IRET_REGS
Ingo Molnar4d732132015-06-08 20:43:07 +0200539 pushq $(~vector+0x80) /* Note: always in signed byte range */
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200540 jmp common_interrupt
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200541 .align 8
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500542 vector=vector+1
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200543 .endr
H. Peter Anvin939b7872008-11-11 13:51:52 -0800544END(irq_entries_start)
545
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500546.macro DEBUG_ENTRY_ASSERT_IRQS_OFF
547#ifdef CONFIG_DEBUG_ENTRY
Boris Ostrovskye17f8232017-12-04 15:07:07 +0100548 pushq %rax
549 SAVE_FLAGS(CLBR_RAX)
550 testl $X86_EFLAGS_IF, %eax
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500551 jz .Lokay_\@
552 ud2
553.Lokay_\@:
Boris Ostrovskye17f8232017-12-04 15:07:07 +0100554 popq %rax
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500555#endif
556.endm
557
558/*
559 * Enters the IRQ stack if we're not already using it. NMI-safe. Clobbers
560 * flags and puts old RSP into old_rsp, and leaves all other GPRs alone.
561 * Requires kernel GSBASE.
562 *
563 * The invariant is that, if irq_count != -1, then the IRQ stack is in use.
564 */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500565.macro ENTER_IRQ_STACK regs=1 old_rsp
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500566 DEBUG_ENTRY_ASSERT_IRQS_OFF
567 movq %rsp, \old_rsp
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500568
569 .if \regs
570 UNWIND_HINT_REGS base=\old_rsp
571 .endif
572
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500573 incl PER_CPU_VAR(irq_count)
Andy Lutomirski29955902017-07-11 10:33:39 -0500574 jnz .Lirq_stack_push_old_rsp_\@
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500575
576 /*
577 * Right now, if we just incremented irq_count to zero, we've
578 * claimed the IRQ stack but we haven't switched to it yet.
579 *
580 * If anything is added that can interrupt us here without using IST,
581 * it must be *extremely* careful to limit its stack usage. This
582 * could include kprobes and a hypothetical future IST-less #DB
583 * handler.
Andy Lutomirski29955902017-07-11 10:33:39 -0500584 *
585 * The OOPS unwinder relies on the word at the top of the IRQ
586 * stack linking back to the previous RSP for the entire time we're
587 * on the IRQ stack. For this to work reliably, we need to write
588 * it before we actually move ourselves to the IRQ stack.
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500589 */
590
Andy Lutomirski29955902017-07-11 10:33:39 -0500591 movq \old_rsp, PER_CPU_VAR(irq_stack_union + IRQ_STACK_SIZE - 8)
592 movq PER_CPU_VAR(irq_stack_ptr), %rsp
593
594#ifdef CONFIG_DEBUG_ENTRY
595 /*
596 * If the first movq above becomes wrong due to IRQ stack layout
597 * changes, the only way we'll notice is if we try to unwind right
598 * here. Assert that we set up the stack right to catch this type
599 * of bug quickly.
600 */
601 cmpq -8(%rsp), \old_rsp
602 je .Lirq_stack_okay\@
603 ud2
604 .Lirq_stack_okay\@:
605#endif
606
607.Lirq_stack_push_old_rsp_\@:
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500608 pushq \old_rsp
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500609
610 .if \regs
611 UNWIND_HINT_REGS indirect=1
612 .endif
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500613.endm
614
615/*
616 * Undoes ENTER_IRQ_STACK.
617 */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500618.macro LEAVE_IRQ_STACK regs=1
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500619 DEBUG_ENTRY_ASSERT_IRQS_OFF
620 /* We need to be off the IRQ stack before decrementing irq_count. */
621 popq %rsp
622
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500623 .if \regs
624 UNWIND_HINT_REGS
625 .endif
626
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500627 /*
628 * As in ENTER_IRQ_STACK, irq_count == 0, we are still claiming
629 * the irq stack but we're not on it.
630 */
631
632 decl PER_CPU_VAR(irq_count)
633.endm
634
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100635/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 * Interrupt entry/exit.
637 *
638 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100639 *
640 * Entry runs with interrupts off.
641 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100643/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 .macro interrupt func
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100645 cld
Andy Lutomirski7f2590a2017-12-04 15:07:23 +0100646
647 testb $3, CS-ORIG_RAX(%rsp)
648 jz 1f
649 SWAPGS
650 call switch_to_thread_stack
6511:
652
Andy Lutomirskiff467592015-07-03 12:44:29 -0700653 ALLOC_PT_GPREGS_ON_STACK
654 SAVE_C_REGS
655 SAVE_EXTRA_REGS
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500656 ENCODE_FRAME_POINTER
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100657
Andy Lutomirskiff467592015-07-03 12:44:29 -0700658 testb $3, CS(%rsp)
Denys Vlasenkodde74f22015-04-27 15:21:51 +0200659 jz 1f
Andy Lutomirski02bc7762015-07-03 12:44:31 -0700660
661 /*
Andy Lutomirski7f2590a2017-12-04 15:07:23 +0100662 * IRQ from user mode.
663 *
Andy Lutomirskif1075052015-11-12 12:59:00 -0800664 * We need to tell lockdep that IRQs are off. We can't do this until
665 * we fix gsbase, and we should do it before enter_from_user_mode
666 * (which can take locks). Since TRACE_IRQS_OFF idempotent,
667 * the simplest way to handle it is to just call it twice if
668 * we enter from user mode. There's no reason to optimize this since
669 * TRACE_IRQS_OFF is a no-op if lockdep is off.
670 */
671 TRACE_IRQS_OFF
672
Andy Lutomirski478dc892015-11-12 12:59:04 -0800673 CALL_enter_from_user_mode
Andy Lutomirski02bc7762015-07-03 12:44:31 -0700674
Denys Vlasenko76f5df42015-02-26 14:40:27 -08006751:
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500676 ENTER_IRQ_STACK old_rsp=%rdi
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100677 /* We entered an interrupt context - irqs are off: */
678 TRACE_IRQS_OFF
679
Andy Lutomirskia586f982015-07-03 12:44:30 -0700680 call \func /* rdi points to pt_regs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 .endm
682
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100683 /*
684 * The interrupt stubs push (~vector+0x80) onto the stack and
685 * then jump to common_interrupt.
686 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800687 .p2align CONFIG_X86_L1_CACHE_SHIFT
688common_interrupt:
Jan Beulichee4eb872012-11-02 11:18:39 +0000689 ASM_CLAC
Ingo Molnar4d732132015-06-08 20:43:07 +0200690 addq $-0x80, (%rsp) /* Adjust vector to [-256, -1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 interrupt do_IRQ
Denys Vlasenko34061f12015-03-23 14:03:59 +0100692 /* 0(%rsp): old RSP */
Jan Beulich7effaa82005-09-12 18:49:24 +0200693ret_from_intr:
Jan Beulich2140a992017-02-03 02:03:25 -0700694 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700695 TRACE_IRQS_OFF
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100696
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -0500697 LEAVE_IRQ_STACK
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100698
Denys Vlasenko03335e92015-04-27 15:21:52 +0200699 testb $3, CS(%rsp)
Denys Vlasenkodde74f22015-04-27 15:21:51 +0200700 jz retint_kernel
Andy Lutomirski02bc7762015-07-03 12:44:31 -0700701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 /* Interrupt came from user space */
Andy Lutomirski02bc7762015-07-03 12:44:31 -0700703GLOBAL(retint_user)
704 mov %rsp,%rdi
705 call prepare_exit_to_usermode
Ingo Molnar2601e642006-07-03 00:24:45 -0700706 TRACE_IRQS_IRETQ
Andy Lutomirski26c4ef92017-11-02 00:58:59 -0700707
Andy Lutomirski8a055d72017-11-02 00:59:00 -0700708GLOBAL(swapgs_restore_regs_and_return_to_usermode)
Andy Lutomirski26c4ef92017-11-02 00:58:59 -0700709#ifdef CONFIG_DEBUG_ENTRY
710 /* Assert that pt_regs indicates user mode. */
Borislav Petkov1e4c4f62017-11-02 13:09:26 +0100711 testb $3, CS(%rsp)
Andy Lutomirski26c4ef92017-11-02 00:58:59 -0700712 jnz 1f
713 ud2
7141:
715#endif
Andy Lutomirskie8720452017-11-02 00:59:01 -0700716 POP_EXTRA_REGS
Andy Lutomirski3e3b9292017-12-04 15:07:24 +0100717 popq %r11
718 popq %r10
719 popq %r9
720 popq %r8
721 popq %rax
722 popq %rcx
723 popq %rdx
724 popq %rsi
725
726 /*
727 * The stack is now user RDI, orig_ax, RIP, CS, EFLAGS, RSP, SS.
728 * Save old stack pointer and switch to trampoline stack.
729 */
730 movq %rsp, %rdi
Andy Lutomirskic482fee2017-12-04 15:07:29 +0100731 movq PER_CPU_VAR(cpu_tss_rw + TSS_sp0), %rsp
Andy Lutomirski3e3b9292017-12-04 15:07:24 +0100732
733 /* Copy the IRET frame to the trampoline stack. */
734 pushq 6*8(%rdi) /* SS */
735 pushq 5*8(%rdi) /* RSP */
736 pushq 4*8(%rdi) /* EFLAGS */
737 pushq 3*8(%rdi) /* CS */
738 pushq 2*8(%rdi) /* RIP */
739
740 /* Push user RDI on the trampoline stack. */
741 pushq (%rdi)
742
743 /*
744 * We are on the trampoline stack. All regs except RDI are live.
745 * We can do future final exit work right here.
746 */
747
Peter Zijlstra6fd166a2017-12-04 15:07:59 +0100748 SWITCH_TO_USER_CR3_STACK scratch_reg=%rdi
Dave Hansen8a093172017-12-04 15:07:35 +0100749
Andy Lutomirski3e3b9292017-12-04 15:07:24 +0100750 /* Restore RDI. */
751 popq %rdi
752 SWAPGS
Andy Lutomirski26c4ef92017-11-02 00:58:59 -0700753 INTERRUPT_RETURN
754
Ingo Molnar2601e642006-07-03 00:24:45 -0700755
Denys Vlasenko627276c2015-03-30 20:09:31 +0200756/* Returning to kernel space */
Denys Vlasenko6ba71b72015-03-31 19:00:05 +0200757retint_kernel:
Denys Vlasenko627276c2015-03-30 20:09:31 +0200758#ifdef CONFIG_PREEMPT
759 /* Interrupts are off */
760 /* Check if we need preemption */
Ingo Molnar4d732132015-06-08 20:43:07 +0200761 bt $9, EFLAGS(%rsp) /* were interrupts off? */
Denys Vlasenko6ba71b72015-03-31 19:00:05 +0200762 jnc 1f
Ingo Molnar4d732132015-06-08 20:43:07 +02007630: cmpl $0, PER_CPU_VAR(__preempt_count)
Denys Vlasenko36acef22015-03-31 19:00:07 +0200764 jnz 1f
Denys Vlasenko627276c2015-03-30 20:09:31 +0200765 call preempt_schedule_irq
Denys Vlasenko36acef22015-03-31 19:00:07 +0200766 jmp 0b
Denys Vlasenko6ba71b72015-03-31 19:00:05 +02007671:
Denys Vlasenko627276c2015-03-30 20:09:31 +0200768#endif
Ingo Molnar2601e642006-07-03 00:24:45 -0700769 /*
770 * The iretq could re-enable interrupts:
771 */
772 TRACE_IRQS_IRETQ
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200773
Andy Lutomirski26c4ef92017-11-02 00:58:59 -0700774GLOBAL(restore_regs_and_return_to_kernel)
775#ifdef CONFIG_DEBUG_ENTRY
776 /* Assert that pt_regs indicates kernel mode. */
Borislav Petkov1e4c4f62017-11-02 13:09:26 +0100777 testb $3, CS(%rsp)
Andy Lutomirski26c4ef92017-11-02 00:58:59 -0700778 jz 1f
779 ud2
7801:
781#endif
Andy Lutomirskie8720452017-11-02 00:59:01 -0700782 POP_EXTRA_REGS
783 POP_C_REGS
784 addq $8, %rsp /* skip regs->orig_ax */
Andy Lutomirski7209a752014-07-23 08:34:11 -0700785 INTERRUPT_RETURN
786
787ENTRY(native_iret)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500788 UNWIND_HINT_IRET_REGS
H. Peter Anvin3891a042014-04-29 16:46:09 -0700789 /*
790 * Are we returning to a stack segment from the LDT? Note: in
791 * 64-bit mode SS:RSP on the exception stack is always valid.
792 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700793#ifdef CONFIG_X86_ESPFIX64
Ingo Molnar4d732132015-06-08 20:43:07 +0200794 testb $4, (SS-RIP)(%rsp)
795 jnz native_irq_return_ldt
H. Peter Anvin34273f42014-05-04 10:36:22 -0700796#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700797
Andy Lutomirskiaf726f22014-11-22 18:00:31 -0800798.global native_irq_return_iret
Andy Lutomirski7209a752014-07-23 08:34:11 -0700799native_irq_return_iret:
Andy Lutomirskib645af22014-11-22 18:00:33 -0800800 /*
801 * This may fault. Non-paranoid faults on return to userspace are
802 * handled by fixup_bad_iret. These include #SS, #GP, and #NP.
803 * Double-faults due to espfix64 are handled in do_double_fault.
804 * Other faults here are fatal.
805 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 iretq
Ingo Molnar3701d8632008-02-09 23:24:08 +0100807
H. Peter Anvin34273f42014-05-04 10:36:22 -0700808#ifdef CONFIG_X86_ESPFIX64
Andy Lutomirski7209a752014-07-23 08:34:11 -0700809native_irq_return_ldt:
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700810 /*
811 * We are running with user GSBASE. All GPRs contain their user
812 * values. We have a percpu ESPFIX stack that is eight slots
813 * long (see ESPFIX_STACK_SIZE). espfix_waddr points to the bottom
814 * of the ESPFIX stack.
815 *
816 * We clobber RAX and RDI in this code. We stash RDI on the
817 * normal stack and RAX on the ESPFIX stack.
818 *
819 * The ESPFIX stack layout we set up looks like this:
820 *
821 * --- top of ESPFIX stack ---
822 * SS
823 * RSP
824 * RFLAGS
825 * CS
826 * RIP <-- RSP points here when we're done
827 * RAX <-- espfix_waddr points here
828 * --- bottom of ESPFIX stack ---
829 */
830
831 pushq %rdi /* Stash user RDI */
Dave Hansen8a093172017-12-04 15:07:35 +0100832 SWAPGS /* to kernel GS */
833 SWITCH_TO_KERNEL_CR3 scratch_reg=%rdi /* to kernel CR3 */
834
Ingo Molnar4d732132015-06-08 20:43:07 +0200835 movq PER_CPU_VAR(espfix_waddr), %rdi
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700836 movq %rax, (0*8)(%rdi) /* user RAX */
837 movq (1*8)(%rsp), %rax /* user RIP */
Ingo Molnar4d732132015-06-08 20:43:07 +0200838 movq %rax, (1*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700839 movq (2*8)(%rsp), %rax /* user CS */
Ingo Molnar4d732132015-06-08 20:43:07 +0200840 movq %rax, (2*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700841 movq (3*8)(%rsp), %rax /* user RFLAGS */
Ingo Molnar4d732132015-06-08 20:43:07 +0200842 movq %rax, (3*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700843 movq (5*8)(%rsp), %rax /* user SS */
Ingo Molnar4d732132015-06-08 20:43:07 +0200844 movq %rax, (5*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700845 movq (4*8)(%rsp), %rax /* user RSP */
Ingo Molnar4d732132015-06-08 20:43:07 +0200846 movq %rax, (4*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700847 /* Now RAX == RSP. */
848
849 andl $0xffff0000, %eax /* RAX = (RSP & 0xffff0000) */
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700850
851 /*
852 * espfix_stack[31:16] == 0. The page tables are set up such that
853 * (espfix_stack | (X & 0xffff0000)) points to a read-only alias of
854 * espfix_waddr for any X. That is, there are 65536 RO aliases of
855 * the same page. Set up RSP so that RSP[31:16] contains the
856 * respective 16 bits of the /userspace/ RSP and RSP nonetheless
857 * still points to an RO alias of the ESPFIX stack.
858 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200859 orq PER_CPU_VAR(espfix_stack), %rax
Dave Hansen8a093172017-12-04 15:07:35 +0100860
Peter Zijlstra6fd166a2017-12-04 15:07:59 +0100861 SWITCH_TO_USER_CR3_STACK scratch_reg=%rdi
Dave Hansen8a093172017-12-04 15:07:35 +0100862 SWAPGS /* to user GS */
863 popq %rdi /* Restore user RDI */
864
Ingo Molnar4d732132015-06-08 20:43:07 +0200865 movq %rax, %rsp
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500866 UNWIND_HINT_IRET_REGS offset=8
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700867
868 /*
869 * At this point, we cannot write to the stack any more, but we can
870 * still read.
871 */
872 popq %rax /* Restore user RAX */
873
874 /*
875 * RSP now points to an ordinary IRET frame, except that the page
876 * is read-only and RSP[31:16] are preloaded with the userspace
877 * values. We can now IRET back to userspace.
878 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200879 jmp native_irq_return_iret
H. Peter Anvin34273f42014-05-04 10:36:22 -0700880#endif
Jan Beulich4b787e02006-06-26 13:56:55 +0200881END(common_interrupt)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700882
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400883/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100885 */
Seiji Aguchicf910e82013-06-20 11:46:53 -0400886.macro apicinterrupt3 num sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100887ENTRY(\sym)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500888 UNWIND_HINT_IRET_REGS
Jan Beulichee4eb872012-11-02 11:18:39 +0000889 ASM_CLAC
Ingo Molnar4d732132015-06-08 20:43:07 +0200890 pushq $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +0000891.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100892 interrupt \do_sym
Ingo Molnar4d732132015-06-08 20:43:07 +0200893 jmp ret_from_intr
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100894END(\sym)
895.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100896
Alexander Potapenko469f0022016-07-15 11:42:43 +0200897/* Make sure APIC interrupt handlers end up in the irqentry section: */
Masami Hiramatsu229a7182017-08-03 11:38:21 +0900898#define PUSH_SECTION_IRQENTRY .pushsection .irqentry.text, "ax"
899#define POP_SECTION_IRQENTRY .popsection
Alexander Potapenko469f0022016-07-15 11:42:43 +0200900
Seiji Aguchicf910e82013-06-20 11:46:53 -0400901.macro apicinterrupt num sym do_sym
Alexander Potapenko469f0022016-07-15 11:42:43 +0200902PUSH_SECTION_IRQENTRY
Seiji Aguchicf910e82013-06-20 11:46:53 -0400903apicinterrupt3 \num \sym \do_sym
Alexander Potapenko469f0022016-07-15 11:42:43 +0200904POP_SECTION_IRQENTRY
Seiji Aguchicf910e82013-06-20 11:46:53 -0400905.endm
906
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100907#ifdef CONFIG_SMP
Ingo Molnar4d732132015-06-08 20:43:07 +0200908apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
909apicinterrupt3 REBOOT_VECTOR reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910#endif
911
Nick Piggin03b48632009-01-20 04:36:04 +0100912#ifdef CONFIG_X86_UV
Ingo Molnar4d732132015-06-08 20:43:07 +0200913apicinterrupt3 UV_BAU_MESSAGE uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100914#endif
Ingo Molnar4d732132015-06-08 20:43:07 +0200915
916apicinterrupt LOCAL_TIMER_VECTOR apic_timer_interrupt smp_apic_timer_interrupt
917apicinterrupt X86_PLATFORM_IPI_VECTOR x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Yang Zhangd78f2662013-04-11 19:25:11 +0800919#ifdef CONFIG_HAVE_KVM
Ingo Molnar4d732132015-06-08 20:43:07 +0200920apicinterrupt3 POSTED_INTR_VECTOR kvm_posted_intr_ipi smp_kvm_posted_intr_ipi
921apicinterrupt3 POSTED_INTR_WAKEUP_VECTOR kvm_posted_intr_wakeup_ipi smp_kvm_posted_intr_wakeup_ipi
Wincy Van210f84b2017-04-28 13:13:58 +0800922apicinterrupt3 POSTED_INTR_NESTED_VECTOR kvm_posted_intr_nested_ipi smp_kvm_posted_intr_nested_ipi
Yang Zhangd78f2662013-04-11 19:25:11 +0800923#endif
924
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400925#ifdef CONFIG_X86_MCE_THRESHOLD
Ingo Molnar4d732132015-06-08 20:43:07 +0200926apicinterrupt THRESHOLD_APIC_VECTOR threshold_interrupt smp_threshold_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400927#endif
928
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500929#ifdef CONFIG_X86_MCE_AMD
Ingo Molnar4d732132015-06-08 20:43:07 +0200930apicinterrupt DEFERRED_ERROR_VECTOR deferred_error_interrupt smp_deferred_error_interrupt
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500931#endif
932
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400933#ifdef CONFIG_X86_THERMAL_VECTOR
Ingo Molnar4d732132015-06-08 20:43:07 +0200934apicinterrupt THERMAL_APIC_VECTOR thermal_interrupt smp_thermal_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400935#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100937#ifdef CONFIG_SMP
Ingo Molnar4d732132015-06-08 20:43:07 +0200938apicinterrupt CALL_FUNCTION_SINGLE_VECTOR call_function_single_interrupt smp_call_function_single_interrupt
939apicinterrupt CALL_FUNCTION_VECTOR call_function_interrupt smp_call_function_interrupt
940apicinterrupt RESCHEDULE_VECTOR reschedule_interrupt smp_reschedule_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100941#endif
942
Ingo Molnar4d732132015-06-08 20:43:07 +0200943apicinterrupt ERROR_APIC_VECTOR error_interrupt smp_error_interrupt
944apicinterrupt SPURIOUS_APIC_VECTOR spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100945
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800946#ifdef CONFIG_IRQ_WORK
Ingo Molnar4d732132015-06-08 20:43:07 +0200947apicinterrupt IRQ_WORK_VECTOR irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +0100948#endif
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950/*
951 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100952 */
Andy Lutomirskic482fee2017-12-04 15:07:29 +0100953#define CPU_TSS_IST(x) PER_CPU_VAR(cpu_tss_rw) + (TSS_ist + ((x) - 1) * 8)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700954
Andy Lutomirski7f2590a2017-12-04 15:07:23 +0100955/*
956 * Switch to the thread stack. This is called with the IRET frame and
957 * orig_ax on the stack. (That is, RDI..R12 are not on the stack and
958 * space has not been allocated for them.)
959 */
960ENTRY(switch_to_thread_stack)
961 UNWIND_HINT_FUNC
962
963 pushq %rdi
Dave Hansen8a093172017-12-04 15:07:35 +0100964 /* Need to switch before accessing the thread stack. */
965 SWITCH_TO_KERNEL_CR3 scratch_reg=%rdi
Andy Lutomirski7f2590a2017-12-04 15:07:23 +0100966 movq %rsp, %rdi
967 movq PER_CPU_VAR(cpu_current_top_of_stack), %rsp
968 UNWIND_HINT sp_offset=16 sp_reg=ORC_REG_DI
969
970 pushq 7*8(%rdi) /* regs->ss */
971 pushq 6*8(%rdi) /* regs->rsp */
972 pushq 5*8(%rdi) /* regs->eflags */
973 pushq 4*8(%rdi) /* regs->cs */
974 pushq 3*8(%rdi) /* regs->ip */
975 pushq 2*8(%rdi) /* regs->orig_ax */
976 pushq 8(%rdi) /* return address */
977 UNWIND_HINT_FUNC
978
979 movq (%rdi), %rdi
980 ret
981END(switch_to_thread_stack)
982
Andy Lutomirski577ed452014-05-21 15:07:09 -0700983.macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100984ENTRY(\sym)
Josh Poimboeuf98990a32017-10-20 11:21:33 -0500985 UNWIND_HINT_IRET_REGS offset=\has_error_code*8
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -0500986
Andy Lutomirski577ed452014-05-21 15:07:09 -0700987 /* Sanity check */
988 .if \shift_ist != -1 && \paranoid == 0
989 .error "using shift_ist requires paranoid=1"
990 .endif
991
Jan Beulichee4eb872012-11-02 11:18:39 +0000992 ASM_CLAC
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700993
Josh Poimboeuf82c62fa2017-10-20 11:21:35 -0500994 .if \has_error_code == 0
Ingo Molnar4d732132015-06-08 20:43:07 +0200995 pushq $-1 /* ORIG_RAX: no syscall to restart */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700996 .endif
997
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800998 ALLOC_PT_GPREGS_ON_STACK
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700999
Andy Lutomirski7f2590a2017-12-04 15:07:23 +01001000 .if \paranoid < 2
Ingo Molnar4d732132015-06-08 20:43:07 +02001001 testb $3, CS(%rsp) /* If coming from userspace, switch stacks */
Andy Lutomirski7f2590a2017-12-04 15:07:23 +01001002 jnz .Lfrom_usermode_switch_stack_\@
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001003 .endif
Andy Lutomirski7f2590a2017-12-04 15:07:23 +01001004
1005 .if \paranoid
Ingo Molnar4d732132015-06-08 20:43:07 +02001006 call paranoid_entry
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001007 .else
Ingo Molnar4d732132015-06-08 20:43:07 +02001008 call error_entry
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001009 .endif
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001010 UNWIND_HINT_REGS
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001011 /* returned flag: ebx=0: need swapgs on exit, ebx=1: don't need it */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001012
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001013 .if \paranoid
Andy Lutomirski577ed452014-05-21 15:07:09 -07001014 .if \shift_ist != -1
Ingo Molnar4d732132015-06-08 20:43:07 +02001015 TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */
Andy Lutomirski577ed452014-05-21 15:07:09 -07001016 .else
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001017 TRACE_IRQS_OFF
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001018 .endif
Andy Lutomirski577ed452014-05-21 15:07:09 -07001019 .endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001020
Ingo Molnar4d732132015-06-08 20:43:07 +02001021 movq %rsp, %rdi /* pt_regs pointer */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001022
1023 .if \has_error_code
Ingo Molnar4d732132015-06-08 20:43:07 +02001024 movq ORIG_RAX(%rsp), %rsi /* get error code */
1025 movq $-1, ORIG_RAX(%rsp) /* no syscall to restart */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001026 .else
Ingo Molnar4d732132015-06-08 20:43:07 +02001027 xorl %esi, %esi /* no error code */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001028 .endif
1029
Andy Lutomirski577ed452014-05-21 15:07:09 -07001030 .if \shift_ist != -1
Ingo Molnar4d732132015-06-08 20:43:07 +02001031 subq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001032 .endif
1033
Ingo Molnar4d732132015-06-08 20:43:07 +02001034 call \do_sym
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001035
Andy Lutomirski577ed452014-05-21 15:07:09 -07001036 .if \shift_ist != -1
Ingo Molnar4d732132015-06-08 20:43:07 +02001037 addq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001038 .endif
1039
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001040 /* these procedures expect "no swapgs" flag in ebx */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001041 .if \paranoid
Ingo Molnar4d732132015-06-08 20:43:07 +02001042 jmp paranoid_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001043 .else
Ingo Molnar4d732132015-06-08 20:43:07 +02001044 jmp error_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001045 .endif
1046
Andy Lutomirski7f2590a2017-12-04 15:07:23 +01001047 .if \paranoid < 2
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001048 /*
Andy Lutomirski7f2590a2017-12-04 15:07:23 +01001049 * Entry from userspace. Switch stacks and treat it
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001050 * as a normal entry. This means that paranoid handlers
1051 * run in real process context if user_mode(regs).
1052 */
Andy Lutomirski7f2590a2017-12-04 15:07:23 +01001053.Lfrom_usermode_switch_stack_\@:
Ingo Molnar4d732132015-06-08 20:43:07 +02001054 call error_entry
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001055
Ingo Molnar4d732132015-06-08 20:43:07 +02001056 movq %rsp, %rdi /* pt_regs pointer */
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001057
1058 .if \has_error_code
Ingo Molnar4d732132015-06-08 20:43:07 +02001059 movq ORIG_RAX(%rsp), %rsi /* get error code */
1060 movq $-1, ORIG_RAX(%rsp) /* no syscall to restart */
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001061 .else
Ingo Molnar4d732132015-06-08 20:43:07 +02001062 xorl %esi, %esi /* no error code */
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001063 .endif
1064
Ingo Molnar4d732132015-06-08 20:43:07 +02001065 call \do_sym
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001066
Ingo Molnar4d732132015-06-08 20:43:07 +02001067 jmp error_exit /* %ebx: no swapgs flag */
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001068 .endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001069END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001070.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001071
Ingo Molnar4d732132015-06-08 20:43:07 +02001072idtentry divide_error do_divide_error has_error_code=0
1073idtentry overflow do_overflow has_error_code=0
1074idtentry bounds do_bounds has_error_code=0
1075idtentry invalid_op do_invalid_op has_error_code=0
1076idtentry device_not_available do_device_not_available has_error_code=0
1077idtentry double_fault do_double_fault has_error_code=1 paranoid=2
1078idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0
1079idtentry invalid_TSS do_invalid_TSS has_error_code=1
1080idtentry segment_not_present do_segment_not_present has_error_code=1
1081idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0
1082idtentry coprocessor_error do_coprocessor_error has_error_code=0
1083idtentry alignment_check do_alignment_check has_error_code=1
1084idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001085
Ingo Molnar2601e642006-07-03 00:24:45 -07001086
Ingo Molnar4d732132015-06-08 20:43:07 +02001087 /*
1088 * Reload gs selector with exception handling
1089 * edi: new selector
1090 */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001091ENTRY(native_load_gs_index)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001092 FRAME_BEGIN
Ingo Molnar131484c2015-05-28 12:21:47 +02001093 pushfq
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001094 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001095 SWAPGS
Borislav Petkov42c748bb2016-04-07 17:31:50 -07001096.Lgs_change:
Ingo Molnar4d732132015-06-08 20:43:07 +02001097 movl %edi, %gs
Borislav Petkov96e5d282016-04-07 17:31:49 -070010982: ALTERNATIVE "", "mfence", X86_BUG_SWAPGS_FENCE
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001099 SWAPGS
Ingo Molnar131484c2015-05-28 12:21:47 +02001100 popfq
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001101 FRAME_END
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001102 ret
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001103ENDPROC(native_load_gs_index)
Al Viro784d5692016-01-11 11:04:34 -05001104EXPORT_SYMBOL(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001105
Borislav Petkov42c748bb2016-04-07 17:31:50 -07001106 _ASM_EXTABLE(.Lgs_change, bad_gs)
Ingo Molnar4d732132015-06-08 20:43:07 +02001107 .section .fixup, "ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001109bad_gs:
Ingo Molnar4d732132015-06-08 20:43:07 +02001110 SWAPGS /* switch back to user gs */
Andy Lutomirskib038c842016-04-26 12:23:27 -07001111.macro ZAP_GS
1112 /* This can't be a string because the preprocessor needs to see it. */
1113 movl $__USER_DS, %eax
1114 movl %eax, %gs
1115.endm
1116 ALTERNATIVE "", "ZAP_GS", X86_BUG_NULL_SEG
Ingo Molnar4d732132015-06-08 20:43:07 +02001117 xorl %eax, %eax
1118 movl %eax, %gs
1119 jmp 2b
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001120 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001121
Andi Kleen26995002006-08-02 22:37:28 +02001122/* Call softirq on interrupt stack. Interrupts are off. */
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001123ENTRY(do_softirq_own_stack)
Ingo Molnar4d732132015-06-08 20:43:07 +02001124 pushq %rbp
1125 mov %rsp, %rbp
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001126 ENTER_IRQ_STACK regs=0 old_rsp=%r11
Ingo Molnar4d732132015-06-08 20:43:07 +02001127 call __do_softirq
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001128 LEAVE_IRQ_STACK regs=0
Andi Kleen26995002006-08-02 22:37:28 +02001129 leaveq
Andi Kleened6b6762005-07-28 21:15:49 -07001130 ret
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001131ENDPROC(do_softirq_own_stack)
Andi Kleen75154f42007-06-23 02:29:25 +02001132
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001133#ifdef CONFIG_XEN
Juergen Gross5878d5d2017-08-31 19:42:49 +02001134idtentry hypervisor_callback xen_do_hypervisor_callback has_error_code=0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001135
1136/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001137 * A note on the "critical region" in our callback handler.
1138 * We want to avoid stacking callback handlers due to events occurring
1139 * during handling of the last event. To do this, we keep events disabled
1140 * until we've done all processing. HOWEVER, we must enable events before
1141 * popping the stack frame (can't be done atomically) and so it would still
1142 * be possible to get enough handler activations to overflow the stack.
1143 * Although unlikely, bugs of that kind are hard to track down, so we'd
1144 * like to avoid the possibility.
1145 * So, on entry to the handler we detect whether we interrupted an
1146 * existing activation in its critical region -- if so, we pop the current
1147 * activation and restart the handler using the previous one.
1148 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001149ENTRY(xen_do_hypervisor_callback) /* do_hypervisor_callback(struct *pt_regs) */
1150
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001151/*
1152 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1153 * see the correct pointer to the pt_regs
1154 */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001155 UNWIND_HINT_FUNC
Ingo Molnar4d732132015-06-08 20:43:07 +02001156 movq %rdi, %rsp /* we don't return, adjust the stack frame */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001157 UNWIND_HINT_REGS
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -05001158
1159 ENTER_IRQ_STACK old_rsp=%r10
Ingo Molnar4d732132015-06-08 20:43:07 +02001160 call xen_evtchn_do_upcall
Andy Lutomirski1d3e53e2017-07-11 10:33:38 -05001161 LEAVE_IRQ_STACK
1162
David Vrabelfdfd8112015-02-19 15:23:17 +00001163#ifndef CONFIG_PREEMPT
Ingo Molnar4d732132015-06-08 20:43:07 +02001164 call xen_maybe_preempt_hcall
David Vrabelfdfd8112015-02-19 15:23:17 +00001165#endif
Ingo Molnar4d732132015-06-08 20:43:07 +02001166 jmp error_exit
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001167END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001168
1169/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001170 * Hypervisor uses this for application faults while it executes.
1171 * We get here for two reasons:
1172 * 1. Fault while reloading DS, ES, FS or GS
1173 * 2. Fault while executing IRET
1174 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1175 * registers that could be reloaded and zeroed the others.
1176 * Category 2 we fix up by killing the current process. We cannot use the
1177 * normal Linux return path in this case because if we use the IRET hypercall
1178 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1179 * We distinguish between categories by comparing each saved segment register
1180 * with its current contents: any discrepancy means we in category 1.
1181 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001182ENTRY(xen_failsafe_callback)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001183 UNWIND_HINT_EMPTY
Ingo Molnar4d732132015-06-08 20:43:07 +02001184 movl %ds, %ecx
1185 cmpw %cx, 0x10(%rsp)
1186 jne 1f
1187 movl %es, %ecx
1188 cmpw %cx, 0x18(%rsp)
1189 jne 1f
1190 movl %fs, %ecx
1191 cmpw %cx, 0x20(%rsp)
1192 jne 1f
1193 movl %gs, %ecx
1194 cmpw %cx, 0x28(%rsp)
1195 jne 1f
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001196 /* All segments match their saved values => Category 2 (Bad IRET). */
Ingo Molnar4d732132015-06-08 20:43:07 +02001197 movq (%rsp), %rcx
1198 movq 8(%rsp), %r11
1199 addq $0x30, %rsp
1200 pushq $0 /* RIP */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001201 UNWIND_HINT_IRET_REGS offset=8
Ingo Molnar4d732132015-06-08 20:43:07 +02001202 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -070012031: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
Ingo Molnar4d732132015-06-08 20:43:07 +02001204 movq (%rsp), %rcx
1205 movq 8(%rsp), %r11
1206 addq $0x30, %rsp
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001207 UNWIND_HINT_IRET_REGS
Ingo Molnar4d732132015-06-08 20:43:07 +02001208 pushq $-1 /* orig_ax = -1 => not a system call */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001209 ALLOC_PT_GPREGS_ON_STACK
1210 SAVE_C_REGS
1211 SAVE_EXTRA_REGS
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001212 ENCODE_FRAME_POINTER
Ingo Molnar4d732132015-06-08 20:43:07 +02001213 jmp error_exit
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001214END(xen_failsafe_callback)
1215
Seiji Aguchicf910e82013-06-20 11:46:53 -04001216apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
Sheng Yang38e20b02010-05-14 12:40:51 +01001217 xen_hvm_callback_vector xen_evtchn_do_upcall
1218
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001219#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001220
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001221#if IS_ENABLED(CONFIG_HYPERV)
Seiji Aguchicf910e82013-06-20 11:46:53 -04001222apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001223 hyperv_callback_vector hyperv_vector_handler
1224#endif /* CONFIG_HYPERV */
1225
Ingo Molnar4d732132015-06-08 20:43:07 +02001226idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1227idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1228idtentry stack_segment do_stack_segment has_error_code=1
1229
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001230#ifdef CONFIG_XEN
Juergen Gross43e41112017-11-02 00:59:07 -07001231idtentry xennmi do_nmi has_error_code=0
Juergen Gross5878d5d2017-08-31 19:42:49 +02001232idtentry xendebug do_debug has_error_code=0
1233idtentry xenint3 do_int3 has_error_code=0
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001234#endif
Ingo Molnar4d732132015-06-08 20:43:07 +02001235
1236idtentry general_protection do_general_protection has_error_code=1
Thomas Gleixner11a7ffb2017-08-28 08:47:22 +02001237idtentry page_fault do_page_fault has_error_code=1
Ingo Molnar4d732132015-06-08 20:43:07 +02001238
Gleb Natapov631bc482010-10-14 11:22:52 +02001239#ifdef CONFIG_KVM_GUEST
Ingo Molnar4d732132015-06-08 20:43:07 +02001240idtentry async_page_fault do_async_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001241#endif
Ingo Molnar4d732132015-06-08 20:43:07 +02001242
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001243#ifdef CONFIG_X86_MCE
Ingo Molnar4d732132015-06-08 20:43:07 +02001244idtentry machine_check has_error_code=0 paranoid=1 do_sym=*machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001245#endif
1246
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001247/*
1248 * Save all registers in pt_regs, and switch gs if needed.
1249 * Use slow, but surefire "are we in kernel?" check.
1250 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
1251 */
1252ENTRY(paranoid_entry)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001253 UNWIND_HINT_FUNC
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001254 cld
1255 SAVE_C_REGS 8
1256 SAVE_EXTRA_REGS 8
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001257 ENCODE_FRAME_POINTER 8
Ingo Molnar4d732132015-06-08 20:43:07 +02001258 movl $1, %ebx
1259 movl $MSR_GS_BASE, %ecx
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001260 rdmsr
Ingo Molnar4d732132015-06-08 20:43:07 +02001261 testl %edx, %edx
1262 js 1f /* negative -> in kernel */
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001263 SWAPGS
Ingo Molnar4d732132015-06-08 20:43:07 +02001264 xorl %ebx, %ebx
Dave Hansen8a093172017-12-04 15:07:35 +01001265
12661:
1267 SAVE_AND_SWITCH_TO_KERNEL_CR3 scratch_reg=%rax save_reg=%r14
1268
1269 ret
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001270END(paranoid_entry)
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001271
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001272/*
1273 * "Paranoid" exit path from exception stack. This is invoked
1274 * only on return from non-NMI IST interrupts that came
1275 * from kernel space.
1276 *
1277 * We may be returning to very strange contexts (e.g. very early
1278 * in syscall entry), so checking for preemption here would
1279 * be complicated. Fortunately, we there's no good reason
1280 * to try to handle preemption here.
Ingo Molnar4d732132015-06-08 20:43:07 +02001281 *
1282 * On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it)
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001283 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001284ENTRY(paranoid_exit)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001285 UNWIND_HINT_REGS
Jan Beulich2140a992017-02-03 02:03:25 -07001286 DISABLE_INTERRUPTS(CLBR_ANY)
Steven Rostedt5963e312012-05-30 11:54:53 -04001287 TRACE_IRQS_OFF_DEBUG
Ingo Molnar4d732132015-06-08 20:43:07 +02001288 testl %ebx, %ebx /* swapgs needed? */
Andy Lutomirskie53178322017-11-02 00:59:02 -07001289 jnz .Lparanoid_exit_no_swapgs
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001290 TRACE_IRQS_IRETQ
Dave Hansen8a093172017-12-04 15:07:35 +01001291 RESTORE_CR3 save_reg=%r14
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001292 SWAPGS_UNSAFE_STACK
Andy Lutomirskie53178322017-11-02 00:59:02 -07001293 jmp .Lparanoid_exit_restore
1294.Lparanoid_exit_no_swapgs:
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001295 TRACE_IRQS_IRETQ_DEBUG
Andy Lutomirskie53178322017-11-02 00:59:02 -07001296.Lparanoid_exit_restore:
1297 jmp restore_regs_and_return_to_kernel
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001298END(paranoid_exit)
1299
1300/*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001301 * Save all registers in pt_regs, and switch gs if needed.
Andy Lutomirski539f5112015-06-09 12:36:01 -07001302 * Return: EBX=0: came from user mode; EBX=1: otherwise
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001303 */
1304ENTRY(error_entry)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001305 UNWIND_HINT_FUNC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001306 cld
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001307 SAVE_C_REGS 8
1308 SAVE_EXTRA_REGS 8
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001309 ENCODE_FRAME_POINTER 8
Ingo Molnar4d732132015-06-08 20:43:07 +02001310 xorl %ebx, %ebx
Denys Vlasenko03335e92015-04-27 15:21:52 +02001311 testb $3, CS+8(%rsp)
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001312 jz .Lerror_kernelspace
Andy Lutomirski539f5112015-06-09 12:36:01 -07001313
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001314 /*
1315 * We entered from user mode or we're pretending to have entered
1316 * from user mode due to an IRET fault.
1317 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001318 SWAPGS
Dave Hansen8a093172017-12-04 15:07:35 +01001319 /* We have user CR3. Change to kernel CR3. */
1320 SWITCH_TO_KERNEL_CR3 scratch_reg=%rax
Andy Lutomirski539f5112015-06-09 12:36:01 -07001321
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001322.Lerror_entry_from_usermode_after_swapgs:
Andy Lutomirski7f2590a2017-12-04 15:07:23 +01001323 /* Put us onto the real thread stack. */
1324 popq %r12 /* save return addr in %12 */
1325 movq %rsp, %rdi /* arg0 = pt_regs pointer */
1326 call sync_regs
1327 movq %rax, %rsp /* switch stack */
1328 ENCODE_FRAME_POINTER
1329 pushq %r12
1330
Andy Lutomirskif1075052015-11-12 12:59:00 -08001331 /*
1332 * We need to tell lockdep that IRQs are off. We can't do this until
1333 * we fix gsbase, and we should do it before enter_from_user_mode
1334 * (which can take locks).
1335 */
1336 TRACE_IRQS_OFF
Andy Lutomirski478dc892015-11-12 12:59:04 -08001337 CALL_enter_from_user_mode
Andy Lutomirskif1075052015-11-12 12:59:00 -08001338 ret
Andy Lutomirski02bc7762015-07-03 12:44:31 -07001339
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001340.Lerror_entry_done:
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001341 TRACE_IRQS_OFF
1342 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001343
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001344 /*
1345 * There are two places in the kernel that can potentially fault with
1346 * usergs. Handle them here. B stepping K8s sometimes report a
1347 * truncated RIP for IRET exceptions returning to compat mode. Check
1348 * for these here too.
1349 */
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001350.Lerror_kernelspace:
Ingo Molnar4d732132015-06-08 20:43:07 +02001351 incl %ebx
1352 leaq native_irq_return_iret(%rip), %rcx
1353 cmpq %rcx, RIP+8(%rsp)
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001354 je .Lerror_bad_iret
Ingo Molnar4d732132015-06-08 20:43:07 +02001355 movl %ecx, %eax /* zero extend */
1356 cmpq %rax, RIP+8(%rsp)
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001357 je .Lbstep_iret
Borislav Petkov42c748bb2016-04-07 17:31:50 -07001358 cmpq $.Lgs_change, RIP+8(%rsp)
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001359 jne .Lerror_entry_done
Andy Lutomirski539f5112015-06-09 12:36:01 -07001360
1361 /*
Borislav Petkov42c748bb2016-04-07 17:31:50 -07001362 * hack: .Lgs_change can fail with user gsbase. If this happens, fix up
Andy Lutomirski539f5112015-06-09 12:36:01 -07001363 * gsbase and proceed. We'll fix up the exception and land in
Borislav Petkov42c748bb2016-04-07 17:31:50 -07001364 * .Lgs_change's error handler with kernel gsbase.
Andy Lutomirski539f5112015-06-09 12:36:01 -07001365 */
Wanpeng Li2fa5f042016-09-30 09:01:06 +08001366 SWAPGS
Dave Hansen8a093172017-12-04 15:07:35 +01001367 SWITCH_TO_KERNEL_CR3 scratch_reg=%rax
Wanpeng Li2fa5f042016-09-30 09:01:06 +08001368 jmp .Lerror_entry_done
Brian Gerstae24ffe2009-10-12 10:18:23 -04001369
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001370.Lbstep_iret:
Brian Gerstae24ffe2009-10-12 10:18:23 -04001371 /* Fix truncated RIP */
Ingo Molnar4d732132015-06-08 20:43:07 +02001372 movq %rcx, RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001373 /* fall through */
1374
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001375.Lerror_bad_iret:
Andy Lutomirski539f5112015-06-09 12:36:01 -07001376 /*
Dave Hansen8a093172017-12-04 15:07:35 +01001377 * We came from an IRET to user mode, so we have user
1378 * gsbase and CR3. Switch to kernel gsbase and CR3:
Andy Lutomirski539f5112015-06-09 12:36:01 -07001379 */
Andy Lutomirskib645af22014-11-22 18:00:33 -08001380 SWAPGS
Dave Hansen8a093172017-12-04 15:07:35 +01001381 SWITCH_TO_KERNEL_CR3 scratch_reg=%rax
Andy Lutomirski539f5112015-06-09 12:36:01 -07001382
1383 /*
1384 * Pretend that the exception came from user mode: set up pt_regs
1385 * as if we faulted immediately after IRET and clear EBX so that
1386 * error_exit knows that we will be returning to user mode.
1387 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001388 mov %rsp, %rdi
1389 call fixup_bad_iret
1390 mov %rax, %rsp
Andy Lutomirski539f5112015-06-09 12:36:01 -07001391 decl %ebx
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001392 jmp .Lerror_entry_from_usermode_after_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001393END(error_entry)
1394
1395
Andy Lutomirski539f5112015-06-09 12:36:01 -07001396/*
Nicolas Iooss75ca5b22016-07-29 13:39:51 +02001397 * On entry, EBX is a "return to kernel mode" flag:
Andy Lutomirski539f5112015-06-09 12:36:01 -07001398 * 1: already in kernel mode, don't need SWAPGS
1399 * 0: user gsbase is loaded, we need SWAPGS and standard preparation for return to usermode
1400 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001401ENTRY(error_exit)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001402 UNWIND_HINT_REGS
Jan Beulich2140a992017-02-03 02:03:25 -07001403 DISABLE_INTERRUPTS(CLBR_ANY)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001404 TRACE_IRQS_OFF
Jan Beulich2140a992017-02-03 02:03:25 -07001405 testl %ebx, %ebx
Ingo Molnar4d732132015-06-08 20:43:07 +02001406 jnz retint_kernel
1407 jmp retint_user
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001408END(error_exit)
1409
Andy Lutomirski929bace2017-11-02 00:59:08 -07001410/*
1411 * Runs on exception stack. Xen PV does not go through this path at all,
1412 * so we can use real assembly here.
Dave Hansen8a093172017-12-04 15:07:35 +01001413 *
1414 * Registers:
1415 * %r14: Used to save/restore the CR3 of the interrupted context
1416 * when PAGE_TABLE_ISOLATION is in use. Do not clobber.
Andy Lutomirski929bace2017-11-02 00:59:08 -07001417 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001418ENTRY(nmi)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001419 UNWIND_HINT_IRET_REGS
Andy Lutomirski929bace2017-11-02 00:59:08 -07001420
Andy Lutomirskifc57a7c2015-09-20 16:32:04 -07001421 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001422 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1423 * the iretq it performs will take us out of NMI context.
1424 * This means that we can have nested NMIs where the next
1425 * NMI is using the top of the stack of the previous NMI. We
1426 * can't let it execute because the nested NMI will corrupt the
1427 * stack of the previous NMI. NMI handlers are not re-entrant
1428 * anyway.
1429 *
1430 * To handle this case we do the following:
1431 * Check the a special location on the stack that contains
1432 * a variable that is set when NMIs are executing.
1433 * The interrupted task's stack is also checked to see if it
1434 * is an NMI stack.
1435 * If the variable is not set and the stack is not the NMI
1436 * stack then:
1437 * o Set the special variable on the stack
Andy Lutomirski0b229302015-07-15 10:29:36 -07001438 * o Copy the interrupt frame into an "outermost" location on the
1439 * stack
1440 * o Copy the interrupt frame into an "iret" location on the stack
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001441 * o Continue processing the NMI
1442 * If the variable is set or the previous stack is the NMI stack:
Andy Lutomirski0b229302015-07-15 10:29:36 -07001443 * o Modify the "iret" location to jump to the repeat_nmi
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001444 * o return back to the first NMI
1445 *
1446 * Now on exit of the first NMI, we first clear the stack variable
1447 * The NMI stack will tell any nested NMIs at that point that it is
1448 * nested. Then we pop the stack normally with iret, and if there was
1449 * a nested NMI that updated the copy interrupt stack frame, a
1450 * jump will be made to the repeat_nmi code that will handle the second
1451 * NMI.
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001452 *
1453 * However, espfix prevents us from directly returning to userspace
1454 * with a single IRET instruction. Similarly, IRET to user mode
1455 * can fault. We therefore handle NMIs from user space like
1456 * other IST entries.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001457 */
1458
Andy Lutomirskie93c1732017-08-07 19:43:13 -07001459 ASM_CLAC
1460
Denys Vlasenko146b2b02015-03-25 18:18:13 +01001461 /* Use %rdx as our temp variable throughout */
Ingo Molnar4d732132015-06-08 20:43:07 +02001462 pushq %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001463
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001464 testb $3, CS-RIP+8(%rsp)
1465 jz .Lnmi_from_kernel
Steven Rostedt45d5a162012-02-19 16:43:37 -05001466
1467 /*
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001468 * NMI from user mode. We need to run on the thread stack, but we
1469 * can't go through the normal entry paths: NMIs are masked, and
1470 * we don't want to enable interrupts, because then we'll end
1471 * up in an awkward situation in which IRQs are on but NMIs
1472 * are off.
Andy Lutomirski83c133c2015-09-20 16:32:05 -07001473 *
1474 * We also must not push anything to the stack before switching
1475 * stacks lest we corrupt the "NMI executing" variable.
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001476 */
1477
Andy Lutomirski929bace2017-11-02 00:59:08 -07001478 swapgs
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001479 cld
Dave Hansen8a093172017-12-04 15:07:35 +01001480 SWITCH_TO_KERNEL_CR3 scratch_reg=%rdx
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001481 movq %rsp, %rdx
1482 movq PER_CPU_VAR(cpu_current_top_of_stack), %rsp
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001483 UNWIND_HINT_IRET_REGS base=%rdx offset=8
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001484 pushq 5*8(%rdx) /* pt_regs->ss */
1485 pushq 4*8(%rdx) /* pt_regs->rsp */
1486 pushq 3*8(%rdx) /* pt_regs->flags */
1487 pushq 2*8(%rdx) /* pt_regs->cs */
1488 pushq 1*8(%rdx) /* pt_regs->rip */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001489 UNWIND_HINT_IRET_REGS
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001490 pushq $-1 /* pt_regs->orig_ax */
1491 pushq %rdi /* pt_regs->di */
1492 pushq %rsi /* pt_regs->si */
1493 pushq (%rdx) /* pt_regs->dx */
1494 pushq %rcx /* pt_regs->cx */
1495 pushq %rax /* pt_regs->ax */
1496 pushq %r8 /* pt_regs->r8 */
1497 pushq %r9 /* pt_regs->r9 */
1498 pushq %r10 /* pt_regs->r10 */
1499 pushq %r11 /* pt_regs->r11 */
1500 pushq %rbx /* pt_regs->rbx */
1501 pushq %rbp /* pt_regs->rbp */
1502 pushq %r12 /* pt_regs->r12 */
1503 pushq %r13 /* pt_regs->r13 */
1504 pushq %r14 /* pt_regs->r14 */
1505 pushq %r15 /* pt_regs->r15 */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001506 UNWIND_HINT_REGS
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001507 ENCODE_FRAME_POINTER
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001508
1509 /*
1510 * At this point we no longer need to worry about stack damage
1511 * due to nesting -- we're on the normal thread stack and we're
1512 * done with the NMI stack.
1513 */
1514
1515 movq %rsp, %rdi
1516 movq $-1, %rsi
1517 call do_nmi
1518
1519 /*
1520 * Return back to user mode. We must *not* do the normal exit
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001521 * work, because we don't want to enable interrupts.
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001522 */
Andy Lutomirski8a055d72017-11-02 00:59:00 -07001523 jmp swapgs_restore_regs_and_return_to_usermode
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001524
1525.Lnmi_from_kernel:
1526 /*
Andy Lutomirski0b229302015-07-15 10:29:36 -07001527 * Here's what our stack frame will look like:
1528 * +---------------------------------------------------------+
1529 * | original SS |
1530 * | original Return RSP |
1531 * | original RFLAGS |
1532 * | original CS |
1533 * | original RIP |
1534 * +---------------------------------------------------------+
1535 * | temp storage for rdx |
1536 * +---------------------------------------------------------+
1537 * | "NMI executing" variable |
1538 * +---------------------------------------------------------+
1539 * | iret SS } Copied from "outermost" frame |
1540 * | iret Return RSP } on each loop iteration; overwritten |
1541 * | iret RFLAGS } by a nested NMI to force another |
1542 * | iret CS } iteration if needed. |
1543 * | iret RIP } |
1544 * +---------------------------------------------------------+
1545 * | outermost SS } initialized in first_nmi; |
1546 * | outermost Return RSP } will not be changed before |
1547 * | outermost RFLAGS } NMI processing is done. |
1548 * | outermost CS } Copied to "iret" frame on each |
1549 * | outermost RIP } iteration. |
1550 * +---------------------------------------------------------+
1551 * | pt_regs |
1552 * +---------------------------------------------------------+
1553 *
1554 * The "original" frame is used by hardware. Before re-enabling
1555 * NMIs, we need to be done with it, and we need to leave enough
1556 * space for the asm code here.
1557 *
1558 * We return by executing IRET while RSP points to the "iret" frame.
1559 * That will either return for real or it will loop back into NMI
1560 * processing.
1561 *
1562 * The "outermost" frame is copied to the "iret" frame on each
1563 * iteration of the loop, so each iteration starts with the "iret"
1564 * frame pointing to the final return target.
1565 */
1566
1567 /*
1568 * Determine whether we're a nested NMI.
1569 *
Andy Lutomirskia27507c2015-07-15 10:29:37 -07001570 * If we interrupted kernel code between repeat_nmi and
1571 * end_repeat_nmi, then we are a nested NMI. We must not
1572 * modify the "iret" frame because it's being written by
1573 * the outer NMI. That's okay; the outer NMI handler is
1574 * about to about to call do_nmi anyway, so we can just
1575 * resume the outer NMI.
1576 */
1577
1578 movq $repeat_nmi, %rdx
1579 cmpq 8(%rsp), %rdx
1580 ja 1f
1581 movq $end_repeat_nmi, %rdx
1582 cmpq 8(%rsp), %rdx
1583 ja nested_nmi_out
15841:
1585
1586 /*
1587 * Now check "NMI executing". If it's set, then we're nested.
Andy Lutomirski0b229302015-07-15 10:29:36 -07001588 * This will not detect if we interrupted an outer NMI just
1589 * before IRET.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001590 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001591 cmpl $1, -8(%rsp)
1592 je nested_nmi
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001593
1594 /*
Andy Lutomirski0b229302015-07-15 10:29:36 -07001595 * Now test if the previous stack was an NMI stack. This covers
1596 * the case where we interrupt an outer NMI after it clears
Andy Lutomirski810bc072015-07-15 10:29:38 -07001597 * "NMI executing" but before IRET. We need to be careful, though:
1598 * there is one case in which RSP could point to the NMI stack
1599 * despite there being no NMI active: naughty userspace controls
1600 * RSP at the very beginning of the SYSCALL targets. We can
1601 * pull a fast one on naughty userspace, though: we program
1602 * SYSCALL to mask DF, so userspace cannot cause DF to be set
1603 * if it controls the kernel's RSP. We set DF before we clear
1604 * "NMI executing".
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001605 */
Denys Vlasenko0784b362015-04-01 16:50:57 +02001606 lea 6*8(%rsp), %rdx
1607 /* Compare the NMI stack (rdx) with the stack we came from (4*8(%rsp)) */
1608 cmpq %rdx, 4*8(%rsp)
1609 /* If the stack pointer is above the NMI stack, this is a normal NMI */
1610 ja first_nmi
Ingo Molnar4d732132015-06-08 20:43:07 +02001611
Denys Vlasenko0784b362015-04-01 16:50:57 +02001612 subq $EXCEPTION_STKSZ, %rdx
1613 cmpq %rdx, 4*8(%rsp)
1614 /* If it is below the NMI stack, it is a normal NMI */
1615 jb first_nmi
Andy Lutomirski810bc072015-07-15 10:29:38 -07001616
1617 /* Ah, it is within the NMI stack. */
1618
1619 testb $(X86_EFLAGS_DF >> 8), (3*8 + 1)(%rsp)
1620 jz first_nmi /* RSP was user controlled. */
1621
1622 /* This is a nested NMI. */
Denys Vlasenko0784b362015-04-01 16:50:57 +02001623
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001624nested_nmi:
1625 /*
Andy Lutomirski0b229302015-07-15 10:29:36 -07001626 * Modify the "iret" frame to point to repeat_nmi, forcing another
1627 * iteration of NMI handling.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001628 */
Andy Lutomirski23a781e2015-07-15 10:29:39 -07001629 subq $8, %rsp
Ingo Molnar4d732132015-06-08 20:43:07 +02001630 leaq -10*8(%rsp), %rdx
1631 pushq $__KERNEL_DS
1632 pushq %rdx
Ingo Molnar131484c2015-05-28 12:21:47 +02001633 pushfq
Ingo Molnar4d732132015-06-08 20:43:07 +02001634 pushq $__KERNEL_CS
1635 pushq $repeat_nmi
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001636
1637 /* Put stack back */
Ingo Molnar4d732132015-06-08 20:43:07 +02001638 addq $(6*8), %rsp
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001639
1640nested_nmi_out:
Ingo Molnar4d732132015-06-08 20:43:07 +02001641 popq %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001642
Andy Lutomirski0b229302015-07-15 10:29:36 -07001643 /* We are returning to kernel mode, so this cannot result in a fault. */
Andy Lutomirski929bace2017-11-02 00:59:08 -07001644 iretq
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001645
1646first_nmi:
Andy Lutomirski0b229302015-07-15 10:29:36 -07001647 /* Restore rdx. */
Ingo Molnar4d732132015-06-08 20:43:07 +02001648 movq (%rsp), %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001649
Andy Lutomirski36f1a772015-07-15 10:29:40 -07001650 /* Make room for "NMI executing". */
1651 pushq $0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001652
Andy Lutomirski0b229302015-07-15 10:29:36 -07001653 /* Leave room for the "iret" frame */
Ingo Molnar4d732132015-06-08 20:43:07 +02001654 subq $(5*8), %rsp
Salman Qazi28696f42012-10-01 17:29:25 -07001655
Andy Lutomirski0b229302015-07-15 10:29:36 -07001656 /* Copy the "original" frame to the "outermost" frame */
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001657 .rept 5
Ingo Molnar4d732132015-06-08 20:43:07 +02001658 pushq 11*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001659 .endr
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001660 UNWIND_HINT_IRET_REGS
Jan Beulich62610912012-02-24 14:54:37 +00001661
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001662 /* Everything up to here is safe from nested NMIs */
1663
Andy Lutomirskia97439a2015-07-15 10:29:41 -07001664#ifdef CONFIG_DEBUG_ENTRY
1665 /*
1666 * For ease of testing, unmask NMIs right away. Disabled by
1667 * default because IRET is very expensive.
1668 */
1669 pushq $0 /* SS */
1670 pushq %rsp /* RSP (minus 8 because of the previous push) */
1671 addq $8, (%rsp) /* Fix up RSP */
1672 pushfq /* RFLAGS */
1673 pushq $__KERNEL_CS /* CS */
1674 pushq $1f /* RIP */
Andy Lutomirski929bace2017-11-02 00:59:08 -07001675 iretq /* continues at repeat_nmi below */
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001676 UNWIND_HINT_IRET_REGS
Andy Lutomirskia97439a2015-07-15 10:29:41 -070016771:
1678#endif
1679
Andy Lutomirski0b229302015-07-15 10:29:36 -07001680repeat_nmi:
Jan Beulich62610912012-02-24 14:54:37 +00001681 /*
1682 * If there was a nested NMI, the first NMI's iret will return
1683 * here. But NMIs are still enabled and we can take another
1684 * nested NMI. The nested NMI checks the interrupted RIP to see
1685 * if it is between repeat_nmi and end_repeat_nmi, and if so
1686 * it will just return, as we are about to repeat an NMI anyway.
1687 * This makes it safe to copy to the stack frame that a nested
1688 * NMI will update.
Andy Lutomirski0b229302015-07-15 10:29:36 -07001689 *
1690 * RSP is pointing to "outermost RIP". gsbase is unknown, but, if
1691 * we're repeating an NMI, gsbase has the same value that it had on
1692 * the first iteration. paranoid_entry will load the kernel
Andy Lutomirski36f1a772015-07-15 10:29:40 -07001693 * gsbase if needed before we call do_nmi. "NMI executing"
1694 * is zero.
Jan Beulich62610912012-02-24 14:54:37 +00001695 */
Andy Lutomirski36f1a772015-07-15 10:29:40 -07001696 movq $1, 10*8(%rsp) /* Set "NMI executing". */
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001697
Andy Lutomirski0b229302015-07-15 10:29:36 -07001698 /*
1699 * Copy the "outermost" frame to the "iret" frame. NMIs that nest
1700 * here must not modify the "iret" frame while we're writing to
1701 * it or it will end up containing garbage.
1702 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001703 addq $(10*8), %rsp
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001704 .rept 5
Ingo Molnar4d732132015-06-08 20:43:07 +02001705 pushq -6*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001706 .endr
Ingo Molnar4d732132015-06-08 20:43:07 +02001707 subq $(5*8), %rsp
Jan Beulich62610912012-02-24 14:54:37 +00001708end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001709
1710 /*
Andy Lutomirski0b229302015-07-15 10:29:36 -07001711 * Everything below this point can be preempted by a nested NMI.
1712 * If this happens, then the inner NMI will change the "iret"
1713 * frame to point back to repeat_nmi.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001714 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001715 pushq $-1 /* ORIG_RAX: no syscall to restart */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001716 ALLOC_PT_GPREGS_ON_STACK
1717
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001718 /*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001719 * Use paranoid_entry to handle SWAPGS, but no need to use paranoid_exit
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001720 * as we should not be calling schedule in NMI context.
1721 * Even with normal interrupts enabled. An NMI should not be
1722 * setting NEED_RESCHED or anything that normal interrupts and
1723 * exceptions might do.
1724 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001725 call paranoid_entry
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001726 UNWIND_HINT_REGS
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001727
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001728 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
Ingo Molnar4d732132015-06-08 20:43:07 +02001729 movq %rsp, %rdi
1730 movq $-1, %rsi
1731 call do_nmi
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001732
Dave Hansen8a093172017-12-04 15:07:35 +01001733 RESTORE_CR3 save_reg=%r14
1734
Ingo Molnar4d732132015-06-08 20:43:07 +02001735 testl %ebx, %ebx /* swapgs needed? */
1736 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001737nmi_swapgs:
1738 SWAPGS_UNSAFE_STACK
1739nmi_restore:
Andy Lutomirski471ee482017-11-02 00:59:05 -07001740 POP_EXTRA_REGS
1741 POP_C_REGS
Andy Lutomirski0b229302015-07-15 10:29:36 -07001742
Andy Lutomirski471ee482017-11-02 00:59:05 -07001743 /*
1744 * Skip orig_ax and the "outermost" frame to point RSP at the "iret"
1745 * at the "iret" frame.
1746 */
1747 addq $6*8, %rsp
Salman Qazi28696f42012-10-01 17:29:25 -07001748
Andy Lutomirski810bc072015-07-15 10:29:38 -07001749 /*
1750 * Clear "NMI executing". Set DF first so that we can easily
1751 * distinguish the remaining code between here and IRET from
Andy Lutomirski929bace2017-11-02 00:59:08 -07001752 * the SYSCALL entry and exit paths.
1753 *
1754 * We arguably should just inspect RIP instead, but I (Andy) wrote
1755 * this code when I had the misapprehension that Xen PV supported
1756 * NMIs, and Xen PV would break that approach.
Andy Lutomirski810bc072015-07-15 10:29:38 -07001757 */
1758 std
1759 movq $0, 5*8(%rsp) /* clear "NMI executing" */
Andy Lutomirski0b229302015-07-15 10:29:36 -07001760
1761 /*
Andy Lutomirski929bace2017-11-02 00:59:08 -07001762 * iretq reads the "iret" frame and exits the NMI stack in a
1763 * single instruction. We are returning to kernel mode, so this
1764 * cannot result in a fault. Similarly, we don't need to worry
1765 * about espfix64 on the way back to kernel mode.
Andy Lutomirski0b229302015-07-15 10:29:36 -07001766 */
Andy Lutomirski929bace2017-11-02 00:59:08 -07001767 iretq
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001768END(nmi)
1769
1770ENTRY(ignore_sysret)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001771 UNWIND_HINT_EMPTY
Ingo Molnar4d732132015-06-08 20:43:07 +02001772 mov $-ENOSYS, %eax
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001773 sysret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001774END(ignore_sysret)
Andy Lutomirski2deb4be2016-07-14 13:22:55 -07001775
1776ENTRY(rewind_stack_do_exit)
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001777 UNWIND_HINT_FUNC
Andy Lutomirski2deb4be2016-07-14 13:22:55 -07001778 /* Prevent any naive code from trying to unwind to our caller. */
1779 xorl %ebp, %ebp
1780
1781 movq PER_CPU_VAR(cpu_current_top_of_stack), %rax
Josh Poimboeuf8c1f7552017-07-11 10:33:44 -05001782 leaq -PTREGS_SIZE(%rax), %rsp
1783 UNWIND_HINT_FUNC sp_offset=PTREGS_SIZE
Andy Lutomirski2deb4be2016-07-14 13:22:55 -07001784
1785 call do_exit
Andy Lutomirski2deb4be2016-07-14 13:22:55 -07001786END(rewind_stack_do_exit)