blob: d86788c3257b84fcd8c792213b7e784cbf1ad2cc [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:
18 * - top of stack: Architecture defined interrupt frame from SS to RIP
19 * at the top of the kernel process stack.
Lucas De Marchi0d2eb442011-03-17 16:24:16 -030020 * - partial stack frame: partially saved registers up to R11.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010021 * - full stack frame: Like partial stack frame, but all register saved.
Andi Kleen2e91a172006-09-26 10:52:29 +020022 *
23 * Some macro usage:
24 * - CFI macros are used to generate dwarf2 unwind information for better
25 * backtraces. They don't change any code.
Andi Kleen2e91a172006-09-26 10:52:29 +020026 * - ENTRY/END Define functions in the symbol table.
27 * - FIXUP_TOP_OF_STACK/RESTORE_TOP_OF_STACK - Fix up the hardware stack
28 * frame that is otherwise undefined after a SYSCALL
29 * - TRACE_IRQ_* - Trace hard interrupt state for lock debugging.
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -070030 * - idtentry - Define exception entry points.
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 */
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/linkage.h>
34#include <asm/segment.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/cache.h>
36#include <asm/errno.h>
37#include <asm/dwarf2.h>
38#include <asm/calling.h>
Sam Ravnborge2d5df92005-09-09 21:28:48 +020039#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/msr.h>
41#include <asm/unistd.h>
42#include <asm/thread_info.h>
43#include <asm/hw_irq.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080044#include <asm/page_types.h>
Ingo Molnar2601e642006-07-03 00:24:45 -070045#include <asm/irqflags.h>
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010046#include <asm/paravirt.h>
Tejun Heo9939dda2009-01-13 20:41:35 +090047#include <asm/percpu.h>
H. Peter Anvind7abc0f2012-04-20 12:19:50 -070048#include <asm/asm.h>
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010049#include <asm/context_tracking.h>
H. Peter Anvin63bcff22012-09-21 12:43:12 -070050#include <asm/smap.h>
H. Peter Anvin3891a042014-04-29 16:46:09 -070051#include <asm/pgtable_types.h>
Eric Parisd7e75282012-01-03 14:23:06 -050052#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Roland McGrath86a1c342008-06-23 15:37:04 -070054/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
55#include <linux/elf-em.h>
56#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
57#define __AUDIT_ARCH_64BIT 0x80000000
58#define __AUDIT_ARCH_LE 0x40000000
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 .code64
Jiri Olsaea714542011-03-07 19:10:39 +010061 .section .entry.text, "ax"
62
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020063
Andi Kleendc37db42005-04-16 15:25:05 -070064#ifndef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define retint_kernel retint_restore_args
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010066#endif
Ingo Molnar2601e642006-07-03 00:24:45 -070067
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010068#ifdef CONFIG_PARAVIRT
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -040069ENTRY(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010070 swapgs
71 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +030072ENDPROC(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010073#endif /* CONFIG_PARAVIRT */
74
Ingo Molnar2601e642006-07-03 00:24:45 -070075
Denys Vlasenkof2db9382015-02-26 14:40:30 -080076.macro TRACE_IRQS_IRETQ
Ingo Molnar2601e642006-07-03 00:24:45 -070077#ifdef CONFIG_TRACE_IRQFLAGS
Denys Vlasenkof2db9382015-02-26 14:40:30 -080078 bt $9,EFLAGS(%rsp) /* interrupts off? */
Ingo Molnar2601e642006-07-03 00:24:45 -070079 jnc 1f
80 TRACE_IRQS_ON
811:
82#endif
83.endm
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/*
Steven Rostedt5963e312012-05-30 11:54:53 -040086 * When dynamic function tracer is enabled it will add a breakpoint
87 * to all locations that it is about to modify, sync CPUs, update
88 * all the code, sync CPUs, then remove the breakpoints. In this time
89 * if lockdep is enabled, it might jump back into the debug handler
90 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
91 *
92 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
93 * make sure the stack pointer does not get reset back to the top
94 * of the debug stack, and instead just reuses the current stack.
95 */
96#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
97
98.macro TRACE_IRQS_OFF_DEBUG
99 call debug_stack_set_zero
100 TRACE_IRQS_OFF
101 call debug_stack_reset
102.endm
103
104.macro TRACE_IRQS_ON_DEBUG
105 call debug_stack_set_zero
106 TRACE_IRQS_ON
107 call debug_stack_reset
108.endm
109
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800110.macro TRACE_IRQS_IRETQ_DEBUG
111 bt $9,EFLAGS(%rsp) /* interrupts off? */
Steven Rostedt5963e312012-05-30 11:54:53 -0400112 jnc 1f
113 TRACE_IRQS_ON_DEBUG
1141:
115.endm
116
117#else
118# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
119# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
120# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
121#endif
122
123/*
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100124 * C code is not supposed to know that the iret frame is not populated.
125 * Every time a C function with an pt_regs argument is called from
126 * the SYSCALL based fast path FIXUP_TOP_OF_STACK is needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
128 * manipulation.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100129 */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100130 .macro FIXUP_TOP_OF_STACK tmp offset=0
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100131 movq $__USER_DS,SS+\offset(%rsp)
132 movq $__USER_CS,CS+\offset(%rsp)
Andy Lutomirski0fcedc82015-01-16 16:19:27 -0800133 movq RIP+\offset(%rsp),\tmp /* get rip */
134 movq \tmp,RCX+\offset(%rsp) /* copy it to rcx as sysret would do */
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100135 movq EFLAGS+\offset(%rsp),\tmp /* ditto for rflags->r11 */
136 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 .endm
138
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100139 .macro RESTORE_TOP_OF_STACK tmp offset=0
Denys Vlasenko263042e2015-03-09 19:39:23 +0100140 /* nothing to do */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 .endm
142
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100143/*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800144 * empty frame
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100145 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100146 .macro EMPTY_FRAME start=1 offset=0
147 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100148 CFI_STARTPROC simple
149 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100150 CFI_DEF_CFA rsp,8+\offset
151 .else
152 CFI_DEF_CFA_OFFSET 8+\offset
153 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100154 .endm
155
156/*
157 * initial frame state for interrupts (and exceptions without error code)
158 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100159 .macro INTR_FRAME start=1 offset=0
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800160 EMPTY_FRAME \start, 5*8+\offset
161 /*CFI_REL_OFFSET ss, 4*8+\offset*/
162 CFI_REL_OFFSET rsp, 3*8+\offset
163 /*CFI_REL_OFFSET rflags, 2*8+\offset*/
164 /*CFI_REL_OFFSET cs, 1*8+\offset*/
165 CFI_REL_OFFSET rip, 0*8+\offset
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100166 .endm
167
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100168/*
169 * initial frame state for exceptions with error code (and interrupts
170 * with vector already pushed)
171 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100172 .macro XCPT_FRAME start=1 offset=0
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800173 INTR_FRAME \start, 1*8+\offset
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100174 .endm
175
176/*
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800177 * frame that enables passing a complete pt_regs to a C function.
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100178 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800179 .macro DEFAULT_FRAME start=1 offset=0
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800180 XCPT_FRAME \start, ORIG_RAX+\offset
181 CFI_REL_OFFSET rdi, RDI+\offset
182 CFI_REL_OFFSET rsi, RSI+\offset
183 CFI_REL_OFFSET rdx, RDX+\offset
184 CFI_REL_OFFSET rcx, RCX+\offset
185 CFI_REL_OFFSET rax, RAX+\offset
186 CFI_REL_OFFSET r8, R8+\offset
187 CFI_REL_OFFSET r9, R9+\offset
188 CFI_REL_OFFSET r10, R10+\offset
189 CFI_REL_OFFSET r11, R11+\offset
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100190 CFI_REL_OFFSET rbx, RBX+\offset
191 CFI_REL_OFFSET rbp, RBP+\offset
192 CFI_REL_OFFSET r12, R12+\offset
193 CFI_REL_OFFSET r13, R13+\offset
194 CFI_REL_OFFSET r14, R14+\offset
195 CFI_REL_OFFSET r15, R15+\offset
196 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/*
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800199 * 64bit SYSCALL instruction entry. Up to 6 arguments in registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 *
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800201 * 64bit SYSCALL saves rip to rcx, clears rflags.RF, then saves rflags to r11,
202 * then loads new ss, cs, and rip from previously programmed MSRs.
203 * rflags gets masked by a value from another MSR (so CLD and CLAC
204 * are not needed). SYSCALL does not save anything on the stack
205 * and does not change rsp.
206 *
207 * Registers on entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 * rax system call number
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800209 * rcx return address
210 * r11 saved rflags (note: r11 is callee-clobbered register in C ABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 * rdi arg0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100213 * rdx arg2
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800214 * r10 arg3 (needs to be moved to rcx to conform to C ABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 * r8 arg4
216 * r9 arg5
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800217 * (note: r12-r15,rbp,rbx are callee-preserved in C ABI)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100218 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 * Interrupts are off on entry.
220 * Only called from user space.
221 *
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200222 * When user can change the frames always force IRET. That is because
223 * it deals with uncanonical addresses better. SYSRET has trouble
224 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100225 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200228 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200229 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900230 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200231 CFI_REGISTER rip,rcx
232 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100233 SWAPGS_UNSAFE_STACK
234 /*
235 * A hypervisor implementation might want to use a label
236 * after the swapgs, so that it can do the swapgs
237 * for the guest and jump here on syscall.
238 */
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000239GLOBAL(system_call_after_swapgs)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100240
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900241 movq %rsp,PER_CPU_VAR(old_rsp)
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800242 /* kernel_stack is set so that 5 slots (iret frame) are preallocated */
Brian Gerst9af45652009-01-19 00:38:58 +0900243 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700244 /*
245 * No need to follow this irqs off/on section - it's straight
246 * and short:
247 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100248 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800249 ALLOC_PT_GPREGS_ON_STACK 8 /* +8: space for orig_ax */
Denys Vlasenko263042e2015-03-09 19:39:23 +0100250 movq %rcx,RIP(%rsp)
251 movq PER_CPU_VAR(old_rsp),%rcx
252 movq %r11,EFLAGS(%rsp)
253 movq %rcx,RSP(%rsp)
254 movq_cfi rax,ORIG_RAX
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100255 SAVE_C_REGS_EXCEPT_RAX_RCX_R11
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800256 movq $-ENOSYS,RAX(%rsp)
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800257 CFI_REL_OFFSET rip,RIP
258 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700260system_call_fastpath:
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800261#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800263#else
264 andl $__SYSCALL_MASK,%eax
265 cmpl $__NR_syscall_max,%eax
266#endif
Andy Lutomirski54eea992014-09-05 15:13:55 -0700267 ja ret_from_sys_call /* and return regs->ax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 movq %r10,%rcx
269 call *sys_call_table(,%rax,8) # XXX: rip relative
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800270 movq %rax,RAX(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/*
272 * Syscall return path ending with SYSRET (fast path)
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100273 * Has incompletely filled pt_regs, iret frame is also incomplete.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100274 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275ret_from_sys_call:
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800276 testl $_TIF_ALLWORK_MASK,TI_flags+THREAD_INFO(%rsp,RIP)
Andy Lutomirski96b63522014-07-07 11:37:17 -0700277 jnz int_ret_from_sys_call_fixup /* Go the the slow path */
278
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200279 LOCKDEP_SYS_EXIT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100280 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700281 TRACE_IRQS_OFF
Jan Beulichbcddc012006-12-07 02:14:02 +0100282 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700283 /*
284 * sysretq will re-enable interrupts:
285 */
286 TRACE_IRQS_ON
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100287 RESTORE_C_REGS_EXCEPT_RCX_R11
288 movq RIP(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200289 CFI_REGISTER rip,rcx
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100290 movq EFLAGS(%rsp),%r11
Jan Beulich7effaa82005-09-12 18:49:24 +0200291 /*CFI_REGISTER rflags,r11*/
Denys Vlasenko263042e2015-03-09 19:39:23 +0100292 movq RSP(%rsp),%rsp
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800293 /*
294 * 64bit SYSRET restores rip from rcx,
295 * rflags from r11 (but RF and VM bits are forced to 0),
296 * cs and ss are loaded from MSRs.
297 */
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400298 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Jan Beulichbcddc012006-12-07 02:14:02 +0100300 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Andy Lutomirski96b63522014-07-07 11:37:17 -0700302int_ret_from_sys_call_fixup:
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800303 FIXUP_TOP_OF_STACK %r11
Andy Lutomirski96b63522014-07-07 11:37:17 -0700304 jmp int_ret_from_sys_call
Roland McGrath86a1c342008-06-23 15:37:04 -0700305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100307tracesys:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800308 movq %rsp, %rdi
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700309 movq $AUDIT_ARCH_X86_64, %rsi
310 call syscall_trace_enter_phase1
311 test %rax, %rax
312 jnz tracesys_phase2 /* if needed, run the slow path */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800313 RESTORE_C_REGS_EXCEPT_RAX /* else restore clobbered regs */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800314 movq ORIG_RAX(%rsp), %rax
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700315 jmp system_call_fastpath /* and return to the fast path */
316
317tracesys_phase2:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800318 SAVE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 FIXUP_TOP_OF_STACK %rdi
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700320 movq %rsp, %rdi
321 movq $AUDIT_ARCH_X86_64, %rsi
322 movq %rax,%rdx
323 call syscall_trace_enter_phase2
324
Roland McGrathd4d67152008-07-09 02:38:07 -0700325 /*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800326 * Reload registers from stack in case ptrace changed them.
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700327 * We don't reload %rax because syscall_trace_entry_phase2() returned
Roland McGrathd4d67152008-07-09 02:38:07 -0700328 * the value it wants us to use in the table lookup.
329 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800330 RESTORE_C_REGS_EXCEPT_RAX
331 RESTORE_EXTRA_REGS
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800332#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800334#else
335 andl $__SYSCALL_MASK,%eax
336 cmpl $__NR_syscall_max,%eax
337#endif
Andy Lutomirski54eea992014-09-05 15:13:55 -0700338 ja int_ret_from_sys_call /* RAX(%rsp) is already set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 movq %r10,%rcx /* fixup for C */
340 call *sys_call_table(,%rax,8)
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800341 movq %rax,RAX(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200342 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100343
344/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 * Syscall return path ending with IRET.
346 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100347 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300348GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100349 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700350 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 movl $_TIF_ALLWORK_MASK,%edi
352 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300353GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200354 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300356 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 andl %edi,%edx
358 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300359 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 jmp retint_swapgs
361
362 /* Either reschedule or signal or syscall exit tracking needed. */
363 /* First do a reschedule test. */
364 /* edx: work, edi: workmask */
365int_careful:
366 bt $TIF_NEED_RESCHED,%edx
367 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700368 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100369 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100370 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200371 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100372 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100373 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700374 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 jmp int_with_check
376
377 /* handle signals and tracing -- both require a full stack frame */
378int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700379 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100380 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800381 SAVE_EXTRA_REGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100382 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700383 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100385 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100386 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100388 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700389 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100393 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 jz 1f
395 movq %rsp,%rdi # &ptregs -> arg1
396 xorl %esi,%esi # oldset -> arg2
397 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07003981: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399int_restore_rest:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800400 RESTORE_EXTRA_REGS
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100401 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700402 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 jmp int_with_check
404 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100405END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100406
Al Viro1d4b4b22012-10-22 22:34:11 -0400407 .macro FORK_LIKE func
408ENTRY(stub_\func)
409 CFI_STARTPROC
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800410 DEFAULT_FRAME 0, 8 /* offset 8: return address */
411 SAVE_EXTRA_REGS 8
Al Viro1d4b4b22012-10-22 22:34:11 -0400412 FIXUP_TOP_OF_STACK %r11, 8
Al Viro1d4b4b22012-10-22 22:34:11 -0400413 call sys_\func
414 RESTORE_TOP_OF_STACK %r11, 8
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800415 ret
Al Viro1d4b4b22012-10-22 22:34:11 -0400416 CFI_ENDPROC
417END(stub_\func)
418 .endm
419
420 FORK_LIKE clone
421 FORK_LIKE fork
422 FORK_LIKE vfork
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424ENTRY(stub_execve)
425 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100426 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800427 DEFAULT_FRAME 0
428 SAVE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 FIXUP_TOP_OF_STACK %r11
430 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800432 RESTORE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 jmp int_ret_from_sys_call
434 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200435END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100436
David Drysdale27d6ec72014-12-12 16:57:33 -0800437ENTRY(stub_execveat)
438 CFI_STARTPROC
439 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800440 DEFAULT_FRAME 0
441 SAVE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800442 FIXUP_TOP_OF_STACK %r11
443 call sys_execveat
444 RESTORE_TOP_OF_STACK %r11
445 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800446 RESTORE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800447 jmp int_ret_from_sys_call
448 CFI_ENDPROC
449END(stub_execveat)
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451/*
452 * sigreturn is special because it needs to restore all registers on return.
453 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100454 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455ENTRY(stub_rt_sigreturn)
456 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200457 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800458 DEFAULT_FRAME 0
459 SAVE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 FIXUP_TOP_OF_STACK %r11
461 call sys_rt_sigreturn
462 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800463 RESTORE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 jmp int_ret_from_sys_call
465 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200466END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800468#ifdef CONFIG_X86_X32_ABI
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800469ENTRY(stub_x32_rt_sigreturn)
470 CFI_STARTPROC
471 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800472 DEFAULT_FRAME 0
473 SAVE_EXTRA_REGS
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800474 FIXUP_TOP_OF_STACK %r11
475 call sys32_x32_rt_sigreturn
476 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800477 RESTORE_EXTRA_REGS
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800478 jmp int_ret_from_sys_call
479 CFI_ENDPROC
480END(stub_x32_rt_sigreturn)
481
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800482ENTRY(stub_x32_execve)
483 CFI_STARTPROC
484 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800485 DEFAULT_FRAME 0
486 SAVE_EXTRA_REGS
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800487 FIXUP_TOP_OF_STACK %r11
Al Viro6783eaa22012-08-02 23:05:11 +0400488 call compat_sys_execve
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800489 RESTORE_TOP_OF_STACK %r11
490 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800491 RESTORE_EXTRA_REGS
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800492 jmp int_ret_from_sys_call
493 CFI_ENDPROC
494END(stub_x32_execve)
495
David Drysdale27d6ec72014-12-12 16:57:33 -0800496ENTRY(stub_x32_execveat)
497 CFI_STARTPROC
498 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800499 DEFAULT_FRAME 0
500 SAVE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800501 FIXUP_TOP_OF_STACK %r11
502 call compat_sys_execveat
503 RESTORE_TOP_OF_STACK %r11
504 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800505 RESTORE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800506 jmp int_ret_from_sys_call
507 CFI_ENDPROC
508END(stub_x32_execveat)
509
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800510#endif
511
Jan Beulich7effaa82005-09-12 18:49:24 +0200512/*
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800513 * A newly forked process directly context switches into this address.
514 *
515 * rdi: prev task we switched from
516 */
517ENTRY(ret_from_fork)
518 DEFAULT_FRAME
519
520 LOCK ; btr $TIF_FORK,TI_flags(%r8)
521
522 pushq_cfi $0x0002
523 popfq_cfi # reset kernel eflags
524
525 call schedule_tail # rdi: 'prev' task parameter
526
527 GET_THREAD_INFO(%rcx)
528
529 RESTORE_EXTRA_REGS
530
531 testl $3,CS(%rsp) # from kernel_thread?
532 jz 1f
533
Andy Lutomirski1e3fbb82015-02-26 14:40:39 -0800534 /*
535 * By the time we get here, we have no idea whether our pt_regs,
536 * ti flags, and ti status came from the 64-bit SYSCALL fast path,
537 * the slow path, or one of the ia32entry paths.
538 * Use int_ret_from_sys_call to return, since it can safely handle
539 * all of the above.
540 */
541 jmp int_ret_from_sys_call
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800542
5431:
544 movq %rbp, %rdi
545 call *%rbx
546 movl $0, RAX(%rsp)
547 RESTORE_EXTRA_REGS
548 jmp int_ret_from_sys_call
549 CFI_ENDPROC
550END(ret_from_fork)
551
552/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800553 * Build the entry stubs and pointer table with some assembler magic.
554 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
555 * single cache line on all modern x86 implementations.
556 */
557 .section .init.rodata,"a"
558ENTRY(interrupt)
Jiri Olsaea714542011-03-07 19:10:39 +0100559 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800560 .p2align 5
561 .p2align CONFIG_X86_L1_CACHE_SHIFT
562ENTRY(irq_entries_start)
563 INTR_FRAME
564vector=FIRST_EXTERNAL_VECTOR
Jan Beulich2414e022014-11-03 08:39:43 +0000565.rept (FIRST_SYSTEM_VECTOR-FIRST_EXTERNAL_VECTOR+6)/7
H. Peter Anvin939b7872008-11-11 13:51:52 -0800566 .balign 32
567 .rept 7
Jan Beulich2414e022014-11-03 08:39:43 +0000568 .if vector < FIRST_SYSTEM_VECTOR
H. Peter Anvin86655962008-11-12 10:27:35 -0800569 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800570 CFI_ADJUST_CFA_OFFSET -8
571 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01005721: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800573 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800574 jmp 2f
575 .endif
576 .previous
577 .quad 1b
Jiri Olsaea714542011-03-07 19:10:39 +0100578 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800579vector=vector+1
580 .endif
581 .endr
5822: jmp common_interrupt
583.endr
584 CFI_ENDPROC
585END(irq_entries_start)
586
587.previous
588END(interrupt)
589.previous
590
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100591/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 * Interrupt entry/exit.
593 *
594 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100595 *
596 * Entry runs with interrupts off.
597 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100599/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 .macro interrupt func
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100601 cld
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800602 /*
603 * Since nothing in interrupt handling code touches r12...r15 members
604 * of "struct pt_regs", and since interrupts can nest, we can save
605 * four stack slots and simultaneously provide
606 * an unwind-friendly stack layout by saving "truncated" pt_regs
607 * exactly up to rbp slot, without these members.
608 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800609 ALLOC_PT_GPREGS_ON_STACK -RBP
610 SAVE_C_REGS -RBP
611 /* this goes to 0(%rsp) for unwinder, not for saving the value: */
612 SAVE_EXTRA_REGS_RBP -RBP
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100613
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800614 leaq -RBP(%rsp),%rdi /* arg1 for \func (pointer to pt_regs) */
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100615
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800616 testl $3, CS-RBP(%rsp)
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100617 je 1f
618 SWAPGS
Denys Vlasenko76f5df42015-02-26 14:40:27 -08006191:
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100620 /*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800621 * Save previous stack pointer, optionally switch to interrupt stack.
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100622 * irq_count is used to check if a CPU is already on an interrupt stack
623 * or not. While this is essentially redundant with preempt_count it is
624 * a little cheaper to use a separate counter in the PDA (short of
625 * moving irq_enter into assembly, which would be too much work)
626 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800627 movq %rsp, %rsi
628 incl PER_CPU_VAR(irq_count)
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100629 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
630 CFI_DEF_CFA_REGISTER rsi
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100631 pushq %rsi
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800632 /*
633 * For debugger:
634 * "CFA (Current Frame Address) is the value on stack + offset"
635 */
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100636 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800637 0x77 /* DW_OP_breg7 (rsp) */, 0, \
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100638 0x06 /* DW_OP_deref */, \
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800639 0x08 /* DW_OP_const1u */, SIZEOF_PTREGS-RBP, \
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100640 0x22 /* DW_OP_plus */
641 /* We entered an interrupt context - irqs are off: */
642 TRACE_IRQS_OFF
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 call \func
645 .endm
646
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100647 /*
648 * The interrupt stubs push (~vector+0x80) onto the stack and
649 * then jump to common_interrupt.
650 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800651 .p2align CONFIG_X86_L1_CACHE_SHIFT
652common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200653 XCPT_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000654 ASM_CLAC
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100655 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 interrupt do_IRQ
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800657 /* 0(%rsp): old_rsp */
Jan Beulich7effaa82005-09-12 18:49:24 +0200658ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100659 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700660 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900661 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100662
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200663 /* Restore saved previous stack */
664 popq %rsi
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800665 CFI_DEF_CFA rsi,SIZEOF_PTREGS-RBP /* reg/off reset after def_cfa_expr */
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800666 /* return code expects complete pt_regs - adjust rsp accordingly: */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800667 leaq -RBP(%rsi),%rsp
Jan Beulich7effaa82005-09-12 18:49:24 +0200668 CFI_DEF_CFA_REGISTER rsp
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800669 CFI_ADJUST_CFA_OFFSET RBP
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100670
Jan Beulich7effaa82005-09-12 18:49:24 +0200671exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 GET_THREAD_INFO(%rcx)
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800673 testl $3,CS(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 /* Interrupt came from user space */
677 /*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800678 * Has a correct top of stack.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100680 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681retint_with_reschedule:
682 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200683retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200684 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300685 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200687 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200689
690retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700691 /*
692 * The iretq could re-enable interrupts:
693 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100694 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700695 TRACE_IRQS_IRETQ
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700696
697 /*
698 * Try to use SYSRET instead of IRET if we're returning to
699 * a completely clean 64-bit userspace context.
700 */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800701 movq RCX(%rsp),%rcx
702 cmpq %rcx,RIP(%rsp) /* RCX == RIP */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700703 jne opportunistic_sysret_failed
704
705 /*
706 * On Intel CPUs, sysret with non-canonical RCX/RIP will #GP
707 * in kernel space. This essentially lets the user take over
708 * the kernel, since userspace controls RSP. It's not worth
709 * testing for canonicalness exactly -- this check detects any
710 * of the 17 high bits set, which is true for non-canonical
711 * or kernel addresses. (This will pessimize vsyscall=native.
712 * Big deal.)
713 *
714 * If virtual addresses ever become wider, this will need
715 * to be updated to remain correct on both old and new CPUs.
716 */
717 .ifne __VIRTUAL_MASK_SHIFT - 47
718 .error "virtual address width changed -- sysret checks need update"
719 .endif
720 shr $__VIRTUAL_MASK_SHIFT, %rcx
721 jnz opportunistic_sysret_failed
722
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800723 cmpq $__USER_CS,CS(%rsp) /* CS must match SYSRET */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700724 jne opportunistic_sysret_failed
725
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800726 movq R11(%rsp),%r11
727 cmpq %r11,EFLAGS(%rsp) /* R11 == RFLAGS */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700728 jne opportunistic_sysret_failed
729
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800730 testq $X86_EFLAGS_RF,%r11 /* sysret can't restore RF */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700731 jnz opportunistic_sysret_failed
732
733 /* nothing to check for RSP */
734
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800735 cmpq $__USER_DS,SS(%rsp) /* SS must match SYSRET */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700736 jne opportunistic_sysret_failed
737
738 /*
739 * We win! This label is here just for ease of understanding
740 * perf profiles. Nothing jumps here.
741 */
742irq_return_via_sysret:
743 CFI_REMEMBER_STATE
Denys Vlasenkod441c1f2015-02-26 14:40:38 -0800744 /* r11 is already restored (see code above) */
745 RESTORE_C_REGS_EXCEPT_R11
746 movq RSP(%rsp),%rsp
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700747 USERGS_SYSRET64
748 CFI_RESTORE_STATE
749
750opportunistic_sysret_failed:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100751 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700752 jmp restore_args
753
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200754retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100755 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700756 /*
757 * The iretq could re-enable interrupts:
758 */
759 TRACE_IRQS_IRETQ
760restore_args:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800761 RESTORE_C_REGS
762 REMOVE_PT_GPREGS_FROM_STACK 8
Ingo Molnar3701d8632008-02-09 23:24:08 +0100763
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200764irq_return:
Andy Lutomirski7209a752014-07-23 08:34:11 -0700765 INTERRUPT_RETURN
766
767ENTRY(native_iret)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700768 /*
769 * Are we returning to a stack segment from the LDT? Note: in
770 * 64-bit mode SS:RSP on the exception stack is always valid.
771 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700772#ifdef CONFIG_X86_ESPFIX64
H. Peter Anvin3891a042014-04-29 16:46:09 -0700773 testb $4,(SS-RIP)(%rsp)
Andy Lutomirski7209a752014-07-23 08:34:11 -0700774 jnz native_irq_return_ldt
H. Peter Anvin34273f42014-05-04 10:36:22 -0700775#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700776
Andy Lutomirskiaf726f22014-11-22 18:00:31 -0800777.global native_irq_return_iret
Andy Lutomirski7209a752014-07-23 08:34:11 -0700778native_irq_return_iret:
Andy Lutomirskib645af22014-11-22 18:00:33 -0800779 /*
780 * This may fault. Non-paranoid faults on return to userspace are
781 * handled by fixup_bad_iret. These include #SS, #GP, and #NP.
782 * Double-faults due to espfix64 are handled in do_double_fault.
783 * Other faults here are fatal.
784 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 iretq
Ingo Molnar3701d8632008-02-09 23:24:08 +0100786
H. Peter Anvin34273f42014-05-04 10:36:22 -0700787#ifdef CONFIG_X86_ESPFIX64
Andy Lutomirski7209a752014-07-23 08:34:11 -0700788native_irq_return_ldt:
H. Peter Anvin3891a042014-04-29 16:46:09 -0700789 pushq_cfi %rax
790 pushq_cfi %rdi
791 SWAPGS
792 movq PER_CPU_VAR(espfix_waddr),%rdi
793 movq %rax,(0*8)(%rdi) /* RAX */
794 movq (2*8)(%rsp),%rax /* RIP */
795 movq %rax,(1*8)(%rdi)
796 movq (3*8)(%rsp),%rax /* CS */
797 movq %rax,(2*8)(%rdi)
798 movq (4*8)(%rsp),%rax /* RFLAGS */
799 movq %rax,(3*8)(%rdi)
800 movq (6*8)(%rsp),%rax /* SS */
801 movq %rax,(5*8)(%rdi)
802 movq (5*8)(%rsp),%rax /* RSP */
803 movq %rax,(4*8)(%rdi)
804 andl $0xffff0000,%eax
805 popq_cfi %rdi
806 orq PER_CPU_VAR(espfix_stack),%rax
807 SWAPGS
808 movq %rax,%rsp
809 popq_cfi %rax
Andy Lutomirski7209a752014-07-23 08:34:11 -0700810 jmp native_irq_return_iret
H. Peter Anvin34273f42014-05-04 10:36:22 -0700811#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700812
Jan Beulich7effaa82005-09-12 18:49:24 +0200813 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200815 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 bt $TIF_NEED_RESCHED,%edx
817 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700818 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100819 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100820 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200821 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100822 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100824 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700825 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100829 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700830 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700831 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100832 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800833 SAVE_EXTRA_REGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100834 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700835 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 movq %rsp,%rdi # &pt_regs
837 call do_notify_resume
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800838 RESTORE_EXTRA_REGS
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100839 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700840 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -0700841 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -0700842 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844#ifdef CONFIG_PREEMPT
845 /* Returning to kernel space. Check if we need preemption */
846 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +0200847ENTRY(retint_kernel)
Peter Zijlstrac2daa3b2013-08-14 14:51:00 +0200848 cmpl $0,PER_CPU_VAR(__preempt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 jnz retint_restore_args
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800850 bt $9,EFLAGS(%rsp) /* interrupts off? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 jnc retint_restore_args
852 call preempt_schedule_irq
853 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100854#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200856END(common_interrupt)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700857
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400858/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100860 */
Seiji Aguchicf910e82013-06-20 11:46:53 -0400861.macro apicinterrupt3 num sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100862ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +0200863 INTR_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000864 ASM_CLAC
Jan Beulichdf5d1872010-09-02 14:07:16 +0100865 pushq_cfi $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +0000866.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100867 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 jmp ret_from_intr
869 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100870END(\sym)
871.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100872
Seiji Aguchicf910e82013-06-20 11:46:53 -0400873#ifdef CONFIG_TRACING
874#define trace(sym) trace_##sym
875#define smp_trace(sym) smp_trace_##sym
876
877.macro trace_apicinterrupt num sym
878apicinterrupt3 \num trace(\sym) smp_trace(\sym)
879.endm
880#else
881.macro trace_apicinterrupt num sym do_sym
882.endm
883#endif
884
885.macro apicinterrupt num sym do_sym
886apicinterrupt3 \num \sym \do_sym
887trace_apicinterrupt \num \sym
888.endm
889
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100890#ifdef CONFIG_SMP
Seiji Aguchicf910e82013-06-20 11:46:53 -0400891apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100892 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Seiji Aguchicf910e82013-06-20 11:46:53 -0400893apicinterrupt3 REBOOT_VECTOR \
Andi Kleen4ef702c2009-05-27 21:56:52 +0200894 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895#endif
896
Nick Piggin03b48632009-01-20 04:36:04 +0100897#ifdef CONFIG_X86_UV
Seiji Aguchicf910e82013-06-20 11:46:53 -0400898apicinterrupt3 UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100899 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100900#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100901apicinterrupt LOCAL_TIMER_VECTOR \
902 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500903apicinterrupt X86_PLATFORM_IPI_VECTOR \
904 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Yang Zhangd78f2662013-04-11 19:25:11 +0800906#ifdef CONFIG_HAVE_KVM
Seiji Aguchicf910e82013-06-20 11:46:53 -0400907apicinterrupt3 POSTED_INTR_VECTOR \
Yang Zhangd78f2662013-04-11 19:25:11 +0800908 kvm_posted_intr_ipi smp_kvm_posted_intr_ipi
909#endif
910
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400911#ifdef CONFIG_X86_MCE_THRESHOLD
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100912apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +0200913 threshold_interrupt smp_threshold_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400914#endif
915
916#ifdef CONFIG_X86_THERMAL_VECTOR
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100917apicinterrupt THERMAL_APIC_VECTOR \
918 thermal_interrupt smp_thermal_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400919#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100921#ifdef CONFIG_SMP
922apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
923 call_function_single_interrupt smp_call_function_single_interrupt
924apicinterrupt CALL_FUNCTION_VECTOR \
925 call_function_interrupt smp_call_function_interrupt
926apicinterrupt RESCHEDULE_VECTOR \
927 reschedule_interrupt smp_reschedule_interrupt
928#endif
929
930apicinterrupt ERROR_APIC_VECTOR \
931 error_interrupt smp_error_interrupt
932apicinterrupt SPURIOUS_APIC_VECTOR \
933 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100934
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800935#ifdef CONFIG_IRQ_WORK
936apicinterrupt IRQ_WORK_VECTOR \
937 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +0100938#endif
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940/*
941 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100942 */
Andy Lutomirski9b476682015-03-05 19:19:07 -0800943#define CPU_TSS_IST(x) PER_CPU_VAR(cpu_tss) + (TSS_ist + ((x) - 1) * 8)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700944
945.macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100946ENTRY(\sym)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700947 /* Sanity check */
948 .if \shift_ist != -1 && \paranoid == 0
949 .error "using shift_ist requires paranoid=1"
950 .endif
951
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700952 .if \has_error_code
953 XCPT_FRAME
954 .else
Jan Beulich7effaa82005-09-12 18:49:24 +0200955 INTR_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700956 .endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Jan Beulichee4eb872012-11-02 11:18:39 +0000958 ASM_CLAC
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +0100959 PARAVIRT_ADJUST_EXCEPTION_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700960
961 .ifeq \has_error_code
962 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
963 .endif
964
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800965 ALLOC_PT_GPREGS_ON_STACK
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700966
967 .if \paranoid
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800968 .if \paranoid == 1
969 CFI_REMEMBER_STATE
970 testl $3, CS(%rsp) /* If coming from userspace, switch */
971 jnz 1f /* stacks. */
972 .endif
Denys Vlasenkoebfc4532015-02-26 14:40:34 -0800973 call paranoid_entry
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700974 .else
975 call error_entry
976 .endif
Denys Vlasenkoebfc4532015-02-26 14:40:34 -0800977 /* returned flag: ebx=0: need swapgs on exit, ebx=1: don't need it */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700978
Andy Lutomirski1bd24ef2014-05-21 15:07:07 -0700979 DEFAULT_FRAME 0
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700980
981 .if \paranoid
Andy Lutomirski577ed452014-05-21 15:07:09 -0700982 .if \shift_ist != -1
983 TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */
984 .else
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +0100985 TRACE_IRQS_OFF
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700986 .endif
Andy Lutomirski577ed452014-05-21 15:07:09 -0700987 .endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700988
989 movq %rsp,%rdi /* pt_regs pointer */
990
991 .if \has_error_code
992 movq ORIG_RAX(%rsp),%rsi /* get error code */
993 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
994 .else
995 xorl %esi,%esi /* no error code */
996 .endif
997
Andy Lutomirski577ed452014-05-21 15:07:09 -0700998 .if \shift_ist != -1
Andy Lutomirski9b476682015-03-05 19:19:07 -0800999 subq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001000 .endif
1001
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001002 call \do_sym
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001003
Andy Lutomirski577ed452014-05-21 15:07:09 -07001004 .if \shift_ist != -1
Andy Lutomirski9b476682015-03-05 19:19:07 -08001005 addq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001006 .endif
1007
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001008 /* these procedures expect "no swapgs" flag in ebx */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001009 .if \paranoid
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001010 jmp paranoid_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001011 .else
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001012 jmp error_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001013 .endif
1014
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001015 .if \paranoid == 1
1016 CFI_RESTORE_STATE
1017 /*
1018 * Paranoid entry from userspace. Switch stacks and treat it
1019 * as a normal entry. This means that paranoid handlers
1020 * run in real process context if user_mode(regs).
1021 */
10221:
1023 call error_entry
1024
1025 DEFAULT_FRAME 0
1026
1027 movq %rsp,%rdi /* pt_regs pointer */
1028 call sync_regs
1029 movq %rax,%rsp /* switch stack */
1030
1031 movq %rsp,%rdi /* pt_regs pointer */
1032
1033 .if \has_error_code
1034 movq ORIG_RAX(%rsp),%rsi /* get error code */
1035 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1036 .else
1037 xorl %esi,%esi /* no error code */
1038 .endif
1039
1040 call \do_sym
1041
1042 jmp error_exit /* %ebx: no swapgs flag */
1043 .endif
1044
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001045 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001046END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001047.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001048
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001049#ifdef CONFIG_TRACING
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001050.macro trace_idtentry sym do_sym has_error_code:req
1051idtentry trace(\sym) trace(\do_sym) has_error_code=\has_error_code
1052idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001053.endm
1054#else
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001055.macro trace_idtentry sym do_sym has_error_code:req
1056idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001057.endm
1058#endif
1059
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001060idtentry divide_error do_divide_error has_error_code=0
1061idtentry overflow do_overflow has_error_code=0
1062idtentry bounds do_bounds has_error_code=0
1063idtentry invalid_op do_invalid_op has_error_code=0
1064idtentry device_not_available do_device_not_available has_error_code=0
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001065idtentry double_fault do_double_fault has_error_code=1 paranoid=2
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001066idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0
1067idtentry invalid_TSS do_invalid_TSS has_error_code=1
1068idtentry segment_not_present do_segment_not_present has_error_code=1
1069idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0
1070idtentry coprocessor_error do_coprocessor_error has_error_code=0
1071idtentry alignment_check do_alignment_check has_error_code=1
1072idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001073
Ingo Molnar2601e642006-07-03 00:24:45 -07001074
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001075 /* Reload gs selector with exception handling */
1076 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001077ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001078 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001079 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001080 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001081 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001082gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001083 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070010842: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001085 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001086 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001087 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001088 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001089END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001090
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001091 _ASM_EXTABLE(gs_change,bad_gs)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001092 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001094bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001095 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001097 movl %eax,%gs
1098 jmp 2b
1099 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001100
Andi Kleen26995002006-08-02 22:37:28 +02001101/* Call softirq on interrupt stack. Interrupts are off. */
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001102ENTRY(do_softirq_own_stack)
Jan Beulich7effaa82005-09-12 18:49:24 +02001103 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001104 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001105 CFI_REL_OFFSET rbp,0
1106 mov %rsp,%rbp
1107 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001108 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001109 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001110 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001111 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001112 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001113 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001114 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001115 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001116 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001117 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001118 CFI_ENDPROC
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001119END(do_softirq_own_stack)
Andi Kleen75154f42007-06-23 02:29:25 +02001120
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001121#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001122idtentry xen_hypervisor_callback xen_do_hypervisor_callback has_error_code=0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001123
1124/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001125 * A note on the "critical region" in our callback handler.
1126 * We want to avoid stacking callback handlers due to events occurring
1127 * during handling of the last event. To do this, we keep events disabled
1128 * until we've done all processing. HOWEVER, we must enable events before
1129 * popping the stack frame (can't be done atomically) and so it would still
1130 * be possible to get enough handler activations to overflow the stack.
1131 * Although unlikely, bugs of that kind are hard to track down, so we'd
1132 * like to avoid the possibility.
1133 * So, on entry to the handler we detect whether we interrupted an
1134 * existing activation in its critical region -- if so, we pop the current
1135 * activation and restart the handler using the previous one.
1136 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001137ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1138 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001139/*
1140 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1141 * see the correct pointer to the pt_regs
1142 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001143 movq %rdi, %rsp # we don't return, adjust the stack frame
1144 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001145 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900114611: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001147 movq %rsp,%rbp
1148 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001149 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001150 pushq %rbp # backlink for old unwinder
1151 call xen_evtchn_do_upcall
1152 popq %rsp
1153 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001154 decl PER_CPU_VAR(irq_count)
David Vrabelfdfd8112015-02-19 15:23:17 +00001155#ifndef CONFIG_PREEMPT
1156 call xen_maybe_preempt_hcall
1157#endif
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001158 jmp error_exit
1159 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001160END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001161
1162/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001163 * Hypervisor uses this for application faults while it executes.
1164 * We get here for two reasons:
1165 * 1. Fault while reloading DS, ES, FS or GS
1166 * 2. Fault while executing IRET
1167 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1168 * registers that could be reloaded and zeroed the others.
1169 * Category 2 we fix up by killing the current process. We cannot use the
1170 * normal Linux return path in this case because if we use the IRET hypercall
1171 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1172 * We distinguish between categories by comparing each saved segment register
1173 * with its current contents: any discrepancy means we in category 1.
1174 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001175ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001176 INTR_FRAME 1 (6*8)
1177 /*CFI_REL_OFFSET gs,GS*/
1178 /*CFI_REL_OFFSET fs,FS*/
1179 /*CFI_REL_OFFSET es,ES*/
1180 /*CFI_REL_OFFSET ds,DS*/
1181 CFI_REL_OFFSET r11,8
1182 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001183 movw %ds,%cx
1184 cmpw %cx,0x10(%rsp)
1185 CFI_REMEMBER_STATE
1186 jne 1f
1187 movw %es,%cx
1188 cmpw %cx,0x18(%rsp)
1189 jne 1f
1190 movw %fs,%cx
1191 cmpw %cx,0x20(%rsp)
1192 jne 1f
1193 movw %gs,%cx
1194 cmpw %cx,0x28(%rsp)
1195 jne 1f
1196 /* All segments match their saved values => Category 2 (Bad IRET). */
1197 movq (%rsp),%rcx
1198 CFI_RESTORE rcx
1199 movq 8(%rsp),%r11
1200 CFI_RESTORE r11
1201 addq $0x30,%rsp
1202 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001203 pushq_cfi $0 /* RIP */
1204 pushq_cfi %r11
1205 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001206 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001207 CFI_RESTORE_STATE
12081: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1209 movq (%rsp),%rcx
1210 CFI_RESTORE rcx
1211 movq 8(%rsp),%r11
1212 CFI_RESTORE r11
1213 addq $0x30,%rsp
1214 CFI_ADJUST_CFA_OFFSET -0x30
David Vrabela349e23d12012-10-19 17:29:07 +01001215 pushq_cfi $-1 /* orig_ax = -1 => not a system call */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001216 ALLOC_PT_GPREGS_ON_STACK
1217 SAVE_C_REGS
1218 SAVE_EXTRA_REGS
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001219 jmp error_exit
1220 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001221END(xen_failsafe_callback)
1222
Seiji Aguchicf910e82013-06-20 11:46:53 -04001223apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
Sheng Yang38e20b02010-05-14 12:40:51 +01001224 xen_hvm_callback_vector xen_evtchn_do_upcall
1225
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001226#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001227
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001228#if IS_ENABLED(CONFIG_HYPERV)
Seiji Aguchicf910e82013-06-20 11:46:53 -04001229apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001230 hyperv_callback_vector hyperv_vector_handler
1231#endif /* CONFIG_HYPERV */
1232
Andy Lutomirski577ed452014-05-21 15:07:09 -07001233idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1234idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
Andy Lutomirski6f442be2014-11-22 18:00:32 -08001235idtentry stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001236#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001237idtentry xen_debug do_debug has_error_code=0
1238idtentry xen_int3 do_int3 has_error_code=0
1239idtentry xen_stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001240#endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001241idtentry general_protection do_general_protection has_error_code=1
1242trace_idtentry page_fault do_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001243#ifdef CONFIG_KVM_GUEST
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001244idtentry async_page_fault do_async_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001245#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001246#ifdef CONFIG_X86_MCE
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001247idtentry machine_check has_error_code=0 paranoid=1 do_sym=*machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001248#endif
1249
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001250/*
1251 * Save all registers in pt_regs, and switch gs if needed.
1252 * Use slow, but surefire "are we in kernel?" check.
1253 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
1254 */
1255ENTRY(paranoid_entry)
1256 XCPT_FRAME 1 15*8
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001257 cld
1258 SAVE_C_REGS 8
1259 SAVE_EXTRA_REGS 8
1260 movl $1,%ebx
1261 movl $MSR_GS_BASE,%ecx
1262 rdmsr
1263 testl %edx,%edx
1264 js 1f /* negative -> in kernel */
1265 SWAPGS
1266 xorl %ebx,%ebx
12671: ret
1268 CFI_ENDPROC
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001269END(paranoid_entry)
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001270
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001271/*
1272 * "Paranoid" exit path from exception stack. This is invoked
1273 * only on return from non-NMI IST interrupts that came
1274 * from kernel space.
1275 *
1276 * We may be returning to very strange contexts (e.g. very early
1277 * in syscall entry), so checking for preemption here would
1278 * be complicated. Fortunately, we there's no good reason
1279 * to try to handle preemption here.
1280 */
1281/* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001282ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001283 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001284 DISABLE_INTERRUPTS(CLBR_NONE)
Steven Rostedt5963e312012-05-30 11:54:53 -04001285 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001286 testl %ebx,%ebx /* swapgs needed? */
Denys Vlasenko0d550832015-02-26 14:40:29 -08001287 jnz paranoid_exit_no_swapgs
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001288 TRACE_IRQS_IRETQ
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001289 SWAPGS_UNSAFE_STACK
Denys Vlasenko0d550832015-02-26 14:40:29 -08001290 jmp paranoid_exit_restore
1291paranoid_exit_no_swapgs:
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001292 TRACE_IRQS_IRETQ_DEBUG
Denys Vlasenko0d550832015-02-26 14:40:29 -08001293paranoid_exit_restore:
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001294 RESTORE_EXTRA_REGS
1295 RESTORE_C_REGS
1296 REMOVE_PT_GPREGS_FROM_STACK 8
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001297 INTERRUPT_RETURN
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001298 CFI_ENDPROC
1299END(paranoid_exit)
1300
1301/*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001302 * Save all registers in pt_regs, and switch gs if needed.
1303 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001304 */
1305ENTRY(error_entry)
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001306 XCPT_FRAME 1 15*8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001307 cld
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001308 SAVE_C_REGS 8
1309 SAVE_EXTRA_REGS 8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001310 xorl %ebx,%ebx
1311 testl $3,CS+8(%rsp)
1312 je error_kernelspace
1313error_swapgs:
1314 SWAPGS
1315error_sti:
1316 TRACE_IRQS_OFF
1317 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001318
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001319 /*
1320 * There are two places in the kernel that can potentially fault with
1321 * usergs. Handle them here. B stepping K8s sometimes report a
1322 * truncated RIP for IRET exceptions returning to compat mode. Check
1323 * for these here too.
1324 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001325error_kernelspace:
Jan Beulich3bab13b2014-06-25 14:11:22 +01001326 CFI_REL_OFFSET rcx, RCX+8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001327 incl %ebx
Andy Lutomirski7209a752014-07-23 08:34:11 -07001328 leaq native_irq_return_iret(%rip),%rcx
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001329 cmpq %rcx,RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001330 je error_bad_iret
Brian Gerstae24ffe2009-10-12 10:18:23 -04001331 movl %ecx,%eax /* zero extend */
1332 cmpq %rax,RIP+8(%rsp)
1333 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001334 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001335 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001336 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001337
1338bstep_iret:
1339 /* Fix truncated RIP */
1340 movq %rcx,RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001341 /* fall through */
1342
1343error_bad_iret:
1344 SWAPGS
1345 mov %rsp,%rdi
1346 call fixup_bad_iret
1347 mov %rax,%rsp
1348 decl %ebx /* Return to usergs */
1349 jmp error_sti
Jan Beuliche6b04b62010-09-02 13:52:45 +01001350 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001351END(error_entry)
1352
1353
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001354/* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001355ENTRY(error_exit)
1356 DEFAULT_FRAME
1357 movl %ebx,%eax
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001358 RESTORE_EXTRA_REGS
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001359 DISABLE_INTERRUPTS(CLBR_NONE)
1360 TRACE_IRQS_OFF
1361 GET_THREAD_INFO(%rcx)
1362 testl %eax,%eax
1363 jne retint_kernel
1364 LOCKDEP_SYS_EXIT_IRQ
1365 movl TI_flags(%rcx),%edx
1366 movl $_TIF_WORK_MASK,%edi
1367 andl %edi,%edx
1368 jnz retint_careful
1369 jmp retint_swapgs
1370 CFI_ENDPROC
1371END(error_exit)
1372
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001373/*
1374 * Test if a given stack is an NMI stack or not.
1375 */
1376 .macro test_in_nmi reg stack nmi_ret normal_ret
1377 cmpq %\reg, \stack
1378 ja \normal_ret
1379 subq $EXCEPTION_STKSZ, %\reg
1380 cmpq %\reg, \stack
1381 jb \normal_ret
1382 jmp \nmi_ret
1383 .endm
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001384
1385 /* runs on exception stack */
1386ENTRY(nmi)
1387 INTR_FRAME
1388 PARAVIRT_ADJUST_EXCEPTION_FRAME
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001389 /*
1390 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1391 * the iretq it performs will take us out of NMI context.
1392 * This means that we can have nested NMIs where the next
1393 * NMI is using the top of the stack of the previous NMI. We
1394 * can't let it execute because the nested NMI will corrupt the
1395 * stack of the previous NMI. NMI handlers are not re-entrant
1396 * anyway.
1397 *
1398 * To handle this case we do the following:
1399 * Check the a special location on the stack that contains
1400 * a variable that is set when NMIs are executing.
1401 * The interrupted task's stack is also checked to see if it
1402 * is an NMI stack.
1403 * If the variable is not set and the stack is not the NMI
1404 * stack then:
1405 * o Set the special variable on the stack
1406 * o Copy the interrupt frame into a "saved" location on the stack
1407 * o Copy the interrupt frame into a "copy" location on the stack
1408 * o Continue processing the NMI
1409 * If the variable is set or the previous stack is the NMI stack:
1410 * o Modify the "copy" location to jump to the repeate_nmi
1411 * o return back to the first NMI
1412 *
1413 * Now on exit of the first NMI, we first clear the stack variable
1414 * The NMI stack will tell any nested NMIs at that point that it is
1415 * nested. Then we pop the stack normally with iret, and if there was
1416 * a nested NMI that updated the copy interrupt stack frame, a
1417 * jump will be made to the repeat_nmi code that will handle the second
1418 * NMI.
1419 */
1420
1421 /* Use %rdx as out temp variable throughout */
1422 pushq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001423 CFI_REL_OFFSET rdx, 0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001424
1425 /*
Steven Rostedt45d5a162012-02-19 16:43:37 -05001426 * If %cs was not the kernel segment, then the NMI triggered in user
1427 * space, which means it is definitely not nested.
1428 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001429 cmpl $__KERNEL_CS, 16(%rsp)
Steven Rostedt45d5a162012-02-19 16:43:37 -05001430 jne first_nmi
1431
1432 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001433 * Check the special variable on the stack to see if NMIs are
1434 * executing.
1435 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001436 cmpl $1, -8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001437 je nested_nmi
1438
1439 /*
1440 * Now test if the previous stack was an NMI stack.
1441 * We need the double check. We check the NMI stack to satisfy the
1442 * race when the first NMI clears the variable before returning.
1443 * We check the variable because the first NMI could be in a
1444 * breakpoint routine using a breakpoint stack.
1445 */
1446 lea 6*8(%rsp), %rdx
1447 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
Jan Beulich62610912012-02-24 14:54:37 +00001448 CFI_REMEMBER_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001449
1450nested_nmi:
1451 /*
1452 * Do nothing if we interrupted the fixup in repeat_nmi.
1453 * It's about to repeat the NMI handler, so we are fine
1454 * with ignoring this one.
1455 */
1456 movq $repeat_nmi, %rdx
1457 cmpq 8(%rsp), %rdx
1458 ja 1f
1459 movq $end_repeat_nmi, %rdx
1460 cmpq 8(%rsp), %rdx
1461 ja nested_nmi_out
1462
14631:
1464 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
Salman Qazi28696f42012-10-01 17:29:25 -07001465 leaq -1*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001466 movq %rdx, %rsp
Salman Qazi28696f42012-10-01 17:29:25 -07001467 CFI_ADJUST_CFA_OFFSET 1*8
1468 leaq -10*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001469 pushq_cfi $__KERNEL_DS
1470 pushq_cfi %rdx
1471 pushfq_cfi
1472 pushq_cfi $__KERNEL_CS
1473 pushq_cfi $repeat_nmi
1474
1475 /* Put stack back */
Salman Qazi28696f42012-10-01 17:29:25 -07001476 addq $(6*8), %rsp
1477 CFI_ADJUST_CFA_OFFSET -6*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001478
1479nested_nmi_out:
1480 popq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001481 CFI_RESTORE rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001482
1483 /* No need to check faults here */
1484 INTERRUPT_RETURN
1485
Jan Beulich62610912012-02-24 14:54:37 +00001486 CFI_RESTORE_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001487first_nmi:
1488 /*
1489 * Because nested NMIs will use the pushed location that we
1490 * stored in rdx, we must keep that space available.
1491 * Here's what our stack frame will look like:
1492 * +-------------------------+
1493 * | original SS |
1494 * | original Return RSP |
1495 * | original RFLAGS |
1496 * | original CS |
1497 * | original RIP |
1498 * +-------------------------+
1499 * | temp storage for rdx |
1500 * +-------------------------+
1501 * | NMI executing variable |
1502 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001503 * | copied SS |
1504 * | copied Return RSP |
1505 * | copied RFLAGS |
1506 * | copied CS |
1507 * | copied RIP |
1508 * +-------------------------+
Salman Qazi28696f42012-10-01 17:29:25 -07001509 * | Saved SS |
1510 * | Saved Return RSP |
1511 * | Saved RFLAGS |
1512 * | Saved CS |
1513 * | Saved RIP |
1514 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001515 * | pt_regs |
1516 * +-------------------------+
1517 *
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001518 * The saved stack frame is used to fix up the copied stack frame
1519 * that a nested NMI may change to make the interrupted NMI iret jump
1520 * to the repeat_nmi. The original stack frame and the temp storage
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001521 * is also used by nested NMIs and can not be trusted on exit.
1522 */
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001523 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
Jan Beulich62610912012-02-24 14:54:37 +00001524 movq (%rsp), %rdx
1525 CFI_RESTORE rdx
1526
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001527 /* Set the NMI executing variable on the stack. */
1528 pushq_cfi $1
1529
Salman Qazi28696f42012-10-01 17:29:25 -07001530 /*
1531 * Leave room for the "copied" frame
1532 */
1533 subq $(5*8), %rsp
Jan Beulich444723d2013-01-24 09:27:31 +00001534 CFI_ADJUST_CFA_OFFSET 5*8
Salman Qazi28696f42012-10-01 17:29:25 -07001535
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001536 /* Copy the stack frame to the Saved frame */
1537 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001538 pushq_cfi 11*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001539 .endr
Denys Vlasenko911d2bb2015-02-26 14:40:36 -08001540 CFI_DEF_CFA_OFFSET 5*8
Jan Beulich62610912012-02-24 14:54:37 +00001541
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001542 /* Everything up to here is safe from nested NMIs */
1543
Jan Beulich62610912012-02-24 14:54:37 +00001544 /*
1545 * If there was a nested NMI, the first NMI's iret will return
1546 * here. But NMIs are still enabled and we can take another
1547 * nested NMI. The nested NMI checks the interrupted RIP to see
1548 * if it is between repeat_nmi and end_repeat_nmi, and if so
1549 * it will just return, as we are about to repeat an NMI anyway.
1550 * This makes it safe to copy to the stack frame that a nested
1551 * NMI will update.
1552 */
1553repeat_nmi:
1554 /*
1555 * Update the stack variable to say we are still in NMI (the update
1556 * is benign for the non-repeat case, where 1 was pushed just above
1557 * to this very stack slot).
1558 */
Salman Qazi28696f42012-10-01 17:29:25 -07001559 movq $1, 10*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001560
1561 /* Make another copy, this one may be modified by nested NMIs */
Salman Qazi28696f42012-10-01 17:29:25 -07001562 addq $(10*8), %rsp
1563 CFI_ADJUST_CFA_OFFSET -10*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001564 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001565 pushq_cfi -6*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001566 .endr
Salman Qazi28696f42012-10-01 17:29:25 -07001567 subq $(5*8), %rsp
Denys Vlasenko911d2bb2015-02-26 14:40:36 -08001568 CFI_DEF_CFA_OFFSET 5*8
Jan Beulich62610912012-02-24 14:54:37 +00001569end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001570
1571 /*
1572 * Everything below this point can be preempted by a nested
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001573 * NMI if the first NMI took an exception and reset our iret stack
1574 * so that we repeat another NMI.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001575 */
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001576 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001577 ALLOC_PT_GPREGS_ON_STACK
1578
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001579 /*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001580 * Use paranoid_entry to handle SWAPGS, but no need to use paranoid_exit
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001581 * as we should not be calling schedule in NMI context.
1582 * Even with normal interrupts enabled. An NMI should not be
1583 * setting NEED_RESCHED or anything that normal interrupts and
1584 * exceptions might do.
1585 */
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001586 call paranoid_entry
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001587 DEFAULT_FRAME 0
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001588
1589 /*
1590 * Save off the CR2 register. If we take a page fault in the NMI then
1591 * it could corrupt the CR2 value. If the NMI preempts a page fault
1592 * handler before it was able to read the CR2 register, and then the
1593 * NMI itself takes a page fault, the page fault that was preempted
1594 * will read the information from the NMI page fault and not the
1595 * origin fault. Save it off and restore it if it changes.
1596 * Use the r12 callee-saved register.
1597 */
1598 movq %cr2, %r12
1599
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001600 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1601 movq %rsp,%rdi
1602 movq $-1,%rsi
1603 call do_nmi
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001604
1605 /* Did the NMI take a page fault? Restore cr2 if it did */
1606 movq %cr2, %rcx
1607 cmpq %rcx, %r12
1608 je 1f
1609 movq %r12, %cr2
16101:
1611
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001612 testl %ebx,%ebx /* swapgs needed? */
1613 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001614nmi_swapgs:
1615 SWAPGS_UNSAFE_STACK
1616nmi_restore:
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001617 RESTORE_EXTRA_REGS
1618 RESTORE_C_REGS
Jan Beulich444723d2013-01-24 09:27:31 +00001619 /* Pop the extra iret frame at once */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001620 REMOVE_PT_GPREGS_FROM_STACK 6*8
Salman Qazi28696f42012-10-01 17:29:25 -07001621
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001622 /* Clear the NMI executing stack variable */
Salman Qazi28696f42012-10-01 17:29:25 -07001623 movq $0, 5*8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001624 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001625 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001626END(nmi)
1627
1628ENTRY(ignore_sysret)
1629 CFI_STARTPROC
1630 mov $-ENOSYS,%eax
1631 sysret
1632 CFI_ENDPROC
1633END(ignore_sysret)
1634