blob: eeab4cf8b2c9364863c2b1eb3ca72d7581ddddf8 [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.
29 * - SAVE_ALL/RESTORE_ALL - Save/restore all registers
30 * - SAVE_ARGS/RESTORE_ARGS - Save/restore registers that C functions modify.
31 * There are unfortunately lots of special cases where some registers
32 * not touched. The macro is a big mess that should be cleaned up.
33 * - SAVE_REST/RESTORE_REST - Handle the registers not saved by SAVE_ARGS.
34 * Gives a full stack frame.
35 * - ENTRY/END Define functions in the symbol table.
36 * - FIXUP_TOP_OF_STACK/RESTORE_TOP_OF_STACK - Fix up the hardware stack
37 * frame that is otherwise undefined after a SYSCALL
38 * - TRACE_IRQ_* - Trace hard interrupt state for lock debugging.
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -070039 * - idtentry - Define exception entry points.
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 */
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/linkage.h>
43#include <asm/segment.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/cache.h>
45#include <asm/errno.h>
46#include <asm/dwarf2.h>
47#include <asm/calling.h>
Sam Ravnborge2d5df92005-09-09 21:28:48 +020048#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/msr.h>
50#include <asm/unistd.h>
51#include <asm/thread_info.h>
52#include <asm/hw_irq.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080053#include <asm/page_types.h>
Ingo Molnar2601e642006-07-03 00:24:45 -070054#include <asm/irqflags.h>
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010055#include <asm/paravirt.h>
Tejun Heo9939dda2009-01-13 20:41:35 +090056#include <asm/percpu.h>
H. Peter Anvind7abc0f2012-04-20 12:19:50 -070057#include <asm/asm.h>
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010058#include <asm/context_tracking.h>
H. Peter Anvin63bcff22012-09-21 12:43:12 -070059#include <asm/smap.h>
H. Peter Anvin3891a042014-04-29 16:46:09 -070060#include <asm/pgtable_types.h>
Eric Parisd7e75282012-01-03 14:23:06 -050061#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Roland McGrath86a1c342008-06-23 15:37:04 -070063/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
64#include <linux/elf-em.h>
65#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
66#define __AUDIT_ARCH_64BIT 0x80000000
67#define __AUDIT_ARCH_LE 0x40000000
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 .code64
Jiri Olsaea714542011-03-07 19:10:39 +010070 .section .entry.text, "ax"
71
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020072
Andi Kleendc37db42005-04-16 15:25:05 -070073#ifndef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define retint_kernel retint_restore_args
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010075#endif
Ingo Molnar2601e642006-07-03 00:24:45 -070076
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010077#ifdef CONFIG_PARAVIRT
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -040078ENTRY(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010079 swapgs
80 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +030081ENDPROC(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010082#endif /* CONFIG_PARAVIRT */
83
Ingo Molnar2601e642006-07-03 00:24:45 -070084
85.macro TRACE_IRQS_IRETQ offset=ARGOFFSET
86#ifdef CONFIG_TRACE_IRQFLAGS
87 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
88 jnc 1f
89 TRACE_IRQS_ON
901:
91#endif
92.endm
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*
Steven Rostedt5963e312012-05-30 11:54:53 -040095 * When dynamic function tracer is enabled it will add a breakpoint
96 * to all locations that it is about to modify, sync CPUs, update
97 * all the code, sync CPUs, then remove the breakpoints. In this time
98 * if lockdep is enabled, it might jump back into the debug handler
99 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
100 *
101 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
102 * make sure the stack pointer does not get reset back to the top
103 * of the debug stack, and instead just reuses the current stack.
104 */
105#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
106
107.macro TRACE_IRQS_OFF_DEBUG
108 call debug_stack_set_zero
109 TRACE_IRQS_OFF
110 call debug_stack_reset
111.endm
112
113.macro TRACE_IRQS_ON_DEBUG
114 call debug_stack_set_zero
115 TRACE_IRQS_ON
116 call debug_stack_reset
117.endm
118
119.macro TRACE_IRQS_IRETQ_DEBUG offset=ARGOFFSET
120 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
121 jnc 1f
122 TRACE_IRQS_ON_DEBUG
1231:
124.endm
125
126#else
127# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
128# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
129# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
130#endif
131
132/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100133 * C code is not supposed to know about undefined top of stack. Every time
134 * a C function with an pt_regs argument is called from the SYSCALL based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 * fast path FIXUP_TOP_OF_STACK is needed.
136 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
137 * manipulation.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100138 */
139
140 /* %rsp:at FRAMEEND */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100141 .macro FIXUP_TOP_OF_STACK tmp offset=0
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900142 movq PER_CPU_VAR(old_rsp),\tmp
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100143 movq \tmp,RSP+\offset(%rsp)
144 movq $__USER_DS,SS+\offset(%rsp)
145 movq $__USER_CS,CS+\offset(%rsp)
Andy Lutomirski0fcedc82015-01-16 16:19:27 -0800146 movq RIP+\offset(%rsp),\tmp /* get rip */
147 movq \tmp,RCX+\offset(%rsp) /* copy it to rcx as sysret would do */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100148 movq R11+\offset(%rsp),\tmp /* get eflags */
149 movq \tmp,EFLAGS+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 .endm
151
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100152 .macro RESTORE_TOP_OF_STACK tmp offset=0
153 movq RSP+\offset(%rsp),\tmp
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900154 movq \tmp,PER_CPU_VAR(old_rsp)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100155 movq EFLAGS+\offset(%rsp),\tmp
156 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 .endm
158
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100159/*
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100160 * initial frame state for interrupts (and exceptions without error code)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100161 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100162 .macro EMPTY_FRAME start=1 offset=0
163 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100164 CFI_STARTPROC simple
165 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100166 CFI_DEF_CFA rsp,8+\offset
167 .else
168 CFI_DEF_CFA_OFFSET 8+\offset
169 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100170 .endm
171
172/*
173 * initial frame state for interrupts (and exceptions without error code)
174 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100175 .macro INTR_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100176 EMPTY_FRAME \start, SS+8+\offset-RIP
177 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
178 CFI_REL_OFFSET rsp, RSP+\offset-RIP
179 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
180 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
181 CFI_REL_OFFSET rip, RIP+\offset-RIP
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100182 .endm
183
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100184/*
185 * initial frame state for exceptions with error code (and interrupts
186 * with vector already pushed)
187 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100188 .macro XCPT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100189 INTR_FRAME \start, RIP+\offset-ORIG_RAX
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100190 .endm
191
192/*
193 * frame that enables calling into C.
194 */
195 .macro PARTIAL_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100196 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
197 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
198 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
199 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
200 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
201 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
202 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
203 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
204 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
205 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100206 .endm
207
208/*
209 * frame that enables passing a complete pt_regs to a C function.
210 */
211 .macro DEFAULT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100212 PARTIAL_FRAME \start, R11+\offset-R15
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100213 CFI_REL_OFFSET rbx, RBX+\offset
214 CFI_REL_OFFSET rbp, RBP+\offset
215 CFI_REL_OFFSET r12, R12+\offset
216 CFI_REL_OFFSET r13, R13+\offset
217 CFI_REL_OFFSET r14, R14+\offset
218 CFI_REL_OFFSET r15, R15+\offset
219 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100220
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100221ENTRY(save_paranoid)
222 XCPT_FRAME 1 RDI+8
223 cld
Jan Beulich3bab13b2014-06-25 14:11:22 +0100224 movq %rdi, RDI+8(%rsp)
225 movq %rsi, RSI+8(%rsp)
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100226 movq_cfi rdx, RDX+8
227 movq_cfi rcx, RCX+8
228 movq_cfi rax, RAX+8
Jan Beulich3bab13b2014-06-25 14:11:22 +0100229 movq %r8, R8+8(%rsp)
230 movq %r9, R9+8(%rsp)
231 movq %r10, R10+8(%rsp)
232 movq %r11, R11+8(%rsp)
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100233 movq_cfi rbx, RBX+8
Jan Beulich3bab13b2014-06-25 14:11:22 +0100234 movq %rbp, RBP+8(%rsp)
235 movq %r12, R12+8(%rsp)
236 movq %r13, R13+8(%rsp)
237 movq %r14, R14+8(%rsp)
238 movq %r15, R15+8(%rsp)
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100239 movl $1,%ebx
240 movl $MSR_GS_BASE,%ecx
241 rdmsr
242 testl %edx,%edx
243 js 1f /* negative -> in kernel */
244 SWAPGS
245 xorl %ebx,%ebx
2461: ret
247 CFI_ENDPROC
248END(save_paranoid)
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/*
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100251 * A newly forked process directly context switches into this address.
252 *
253 * rdi: prev task we switched from
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100254 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255ENTRY(ret_from_fork)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100256 DEFAULT_FRAME
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100257
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500258 LOCK ; btr $TIF_FORK,TI_flags(%r8)
259
Ian Campbell6eebdda2012-08-24 23:58:47 +0400260 pushq_cfi $0x0002
Jan Beulichdf5d1872010-09-02 14:07:16 +0100261 popfq_cfi # reset kernel eflags
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100262
263 call schedule_tail # rdi: 'prev' task parameter
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 GET_THREAD_INFO(%rcx)
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 RESTORE_REST
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100268
269 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
Al Viro7076aad2012-09-10 16:44:54 -0400270 jz 1f
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100271
272 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 jnz int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100274
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100275 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100276 jmp ret_from_sys_call # go to the SYSRET fastpath
277
Al Viro7076aad2012-09-10 16:44:54 -04002781:
Al Viro22e2430d2012-10-10 21:35:42 -0400279 subq $REST_SKIP, %rsp # leave space for volatiles
Al Viro7076aad2012-09-10 16:44:54 -0400280 CFI_ADJUST_CFA_OFFSET REST_SKIP
281 movq %rbp, %rdi
282 call *%rbx
Al Viro22e2430d2012-10-10 21:35:42 -0400283 movl $0, RAX(%rsp)
284 RESTORE_REST
285 jmp int_ret_from_sys_call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200287END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289/*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300290 * System call entry. Up to 6 arguments in registers are supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 *
292 * SYSCALL does not save anything on the stack and does not change the
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700293 * stack pointer. However, it does mask the flags register for us, so
294 * CLD and CLAC are not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100298 * Register setup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 * rax system call number
300 * rdi arg0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100301 * rcx return address for syscall/sysret, C arg3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100303 * rdx arg2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 * r10 arg3 (--> moved to rcx for C)
305 * r8 arg4
306 * r9 arg5
307 * r11 eflags for syscall/sysret, temporary for C
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100308 * r12-r15,rbp,rbx saved by C code, not touched.
309 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 * Interrupts are off on entry.
311 * Only called from user space.
312 *
313 * XXX if we had a free scratch register we could save the RSP into the stack frame
314 * and report it properly in ps. Unfortunately we haven't.
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200315 *
316 * When user can change the frames always force IRET. That is because
317 * it deals with uncanonical addresses better. SYSRET has trouble
318 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100319 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200322 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200323 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900324 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200325 CFI_REGISTER rip,rcx
326 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100327 SWAPGS_UNSAFE_STACK
328 /*
329 * A hypervisor implementation might want to use a label
330 * after the swapgs, so that it can do the swapgs
331 * for the guest and jump here on syscall.
332 */
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000333GLOBAL(system_call_after_swapgs)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100334
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900335 movq %rsp,PER_CPU_VAR(old_rsp)
Brian Gerst9af45652009-01-19 00:38:58 +0900336 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700337 /*
338 * No need to follow this irqs off/on section - it's straight
339 * and short:
340 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100341 ENABLE_INTERRUPTS(CLBR_NONE)
Andy Lutomirski54eea992014-09-05 15:13:55 -0700342 SAVE_ARGS 8, 0, rax_enosys=1
343 movq_cfi rax,(ORIG_RAX-ARGOFFSET)
Jan Beulich7effaa82005-09-12 18:49:24 +0200344 movq %rcx,RIP-ARGOFFSET(%rsp)
345 CFI_REL_OFFSET rip,RIP-ARGOFFSET
Jan Beulich46db09d2011-11-29 11:17:45 +0000346 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700348system_call_fastpath:
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800349#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800351#else
352 andl $__SYSCALL_MASK,%eax
353 cmpl $__NR_syscall_max,%eax
354#endif
Andy Lutomirski54eea992014-09-05 15:13:55 -0700355 ja ret_from_sys_call /* and return regs->ax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 movq %r10,%rcx
357 call *sys_call_table(,%rax,8) # XXX: rip relative
358 movq %rax,RAX-ARGOFFSET(%rsp)
359/*
360 * Syscall return path ending with SYSRET (fast path)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100361 * Has incomplete stack frame and undefined top of stack.
362 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363ret_from_sys_call:
Andi Kleen11b854b2005-04-16 15:25:02 -0700364 movl $_TIF_ALLWORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 /* edi: flagmask */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100366sysret_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200367 LOCKDEP_SYS_EXIT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100368 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700369 TRACE_IRQS_OFF
Jan Beulich46db09d2011-11-29 11:17:45 +0000370 movl TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 andl %edi,%edx
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100372 jnz sysret_careful
Jan Beulichbcddc012006-12-07 02:14:02 +0100373 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700374 /*
375 * sysretq will re-enable interrupts:
376 */
377 TRACE_IRQS_ON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 movq RIP-ARGOFFSET(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200379 CFI_REGISTER rip,rcx
Borislav Petkov838feb42011-05-31 22:21:53 +0200380 RESTORE_ARGS 1,-ARG_SKIP,0
Jan Beulich7effaa82005-09-12 18:49:24 +0200381 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900382 movq PER_CPU_VAR(old_rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400383 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Jan Beulichbcddc012006-12-07 02:14:02 +0100385 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 /* Handle reschedules */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100387 /* edx: work, edi: workmask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388sysret_careful:
389 bt $TIF_NEED_RESCHED,%edx
390 jnc sysret_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700391 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100392 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100393 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200394 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100395 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 jmp sysret_check
397
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100398 /* Handle a signal */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399sysret_signal:
Ingo Molnar2601e642006-07-03 00:24:45 -0700400 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100401 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrath86a1c342008-06-23 15:37:04 -0700402#ifdef CONFIG_AUDITSYSCALL
403 bt $TIF_SYSCALL_AUDIT,%edx
404 jc sysret_audit
405#endif
Roland McGrathb60e7142009-09-22 16:46:34 -0700406 /*
407 * We have a signal, or exit tracing or single-step.
408 * These all wind up with the iret return path anyway,
409 * so just join that path right now.
410 */
411 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
412 jmp int_check_syscall_exit_work
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100413
Roland McGrath86a1c342008-06-23 15:37:04 -0700414#ifdef CONFIG_AUDITSYSCALL
415 /*
Eric Parisd7e75282012-01-03 14:23:06 -0500416 * Return fast path for syscall audit. Call __audit_syscall_exit()
Roland McGrath86a1c342008-06-23 15:37:04 -0700417 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
418 * masked off.
419 */
420sysret_audit:
Roland McGrath03275592010-07-21 17:44:12 -0700421 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
Eric Parisd7e75282012-01-03 14:23:06 -0500422 cmpq $-MAX_ERRNO,%rsi /* is it < -MAX_ERRNO? */
423 setbe %al /* 1 if so, 0 if not */
Roland McGrath86a1c342008-06-23 15:37:04 -0700424 movzbl %al,%edi /* zero-extend that into %edi */
Eric Parisd7e75282012-01-03 14:23:06 -0500425 call __audit_syscall_exit
Roland McGrath86a1c342008-06-23 15:37:04 -0700426 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
427 jmp sysret_check
428#endif /* CONFIG_AUDITSYSCALL */
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100431tracesys:
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700432 leaq -REST_SKIP(%rsp), %rdi
433 movq $AUDIT_ARCH_X86_64, %rsi
434 call syscall_trace_enter_phase1
435 test %rax, %rax
436 jnz tracesys_phase2 /* if needed, run the slow path */
437 LOAD_ARGS 0 /* else restore clobbered regs */
438 jmp system_call_fastpath /* and return to the fast path */
439
440tracesys_phase2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 FIXUP_TOP_OF_STACK %rdi
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700443 movq %rsp, %rdi
444 movq $AUDIT_ARCH_X86_64, %rsi
445 movq %rax,%rdx
446 call syscall_trace_enter_phase2
447
Roland McGrathd4d67152008-07-09 02:38:07 -0700448 /*
449 * Reload arg registers from stack in case ptrace changed them.
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700450 * We don't reload %rax because syscall_trace_entry_phase2() returned
Roland McGrathd4d67152008-07-09 02:38:07 -0700451 * the value it wants us to use in the table lookup.
452 */
453 LOAD_ARGS ARGOFFSET, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 RESTORE_REST
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800455#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800457#else
458 andl $__SYSCALL_MASK,%eax
459 cmpl $__NR_syscall_max,%eax
460#endif
Andy Lutomirski54eea992014-09-05 15:13:55 -0700461 ja int_ret_from_sys_call /* RAX(%rsp) is already set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 movq %r10,%rcx /* fixup for C */
463 call *sys_call_table(,%rax,8)
Roland McGratha31f8dd2008-03-16 21:59:11 -0700464 movq %rax,RAX-ARGOFFSET(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200465 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100466
467/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 * Syscall return path ending with IRET.
469 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100470 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300471GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100472 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700473 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 movl $_TIF_ALLWORK_MASK,%edi
475 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300476GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200477 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300479 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 andl %edi,%edx
481 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300482 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 jmp retint_swapgs
484
485 /* Either reschedule or signal or syscall exit tracking needed. */
486 /* First do a reschedule test. */
487 /* edx: work, edi: workmask */
488int_careful:
489 bt $TIF_NEED_RESCHED,%edx
490 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700491 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100492 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100493 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200494 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100495 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100496 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700497 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 jmp int_with_check
499
500 /* handle signals and tracing -- both require a full stack frame */
501int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700502 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100503 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrathb60e7142009-09-22 16:46:34 -0700504int_check_syscall_exit_work:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100506 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700507 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100509 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100510 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100512 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700513 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100517 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 jz 1f
519 movq %rsp,%rdi # &ptregs -> arg1
520 xorl %esi,%esi # oldset -> arg2
521 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07005221: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523int_restore_rest:
524 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100525 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700526 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 jmp int_with_check
528 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100529END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100530
Al Viro1d4b4b22012-10-22 22:34:11 -0400531 .macro FORK_LIKE func
532ENTRY(stub_\func)
533 CFI_STARTPROC
534 popq %r11 /* save return address */
535 PARTIAL_FRAME 0
536 SAVE_REST
537 pushq %r11 /* put it back on stack */
538 FIXUP_TOP_OF_STACK %r11, 8
539 DEFAULT_FRAME 0 8 /* offset 8: return address */
540 call sys_\func
541 RESTORE_TOP_OF_STACK %r11, 8
542 ret $REST_SKIP /* pop extended registers */
543 CFI_ENDPROC
544END(stub_\func)
545 .endm
546
Al Virob3af11a2012-11-19 22:00:52 -0500547 .macro FIXED_FRAME label,func
548ENTRY(\label)
549 CFI_STARTPROC
550 PARTIAL_FRAME 0 8 /* offset 8: return address */
551 FIXUP_TOP_OF_STACK %r11, 8-ARGOFFSET
552 call \func
553 RESTORE_TOP_OF_STACK %r11, 8-ARGOFFSET
554 ret
555 CFI_ENDPROC
556END(\label)
557 .endm
558
Al Viro1d4b4b22012-10-22 22:34:11 -0400559 FORK_LIKE clone
560 FORK_LIKE fork
561 FORK_LIKE vfork
Al Virob3af11a2012-11-19 22:00:52 -0500562 FIXED_FRAME stub_iopl, sys_iopl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564ENTRY(stub_execve)
565 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100566 addq $8, %rsp
567 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 FIXUP_TOP_OF_STACK %r11
570 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 movq %rax,RAX(%rsp)
572 RESTORE_REST
573 jmp int_ret_from_sys_call
574 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200575END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100576
David Drysdale27d6ec72014-12-12 16:57:33 -0800577ENTRY(stub_execveat)
578 CFI_STARTPROC
579 addq $8, %rsp
580 PARTIAL_FRAME 0
581 SAVE_REST
582 FIXUP_TOP_OF_STACK %r11
583 call sys_execveat
584 RESTORE_TOP_OF_STACK %r11
585 movq %rax,RAX(%rsp)
586 RESTORE_REST
587 jmp int_ret_from_sys_call
588 CFI_ENDPROC
589END(stub_execveat)
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591/*
592 * sigreturn is special because it needs to restore all registers on return.
593 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100594 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595ENTRY(stub_rt_sigreturn)
596 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200597 addq $8, %rsp
Jan Beuliche6b04b62010-09-02 13:52:45 +0100598 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 FIXUP_TOP_OF_STACK %r11
601 call sys_rt_sigreturn
602 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
603 RESTORE_REST
604 jmp int_ret_from_sys_call
605 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200606END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800608#ifdef CONFIG_X86_X32_ABI
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800609ENTRY(stub_x32_rt_sigreturn)
610 CFI_STARTPROC
611 addq $8, %rsp
612 PARTIAL_FRAME 0
613 SAVE_REST
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800614 FIXUP_TOP_OF_STACK %r11
615 call sys32_x32_rt_sigreturn
616 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
617 RESTORE_REST
618 jmp int_ret_from_sys_call
619 CFI_ENDPROC
620END(stub_x32_rt_sigreturn)
621
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800622ENTRY(stub_x32_execve)
623 CFI_STARTPROC
624 addq $8, %rsp
625 PARTIAL_FRAME 0
626 SAVE_REST
627 FIXUP_TOP_OF_STACK %r11
Al Viro6783eaa22012-08-02 23:05:11 +0400628 call compat_sys_execve
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800629 RESTORE_TOP_OF_STACK %r11
630 movq %rax,RAX(%rsp)
631 RESTORE_REST
632 jmp int_ret_from_sys_call
633 CFI_ENDPROC
634END(stub_x32_execve)
635
David Drysdale27d6ec72014-12-12 16:57:33 -0800636ENTRY(stub_x32_execveat)
637 CFI_STARTPROC
638 addq $8, %rsp
639 PARTIAL_FRAME 0
640 SAVE_REST
641 FIXUP_TOP_OF_STACK %r11
642 call compat_sys_execveat
643 RESTORE_TOP_OF_STACK %r11
644 movq %rax,RAX(%rsp)
645 RESTORE_REST
646 jmp int_ret_from_sys_call
647 CFI_ENDPROC
648END(stub_x32_execveat)
649
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800650#endif
651
Jan Beulich7effaa82005-09-12 18:49:24 +0200652/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800653 * Build the entry stubs and pointer table with some assembler magic.
654 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
655 * single cache line on all modern x86 implementations.
656 */
657 .section .init.rodata,"a"
658ENTRY(interrupt)
Jiri Olsaea714542011-03-07 19:10:39 +0100659 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800660 .p2align 5
661 .p2align CONFIG_X86_L1_CACHE_SHIFT
662ENTRY(irq_entries_start)
663 INTR_FRAME
664vector=FIRST_EXTERNAL_VECTOR
Jan Beulich2414e022014-11-03 08:39:43 +0000665.rept (FIRST_SYSTEM_VECTOR-FIRST_EXTERNAL_VECTOR+6)/7
H. Peter Anvin939b7872008-11-11 13:51:52 -0800666 .balign 32
667 .rept 7
Jan Beulich2414e022014-11-03 08:39:43 +0000668 .if vector < FIRST_SYSTEM_VECTOR
H. Peter Anvin86655962008-11-12 10:27:35 -0800669 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800670 CFI_ADJUST_CFA_OFFSET -8
671 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01006721: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800673 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800674 jmp 2f
675 .endif
676 .previous
677 .quad 1b
Jiri Olsaea714542011-03-07 19:10:39 +0100678 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800679vector=vector+1
680 .endif
681 .endr
6822: jmp common_interrupt
683.endr
684 CFI_ENDPROC
685END(irq_entries_start)
686
687.previous
688END(interrupt)
689.previous
690
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100691/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 * Interrupt entry/exit.
693 *
694 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100695 *
696 * Entry runs with interrupts off.
697 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100699/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 .macro interrupt func
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100701 /* reserve pt_regs for scratch regs and rbp */
702 subq $ORIG_RAX-RBP, %rsp
703 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100704 cld
705 /* start from rbp in pt_regs and jump over */
706 movq_cfi rdi, (RDI-RBP)
707 movq_cfi rsi, (RSI-RBP)
708 movq_cfi rdx, (RDX-RBP)
709 movq_cfi rcx, (RCX-RBP)
710 movq_cfi rax, (RAX-RBP)
711 movq_cfi r8, (R8-RBP)
712 movq_cfi r9, (R9-RBP)
713 movq_cfi r10, (R10-RBP)
714 movq_cfi r11, (R11-RBP)
715
716 /* Save rbp so that we can unwind from get_irq_regs() */
717 movq_cfi rbp, 0
718
719 /* Save previous stack value */
720 movq %rsp, %rsi
721
722 leaq -RBP(%rsp),%rdi /* arg1 for handler */
723 testl $3, CS-RBP(%rsi)
724 je 1f
725 SWAPGS
726 /*
727 * irq_count is used to check if a CPU is already on an interrupt stack
728 * or not. While this is essentially redundant with preempt_count it is
729 * a little cheaper to use a separate counter in the PDA (short of
730 * moving irq_enter into assembly, which would be too much work)
731 */
7321: incl PER_CPU_VAR(irq_count)
733 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
734 CFI_DEF_CFA_REGISTER rsi
735
736 /* Store previous stack value */
737 pushq %rsi
738 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
739 0x77 /* DW_OP_breg7 */, 0, \
740 0x06 /* DW_OP_deref */, \
741 0x08 /* DW_OP_const1u */, SS+8-RBP, \
742 0x22 /* DW_OP_plus */
743 /* We entered an interrupt context - irqs are off: */
744 TRACE_IRQS_OFF
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 call \func
747 .endm
748
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100749 /*
750 * The interrupt stubs push (~vector+0x80) onto the stack and
751 * then jump to common_interrupt.
752 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800753 .p2align CONFIG_X86_L1_CACHE_SHIFT
754common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200755 XCPT_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000756 ASM_CLAC
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100757 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 interrupt do_IRQ
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900759 /* 0(%rsp): old_rsp-ARGOFFSET */
Jan Beulich7effaa82005-09-12 18:49:24 +0200760ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100761 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700762 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900763 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100764
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200765 /* Restore saved previous stack */
766 popq %rsi
Mark Wielaard928282e2012-02-24 11:32:05 +0100767 CFI_DEF_CFA rsi,SS+8-RBP /* reg/off reset after def_cfa_expr */
Jan Beulicheab9e612011-09-28 16:57:52 +0100768 leaq ARGOFFSET-RBP(%rsi), %rsp
Jan Beulich7effaa82005-09-12 18:49:24 +0200769 CFI_DEF_CFA_REGISTER rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100770 CFI_ADJUST_CFA_OFFSET RBP-ARGOFFSET
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100771
Jan Beulich7effaa82005-09-12 18:49:24 +0200772exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 GET_THREAD_INFO(%rcx)
774 testl $3,CS-ARGOFFSET(%rsp)
775 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 /* Interrupt came from user space */
778 /*
779 * Has a correct top of stack, but a partial stack frame
780 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100781 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782retint_with_reschedule:
783 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200784retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200785 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300786 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200788 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200790
791retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700792 /*
793 * The iretq could re-enable interrupts:
794 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100795 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700796 TRACE_IRQS_IRETQ
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700797
798 /*
799 * Try to use SYSRET instead of IRET if we're returning to
800 * a completely clean 64-bit userspace context.
801 */
802 movq (RCX-R11)(%rsp), %rcx
803 cmpq %rcx,(RIP-R11)(%rsp) /* RCX == RIP */
804 jne opportunistic_sysret_failed
805
806 /*
807 * On Intel CPUs, sysret with non-canonical RCX/RIP will #GP
808 * in kernel space. This essentially lets the user take over
809 * the kernel, since userspace controls RSP. It's not worth
810 * testing for canonicalness exactly -- this check detects any
811 * of the 17 high bits set, which is true for non-canonical
812 * or kernel addresses. (This will pessimize vsyscall=native.
813 * Big deal.)
814 *
815 * If virtual addresses ever become wider, this will need
816 * to be updated to remain correct on both old and new CPUs.
817 */
818 .ifne __VIRTUAL_MASK_SHIFT - 47
819 .error "virtual address width changed -- sysret checks need update"
820 .endif
821 shr $__VIRTUAL_MASK_SHIFT, %rcx
822 jnz opportunistic_sysret_failed
823
824 cmpq $__USER_CS,(CS-R11)(%rsp) /* CS must match SYSRET */
825 jne opportunistic_sysret_failed
826
827 movq (R11-ARGOFFSET)(%rsp), %r11
828 cmpq %r11,(EFLAGS-ARGOFFSET)(%rsp) /* R11 == RFLAGS */
829 jne opportunistic_sysret_failed
830
831 testq $X86_EFLAGS_RF,%r11 /* sysret can't restore RF */
832 jnz opportunistic_sysret_failed
833
834 /* nothing to check for RSP */
835
836 cmpq $__USER_DS,(SS-ARGOFFSET)(%rsp) /* SS must match SYSRET */
837 jne opportunistic_sysret_failed
838
839 /*
840 * We win! This label is here just for ease of understanding
841 * perf profiles. Nothing jumps here.
842 */
843irq_return_via_sysret:
844 CFI_REMEMBER_STATE
845 RESTORE_ARGS 1,8,1
846 movq (RSP-RIP)(%rsp),%rsp
847 USERGS_SYSRET64
848 CFI_RESTORE_STATE
849
850opportunistic_sysret_failed:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100851 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700852 jmp restore_args
853
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200854retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100855 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700856 /*
857 * The iretq could re-enable interrupts:
858 */
859 TRACE_IRQS_IRETQ
860restore_args:
Borislav Petkov838feb42011-05-31 22:21:53 +0200861 RESTORE_ARGS 1,8,1
Ingo Molnar3701d8632008-02-09 23:24:08 +0100862
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200863irq_return:
Andy Lutomirski7209a752014-07-23 08:34:11 -0700864 INTERRUPT_RETURN
865
866ENTRY(native_iret)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700867 /*
868 * Are we returning to a stack segment from the LDT? Note: in
869 * 64-bit mode SS:RSP on the exception stack is always valid.
870 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700871#ifdef CONFIG_X86_ESPFIX64
H. Peter Anvin3891a042014-04-29 16:46:09 -0700872 testb $4,(SS-RIP)(%rsp)
Andy Lutomirski7209a752014-07-23 08:34:11 -0700873 jnz native_irq_return_ldt
H. Peter Anvin34273f42014-05-04 10:36:22 -0700874#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700875
Andy Lutomirskiaf726f22014-11-22 18:00:31 -0800876.global native_irq_return_iret
Andy Lutomirski7209a752014-07-23 08:34:11 -0700877native_irq_return_iret:
Andy Lutomirskib645af22014-11-22 18:00:33 -0800878 /*
879 * This may fault. Non-paranoid faults on return to userspace are
880 * handled by fixup_bad_iret. These include #SS, #GP, and #NP.
881 * Double-faults due to espfix64 are handled in do_double_fault.
882 * Other faults here are fatal.
883 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 iretq
Ingo Molnar3701d8632008-02-09 23:24:08 +0100885
H. Peter Anvin34273f42014-05-04 10:36:22 -0700886#ifdef CONFIG_X86_ESPFIX64
Andy Lutomirski7209a752014-07-23 08:34:11 -0700887native_irq_return_ldt:
H. Peter Anvin3891a042014-04-29 16:46:09 -0700888 pushq_cfi %rax
889 pushq_cfi %rdi
890 SWAPGS
891 movq PER_CPU_VAR(espfix_waddr),%rdi
892 movq %rax,(0*8)(%rdi) /* RAX */
893 movq (2*8)(%rsp),%rax /* RIP */
894 movq %rax,(1*8)(%rdi)
895 movq (3*8)(%rsp),%rax /* CS */
896 movq %rax,(2*8)(%rdi)
897 movq (4*8)(%rsp),%rax /* RFLAGS */
898 movq %rax,(3*8)(%rdi)
899 movq (6*8)(%rsp),%rax /* SS */
900 movq %rax,(5*8)(%rdi)
901 movq (5*8)(%rsp),%rax /* RSP */
902 movq %rax,(4*8)(%rdi)
903 andl $0xffff0000,%eax
904 popq_cfi %rdi
905 orq PER_CPU_VAR(espfix_stack),%rax
906 SWAPGS
907 movq %rax,%rsp
908 popq_cfi %rax
Andy Lutomirski7209a752014-07-23 08:34:11 -0700909 jmp native_irq_return_iret
H. Peter Anvin34273f42014-05-04 10:36:22 -0700910#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700911
Jan Beulich7effaa82005-09-12 18:49:24 +0200912 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200914 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 bt $TIF_NEED_RESCHED,%edx
916 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700917 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100918 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100919 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200920 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100921 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100923 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700924 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100928 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700929 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700930 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100931 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100933 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700934 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 movq %rsp,%rdi # &pt_regs
936 call do_notify_resume
937 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100938 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700939 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -0700940 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -0700941 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943#ifdef CONFIG_PREEMPT
944 /* Returning to kernel space. Check if we need preemption */
945 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +0200946ENTRY(retint_kernel)
Peter Zijlstrac2daa3b2013-08-14 14:51:00 +0200947 cmpl $0,PER_CPU_VAR(__preempt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 jnz retint_restore_args
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
950 jnc retint_restore_args
951 call preempt_schedule_irq
952 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100953#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200955END(common_interrupt)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700956
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400957/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100959 */
Seiji Aguchicf910e82013-06-20 11:46:53 -0400960.macro apicinterrupt3 num sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100961ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +0200962 INTR_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000963 ASM_CLAC
Jan Beulichdf5d1872010-09-02 14:07:16 +0100964 pushq_cfi $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +0000965.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100966 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 jmp ret_from_intr
968 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100969END(\sym)
970.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100971
Seiji Aguchicf910e82013-06-20 11:46:53 -0400972#ifdef CONFIG_TRACING
973#define trace(sym) trace_##sym
974#define smp_trace(sym) smp_trace_##sym
975
976.macro trace_apicinterrupt num sym
977apicinterrupt3 \num trace(\sym) smp_trace(\sym)
978.endm
979#else
980.macro trace_apicinterrupt num sym do_sym
981.endm
982#endif
983
984.macro apicinterrupt num sym do_sym
985apicinterrupt3 \num \sym \do_sym
986trace_apicinterrupt \num \sym
987.endm
988
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100989#ifdef CONFIG_SMP
Seiji Aguchicf910e82013-06-20 11:46:53 -0400990apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100991 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Seiji Aguchicf910e82013-06-20 11:46:53 -0400992apicinterrupt3 REBOOT_VECTOR \
Andi Kleen4ef702c2009-05-27 21:56:52 +0200993 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994#endif
995
Nick Piggin03b48632009-01-20 04:36:04 +0100996#ifdef CONFIG_X86_UV
Seiji Aguchicf910e82013-06-20 11:46:53 -0400997apicinterrupt3 UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100998 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100999#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001000apicinterrupt LOCAL_TIMER_VECTOR \
1001 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -05001002apicinterrupt X86_PLATFORM_IPI_VECTOR \
1003 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Yang Zhangd78f2662013-04-11 19:25:11 +08001005#ifdef CONFIG_HAVE_KVM
Seiji Aguchicf910e82013-06-20 11:46:53 -04001006apicinterrupt3 POSTED_INTR_VECTOR \
Yang Zhangd78f2662013-04-11 19:25:11 +08001007 kvm_posted_intr_ipi smp_kvm_posted_intr_ipi
1008#endif
1009
Seiji Aguchi33e5ff62013-06-22 07:33:30 -04001010#ifdef CONFIG_X86_MCE_THRESHOLD
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001011apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +02001012 threshold_interrupt smp_threshold_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -04001013#endif
1014
1015#ifdef CONFIG_X86_THERMAL_VECTOR
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001016apicinterrupt THERMAL_APIC_VECTOR \
1017 thermal_interrupt smp_thermal_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -04001018#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001020#ifdef CONFIG_SMP
1021apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1022 call_function_single_interrupt smp_call_function_single_interrupt
1023apicinterrupt CALL_FUNCTION_VECTOR \
1024 call_function_interrupt smp_call_function_interrupt
1025apicinterrupt RESCHEDULE_VECTOR \
1026 reschedule_interrupt smp_reschedule_interrupt
1027#endif
1028
1029apicinterrupt ERROR_APIC_VECTOR \
1030 error_interrupt smp_error_interrupt
1031apicinterrupt SPURIOUS_APIC_VECTOR \
1032 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001033
Peter Zijlstrae360adb2010-10-14 14:01:34 +08001034#ifdef CONFIG_IRQ_WORK
1035apicinterrupt IRQ_WORK_VECTOR \
1036 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +01001037#endif
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039/*
1040 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001041 */
Andy Lutomirski577ed452014-05-21 15:07:09 -07001042#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
1043
1044.macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001045ENTRY(\sym)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001046 /* Sanity check */
1047 .if \shift_ist != -1 && \paranoid == 0
1048 .error "using shift_ist requires paranoid=1"
1049 .endif
1050
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001051 .if \has_error_code
1052 XCPT_FRAME
1053 .else
Jan Beulich7effaa82005-09-12 18:49:24 +02001054 INTR_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001055 .endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Jan Beulichee4eb872012-11-02 11:18:39 +00001057 ASM_CLAC
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001058 PARAVIRT_ADJUST_EXCEPTION_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001059
1060 .ifeq \has_error_code
1061 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1062 .endif
1063
Jan Beulichb1cccb12010-09-02 13:55:11 +01001064 subq $ORIG_RAX-R15, %rsp
1065 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001066
1067 .if \paranoid
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001068 .if \paranoid == 1
1069 CFI_REMEMBER_STATE
1070 testl $3, CS(%rsp) /* If coming from userspace, switch */
1071 jnz 1f /* stacks. */
1072 .endif
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001073 call save_paranoid
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001074 .else
1075 call error_entry
1076 .endif
1077
Andy Lutomirski1bd24ef2014-05-21 15:07:07 -07001078 DEFAULT_FRAME 0
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001079
1080 .if \paranoid
Andy Lutomirski577ed452014-05-21 15:07:09 -07001081 .if \shift_ist != -1
1082 TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */
1083 .else
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001084 TRACE_IRQS_OFF
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001085 .endif
Andy Lutomirski577ed452014-05-21 15:07:09 -07001086 .endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001087
1088 movq %rsp,%rdi /* pt_regs pointer */
1089
1090 .if \has_error_code
1091 movq ORIG_RAX(%rsp),%rsi /* get error code */
1092 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1093 .else
1094 xorl %esi,%esi /* no error code */
1095 .endif
1096
Andy Lutomirski577ed452014-05-21 15:07:09 -07001097 .if \shift_ist != -1
1098 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\shift_ist)
1099 .endif
1100
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001101 call \do_sym
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001102
Andy Lutomirski577ed452014-05-21 15:07:09 -07001103 .if \shift_ist != -1
1104 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\shift_ist)
1105 .endif
1106
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001107 .if \paranoid
1108 jmp paranoid_exit /* %ebx: no swapgs flag */
1109 .else
1110 jmp error_exit /* %ebx: no swapgs flag */
1111 .endif
1112
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001113 .if \paranoid == 1
1114 CFI_RESTORE_STATE
1115 /*
1116 * Paranoid entry from userspace. Switch stacks and treat it
1117 * as a normal entry. This means that paranoid handlers
1118 * run in real process context if user_mode(regs).
1119 */
11201:
1121 call error_entry
1122
1123 DEFAULT_FRAME 0
1124
1125 movq %rsp,%rdi /* pt_regs pointer */
1126 call sync_regs
1127 movq %rax,%rsp /* switch stack */
1128
1129 movq %rsp,%rdi /* pt_regs pointer */
1130
1131 .if \has_error_code
1132 movq ORIG_RAX(%rsp),%rsi /* get error code */
1133 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1134 .else
1135 xorl %esi,%esi /* no error code */
1136 .endif
1137
1138 call \do_sym
1139
1140 jmp error_exit /* %ebx: no swapgs flag */
1141 .endif
1142
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001143 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001144END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001145.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001146
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001147#ifdef CONFIG_TRACING
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001148.macro trace_idtentry sym do_sym has_error_code:req
1149idtentry trace(\sym) trace(\do_sym) has_error_code=\has_error_code
1150idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001151.endm
1152#else
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001153.macro trace_idtentry sym do_sym has_error_code:req
1154idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001155.endm
1156#endif
1157
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001158idtentry divide_error do_divide_error has_error_code=0
1159idtentry overflow do_overflow has_error_code=0
1160idtentry bounds do_bounds has_error_code=0
1161idtentry invalid_op do_invalid_op has_error_code=0
1162idtentry device_not_available do_device_not_available has_error_code=0
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001163idtentry double_fault do_double_fault has_error_code=1 paranoid=2
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001164idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0
1165idtentry invalid_TSS do_invalid_TSS has_error_code=1
1166idtentry segment_not_present do_segment_not_present has_error_code=1
1167idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0
1168idtentry coprocessor_error do_coprocessor_error has_error_code=0
1169idtentry alignment_check do_alignment_check has_error_code=1
1170idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001171
Ingo Molnar2601e642006-07-03 00:24:45 -07001172
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001173 /* Reload gs selector with exception handling */
1174 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001175ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001176 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001177 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001178 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001179 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001180gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001181 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070011822: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001183 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001184 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001185 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001186 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001187END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001188
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001189 _ASM_EXTABLE(gs_change,bad_gs)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001190 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001192bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001193 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001195 movl %eax,%gs
1196 jmp 2b
1197 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001198
Andi Kleen26995002006-08-02 22:37:28 +02001199/* Call softirq on interrupt stack. Interrupts are off. */
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001200ENTRY(do_softirq_own_stack)
Jan Beulich7effaa82005-09-12 18:49:24 +02001201 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001202 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001203 CFI_REL_OFFSET rbp,0
1204 mov %rsp,%rbp
1205 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001206 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001207 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001208 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001209 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001210 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001211 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001212 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001213 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001214 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001215 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001216 CFI_ENDPROC
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001217END(do_softirq_own_stack)
Andi Kleen75154f42007-06-23 02:29:25 +02001218
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001219#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001220idtentry xen_hypervisor_callback xen_do_hypervisor_callback has_error_code=0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001221
1222/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001223 * A note on the "critical region" in our callback handler.
1224 * We want to avoid stacking callback handlers due to events occurring
1225 * during handling of the last event. To do this, we keep events disabled
1226 * until we've done all processing. HOWEVER, we must enable events before
1227 * popping the stack frame (can't be done atomically) and so it would still
1228 * be possible to get enough handler activations to overflow the stack.
1229 * Although unlikely, bugs of that kind are hard to track down, so we'd
1230 * like to avoid the possibility.
1231 * So, on entry to the handler we detect whether we interrupted an
1232 * existing activation in its critical region -- if so, we pop the current
1233 * activation and restart the handler using the previous one.
1234 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001235ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1236 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001237/*
1238 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1239 * see the correct pointer to the pt_regs
1240 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001241 movq %rdi, %rsp # we don't return, adjust the stack frame
1242 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001243 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900124411: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001245 movq %rsp,%rbp
1246 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001247 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001248 pushq %rbp # backlink for old unwinder
1249 call xen_evtchn_do_upcall
1250 popq %rsp
1251 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001252 decl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001253 jmp error_exit
1254 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001255END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001256
1257/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001258 * Hypervisor uses this for application faults while it executes.
1259 * We get here for two reasons:
1260 * 1. Fault while reloading DS, ES, FS or GS
1261 * 2. Fault while executing IRET
1262 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1263 * registers that could be reloaded and zeroed the others.
1264 * Category 2 we fix up by killing the current process. We cannot use the
1265 * normal Linux return path in this case because if we use the IRET hypercall
1266 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1267 * We distinguish between categories by comparing each saved segment register
1268 * with its current contents: any discrepancy means we in category 1.
1269 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001270ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001271 INTR_FRAME 1 (6*8)
1272 /*CFI_REL_OFFSET gs,GS*/
1273 /*CFI_REL_OFFSET fs,FS*/
1274 /*CFI_REL_OFFSET es,ES*/
1275 /*CFI_REL_OFFSET ds,DS*/
1276 CFI_REL_OFFSET r11,8
1277 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001278 movw %ds,%cx
1279 cmpw %cx,0x10(%rsp)
1280 CFI_REMEMBER_STATE
1281 jne 1f
1282 movw %es,%cx
1283 cmpw %cx,0x18(%rsp)
1284 jne 1f
1285 movw %fs,%cx
1286 cmpw %cx,0x20(%rsp)
1287 jne 1f
1288 movw %gs,%cx
1289 cmpw %cx,0x28(%rsp)
1290 jne 1f
1291 /* All segments match their saved values => Category 2 (Bad IRET). */
1292 movq (%rsp),%rcx
1293 CFI_RESTORE rcx
1294 movq 8(%rsp),%r11
1295 CFI_RESTORE r11
1296 addq $0x30,%rsp
1297 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001298 pushq_cfi $0 /* RIP */
1299 pushq_cfi %r11
1300 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001301 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001302 CFI_RESTORE_STATE
13031: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1304 movq (%rsp),%rcx
1305 CFI_RESTORE rcx
1306 movq 8(%rsp),%r11
1307 CFI_RESTORE r11
1308 addq $0x30,%rsp
1309 CFI_ADJUST_CFA_OFFSET -0x30
David Vrabela349e23d12012-10-19 17:29:07 +01001310 pushq_cfi $-1 /* orig_ax = -1 => not a system call */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001311 SAVE_ALL
1312 jmp error_exit
1313 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001314END(xen_failsafe_callback)
1315
Seiji Aguchicf910e82013-06-20 11:46:53 -04001316apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
Sheng Yang38e20b02010-05-14 12:40:51 +01001317 xen_hvm_callback_vector xen_evtchn_do_upcall
1318
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001319#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001320
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001321#if IS_ENABLED(CONFIG_HYPERV)
Seiji Aguchicf910e82013-06-20 11:46:53 -04001322apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001323 hyperv_callback_vector hyperv_vector_handler
1324#endif /* CONFIG_HYPERV */
1325
Andy Lutomirski577ed452014-05-21 15:07:09 -07001326idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1327idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
Andy Lutomirski6f442be2014-11-22 18:00:32 -08001328idtentry stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001329#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001330idtentry xen_debug do_debug has_error_code=0
1331idtentry xen_int3 do_int3 has_error_code=0
1332idtentry xen_stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001333#endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001334idtentry general_protection do_general_protection has_error_code=1
1335trace_idtentry page_fault do_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001336#ifdef CONFIG_KVM_GUEST
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001337idtentry async_page_fault do_async_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001338#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001339#ifdef CONFIG_X86_MCE
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001340idtentry machine_check has_error_code=0 paranoid=1 do_sym=*machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001341#endif
1342
1343 /*
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001344 * "Paranoid" exit path from exception stack. This is invoked
1345 * only on return from non-NMI IST interrupts that came
1346 * from kernel space.
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001347 *
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001348 * We may be returning to very strange contexts (e.g. very early
1349 * in syscall entry), so checking for preemption here would
1350 * be complicated. Fortunately, we there's no good reason
1351 * to try to handle preemption here.
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001352 */
1353
1354 /* ebx: no swapgs flag */
1355ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001356 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001357 DISABLE_INTERRUPTS(CLBR_NONE)
Steven Rostedt5963e312012-05-30 11:54:53 -04001358 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001359 testl %ebx,%ebx /* swapgs needed? */
1360 jnz paranoid_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001361 TRACE_IRQS_IRETQ 0
1362 SWAPGS_UNSAFE_STACK
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001363 RESTORE_ALL 8
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001364 INTERRUPT_RETURN
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001365paranoid_restore:
Steven Rostedt5963e312012-05-30 11:54:53 -04001366 TRACE_IRQS_IRETQ_DEBUG 0
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001367 RESTORE_ALL 8
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001368 INTERRUPT_RETURN
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001369 CFI_ENDPROC
1370END(paranoid_exit)
1371
1372/*
1373 * Exception entry point. This expects an error code/orig_rax on the stack.
1374 * returns in "no swapgs flag" in %ebx.
1375 */
1376ENTRY(error_entry)
1377 XCPT_FRAME
1378 CFI_ADJUST_CFA_OFFSET 15*8
1379 /* oldrax contains error code */
1380 cld
Jan Beulich3bab13b2014-06-25 14:11:22 +01001381 movq %rdi, RDI+8(%rsp)
1382 movq %rsi, RSI+8(%rsp)
1383 movq %rdx, RDX+8(%rsp)
1384 movq %rcx, RCX+8(%rsp)
1385 movq %rax, RAX+8(%rsp)
1386 movq %r8, R8+8(%rsp)
1387 movq %r9, R9+8(%rsp)
1388 movq %r10, R10+8(%rsp)
1389 movq %r11, R11+8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001390 movq_cfi rbx, RBX+8
Jan Beulich3bab13b2014-06-25 14:11:22 +01001391 movq %rbp, RBP+8(%rsp)
1392 movq %r12, R12+8(%rsp)
1393 movq %r13, R13+8(%rsp)
1394 movq %r14, R14+8(%rsp)
1395 movq %r15, R15+8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001396 xorl %ebx,%ebx
1397 testl $3,CS+8(%rsp)
1398 je error_kernelspace
1399error_swapgs:
1400 SWAPGS
1401error_sti:
1402 TRACE_IRQS_OFF
1403 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001404
1405/*
1406 * There are two places in the kernel that can potentially fault with
Andy Lutomirskib645af22014-11-22 18:00:33 -08001407 * usergs. Handle them here. B stepping K8s sometimes report a
1408 * truncated RIP for IRET exceptions returning to compat mode. Check
1409 * for these here too.
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001410 */
1411error_kernelspace:
Jan Beulich3bab13b2014-06-25 14:11:22 +01001412 CFI_REL_OFFSET rcx, RCX+8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001413 incl %ebx
Andy Lutomirski7209a752014-07-23 08:34:11 -07001414 leaq native_irq_return_iret(%rip),%rcx
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001415 cmpq %rcx,RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001416 je error_bad_iret
Brian Gerstae24ffe2009-10-12 10:18:23 -04001417 movl %ecx,%eax /* zero extend */
1418 cmpq %rax,RIP+8(%rsp)
1419 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001420 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001421 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001422 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001423
1424bstep_iret:
1425 /* Fix truncated RIP */
1426 movq %rcx,RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001427 /* fall through */
1428
1429error_bad_iret:
1430 SWAPGS
1431 mov %rsp,%rdi
1432 call fixup_bad_iret
1433 mov %rax,%rsp
1434 decl %ebx /* Return to usergs */
1435 jmp error_sti
Jan Beuliche6b04b62010-09-02 13:52:45 +01001436 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001437END(error_entry)
1438
1439
1440/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1441ENTRY(error_exit)
1442 DEFAULT_FRAME
1443 movl %ebx,%eax
1444 RESTORE_REST
1445 DISABLE_INTERRUPTS(CLBR_NONE)
1446 TRACE_IRQS_OFF
1447 GET_THREAD_INFO(%rcx)
1448 testl %eax,%eax
1449 jne retint_kernel
1450 LOCKDEP_SYS_EXIT_IRQ
1451 movl TI_flags(%rcx),%edx
1452 movl $_TIF_WORK_MASK,%edi
1453 andl %edi,%edx
1454 jnz retint_careful
1455 jmp retint_swapgs
1456 CFI_ENDPROC
1457END(error_exit)
1458
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001459/*
1460 * Test if a given stack is an NMI stack or not.
1461 */
1462 .macro test_in_nmi reg stack nmi_ret normal_ret
1463 cmpq %\reg, \stack
1464 ja \normal_ret
1465 subq $EXCEPTION_STKSZ, %\reg
1466 cmpq %\reg, \stack
1467 jb \normal_ret
1468 jmp \nmi_ret
1469 .endm
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001470
1471 /* runs on exception stack */
1472ENTRY(nmi)
1473 INTR_FRAME
1474 PARAVIRT_ADJUST_EXCEPTION_FRAME
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001475 /*
1476 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1477 * the iretq it performs will take us out of NMI context.
1478 * This means that we can have nested NMIs where the next
1479 * NMI is using the top of the stack of the previous NMI. We
1480 * can't let it execute because the nested NMI will corrupt the
1481 * stack of the previous NMI. NMI handlers are not re-entrant
1482 * anyway.
1483 *
1484 * To handle this case we do the following:
1485 * Check the a special location on the stack that contains
1486 * a variable that is set when NMIs are executing.
1487 * The interrupted task's stack is also checked to see if it
1488 * is an NMI stack.
1489 * If the variable is not set and the stack is not the NMI
1490 * stack then:
1491 * o Set the special variable on the stack
1492 * o Copy the interrupt frame into a "saved" location on the stack
1493 * o Copy the interrupt frame into a "copy" location on the stack
1494 * o Continue processing the NMI
1495 * If the variable is set or the previous stack is the NMI stack:
1496 * o Modify the "copy" location to jump to the repeate_nmi
1497 * o return back to the first NMI
1498 *
1499 * Now on exit of the first NMI, we first clear the stack variable
1500 * The NMI stack will tell any nested NMIs at that point that it is
1501 * nested. Then we pop the stack normally with iret, and if there was
1502 * a nested NMI that updated the copy interrupt stack frame, a
1503 * jump will be made to the repeat_nmi code that will handle the second
1504 * NMI.
1505 */
1506
1507 /* Use %rdx as out temp variable throughout */
1508 pushq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001509 CFI_REL_OFFSET rdx, 0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001510
1511 /*
Steven Rostedt45d5a162012-02-19 16:43:37 -05001512 * If %cs was not the kernel segment, then the NMI triggered in user
1513 * space, which means it is definitely not nested.
1514 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001515 cmpl $__KERNEL_CS, 16(%rsp)
Steven Rostedt45d5a162012-02-19 16:43:37 -05001516 jne first_nmi
1517
1518 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001519 * Check the special variable on the stack to see if NMIs are
1520 * executing.
1521 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001522 cmpl $1, -8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001523 je nested_nmi
1524
1525 /*
1526 * Now test if the previous stack was an NMI stack.
1527 * We need the double check. We check the NMI stack to satisfy the
1528 * race when the first NMI clears the variable before returning.
1529 * We check the variable because the first NMI could be in a
1530 * breakpoint routine using a breakpoint stack.
1531 */
1532 lea 6*8(%rsp), %rdx
1533 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
Jan Beulich62610912012-02-24 14:54:37 +00001534 CFI_REMEMBER_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001535
1536nested_nmi:
1537 /*
1538 * Do nothing if we interrupted the fixup in repeat_nmi.
1539 * It's about to repeat the NMI handler, so we are fine
1540 * with ignoring this one.
1541 */
1542 movq $repeat_nmi, %rdx
1543 cmpq 8(%rsp), %rdx
1544 ja 1f
1545 movq $end_repeat_nmi, %rdx
1546 cmpq 8(%rsp), %rdx
1547 ja nested_nmi_out
1548
15491:
1550 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
Salman Qazi28696f42012-10-01 17:29:25 -07001551 leaq -1*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001552 movq %rdx, %rsp
Salman Qazi28696f42012-10-01 17:29:25 -07001553 CFI_ADJUST_CFA_OFFSET 1*8
1554 leaq -10*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001555 pushq_cfi $__KERNEL_DS
1556 pushq_cfi %rdx
1557 pushfq_cfi
1558 pushq_cfi $__KERNEL_CS
1559 pushq_cfi $repeat_nmi
1560
1561 /* Put stack back */
Salman Qazi28696f42012-10-01 17:29:25 -07001562 addq $(6*8), %rsp
1563 CFI_ADJUST_CFA_OFFSET -6*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001564
1565nested_nmi_out:
1566 popq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001567 CFI_RESTORE rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001568
1569 /* No need to check faults here */
1570 INTERRUPT_RETURN
1571
Jan Beulich62610912012-02-24 14:54:37 +00001572 CFI_RESTORE_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001573first_nmi:
1574 /*
1575 * Because nested NMIs will use the pushed location that we
1576 * stored in rdx, we must keep that space available.
1577 * Here's what our stack frame will look like:
1578 * +-------------------------+
1579 * | original SS |
1580 * | original Return RSP |
1581 * | original RFLAGS |
1582 * | original CS |
1583 * | original RIP |
1584 * +-------------------------+
1585 * | temp storage for rdx |
1586 * +-------------------------+
1587 * | NMI executing variable |
1588 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001589 * | copied SS |
1590 * | copied Return RSP |
1591 * | copied RFLAGS |
1592 * | copied CS |
1593 * | copied RIP |
1594 * +-------------------------+
Salman Qazi28696f42012-10-01 17:29:25 -07001595 * | Saved SS |
1596 * | Saved Return RSP |
1597 * | Saved RFLAGS |
1598 * | Saved CS |
1599 * | Saved RIP |
1600 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001601 * | pt_regs |
1602 * +-------------------------+
1603 *
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001604 * The saved stack frame is used to fix up the copied stack frame
1605 * that a nested NMI may change to make the interrupted NMI iret jump
1606 * to the repeat_nmi. The original stack frame and the temp storage
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001607 * is also used by nested NMIs and can not be trusted on exit.
1608 */
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001609 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
Jan Beulich62610912012-02-24 14:54:37 +00001610 movq (%rsp), %rdx
1611 CFI_RESTORE rdx
1612
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001613 /* Set the NMI executing variable on the stack. */
1614 pushq_cfi $1
1615
Salman Qazi28696f42012-10-01 17:29:25 -07001616 /*
1617 * Leave room for the "copied" frame
1618 */
1619 subq $(5*8), %rsp
Jan Beulich444723d2013-01-24 09:27:31 +00001620 CFI_ADJUST_CFA_OFFSET 5*8
Salman Qazi28696f42012-10-01 17:29:25 -07001621
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001622 /* Copy the stack frame to the Saved frame */
1623 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001624 pushq_cfi 11*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001625 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001626 CFI_DEF_CFA_OFFSET SS+8-RIP
1627
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001628 /* Everything up to here is safe from nested NMIs */
1629
Jan Beulich62610912012-02-24 14:54:37 +00001630 /*
1631 * If there was a nested NMI, the first NMI's iret will return
1632 * here. But NMIs are still enabled and we can take another
1633 * nested NMI. The nested NMI checks the interrupted RIP to see
1634 * if it is between repeat_nmi and end_repeat_nmi, and if so
1635 * it will just return, as we are about to repeat an NMI anyway.
1636 * This makes it safe to copy to the stack frame that a nested
1637 * NMI will update.
1638 */
1639repeat_nmi:
1640 /*
1641 * Update the stack variable to say we are still in NMI (the update
1642 * is benign for the non-repeat case, where 1 was pushed just above
1643 * to this very stack slot).
1644 */
Salman Qazi28696f42012-10-01 17:29:25 -07001645 movq $1, 10*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001646
1647 /* Make another copy, this one may be modified by nested NMIs */
Salman Qazi28696f42012-10-01 17:29:25 -07001648 addq $(10*8), %rsp
1649 CFI_ADJUST_CFA_OFFSET -10*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001650 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001651 pushq_cfi -6*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001652 .endr
Salman Qazi28696f42012-10-01 17:29:25 -07001653 subq $(5*8), %rsp
Jan Beulich62610912012-02-24 14:54:37 +00001654 CFI_DEF_CFA_OFFSET SS+8-RIP
1655end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001656
1657 /*
1658 * Everything below this point can be preempted by a nested
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001659 * NMI if the first NMI took an exception and reset our iret stack
1660 * so that we repeat another NMI.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001661 */
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001662 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001663 subq $ORIG_RAX-R15, %rsp
1664 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001665 /*
1666 * Use save_paranoid to handle SWAPGS, but no need to use paranoid_exit
1667 * as we should not be calling schedule in NMI context.
1668 * Even with normal interrupts enabled. An NMI should not be
1669 * setting NEED_RESCHED or anything that normal interrupts and
1670 * exceptions might do.
1671 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001672 call save_paranoid
1673 DEFAULT_FRAME 0
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001674
1675 /*
1676 * Save off the CR2 register. If we take a page fault in the NMI then
1677 * it could corrupt the CR2 value. If the NMI preempts a page fault
1678 * handler before it was able to read the CR2 register, and then the
1679 * NMI itself takes a page fault, the page fault that was preempted
1680 * will read the information from the NMI page fault and not the
1681 * origin fault. Save it off and restore it if it changes.
1682 * Use the r12 callee-saved register.
1683 */
1684 movq %cr2, %r12
1685
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001686 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1687 movq %rsp,%rdi
1688 movq $-1,%rsi
1689 call do_nmi
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001690
1691 /* Did the NMI take a page fault? Restore cr2 if it did */
1692 movq %cr2, %rcx
1693 cmpq %rcx, %r12
1694 je 1f
1695 movq %r12, %cr2
16961:
1697
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001698 testl %ebx,%ebx /* swapgs needed? */
1699 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001700nmi_swapgs:
1701 SWAPGS_UNSAFE_STACK
1702nmi_restore:
Jan Beulich444723d2013-01-24 09:27:31 +00001703 /* Pop the extra iret frame at once */
1704 RESTORE_ALL 6*8
Salman Qazi28696f42012-10-01 17:29:25 -07001705
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001706 /* Clear the NMI executing stack variable */
Salman Qazi28696f42012-10-01 17:29:25 -07001707 movq $0, 5*8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001708 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001709 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001710END(nmi)
1711
1712ENTRY(ignore_sysret)
1713 CFI_STARTPROC
1714 mov $-ENOSYS,%eax
1715 sysret
1716 CFI_ENDPROC
1717END(ignore_sysret)
1718