blob: e8372e08f8c2512a0b21a51d2b9c6e4ffda63f41 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
9/*
10 * entry.S contains the system-call and fault low-level handling routines.
11 *
Andy Lutomirski8b4777a2011-06-05 13:50:18 -040012 * Some of this is documented in Documentation/x86/entry_64.txt
13 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * NOTE: This code handles signal-recognition, which happens every time
15 * after an interrupt and after each system call.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010016 *
17 * Normal syscalls and interrupts don't save a full stack frame, this is
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * only done for syscall tracing, signals or fork/exec et.al.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010019 *
20 * A note on terminology:
21 * - top of stack: Architecture defined interrupt frame from SS to RIP
22 * at the top of the kernel process stack.
Lucas De Marchi0d2eb442011-03-17 16:24:16 -030023 * - partial stack frame: partially saved registers up to R11.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010024 * - full stack frame: Like partial stack frame, but all register saved.
Andi Kleen2e91a172006-09-26 10:52:29 +020025 *
26 * Some macro usage:
27 * - CFI macros are used to generate dwarf2 unwind information for better
28 * backtraces. They don't change any code.
Andi Kleen2e91a172006-09-26 10:52:29 +020029 * - ENTRY/END Define functions in the symbol table.
30 * - FIXUP_TOP_OF_STACK/RESTORE_TOP_OF_STACK - Fix up the hardware stack
31 * frame that is otherwise undefined after a SYSCALL
32 * - TRACE_IRQ_* - Trace hard interrupt state for lock debugging.
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -070033 * - idtentry - Define exception entry points.
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 */
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/linkage.h>
37#include <asm/segment.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/cache.h>
39#include <asm/errno.h>
40#include <asm/dwarf2.h>
41#include <asm/calling.h>
Sam Ravnborge2d5df92005-09-09 21:28:48 +020042#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/msr.h>
44#include <asm/unistd.h>
45#include <asm/thread_info.h>
46#include <asm/hw_irq.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080047#include <asm/page_types.h>
Ingo Molnar2601e642006-07-03 00:24:45 -070048#include <asm/irqflags.h>
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010049#include <asm/paravirt.h>
Tejun Heo9939dda2009-01-13 20:41:35 +090050#include <asm/percpu.h>
H. Peter Anvind7abc0f2012-04-20 12:19:50 -070051#include <asm/asm.h>
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010052#include <asm/context_tracking.h>
H. Peter Anvin63bcff22012-09-21 12:43:12 -070053#include <asm/smap.h>
H. Peter Anvin3891a042014-04-29 16:46:09 -070054#include <asm/pgtable_types.h>
Eric Parisd7e75282012-01-03 14:23:06 -050055#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Roland McGrath86a1c342008-06-23 15:37:04 -070057/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
58#include <linux/elf-em.h>
59#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
60#define __AUDIT_ARCH_64BIT 0x80000000
61#define __AUDIT_ARCH_LE 0x40000000
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 .code64
Jiri Olsaea714542011-03-07 19:10:39 +010064 .section .entry.text, "ax"
65
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020066
Andi Kleendc37db42005-04-16 15:25:05 -070067#ifndef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#define retint_kernel retint_restore_args
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010069#endif
Ingo Molnar2601e642006-07-03 00:24:45 -070070
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010071#ifdef CONFIG_PARAVIRT
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -040072ENTRY(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010073 swapgs
74 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +030075ENDPROC(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010076#endif /* CONFIG_PARAVIRT */
77
Ingo Molnar2601e642006-07-03 00:24:45 -070078
79.macro TRACE_IRQS_IRETQ offset=ARGOFFSET
80#ifdef CONFIG_TRACE_IRQFLAGS
81 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
82 jnc 1f
83 TRACE_IRQS_ON
841:
85#endif
86.endm
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088/*
Steven Rostedt5963e312012-05-30 11:54:53 -040089 * When dynamic function tracer is enabled it will add a breakpoint
90 * to all locations that it is about to modify, sync CPUs, update
91 * all the code, sync CPUs, then remove the breakpoints. In this time
92 * if lockdep is enabled, it might jump back into the debug handler
93 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
94 *
95 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
96 * make sure the stack pointer does not get reset back to the top
97 * of the debug stack, and instead just reuses the current stack.
98 */
99#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
100
101.macro TRACE_IRQS_OFF_DEBUG
102 call debug_stack_set_zero
103 TRACE_IRQS_OFF
104 call debug_stack_reset
105.endm
106
107.macro TRACE_IRQS_ON_DEBUG
108 call debug_stack_set_zero
109 TRACE_IRQS_ON
110 call debug_stack_reset
111.endm
112
113.macro TRACE_IRQS_IRETQ_DEBUG offset=ARGOFFSET
114 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
115 jnc 1f
116 TRACE_IRQS_ON_DEBUG
1171:
118.endm
119
120#else
121# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
122# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
123# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
124#endif
125
126/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100127 * C code is not supposed to know about undefined top of stack. Every time
128 * a C function with an pt_regs argument is called from the SYSCALL based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 * fast path FIXUP_TOP_OF_STACK is needed.
130 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
131 * manipulation.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100132 */
133
134 /* %rsp:at FRAMEEND */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100135 .macro FIXUP_TOP_OF_STACK tmp offset=0
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900136 movq PER_CPU_VAR(old_rsp),\tmp
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100137 movq \tmp,RSP+\offset(%rsp)
138 movq $__USER_DS,SS+\offset(%rsp)
139 movq $__USER_CS,CS+\offset(%rsp)
Andy Lutomirski0fcedc82015-01-16 16:19:27 -0800140 movq RIP+\offset(%rsp),\tmp /* get rip */
141 movq \tmp,RCX+\offset(%rsp) /* copy it to rcx as sysret would do */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100142 movq R11+\offset(%rsp),\tmp /* get eflags */
143 movq \tmp,EFLAGS+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 .endm
145
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100146 .macro RESTORE_TOP_OF_STACK tmp offset=0
147 movq RSP+\offset(%rsp),\tmp
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900148 movq \tmp,PER_CPU_VAR(old_rsp)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100149 movq EFLAGS+\offset(%rsp),\tmp
150 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 .endm
152
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100153/*
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100154 * initial frame state for interrupts (and exceptions without error code)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100155 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100156 .macro EMPTY_FRAME start=1 offset=0
157 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100158 CFI_STARTPROC simple
159 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100160 CFI_DEF_CFA rsp,8+\offset
161 .else
162 CFI_DEF_CFA_OFFSET 8+\offset
163 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100164 .endm
165
166/*
167 * initial frame state for interrupts (and exceptions without error code)
168 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100169 .macro INTR_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100170 EMPTY_FRAME \start, SS+8+\offset-RIP
171 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
172 CFI_REL_OFFSET rsp, RSP+\offset-RIP
173 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
174 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
175 CFI_REL_OFFSET rip, RIP+\offset-RIP
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100176 .endm
177
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100178/*
179 * initial frame state for exceptions with error code (and interrupts
180 * with vector already pushed)
181 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100182 .macro XCPT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100183 INTR_FRAME \start, RIP+\offset-ORIG_RAX
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100184 .endm
185
186/*
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800187 * frame that enables passing a complete pt_regs to a C function.
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100188 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800189 .macro DEFAULT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100190 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
191 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
192 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
193 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
194 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
195 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
196 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
197 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
198 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
199 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100200 CFI_REL_OFFSET rbx, RBX+\offset
201 CFI_REL_OFFSET rbp, RBP+\offset
202 CFI_REL_OFFSET r12, R12+\offset
203 CFI_REL_OFFSET r13, R13+\offset
204 CFI_REL_OFFSET r14, R14+\offset
205 CFI_REL_OFFSET r15, R15+\offset
206 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100207
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100208ENTRY(save_paranoid)
209 XCPT_FRAME 1 RDI+8
210 cld
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800211 SAVE_C_REGS 8
212 SAVE_EXTRA_REGS 8
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100213 movl $1,%ebx
214 movl $MSR_GS_BASE,%ecx
215 rdmsr
216 testl %edx,%edx
217 js 1f /* negative -> in kernel */
218 SWAPGS
219 xorl %ebx,%ebx
2201: ret
221 CFI_ENDPROC
222END(save_paranoid)
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/*
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100225 * A newly forked process directly context switches into this address.
226 *
227 * rdi: prev task we switched from
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100228 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229ENTRY(ret_from_fork)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100230 DEFAULT_FRAME
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100231
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500232 LOCK ; btr $TIF_FORK,TI_flags(%r8)
233
Ian Campbell6eebdda2012-08-24 23:58:47 +0400234 pushq_cfi $0x0002
Jan Beulichdf5d1872010-09-02 14:07:16 +0100235 popfq_cfi # reset kernel eflags
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100236
237 call schedule_tail # rdi: 'prev' task parameter
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 GET_THREAD_INFO(%rcx)
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100240
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800241 RESTORE_EXTRA_REGS
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100242
243 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
Al Viro7076aad2012-09-10 16:44:54 -0400244 jz 1f
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100245
246 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 jnz int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100248
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100249 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100250 jmp ret_from_sys_call # go to the SYSRET fastpath
251
Al Viro7076aad2012-09-10 16:44:54 -04002521:
Al Viro7076aad2012-09-10 16:44:54 -0400253 movq %rbp, %rdi
254 call *%rbx
Al Viro22e2430d2012-10-10 21:35:42 -0400255 movl $0, RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800256 RESTORE_EXTRA_REGS
Al Viro22e2430d2012-10-10 21:35:42 -0400257 jmp int_ret_from_sys_call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200259END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261/*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300262 * System call entry. Up to 6 arguments in registers are supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 *
264 * SYSCALL does not save anything on the stack and does not change the
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700265 * stack pointer. However, it does mask the flags register for us, so
266 * CLD and CLAC are not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100270 * Register setup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 * rax system call number
272 * rdi arg0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100273 * rcx return address for syscall/sysret, C arg3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100275 * rdx arg2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 * r10 arg3 (--> moved to rcx for C)
277 * r8 arg4
278 * r9 arg5
279 * r11 eflags for syscall/sysret, temporary for C
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100280 * r12-r15,rbp,rbx saved by C code, not touched.
281 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 * Interrupts are off on entry.
283 * Only called from user space.
284 *
285 * XXX if we had a free scratch register we could save the RSP into the stack frame
286 * and report it properly in ps. Unfortunately we haven't.
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200287 *
288 * When user can change the frames always force IRET. That is because
289 * it deals with uncanonical addresses better. SYSRET has trouble
290 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100291 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200294 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200295 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900296 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200297 CFI_REGISTER rip,rcx
298 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100299 SWAPGS_UNSAFE_STACK
300 /*
301 * A hypervisor implementation might want to use a label
302 * after the swapgs, so that it can do the swapgs
303 * for the guest and jump here on syscall.
304 */
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000305GLOBAL(system_call_after_swapgs)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100306
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900307 movq %rsp,PER_CPU_VAR(old_rsp)
Brian Gerst9af45652009-01-19 00:38:58 +0900308 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700309 /*
310 * No need to follow this irqs off/on section - it's straight
311 * and short:
312 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100313 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800314 ALLOC_PT_GPREGS_ON_STACK 8
315 SAVE_C_REGS_EXCEPT_RAX_RCX
316 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
Andy Lutomirski54eea992014-09-05 15:13:55 -0700317 movq_cfi rax,(ORIG_RAX-ARGOFFSET)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800318 movq %rcx,RIP-ARGOFFSET(%rsp)
Jan Beulich7effaa82005-09-12 18:49:24 +0200319 CFI_REL_OFFSET rip,RIP-ARGOFFSET
Jan Beulich46db09d2011-11-29 11:17:45 +0000320 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700322system_call_fastpath:
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800323#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800325#else
326 andl $__SYSCALL_MASK,%eax
327 cmpl $__NR_syscall_max,%eax
328#endif
Andy Lutomirski54eea992014-09-05 15:13:55 -0700329 ja ret_from_sys_call /* and return regs->ax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 movq %r10,%rcx
331 call *sys_call_table(,%rax,8) # XXX: rip relative
332 movq %rax,RAX-ARGOFFSET(%rsp)
333/*
334 * Syscall return path ending with SYSRET (fast path)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100335 * Has incomplete stack frame and undefined top of stack.
336 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337ret_from_sys_call:
Andy Lutomirski96b63522014-07-07 11:37:17 -0700338 testl $_TIF_ALLWORK_MASK,TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
339 jnz int_ret_from_sys_call_fixup /* Go the the slow path */
340
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200341 LOCKDEP_SYS_EXIT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100342 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700343 TRACE_IRQS_OFF
Jan Beulichbcddc012006-12-07 02:14:02 +0100344 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700345 /*
346 * sysretq will re-enable interrupts:
347 */
348 TRACE_IRQS_ON
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800349 RESTORE_C_REGS_EXCEPT_RCX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 movq RIP-ARGOFFSET(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200351 CFI_REGISTER rip,rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200352 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900353 movq PER_CPU_VAR(old_rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400354 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Jan Beulichbcddc012006-12-07 02:14:02 +0100356 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Andy Lutomirski96b63522014-07-07 11:37:17 -0700358int_ret_from_sys_call_fixup:
Roland McGrathb60e7142009-09-22 16:46:34 -0700359 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
Andy Lutomirski96b63522014-07-07 11:37:17 -0700360 jmp int_ret_from_sys_call
Roland McGrath86a1c342008-06-23 15:37:04 -0700361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100363tracesys:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800364 movq %rsp, %rdi
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700365 movq $AUDIT_ARCH_X86_64, %rsi
366 call syscall_trace_enter_phase1
367 test %rax, %rax
368 jnz tracesys_phase2 /* if needed, run the slow path */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800369 RESTORE_C_REGS_EXCEPT_RAX /* else restore clobbered regs */
370 movq ORIG_RAX-ARGOFFSET(%rsp), %rax
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700371 jmp system_call_fastpath /* and return to the fast path */
372
373tracesys_phase2:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800374 SAVE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 FIXUP_TOP_OF_STACK %rdi
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700376 movq %rsp, %rdi
377 movq $AUDIT_ARCH_X86_64, %rsi
378 movq %rax,%rdx
379 call syscall_trace_enter_phase2
380
Roland McGrathd4d67152008-07-09 02:38:07 -0700381 /*
382 * Reload arg registers from stack in case ptrace changed them.
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700383 * We don't reload %rax because syscall_trace_entry_phase2() returned
Roland McGrathd4d67152008-07-09 02:38:07 -0700384 * the value it wants us to use in the table lookup.
385 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800386 RESTORE_C_REGS_EXCEPT_RAX
387 RESTORE_EXTRA_REGS
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800388#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800390#else
391 andl $__SYSCALL_MASK,%eax
392 cmpl $__NR_syscall_max,%eax
393#endif
Andy Lutomirski54eea992014-09-05 15:13:55 -0700394 ja int_ret_from_sys_call /* RAX(%rsp) is already set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 movq %r10,%rcx /* fixup for C */
396 call *sys_call_table(,%rax,8)
Roland McGratha31f8dd2008-03-16 21:59:11 -0700397 movq %rax,RAX-ARGOFFSET(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200398 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100399
400/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 * Syscall return path ending with IRET.
402 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100403 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300404GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100405 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700406 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 movl $_TIF_ALLWORK_MASK,%edi
408 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300409GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200410 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300412 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 andl %edi,%edx
414 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300415 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 jmp retint_swapgs
417
418 /* Either reschedule or signal or syscall exit tracking needed. */
419 /* First do a reschedule test. */
420 /* edx: work, edi: workmask */
421int_careful:
422 bt $TIF_NEED_RESCHED,%edx
423 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700424 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100425 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100426 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200427 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100428 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100429 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700430 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 jmp int_with_check
432
433 /* handle signals and tracing -- both require a full stack frame */
434int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700435 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100436 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrathb60e7142009-09-22 16:46:34 -0700437int_check_syscall_exit_work:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800438 SAVE_EXTRA_REGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100439 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700440 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100442 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100443 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100445 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700446 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100450 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 jz 1f
452 movq %rsp,%rdi # &ptregs -> arg1
453 xorl %esi,%esi # oldset -> arg2
454 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07004551: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456int_restore_rest:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800457 RESTORE_EXTRA_REGS
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100458 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700459 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 jmp int_with_check
461 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100462END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100463
Al Viro1d4b4b22012-10-22 22:34:11 -0400464 .macro FORK_LIKE func
465ENTRY(stub_\func)
466 CFI_STARTPROC
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800467 DEFAULT_FRAME 0, 8 /* offset 8: return address */
468 SAVE_EXTRA_REGS 8
Al Viro1d4b4b22012-10-22 22:34:11 -0400469 FIXUP_TOP_OF_STACK %r11, 8
Al Viro1d4b4b22012-10-22 22:34:11 -0400470 call sys_\func
471 RESTORE_TOP_OF_STACK %r11, 8
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800472 ret
Al Viro1d4b4b22012-10-22 22:34:11 -0400473 CFI_ENDPROC
474END(stub_\func)
475 .endm
476
Al Virob3af11a2012-11-19 22:00:52 -0500477 .macro FIXED_FRAME label,func
478ENTRY(\label)
479 CFI_STARTPROC
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800480 DEFAULT_FRAME 0, 8 /* offset 8: return address */
Al Virob3af11a2012-11-19 22:00:52 -0500481 FIXUP_TOP_OF_STACK %r11, 8-ARGOFFSET
482 call \func
483 RESTORE_TOP_OF_STACK %r11, 8-ARGOFFSET
484 ret
485 CFI_ENDPROC
486END(\label)
487 .endm
488
Al Viro1d4b4b22012-10-22 22:34:11 -0400489 FORK_LIKE clone
490 FORK_LIKE fork
491 FORK_LIKE vfork
Al Virob3af11a2012-11-19 22:00:52 -0500492 FIXED_FRAME stub_iopl, sys_iopl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494ENTRY(stub_execve)
495 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100496 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800497 DEFAULT_FRAME 0
498 SAVE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 FIXUP_TOP_OF_STACK %r11
500 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800502 RESTORE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 jmp int_ret_from_sys_call
504 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200505END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100506
David Drysdale27d6ec72014-12-12 16:57:33 -0800507ENTRY(stub_execveat)
508 CFI_STARTPROC
509 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800510 DEFAULT_FRAME 0
511 SAVE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800512 FIXUP_TOP_OF_STACK %r11
513 call sys_execveat
514 RESTORE_TOP_OF_STACK %r11
515 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800516 RESTORE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800517 jmp int_ret_from_sys_call
518 CFI_ENDPROC
519END(stub_execveat)
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/*
522 * sigreturn is special because it needs to restore all registers on return.
523 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100524 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525ENTRY(stub_rt_sigreturn)
526 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200527 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800528 DEFAULT_FRAME 0
529 SAVE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 FIXUP_TOP_OF_STACK %r11
531 call sys_rt_sigreturn
532 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800533 RESTORE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 jmp int_ret_from_sys_call
535 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200536END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800538#ifdef CONFIG_X86_X32_ABI
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800539ENTRY(stub_x32_rt_sigreturn)
540 CFI_STARTPROC
541 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800542 DEFAULT_FRAME 0
543 SAVE_EXTRA_REGS
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800544 FIXUP_TOP_OF_STACK %r11
545 call sys32_x32_rt_sigreturn
546 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800547 RESTORE_EXTRA_REGS
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800548 jmp int_ret_from_sys_call
549 CFI_ENDPROC
550END(stub_x32_rt_sigreturn)
551
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800552ENTRY(stub_x32_execve)
553 CFI_STARTPROC
554 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800555 DEFAULT_FRAME 0
556 SAVE_EXTRA_REGS
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800557 FIXUP_TOP_OF_STACK %r11
Al Viro6783eaa2012-08-02 23:05:11 +0400558 call compat_sys_execve
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800559 RESTORE_TOP_OF_STACK %r11
560 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800561 RESTORE_EXTRA_REGS
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800562 jmp int_ret_from_sys_call
563 CFI_ENDPROC
564END(stub_x32_execve)
565
David Drysdale27d6ec72014-12-12 16:57:33 -0800566ENTRY(stub_x32_execveat)
567 CFI_STARTPROC
568 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800569 DEFAULT_FRAME 0
570 SAVE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800571 FIXUP_TOP_OF_STACK %r11
572 call compat_sys_execveat
573 RESTORE_TOP_OF_STACK %r11
574 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800575 RESTORE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800576 jmp int_ret_from_sys_call
577 CFI_ENDPROC
578END(stub_x32_execveat)
579
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800580#endif
581
Jan Beulich7effaa82005-09-12 18:49:24 +0200582/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800583 * Build the entry stubs and pointer table with some assembler magic.
584 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
585 * single cache line on all modern x86 implementations.
586 */
587 .section .init.rodata,"a"
588ENTRY(interrupt)
Jiri Olsaea714542011-03-07 19:10:39 +0100589 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800590 .p2align 5
591 .p2align CONFIG_X86_L1_CACHE_SHIFT
592ENTRY(irq_entries_start)
593 INTR_FRAME
594vector=FIRST_EXTERNAL_VECTOR
Jan Beulich2414e022014-11-03 08:39:43 +0000595.rept (FIRST_SYSTEM_VECTOR-FIRST_EXTERNAL_VECTOR+6)/7
H. Peter Anvin939b7872008-11-11 13:51:52 -0800596 .balign 32
597 .rept 7
Jan Beulich2414e022014-11-03 08:39:43 +0000598 .if vector < FIRST_SYSTEM_VECTOR
H. Peter Anvin86655962008-11-12 10:27:35 -0800599 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800600 CFI_ADJUST_CFA_OFFSET -8
601 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01006021: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800603 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800604 jmp 2f
605 .endif
606 .previous
607 .quad 1b
Jiri Olsaea714542011-03-07 19:10:39 +0100608 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800609vector=vector+1
610 .endif
611 .endr
6122: jmp common_interrupt
613.endr
614 CFI_ENDPROC
615END(irq_entries_start)
616
617.previous
618END(interrupt)
619.previous
620
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100621/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 * Interrupt entry/exit.
623 *
624 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100625 *
626 * Entry runs with interrupts off.
627 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100629/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 .macro interrupt func
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100631 cld
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800632 ALLOC_PT_GPREGS_ON_STACK -RBP
633 SAVE_C_REGS -RBP
634 /* this goes to 0(%rsp) for unwinder, not for saving the value: */
635 SAVE_EXTRA_REGS_RBP -RBP
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100636
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800637 leaq -RBP(%rsp),%rdi /* arg1 for \func (pointer to pt_regs) */
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100638
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800639 testl $3, CS-RBP(%rsp)
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100640 je 1f
641 SWAPGS
Denys Vlasenko76f5df42015-02-26 14:40:27 -08006421:
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100643 /*
644 * irq_count is used to check if a CPU is already on an interrupt stack
645 * or not. While this is essentially redundant with preempt_count it is
646 * a little cheaper to use a separate counter in the PDA (short of
647 * moving irq_enter into assembly, which would be too much work)
648 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800649 movq %rsp, %rsi
650 incl PER_CPU_VAR(irq_count)
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100651 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
652 CFI_DEF_CFA_REGISTER rsi
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100653 pushq %rsi
654 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
655 0x77 /* DW_OP_breg7 */, 0, \
656 0x06 /* DW_OP_deref */, \
657 0x08 /* DW_OP_const1u */, SS+8-RBP, \
658 0x22 /* DW_OP_plus */
659 /* We entered an interrupt context - irqs are off: */
660 TRACE_IRQS_OFF
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 call \func
663 .endm
664
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100665 /*
666 * The interrupt stubs push (~vector+0x80) onto the stack and
667 * then jump to common_interrupt.
668 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800669 .p2align CONFIG_X86_L1_CACHE_SHIFT
670common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200671 XCPT_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000672 ASM_CLAC
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100673 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 interrupt do_IRQ
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900675 /* 0(%rsp): old_rsp-ARGOFFSET */
Jan Beulich7effaa82005-09-12 18:49:24 +0200676ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100677 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700678 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900679 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100680
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200681 /* Restore saved previous stack */
682 popq %rsi
Mark Wielaard928282e2012-02-24 11:32:05 +0100683 CFI_DEF_CFA rsi,SS+8-RBP /* reg/off reset after def_cfa_expr */
Jan Beulicheab9e612011-09-28 16:57:52 +0100684 leaq ARGOFFSET-RBP(%rsi), %rsp
Jan Beulich7effaa82005-09-12 18:49:24 +0200685 CFI_DEF_CFA_REGISTER rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100686 CFI_ADJUST_CFA_OFFSET RBP-ARGOFFSET
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100687
Jan Beulich7effaa82005-09-12 18:49:24 +0200688exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 GET_THREAD_INFO(%rcx)
690 testl $3,CS-ARGOFFSET(%rsp)
691 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /* Interrupt came from user space */
694 /*
695 * Has a correct top of stack, but a partial stack frame
696 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100697 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698retint_with_reschedule:
699 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200700retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200701 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300702 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200704 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200706
707retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700708 /*
709 * The iretq could re-enable interrupts:
710 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100711 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700712 TRACE_IRQS_IRETQ
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700713
714 /*
715 * Try to use SYSRET instead of IRET if we're returning to
716 * a completely clean 64-bit userspace context.
717 */
Denys Vlasenko6e1327b2015-02-26 14:40:26 -0800718 movq (RCX-ARGOFFSET)(%rsp), %rcx
719 cmpq %rcx,(RIP-ARGOFFSET)(%rsp) /* RCX == RIP */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700720 jne opportunistic_sysret_failed
721
722 /*
723 * On Intel CPUs, sysret with non-canonical RCX/RIP will #GP
724 * in kernel space. This essentially lets the user take over
725 * the kernel, since userspace controls RSP. It's not worth
726 * testing for canonicalness exactly -- this check detects any
727 * of the 17 high bits set, which is true for non-canonical
728 * or kernel addresses. (This will pessimize vsyscall=native.
729 * Big deal.)
730 *
731 * If virtual addresses ever become wider, this will need
732 * to be updated to remain correct on both old and new CPUs.
733 */
734 .ifne __VIRTUAL_MASK_SHIFT - 47
735 .error "virtual address width changed -- sysret checks need update"
736 .endif
737 shr $__VIRTUAL_MASK_SHIFT, %rcx
738 jnz opportunistic_sysret_failed
739
Denys Vlasenko6e1327b2015-02-26 14:40:26 -0800740 cmpq $__USER_CS,(CS-ARGOFFSET)(%rsp) /* CS must match SYSRET */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700741 jne opportunistic_sysret_failed
742
743 movq (R11-ARGOFFSET)(%rsp), %r11
744 cmpq %r11,(EFLAGS-ARGOFFSET)(%rsp) /* R11 == RFLAGS */
745 jne opportunistic_sysret_failed
746
747 testq $X86_EFLAGS_RF,%r11 /* sysret can't restore RF */
748 jnz opportunistic_sysret_failed
749
750 /* nothing to check for RSP */
751
752 cmpq $__USER_DS,(SS-ARGOFFSET)(%rsp) /* SS must match SYSRET */
753 jne opportunistic_sysret_failed
754
755 /*
756 * We win! This label is here just for ease of understanding
757 * perf profiles. Nothing jumps here.
758 */
759irq_return_via_sysret:
760 CFI_REMEMBER_STATE
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800761 RESTORE_C_REGS
762 REMOVE_PT_GPREGS_FROM_STACK 8
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700763 movq (RSP-RIP)(%rsp),%rsp
764 USERGS_SYSRET64
765 CFI_RESTORE_STATE
766
767opportunistic_sysret_failed:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100768 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700769 jmp restore_args
770
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200771retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100772 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700773 /*
774 * The iretq could re-enable interrupts:
775 */
776 TRACE_IRQS_IRETQ
777restore_args:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800778 RESTORE_C_REGS
779 REMOVE_PT_GPREGS_FROM_STACK 8
Ingo Molnar3701d8632008-02-09 23:24:08 +0100780
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200781irq_return:
Andy Lutomirski7209a752014-07-23 08:34:11 -0700782 INTERRUPT_RETURN
783
784ENTRY(native_iret)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700785 /*
786 * Are we returning to a stack segment from the LDT? Note: in
787 * 64-bit mode SS:RSP on the exception stack is always valid.
788 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700789#ifdef CONFIG_X86_ESPFIX64
H. Peter Anvin3891a042014-04-29 16:46:09 -0700790 testb $4,(SS-RIP)(%rsp)
Andy Lutomirski7209a752014-07-23 08:34:11 -0700791 jnz native_irq_return_ldt
H. Peter Anvin34273f42014-05-04 10:36:22 -0700792#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700793
Andy Lutomirskiaf726f22014-11-22 18:00:31 -0800794.global native_irq_return_iret
Andy Lutomirski7209a752014-07-23 08:34:11 -0700795native_irq_return_iret:
Andy Lutomirskib645af22014-11-22 18:00:33 -0800796 /*
797 * This may fault. Non-paranoid faults on return to userspace are
798 * handled by fixup_bad_iret. These include #SS, #GP, and #NP.
799 * Double-faults due to espfix64 are handled in do_double_fault.
800 * Other faults here are fatal.
801 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 iretq
Ingo Molnar3701d8632008-02-09 23:24:08 +0100803
H. Peter Anvin34273f42014-05-04 10:36:22 -0700804#ifdef CONFIG_X86_ESPFIX64
Andy Lutomirski7209a752014-07-23 08:34:11 -0700805native_irq_return_ldt:
H. Peter Anvin3891a042014-04-29 16:46:09 -0700806 pushq_cfi %rax
807 pushq_cfi %rdi
808 SWAPGS
809 movq PER_CPU_VAR(espfix_waddr),%rdi
810 movq %rax,(0*8)(%rdi) /* RAX */
811 movq (2*8)(%rsp),%rax /* RIP */
812 movq %rax,(1*8)(%rdi)
813 movq (3*8)(%rsp),%rax /* CS */
814 movq %rax,(2*8)(%rdi)
815 movq (4*8)(%rsp),%rax /* RFLAGS */
816 movq %rax,(3*8)(%rdi)
817 movq (6*8)(%rsp),%rax /* SS */
818 movq %rax,(5*8)(%rdi)
819 movq (5*8)(%rsp),%rax /* RSP */
820 movq %rax,(4*8)(%rdi)
821 andl $0xffff0000,%eax
822 popq_cfi %rdi
823 orq PER_CPU_VAR(espfix_stack),%rax
824 SWAPGS
825 movq %rax,%rsp
826 popq_cfi %rax
Andy Lutomirski7209a752014-07-23 08:34:11 -0700827 jmp native_irq_return_iret
H. Peter Anvin34273f42014-05-04 10:36:22 -0700828#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700829
Jan Beulich7effaa82005-09-12 18:49:24 +0200830 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200832 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 bt $TIF_NEED_RESCHED,%edx
834 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700835 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100836 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100837 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200838 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100839 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100841 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700842 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100846 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700847 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700848 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100849 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800850 SAVE_EXTRA_REGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100851 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700852 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 movq %rsp,%rdi # &pt_regs
854 call do_notify_resume
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800855 RESTORE_EXTRA_REGS
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100856 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700857 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -0700858 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -0700859 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861#ifdef CONFIG_PREEMPT
862 /* Returning to kernel space. Check if we need preemption */
863 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +0200864ENTRY(retint_kernel)
Peter Zijlstrac2daa3b2013-08-14 14:51:00 +0200865 cmpl $0,PER_CPU_VAR(__preempt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 jnz retint_restore_args
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
868 jnc retint_restore_args
869 call preempt_schedule_irq
870 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100871#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200873END(common_interrupt)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700874
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400875/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100877 */
Seiji Aguchicf910e82013-06-20 11:46:53 -0400878.macro apicinterrupt3 num sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100879ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +0200880 INTR_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000881 ASM_CLAC
Jan Beulichdf5d1872010-09-02 14:07:16 +0100882 pushq_cfi $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +0000883.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100884 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 jmp ret_from_intr
886 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100887END(\sym)
888.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100889
Seiji Aguchicf910e82013-06-20 11:46:53 -0400890#ifdef CONFIG_TRACING
891#define trace(sym) trace_##sym
892#define smp_trace(sym) smp_trace_##sym
893
894.macro trace_apicinterrupt num sym
895apicinterrupt3 \num trace(\sym) smp_trace(\sym)
896.endm
897#else
898.macro trace_apicinterrupt num sym do_sym
899.endm
900#endif
901
902.macro apicinterrupt num sym do_sym
903apicinterrupt3 \num \sym \do_sym
904trace_apicinterrupt \num \sym
905.endm
906
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100907#ifdef CONFIG_SMP
Seiji Aguchicf910e82013-06-20 11:46:53 -0400908apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100909 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Seiji Aguchicf910e82013-06-20 11:46:53 -0400910apicinterrupt3 REBOOT_VECTOR \
Andi Kleen4ef702c2009-05-27 21:56:52 +0200911 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912#endif
913
Nick Piggin03b48632009-01-20 04:36:04 +0100914#ifdef CONFIG_X86_UV
Seiji Aguchicf910e82013-06-20 11:46:53 -0400915apicinterrupt3 UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100916 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100917#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100918apicinterrupt LOCAL_TIMER_VECTOR \
919 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500920apicinterrupt X86_PLATFORM_IPI_VECTOR \
921 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Yang Zhangd78f2662013-04-11 19:25:11 +0800923#ifdef CONFIG_HAVE_KVM
Seiji Aguchicf910e82013-06-20 11:46:53 -0400924apicinterrupt3 POSTED_INTR_VECTOR \
Yang Zhangd78f2662013-04-11 19:25:11 +0800925 kvm_posted_intr_ipi smp_kvm_posted_intr_ipi
926#endif
927
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400928#ifdef CONFIG_X86_MCE_THRESHOLD
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100929apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +0200930 threshold_interrupt smp_threshold_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400931#endif
932
933#ifdef CONFIG_X86_THERMAL_VECTOR
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100934apicinterrupt THERMAL_APIC_VECTOR \
935 thermal_interrupt smp_thermal_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400936#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100938#ifdef CONFIG_SMP
939apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
940 call_function_single_interrupt smp_call_function_single_interrupt
941apicinterrupt CALL_FUNCTION_VECTOR \
942 call_function_interrupt smp_call_function_interrupt
943apicinterrupt RESCHEDULE_VECTOR \
944 reschedule_interrupt smp_reschedule_interrupt
945#endif
946
947apicinterrupt ERROR_APIC_VECTOR \
948 error_interrupt smp_error_interrupt
949apicinterrupt SPURIOUS_APIC_VECTOR \
950 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100951
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800952#ifdef CONFIG_IRQ_WORK
953apicinterrupt IRQ_WORK_VECTOR \
954 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +0100955#endif
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957/*
958 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100959 */
Andy Lutomirski577ed452014-05-21 15:07:09 -0700960#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
961
962.macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100963ENTRY(\sym)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700964 /* Sanity check */
965 .if \shift_ist != -1 && \paranoid == 0
966 .error "using shift_ist requires paranoid=1"
967 .endif
968
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700969 .if \has_error_code
970 XCPT_FRAME
971 .else
Jan Beulich7effaa82005-09-12 18:49:24 +0200972 INTR_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700973 .endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Jan Beulichee4eb872012-11-02 11:18:39 +0000975 ASM_CLAC
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +0100976 PARAVIRT_ADJUST_EXCEPTION_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700977
978 .ifeq \has_error_code
979 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
980 .endif
981
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800982 ALLOC_PT_GPREGS_ON_STACK
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700983
984 .if \paranoid
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800985 .if \paranoid == 1
986 CFI_REMEMBER_STATE
987 testl $3, CS(%rsp) /* If coming from userspace, switch */
988 jnz 1f /* stacks. */
989 .endif
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +0100990 call save_paranoid
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700991 .else
992 call error_entry
993 .endif
994
Andy Lutomirski1bd24ef2014-05-21 15:07:07 -0700995 DEFAULT_FRAME 0
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700996
997 .if \paranoid
Andy Lutomirski577ed452014-05-21 15:07:09 -0700998 .if \shift_ist != -1
999 TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */
1000 .else
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001001 TRACE_IRQS_OFF
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001002 .endif
Andy Lutomirski577ed452014-05-21 15:07:09 -07001003 .endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001004
1005 movq %rsp,%rdi /* pt_regs pointer */
1006
1007 .if \has_error_code
1008 movq ORIG_RAX(%rsp),%rsi /* get error code */
1009 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1010 .else
1011 xorl %esi,%esi /* no error code */
1012 .endif
1013
Andy Lutomirski577ed452014-05-21 15:07:09 -07001014 .if \shift_ist != -1
1015 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\shift_ist)
1016 .endif
1017
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001018 call \do_sym
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001019
Andy Lutomirski577ed452014-05-21 15:07:09 -07001020 .if \shift_ist != -1
1021 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\shift_ist)
1022 .endif
1023
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001024 .if \paranoid
1025 jmp paranoid_exit /* %ebx: no swapgs flag */
1026 .else
1027 jmp error_exit /* %ebx: no swapgs flag */
1028 .endif
1029
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001030 .if \paranoid == 1
1031 CFI_RESTORE_STATE
1032 /*
1033 * Paranoid entry from userspace. Switch stacks and treat it
1034 * as a normal entry. This means that paranoid handlers
1035 * run in real process context if user_mode(regs).
1036 */
10371:
1038 call error_entry
1039
1040 DEFAULT_FRAME 0
1041
1042 movq %rsp,%rdi /* pt_regs pointer */
1043 call sync_regs
1044 movq %rax,%rsp /* switch stack */
1045
1046 movq %rsp,%rdi /* pt_regs pointer */
1047
1048 .if \has_error_code
1049 movq ORIG_RAX(%rsp),%rsi /* get error code */
1050 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1051 .else
1052 xorl %esi,%esi /* no error code */
1053 .endif
1054
1055 call \do_sym
1056
1057 jmp error_exit /* %ebx: no swapgs flag */
1058 .endif
1059
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001060 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001061END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001062.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001063
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001064#ifdef CONFIG_TRACING
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001065.macro trace_idtentry sym do_sym has_error_code:req
1066idtentry trace(\sym) trace(\do_sym) has_error_code=\has_error_code
1067idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001068.endm
1069#else
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001070.macro trace_idtentry sym do_sym has_error_code:req
1071idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001072.endm
1073#endif
1074
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001075idtentry divide_error do_divide_error has_error_code=0
1076idtentry overflow do_overflow has_error_code=0
1077idtentry bounds do_bounds has_error_code=0
1078idtentry invalid_op do_invalid_op has_error_code=0
1079idtentry device_not_available do_device_not_available has_error_code=0
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001080idtentry double_fault do_double_fault has_error_code=1 paranoid=2
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001081idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0
1082idtentry invalid_TSS do_invalid_TSS has_error_code=1
1083idtentry segment_not_present do_segment_not_present has_error_code=1
1084idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0
1085idtentry coprocessor_error do_coprocessor_error has_error_code=0
1086idtentry alignment_check do_alignment_check has_error_code=1
1087idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001088
Ingo Molnar2601e642006-07-03 00:24:45 -07001089
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001090 /* Reload gs selector with exception handling */
1091 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001092ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001093 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001094 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001095 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001096 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001097gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001098 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070010992: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001100 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001101 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001102 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001103 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001104END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001105
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001106 _ASM_EXTABLE(gs_change,bad_gs)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001107 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001109bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001110 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001112 movl %eax,%gs
1113 jmp 2b
1114 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001115
Andi Kleen26995002006-08-02 22:37:28 +02001116/* Call softirq on interrupt stack. Interrupts are off. */
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001117ENTRY(do_softirq_own_stack)
Jan Beulich7effaa82005-09-12 18:49:24 +02001118 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001119 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001120 CFI_REL_OFFSET rbp,0
1121 mov %rsp,%rbp
1122 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001123 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001124 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001125 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001126 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001127 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001128 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001129 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001130 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001131 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001132 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001133 CFI_ENDPROC
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001134END(do_softirq_own_stack)
Andi Kleen75154f42007-06-23 02:29:25 +02001135
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001136#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001137idtentry xen_hypervisor_callback xen_do_hypervisor_callback has_error_code=0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001138
1139/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001140 * A note on the "critical region" in our callback handler.
1141 * We want to avoid stacking callback handlers due to events occurring
1142 * during handling of the last event. To do this, we keep events disabled
1143 * until we've done all processing. HOWEVER, we must enable events before
1144 * popping the stack frame (can't be done atomically) and so it would still
1145 * be possible to get enough handler activations to overflow the stack.
1146 * Although unlikely, bugs of that kind are hard to track down, so we'd
1147 * like to avoid the possibility.
1148 * So, on entry to the handler we detect whether we interrupted an
1149 * existing activation in its critical region -- if so, we pop the current
1150 * activation and restart the handler using the previous one.
1151 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001152ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1153 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001154/*
1155 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1156 * see the correct pointer to the pt_regs
1157 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001158 movq %rdi, %rsp # we don't return, adjust the stack frame
1159 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001160 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900116111: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001162 movq %rsp,%rbp
1163 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001164 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001165 pushq %rbp # backlink for old unwinder
1166 call xen_evtchn_do_upcall
1167 popq %rsp
1168 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001169 decl PER_CPU_VAR(irq_count)
David Vrabelfdfd8112015-02-19 15:23:17 +00001170#ifndef CONFIG_PREEMPT
1171 call xen_maybe_preempt_hcall
1172#endif
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001173 jmp error_exit
1174 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001175END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001176
1177/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001178 * Hypervisor uses this for application faults while it executes.
1179 * We get here for two reasons:
1180 * 1. Fault while reloading DS, ES, FS or GS
1181 * 2. Fault while executing IRET
1182 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1183 * registers that could be reloaded and zeroed the others.
1184 * Category 2 we fix up by killing the current process. We cannot use the
1185 * normal Linux return path in this case because if we use the IRET hypercall
1186 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1187 * We distinguish between categories by comparing each saved segment register
1188 * with its current contents: any discrepancy means we in category 1.
1189 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001190ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001191 INTR_FRAME 1 (6*8)
1192 /*CFI_REL_OFFSET gs,GS*/
1193 /*CFI_REL_OFFSET fs,FS*/
1194 /*CFI_REL_OFFSET es,ES*/
1195 /*CFI_REL_OFFSET ds,DS*/
1196 CFI_REL_OFFSET r11,8
1197 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001198 movw %ds,%cx
1199 cmpw %cx,0x10(%rsp)
1200 CFI_REMEMBER_STATE
1201 jne 1f
1202 movw %es,%cx
1203 cmpw %cx,0x18(%rsp)
1204 jne 1f
1205 movw %fs,%cx
1206 cmpw %cx,0x20(%rsp)
1207 jne 1f
1208 movw %gs,%cx
1209 cmpw %cx,0x28(%rsp)
1210 jne 1f
1211 /* All segments match their saved values => Category 2 (Bad IRET). */
1212 movq (%rsp),%rcx
1213 CFI_RESTORE rcx
1214 movq 8(%rsp),%r11
1215 CFI_RESTORE r11
1216 addq $0x30,%rsp
1217 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001218 pushq_cfi $0 /* RIP */
1219 pushq_cfi %r11
1220 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001221 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001222 CFI_RESTORE_STATE
12231: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1224 movq (%rsp),%rcx
1225 CFI_RESTORE rcx
1226 movq 8(%rsp),%r11
1227 CFI_RESTORE r11
1228 addq $0x30,%rsp
1229 CFI_ADJUST_CFA_OFFSET -0x30
David Vrabela349e23d12012-10-19 17:29:07 +01001230 pushq_cfi $-1 /* orig_ax = -1 => not a system call */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001231 ALLOC_PT_GPREGS_ON_STACK
1232 SAVE_C_REGS
1233 SAVE_EXTRA_REGS
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001234 jmp error_exit
1235 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001236END(xen_failsafe_callback)
1237
Seiji Aguchicf910e82013-06-20 11:46:53 -04001238apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
Sheng Yang38e20b02010-05-14 12:40:51 +01001239 xen_hvm_callback_vector xen_evtchn_do_upcall
1240
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001241#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001242
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001243#if IS_ENABLED(CONFIG_HYPERV)
Seiji Aguchicf910e82013-06-20 11:46:53 -04001244apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001245 hyperv_callback_vector hyperv_vector_handler
1246#endif /* CONFIG_HYPERV */
1247
Andy Lutomirski577ed452014-05-21 15:07:09 -07001248idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1249idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
Andy Lutomirski6f442be2014-11-22 18:00:32 -08001250idtentry stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001251#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001252idtentry xen_debug do_debug has_error_code=0
1253idtentry xen_int3 do_int3 has_error_code=0
1254idtentry xen_stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001255#endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001256idtentry general_protection do_general_protection has_error_code=1
1257trace_idtentry page_fault do_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001258#ifdef CONFIG_KVM_GUEST
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001259idtentry async_page_fault do_async_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001260#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001261#ifdef CONFIG_X86_MCE
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001262idtentry machine_check has_error_code=0 paranoid=1 do_sym=*machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001263#endif
1264
1265 /*
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001266 * "Paranoid" exit path from exception stack. This is invoked
1267 * only on return from non-NMI IST interrupts that came
1268 * from kernel space.
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001269 *
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001270 * We may be returning to very strange contexts (e.g. very early
1271 * in syscall entry), so checking for preemption here would
1272 * be complicated. Fortunately, we there's no good reason
1273 * to try to handle preemption here.
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001274 */
1275
1276 /* ebx: no swapgs flag */
1277ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001278 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001279 DISABLE_INTERRUPTS(CLBR_NONE)
Steven Rostedt5963e312012-05-30 11:54:53 -04001280 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001281 testl %ebx,%ebx /* swapgs needed? */
1282 jnz paranoid_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001283 TRACE_IRQS_IRETQ 0
1284 SWAPGS_UNSAFE_STACK
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001285 RESTORE_EXTRA_REGS
1286 RESTORE_C_REGS
1287 REMOVE_PT_GPREGS_FROM_STACK 8
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001288 INTERRUPT_RETURN
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001289paranoid_restore:
Steven Rostedt5963e312012-05-30 11:54:53 -04001290 TRACE_IRQS_IRETQ_DEBUG 0
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001291 RESTORE_EXTRA_REGS
1292 RESTORE_C_REGS
1293 REMOVE_PT_GPREGS_FROM_STACK 8
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001294 INTERRUPT_RETURN
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001295 CFI_ENDPROC
1296END(paranoid_exit)
1297
1298/*
1299 * Exception entry point. This expects an error code/orig_rax on the stack.
1300 * returns in "no swapgs flag" in %ebx.
1301 */
1302ENTRY(error_entry)
1303 XCPT_FRAME
1304 CFI_ADJUST_CFA_OFFSET 15*8
1305 /* oldrax contains error code */
1306 cld
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001307 SAVE_C_REGS 8
1308 SAVE_EXTRA_REGS 8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001309 xorl %ebx,%ebx
1310 testl $3,CS+8(%rsp)
1311 je error_kernelspace
1312error_swapgs:
1313 SWAPGS
1314error_sti:
1315 TRACE_IRQS_OFF
1316 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001317
1318/*
1319 * There are two places in the kernel that can potentially fault with
Andy Lutomirskib645af22014-11-22 18:00:33 -08001320 * usergs. Handle them here. B stepping K8s sometimes report a
1321 * truncated RIP for IRET exceptions returning to compat mode. Check
1322 * for these here too.
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001323 */
1324error_kernelspace:
Jan Beulich3bab13b2014-06-25 14:11:22 +01001325 CFI_REL_OFFSET rcx, RCX+8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001326 incl %ebx
Andy Lutomirski7209a752014-07-23 08:34:11 -07001327 leaq native_irq_return_iret(%rip),%rcx
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001328 cmpq %rcx,RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001329 je error_bad_iret
Brian Gerstae24ffe2009-10-12 10:18:23 -04001330 movl %ecx,%eax /* zero extend */
1331 cmpq %rax,RIP+8(%rsp)
1332 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001333 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001334 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001335 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001336
1337bstep_iret:
1338 /* Fix truncated RIP */
1339 movq %rcx,RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001340 /* fall through */
1341
1342error_bad_iret:
1343 SWAPGS
1344 mov %rsp,%rdi
1345 call fixup_bad_iret
1346 mov %rax,%rsp
1347 decl %ebx /* Return to usergs */
1348 jmp error_sti
Jan Beuliche6b04b62010-09-02 13:52:45 +01001349 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001350END(error_entry)
1351
1352
1353/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1354ENTRY(error_exit)
1355 DEFAULT_FRAME
1356 movl %ebx,%eax
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001357 RESTORE_EXTRA_REGS
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001358 DISABLE_INTERRUPTS(CLBR_NONE)
1359 TRACE_IRQS_OFF
1360 GET_THREAD_INFO(%rcx)
1361 testl %eax,%eax
1362 jne retint_kernel
1363 LOCKDEP_SYS_EXIT_IRQ
1364 movl TI_flags(%rcx),%edx
1365 movl $_TIF_WORK_MASK,%edi
1366 andl %edi,%edx
1367 jnz retint_careful
1368 jmp retint_swapgs
1369 CFI_ENDPROC
1370END(error_exit)
1371
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001372/*
1373 * Test if a given stack is an NMI stack or not.
1374 */
1375 .macro test_in_nmi reg stack nmi_ret normal_ret
1376 cmpq %\reg, \stack
1377 ja \normal_ret
1378 subq $EXCEPTION_STKSZ, %\reg
1379 cmpq %\reg, \stack
1380 jb \normal_ret
1381 jmp \nmi_ret
1382 .endm
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001383
1384 /* runs on exception stack */
1385ENTRY(nmi)
1386 INTR_FRAME
1387 PARAVIRT_ADJUST_EXCEPTION_FRAME
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001388 /*
1389 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1390 * the iretq it performs will take us out of NMI context.
1391 * This means that we can have nested NMIs where the next
1392 * NMI is using the top of the stack of the previous NMI. We
1393 * can't let it execute because the nested NMI will corrupt the
1394 * stack of the previous NMI. NMI handlers are not re-entrant
1395 * anyway.
1396 *
1397 * To handle this case we do the following:
1398 * Check the a special location on the stack that contains
1399 * a variable that is set when NMIs are executing.
1400 * The interrupted task's stack is also checked to see if it
1401 * is an NMI stack.
1402 * If the variable is not set and the stack is not the NMI
1403 * stack then:
1404 * o Set the special variable on the stack
1405 * o Copy the interrupt frame into a "saved" location on the stack
1406 * o Copy the interrupt frame into a "copy" location on the stack
1407 * o Continue processing the NMI
1408 * If the variable is set or the previous stack is the NMI stack:
1409 * o Modify the "copy" location to jump to the repeate_nmi
1410 * o return back to the first NMI
1411 *
1412 * Now on exit of the first NMI, we first clear the stack variable
1413 * The NMI stack will tell any nested NMIs at that point that it is
1414 * nested. Then we pop the stack normally with iret, and if there was
1415 * a nested NMI that updated the copy interrupt stack frame, a
1416 * jump will be made to the repeat_nmi code that will handle the second
1417 * NMI.
1418 */
1419
1420 /* Use %rdx as out temp variable throughout */
1421 pushq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001422 CFI_REL_OFFSET rdx, 0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001423
1424 /*
Steven Rostedt45d5a162012-02-19 16:43:37 -05001425 * If %cs was not the kernel segment, then the NMI triggered in user
1426 * space, which means it is definitely not nested.
1427 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001428 cmpl $__KERNEL_CS, 16(%rsp)
Steven Rostedt45d5a162012-02-19 16:43:37 -05001429 jne first_nmi
1430
1431 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001432 * Check the special variable on the stack to see if NMIs are
1433 * executing.
1434 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001435 cmpl $1, -8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001436 je nested_nmi
1437
1438 /*
1439 * Now test if the previous stack was an NMI stack.
1440 * We need the double check. We check the NMI stack to satisfy the
1441 * race when the first NMI clears the variable before returning.
1442 * We check the variable because the first NMI could be in a
1443 * breakpoint routine using a breakpoint stack.
1444 */
1445 lea 6*8(%rsp), %rdx
1446 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
Jan Beulich62610912012-02-24 14:54:37 +00001447 CFI_REMEMBER_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001448
1449nested_nmi:
1450 /*
1451 * Do nothing if we interrupted the fixup in repeat_nmi.
1452 * It's about to repeat the NMI handler, so we are fine
1453 * with ignoring this one.
1454 */
1455 movq $repeat_nmi, %rdx
1456 cmpq 8(%rsp), %rdx
1457 ja 1f
1458 movq $end_repeat_nmi, %rdx
1459 cmpq 8(%rsp), %rdx
1460 ja nested_nmi_out
1461
14621:
1463 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
Salman Qazi28696f42012-10-01 17:29:25 -07001464 leaq -1*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001465 movq %rdx, %rsp
Salman Qazi28696f42012-10-01 17:29:25 -07001466 CFI_ADJUST_CFA_OFFSET 1*8
1467 leaq -10*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001468 pushq_cfi $__KERNEL_DS
1469 pushq_cfi %rdx
1470 pushfq_cfi
1471 pushq_cfi $__KERNEL_CS
1472 pushq_cfi $repeat_nmi
1473
1474 /* Put stack back */
Salman Qazi28696f42012-10-01 17:29:25 -07001475 addq $(6*8), %rsp
1476 CFI_ADJUST_CFA_OFFSET -6*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001477
1478nested_nmi_out:
1479 popq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001480 CFI_RESTORE rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001481
1482 /* No need to check faults here */
1483 INTERRUPT_RETURN
1484
Jan Beulich62610912012-02-24 14:54:37 +00001485 CFI_RESTORE_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001486first_nmi:
1487 /*
1488 * Because nested NMIs will use the pushed location that we
1489 * stored in rdx, we must keep that space available.
1490 * Here's what our stack frame will look like:
1491 * +-------------------------+
1492 * | original SS |
1493 * | original Return RSP |
1494 * | original RFLAGS |
1495 * | original CS |
1496 * | original RIP |
1497 * +-------------------------+
1498 * | temp storage for rdx |
1499 * +-------------------------+
1500 * | NMI executing variable |
1501 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001502 * | copied SS |
1503 * | copied Return RSP |
1504 * | copied RFLAGS |
1505 * | copied CS |
1506 * | copied RIP |
1507 * +-------------------------+
Salman Qazi28696f42012-10-01 17:29:25 -07001508 * | Saved SS |
1509 * | Saved Return RSP |
1510 * | Saved RFLAGS |
1511 * | Saved CS |
1512 * | Saved RIP |
1513 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001514 * | pt_regs |
1515 * +-------------------------+
1516 *
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001517 * The saved stack frame is used to fix up the copied stack frame
1518 * that a nested NMI may change to make the interrupted NMI iret jump
1519 * to the repeat_nmi. The original stack frame and the temp storage
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001520 * is also used by nested NMIs and can not be trusted on exit.
1521 */
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001522 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
Jan Beulich62610912012-02-24 14:54:37 +00001523 movq (%rsp), %rdx
1524 CFI_RESTORE rdx
1525
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001526 /* Set the NMI executing variable on the stack. */
1527 pushq_cfi $1
1528
Salman Qazi28696f42012-10-01 17:29:25 -07001529 /*
1530 * Leave room for the "copied" frame
1531 */
1532 subq $(5*8), %rsp
Jan Beulich444723d2013-01-24 09:27:31 +00001533 CFI_ADJUST_CFA_OFFSET 5*8
Salman Qazi28696f42012-10-01 17:29:25 -07001534
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001535 /* Copy the stack frame to the Saved frame */
1536 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001537 pushq_cfi 11*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001538 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001539 CFI_DEF_CFA_OFFSET SS+8-RIP
1540
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001541 /* Everything up to here is safe from nested NMIs */
1542
Jan Beulich62610912012-02-24 14:54:37 +00001543 /*
1544 * If there was a nested NMI, the first NMI's iret will return
1545 * here. But NMIs are still enabled and we can take another
1546 * nested NMI. The nested NMI checks the interrupted RIP to see
1547 * if it is between repeat_nmi and end_repeat_nmi, and if so
1548 * it will just return, as we are about to repeat an NMI anyway.
1549 * This makes it safe to copy to the stack frame that a nested
1550 * NMI will update.
1551 */
1552repeat_nmi:
1553 /*
1554 * Update the stack variable to say we are still in NMI (the update
1555 * is benign for the non-repeat case, where 1 was pushed just above
1556 * to this very stack slot).
1557 */
Salman Qazi28696f42012-10-01 17:29:25 -07001558 movq $1, 10*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001559
1560 /* Make another copy, this one may be modified by nested NMIs */
Salman Qazi28696f42012-10-01 17:29:25 -07001561 addq $(10*8), %rsp
1562 CFI_ADJUST_CFA_OFFSET -10*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001563 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001564 pushq_cfi -6*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001565 .endr
Salman Qazi28696f42012-10-01 17:29:25 -07001566 subq $(5*8), %rsp
Jan Beulich62610912012-02-24 14:54:37 +00001567 CFI_DEF_CFA_OFFSET SS+8-RIP
1568end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001569
1570 /*
1571 * Everything below this point can be preempted by a nested
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001572 * NMI if the first NMI took an exception and reset our iret stack
1573 * so that we repeat another NMI.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001574 */
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001575 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001576 ALLOC_PT_GPREGS_ON_STACK
1577
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001578 /*
1579 * Use save_paranoid to handle SWAPGS, but no need to use paranoid_exit
1580 * as we should not be calling schedule in NMI context.
1581 * Even with normal interrupts enabled. An NMI should not be
1582 * setting NEED_RESCHED or anything that normal interrupts and
1583 * exceptions might do.
1584 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001585 call save_paranoid
1586 DEFAULT_FRAME 0
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001587
1588 /*
1589 * Save off the CR2 register. If we take a page fault in the NMI then
1590 * it could corrupt the CR2 value. If the NMI preempts a page fault
1591 * handler before it was able to read the CR2 register, and then the
1592 * NMI itself takes a page fault, the page fault that was preempted
1593 * will read the information from the NMI page fault and not the
1594 * origin fault. Save it off and restore it if it changes.
1595 * Use the r12 callee-saved register.
1596 */
1597 movq %cr2, %r12
1598
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001599 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1600 movq %rsp,%rdi
1601 movq $-1,%rsi
1602 call do_nmi
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001603
1604 /* Did the NMI take a page fault? Restore cr2 if it did */
1605 movq %cr2, %rcx
1606 cmpq %rcx, %r12
1607 je 1f
1608 movq %r12, %cr2
16091:
1610
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001611 testl %ebx,%ebx /* swapgs needed? */
1612 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001613nmi_swapgs:
1614 SWAPGS_UNSAFE_STACK
1615nmi_restore:
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001616 RESTORE_EXTRA_REGS
1617 RESTORE_C_REGS
Jan Beulich444723d2013-01-24 09:27:31 +00001618 /* Pop the extra iret frame at once */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001619 REMOVE_PT_GPREGS_FROM_STACK 6*8
Salman Qazi28696f42012-10-01 17:29:25 -07001620
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001621 /* Clear the NMI executing stack variable */
Salman Qazi28696f42012-10-01 17:29:25 -07001622 movq $0, 5*8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001623 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001624 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001625END(nmi)
1626
1627ENTRY(ignore_sysret)
1628 CFI_STARTPROC
1629 mov $-ENOSYS,%eax
1630 sysret
1631 CFI_ENDPROC
1632END(ignore_sysret)
1633