blob: 0c91256d73dfc01a79c440eace640bcf3b40135c [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 *
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010017 * A note on terminology:
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +010018 * - iret frame: Architecture defined interrupt frame from SS to RIP
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010019 * at the top of the kernel process stack.
Andi Kleen2e91a172006-09-26 10:52:29 +020020 *
21 * Some macro usage:
22 * - CFI macros are used to generate dwarf2 unwind information for better
23 * backtraces. They don't change any code.
Andi Kleen2e91a172006-09-26 10:52:29 +020024 * - ENTRY/END Define functions in the symbol table.
25 * - FIXUP_TOP_OF_STACK/RESTORE_TOP_OF_STACK - Fix up the hardware stack
26 * frame that is otherwise undefined after a SYSCALL
27 * - TRACE_IRQ_* - Trace hard interrupt state for lock debugging.
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -070028 * - idtentry - Define exception entry points.
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 */
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/linkage.h>
32#include <asm/segment.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/cache.h>
34#include <asm/errno.h>
35#include <asm/dwarf2.h>
36#include <asm/calling.h>
Sam Ravnborge2d5df92005-09-09 21:28:48 +020037#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/msr.h>
39#include <asm/unistd.h>
40#include <asm/thread_info.h>
41#include <asm/hw_irq.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080042#include <asm/page_types.h>
Ingo Molnar2601e642006-07-03 00:24:45 -070043#include <asm/irqflags.h>
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010044#include <asm/paravirt.h>
Tejun Heo9939dda2009-01-13 20:41:35 +090045#include <asm/percpu.h>
H. Peter Anvind7abc0f2012-04-20 12:19:50 -070046#include <asm/asm.h>
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010047#include <asm/context_tracking.h>
H. Peter Anvin63bcff22012-09-21 12:43:12 -070048#include <asm/smap.h>
H. Peter Anvin3891a042014-04-29 16:46:09 -070049#include <asm/pgtable_types.h>
Eric Parisd7e75282012-01-03 14:23:06 -050050#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Roland McGrath86a1c342008-06-23 15:37:04 -070052/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
53#include <linux/elf-em.h>
54#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
55#define __AUDIT_ARCH_64BIT 0x80000000
56#define __AUDIT_ARCH_LE 0x40000000
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 .code64
Jiri Olsaea714542011-03-07 19:10:39 +010059 .section .entry.text, "ax"
60
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020061
Andi Kleendc37db42005-04-16 15:25:05 -070062#ifndef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define retint_kernel retint_restore_args
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010064#endif
Ingo Molnar2601e642006-07-03 00:24:45 -070065
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010066#ifdef CONFIG_PARAVIRT
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -040067ENTRY(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010068 swapgs
69 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +030070ENDPROC(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010071#endif /* CONFIG_PARAVIRT */
72
Ingo Molnar2601e642006-07-03 00:24:45 -070073
Denys Vlasenkof2db9382015-02-26 14:40:30 -080074.macro TRACE_IRQS_IRETQ
Ingo Molnar2601e642006-07-03 00:24:45 -070075#ifdef CONFIG_TRACE_IRQFLAGS
Denys Vlasenkof2db9382015-02-26 14:40:30 -080076 bt $9,EFLAGS(%rsp) /* interrupts off? */
Ingo Molnar2601e642006-07-03 00:24:45 -070077 jnc 1f
78 TRACE_IRQS_ON
791:
80#endif
81.endm
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/*
Steven Rostedt5963e312012-05-30 11:54:53 -040084 * When dynamic function tracer is enabled it will add a breakpoint
85 * to all locations that it is about to modify, sync CPUs, update
86 * all the code, sync CPUs, then remove the breakpoints. In this time
87 * if lockdep is enabled, it might jump back into the debug handler
88 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
89 *
90 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
91 * make sure the stack pointer does not get reset back to the top
92 * of the debug stack, and instead just reuses the current stack.
93 */
94#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
95
96.macro TRACE_IRQS_OFF_DEBUG
97 call debug_stack_set_zero
98 TRACE_IRQS_OFF
99 call debug_stack_reset
100.endm
101
102.macro TRACE_IRQS_ON_DEBUG
103 call debug_stack_set_zero
104 TRACE_IRQS_ON
105 call debug_stack_reset
106.endm
107
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800108.macro TRACE_IRQS_IRETQ_DEBUG
109 bt $9,EFLAGS(%rsp) /* interrupts off? */
Steven Rostedt5963e312012-05-30 11:54:53 -0400110 jnc 1f
111 TRACE_IRQS_ON_DEBUG
1121:
113.endm
114
115#else
116# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
117# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
118# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
119#endif
120
121/*
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100122 * C code is not supposed to know that the iret frame is not populated.
123 * Every time a C function with an pt_regs argument is called from
124 * the SYSCALL based fast path FIXUP_TOP_OF_STACK is needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
126 * manipulation.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100127 */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100128 .macro FIXUP_TOP_OF_STACK tmp offset=0
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100129 movq $__USER_DS,SS+\offset(%rsp)
130 movq $__USER_CS,CS+\offset(%rsp)
Andy Lutomirski0fcedc82015-01-16 16:19:27 -0800131 movq RIP+\offset(%rsp),\tmp /* get rip */
132 movq \tmp,RCX+\offset(%rsp) /* copy it to rcx as sysret would do */
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100133 movq EFLAGS+\offset(%rsp),\tmp /* ditto for rflags->r11 */
134 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .endm
136
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100137 .macro RESTORE_TOP_OF_STACK tmp offset=0
Denys Vlasenko263042e2015-03-09 19:39:23 +0100138 /* nothing to do */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .endm
140
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100141/*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800142 * empty frame
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100143 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100144 .macro EMPTY_FRAME start=1 offset=0
145 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100146 CFI_STARTPROC simple
147 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100148 CFI_DEF_CFA rsp,8+\offset
149 .else
150 CFI_DEF_CFA_OFFSET 8+\offset
151 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100152 .endm
153
154/*
155 * initial frame state for interrupts (and exceptions without error code)
156 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100157 .macro INTR_FRAME start=1 offset=0
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800158 EMPTY_FRAME \start, 5*8+\offset
159 /*CFI_REL_OFFSET ss, 4*8+\offset*/
160 CFI_REL_OFFSET rsp, 3*8+\offset
161 /*CFI_REL_OFFSET rflags, 2*8+\offset*/
162 /*CFI_REL_OFFSET cs, 1*8+\offset*/
163 CFI_REL_OFFSET rip, 0*8+\offset
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100164 .endm
165
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100166/*
167 * initial frame state for exceptions with error code (and interrupts
168 * with vector already pushed)
169 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100170 .macro XCPT_FRAME start=1 offset=0
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800171 INTR_FRAME \start, 1*8+\offset
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100172 .endm
173
174/*
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800175 * frame that enables passing a complete pt_regs to a C function.
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100176 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800177 .macro DEFAULT_FRAME start=1 offset=0
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800178 XCPT_FRAME \start, ORIG_RAX+\offset
179 CFI_REL_OFFSET rdi, RDI+\offset
180 CFI_REL_OFFSET rsi, RSI+\offset
181 CFI_REL_OFFSET rdx, RDX+\offset
182 CFI_REL_OFFSET rcx, RCX+\offset
183 CFI_REL_OFFSET rax, RAX+\offset
184 CFI_REL_OFFSET r8, R8+\offset
185 CFI_REL_OFFSET r9, R9+\offset
186 CFI_REL_OFFSET r10, R10+\offset
187 CFI_REL_OFFSET r11, R11+\offset
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100188 CFI_REL_OFFSET rbx, RBX+\offset
189 CFI_REL_OFFSET rbp, RBP+\offset
190 CFI_REL_OFFSET r12, R12+\offset
191 CFI_REL_OFFSET r13, R13+\offset
192 CFI_REL_OFFSET r14, R14+\offset
193 CFI_REL_OFFSET r15, R15+\offset
194 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/*
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800197 * 64bit SYSCALL instruction entry. Up to 6 arguments in registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 *
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800199 * 64bit SYSCALL saves rip to rcx, clears rflags.RF, then saves rflags to r11,
200 * then loads new ss, cs, and rip from previously programmed MSRs.
201 * rflags gets masked by a value from another MSR (so CLD and CLAC
202 * are not needed). SYSCALL does not save anything on the stack
203 * and does not change rsp.
204 *
205 * Registers on entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 * rax system call number
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800207 * rcx return address
208 * r11 saved rflags (note: r11 is callee-clobbered register in C ABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * rdi arg0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100211 * rdx arg2
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800212 * r10 arg3 (needs to be moved to rcx to conform to C ABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 * r8 arg4
214 * r9 arg5
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800215 * (note: r12-r15,rbp,rbx are callee-preserved in C ABI)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100216 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 * Interrupts are off on entry.
218 * Only called from user space.
219 *
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100220 * When user can change pt_regs->foo always force IRET. That is because
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200221 * it deals with uncanonical addresses better. SYSRET has trouble
222 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100223 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200226 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200227 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900228 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200229 CFI_REGISTER rip,rcx
230 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100231 SWAPGS_UNSAFE_STACK
232 /*
233 * A hypervisor implementation might want to use a label
234 * after the swapgs, so that it can do the swapgs
235 * for the guest and jump here on syscall.
236 */
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000237GLOBAL(system_call_after_swapgs)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100238
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100239 /*
Ingo Molnarc38e5032015-03-17 14:42:59 +0100240 * We use 'rsp_scratch' as a scratch register, hence this block must execute
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100241 * atomically in the face of possible interrupt-driven task preemption,
Ingo Molnarc38e5032015-03-17 14:42:59 +0100242 * so we can enable interrupts only after we're done with using rsp_scratch:
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100243 */
Ingo Molnarc38e5032015-03-17 14:42:59 +0100244 movq %rsp,PER_CPU_VAR(rsp_scratch)
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800245 /* kernel_stack is set so that 5 slots (iret frame) are preallocated */
Brian Gerst9af45652009-01-19 00:38:58 +0900246 movq PER_CPU_VAR(kernel_stack),%rsp
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800247 ALLOC_PT_GPREGS_ON_STACK 8 /* +8: space for orig_ax */
Denys Vlasenko263042e2015-03-09 19:39:23 +0100248 movq %rcx,RIP(%rsp)
Ingo Molnarc38e5032015-03-17 14:42:59 +0100249 movq PER_CPU_VAR(rsp_scratch),%rcx
Denys Vlasenko263042e2015-03-09 19:39:23 +0100250 movq %r11,EFLAGS(%rsp)
251 movq %rcx,RSP(%rsp)
Denys Vlasenko33db1fd2015-03-17 14:52:24 +0100252 /*
253 * No need to follow this irqs off/on section - it's straight
254 * and short:
255 */
256 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko263042e2015-03-09 19:39:23 +0100257 movq_cfi rax,ORIG_RAX
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100258 SAVE_C_REGS_EXCEPT_RAX_RCX_R11
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800259 movq $-ENOSYS,RAX(%rsp)
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800260 CFI_REL_OFFSET rip,RIP
261 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700263system_call_fastpath:
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800264#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800266#else
267 andl $__SYSCALL_MASK,%eax
268 cmpl $__NR_syscall_max,%eax
269#endif
Andy Lutomirski54eea992014-09-05 15:13:55 -0700270 ja ret_from_sys_call /* and return regs->ax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 movq %r10,%rcx
272 call *sys_call_table(,%rax,8) # XXX: rip relative
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800273 movq %rax,RAX(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274/*
275 * Syscall return path ending with SYSRET (fast path)
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100276 * Has incompletely filled pt_regs, iret frame is also incomplete.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100277 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278ret_from_sys_call:
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800279 testl $_TIF_ALLWORK_MASK,TI_flags+THREAD_INFO(%rsp,RIP)
Andy Lutomirski96b63522014-07-07 11:37:17 -0700280 jnz int_ret_from_sys_call_fixup /* Go the the slow path */
281
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200282 LOCKDEP_SYS_EXIT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100283 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700284 TRACE_IRQS_OFF
Jan Beulichbcddc012006-12-07 02:14:02 +0100285 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700286 /*
287 * sysretq will re-enable interrupts:
288 */
289 TRACE_IRQS_ON
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100290 RESTORE_C_REGS_EXCEPT_RCX_R11
291 movq RIP(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200292 CFI_REGISTER rip,rcx
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100293 movq EFLAGS(%rsp),%r11
Jan Beulich7effaa82005-09-12 18:49:24 +0200294 /*CFI_REGISTER rflags,r11*/
Denys Vlasenko263042e2015-03-09 19:39:23 +0100295 movq RSP(%rsp),%rsp
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800296 /*
297 * 64bit SYSRET restores rip from rcx,
298 * rflags from r11 (but RF and VM bits are forced to 0),
299 * cs and ss are loaded from MSRs.
300 */
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400301 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Jan Beulichbcddc012006-12-07 02:14:02 +0100303 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Andy Lutomirski96b63522014-07-07 11:37:17 -0700305int_ret_from_sys_call_fixup:
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800306 FIXUP_TOP_OF_STACK %r11
Andy Lutomirski96b63522014-07-07 11:37:17 -0700307 jmp int_ret_from_sys_call
Roland McGrath86a1c342008-06-23 15:37:04 -0700308
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100309 /* Do syscall entry tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100310tracesys:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800311 movq %rsp, %rdi
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700312 movq $AUDIT_ARCH_X86_64, %rsi
313 call syscall_trace_enter_phase1
314 test %rax, %rax
315 jnz tracesys_phase2 /* if needed, run the slow path */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800316 RESTORE_C_REGS_EXCEPT_RAX /* else restore clobbered regs */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800317 movq ORIG_RAX(%rsp), %rax
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700318 jmp system_call_fastpath /* and return to the fast path */
319
320tracesys_phase2:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800321 SAVE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 FIXUP_TOP_OF_STACK %rdi
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700323 movq %rsp, %rdi
324 movq $AUDIT_ARCH_X86_64, %rsi
325 movq %rax,%rdx
326 call syscall_trace_enter_phase2
327
Roland McGrathd4d67152008-07-09 02:38:07 -0700328 /*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800329 * Reload registers from stack in case ptrace changed them.
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700330 * We don't reload %rax because syscall_trace_entry_phase2() returned
Roland McGrathd4d67152008-07-09 02:38:07 -0700331 * the value it wants us to use in the table lookup.
332 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800333 RESTORE_C_REGS_EXCEPT_RAX
334 RESTORE_EXTRA_REGS
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800335#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800337#else
338 andl $__SYSCALL_MASK,%eax
339 cmpl $__NR_syscall_max,%eax
340#endif
Andy Lutomirski54eea992014-09-05 15:13:55 -0700341 ja int_ret_from_sys_call /* RAX(%rsp) is already set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 movq %r10,%rcx /* fixup for C */
343 call *sys_call_table(,%rax,8)
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800344 movq %rax,RAX(%rsp)
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100345 /* Use IRET because user could have changed pt_regs->foo */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100346
347/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 * Syscall return path ending with IRET.
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100349 * Has correct iret frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100350 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300351GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100352 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700353 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 movl $_TIF_ALLWORK_MASK,%edi
355 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300356GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200357 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300359 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 andl %edi,%edx
361 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300362 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 jmp retint_swapgs
364
365 /* Either reschedule or signal or syscall exit tracking needed. */
366 /* First do a reschedule test. */
367 /* edx: work, edi: workmask */
368int_careful:
369 bt $TIF_NEED_RESCHED,%edx
370 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700371 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100372 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100373 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200374 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100375 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100376 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700377 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 jmp int_with_check
379
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100380 /* handle signals and tracing -- both require a full pt_regs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700382 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100383 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800384 SAVE_EXTRA_REGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100385 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700386 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100388 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100389 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100391 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700392 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100396 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 jz 1f
398 movq %rsp,%rdi # &ptregs -> arg1
399 xorl %esi,%esi # oldset -> arg2
400 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07004011: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402int_restore_rest:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800403 RESTORE_EXTRA_REGS
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100404 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700405 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 jmp int_with_check
407 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100408END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100409
Al Viro1d4b4b22012-10-22 22:34:11 -0400410 .macro FORK_LIKE func
411ENTRY(stub_\func)
412 CFI_STARTPROC
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800413 DEFAULT_FRAME 0, 8 /* offset 8: return address */
414 SAVE_EXTRA_REGS 8
Al Viro1d4b4b22012-10-22 22:34:11 -0400415 FIXUP_TOP_OF_STACK %r11, 8
Al Viro1d4b4b22012-10-22 22:34:11 -0400416 call sys_\func
417 RESTORE_TOP_OF_STACK %r11, 8
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800418 ret
Al Viro1d4b4b22012-10-22 22:34:11 -0400419 CFI_ENDPROC
420END(stub_\func)
421 .endm
422
423 FORK_LIKE clone
424 FORK_LIKE fork
425 FORK_LIKE vfork
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427ENTRY(stub_execve)
428 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100429 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800430 DEFAULT_FRAME 0
431 SAVE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 FIXUP_TOP_OF_STACK %r11
433 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800435 RESTORE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 jmp int_ret_from_sys_call
437 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200438END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100439
David Drysdale27d6ec72014-12-12 16:57:33 -0800440ENTRY(stub_execveat)
441 CFI_STARTPROC
442 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800443 DEFAULT_FRAME 0
444 SAVE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800445 FIXUP_TOP_OF_STACK %r11
446 call sys_execveat
447 RESTORE_TOP_OF_STACK %r11
448 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800449 RESTORE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800450 jmp int_ret_from_sys_call
451 CFI_ENDPROC
452END(stub_execveat)
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454/*
455 * sigreturn is special because it needs to restore all registers on return.
456 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100457 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458ENTRY(stub_rt_sigreturn)
459 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200460 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800461 DEFAULT_FRAME 0
462 SAVE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 FIXUP_TOP_OF_STACK %r11
464 call sys_rt_sigreturn
465 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800466 RESTORE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 jmp int_ret_from_sys_call
468 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200469END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800471#ifdef CONFIG_X86_X32_ABI
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800472ENTRY(stub_x32_rt_sigreturn)
473 CFI_STARTPROC
474 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800475 DEFAULT_FRAME 0
476 SAVE_EXTRA_REGS
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800477 FIXUP_TOP_OF_STACK %r11
478 call sys32_x32_rt_sigreturn
479 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800480 RESTORE_EXTRA_REGS
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800481 jmp int_ret_from_sys_call
482 CFI_ENDPROC
483END(stub_x32_rt_sigreturn)
484
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800485ENTRY(stub_x32_execve)
486 CFI_STARTPROC
487 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800488 DEFAULT_FRAME 0
489 SAVE_EXTRA_REGS
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800490 FIXUP_TOP_OF_STACK %r11
Al Viro6783eaa22012-08-02 23:05:11 +0400491 call compat_sys_execve
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800492 RESTORE_TOP_OF_STACK %r11
493 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800494 RESTORE_EXTRA_REGS
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800495 jmp int_ret_from_sys_call
496 CFI_ENDPROC
497END(stub_x32_execve)
498
David Drysdale27d6ec72014-12-12 16:57:33 -0800499ENTRY(stub_x32_execveat)
500 CFI_STARTPROC
501 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800502 DEFAULT_FRAME 0
503 SAVE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800504 FIXUP_TOP_OF_STACK %r11
505 call compat_sys_execveat
506 RESTORE_TOP_OF_STACK %r11
507 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800508 RESTORE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800509 jmp int_ret_from_sys_call
510 CFI_ENDPROC
511END(stub_x32_execveat)
512
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800513#endif
514
Jan Beulich7effaa82005-09-12 18:49:24 +0200515/*
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800516 * A newly forked process directly context switches into this address.
517 *
518 * rdi: prev task we switched from
519 */
520ENTRY(ret_from_fork)
521 DEFAULT_FRAME
522
523 LOCK ; btr $TIF_FORK,TI_flags(%r8)
524
525 pushq_cfi $0x0002
526 popfq_cfi # reset kernel eflags
527
528 call schedule_tail # rdi: 'prev' task parameter
529
530 GET_THREAD_INFO(%rcx)
531
532 RESTORE_EXTRA_REGS
533
534 testl $3,CS(%rsp) # from kernel_thread?
535 jz 1f
536
Andy Lutomirski1e3fbb82015-02-26 14:40:39 -0800537 /*
538 * By the time we get here, we have no idea whether our pt_regs,
539 * ti flags, and ti status came from the 64-bit SYSCALL fast path,
540 * the slow path, or one of the ia32entry paths.
541 * Use int_ret_from_sys_call to return, since it can safely handle
542 * all of the above.
543 */
544 jmp int_ret_from_sys_call
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800545
5461:
547 movq %rbp, %rdi
548 call *%rbx
549 movl $0, RAX(%rsp)
550 RESTORE_EXTRA_REGS
551 jmp int_ret_from_sys_call
552 CFI_ENDPROC
553END(ret_from_fork)
554
555/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800556 * Build the entry stubs and pointer table with some assembler magic.
557 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
558 * single cache line on all modern x86 implementations.
559 */
560 .section .init.rodata,"a"
561ENTRY(interrupt)
Jiri Olsaea714542011-03-07 19:10:39 +0100562 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800563 .p2align 5
564 .p2align CONFIG_X86_L1_CACHE_SHIFT
565ENTRY(irq_entries_start)
566 INTR_FRAME
567vector=FIRST_EXTERNAL_VECTOR
Jan Beulich2414e022014-11-03 08:39:43 +0000568.rept (FIRST_SYSTEM_VECTOR-FIRST_EXTERNAL_VECTOR+6)/7
H. Peter Anvin939b7872008-11-11 13:51:52 -0800569 .balign 32
570 .rept 7
Jan Beulich2414e022014-11-03 08:39:43 +0000571 .if vector < FIRST_SYSTEM_VECTOR
H. Peter Anvin86655962008-11-12 10:27:35 -0800572 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800573 CFI_ADJUST_CFA_OFFSET -8
574 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01005751: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800576 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800577 jmp 2f
578 .endif
579 .previous
580 .quad 1b
Jiri Olsaea714542011-03-07 19:10:39 +0100581 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800582vector=vector+1
583 .endif
584 .endr
5852: jmp common_interrupt
586.endr
587 CFI_ENDPROC
588END(irq_entries_start)
589
590.previous
591END(interrupt)
592.previous
593
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100594/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 * Interrupt entry/exit.
596 *
597 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100598 *
599 * Entry runs with interrupts off.
600 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100602/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 .macro interrupt func
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100604 cld
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800605 /*
606 * Since nothing in interrupt handling code touches r12...r15 members
607 * of "struct pt_regs", and since interrupts can nest, we can save
608 * four stack slots and simultaneously provide
609 * an unwind-friendly stack layout by saving "truncated" pt_regs
610 * exactly up to rbp slot, without these members.
611 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800612 ALLOC_PT_GPREGS_ON_STACK -RBP
613 SAVE_C_REGS -RBP
614 /* this goes to 0(%rsp) for unwinder, not for saving the value: */
615 SAVE_EXTRA_REGS_RBP -RBP
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100616
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800617 leaq -RBP(%rsp),%rdi /* arg1 for \func (pointer to pt_regs) */
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100618
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800619 testl $3, CS-RBP(%rsp)
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100620 je 1f
621 SWAPGS
Denys Vlasenko76f5df42015-02-26 14:40:27 -08006221:
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100623 /*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800624 * Save previous stack pointer, optionally switch to interrupt stack.
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100625 * irq_count is used to check if a CPU is already on an interrupt stack
626 * or not. While this is essentially redundant with preempt_count it is
627 * a little cheaper to use a separate counter in the PDA (short of
628 * moving irq_enter into assembly, which would be too much work)
629 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800630 movq %rsp, %rsi
631 incl PER_CPU_VAR(irq_count)
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100632 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
633 CFI_DEF_CFA_REGISTER rsi
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100634 pushq %rsi
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800635 /*
636 * For debugger:
637 * "CFA (Current Frame Address) is the value on stack + offset"
638 */
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100639 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800640 0x77 /* DW_OP_breg7 (rsp) */, 0, \
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100641 0x06 /* DW_OP_deref */, \
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800642 0x08 /* DW_OP_const1u */, SIZEOF_PTREGS-RBP, \
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100643 0x22 /* DW_OP_plus */
644 /* We entered an interrupt context - irqs are off: */
645 TRACE_IRQS_OFF
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 call \func
648 .endm
649
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100650 /*
651 * The interrupt stubs push (~vector+0x80) onto the stack and
652 * then jump to common_interrupt.
653 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800654 .p2align CONFIG_X86_L1_CACHE_SHIFT
655common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200656 XCPT_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000657 ASM_CLAC
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100658 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 interrupt do_IRQ
Ingo Molnarc38e5032015-03-17 14:42:59 +0100660 /* 0(%rsp): rsp_scratch */
Jan Beulich7effaa82005-09-12 18:49:24 +0200661ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100662 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700663 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900664 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100665
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200666 /* Restore saved previous stack */
667 popq %rsi
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800668 CFI_DEF_CFA rsi,SIZEOF_PTREGS-RBP /* reg/off reset after def_cfa_expr */
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800669 /* return code expects complete pt_regs - adjust rsp accordingly: */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800670 leaq -RBP(%rsi),%rsp
Jan Beulich7effaa82005-09-12 18:49:24 +0200671 CFI_DEF_CFA_REGISTER rsp
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800672 CFI_ADJUST_CFA_OFFSET RBP
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100673
Jan Beulich7effaa82005-09-12 18:49:24 +0200674exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 GET_THREAD_INFO(%rcx)
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800676 testl $3,CS(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 /* Interrupt came from user space */
680 /*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800681 * Has a correct top of stack.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100683 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684retint_with_reschedule:
685 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200686retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200687 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300688 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200690 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200692
693retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700694 /*
695 * The iretq could re-enable interrupts:
696 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100697 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700698 TRACE_IRQS_IRETQ
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700699
700 /*
701 * Try to use SYSRET instead of IRET if we're returning to
702 * a completely clean 64-bit userspace context.
703 */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800704 movq RCX(%rsp),%rcx
705 cmpq %rcx,RIP(%rsp) /* RCX == RIP */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700706 jne opportunistic_sysret_failed
707
708 /*
709 * On Intel CPUs, sysret with non-canonical RCX/RIP will #GP
710 * in kernel space. This essentially lets the user take over
711 * the kernel, since userspace controls RSP. It's not worth
712 * testing for canonicalness exactly -- this check detects any
713 * of the 17 high bits set, which is true for non-canonical
714 * or kernel addresses. (This will pessimize vsyscall=native.
715 * Big deal.)
716 *
717 * If virtual addresses ever become wider, this will need
718 * to be updated to remain correct on both old and new CPUs.
719 */
720 .ifne __VIRTUAL_MASK_SHIFT - 47
721 .error "virtual address width changed -- sysret checks need update"
722 .endif
723 shr $__VIRTUAL_MASK_SHIFT, %rcx
724 jnz opportunistic_sysret_failed
725
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800726 cmpq $__USER_CS,CS(%rsp) /* CS must match SYSRET */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700727 jne opportunistic_sysret_failed
728
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800729 movq R11(%rsp),%r11
730 cmpq %r11,EFLAGS(%rsp) /* R11 == RFLAGS */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700731 jne opportunistic_sysret_failed
732
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800733 testq $X86_EFLAGS_RF,%r11 /* sysret can't restore RF */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700734 jnz opportunistic_sysret_failed
735
736 /* nothing to check for RSP */
737
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800738 cmpq $__USER_DS,SS(%rsp) /* SS must match SYSRET */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700739 jne opportunistic_sysret_failed
740
741 /*
742 * We win! This label is here just for ease of understanding
743 * perf profiles. Nothing jumps here.
744 */
745irq_return_via_sysret:
746 CFI_REMEMBER_STATE
Denys Vlasenkod441c1f2015-02-26 14:40:38 -0800747 /* r11 is already restored (see code above) */
748 RESTORE_C_REGS_EXCEPT_R11
749 movq RSP(%rsp),%rsp
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700750 USERGS_SYSRET64
751 CFI_RESTORE_STATE
752
753opportunistic_sysret_failed:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100754 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700755 jmp restore_args
756
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200757retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100758 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700759 /*
760 * The iretq could re-enable interrupts:
761 */
762 TRACE_IRQS_IRETQ
763restore_args:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800764 RESTORE_C_REGS
765 REMOVE_PT_GPREGS_FROM_STACK 8
Ingo Molnar3701d8632008-02-09 23:24:08 +0100766
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200767irq_return:
Andy Lutomirski7209a752014-07-23 08:34:11 -0700768 INTERRUPT_RETURN
769
770ENTRY(native_iret)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700771 /*
772 * Are we returning to a stack segment from the LDT? Note: in
773 * 64-bit mode SS:RSP on the exception stack is always valid.
774 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700775#ifdef CONFIG_X86_ESPFIX64
H. Peter Anvin3891a042014-04-29 16:46:09 -0700776 testb $4,(SS-RIP)(%rsp)
Andy Lutomirski7209a752014-07-23 08:34:11 -0700777 jnz native_irq_return_ldt
H. Peter Anvin34273f42014-05-04 10:36:22 -0700778#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700779
Andy Lutomirskiaf726f22014-11-22 18:00:31 -0800780.global native_irq_return_iret
Andy Lutomirski7209a752014-07-23 08:34:11 -0700781native_irq_return_iret:
Andy Lutomirskib645af22014-11-22 18:00:33 -0800782 /*
783 * This may fault. Non-paranoid faults on return to userspace are
784 * handled by fixup_bad_iret. These include #SS, #GP, and #NP.
785 * Double-faults due to espfix64 are handled in do_double_fault.
786 * Other faults here are fatal.
787 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 iretq
Ingo Molnar3701d8632008-02-09 23:24:08 +0100789
H. Peter Anvin34273f42014-05-04 10:36:22 -0700790#ifdef CONFIG_X86_ESPFIX64
Andy Lutomirski7209a752014-07-23 08:34:11 -0700791native_irq_return_ldt:
H. Peter Anvin3891a042014-04-29 16:46:09 -0700792 pushq_cfi %rax
793 pushq_cfi %rdi
794 SWAPGS
795 movq PER_CPU_VAR(espfix_waddr),%rdi
796 movq %rax,(0*8)(%rdi) /* RAX */
797 movq (2*8)(%rsp),%rax /* RIP */
798 movq %rax,(1*8)(%rdi)
799 movq (3*8)(%rsp),%rax /* CS */
800 movq %rax,(2*8)(%rdi)
801 movq (4*8)(%rsp),%rax /* RFLAGS */
802 movq %rax,(3*8)(%rdi)
803 movq (6*8)(%rsp),%rax /* SS */
804 movq %rax,(5*8)(%rdi)
805 movq (5*8)(%rsp),%rax /* RSP */
806 movq %rax,(4*8)(%rdi)
807 andl $0xffff0000,%eax
808 popq_cfi %rdi
809 orq PER_CPU_VAR(espfix_stack),%rax
810 SWAPGS
811 movq %rax,%rsp
812 popq_cfi %rax
Andy Lutomirski7209a752014-07-23 08:34:11 -0700813 jmp native_irq_return_iret
H. Peter Anvin34273f42014-05-04 10:36:22 -0700814#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700815
Jan Beulich7effaa82005-09-12 18:49:24 +0200816 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200818 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 bt $TIF_NEED_RESCHED,%edx
820 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700821 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100822 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100823 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200824 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100825 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100827 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700828 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100832 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700833 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700834 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100835 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800836 SAVE_EXTRA_REGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100837 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700838 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 movq %rsp,%rdi # &pt_regs
840 call do_notify_resume
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800841 RESTORE_EXTRA_REGS
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100842 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700843 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -0700844 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -0700845 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847#ifdef CONFIG_PREEMPT
848 /* Returning to kernel space. Check if we need preemption */
849 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +0200850ENTRY(retint_kernel)
Peter Zijlstrac2daa3b2013-08-14 14:51:00 +0200851 cmpl $0,PER_CPU_VAR(__preempt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 jnz retint_restore_args
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800853 bt $9,EFLAGS(%rsp) /* interrupts off? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 jnc retint_restore_args
855 call preempt_schedule_irq
856 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100857#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200859END(common_interrupt)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700860
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400861/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100863 */
Seiji Aguchicf910e82013-06-20 11:46:53 -0400864.macro apicinterrupt3 num sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100865ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +0200866 INTR_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000867 ASM_CLAC
Jan Beulichdf5d1872010-09-02 14:07:16 +0100868 pushq_cfi $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +0000869.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100870 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 jmp ret_from_intr
872 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100873END(\sym)
874.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100875
Seiji Aguchicf910e82013-06-20 11:46:53 -0400876#ifdef CONFIG_TRACING
877#define trace(sym) trace_##sym
878#define smp_trace(sym) smp_trace_##sym
879
880.macro trace_apicinterrupt num sym
881apicinterrupt3 \num trace(\sym) smp_trace(\sym)
882.endm
883#else
884.macro trace_apicinterrupt num sym do_sym
885.endm
886#endif
887
888.macro apicinterrupt num sym do_sym
889apicinterrupt3 \num \sym \do_sym
890trace_apicinterrupt \num \sym
891.endm
892
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100893#ifdef CONFIG_SMP
Seiji Aguchicf910e82013-06-20 11:46:53 -0400894apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100895 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Seiji Aguchicf910e82013-06-20 11:46:53 -0400896apicinterrupt3 REBOOT_VECTOR \
Andi Kleen4ef702c2009-05-27 21:56:52 +0200897 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898#endif
899
Nick Piggin03b48632009-01-20 04:36:04 +0100900#ifdef CONFIG_X86_UV
Seiji Aguchicf910e82013-06-20 11:46:53 -0400901apicinterrupt3 UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100902 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100903#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100904apicinterrupt LOCAL_TIMER_VECTOR \
905 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500906apicinterrupt X86_PLATFORM_IPI_VECTOR \
907 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Yang Zhangd78f2662013-04-11 19:25:11 +0800909#ifdef CONFIG_HAVE_KVM
Seiji Aguchicf910e82013-06-20 11:46:53 -0400910apicinterrupt3 POSTED_INTR_VECTOR \
Yang Zhangd78f2662013-04-11 19:25:11 +0800911 kvm_posted_intr_ipi smp_kvm_posted_intr_ipi
912#endif
913
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400914#ifdef CONFIG_X86_MCE_THRESHOLD
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100915apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +0200916 threshold_interrupt smp_threshold_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400917#endif
918
919#ifdef CONFIG_X86_THERMAL_VECTOR
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100920apicinterrupt THERMAL_APIC_VECTOR \
921 thermal_interrupt smp_thermal_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400922#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100924#ifdef CONFIG_SMP
925apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
926 call_function_single_interrupt smp_call_function_single_interrupt
927apicinterrupt CALL_FUNCTION_VECTOR \
928 call_function_interrupt smp_call_function_interrupt
929apicinterrupt RESCHEDULE_VECTOR \
930 reschedule_interrupt smp_reschedule_interrupt
931#endif
932
933apicinterrupt ERROR_APIC_VECTOR \
934 error_interrupt smp_error_interrupt
935apicinterrupt SPURIOUS_APIC_VECTOR \
936 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100937
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800938#ifdef CONFIG_IRQ_WORK
939apicinterrupt IRQ_WORK_VECTOR \
940 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +0100941#endif
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943/*
944 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100945 */
Andy Lutomirski9b476682015-03-05 19:19:07 -0800946#define CPU_TSS_IST(x) PER_CPU_VAR(cpu_tss) + (TSS_ist + ((x) - 1) * 8)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700947
948.macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100949ENTRY(\sym)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700950 /* Sanity check */
951 .if \shift_ist != -1 && \paranoid == 0
952 .error "using shift_ist requires paranoid=1"
953 .endif
954
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700955 .if \has_error_code
956 XCPT_FRAME
957 .else
Jan Beulich7effaa82005-09-12 18:49:24 +0200958 INTR_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700959 .endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Jan Beulichee4eb872012-11-02 11:18:39 +0000961 ASM_CLAC
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +0100962 PARAVIRT_ADJUST_EXCEPTION_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700963
964 .ifeq \has_error_code
965 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
966 .endif
967
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800968 ALLOC_PT_GPREGS_ON_STACK
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700969
970 .if \paranoid
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800971 .if \paranoid == 1
972 CFI_REMEMBER_STATE
973 testl $3, CS(%rsp) /* If coming from userspace, switch */
974 jnz 1f /* stacks. */
975 .endif
Denys Vlasenkoebfc4532015-02-26 14:40:34 -0800976 call paranoid_entry
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700977 .else
978 call error_entry
979 .endif
Denys Vlasenkoebfc4532015-02-26 14:40:34 -0800980 /* returned flag: ebx=0: need swapgs on exit, ebx=1: don't need it */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700981
Andy Lutomirski1bd24ef2014-05-21 15:07:07 -0700982 DEFAULT_FRAME 0
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700983
984 .if \paranoid
Andy Lutomirski577ed452014-05-21 15:07:09 -0700985 .if \shift_ist != -1
986 TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */
987 .else
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +0100988 TRACE_IRQS_OFF
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700989 .endif
Andy Lutomirski577ed452014-05-21 15:07:09 -0700990 .endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700991
992 movq %rsp,%rdi /* pt_regs pointer */
993
994 .if \has_error_code
995 movq ORIG_RAX(%rsp),%rsi /* get error code */
996 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
997 .else
998 xorl %esi,%esi /* no error code */
999 .endif
1000
Andy Lutomirski577ed452014-05-21 15:07:09 -07001001 .if \shift_ist != -1
Andy Lutomirski9b476682015-03-05 19:19:07 -08001002 subq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001003 .endif
1004
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001005 call \do_sym
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001006
Andy Lutomirski577ed452014-05-21 15:07:09 -07001007 .if \shift_ist != -1
Andy Lutomirski9b476682015-03-05 19:19:07 -08001008 addq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001009 .endif
1010
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001011 /* these procedures expect "no swapgs" flag in ebx */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001012 .if \paranoid
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001013 jmp paranoid_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001014 .else
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001015 jmp error_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001016 .endif
1017
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001018 .if \paranoid == 1
1019 CFI_RESTORE_STATE
1020 /*
1021 * Paranoid entry from userspace. Switch stacks and treat it
1022 * as a normal entry. This means that paranoid handlers
1023 * run in real process context if user_mode(regs).
1024 */
10251:
1026 call error_entry
1027
1028 DEFAULT_FRAME 0
1029
1030 movq %rsp,%rdi /* pt_regs pointer */
1031 call sync_regs
1032 movq %rax,%rsp /* switch stack */
1033
1034 movq %rsp,%rdi /* pt_regs pointer */
1035
1036 .if \has_error_code
1037 movq ORIG_RAX(%rsp),%rsi /* get error code */
1038 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1039 .else
1040 xorl %esi,%esi /* no error code */
1041 .endif
1042
1043 call \do_sym
1044
1045 jmp error_exit /* %ebx: no swapgs flag */
1046 .endif
1047
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001048 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001049END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001050.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001051
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001052#ifdef CONFIG_TRACING
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001053.macro trace_idtentry sym do_sym has_error_code:req
1054idtentry trace(\sym) trace(\do_sym) has_error_code=\has_error_code
1055idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001056.endm
1057#else
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001058.macro trace_idtentry sym do_sym has_error_code:req
1059idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001060.endm
1061#endif
1062
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001063idtentry divide_error do_divide_error has_error_code=0
1064idtentry overflow do_overflow has_error_code=0
1065idtentry bounds do_bounds has_error_code=0
1066idtentry invalid_op do_invalid_op has_error_code=0
1067idtentry device_not_available do_device_not_available has_error_code=0
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001068idtentry double_fault do_double_fault has_error_code=1 paranoid=2
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001069idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0
1070idtentry invalid_TSS do_invalid_TSS has_error_code=1
1071idtentry segment_not_present do_segment_not_present has_error_code=1
1072idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0
1073idtentry coprocessor_error do_coprocessor_error has_error_code=0
1074idtentry alignment_check do_alignment_check has_error_code=1
1075idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001076
Ingo Molnar2601e642006-07-03 00:24:45 -07001077
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001078 /* Reload gs selector with exception handling */
1079 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001080ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001081 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001082 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001083 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001084 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001085gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001086 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070010872: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001088 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001089 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001090 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001091 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001092END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001093
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001094 _ASM_EXTABLE(gs_change,bad_gs)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001095 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001097bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001098 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001100 movl %eax,%gs
1101 jmp 2b
1102 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001103
Andi Kleen26995002006-08-02 22:37:28 +02001104/* Call softirq on interrupt stack. Interrupts are off. */
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001105ENTRY(do_softirq_own_stack)
Jan Beulich7effaa82005-09-12 18:49:24 +02001106 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001107 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001108 CFI_REL_OFFSET rbp,0
1109 mov %rsp,%rbp
1110 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001111 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001112 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001113 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001114 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001115 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001116 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001117 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001118 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001119 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001120 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001121 CFI_ENDPROC
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001122END(do_softirq_own_stack)
Andi Kleen75154f42007-06-23 02:29:25 +02001123
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001124#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001125idtentry xen_hypervisor_callback xen_do_hypervisor_callback has_error_code=0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001126
1127/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001128 * A note on the "critical region" in our callback handler.
1129 * We want to avoid stacking callback handlers due to events occurring
1130 * during handling of the last event. To do this, we keep events disabled
1131 * until we've done all processing. HOWEVER, we must enable events before
1132 * popping the stack frame (can't be done atomically) and so it would still
1133 * be possible to get enough handler activations to overflow the stack.
1134 * Although unlikely, bugs of that kind are hard to track down, so we'd
1135 * like to avoid the possibility.
1136 * So, on entry to the handler we detect whether we interrupted an
1137 * existing activation in its critical region -- if so, we pop the current
1138 * activation and restart the handler using the previous one.
1139 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001140ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1141 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001142/*
1143 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1144 * see the correct pointer to the pt_regs
1145 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001146 movq %rdi, %rsp # we don't return, adjust the stack frame
1147 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001148 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900114911: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001150 movq %rsp,%rbp
1151 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001152 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001153 pushq %rbp # backlink for old unwinder
1154 call xen_evtchn_do_upcall
1155 popq %rsp
1156 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001157 decl PER_CPU_VAR(irq_count)
David Vrabelfdfd8112015-02-19 15:23:17 +00001158#ifndef CONFIG_PREEMPT
1159 call xen_maybe_preempt_hcall
1160#endif
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001161 jmp error_exit
1162 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001163END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001164
1165/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001166 * Hypervisor uses this for application faults while it executes.
1167 * We get here for two reasons:
1168 * 1. Fault while reloading DS, ES, FS or GS
1169 * 2. Fault while executing IRET
1170 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1171 * registers that could be reloaded and zeroed the others.
1172 * Category 2 we fix up by killing the current process. We cannot use the
1173 * normal Linux return path in this case because if we use the IRET hypercall
1174 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1175 * We distinguish between categories by comparing each saved segment register
1176 * with its current contents: any discrepancy means we in category 1.
1177 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001178ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001179 INTR_FRAME 1 (6*8)
1180 /*CFI_REL_OFFSET gs,GS*/
1181 /*CFI_REL_OFFSET fs,FS*/
1182 /*CFI_REL_OFFSET es,ES*/
1183 /*CFI_REL_OFFSET ds,DS*/
1184 CFI_REL_OFFSET r11,8
1185 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001186 movw %ds,%cx
1187 cmpw %cx,0x10(%rsp)
1188 CFI_REMEMBER_STATE
1189 jne 1f
1190 movw %es,%cx
1191 cmpw %cx,0x18(%rsp)
1192 jne 1f
1193 movw %fs,%cx
1194 cmpw %cx,0x20(%rsp)
1195 jne 1f
1196 movw %gs,%cx
1197 cmpw %cx,0x28(%rsp)
1198 jne 1f
1199 /* All segments match their saved values => Category 2 (Bad IRET). */
1200 movq (%rsp),%rcx
1201 CFI_RESTORE rcx
1202 movq 8(%rsp),%r11
1203 CFI_RESTORE r11
1204 addq $0x30,%rsp
1205 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001206 pushq_cfi $0 /* RIP */
1207 pushq_cfi %r11
1208 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001209 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001210 CFI_RESTORE_STATE
12111: /* Segment mismatch => Category 1 (Bad segment). Retry the 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
David Vrabela349e23d12012-10-19 17:29:07 +01001218 pushq_cfi $-1 /* orig_ax = -1 => not a system call */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001219 ALLOC_PT_GPREGS_ON_STACK
1220 SAVE_C_REGS
1221 SAVE_EXTRA_REGS
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001222 jmp error_exit
1223 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001224END(xen_failsafe_callback)
1225
Seiji Aguchicf910e82013-06-20 11:46:53 -04001226apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
Sheng Yang38e20b02010-05-14 12:40:51 +01001227 xen_hvm_callback_vector xen_evtchn_do_upcall
1228
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001229#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001230
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001231#if IS_ENABLED(CONFIG_HYPERV)
Seiji Aguchicf910e82013-06-20 11:46:53 -04001232apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001233 hyperv_callback_vector hyperv_vector_handler
1234#endif /* CONFIG_HYPERV */
1235
Andy Lutomirski577ed452014-05-21 15:07:09 -07001236idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1237idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
Andy Lutomirski6f442be2014-11-22 18:00:32 -08001238idtentry stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001239#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001240idtentry xen_debug do_debug has_error_code=0
1241idtentry xen_int3 do_int3 has_error_code=0
1242idtentry xen_stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001243#endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001244idtentry general_protection do_general_protection has_error_code=1
1245trace_idtentry page_fault do_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001246#ifdef CONFIG_KVM_GUEST
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001247idtentry async_page_fault do_async_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001248#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001249#ifdef CONFIG_X86_MCE
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001250idtentry machine_check has_error_code=0 paranoid=1 do_sym=*machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001251#endif
1252
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001253/*
1254 * Save all registers in pt_regs, and switch gs if needed.
1255 * Use slow, but surefire "are we in kernel?" check.
1256 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
1257 */
1258ENTRY(paranoid_entry)
1259 XCPT_FRAME 1 15*8
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001260 cld
1261 SAVE_C_REGS 8
1262 SAVE_EXTRA_REGS 8
1263 movl $1,%ebx
1264 movl $MSR_GS_BASE,%ecx
1265 rdmsr
1266 testl %edx,%edx
1267 js 1f /* negative -> in kernel */
1268 SWAPGS
1269 xorl %ebx,%ebx
12701: ret
1271 CFI_ENDPROC
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001272END(paranoid_entry)
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001273
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001274/*
1275 * "Paranoid" exit path from exception stack. This is invoked
1276 * only on return from non-NMI IST interrupts that came
1277 * from kernel space.
1278 *
1279 * We may be returning to very strange contexts (e.g. very early
1280 * in syscall entry), so checking for preemption here would
1281 * be complicated. Fortunately, we there's no good reason
1282 * to try to handle preemption here.
1283 */
1284/* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001285ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001286 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001287 DISABLE_INTERRUPTS(CLBR_NONE)
Steven Rostedt5963e312012-05-30 11:54:53 -04001288 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001289 testl %ebx,%ebx /* swapgs needed? */
Denys Vlasenko0d550832015-02-26 14:40:29 -08001290 jnz paranoid_exit_no_swapgs
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001291 TRACE_IRQS_IRETQ
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001292 SWAPGS_UNSAFE_STACK
Denys Vlasenko0d550832015-02-26 14:40:29 -08001293 jmp paranoid_exit_restore
1294paranoid_exit_no_swapgs:
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001295 TRACE_IRQS_IRETQ_DEBUG
Denys Vlasenko0d550832015-02-26 14:40:29 -08001296paranoid_exit_restore:
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001297 RESTORE_EXTRA_REGS
1298 RESTORE_C_REGS
1299 REMOVE_PT_GPREGS_FROM_STACK 8
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001300 INTERRUPT_RETURN
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001301 CFI_ENDPROC
1302END(paranoid_exit)
1303
1304/*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001305 * Save all registers in pt_regs, and switch gs if needed.
1306 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001307 */
1308ENTRY(error_entry)
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001309 XCPT_FRAME 1 15*8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001310 cld
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001311 SAVE_C_REGS 8
1312 SAVE_EXTRA_REGS 8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001313 xorl %ebx,%ebx
1314 testl $3,CS+8(%rsp)
1315 je error_kernelspace
1316error_swapgs:
1317 SWAPGS
1318error_sti:
1319 TRACE_IRQS_OFF
1320 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001321
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001322 /*
1323 * There are two places in the kernel that can potentially fault with
1324 * usergs. Handle them here. B stepping K8s sometimes report a
1325 * truncated RIP for IRET exceptions returning to compat mode. Check
1326 * for these here too.
1327 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001328error_kernelspace:
Jan Beulich3bab13b2014-06-25 14:11:22 +01001329 CFI_REL_OFFSET rcx, RCX+8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001330 incl %ebx
Andy Lutomirski7209a752014-07-23 08:34:11 -07001331 leaq native_irq_return_iret(%rip),%rcx
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001332 cmpq %rcx,RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001333 je error_bad_iret
Brian Gerstae24ffe2009-10-12 10:18:23 -04001334 movl %ecx,%eax /* zero extend */
1335 cmpq %rax,RIP+8(%rsp)
1336 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001337 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001338 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001339 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001340
1341bstep_iret:
1342 /* Fix truncated RIP */
1343 movq %rcx,RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001344 /* fall through */
1345
1346error_bad_iret:
1347 SWAPGS
1348 mov %rsp,%rdi
1349 call fixup_bad_iret
1350 mov %rax,%rsp
1351 decl %ebx /* Return to usergs */
1352 jmp error_sti
Jan Beuliche6b04b62010-09-02 13:52:45 +01001353 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001354END(error_entry)
1355
1356
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001357/* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001358ENTRY(error_exit)
1359 DEFAULT_FRAME
1360 movl %ebx,%eax
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001361 RESTORE_EXTRA_REGS
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001362 DISABLE_INTERRUPTS(CLBR_NONE)
1363 TRACE_IRQS_OFF
1364 GET_THREAD_INFO(%rcx)
1365 testl %eax,%eax
1366 jne retint_kernel
1367 LOCKDEP_SYS_EXIT_IRQ
1368 movl TI_flags(%rcx),%edx
1369 movl $_TIF_WORK_MASK,%edi
1370 andl %edi,%edx
1371 jnz retint_careful
1372 jmp retint_swapgs
1373 CFI_ENDPROC
1374END(error_exit)
1375
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001376/*
1377 * Test if a given stack is an NMI stack or not.
1378 */
1379 .macro test_in_nmi reg stack nmi_ret normal_ret
1380 cmpq %\reg, \stack
1381 ja \normal_ret
1382 subq $EXCEPTION_STKSZ, %\reg
1383 cmpq %\reg, \stack
1384 jb \normal_ret
1385 jmp \nmi_ret
1386 .endm
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001387
1388 /* runs on exception stack */
1389ENTRY(nmi)
1390 INTR_FRAME
1391 PARAVIRT_ADJUST_EXCEPTION_FRAME
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001392 /*
1393 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1394 * the iretq it performs will take us out of NMI context.
1395 * This means that we can have nested NMIs where the next
1396 * NMI is using the top of the stack of the previous NMI. We
1397 * can't let it execute because the nested NMI will corrupt the
1398 * stack of the previous NMI. NMI handlers are not re-entrant
1399 * anyway.
1400 *
1401 * To handle this case we do the following:
1402 * Check the a special location on the stack that contains
1403 * a variable that is set when NMIs are executing.
1404 * The interrupted task's stack is also checked to see if it
1405 * is an NMI stack.
1406 * If the variable is not set and the stack is not the NMI
1407 * stack then:
1408 * o Set the special variable on the stack
1409 * o Copy the interrupt frame into a "saved" location on the stack
1410 * o Copy the interrupt frame into a "copy" location on the stack
1411 * o Continue processing the NMI
1412 * If the variable is set or the previous stack is the NMI stack:
1413 * o Modify the "copy" location to jump to the repeate_nmi
1414 * o return back to the first NMI
1415 *
1416 * Now on exit of the first NMI, we first clear the stack variable
1417 * The NMI stack will tell any nested NMIs at that point that it is
1418 * nested. Then we pop the stack normally with iret, and if there was
1419 * a nested NMI that updated the copy interrupt stack frame, a
1420 * jump will be made to the repeat_nmi code that will handle the second
1421 * NMI.
1422 */
1423
1424 /* Use %rdx as out temp variable throughout */
1425 pushq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001426 CFI_REL_OFFSET rdx, 0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001427
1428 /*
Steven Rostedt45d5a162012-02-19 16:43:37 -05001429 * If %cs was not the kernel segment, then the NMI triggered in user
1430 * space, which means it is definitely not nested.
1431 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001432 cmpl $__KERNEL_CS, 16(%rsp)
Steven Rostedt45d5a162012-02-19 16:43:37 -05001433 jne first_nmi
1434
1435 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001436 * Check the special variable on the stack to see if NMIs are
1437 * executing.
1438 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001439 cmpl $1, -8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001440 je nested_nmi
1441
1442 /*
1443 * Now test if the previous stack was an NMI stack.
1444 * We need the double check. We check the NMI stack to satisfy the
1445 * race when the first NMI clears the variable before returning.
1446 * We check the variable because the first NMI could be in a
1447 * breakpoint routine using a breakpoint stack.
1448 */
1449 lea 6*8(%rsp), %rdx
1450 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
Jan Beulich62610912012-02-24 14:54:37 +00001451 CFI_REMEMBER_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001452
1453nested_nmi:
1454 /*
1455 * Do nothing if we interrupted the fixup in repeat_nmi.
1456 * It's about to repeat the NMI handler, so we are fine
1457 * with ignoring this one.
1458 */
1459 movq $repeat_nmi, %rdx
1460 cmpq 8(%rsp), %rdx
1461 ja 1f
1462 movq $end_repeat_nmi, %rdx
1463 cmpq 8(%rsp), %rdx
1464 ja nested_nmi_out
1465
14661:
1467 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
Salman Qazi28696f42012-10-01 17:29:25 -07001468 leaq -1*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001469 movq %rdx, %rsp
Salman Qazi28696f42012-10-01 17:29:25 -07001470 CFI_ADJUST_CFA_OFFSET 1*8
1471 leaq -10*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001472 pushq_cfi $__KERNEL_DS
1473 pushq_cfi %rdx
1474 pushfq_cfi
1475 pushq_cfi $__KERNEL_CS
1476 pushq_cfi $repeat_nmi
1477
1478 /* Put stack back */
Salman Qazi28696f42012-10-01 17:29:25 -07001479 addq $(6*8), %rsp
1480 CFI_ADJUST_CFA_OFFSET -6*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001481
1482nested_nmi_out:
1483 popq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001484 CFI_RESTORE rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001485
1486 /* No need to check faults here */
1487 INTERRUPT_RETURN
1488
Jan Beulich62610912012-02-24 14:54:37 +00001489 CFI_RESTORE_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001490first_nmi:
1491 /*
1492 * Because nested NMIs will use the pushed location that we
1493 * stored in rdx, we must keep that space available.
1494 * Here's what our stack frame will look like:
1495 * +-------------------------+
1496 * | original SS |
1497 * | original Return RSP |
1498 * | original RFLAGS |
1499 * | original CS |
1500 * | original RIP |
1501 * +-------------------------+
1502 * | temp storage for rdx |
1503 * +-------------------------+
1504 * | NMI executing variable |
1505 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001506 * | copied SS |
1507 * | copied Return RSP |
1508 * | copied RFLAGS |
1509 * | copied CS |
1510 * | copied RIP |
1511 * +-------------------------+
Salman Qazi28696f42012-10-01 17:29:25 -07001512 * | Saved SS |
1513 * | Saved Return RSP |
1514 * | Saved RFLAGS |
1515 * | Saved CS |
1516 * | Saved RIP |
1517 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001518 * | pt_regs |
1519 * +-------------------------+
1520 *
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001521 * The saved stack frame is used to fix up the copied stack frame
1522 * that a nested NMI may change to make the interrupted NMI iret jump
1523 * to the repeat_nmi. The original stack frame and the temp storage
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001524 * is also used by nested NMIs and can not be trusted on exit.
1525 */
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001526 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
Jan Beulich62610912012-02-24 14:54:37 +00001527 movq (%rsp), %rdx
1528 CFI_RESTORE rdx
1529
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001530 /* Set the NMI executing variable on the stack. */
1531 pushq_cfi $1
1532
Salman Qazi28696f42012-10-01 17:29:25 -07001533 /*
1534 * Leave room for the "copied" frame
1535 */
1536 subq $(5*8), %rsp
Jan Beulich444723d2013-01-24 09:27:31 +00001537 CFI_ADJUST_CFA_OFFSET 5*8
Salman Qazi28696f42012-10-01 17:29:25 -07001538
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001539 /* Copy the stack frame to the Saved frame */
1540 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001541 pushq_cfi 11*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001542 .endr
Denys Vlasenko911d2bb2015-02-26 14:40:36 -08001543 CFI_DEF_CFA_OFFSET 5*8
Jan Beulich62610912012-02-24 14:54:37 +00001544
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001545 /* Everything up to here is safe from nested NMIs */
1546
Jan Beulich62610912012-02-24 14:54:37 +00001547 /*
1548 * If there was a nested NMI, the first NMI's iret will return
1549 * here. But NMIs are still enabled and we can take another
1550 * nested NMI. The nested NMI checks the interrupted RIP to see
1551 * if it is between repeat_nmi and end_repeat_nmi, and if so
1552 * it will just return, as we are about to repeat an NMI anyway.
1553 * This makes it safe to copy to the stack frame that a nested
1554 * NMI will update.
1555 */
1556repeat_nmi:
1557 /*
1558 * Update the stack variable to say we are still in NMI (the update
1559 * is benign for the non-repeat case, where 1 was pushed just above
1560 * to this very stack slot).
1561 */
Salman Qazi28696f42012-10-01 17:29:25 -07001562 movq $1, 10*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001563
1564 /* Make another copy, this one may be modified by nested NMIs */
Salman Qazi28696f42012-10-01 17:29:25 -07001565 addq $(10*8), %rsp
1566 CFI_ADJUST_CFA_OFFSET -10*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001567 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001568 pushq_cfi -6*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001569 .endr
Salman Qazi28696f42012-10-01 17:29:25 -07001570 subq $(5*8), %rsp
Denys Vlasenko911d2bb2015-02-26 14:40:36 -08001571 CFI_DEF_CFA_OFFSET 5*8
Jan Beulich62610912012-02-24 14:54:37 +00001572end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001573
1574 /*
1575 * Everything below this point can be preempted by a nested
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001576 * NMI if the first NMI took an exception and reset our iret stack
1577 * so that we repeat another NMI.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001578 */
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001579 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001580 ALLOC_PT_GPREGS_ON_STACK
1581
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001582 /*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001583 * Use paranoid_entry to handle SWAPGS, but no need to use paranoid_exit
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001584 * as we should not be calling schedule in NMI context.
1585 * Even with normal interrupts enabled. An NMI should not be
1586 * setting NEED_RESCHED or anything that normal interrupts and
1587 * exceptions might do.
1588 */
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001589 call paranoid_entry
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001590 DEFAULT_FRAME 0
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001591
1592 /*
1593 * Save off the CR2 register. If we take a page fault in the NMI then
1594 * it could corrupt the CR2 value. If the NMI preempts a page fault
1595 * handler before it was able to read the CR2 register, and then the
1596 * NMI itself takes a page fault, the page fault that was preempted
1597 * will read the information from the NMI page fault and not the
1598 * origin fault. Save it off and restore it if it changes.
1599 * Use the r12 callee-saved register.
1600 */
1601 movq %cr2, %r12
1602
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001603 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1604 movq %rsp,%rdi
1605 movq $-1,%rsi
1606 call do_nmi
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001607
1608 /* Did the NMI take a page fault? Restore cr2 if it did */
1609 movq %cr2, %rcx
1610 cmpq %rcx, %r12
1611 je 1f
1612 movq %r12, %cr2
16131:
1614
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001615 testl %ebx,%ebx /* swapgs needed? */
1616 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001617nmi_swapgs:
1618 SWAPGS_UNSAFE_STACK
1619nmi_restore:
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001620 RESTORE_EXTRA_REGS
1621 RESTORE_C_REGS
Jan Beulich444723d2013-01-24 09:27:31 +00001622 /* Pop the extra iret frame at once */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001623 REMOVE_PT_GPREGS_FROM_STACK 6*8
Salman Qazi28696f42012-10-01 17:29:25 -07001624
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001625 /* Clear the NMI executing stack variable */
Salman Qazi28696f42012-10-01 17:29:25 -07001626 movq $0, 5*8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001627 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001628 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001629END(nmi)
1630
1631ENTRY(ignore_sysret)
1632 CFI_STARTPROC
1633 mov $-ENOSYS,%eax
1634 sysret
1635 CFI_ENDPROC
1636END(ignore_sysret)
1637