blob: e729e152858412d92288aab0c82ba3b6f1e240f3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/x86_64/entry.S
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 2000, 2001, 2002 Andi Kleen SuSE Labs
6 * Copyright (C) 2000 Pavel Machek <pavel@suse.cz>
Ingo Molnar4d732132015-06-08 20:43:07 +02007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * entry.S contains the system-call and fault low-level handling routines.
9 *
Andy Lutomirski8b4777a2011-06-05 13:50:18 -040010 * Some of this is documented in Documentation/x86/entry_64.txt
11 *
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010012 * A note on terminology:
Ingo Molnar4d732132015-06-08 20:43:07 +020013 * - iret frame: Architecture defined interrupt frame from SS to RIP
14 * at the top of the kernel process stack.
Andi Kleen2e91a172006-09-26 10:52:29 +020015 *
16 * Some macro usage:
Ingo Molnar4d732132015-06-08 20:43:07 +020017 * - ENTRY/END: Define functions in the symbol table.
18 * - TRACE_IRQ_*: Trace hardirq state for lock debugging.
19 * - idtentry: Define exception entry points.
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/linkage.h>
22#include <asm/segment.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/cache.h>
24#include <asm/errno.h>
Ingo Molnard36f9472015-06-03 18:29:26 +020025#include "calling.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>
Richard Fellner13be4482017-05-04 14:26:50 +020039#include <asm/kaiser.h>
David Woodhouse8b1bacc2018-01-11 21:46:28 +000040#include <asm/nospec-branch.h>
Eric Parisd7e75282012-01-03 14:23:06 -050041#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Roland McGrath86a1c342008-06-23 15:37:04 -070043/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
44#include <linux/elf-em.h>
Ingo Molnar4d732132015-06-08 20:43:07 +020045#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
46#define __AUDIT_ARCH_64BIT 0x80000000
47#define __AUDIT_ARCH_LE 0x40000000
Roland McGrath86a1c342008-06-23 15:37:04 -070048
Ingo Molnar4d732132015-06-08 20:43:07 +020049.code64
50.section .entry.text, "ax"
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020051
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010052#ifdef CONFIG_PARAVIRT
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -040053ENTRY(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010054 swapgs
55 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +030056ENDPROC(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010057#endif /* CONFIG_PARAVIRT */
58
Greg Kroah-Hartmana11ca512017-12-04 12:59:57 +010059.macro TRACE_IRQS_IRETQ
Ingo Molnar2601e642006-07-03 00:24:45 -070060#ifdef CONFIG_TRACE_IRQFLAGS
Greg Kroah-Hartmana11ca512017-12-04 12:59:57 +010061 bt $9, EFLAGS(%rsp) /* interrupts off? */
Ingo Molnar4d732132015-06-08 20:43:07 +020062 jnc 1f
Ingo Molnar2601e642006-07-03 00:24:45 -070063 TRACE_IRQS_ON
641:
65#endif
66.endm
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/*
Steven Rostedt5963e312012-05-30 11:54:53 -040069 * When dynamic function tracer is enabled it will add a breakpoint
70 * to all locations that it is about to modify, sync CPUs, update
71 * all the code, sync CPUs, then remove the breakpoints. In this time
72 * if lockdep is enabled, it might jump back into the debug handler
73 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
74 *
75 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
76 * make sure the stack pointer does not get reset back to the top
77 * of the debug stack, and instead just reuses the current stack.
78 */
79#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
80
81.macro TRACE_IRQS_OFF_DEBUG
Ingo Molnar4d732132015-06-08 20:43:07 +020082 call debug_stack_set_zero
Steven Rostedt5963e312012-05-30 11:54:53 -040083 TRACE_IRQS_OFF
Ingo Molnar4d732132015-06-08 20:43:07 +020084 call debug_stack_reset
Steven Rostedt5963e312012-05-30 11:54:53 -040085.endm
86
87.macro TRACE_IRQS_ON_DEBUG
Ingo Molnar4d732132015-06-08 20:43:07 +020088 call debug_stack_set_zero
Steven Rostedt5963e312012-05-30 11:54:53 -040089 TRACE_IRQS_ON
Ingo Molnar4d732132015-06-08 20:43:07 +020090 call debug_stack_reset
Steven Rostedt5963e312012-05-30 11:54:53 -040091.endm
92
Denys Vlasenkof2db9382015-02-26 14:40:30 -080093.macro TRACE_IRQS_IRETQ_DEBUG
Ingo Molnar4d732132015-06-08 20:43:07 +020094 bt $9, EFLAGS(%rsp) /* interrupts off? */
95 jnc 1f
Steven Rostedt5963e312012-05-30 11:54:53 -040096 TRACE_IRQS_ON_DEBUG
971:
98.endm
99
100#else
Ingo Molnar4d732132015-06-08 20:43:07 +0200101# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
102# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
103# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
Steven Rostedt5963e312012-05-30 11:54:53 -0400104#endif
105
106/*
Ingo Molnar4d732132015-06-08 20:43:07 +0200107 * 64-bit SYSCALL instruction entry. Up to 6 arguments in registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 *
Andy Lutomirskifda57b22016-03-09 19:00:35 -0800109 * This is the only entry point used for 64-bit system calls. The
110 * hardware interface is reasonably well designed and the register to
111 * argument mapping Linux uses fits well with the registers that are
112 * available when SYSCALL is used.
113 *
114 * SYSCALL instructions can be found inlined in libc implementations as
115 * well as some other programs and libraries. There are also a handful
116 * of SYSCALL instructions in the vDSO used, for example, as a
117 * clock_gettimeofday fallback.
118 *
Ingo Molnar4d732132015-06-08 20:43:07 +0200119 * 64-bit SYSCALL saves rip to rcx, clears rflags.RF, then saves rflags to r11,
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800120 * then loads new ss, cs, and rip from previously programmed MSRs.
121 * rflags gets masked by a value from another MSR (so CLD and CLAC
122 * are not needed). SYSCALL does not save anything on the stack
123 * and does not change rsp.
124 *
125 * Registers on entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 * rax system call number
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800127 * rcx return address
128 * r11 saved rflags (note: r11 is callee-clobbered register in C ABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 * rdi arg0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100131 * rdx arg2
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800132 * r10 arg3 (needs to be moved to rcx to conform to C ABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * r8 arg4
134 * r9 arg5
Ingo Molnar4d732132015-06-08 20:43:07 +0200135 * (note: r12-r15, rbp, rbx are callee-preserved in C ABI)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100136 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 * Only called from user space.
138 *
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100139 * When user can change pt_regs->foo always force IRET. That is because
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200140 * it deals with uncanonical addresses better. SYSRET has trouble
141 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100142 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Ingo Molnarb2502b42015-06-08 08:42:03 +0200144ENTRY(entry_SYSCALL_64)
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100145 /*
146 * Interrupts are off on entry.
147 * We do not frame this tiny irq-off block with TRACE_IRQS_OFF/ON,
148 * it is too small to ever cause noticeable irq latency.
149 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100150 SWAPGS_UNSAFE_STACK
Richard Fellner13be4482017-05-04 14:26:50 +0200151 SWITCH_KERNEL_CR3_NO_STACK
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100152 /*
153 * A hypervisor implementation might want to use a label
154 * after the swapgs, so that it can do the swapgs
155 * for the guest and jump here on syscall.
156 */
Ingo Molnarb2502b42015-06-08 08:42:03 +0200157GLOBAL(entry_SYSCALL_64_after_swapgs)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100158
Ingo Molnar4d732132015-06-08 20:43:07 +0200159 movq %rsp, PER_CPU_VAR(rsp_scratch)
160 movq PER_CPU_VAR(cpu_current_top_of_stack), %rsp
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100161
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800162 TRACE_IRQS_OFF
163
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100164 /* Construct struct pt_regs on stack */
Ingo Molnar4d732132015-06-08 20:43:07 +0200165 pushq $__USER_DS /* pt_regs->ss */
166 pushq PER_CPU_VAR(rsp_scratch) /* pt_regs->sp */
Ingo Molnar4d732132015-06-08 20:43:07 +0200167 pushq %r11 /* pt_regs->flags */
168 pushq $__USER_CS /* pt_regs->cs */
169 pushq %rcx /* pt_regs->ip */
170 pushq %rax /* pt_regs->orig_ax */
171 pushq %rdi /* pt_regs->di */
172 pushq %rsi /* pt_regs->si */
173 pushq %rdx /* pt_regs->dx */
174 pushq %rcx /* pt_regs->cx */
175 pushq $-ENOSYS /* pt_regs->ax */
176 pushq %r8 /* pt_regs->r8 */
177 pushq %r9 /* pt_regs->r9 */
178 pushq %r10 /* pt_regs->r10 */
179 pushq %r11 /* pt_regs->r11 */
180 sub $(6*8), %rsp /* pt_regs->bp, bx, r12-15 not saved */
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100181
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800182 /*
183 * If we need to do entry work or if we guess we'll need to do
184 * exit work, go straight to the slow path.
185 */
Andy Lutomirski15f4eae2016-09-13 14:29:25 -0700186 movq PER_CPU_VAR(current_task), %r11
187 testl $_TIF_WORK_SYSCALL_ENTRY|_TIF_ALLWORK_MASK, TASK_TI_flags(%r11)
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800188 jnz entry_SYSCALL64_slow_path
189
Ingo Molnarb2502b42015-06-08 08:42:03 +0200190entry_SYSCALL_64_fastpath:
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800191 /*
192 * Easy case: enable interrupts and issue the syscall. If the syscall
193 * needs pt_regs, we'll call a stub that disables interrupts again
194 * and jumps to the slow path.
195 */
196 TRACE_IRQS_ON
197 ENABLE_INTERRUPTS(CLBR_NONE)
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800198#if __SYSCALL_MASK == ~0
Ingo Molnar4d732132015-06-08 20:43:07 +0200199 cmpq $__NR_syscall_max, %rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800200#else
Ingo Molnar4d732132015-06-08 20:43:07 +0200201 andl $__SYSCALL_MASK, %eax
202 cmpl $__NR_syscall_max, %eax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800203#endif
Ingo Molnar4d732132015-06-08 20:43:07 +0200204 ja 1f /* return -ENOSYS (already in pt_regs->ax) */
205 movq %r10, %rcx
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800206
207 /*
208 * This call instruction is handled specially in stub_ptregs_64.
Andy Lutomirskib7765082016-01-31 09:33:26 -0800209 * It might end up jumping to the slow path. If it jumps, RAX
210 * and all argument registers are clobbered.
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800211 */
David Woodhouse8b1bacc2018-01-11 21:46:28 +0000212#ifdef CONFIG_RETPOLINE
213 movq sys_call_table(, %rax, 8), %rax
214 call __x86_indirect_thunk_rax
215#else
Ingo Molnar4d732132015-06-08 20:43:07 +0200216 call *sys_call_table(, %rax, 8)
David Woodhouse8b1bacc2018-01-11 21:46:28 +0000217#endif
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800218.Lentry_SYSCALL_64_after_fastpath_call:
219
Ingo Molnar4d732132015-06-08 20:43:07 +0200220 movq %rax, RAX(%rsp)
Denys Vlasenko146b2b02015-03-25 18:18:13 +01002211:
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800222
Denys Vlasenko4416c5a2015-03-31 19:00:03 +0200223 /*
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800224 * If we get here, then we know that pt_regs is clean for SYSRET64.
225 * If we see that no exit work is required (which we are required
226 * to check with IRQs off), then we can go straight to SYSRET64.
Denys Vlasenko4416c5a2015-03-31 19:00:03 +0200227 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100228 DISABLE_INTERRUPTS(CLBR_NONE)
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800229 TRACE_IRQS_OFF
Andy Lutomirski15f4eae2016-09-13 14:29:25 -0700230 movq PER_CPU_VAR(current_task), %r11
231 testl $_TIF_ALLWORK_MASK, TASK_TI_flags(%r11)
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800232 jnz 1f
Andy Lutomirskib3494a42015-03-23 12:32:54 -0700233
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800234 LOCKDEP_SYS_EXIT
235 TRACE_IRQS_ON /* user mode is traced as IRQs on */
Andy Lutomirskieb2a54c2016-01-31 09:33:27 -0800236 movq RIP(%rsp), %rcx
237 movq EFLAGS(%rsp), %r11
238 RESTORE_C_REGS_EXCEPT_RCX_R11
Dave Hansen8f0baad2017-08-30 16:23:00 -0700239 /*
240 * This opens a window where we have a user CR3, but are
241 * running in the kernel. This makes using the CS
242 * register useless for telling whether or not we need to
243 * switch CR3 in NMIs. Normal interrupts are OK because
244 * they are off here.
245 */
Richard Fellner13be4482017-05-04 14:26:50 +0200246 SWITCH_USER_CR3
Ingo Molnar4d732132015-06-08 20:43:07 +0200247 movq RSP(%rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400248 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Andy Lutomirski1e423bf2016-01-28 15:11:28 -08002501:
251 /*
252 * The fast path looked good when we started, but something changed
253 * along the way and we need to switch to the slow path. Calling
254 * raise(3) will trigger this, for example. IRQs are off.
255 */
Andy Lutomirski29ea1b22015-07-03 12:44:28 -0700256 TRACE_IRQS_ON
257 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800258 SAVE_EXTRA_REGS
Andy Lutomirski29ea1b22015-07-03 12:44:28 -0700259 movq %rsp, %rdi
260 call syscall_return_slowpath /* returns with IRQs disabled */
Andy Lutomirski1e423bf2016-01-28 15:11:28 -0800261 jmp return_from_SYSCALL_64
262
263entry_SYSCALL64_slow_path:
264 /* IRQs are off. */
265 SAVE_EXTRA_REGS
266 movq %rsp, %rdi
267 call do_syscall_64 /* returns with IRQs disabled */
268
269return_from_SYSCALL_64:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800270 RESTORE_EXTRA_REGS
Andy Lutomirski29ea1b22015-07-03 12:44:28 -0700271 TRACE_IRQS_IRETQ /* we're about to change IF */
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200272
273 /*
274 * Try to use SYSRET instead of IRET if we're returning to
275 * a completely clean 64-bit userspace context.
276 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200277 movq RCX(%rsp), %rcx
278 movq RIP(%rsp), %r11
279 cmpq %rcx, %r11 /* RCX == RIP */
280 jne opportunistic_sysret_failed
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200281
282 /*
283 * On Intel CPUs, SYSRET with non-canonical RCX/RIP will #GP
284 * in kernel space. This essentially lets the user take over
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200285 * the kernel, since userspace controls RSP.
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200286 *
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200287 * If width of "canonical tail" ever becomes variable, this will need
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200288 * to be updated to remain correct on both old and new CPUs.
289 */
290 .ifne __VIRTUAL_MASK_SHIFT - 47
291 .error "virtual address width changed -- SYSRET checks need update"
292 .endif
Ingo Molnar4d732132015-06-08 20:43:07 +0200293
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200294 /* Change top 16 bits to be the sign-extension of 47th bit */
295 shl $(64 - (__VIRTUAL_MASK_SHIFT+1)), %rcx
296 sar $(64 - (__VIRTUAL_MASK_SHIFT+1)), %rcx
Ingo Molnar4d732132015-06-08 20:43:07 +0200297
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200298 /* If this changed %rcx, it was not canonical */
299 cmpq %rcx, %r11
300 jne opportunistic_sysret_failed
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200301
Ingo Molnar4d732132015-06-08 20:43:07 +0200302 cmpq $__USER_CS, CS(%rsp) /* CS must match SYSRET */
303 jne opportunistic_sysret_failed
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200304
Ingo Molnar4d732132015-06-08 20:43:07 +0200305 movq R11(%rsp), %r11
306 cmpq %r11, EFLAGS(%rsp) /* R11 == RFLAGS */
307 jne opportunistic_sysret_failed
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200308
309 /*
Borislav Petkov3e035302016-08-03 19:14:29 +0200310 * SYSCALL clears RF when it saves RFLAGS in R11 and SYSRET cannot
311 * restore RF properly. If the slowpath sets it for whatever reason, we
312 * need to restore it correctly.
313 *
314 * SYSRET can restore TF, but unlike IRET, restoring TF results in a
315 * trap from userspace immediately after SYSRET. This would cause an
316 * infinite loop whenever #DB happens with register state that satisfies
317 * the opportunistic SYSRET conditions. For example, single-stepping
318 * this user code:
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200319 *
Ingo Molnar4d732132015-06-08 20:43:07 +0200320 * movq $stuck_here, %rcx
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200321 * pushfq
322 * popq %r11
323 * stuck_here:
324 *
325 * would never get past 'stuck_here'.
326 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200327 testq $(X86_EFLAGS_RF|X86_EFLAGS_TF), %r11
328 jnz opportunistic_sysret_failed
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200329
330 /* nothing to check for RSP */
331
Ingo Molnar4d732132015-06-08 20:43:07 +0200332 cmpq $__USER_DS, SS(%rsp) /* SS must match SYSRET */
333 jne opportunistic_sysret_failed
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200334
335 /*
Ingo Molnar4d732132015-06-08 20:43:07 +0200336 * We win! This label is here just for ease of understanding
337 * perf profiles. Nothing jumps here.
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200338 */
339syscall_return_via_sysret:
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200340 /* rcx and r11 are already restored (see code above) */
341 RESTORE_C_REGS_EXCEPT_RCX_R11
Dave Hansen8f0baad2017-08-30 16:23:00 -0700342 /*
343 * This opens a window where we have a user CR3, but are
344 * running in the kernel. This makes using the CS
345 * register useless for telling whether or not we need to
346 * switch CR3 in NMIs. Normal interrupts are OK because
347 * they are off here.
348 */
Richard Fellner13be4482017-05-04 14:26:50 +0200349 SWITCH_USER_CR3
Ingo Molnar4d732132015-06-08 20:43:07 +0200350 movq RSP(%rsp), %rsp
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200351 USERGS_SYSRET64
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200352
353opportunistic_sysret_failed:
Dave Hansen8f0baad2017-08-30 16:23:00 -0700354 /*
355 * This opens a window where we have a user CR3, but are
356 * running in the kernel. This makes using the CS
357 * register useless for telling whether or not we need to
358 * switch CR3 in NMIs. Normal interrupts are OK because
359 * they are off here.
360 */
Richard Fellner13be4482017-05-04 14:26:50 +0200361 SWITCH_USER_CR3
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200362 SWAPGS
363 jmp restore_c_regs_and_iret
Ingo Molnarb2502b42015-06-08 08:42:03 +0200364END(entry_SYSCALL_64)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100365
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800366ENTRY(stub_ptregs_64)
367 /*
368 * Syscalls marked as needing ptregs land here.
Andy Lutomirskib7765082016-01-31 09:33:26 -0800369 * If we are on the fast path, we need to save the extra regs,
370 * which we achieve by trying again on the slow path. If we are on
371 * the slow path, the extra regs are already saved.
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800372 *
373 * RAX stores a pointer to the C function implementing the syscall.
Andy Lutomirskib7765082016-01-31 09:33:26 -0800374 * IRQs are on.
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800375 */
376 cmpq $.Lentry_SYSCALL_64_after_fastpath_call, (%rsp)
377 jne 1f
378
Andy Lutomirskib7765082016-01-31 09:33:26 -0800379 /*
380 * Called from fast path -- disable IRQs again, pop return address
381 * and jump to slow path
382 */
383 DISABLE_INTERRUPTS(CLBR_NONE)
384 TRACE_IRQS_OFF
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800385 popq %rax
Andy Lutomirskib7765082016-01-31 09:33:26 -0800386 jmp entry_SYSCALL64_slow_path
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800387
3881:
David Woodhouse8b1bacc2018-01-11 21:46:28 +0000389 JMP_NOSPEC %rax /* Called from C */
Andy Lutomirski302f5b22016-01-28 15:11:25 -0800390END(stub_ptregs_64)
391
392.macro ptregs_stub func
393ENTRY(ptregs_\func)
394 leaq \func(%rip), %rax
395 jmp stub_ptregs_64
396END(ptregs_\func)
397.endm
398
399/* Instantiate ptregs_stub for each ptregs-using syscall */
400#define __SYSCALL_64_QUAL_(sym)
401#define __SYSCALL_64_QUAL_ptregs(sym) ptregs_stub sym
402#define __SYSCALL_64(nr, sym, qual) __SYSCALL_64_QUAL_##qual(sym)
403#include <asm/syscalls_64.h>
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200404
Jan Beulich7effaa82005-09-12 18:49:24 +0200405/*
Brian Gerst01003012016-08-13 12:38:19 -0400406 * %rdi: prev task
407 * %rsi: next task
408 */
409ENTRY(__switch_to_asm)
410 /*
411 * Save callee-saved registers
412 * This must match the order in inactive_task_frame
413 */
414 pushq %rbp
415 pushq %rbx
416 pushq %r12
417 pushq %r13
418 pushq %r14
419 pushq %r15
420
421 /* switch stack */
422 movq %rsp, TASK_threadsp(%rdi)
423 movq TASK_threadsp(%rsi), %rsp
424
425#ifdef CONFIG_CC_STACKPROTECTOR
426 movq TASK_stack_canary(%rsi), %rbx
427 movq %rbx, PER_CPU_VAR(irq_stack_union)+stack_canary_offset
428#endif
429
David Woodhouseabf67b12018-01-12 17:49:25 +0000430#ifdef CONFIG_RETPOLINE
431 /*
432 * When switching from a shallower to a deeper call stack
433 * the RSB may either underflow or use entries populated
434 * with userspace addresses. On CPUs where those concerns
435 * exist, overwrite the RSB with entries which capture
436 * speculative execution to prevent attack.
437 */
438 FILL_RETURN_BUFFER %r12, RSB_CLEAR_LOOPS, X86_FEATURE_RSB_CTXSW
439#endif
440
Brian Gerst01003012016-08-13 12:38:19 -0400441 /* restore callee-saved registers */
442 popq %r15
443 popq %r14
444 popq %r13
445 popq %r12
446 popq %rbx
447 popq %rbp
448
449 jmp __switch_to
450END(__switch_to_asm)
451
452/*
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800453 * A newly forked process directly context switches into this address.
454 *
Brian Gerst01003012016-08-13 12:38:19 -0400455 * rax: prev task we switched from
Brian Gerst616d2482016-08-13 12:38:20 -0400456 * rbx: kernel thread func (NULL for user thread)
457 * r12: kernel thread arg
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800458 */
459ENTRY(ret_from_fork)
Brian Gerst01003012016-08-13 12:38:19 -0400460 movq %rax, %rdi
Ingo Molnar4d732132015-06-08 20:43:07 +0200461 call schedule_tail /* rdi: 'prev' task parameter */
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800462
Brian Gerst616d2482016-08-13 12:38:20 -0400463 testq %rbx, %rbx /* from kernel_thread? */
464 jnz 1f /* kernel threads are uncommon */
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800465
Brian Gerst616d2482016-08-13 12:38:20 -04004662:
Andy Lutomirski24d978b2016-01-28 15:11:27 -0800467 movq %rsp, %rdi
468 call syscall_return_slowpath /* returns with IRQs disabled */
469 TRACE_IRQS_ON /* user mode is traced as IRQS on */
Richard Fellner13be4482017-05-04 14:26:50 +0200470 SWITCH_USER_CR3
Andy Lutomirski24d978b2016-01-28 15:11:27 -0800471 SWAPGS
472 jmp restore_regs_and_iret
Brian Gerst616d2482016-08-13 12:38:20 -0400473
4741:
475 /* kernel thread */
476 movq %r12, %rdi
David Woodhouse8b1bacc2018-01-11 21:46:28 +0000477 CALL_NOSPEC %rbx
Brian Gerst616d2482016-08-13 12:38:20 -0400478 /*
479 * A kernel thread is allowed to return here after successfully
480 * calling do_execve(). Exit to userspace to complete the execve()
481 * syscall.
482 */
483 movq $0, RAX(%rsp)
484 jmp 2b
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800485END(ret_from_fork)
486
487/*
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200488 * Build the entry stubs with some assembler magic.
489 * We pack 1 stub into every 8-byte block.
H. Peter Anvin939b7872008-11-11 13:51:52 -0800490 */
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200491 .align 8
H. Peter Anvin939b7872008-11-11 13:51:52 -0800492ENTRY(irq_entries_start)
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200493 vector=FIRST_EXTERNAL_VECTOR
494 .rept (FIRST_SYSTEM_VECTOR - FIRST_EXTERNAL_VECTOR)
Ingo Molnar4d732132015-06-08 20:43:07 +0200495 pushq $(~vector+0x80) /* Note: always in signed byte range */
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200496 vector=vector+1
497 jmp common_interrupt
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200498 .align 8
499 .endr
H. Peter Anvin939b7872008-11-11 13:51:52 -0800500END(irq_entries_start)
501
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100502/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 * Interrupt entry/exit.
504 *
505 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100506 *
507 * Entry runs with interrupts off.
508 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100510/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 .macro interrupt func
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100512 cld
Andy Lutomirskiff467592015-07-03 12:44:29 -0700513 ALLOC_PT_GPREGS_ON_STACK
514 SAVE_C_REGS
515 SAVE_EXTRA_REGS
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100516
Andy Lutomirskiff467592015-07-03 12:44:29 -0700517 testb $3, CS(%rsp)
Denys Vlasenkodde74f22015-04-27 15:21:51 +0200518 jz 1f
Andy Lutomirski02bc7762015-07-03 12:44:31 -0700519
520 /*
521 * IRQ from user mode. Switch to kernel gsbase and inform context
522 * tracking that we're in kernel mode.
523 */
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100524 SWAPGS
Richard Fellner13be4482017-05-04 14:26:50 +0200525 SWITCH_KERNEL_CR3
Andy Lutomirskif1075052015-11-12 12:59:00 -0800526
527 /*
528 * We need to tell lockdep that IRQs are off. We can't do this until
529 * we fix gsbase, and we should do it before enter_from_user_mode
530 * (which can take locks). Since TRACE_IRQS_OFF idempotent,
531 * the simplest way to handle it is to just call it twice if
532 * we enter from user mode. There's no reason to optimize this since
533 * TRACE_IRQS_OFF is a no-op if lockdep is off.
534 */
535 TRACE_IRQS_OFF
536
Andy Lutomirski478dc892015-11-12 12:59:04 -0800537 CALL_enter_from_user_mode
Andy Lutomirski02bc7762015-07-03 12:44:31 -0700538
Denys Vlasenko76f5df42015-02-26 14:40:27 -08005391:
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100540 /*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800541 * Save previous stack pointer, optionally switch to interrupt stack.
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100542 * irq_count is used to check if a CPU is already on an interrupt stack
543 * or not. While this is essentially redundant with preempt_count it is
544 * a little cheaper to use a separate counter in the PDA (short of
545 * moving irq_enter into assembly, which would be too much work)
546 */
Andy Lutomirskia586f982015-07-03 12:44:30 -0700547 movq %rsp, %rdi
Ingo Molnar4d732132015-06-08 20:43:07 +0200548 incl PER_CPU_VAR(irq_count)
549 cmovzq PER_CPU_VAR(irq_stack_ptr), %rsp
Andy Lutomirskia586f982015-07-03 12:44:30 -0700550 pushq %rdi
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100551 /* We entered an interrupt context - irqs are off: */
552 TRACE_IRQS_OFF
553
Andy Lutomirskia586f982015-07-03 12:44:30 -0700554 call \func /* rdi points to pt_regs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 .endm
556
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100557 /*
558 * The interrupt stubs push (~vector+0x80) onto the stack and
559 * then jump to common_interrupt.
560 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800561 .p2align CONFIG_X86_L1_CACHE_SHIFT
562common_interrupt:
Jan Beulichee4eb872012-11-02 11:18:39 +0000563 ASM_CLAC
Ingo Molnar4d732132015-06-08 20:43:07 +0200564 addq $-0x80, (%rsp) /* Adjust vector to [-256, -1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 interrupt do_IRQ
Denys Vlasenko34061f12015-03-23 14:03:59 +0100566 /* 0(%rsp): old RSP */
Jan Beulich7effaa82005-09-12 18:49:24 +0200567ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100568 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700569 TRACE_IRQS_OFF
Ingo Molnar4d732132015-06-08 20:43:07 +0200570 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100571
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200572 /* Restore saved previous stack */
Andy Lutomirskiff467592015-07-03 12:44:29 -0700573 popq %rsp
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100574
Denys Vlasenko03335e92015-04-27 15:21:52 +0200575 testb $3, CS(%rsp)
Denys Vlasenkodde74f22015-04-27 15:21:51 +0200576 jz retint_kernel
Andy Lutomirski02bc7762015-07-03 12:44:31 -0700577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 /* Interrupt came from user space */
Andy Lutomirski02bc7762015-07-03 12:44:31 -0700579GLOBAL(retint_user)
580 mov %rsp,%rdi
581 call prepare_exit_to_usermode
Ingo Molnar2601e642006-07-03 00:24:45 -0700582 TRACE_IRQS_IRETQ
Richard Fellner13be4482017-05-04 14:26:50 +0200583 SWITCH_USER_CR3
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100584 SWAPGS
Andy Lutomirskiff467592015-07-03 12:44:29 -0700585 jmp restore_regs_and_iret
Ingo Molnar2601e642006-07-03 00:24:45 -0700586
Denys Vlasenko627276c2015-03-30 20:09:31 +0200587/* Returning to kernel space */
Denys Vlasenko6ba71b72015-03-31 19:00:05 +0200588retint_kernel:
Denys Vlasenko627276c2015-03-30 20:09:31 +0200589#ifdef CONFIG_PREEMPT
590 /* Interrupts are off */
591 /* Check if we need preemption */
Ingo Molnar4d732132015-06-08 20:43:07 +0200592 bt $9, EFLAGS(%rsp) /* were interrupts off? */
Denys Vlasenko6ba71b72015-03-31 19:00:05 +0200593 jnc 1f
Ingo Molnar4d732132015-06-08 20:43:07 +02005940: cmpl $0, PER_CPU_VAR(__preempt_count)
Denys Vlasenko36acef22015-03-31 19:00:07 +0200595 jnz 1f
Denys Vlasenko627276c2015-03-30 20:09:31 +0200596 call preempt_schedule_irq
Denys Vlasenko36acef22015-03-31 19:00:07 +0200597 jmp 0b
Denys Vlasenko6ba71b72015-03-31 19:00:05 +02005981:
Denys Vlasenko627276c2015-03-30 20:09:31 +0200599#endif
Ingo Molnar2601e642006-07-03 00:24:45 -0700600 /*
601 * The iretq could re-enable interrupts:
602 */
603 TRACE_IRQS_IRETQ
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200604
605/*
606 * At this label, code paths which return to kernel and to user,
607 * which come from interrupts/exception and from syscalls, merge.
608 */
Andy Lutomirskiee08c6b2015-10-05 17:48:09 -0700609GLOBAL(restore_regs_and_iret)
Andy Lutomirskiff467592015-07-03 12:44:29 -0700610 RESTORE_EXTRA_REGS
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200611restore_c_regs_and_iret:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800612 RESTORE_C_REGS
613 REMOVE_PT_GPREGS_FROM_STACK 8
Andy Lutomirski7209a752014-07-23 08:34:11 -0700614 INTERRUPT_RETURN
615
616ENTRY(native_iret)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700617 /*
618 * Are we returning to a stack segment from the LDT? Note: in
619 * 64-bit mode SS:RSP on the exception stack is always valid.
620 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700621#ifdef CONFIG_X86_ESPFIX64
Ingo Molnar4d732132015-06-08 20:43:07 +0200622 testb $4, (SS-RIP)(%rsp)
623 jnz native_irq_return_ldt
H. Peter Anvin34273f42014-05-04 10:36:22 -0700624#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700625
Andy Lutomirskiaf726f22014-11-22 18:00:31 -0800626.global native_irq_return_iret
Andy Lutomirski7209a752014-07-23 08:34:11 -0700627native_irq_return_iret:
Andy Lutomirskib645af22014-11-22 18:00:33 -0800628 /*
629 * This may fault. Non-paranoid faults on return to userspace are
630 * handled by fixup_bad_iret. These include #SS, #GP, and #NP.
631 * Double-faults due to espfix64 are handled in do_double_fault.
632 * Other faults here are fatal.
633 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 iretq
Ingo Molnar3701d8632008-02-09 23:24:08 +0100635
H. Peter Anvin34273f42014-05-04 10:36:22 -0700636#ifdef CONFIG_X86_ESPFIX64
Andy Lutomirski7209a752014-07-23 08:34:11 -0700637native_irq_return_ldt:
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700638 /*
639 * We are running with user GSBASE. All GPRs contain their user
640 * values. We have a percpu ESPFIX stack that is eight slots
641 * long (see ESPFIX_STACK_SIZE). espfix_waddr points to the bottom
642 * of the ESPFIX stack.
643 *
644 * We clobber RAX and RDI in this code. We stash RDI on the
645 * normal stack and RAX on the ESPFIX stack.
646 *
647 * The ESPFIX stack layout we set up looks like this:
648 *
649 * --- top of ESPFIX stack ---
650 * SS
651 * RSP
652 * RFLAGS
653 * CS
654 * RIP <-- RSP points here when we're done
655 * RAX <-- espfix_waddr points here
656 * --- bottom of ESPFIX stack ---
657 */
658
659 pushq %rdi /* Stash user RDI */
H. Peter Anvin3891a042014-04-29 16:46:09 -0700660 SWAPGS
Richard Fellner13be4482017-05-04 14:26:50 +0200661 SWITCH_KERNEL_CR3
Ingo Molnar4d732132015-06-08 20:43:07 +0200662 movq PER_CPU_VAR(espfix_waddr), %rdi
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700663 movq %rax, (0*8)(%rdi) /* user RAX */
664 movq (1*8)(%rsp), %rax /* user RIP */
Ingo Molnar4d732132015-06-08 20:43:07 +0200665 movq %rax, (1*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700666 movq (2*8)(%rsp), %rax /* user CS */
Ingo Molnar4d732132015-06-08 20:43:07 +0200667 movq %rax, (2*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700668 movq (3*8)(%rsp), %rax /* user RFLAGS */
Ingo Molnar4d732132015-06-08 20:43:07 +0200669 movq %rax, (3*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700670 movq (5*8)(%rsp), %rax /* user SS */
Ingo Molnar4d732132015-06-08 20:43:07 +0200671 movq %rax, (5*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700672 movq (4*8)(%rsp), %rax /* user RSP */
Ingo Molnar4d732132015-06-08 20:43:07 +0200673 movq %rax, (4*8)(%rdi)
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700674 /* Now RAX == RSP. */
675
676 andl $0xffff0000, %eax /* RAX = (RSP & 0xffff0000) */
677 popq %rdi /* Restore user RDI */
678
679 /*
680 * espfix_stack[31:16] == 0. The page tables are set up such that
681 * (espfix_stack | (X & 0xffff0000)) points to a read-only alias of
682 * espfix_waddr for any X. That is, there are 65536 RO aliases of
683 * the same page. Set up RSP so that RSP[31:16] contains the
684 * respective 16 bits of the /userspace/ RSP and RSP nonetheless
685 * still points to an RO alias of the ESPFIX stack.
686 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200687 orq PER_CPU_VAR(espfix_stack), %rax
Richard Fellner13be4482017-05-04 14:26:50 +0200688 SWITCH_USER_CR3
H. Peter Anvin3891a042014-04-29 16:46:09 -0700689 SWAPGS
Ingo Molnar4d732132015-06-08 20:43:07 +0200690 movq %rax, %rsp
Andy Lutomirski85063fa2016-09-12 15:05:51 -0700691
692 /*
693 * At this point, we cannot write to the stack any more, but we can
694 * still read.
695 */
696 popq %rax /* Restore user RAX */
697
698 /*
699 * RSP now points to an ordinary IRET frame, except that the page
700 * is read-only and RSP[31:16] are preloaded with the userspace
701 * values. We can now IRET back to userspace.
702 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200703 jmp native_irq_return_iret
H. Peter Anvin34273f42014-05-04 10:36:22 -0700704#endif
Jan Beulich4b787e02006-06-26 13:56:55 +0200705END(common_interrupt)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700706
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400707/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100709 */
Seiji Aguchicf910e82013-06-20 11:46:53 -0400710.macro apicinterrupt3 num sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100711ENTRY(\sym)
Jan Beulichee4eb872012-11-02 11:18:39 +0000712 ASM_CLAC
Ingo Molnar4d732132015-06-08 20:43:07 +0200713 pushq $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +0000714.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100715 interrupt \do_sym
Ingo Molnar4d732132015-06-08 20:43:07 +0200716 jmp ret_from_intr
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100717END(\sym)
718.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100719
Seiji Aguchicf910e82013-06-20 11:46:53 -0400720#ifdef CONFIG_TRACING
721#define trace(sym) trace_##sym
722#define smp_trace(sym) smp_trace_##sym
723
724.macro trace_apicinterrupt num sym
725apicinterrupt3 \num trace(\sym) smp_trace(\sym)
726.endm
727#else
728.macro trace_apicinterrupt num sym do_sym
729.endm
730#endif
731
Alexander Potapenko469f0022016-07-15 11:42:43 +0200732/* Make sure APIC interrupt handlers end up in the irqentry section: */
733#if defined(CONFIG_FUNCTION_GRAPH_TRACER) || defined(CONFIG_KASAN)
734# define PUSH_SECTION_IRQENTRY .pushsection .irqentry.text, "ax"
735# define POP_SECTION_IRQENTRY .popsection
736#else
737# define PUSH_SECTION_IRQENTRY
738# define POP_SECTION_IRQENTRY
739#endif
740
Seiji Aguchicf910e82013-06-20 11:46:53 -0400741.macro apicinterrupt num sym do_sym
Alexander Potapenko469f0022016-07-15 11:42:43 +0200742PUSH_SECTION_IRQENTRY
Seiji Aguchicf910e82013-06-20 11:46:53 -0400743apicinterrupt3 \num \sym \do_sym
744trace_apicinterrupt \num \sym
Alexander Potapenko469f0022016-07-15 11:42:43 +0200745POP_SECTION_IRQENTRY
Seiji Aguchicf910e82013-06-20 11:46:53 -0400746.endm
747
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100748#ifdef CONFIG_SMP
Ingo Molnar4d732132015-06-08 20:43:07 +0200749apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
750apicinterrupt3 REBOOT_VECTOR reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751#endif
752
Nick Piggin03b48632009-01-20 04:36:04 +0100753#ifdef CONFIG_X86_UV
Ingo Molnar4d732132015-06-08 20:43:07 +0200754apicinterrupt3 UV_BAU_MESSAGE uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100755#endif
Ingo Molnar4d732132015-06-08 20:43:07 +0200756
757apicinterrupt LOCAL_TIMER_VECTOR apic_timer_interrupt smp_apic_timer_interrupt
758apicinterrupt X86_PLATFORM_IPI_VECTOR x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Yang Zhangd78f2662013-04-11 19:25:11 +0800760#ifdef CONFIG_HAVE_KVM
Ingo Molnar4d732132015-06-08 20:43:07 +0200761apicinterrupt3 POSTED_INTR_VECTOR kvm_posted_intr_ipi smp_kvm_posted_intr_ipi
762apicinterrupt3 POSTED_INTR_WAKEUP_VECTOR kvm_posted_intr_wakeup_ipi smp_kvm_posted_intr_wakeup_ipi
Yang Zhangd78f2662013-04-11 19:25:11 +0800763#endif
764
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400765#ifdef CONFIG_X86_MCE_THRESHOLD
Ingo Molnar4d732132015-06-08 20:43:07 +0200766apicinterrupt THRESHOLD_APIC_VECTOR threshold_interrupt smp_threshold_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400767#endif
768
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500769#ifdef CONFIG_X86_MCE_AMD
Ingo Molnar4d732132015-06-08 20:43:07 +0200770apicinterrupt DEFERRED_ERROR_VECTOR deferred_error_interrupt smp_deferred_error_interrupt
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500771#endif
772
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400773#ifdef CONFIG_X86_THERMAL_VECTOR
Ingo Molnar4d732132015-06-08 20:43:07 +0200774apicinterrupt THERMAL_APIC_VECTOR thermal_interrupt smp_thermal_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400775#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100777#ifdef CONFIG_SMP
Ingo Molnar4d732132015-06-08 20:43:07 +0200778apicinterrupt CALL_FUNCTION_SINGLE_VECTOR call_function_single_interrupt smp_call_function_single_interrupt
779apicinterrupt CALL_FUNCTION_VECTOR call_function_interrupt smp_call_function_interrupt
780apicinterrupt RESCHEDULE_VECTOR reschedule_interrupt smp_reschedule_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100781#endif
782
Ingo Molnar4d732132015-06-08 20:43:07 +0200783apicinterrupt ERROR_APIC_VECTOR error_interrupt smp_error_interrupt
784apicinterrupt SPURIOUS_APIC_VECTOR spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100785
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800786#ifdef CONFIG_IRQ_WORK
Ingo Molnar4d732132015-06-08 20:43:07 +0200787apicinterrupt IRQ_WORK_VECTOR irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +0100788#endif
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790/*
791 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100792 */
Andy Lutomirski9b476682015-03-05 19:19:07 -0800793#define CPU_TSS_IST(x) PER_CPU_VAR(cpu_tss) + (TSS_ist + ((x) - 1) * 8)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700794
795.macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100796ENTRY(\sym)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700797 /* Sanity check */
798 .if \shift_ist != -1 && \paranoid == 0
799 .error "using shift_ist requires paranoid=1"
800 .endif
801
Jan Beulichee4eb872012-11-02 11:18:39 +0000802 ASM_CLAC
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +0100803 PARAVIRT_ADJUST_EXCEPTION_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700804
805 .ifeq \has_error_code
Ingo Molnar4d732132015-06-08 20:43:07 +0200806 pushq $-1 /* ORIG_RAX: no syscall to restart */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700807 .endif
808
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800809 ALLOC_PT_GPREGS_ON_STACK
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700810
811 .if \paranoid
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800812 .if \paranoid == 1
Ingo Molnar4d732132015-06-08 20:43:07 +0200813 testb $3, CS(%rsp) /* If coming from userspace, switch stacks */
814 jnz 1f
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800815 .endif
Ingo Molnar4d732132015-06-08 20:43:07 +0200816 call paranoid_entry
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700817 .else
Ingo Molnar4d732132015-06-08 20:43:07 +0200818 call error_entry
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700819 .endif
Denys Vlasenkoebfc4532015-02-26 14:40:34 -0800820 /* returned flag: ebx=0: need swapgs on exit, ebx=1: don't need it */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700821
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700822 .if \paranoid
Andy Lutomirski577ed452014-05-21 15:07:09 -0700823 .if \shift_ist != -1
Ingo Molnar4d732132015-06-08 20:43:07 +0200824 TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */
Andy Lutomirski577ed452014-05-21 15:07:09 -0700825 .else
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +0100826 TRACE_IRQS_OFF
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700827 .endif
Andy Lutomirski577ed452014-05-21 15:07:09 -0700828 .endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700829
Ingo Molnar4d732132015-06-08 20:43:07 +0200830 movq %rsp, %rdi /* pt_regs pointer */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700831
832 .if \has_error_code
Ingo Molnar4d732132015-06-08 20:43:07 +0200833 movq ORIG_RAX(%rsp), %rsi /* get error code */
834 movq $-1, ORIG_RAX(%rsp) /* no syscall to restart */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700835 .else
Ingo Molnar4d732132015-06-08 20:43:07 +0200836 xorl %esi, %esi /* no error code */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700837 .endif
838
Andy Lutomirski577ed452014-05-21 15:07:09 -0700839 .if \shift_ist != -1
Ingo Molnar4d732132015-06-08 20:43:07 +0200840 subq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700841 .endif
842
Ingo Molnar4d732132015-06-08 20:43:07 +0200843 call \do_sym
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700844
Andy Lutomirski577ed452014-05-21 15:07:09 -0700845 .if \shift_ist != -1
Ingo Molnar4d732132015-06-08 20:43:07 +0200846 addq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700847 .endif
848
Denys Vlasenkoebfc4532015-02-26 14:40:34 -0800849 /* these procedures expect "no swapgs" flag in ebx */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700850 .if \paranoid
Ingo Molnar4d732132015-06-08 20:43:07 +0200851 jmp paranoid_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700852 .else
Ingo Molnar4d732132015-06-08 20:43:07 +0200853 jmp error_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700854 .endif
855
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800856 .if \paranoid == 1
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800857 /*
858 * Paranoid entry from userspace. Switch stacks and treat it
859 * as a normal entry. This means that paranoid handlers
860 * run in real process context if user_mode(regs).
861 */
8621:
Ingo Molnar4d732132015-06-08 20:43:07 +0200863 call error_entry
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800864
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800865
Ingo Molnar4d732132015-06-08 20:43:07 +0200866 movq %rsp, %rdi /* pt_regs pointer */
867 call sync_regs
868 movq %rax, %rsp /* switch stack */
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800869
Ingo Molnar4d732132015-06-08 20:43:07 +0200870 movq %rsp, %rdi /* pt_regs pointer */
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800871
872 .if \has_error_code
Ingo Molnar4d732132015-06-08 20:43:07 +0200873 movq ORIG_RAX(%rsp), %rsi /* get error code */
874 movq $-1, ORIG_RAX(%rsp) /* no syscall to restart */
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800875 .else
Ingo Molnar4d732132015-06-08 20:43:07 +0200876 xorl %esi, %esi /* no error code */
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800877 .endif
878
Ingo Molnar4d732132015-06-08 20:43:07 +0200879 call \do_sym
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800880
Ingo Molnar4d732132015-06-08 20:43:07 +0200881 jmp error_exit /* %ebx: no swapgs flag */
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800882 .endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +0100883END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100884.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +0100885
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400886#ifdef CONFIG_TRACING
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700887.macro trace_idtentry sym do_sym has_error_code:req
888idtentry trace(\sym) trace(\do_sym) has_error_code=\has_error_code
889idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400890.endm
891#else
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700892.macro trace_idtentry sym do_sym has_error_code:req
893idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -0400894.endm
895#endif
896
Ingo Molnar4d732132015-06-08 20:43:07 +0200897idtentry divide_error do_divide_error has_error_code=0
898idtentry overflow do_overflow has_error_code=0
899idtentry bounds do_bounds has_error_code=0
900idtentry invalid_op do_invalid_op has_error_code=0
901idtentry device_not_available do_device_not_available has_error_code=0
902idtentry double_fault do_double_fault has_error_code=1 paranoid=2
903idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0
904idtentry invalid_TSS do_invalid_TSS has_error_code=1
905idtentry segment_not_present do_segment_not_present has_error_code=1
906idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0
907idtentry coprocessor_error do_coprocessor_error has_error_code=0
908idtentry alignment_check do_alignment_check has_error_code=1
909idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0
Andy Lutomirski5cec93c2011-06-05 13:50:24 -0400910
Ingo Molnar2601e642006-07-03 00:24:45 -0700911
Ingo Molnar4d732132015-06-08 20:43:07 +0200912 /*
913 * Reload gs selector with exception handling
914 * edi: new selector
915 */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -0400916ENTRY(native_load_gs_index)
Ingo Molnar131484c2015-05-28 12:21:47 +0200917 pushfq
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -0800918 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +0300919 SWAPGS
Borislav Petkov42c748bb2016-04-07 17:31:50 -0700920.Lgs_change:
Ingo Molnar4d732132015-06-08 20:43:07 +0200921 movl %edi, %gs
Borislav Petkov96e5d282016-04-07 17:31:49 -07009222: ALTERNATIVE "", "mfence", X86_BUG_SWAPGS_FENCE
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100923 SWAPGS
Ingo Molnar131484c2015-05-28 12:21:47 +0200924 popfq
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +0300925 ret
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +0100926END(native_load_gs_index)
Al Viro784d5692016-01-11 11:04:34 -0500927EXPORT_SYMBOL(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100928
Borislav Petkov42c748bb2016-04-07 17:31:50 -0700929 _ASM_EXTABLE(.Lgs_change, bad_gs)
Ingo Molnar4d732132015-06-08 20:43:07 +0200930 .section .fixup, "ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100932bad_gs:
Ingo Molnar4d732132015-06-08 20:43:07 +0200933 SWAPGS /* switch back to user gs */
Andy Lutomirskib038c842016-04-26 12:23:27 -0700934.macro ZAP_GS
935 /* This can't be a string because the preprocessor needs to see it. */
936 movl $__USER_DS, %eax
937 movl %eax, %gs
938.endm
939 ALTERNATIVE "", "ZAP_GS", X86_BUG_NULL_SEG
Ingo Molnar4d732132015-06-08 20:43:07 +0200940 xorl %eax, %eax
941 movl %eax, %gs
942 jmp 2b
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +0300943 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100944
Andi Kleen26995002006-08-02 22:37:28 +0200945/* Call softirq on interrupt stack. Interrupts are off. */
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +0200946ENTRY(do_softirq_own_stack)
Ingo Molnar4d732132015-06-08 20:43:07 +0200947 pushq %rbp
948 mov %rsp, %rbp
949 incl PER_CPU_VAR(irq_count)
950 cmove PER_CPU_VAR(irq_stack_ptr), %rsp
951 push %rbp /* frame pointer backlink */
952 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +0200953 leaveq
Ingo Molnar4d732132015-06-08 20:43:07 +0200954 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -0700955 ret
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +0200956END(do_softirq_own_stack)
Andi Kleen75154f42007-06-23 02:29:25 +0200957
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -0700958#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700959idtentry xen_hypervisor_callback xen_do_hypervisor_callback has_error_code=0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -0700960
961/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +0300962 * A note on the "critical region" in our callback handler.
963 * We want to avoid stacking callback handlers due to events occurring
964 * during handling of the last event. To do this, we keep events disabled
965 * until we've done all processing. HOWEVER, we must enable events before
966 * popping the stack frame (can't be done atomically) and so it would still
967 * be possible to get enough handler activations to overflow the stack.
968 * Although unlikely, bugs of that kind are hard to track down, so we'd
969 * like to avoid the possibility.
970 * So, on entry to the handler we detect whether we interrupted an
971 * existing activation in its critical region -- if so, we pop the current
972 * activation and restart the handler using the previous one.
973 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200974ENTRY(xen_do_hypervisor_callback) /* do_hypervisor_callback(struct *pt_regs) */
975
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +0300976/*
977 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
978 * see the correct pointer to the pt_regs
979 */
Ingo Molnar4d732132015-06-08 20:43:07 +0200980 movq %rdi, %rsp /* we don't return, adjust the stack frame */
98111: incl PER_CPU_VAR(irq_count)
982 movq %rsp, %rbp
983 cmovzq PER_CPU_VAR(irq_stack_ptr), %rsp
984 pushq %rbp /* frame pointer backlink */
985 call xen_evtchn_do_upcall
986 popq %rsp
987 decl PER_CPU_VAR(irq_count)
David Vrabelfdfd8112015-02-19 15:23:17 +0000988#ifndef CONFIG_PREEMPT
Ingo Molnar4d732132015-06-08 20:43:07 +0200989 call xen_maybe_preempt_hcall
David Vrabelfdfd8112015-02-19 15:23:17 +0000990#endif
Ingo Molnar4d732132015-06-08 20:43:07 +0200991 jmp error_exit
Alexander van Heukelum371c3942011-03-11 21:59:38 +0100992END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -0700993
994/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +0300995 * Hypervisor uses this for application faults while it executes.
996 * We get here for two reasons:
997 * 1. Fault while reloading DS, ES, FS or GS
998 * 2. Fault while executing IRET
999 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1000 * registers that could be reloaded and zeroed the others.
1001 * Category 2 we fix up by killing the current process. We cannot use the
1002 * normal Linux return path in this case because if we use the IRET hypercall
1003 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1004 * We distinguish between categories by comparing each saved segment register
1005 * with its current contents: any discrepancy means we in category 1.
1006 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001007ENTRY(xen_failsafe_callback)
Ingo Molnar4d732132015-06-08 20:43:07 +02001008 movl %ds, %ecx
1009 cmpw %cx, 0x10(%rsp)
1010 jne 1f
1011 movl %es, %ecx
1012 cmpw %cx, 0x18(%rsp)
1013 jne 1f
1014 movl %fs, %ecx
1015 cmpw %cx, 0x20(%rsp)
1016 jne 1f
1017 movl %gs, %ecx
1018 cmpw %cx, 0x28(%rsp)
1019 jne 1f
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001020 /* All segments match their saved values => Category 2 (Bad IRET). */
Ingo Molnar4d732132015-06-08 20:43:07 +02001021 movq (%rsp), %rcx
1022 movq 8(%rsp), %r11
1023 addq $0x30, %rsp
1024 pushq $0 /* RIP */
1025 pushq %r11
1026 pushq %rcx
1027 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -070010281: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
Ingo Molnar4d732132015-06-08 20:43:07 +02001029 movq (%rsp), %rcx
1030 movq 8(%rsp), %r11
1031 addq $0x30, %rsp
1032 pushq $-1 /* orig_ax = -1 => not a system call */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001033 ALLOC_PT_GPREGS_ON_STACK
1034 SAVE_C_REGS
1035 SAVE_EXTRA_REGS
Ingo Molnar4d732132015-06-08 20:43:07 +02001036 jmp error_exit
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001037END(xen_failsafe_callback)
1038
Seiji Aguchicf910e82013-06-20 11:46:53 -04001039apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
Sheng Yang38e20b02010-05-14 12:40:51 +01001040 xen_hvm_callback_vector xen_evtchn_do_upcall
1041
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001042#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001043
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001044#if IS_ENABLED(CONFIG_HYPERV)
Seiji Aguchicf910e82013-06-20 11:46:53 -04001045apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001046 hyperv_callback_vector hyperv_vector_handler
1047#endif /* CONFIG_HYPERV */
1048
Ingo Molnar4d732132015-06-08 20:43:07 +02001049idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1050idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1051idtentry stack_segment do_stack_segment has_error_code=1
1052
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001053#ifdef CONFIG_XEN
Ingo Molnar4d732132015-06-08 20:43:07 +02001054idtentry xen_debug do_debug has_error_code=0
1055idtentry xen_int3 do_int3 has_error_code=0
1056idtentry xen_stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001057#endif
Ingo Molnar4d732132015-06-08 20:43:07 +02001058
1059idtentry general_protection do_general_protection has_error_code=1
1060trace_idtentry page_fault do_page_fault has_error_code=1
1061
Gleb Natapov631bc482010-10-14 11:22:52 +02001062#ifdef CONFIG_KVM_GUEST
Ingo Molnar4d732132015-06-08 20:43:07 +02001063idtentry async_page_fault do_async_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001064#endif
Ingo Molnar4d732132015-06-08 20:43:07 +02001065
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001066#ifdef CONFIG_X86_MCE
Thomas Gleixnerc5aa6872018-01-18 16:28:26 +01001067idtentry machine_check do_mce has_error_code=0 paranoid=1
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001068#endif
1069
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001070/*
1071 * Save all registers in pt_regs, and switch gs if needed.
1072 * Use slow, but surefire "are we in kernel?" check.
Hugh Dickins05ddad12017-09-26 18:43:07 -07001073 *
1074 * Return: ebx=0: needs swapgs but not SWITCH_USER_CR3 in paranoid_exit
1075 * ebx=1: needs neither swapgs nor SWITCH_USER_CR3 in paranoid_exit
1076 * ebx=2: needs both swapgs and SWITCH_USER_CR3 in paranoid_exit
1077 * ebx=3: needs SWITCH_USER_CR3 but not swapgs in paranoid_exit
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001078 */
1079ENTRY(paranoid_entry)
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001080 cld
1081 SAVE_C_REGS 8
1082 SAVE_EXTRA_REGS 8
Ingo Molnar4d732132015-06-08 20:43:07 +02001083 movl $1, %ebx
1084 movl $MSR_GS_BASE, %ecx
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001085 rdmsr
Ingo Molnar4d732132015-06-08 20:43:07 +02001086 testl %edx, %edx
1087 js 1f /* negative -> in kernel */
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001088 SWAPGS
Ingo Molnar4d732132015-06-08 20:43:07 +02001089 xorl %ebx, %ebx
Hugh Dickins05ddad12017-09-26 18:43:07 -070010901:
Kees Cooke71fac02018-01-03 10:17:35 -08001091#ifdef CONFIG_PAGE_TABLE_ISOLATION
Hugh Dickins05ddad12017-09-26 18:43:07 -07001092 /*
1093 * We might have come in between a swapgs and a SWITCH_KERNEL_CR3
1094 * on entry, or between a SWITCH_USER_CR3 and a swapgs on exit.
1095 * Do a conditional SWITCH_KERNEL_CR3: this could safely be done
1096 * unconditionally, but we need to find out whether the reverse
1097 * should be done on return (conveyed to paranoid_exit in %ebx).
1098 */
Hugh Dickins23e09432017-09-24 16:59:49 -07001099 ALTERNATIVE "jmp 2f", "movq %cr3, %rax", X86_FEATURE_KAISER
Hugh Dickins05ddad12017-09-26 18:43:07 -07001100 testl $KAISER_SHADOW_PGD_OFFSET, %eax
1101 jz 2f
1102 orl $2, %ebx
1103 andq $(~(X86_CR3_PCID_ASID_MASK | KAISER_SHADOW_PGD_OFFSET)), %rax
Hugh Dickins169b3692017-10-03 20:49:04 -07001104 /* If PCID enabled, set X86_CR3_PCID_NOFLUSH_BIT */
1105 ALTERNATIVE "", "bts $63, %rax", X86_FEATURE_PCID
Hugh Dickins05ddad12017-09-26 18:43:07 -07001106 movq %rax, %cr3
11072:
1108#endif
1109 ret
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001110END(paranoid_entry)
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001111
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001112/*
1113 * "Paranoid" exit path from exception stack. This is invoked
1114 * only on return from non-NMI IST interrupts that came
1115 * from kernel space.
1116 *
1117 * We may be returning to very strange contexts (e.g. very early
1118 * in syscall entry), so checking for preemption here would
1119 * be complicated. Fortunately, we there's no good reason
1120 * to try to handle preemption here.
Ingo Molnar4d732132015-06-08 20:43:07 +02001121 *
Hugh Dickins05ddad12017-09-26 18:43:07 -07001122 * On entry: ebx=0: needs swapgs but not SWITCH_USER_CR3
1123 * ebx=1: needs neither swapgs nor SWITCH_USER_CR3
1124 * ebx=2: needs both swapgs and SWITCH_USER_CR3
1125 * ebx=3: needs SWITCH_USER_CR3 but not swapgs
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001126 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001127ENTRY(paranoid_exit)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001128 DISABLE_INTERRUPTS(CLBR_NONE)
Steven Rostedt5963e312012-05-30 11:54:53 -04001129 TRACE_IRQS_OFF_DEBUG
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001130 TRACE_IRQS_IRETQ_DEBUG
Kees Cooke71fac02018-01-03 10:17:35 -08001131#ifdef CONFIG_PAGE_TABLE_ISOLATION
Hugh Dickins23e09432017-09-24 16:59:49 -07001132 /* No ALTERNATIVE for X86_FEATURE_KAISER: paranoid_entry sets %ebx */
Hugh Dickins05ddad12017-09-26 18:43:07 -07001133 testl $2, %ebx /* SWITCH_USER_CR3 needed? */
1134 jz paranoid_exit_no_switch
1135 SWITCH_USER_CR3
1136paranoid_exit_no_switch:
1137#endif
1138 testl $1, %ebx /* swapgs needed? */
1139 jnz paranoid_exit_no_swapgs
1140 SWAPGS_UNSAFE_STACK
1141paranoid_exit_no_swapgs:
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001142 RESTORE_EXTRA_REGS
1143 RESTORE_C_REGS
1144 REMOVE_PT_GPREGS_FROM_STACK 8
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001145 INTERRUPT_RETURN
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001146END(paranoid_exit)
1147
1148/*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001149 * Save all registers in pt_regs, and switch gs if needed.
Andy Lutomirski539f5112015-06-09 12:36:01 -07001150 * Return: EBX=0: came from user mode; EBX=1: otherwise
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001151 */
1152ENTRY(error_entry)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001153 cld
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001154 SAVE_C_REGS 8
1155 SAVE_EXTRA_REGS 8
Dave Hansen8f0baad2017-08-30 16:23:00 -07001156 /*
1157 * error_entry() always returns with a kernel gsbase and
1158 * CR3. We must also have a kernel CR3/gsbase before
1159 * calling TRACE_IRQS_*. Just unconditionally switch to
1160 * the kernel CR3 here.
1161 */
1162 SWITCH_KERNEL_CR3
Ingo Molnar4d732132015-06-08 20:43:07 +02001163 xorl %ebx, %ebx
Denys Vlasenko03335e92015-04-27 15:21:52 +02001164 testb $3, CS+8(%rsp)
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001165 jz .Lerror_kernelspace
Andy Lutomirski539f5112015-06-09 12:36:01 -07001166
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001167 /*
1168 * We entered from user mode or we're pretending to have entered
1169 * from user mode due to an IRET fault.
1170 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001171 SWAPGS
Andy Lutomirski539f5112015-06-09 12:36:01 -07001172
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001173.Lerror_entry_from_usermode_after_swapgs:
Andy Lutomirskif1075052015-11-12 12:59:00 -08001174 /*
1175 * We need to tell lockdep that IRQs are off. We can't do this until
1176 * we fix gsbase, and we should do it before enter_from_user_mode
1177 * (which can take locks).
1178 */
1179 TRACE_IRQS_OFF
Andy Lutomirski478dc892015-11-12 12:59:04 -08001180 CALL_enter_from_user_mode
Andy Lutomirskif1075052015-11-12 12:59:00 -08001181 ret
Andy Lutomirski02bc7762015-07-03 12:44:31 -07001182
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001183.Lerror_entry_done:
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001184 TRACE_IRQS_OFF
1185 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001186
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001187 /*
1188 * There are two places in the kernel that can potentially fault with
1189 * usergs. Handle them here. B stepping K8s sometimes report a
1190 * truncated RIP for IRET exceptions returning to compat mode. Check
1191 * for these here too.
1192 */
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001193.Lerror_kernelspace:
Ingo Molnar4d732132015-06-08 20:43:07 +02001194 incl %ebx
1195 leaq native_irq_return_iret(%rip), %rcx
1196 cmpq %rcx, RIP+8(%rsp)
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001197 je .Lerror_bad_iret
Ingo Molnar4d732132015-06-08 20:43:07 +02001198 movl %ecx, %eax /* zero extend */
1199 cmpq %rax, RIP+8(%rsp)
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001200 je .Lbstep_iret
Borislav Petkov42c748bb2016-04-07 17:31:50 -07001201 cmpq $.Lgs_change, RIP+8(%rsp)
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001202 jne .Lerror_entry_done
Andy Lutomirski539f5112015-06-09 12:36:01 -07001203
1204 /*
Borislav Petkov42c748bb2016-04-07 17:31:50 -07001205 * hack: .Lgs_change can fail with user gsbase. If this happens, fix up
Andy Lutomirski539f5112015-06-09 12:36:01 -07001206 * gsbase and proceed. We'll fix up the exception and land in
Borislav Petkov42c748bb2016-04-07 17:31:50 -07001207 * .Lgs_change's error handler with kernel gsbase.
Andy Lutomirski539f5112015-06-09 12:36:01 -07001208 */
Wanpeng Li2fa5f042016-09-30 09:01:06 +08001209 SWAPGS
1210 jmp .Lerror_entry_done
Brian Gerstae24ffe2009-10-12 10:18:23 -04001211
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001212.Lbstep_iret:
Brian Gerstae24ffe2009-10-12 10:18:23 -04001213 /* Fix truncated RIP */
Ingo Molnar4d732132015-06-08 20:43:07 +02001214 movq %rcx, RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001215 /* fall through */
1216
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001217.Lerror_bad_iret:
Andy Lutomirski539f5112015-06-09 12:36:01 -07001218 /*
1219 * We came from an IRET to user mode, so we have user gsbase.
1220 * Switch to kernel gsbase:
1221 */
Andy Lutomirskib645af22014-11-22 18:00:33 -08001222 SWAPGS
Andy Lutomirski539f5112015-06-09 12:36:01 -07001223
1224 /*
1225 * Pretend that the exception came from user mode: set up pt_regs
1226 * as if we faulted immediately after IRET and clear EBX so that
1227 * error_exit knows that we will be returning to user mode.
1228 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001229 mov %rsp, %rdi
1230 call fixup_bad_iret
1231 mov %rax, %rsp
Andy Lutomirski539f5112015-06-09 12:36:01 -07001232 decl %ebx
Andy Lutomirskicb6f64e2015-07-03 12:44:27 -07001233 jmp .Lerror_entry_from_usermode_after_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001234END(error_entry)
1235
1236
Andy Lutomirski539f5112015-06-09 12:36:01 -07001237/*
Nicolas Iooss75ca5b22016-07-29 13:39:51 +02001238 * On entry, EBX is a "return to kernel mode" flag:
Andy Lutomirski539f5112015-06-09 12:36:01 -07001239 * 1: already in kernel mode, don't need SWAPGS
1240 * 0: user gsbase is loaded, we need SWAPGS and standard preparation for return to usermode
1241 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001242ENTRY(error_exit)
Ingo Molnar4d732132015-06-08 20:43:07 +02001243 movl %ebx, %eax
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001244 DISABLE_INTERRUPTS(CLBR_NONE)
1245 TRACE_IRQS_OFF
Ingo Molnar4d732132015-06-08 20:43:07 +02001246 testl %eax, %eax
1247 jnz retint_kernel
1248 jmp retint_user
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001249END(error_exit)
1250
Denys Vlasenko0784b362015-04-01 16:50:57 +02001251/* Runs on exception stack */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001252ENTRY(nmi)
Andy Lutomirskifc57a7c2015-09-20 16:32:04 -07001253 /*
1254 * Fix up the exception frame if we're on Xen.
1255 * PARAVIRT_ADJUST_EXCEPTION_FRAME is guaranteed to push at most
1256 * one value to the stack on native, so it may clobber the rdx
1257 * scratch slot, but it won't clobber any of the important
1258 * slots past it.
1259 *
1260 * Xen is a different story, because the Xen frame itself overlaps
1261 * the "NMI executing" variable.
1262 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001263 PARAVIRT_ADJUST_EXCEPTION_FRAME
Andy Lutomirskifc57a7c2015-09-20 16:32:04 -07001264
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001265 /*
1266 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1267 * the iretq it performs will take us out of NMI context.
1268 * This means that we can have nested NMIs where the next
1269 * NMI is using the top of the stack of the previous NMI. We
1270 * can't let it execute because the nested NMI will corrupt the
1271 * stack of the previous NMI. NMI handlers are not re-entrant
1272 * anyway.
1273 *
1274 * To handle this case we do the following:
1275 * Check the a special location on the stack that contains
1276 * a variable that is set when NMIs are executing.
1277 * The interrupted task's stack is also checked to see if it
1278 * is an NMI stack.
1279 * If the variable is not set and the stack is not the NMI
1280 * stack then:
1281 * o Set the special variable on the stack
Andy Lutomirski0b229302015-07-15 10:29:36 -07001282 * o Copy the interrupt frame into an "outermost" location on the
1283 * stack
1284 * o Copy the interrupt frame into an "iret" location on the stack
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001285 * o Continue processing the NMI
1286 * If the variable is set or the previous stack is the NMI stack:
Andy Lutomirski0b229302015-07-15 10:29:36 -07001287 * o Modify the "iret" location to jump to the repeat_nmi
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001288 * o return back to the first NMI
1289 *
1290 * Now on exit of the first NMI, we first clear the stack variable
1291 * The NMI stack will tell any nested NMIs at that point that it is
1292 * nested. Then we pop the stack normally with iret, and if there was
1293 * a nested NMI that updated the copy interrupt stack frame, a
1294 * jump will be made to the repeat_nmi code that will handle the second
1295 * NMI.
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001296 *
1297 * However, espfix prevents us from directly returning to userspace
1298 * with a single IRET instruction. Similarly, IRET to user mode
1299 * can fault. We therefore handle NMIs from user space like
1300 * other IST entries.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001301 */
1302
Andy Lutomirski10d5bf22017-08-07 19:43:13 -07001303 ASM_CLAC
1304
Denys Vlasenko146b2b02015-03-25 18:18:13 +01001305 /* Use %rdx as our temp variable throughout */
Ingo Molnar4d732132015-06-08 20:43:07 +02001306 pushq %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001307
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001308 testb $3, CS-RIP+8(%rsp)
1309 jz .Lnmi_from_kernel
Steven Rostedt45d5a162012-02-19 16:43:37 -05001310
1311 /*
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001312 * NMI from user mode. We need to run on the thread stack, but we
1313 * can't go through the normal entry paths: NMIs are masked, and
1314 * we don't want to enable interrupts, because then we'll end
1315 * up in an awkward situation in which IRQs are on but NMIs
1316 * are off.
Andy Lutomirski83c133c2015-09-20 16:32:05 -07001317 *
1318 * We also must not push anything to the stack before switching
1319 * stacks lest we corrupt the "NMI executing" variable.
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001320 */
1321
Andy Lutomirski83c133c2015-09-20 16:32:05 -07001322 SWAPGS_UNSAFE_STACK
Dave Hansen8f0baad2017-08-30 16:23:00 -07001323 /*
1324 * percpu variables are mapped with user CR3, so no need
1325 * to switch CR3 here.
1326 */
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001327 cld
1328 movq %rsp, %rdx
1329 movq PER_CPU_VAR(cpu_current_top_of_stack), %rsp
1330 pushq 5*8(%rdx) /* pt_regs->ss */
1331 pushq 4*8(%rdx) /* pt_regs->rsp */
1332 pushq 3*8(%rdx) /* pt_regs->flags */
1333 pushq 2*8(%rdx) /* pt_regs->cs */
1334 pushq 1*8(%rdx) /* pt_regs->rip */
1335 pushq $-1 /* pt_regs->orig_ax */
1336 pushq %rdi /* pt_regs->di */
1337 pushq %rsi /* pt_regs->si */
1338 pushq (%rdx) /* pt_regs->dx */
1339 pushq %rcx /* pt_regs->cx */
1340 pushq %rax /* pt_regs->ax */
1341 pushq %r8 /* pt_regs->r8 */
1342 pushq %r9 /* pt_regs->r9 */
1343 pushq %r10 /* pt_regs->r10 */
1344 pushq %r11 /* pt_regs->r11 */
1345 pushq %rbx /* pt_regs->rbx */
1346 pushq %rbp /* pt_regs->rbp */
1347 pushq %r12 /* pt_regs->r12 */
1348 pushq %r13 /* pt_regs->r13 */
1349 pushq %r14 /* pt_regs->r14 */
1350 pushq %r15 /* pt_regs->r15 */
1351
1352 /*
1353 * At this point we no longer need to worry about stack damage
1354 * due to nesting -- we're on the normal thread stack and we're
1355 * done with the NMI stack.
1356 */
1357
1358 movq %rsp, %rdi
1359 movq $-1, %rsi
Kees Cooke71fac02018-01-03 10:17:35 -08001360#ifdef CONFIG_PAGE_TABLE_ISOLATION
Dave Hansen8f0baad2017-08-30 16:23:00 -07001361 /* Unconditionally use kernel CR3 for do_nmi() */
1362 /* %rax is saved above, so OK to clobber here */
Hugh Dickins23e09432017-09-24 16:59:49 -07001363 ALTERNATIVE "jmp 2f", "movq %cr3, %rax", X86_FEATURE_KAISER
Hugh Dickinsd0142ce2017-08-27 16:24:27 -07001364 /* If PCID enabled, NOFLUSH now and NOFLUSH on return */
Hugh Dickins169b3692017-10-03 20:49:04 -07001365 ALTERNATIVE "", "bts $63, %rax", X86_FEATURE_PCID
Dave Hansen8f0baad2017-08-30 16:23:00 -07001366 pushq %rax
Hugh Dickins2684b122017-08-30 16:23:00 -07001367 /* mask off "user" bit of pgd address and 12 PCID bits: */
1368 andq $(~(X86_CR3_PCID_ASID_MASK | KAISER_SHADOW_PGD_OFFSET)), %rax
Dave Hansen8f0baad2017-08-30 16:23:00 -07001369 movq %rax, %cr3
Hugh Dickins23e09432017-09-24 16:59:49 -070013702:
Dave Hansen8f0baad2017-08-30 16:23:00 -07001371#endif
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001372 call do_nmi
Hugh Dickins19377942017-09-21 20:39:56 -07001373
Kees Cooke71fac02018-01-03 10:17:35 -08001374#ifdef CONFIG_PAGE_TABLE_ISOLATION
Dave Hansen8f0baad2017-08-30 16:23:00 -07001375 /*
1376 * Unconditionally restore CR3. I know we return to
1377 * kernel code that needs user CR3, but do we ever return
1378 * to "user mode" where we need the kernel CR3?
1379 */
Hugh Dickins23e09432017-09-24 16:59:49 -07001380 ALTERNATIVE "", "popq %rax; movq %rax, %cr3", X86_FEATURE_KAISER
Dave Hansen8f0baad2017-08-30 16:23:00 -07001381#endif
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001382
1383 /*
1384 * Return back to user mode. We must *not* do the normal exit
Dave Hansen8f0baad2017-08-30 16:23:00 -07001385 * work, because we don't want to enable interrupts. Do not
1386 * switch to user CR3: we might be going back to kernel code
1387 * that had a user CR3 set.
Andy Lutomirski9b6e6a82015-07-15 10:29:35 -07001388 */
1389 SWAPGS
1390 jmp restore_c_regs_and_iret
1391
1392.Lnmi_from_kernel:
1393 /*
Andy Lutomirski0b229302015-07-15 10:29:36 -07001394 * Here's what our stack frame will look like:
1395 * +---------------------------------------------------------+
1396 * | original SS |
1397 * | original Return RSP |
1398 * | original RFLAGS |
1399 * | original CS |
1400 * | original RIP |
1401 * +---------------------------------------------------------+
1402 * | temp storage for rdx |
1403 * +---------------------------------------------------------+
1404 * | "NMI executing" variable |
1405 * +---------------------------------------------------------+
1406 * | iret SS } Copied from "outermost" frame |
1407 * | iret Return RSP } on each loop iteration; overwritten |
1408 * | iret RFLAGS } by a nested NMI to force another |
1409 * | iret CS } iteration if needed. |
1410 * | iret RIP } |
1411 * +---------------------------------------------------------+
1412 * | outermost SS } initialized in first_nmi; |
1413 * | outermost Return RSP } will not be changed before |
1414 * | outermost RFLAGS } NMI processing is done. |
1415 * | outermost CS } Copied to "iret" frame on each |
1416 * | outermost RIP } iteration. |
1417 * +---------------------------------------------------------+
1418 * | pt_regs |
1419 * +---------------------------------------------------------+
1420 *
1421 * The "original" frame is used by hardware. Before re-enabling
1422 * NMIs, we need to be done with it, and we need to leave enough
1423 * space for the asm code here.
1424 *
1425 * We return by executing IRET while RSP points to the "iret" frame.
1426 * That will either return for real or it will loop back into NMI
1427 * processing.
1428 *
1429 * The "outermost" frame is copied to the "iret" frame on each
1430 * iteration of the loop, so each iteration starts with the "iret"
1431 * frame pointing to the final return target.
1432 */
1433
1434 /*
1435 * Determine whether we're a nested NMI.
1436 *
Andy Lutomirskia27507c2015-07-15 10:29:37 -07001437 * If we interrupted kernel code between repeat_nmi and
1438 * end_repeat_nmi, then we are a nested NMI. We must not
1439 * modify the "iret" frame because it's being written by
1440 * the outer NMI. That's okay; the outer NMI handler is
1441 * about to about to call do_nmi anyway, so we can just
1442 * resume the outer NMI.
1443 */
1444
1445 movq $repeat_nmi, %rdx
1446 cmpq 8(%rsp), %rdx
1447 ja 1f
1448 movq $end_repeat_nmi, %rdx
1449 cmpq 8(%rsp), %rdx
1450 ja nested_nmi_out
14511:
1452
1453 /*
1454 * Now check "NMI executing". If it's set, then we're nested.
Andy Lutomirski0b229302015-07-15 10:29:36 -07001455 * This will not detect if we interrupted an outer NMI just
1456 * before IRET.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001457 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001458 cmpl $1, -8(%rsp)
1459 je nested_nmi
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001460
1461 /*
Andy Lutomirski0b229302015-07-15 10:29:36 -07001462 * Now test if the previous stack was an NMI stack. This covers
1463 * the case where we interrupt an outer NMI after it clears
Andy Lutomirski810bc072015-07-15 10:29:38 -07001464 * "NMI executing" but before IRET. We need to be careful, though:
1465 * there is one case in which RSP could point to the NMI stack
1466 * despite there being no NMI active: naughty userspace controls
1467 * RSP at the very beginning of the SYSCALL targets. We can
1468 * pull a fast one on naughty userspace, though: we program
1469 * SYSCALL to mask DF, so userspace cannot cause DF to be set
1470 * if it controls the kernel's RSP. We set DF before we clear
1471 * "NMI executing".
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001472 */
Denys Vlasenko0784b362015-04-01 16:50:57 +02001473 lea 6*8(%rsp), %rdx
1474 /* Compare the NMI stack (rdx) with the stack we came from (4*8(%rsp)) */
1475 cmpq %rdx, 4*8(%rsp)
1476 /* If the stack pointer is above the NMI stack, this is a normal NMI */
1477 ja first_nmi
Ingo Molnar4d732132015-06-08 20:43:07 +02001478
Denys Vlasenko0784b362015-04-01 16:50:57 +02001479 subq $EXCEPTION_STKSZ, %rdx
1480 cmpq %rdx, 4*8(%rsp)
1481 /* If it is below the NMI stack, it is a normal NMI */
1482 jb first_nmi
Andy Lutomirski810bc072015-07-15 10:29:38 -07001483
1484 /* Ah, it is within the NMI stack. */
1485
1486 testb $(X86_EFLAGS_DF >> 8), (3*8 + 1)(%rsp)
1487 jz first_nmi /* RSP was user controlled. */
1488
1489 /* This is a nested NMI. */
Denys Vlasenko0784b362015-04-01 16:50:57 +02001490
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001491nested_nmi:
1492 /*
Andy Lutomirski0b229302015-07-15 10:29:36 -07001493 * Modify the "iret" frame to point to repeat_nmi, forcing another
1494 * iteration of NMI handling.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001495 */
Andy Lutomirski23a781e2015-07-15 10:29:39 -07001496 subq $8, %rsp
Ingo Molnar4d732132015-06-08 20:43:07 +02001497 leaq -10*8(%rsp), %rdx
1498 pushq $__KERNEL_DS
1499 pushq %rdx
Ingo Molnar131484c2015-05-28 12:21:47 +02001500 pushfq
Ingo Molnar4d732132015-06-08 20:43:07 +02001501 pushq $__KERNEL_CS
1502 pushq $repeat_nmi
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001503
1504 /* Put stack back */
Ingo Molnar4d732132015-06-08 20:43:07 +02001505 addq $(6*8), %rsp
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001506
1507nested_nmi_out:
Ingo Molnar4d732132015-06-08 20:43:07 +02001508 popq %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001509
Andy Lutomirski0b229302015-07-15 10:29:36 -07001510 /* We are returning to kernel mode, so this cannot result in a fault. */
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001511 INTERRUPT_RETURN
1512
1513first_nmi:
Andy Lutomirski0b229302015-07-15 10:29:36 -07001514 /* Restore rdx. */
Ingo Molnar4d732132015-06-08 20:43:07 +02001515 movq (%rsp), %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001516
Andy Lutomirski36f1a772015-07-15 10:29:40 -07001517 /* Make room for "NMI executing". */
1518 pushq $0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001519
Andy Lutomirski0b229302015-07-15 10:29:36 -07001520 /* Leave room for the "iret" frame */
Ingo Molnar4d732132015-06-08 20:43:07 +02001521 subq $(5*8), %rsp
Salman Qazi28696f42012-10-01 17:29:25 -07001522
Andy Lutomirski0b229302015-07-15 10:29:36 -07001523 /* Copy the "original" frame to the "outermost" frame */
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001524 .rept 5
Ingo Molnar4d732132015-06-08 20:43:07 +02001525 pushq 11*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001526 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001527
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001528 /* Everything up to here is safe from nested NMIs */
1529
Andy Lutomirskia97439a2015-07-15 10:29:41 -07001530#ifdef CONFIG_DEBUG_ENTRY
1531 /*
1532 * For ease of testing, unmask NMIs right away. Disabled by
1533 * default because IRET is very expensive.
1534 */
1535 pushq $0 /* SS */
1536 pushq %rsp /* RSP (minus 8 because of the previous push) */
1537 addq $8, (%rsp) /* Fix up RSP */
1538 pushfq /* RFLAGS */
1539 pushq $__KERNEL_CS /* CS */
1540 pushq $1f /* RIP */
1541 INTERRUPT_RETURN /* continues at repeat_nmi below */
15421:
1543#endif
1544
Andy Lutomirski0b229302015-07-15 10:29:36 -07001545repeat_nmi:
Jan Beulich62610912012-02-24 14:54:37 +00001546 /*
1547 * If there was a nested NMI, the first NMI's iret will return
1548 * here. But NMIs are still enabled and we can take another
1549 * nested NMI. The nested NMI checks the interrupted RIP to see
1550 * if it is between repeat_nmi and end_repeat_nmi, and if so
1551 * it will just return, as we are about to repeat an NMI anyway.
1552 * This makes it safe to copy to the stack frame that a nested
1553 * NMI will update.
Andy Lutomirski0b229302015-07-15 10:29:36 -07001554 *
1555 * RSP is pointing to "outermost RIP". gsbase is unknown, but, if
1556 * we're repeating an NMI, gsbase has the same value that it had on
1557 * the first iteration. paranoid_entry will load the kernel
Andy Lutomirski36f1a772015-07-15 10:29:40 -07001558 * gsbase if needed before we call do_nmi. "NMI executing"
1559 * is zero.
Jan Beulich62610912012-02-24 14:54:37 +00001560 */
Andy Lutomirski36f1a772015-07-15 10:29:40 -07001561 movq $1, 10*8(%rsp) /* Set "NMI executing". */
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001562
Andy Lutomirski0b229302015-07-15 10:29:36 -07001563 /*
1564 * Copy the "outermost" frame to the "iret" frame. NMIs that nest
1565 * here must not modify the "iret" frame while we're writing to
1566 * it or it will end up containing garbage.
1567 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001568 addq $(10*8), %rsp
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001569 .rept 5
Ingo Molnar4d732132015-06-08 20:43:07 +02001570 pushq -6*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001571 .endr
Ingo Molnar4d732132015-06-08 20:43:07 +02001572 subq $(5*8), %rsp
Jan Beulich62610912012-02-24 14:54:37 +00001573end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001574
1575 /*
Andy Lutomirski0b229302015-07-15 10:29:36 -07001576 * Everything below this point can be preempted by a nested NMI.
1577 * If this happens, then the inner NMI will change the "iret"
1578 * frame to point back to repeat_nmi.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001579 */
Ingo Molnar4d732132015-06-08 20:43:07 +02001580 pushq $-1 /* ORIG_RAX: no syscall to restart */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001581 ALLOC_PT_GPREGS_ON_STACK
1582
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001583 /*
Dave Hansen8f0baad2017-08-30 16:23:00 -07001584 * Use the same approach as paranoid_entry to handle SWAPGS, but
1585 * without CR3 handling since we do that differently in NMIs. No
1586 * need to use paranoid_exit as we should not be calling schedule
1587 * in NMI context. Even with normal interrupts enabled. An NMI
1588 * should not be setting NEED_RESCHED or anything that normal
1589 * interrupts and exceptions might do.
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001590 */
Dave Hansen8f0baad2017-08-30 16:23:00 -07001591 cld
1592 SAVE_C_REGS
1593 SAVE_EXTRA_REGS
1594 movl $1, %ebx
1595 movl $MSR_GS_BASE, %ecx
1596 rdmsr
1597 testl %edx, %edx
1598 js 1f /* negative -> in kernel */
1599 SWAPGS
1600 xorl %ebx, %ebx
16011:
Hugh Dickins19377942017-09-21 20:39:56 -07001602 movq %rsp, %rdi
1603 movq $-1, %rsi
Kees Cooke71fac02018-01-03 10:17:35 -08001604#ifdef CONFIG_PAGE_TABLE_ISOLATION
Dave Hansen8f0baad2017-08-30 16:23:00 -07001605 /* Unconditionally use kernel CR3 for do_nmi() */
1606 /* %rax is saved above, so OK to clobber here */
Hugh Dickins23e09432017-09-24 16:59:49 -07001607 ALTERNATIVE "jmp 2f", "movq %cr3, %rax", X86_FEATURE_KAISER
Hugh Dickinsd0142ce2017-08-27 16:24:27 -07001608 /* If PCID enabled, NOFLUSH now and NOFLUSH on return */
Hugh Dickins169b3692017-10-03 20:49:04 -07001609 ALTERNATIVE "", "bts $63, %rax", X86_FEATURE_PCID
Dave Hansen8f0baad2017-08-30 16:23:00 -07001610 pushq %rax
Hugh Dickins2684b122017-08-30 16:23:00 -07001611 /* mask off "user" bit of pgd address and 12 PCID bits: */
1612 andq $(~(X86_CR3_PCID_ASID_MASK | KAISER_SHADOW_PGD_OFFSET)), %rax
Dave Hansen8f0baad2017-08-30 16:23:00 -07001613 movq %rax, %cr3
Hugh Dickins23e09432017-09-24 16:59:49 -070016142:
Dave Hansen8f0baad2017-08-30 16:23:00 -07001615#endif
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001616
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001617 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
Ingo Molnar4d732132015-06-08 20:43:07 +02001618 call do_nmi
Hugh Dickins19377942017-09-21 20:39:56 -07001619
Kees Cooke71fac02018-01-03 10:17:35 -08001620#ifdef CONFIG_PAGE_TABLE_ISOLATION
Dave Hansen8f0baad2017-08-30 16:23:00 -07001621 /*
1622 * Unconditionally restore CR3. We might be returning to
1623 * kernel code that needs user CR3, like just just before
1624 * a sysret.
1625 */
Hugh Dickins23e09432017-09-24 16:59:49 -07001626 ALTERNATIVE "", "popq %rax; movq %rax, %cr3", X86_FEATURE_KAISER
Dave Hansen8f0baad2017-08-30 16:23:00 -07001627#endif
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001628
Ingo Molnar4d732132015-06-08 20:43:07 +02001629 testl %ebx, %ebx /* swapgs needed? */
1630 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001631nmi_swapgs:
Dave Hansen8f0baad2017-08-30 16:23:00 -07001632 /* We fixed up CR3 above, so no need to switch it here */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001633 SWAPGS_UNSAFE_STACK
1634nmi_restore:
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001635 RESTORE_EXTRA_REGS
1636 RESTORE_C_REGS
Andy Lutomirski0b229302015-07-15 10:29:36 -07001637
1638 /* Point RSP at the "iret" frame. */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001639 REMOVE_PT_GPREGS_FROM_STACK 6*8
Salman Qazi28696f42012-10-01 17:29:25 -07001640
Andy Lutomirski810bc072015-07-15 10:29:38 -07001641 /*
1642 * Clear "NMI executing". Set DF first so that we can easily
1643 * distinguish the remaining code between here and IRET from
1644 * the SYSCALL entry and exit paths. On a native kernel, we
1645 * could just inspect RIP, but, on paravirt kernels,
1646 * INTERRUPT_RETURN can translate into a jump into a
1647 * hypercall page.
1648 */
1649 std
1650 movq $0, 5*8(%rsp) /* clear "NMI executing" */
Andy Lutomirski0b229302015-07-15 10:29:36 -07001651
1652 /*
1653 * INTERRUPT_RETURN reads the "iret" frame and exits the NMI
1654 * stack in a single instruction. We are returning to kernel
1655 * mode, so this cannot result in a fault.
1656 */
Andy Lutomirski5ca6f702015-06-04 13:24:29 -07001657 INTERRUPT_RETURN
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001658END(nmi)
1659
1660ENTRY(ignore_sysret)
Ingo Molnar4d732132015-06-08 20:43:07 +02001661 mov $-ENOSYS, %eax
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001662 sysret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001663END(ignore_sysret)
Andy Lutomirski2deb4be2016-07-14 13:22:55 -07001664
1665ENTRY(rewind_stack_do_exit)
1666 /* Prevent any naive code from trying to unwind to our caller. */
1667 xorl %ebp, %ebp
1668
1669 movq PER_CPU_VAR(cpu_current_top_of_stack), %rax
1670 leaq -TOP_OF_KERNEL_STACK_PADDING-PTREGS_SIZE(%rax), %rsp
1671
1672 call do_exit
16731: jmp 1b
1674END(rewind_stack_do_exit)