blob: 324200aca431431bb2dac2fe9bf6cc7fe0fd6ae7 [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
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900131 movq PER_CPU_VAR(old_rsp),\tmp
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100132 movq \tmp,RSP+\offset(%rsp)
133 movq $__USER_DS,SS+\offset(%rsp)
134 movq $__USER_CS,CS+\offset(%rsp)
Andy Lutomirski0fcedc82015-01-16 16:19:27 -0800135 movq RIP+\offset(%rsp),\tmp /* get rip */
136 movq \tmp,RCX+\offset(%rsp) /* copy it to rcx as sysret would do */
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100137 movq EFLAGS+\offset(%rsp),\tmp /* ditto for rflags->r11 */
138 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .endm
140
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100141 .macro RESTORE_TOP_OF_STACK tmp offset=0
142 movq RSP+\offset(%rsp),\tmp
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900143 movq \tmp,PER_CPU_VAR(old_rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 .endm
145
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100146/*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800147 * empty frame
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100148 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100149 .macro EMPTY_FRAME start=1 offset=0
150 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100151 CFI_STARTPROC simple
152 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100153 CFI_DEF_CFA rsp,8+\offset
154 .else
155 CFI_DEF_CFA_OFFSET 8+\offset
156 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100157 .endm
158
159/*
160 * initial frame state for interrupts (and exceptions without error code)
161 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100162 .macro INTR_FRAME start=1 offset=0
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800163 EMPTY_FRAME \start, 5*8+\offset
164 /*CFI_REL_OFFSET ss, 4*8+\offset*/
165 CFI_REL_OFFSET rsp, 3*8+\offset
166 /*CFI_REL_OFFSET rflags, 2*8+\offset*/
167 /*CFI_REL_OFFSET cs, 1*8+\offset*/
168 CFI_REL_OFFSET rip, 0*8+\offset
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100169 .endm
170
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100171/*
172 * initial frame state for exceptions with error code (and interrupts
173 * with vector already pushed)
174 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100175 .macro XCPT_FRAME start=1 offset=0
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800176 INTR_FRAME \start, 1*8+\offset
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100177 .endm
178
179/*
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800180 * frame that enables passing a complete pt_regs to a C function.
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100181 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800182 .macro DEFAULT_FRAME start=1 offset=0
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800183 XCPT_FRAME \start, ORIG_RAX+\offset
184 CFI_REL_OFFSET rdi, RDI+\offset
185 CFI_REL_OFFSET rsi, RSI+\offset
186 CFI_REL_OFFSET rdx, RDX+\offset
187 CFI_REL_OFFSET rcx, RCX+\offset
188 CFI_REL_OFFSET rax, RAX+\offset
189 CFI_REL_OFFSET r8, R8+\offset
190 CFI_REL_OFFSET r9, R9+\offset
191 CFI_REL_OFFSET r10, R10+\offset
192 CFI_REL_OFFSET r11, R11+\offset
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100193 CFI_REL_OFFSET rbx, RBX+\offset
194 CFI_REL_OFFSET rbp, RBP+\offset
195 CFI_REL_OFFSET r12, R12+\offset
196 CFI_REL_OFFSET r13, R13+\offset
197 CFI_REL_OFFSET r14, R14+\offset
198 CFI_REL_OFFSET r15, R15+\offset
199 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201/*
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800202 * 64bit SYSCALL instruction entry. Up to 6 arguments in registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 *
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800204 * 64bit SYSCALL saves rip to rcx, clears rflags.RF, then saves rflags to r11,
205 * then loads new ss, cs, and rip from previously programmed MSRs.
206 * rflags gets masked by a value from another MSR (so CLD and CLAC
207 * are not needed). SYSCALL does not save anything on the stack
208 * and does not change rsp.
209 *
210 * Registers on entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 * rax system call number
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800212 * rcx return address
213 * r11 saved rflags (note: r11 is callee-clobbered register in C ABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 * rdi arg0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100216 * rdx arg2
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800217 * r10 arg3 (needs to be moved to rcx to conform to C ABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 * r8 arg4
219 * r9 arg5
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800220 * (note: r12-r15,rbp,rbx are callee-preserved in C ABI)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100221 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 * Interrupts are off on entry.
223 * Only called from user space.
224 *
225 * XXX if we had a free scratch register we could save the RSP into the stack frame
226 * and report it properly in ps. Unfortunately we haven't.
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200227 *
228 * When user can change the frames always force IRET. That is because
229 * it deals with uncanonical addresses better. SYSRET has trouble
230 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100231 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200234 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200235 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900236 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200237 CFI_REGISTER rip,rcx
238 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100239 SWAPGS_UNSAFE_STACK
240 /*
241 * A hypervisor implementation might want to use a label
242 * after the swapgs, so that it can do the swapgs
243 * for the guest and jump here on syscall.
244 */
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000245GLOBAL(system_call_after_swapgs)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100246
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900247 movq %rsp,PER_CPU_VAR(old_rsp)
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800248 /* kernel_stack is set so that 5 slots (iret frame) are preallocated */
Brian Gerst9af45652009-01-19 00:38:58 +0900249 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700250 /*
251 * No need to follow this irqs off/on section - it's straight
252 * and short:
253 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100254 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800255 ALLOC_PT_GPREGS_ON_STACK 8 /* +8: space for orig_ax */
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100256 SAVE_C_REGS_EXCEPT_RAX_RCX_R11
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800257 movq $-ENOSYS,RAX(%rsp)
258 movq_cfi rax,ORIG_RAX
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100259 movq %r11,EFLAGS(%rsp)
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800260 movq %rcx,RIP(%rsp)
261 CFI_REL_OFFSET rip,RIP
262 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700264system_call_fastpath:
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800265#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800267#else
268 andl $__SYSCALL_MASK,%eax
269 cmpl $__NR_syscall_max,%eax
270#endif
Andy Lutomirski54eea992014-09-05 15:13:55 -0700271 ja ret_from_sys_call /* and return regs->ax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 movq %r10,%rcx
273 call *sys_call_table(,%rax,8) # XXX: rip relative
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800274 movq %rax,RAX(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275/*
276 * Syscall return path ending with SYSRET (fast path)
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100277 * Has incompletely filled pt_regs, iret frame is also incomplete.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100278 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279ret_from_sys_call:
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800280 testl $_TIF_ALLWORK_MASK,TI_flags+THREAD_INFO(%rsp,RIP)
Andy Lutomirski96b63522014-07-07 11:37:17 -0700281 jnz int_ret_from_sys_call_fixup /* Go the the slow path */
282
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200283 LOCKDEP_SYS_EXIT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100284 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700285 TRACE_IRQS_OFF
Jan Beulichbcddc012006-12-07 02:14:02 +0100286 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700287 /*
288 * sysretq will re-enable interrupts:
289 */
290 TRACE_IRQS_ON
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100291 RESTORE_C_REGS_EXCEPT_RCX_R11
292 movq RIP(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200293 CFI_REGISTER rip,rcx
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100294 movq EFLAGS(%rsp),%r11
Jan Beulich7effaa82005-09-12 18:49:24 +0200295 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900296 movq PER_CPU_VAR(old_rsp), %rsp
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800297 /*
298 * 64bit SYSRET restores rip from rcx,
299 * rflags from r11 (but RF and VM bits are forced to 0),
300 * cs and ss are loaded from MSRs.
301 */
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400302 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Jan Beulichbcddc012006-12-07 02:14:02 +0100304 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Andy Lutomirski96b63522014-07-07 11:37:17 -0700306int_ret_from_sys_call_fixup:
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800307 FIXUP_TOP_OF_STACK %r11
Andy Lutomirski96b63522014-07-07 11:37:17 -0700308 jmp int_ret_from_sys_call
Roland McGrath86a1c342008-06-23 15:37:04 -0700309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100311tracesys:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800312 movq %rsp, %rdi
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700313 movq $AUDIT_ARCH_X86_64, %rsi
314 call syscall_trace_enter_phase1
315 test %rax, %rax
316 jnz tracesys_phase2 /* if needed, run the slow path */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800317 RESTORE_C_REGS_EXCEPT_RAX /* else restore clobbered regs */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800318 movq ORIG_RAX(%rsp), %rax
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700319 jmp system_call_fastpath /* and return to the fast path */
320
321tracesys_phase2:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800322 SAVE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 FIXUP_TOP_OF_STACK %rdi
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700324 movq %rsp, %rdi
325 movq $AUDIT_ARCH_X86_64, %rsi
326 movq %rax,%rdx
327 call syscall_trace_enter_phase2
328
Roland McGrathd4d67152008-07-09 02:38:07 -0700329 /*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800330 * Reload registers from stack in case ptrace changed them.
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700331 * We don't reload %rax because syscall_trace_entry_phase2() returned
Roland McGrathd4d67152008-07-09 02:38:07 -0700332 * the value it wants us to use in the table lookup.
333 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800334 RESTORE_C_REGS_EXCEPT_RAX
335 RESTORE_EXTRA_REGS
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800336#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800338#else
339 andl $__SYSCALL_MASK,%eax
340 cmpl $__NR_syscall_max,%eax
341#endif
Andy Lutomirski54eea992014-09-05 15:13:55 -0700342 ja int_ret_from_sys_call /* RAX(%rsp) is already set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 movq %r10,%rcx /* fixup for C */
344 call *sys_call_table(,%rax,8)
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800345 movq %rax,RAX(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200346 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100347
348/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 * Syscall return path ending with IRET.
350 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100351 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300352GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100353 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700354 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 movl $_TIF_ALLWORK_MASK,%edi
356 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300357GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200358 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300360 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 andl %edi,%edx
362 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300363 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 jmp retint_swapgs
365
366 /* Either reschedule or signal or syscall exit tracking needed. */
367 /* First do a reschedule test. */
368 /* edx: work, edi: workmask */
369int_careful:
370 bt $TIF_NEED_RESCHED,%edx
371 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700372 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100373 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100374 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200375 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100376 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100377 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700378 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 jmp int_with_check
380
381 /* handle signals and tracing -- both require a full stack frame */
382int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700383 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100384 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800385 SAVE_EXTRA_REGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100386 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700387 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100389 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100390 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100392 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700393 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100397 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 jz 1f
399 movq %rsp,%rdi # &ptregs -> arg1
400 xorl %esi,%esi # oldset -> arg2
401 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07004021: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403int_restore_rest:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800404 RESTORE_EXTRA_REGS
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100405 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700406 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 jmp int_with_check
408 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100409END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100410
Al Viro1d4b4b22012-10-22 22:34:11 -0400411 .macro FORK_LIKE func
412ENTRY(stub_\func)
413 CFI_STARTPROC
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800414 DEFAULT_FRAME 0, 8 /* offset 8: return address */
415 SAVE_EXTRA_REGS 8
Al Viro1d4b4b22012-10-22 22:34:11 -0400416 FIXUP_TOP_OF_STACK %r11, 8
Al Viro1d4b4b22012-10-22 22:34:11 -0400417 call sys_\func
418 RESTORE_TOP_OF_STACK %r11, 8
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800419 ret
Al Viro1d4b4b22012-10-22 22:34:11 -0400420 CFI_ENDPROC
421END(stub_\func)
422 .endm
423
Al Virob3af11a2012-11-19 22:00:52 -0500424 .macro FIXED_FRAME label,func
425ENTRY(\label)
426 CFI_STARTPROC
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800427 DEFAULT_FRAME 0, 8 /* offset 8: return address */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800428 FIXUP_TOP_OF_STACK %r11, 8
Al Virob3af11a2012-11-19 22:00:52 -0500429 call \func
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800430 RESTORE_TOP_OF_STACK %r11, 8
Al Virob3af11a2012-11-19 22:00:52 -0500431 ret
432 CFI_ENDPROC
433END(\label)
434 .endm
435
Al Viro1d4b4b22012-10-22 22:34:11 -0400436 FORK_LIKE clone
437 FORK_LIKE fork
438 FORK_LIKE vfork
Al Virob3af11a2012-11-19 22:00:52 -0500439 FIXED_FRAME stub_iopl, sys_iopl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441ENTRY(stub_execve)
442 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100443 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800444 DEFAULT_FRAME 0
445 SAVE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 FIXUP_TOP_OF_STACK %r11
447 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800449 RESTORE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 jmp int_ret_from_sys_call
451 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200452END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100453
David Drysdale27d6ec72014-12-12 16:57:33 -0800454ENTRY(stub_execveat)
455 CFI_STARTPROC
456 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800457 DEFAULT_FRAME 0
458 SAVE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800459 FIXUP_TOP_OF_STACK %r11
460 call sys_execveat
461 RESTORE_TOP_OF_STACK %r11
462 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800463 RESTORE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800464 jmp int_ret_from_sys_call
465 CFI_ENDPROC
466END(stub_execveat)
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468/*
469 * sigreturn is special because it needs to restore all registers on return.
470 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100471 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472ENTRY(stub_rt_sigreturn)
473 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200474 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800475 DEFAULT_FRAME 0
476 SAVE_EXTRA_REGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 FIXUP_TOP_OF_STACK %r11
478 call sys_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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 jmp int_ret_from_sys_call
482 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200483END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800485#ifdef CONFIG_X86_X32_ABI
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800486ENTRY(stub_x32_rt_sigreturn)
487 CFI_STARTPROC
488 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800489 DEFAULT_FRAME 0
490 SAVE_EXTRA_REGS
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800491 FIXUP_TOP_OF_STACK %r11
492 call sys32_x32_rt_sigreturn
493 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800494 RESTORE_EXTRA_REGS
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800495 jmp int_ret_from_sys_call
496 CFI_ENDPROC
497END(stub_x32_rt_sigreturn)
498
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800499ENTRY(stub_x32_execve)
500 CFI_STARTPROC
501 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800502 DEFAULT_FRAME 0
503 SAVE_EXTRA_REGS
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800504 FIXUP_TOP_OF_STACK %r11
Al Viro6783eaa22012-08-02 23:05:11 +0400505 call compat_sys_execve
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800506 RESTORE_TOP_OF_STACK %r11
507 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800508 RESTORE_EXTRA_REGS
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800509 jmp int_ret_from_sys_call
510 CFI_ENDPROC
511END(stub_x32_execve)
512
David Drysdale27d6ec72014-12-12 16:57:33 -0800513ENTRY(stub_x32_execveat)
514 CFI_STARTPROC
515 addq $8, %rsp
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800516 DEFAULT_FRAME 0
517 SAVE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800518 FIXUP_TOP_OF_STACK %r11
519 call compat_sys_execveat
520 RESTORE_TOP_OF_STACK %r11
521 movq %rax,RAX(%rsp)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800522 RESTORE_EXTRA_REGS
David Drysdale27d6ec72014-12-12 16:57:33 -0800523 jmp int_ret_from_sys_call
524 CFI_ENDPROC
525END(stub_x32_execveat)
526
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800527#endif
528
Jan Beulich7effaa82005-09-12 18:49:24 +0200529/*
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800530 * A newly forked process directly context switches into this address.
531 *
532 * rdi: prev task we switched from
533 */
534ENTRY(ret_from_fork)
535 DEFAULT_FRAME
536
537 LOCK ; btr $TIF_FORK,TI_flags(%r8)
538
539 pushq_cfi $0x0002
540 popfq_cfi # reset kernel eflags
541
542 call schedule_tail # rdi: 'prev' task parameter
543
544 GET_THREAD_INFO(%rcx)
545
546 RESTORE_EXTRA_REGS
547
548 testl $3,CS(%rsp) # from kernel_thread?
549 jz 1f
550
Andy Lutomirski1e3fbb82015-02-26 14:40:39 -0800551 /*
552 * By the time we get here, we have no idea whether our pt_regs,
553 * ti flags, and ti status came from the 64-bit SYSCALL fast path,
554 * the slow path, or one of the ia32entry paths.
555 * Use int_ret_from_sys_call to return, since it can safely handle
556 * all of the above.
557 */
558 jmp int_ret_from_sys_call
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800559
5601:
561 movq %rbp, %rdi
562 call *%rbx
563 movl $0, RAX(%rsp)
564 RESTORE_EXTRA_REGS
565 jmp int_ret_from_sys_call
566 CFI_ENDPROC
567END(ret_from_fork)
568
569/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800570 * Build the entry stubs and pointer table with some assembler magic.
571 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
572 * single cache line on all modern x86 implementations.
573 */
574 .section .init.rodata,"a"
575ENTRY(interrupt)
Jiri Olsaea714542011-03-07 19:10:39 +0100576 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800577 .p2align 5
578 .p2align CONFIG_X86_L1_CACHE_SHIFT
579ENTRY(irq_entries_start)
580 INTR_FRAME
581vector=FIRST_EXTERNAL_VECTOR
Jan Beulich2414e022014-11-03 08:39:43 +0000582.rept (FIRST_SYSTEM_VECTOR-FIRST_EXTERNAL_VECTOR+6)/7
H. Peter Anvin939b7872008-11-11 13:51:52 -0800583 .balign 32
584 .rept 7
Jan Beulich2414e022014-11-03 08:39:43 +0000585 .if vector < FIRST_SYSTEM_VECTOR
H. Peter Anvin86655962008-11-12 10:27:35 -0800586 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800587 CFI_ADJUST_CFA_OFFSET -8
588 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01005891: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800590 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800591 jmp 2f
592 .endif
593 .previous
594 .quad 1b
Jiri Olsaea714542011-03-07 19:10:39 +0100595 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800596vector=vector+1
597 .endif
598 .endr
5992: jmp common_interrupt
600.endr
601 CFI_ENDPROC
602END(irq_entries_start)
603
604.previous
605END(interrupt)
606.previous
607
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100608/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 * Interrupt entry/exit.
610 *
611 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100612 *
613 * Entry runs with interrupts off.
614 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100616/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 .macro interrupt func
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100618 cld
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800619 /*
620 * Since nothing in interrupt handling code touches r12...r15 members
621 * of "struct pt_regs", and since interrupts can nest, we can save
622 * four stack slots and simultaneously provide
623 * an unwind-friendly stack layout by saving "truncated" pt_regs
624 * exactly up to rbp slot, without these members.
625 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800626 ALLOC_PT_GPREGS_ON_STACK -RBP
627 SAVE_C_REGS -RBP
628 /* this goes to 0(%rsp) for unwinder, not for saving the value: */
629 SAVE_EXTRA_REGS_RBP -RBP
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100630
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800631 leaq -RBP(%rsp),%rdi /* arg1 for \func (pointer to pt_regs) */
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100632
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800633 testl $3, CS-RBP(%rsp)
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100634 je 1f
635 SWAPGS
Denys Vlasenko76f5df42015-02-26 14:40:27 -08006361:
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100637 /*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800638 * Save previous stack pointer, optionally switch to interrupt stack.
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100639 * irq_count is used to check if a CPU is already on an interrupt stack
640 * or not. While this is essentially redundant with preempt_count it is
641 * a little cheaper to use a separate counter in the PDA (short of
642 * moving irq_enter into assembly, which would be too much work)
643 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800644 movq %rsp, %rsi
645 incl PER_CPU_VAR(irq_count)
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100646 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
647 CFI_DEF_CFA_REGISTER rsi
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100648 pushq %rsi
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800649 /*
650 * For debugger:
651 * "CFA (Current Frame Address) is the value on stack + offset"
652 */
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100653 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800654 0x77 /* DW_OP_breg7 (rsp) */, 0, \
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100655 0x06 /* DW_OP_deref */, \
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800656 0x08 /* DW_OP_const1u */, SIZEOF_PTREGS-RBP, \
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100657 0x22 /* DW_OP_plus */
658 /* We entered an interrupt context - irqs are off: */
659 TRACE_IRQS_OFF
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 call \func
662 .endm
663
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100664 /*
665 * The interrupt stubs push (~vector+0x80) onto the stack and
666 * then jump to common_interrupt.
667 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800668 .p2align CONFIG_X86_L1_CACHE_SHIFT
669common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200670 XCPT_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000671 ASM_CLAC
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100672 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 interrupt do_IRQ
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800674 /* 0(%rsp): old_rsp */
Jan Beulich7effaa82005-09-12 18:49:24 +0200675ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100676 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700677 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900678 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100679
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200680 /* Restore saved previous stack */
681 popq %rsi
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800682 CFI_DEF_CFA rsi,SIZEOF_PTREGS-RBP /* reg/off reset after def_cfa_expr */
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800683 /* return code expects complete pt_regs - adjust rsp accordingly: */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800684 leaq -RBP(%rsi),%rsp
Jan Beulich7effaa82005-09-12 18:49:24 +0200685 CFI_DEF_CFA_REGISTER rsp
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800686 CFI_ADJUST_CFA_OFFSET RBP
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100687
Jan Beulich7effaa82005-09-12 18:49:24 +0200688exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 GET_THREAD_INFO(%rcx)
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800690 testl $3,CS(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /* Interrupt came from user space */
694 /*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800695 * Has a correct top of stack.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100697 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698retint_with_reschedule:
699 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200700retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200701 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300702 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200704 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200706
707retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700708 /*
709 * The iretq could re-enable interrupts:
710 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100711 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700712 TRACE_IRQS_IRETQ
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700713
714 /*
715 * Try to use SYSRET instead of IRET if we're returning to
716 * a completely clean 64-bit userspace context.
717 */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800718 movq RCX(%rsp),%rcx
719 cmpq %rcx,RIP(%rsp) /* RCX == RIP */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700720 jne opportunistic_sysret_failed
721
722 /*
723 * On Intel CPUs, sysret with non-canonical RCX/RIP will #GP
724 * in kernel space. This essentially lets the user take over
725 * the kernel, since userspace controls RSP. It's not worth
726 * testing for canonicalness exactly -- this check detects any
727 * of the 17 high bits set, which is true for non-canonical
728 * or kernel addresses. (This will pessimize vsyscall=native.
729 * Big deal.)
730 *
731 * If virtual addresses ever become wider, this will need
732 * to be updated to remain correct on both old and new CPUs.
733 */
734 .ifne __VIRTUAL_MASK_SHIFT - 47
735 .error "virtual address width changed -- sysret checks need update"
736 .endif
737 shr $__VIRTUAL_MASK_SHIFT, %rcx
738 jnz opportunistic_sysret_failed
739
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800740 cmpq $__USER_CS,CS(%rsp) /* CS must match SYSRET */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700741 jne opportunistic_sysret_failed
742
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800743 movq R11(%rsp),%r11
744 cmpq %r11,EFLAGS(%rsp) /* R11 == RFLAGS */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700745 jne opportunistic_sysret_failed
746
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800747 testq $X86_EFLAGS_RF,%r11 /* sysret can't restore RF */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700748 jnz opportunistic_sysret_failed
749
750 /* nothing to check for RSP */
751
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800752 cmpq $__USER_DS,SS(%rsp) /* SS must match SYSRET */
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700753 jne opportunistic_sysret_failed
754
755 /*
756 * We win! This label is here just for ease of understanding
757 * perf profiles. Nothing jumps here.
758 */
759irq_return_via_sysret:
760 CFI_REMEMBER_STATE
Denys Vlasenkod441c1f2015-02-26 14:40:38 -0800761 /* r11 is already restored (see code above) */
762 RESTORE_C_REGS_EXCEPT_R11
763 movq RSP(%rsp),%rsp
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700764 USERGS_SYSRET64
765 CFI_RESTORE_STATE
766
767opportunistic_sysret_failed:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100768 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700769 jmp restore_args
770
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200771retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100772 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700773 /*
774 * The iretq could re-enable interrupts:
775 */
776 TRACE_IRQS_IRETQ
777restore_args:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800778 RESTORE_C_REGS
779 REMOVE_PT_GPREGS_FROM_STACK 8
Ingo Molnar3701d8632008-02-09 23:24:08 +0100780
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200781irq_return:
Andy Lutomirski7209a752014-07-23 08:34:11 -0700782 INTERRUPT_RETURN
783
784ENTRY(native_iret)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700785 /*
786 * Are we returning to a stack segment from the LDT? Note: in
787 * 64-bit mode SS:RSP on the exception stack is always valid.
788 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700789#ifdef CONFIG_X86_ESPFIX64
H. Peter Anvin3891a042014-04-29 16:46:09 -0700790 testb $4,(SS-RIP)(%rsp)
Andy Lutomirski7209a752014-07-23 08:34:11 -0700791 jnz native_irq_return_ldt
H. Peter Anvin34273f42014-05-04 10:36:22 -0700792#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700793
Andy Lutomirskiaf726f22014-11-22 18:00:31 -0800794.global native_irq_return_iret
Andy Lutomirski7209a752014-07-23 08:34:11 -0700795native_irq_return_iret:
Andy Lutomirskib645af22014-11-22 18:00:33 -0800796 /*
797 * This may fault. Non-paranoid faults on return to userspace are
798 * handled by fixup_bad_iret. These include #SS, #GP, and #NP.
799 * Double-faults due to espfix64 are handled in do_double_fault.
800 * Other faults here are fatal.
801 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 iretq
Ingo Molnar3701d8632008-02-09 23:24:08 +0100803
H. Peter Anvin34273f42014-05-04 10:36:22 -0700804#ifdef CONFIG_X86_ESPFIX64
Andy Lutomirski7209a752014-07-23 08:34:11 -0700805native_irq_return_ldt:
H. Peter Anvin3891a042014-04-29 16:46:09 -0700806 pushq_cfi %rax
807 pushq_cfi %rdi
808 SWAPGS
809 movq PER_CPU_VAR(espfix_waddr),%rdi
810 movq %rax,(0*8)(%rdi) /* RAX */
811 movq (2*8)(%rsp),%rax /* RIP */
812 movq %rax,(1*8)(%rdi)
813 movq (3*8)(%rsp),%rax /* CS */
814 movq %rax,(2*8)(%rdi)
815 movq (4*8)(%rsp),%rax /* RFLAGS */
816 movq %rax,(3*8)(%rdi)
817 movq (6*8)(%rsp),%rax /* SS */
818 movq %rax,(5*8)(%rdi)
819 movq (5*8)(%rsp),%rax /* RSP */
820 movq %rax,(4*8)(%rdi)
821 andl $0xffff0000,%eax
822 popq_cfi %rdi
823 orq PER_CPU_VAR(espfix_stack),%rax
824 SWAPGS
825 movq %rax,%rsp
826 popq_cfi %rax
Andy Lutomirski7209a752014-07-23 08:34:11 -0700827 jmp native_irq_return_iret
H. Peter Anvin34273f42014-05-04 10:36:22 -0700828#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700829
Jan Beulich7effaa82005-09-12 18:49:24 +0200830 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200832 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 bt $TIF_NEED_RESCHED,%edx
834 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700835 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100836 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100837 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200838 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100839 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100841 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700842 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100846 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700847 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700848 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100849 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800850 SAVE_EXTRA_REGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100851 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700852 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 movq %rsp,%rdi # &pt_regs
854 call do_notify_resume
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800855 RESTORE_EXTRA_REGS
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100856 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700857 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -0700858 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -0700859 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861#ifdef CONFIG_PREEMPT
862 /* Returning to kernel space. Check if we need preemption */
863 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +0200864ENTRY(retint_kernel)
Peter Zijlstrac2daa3b2013-08-14 14:51:00 +0200865 cmpl $0,PER_CPU_VAR(__preempt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 jnz retint_restore_args
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800867 bt $9,EFLAGS(%rsp) /* interrupts off? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 jnc retint_restore_args
869 call preempt_schedule_irq
870 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100871#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200873END(common_interrupt)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700874
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400875/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100877 */
Seiji Aguchicf910e82013-06-20 11:46:53 -0400878.macro apicinterrupt3 num sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100879ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +0200880 INTR_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000881 ASM_CLAC
Jan Beulichdf5d1872010-09-02 14:07:16 +0100882 pushq_cfi $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +0000883.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100884 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 jmp ret_from_intr
886 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100887END(\sym)
888.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100889
Seiji Aguchicf910e82013-06-20 11:46:53 -0400890#ifdef CONFIG_TRACING
891#define trace(sym) trace_##sym
892#define smp_trace(sym) smp_trace_##sym
893
894.macro trace_apicinterrupt num sym
895apicinterrupt3 \num trace(\sym) smp_trace(\sym)
896.endm
897#else
898.macro trace_apicinterrupt num sym do_sym
899.endm
900#endif
901
902.macro apicinterrupt num sym do_sym
903apicinterrupt3 \num \sym \do_sym
904trace_apicinterrupt \num \sym
905.endm
906
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100907#ifdef CONFIG_SMP
Seiji Aguchicf910e82013-06-20 11:46:53 -0400908apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100909 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Seiji Aguchicf910e82013-06-20 11:46:53 -0400910apicinterrupt3 REBOOT_VECTOR \
Andi Kleen4ef702c2009-05-27 21:56:52 +0200911 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912#endif
913
Nick Piggin03b48632009-01-20 04:36:04 +0100914#ifdef CONFIG_X86_UV
Seiji Aguchicf910e82013-06-20 11:46:53 -0400915apicinterrupt3 UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100916 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100917#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100918apicinterrupt LOCAL_TIMER_VECTOR \
919 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500920apicinterrupt X86_PLATFORM_IPI_VECTOR \
921 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Yang Zhangd78f2662013-04-11 19:25:11 +0800923#ifdef CONFIG_HAVE_KVM
Seiji Aguchicf910e82013-06-20 11:46:53 -0400924apicinterrupt3 POSTED_INTR_VECTOR \
Yang Zhangd78f2662013-04-11 19:25:11 +0800925 kvm_posted_intr_ipi smp_kvm_posted_intr_ipi
926#endif
927
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400928#ifdef CONFIG_X86_MCE_THRESHOLD
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100929apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +0200930 threshold_interrupt smp_threshold_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400931#endif
932
933#ifdef CONFIG_X86_THERMAL_VECTOR
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100934apicinterrupt THERMAL_APIC_VECTOR \
935 thermal_interrupt smp_thermal_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400936#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100938#ifdef CONFIG_SMP
939apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
940 call_function_single_interrupt smp_call_function_single_interrupt
941apicinterrupt CALL_FUNCTION_VECTOR \
942 call_function_interrupt smp_call_function_interrupt
943apicinterrupt RESCHEDULE_VECTOR \
944 reschedule_interrupt smp_reschedule_interrupt
945#endif
946
947apicinterrupt ERROR_APIC_VECTOR \
948 error_interrupt smp_error_interrupt
949apicinterrupt SPURIOUS_APIC_VECTOR \
950 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100951
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800952#ifdef CONFIG_IRQ_WORK
953apicinterrupt IRQ_WORK_VECTOR \
954 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +0100955#endif
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957/*
958 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100959 */
Andy Lutomirski9b476682015-03-05 19:19:07 -0800960#define CPU_TSS_IST(x) PER_CPU_VAR(cpu_tss) + (TSS_ist + ((x) - 1) * 8)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700961
962.macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100963ENTRY(\sym)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700964 /* Sanity check */
965 .if \shift_ist != -1 && \paranoid == 0
966 .error "using shift_ist requires paranoid=1"
967 .endif
968
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700969 .if \has_error_code
970 XCPT_FRAME
971 .else
Jan Beulich7effaa82005-09-12 18:49:24 +0200972 INTR_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700973 .endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Jan Beulichee4eb872012-11-02 11:18:39 +0000975 ASM_CLAC
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +0100976 PARAVIRT_ADJUST_EXCEPTION_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700977
978 .ifeq \has_error_code
979 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
980 .endif
981
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800982 ALLOC_PT_GPREGS_ON_STACK
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700983
984 .if \paranoid
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800985 .if \paranoid == 1
986 CFI_REMEMBER_STATE
987 testl $3, CS(%rsp) /* If coming from userspace, switch */
988 jnz 1f /* stacks. */
989 .endif
Denys Vlasenkoebfc4532015-02-26 14:40:34 -0800990 call paranoid_entry
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700991 .else
992 call error_entry
993 .endif
Denys Vlasenkoebfc4532015-02-26 14:40:34 -0800994 /* returned flag: ebx=0: need swapgs on exit, ebx=1: don't need it */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700995
Andy Lutomirski1bd24ef2014-05-21 15:07:07 -0700996 DEFAULT_FRAME 0
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700997
998 .if \paranoid
Andy Lutomirski577ed452014-05-21 15:07:09 -0700999 .if \shift_ist != -1
1000 TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */
1001 .else
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001002 TRACE_IRQS_OFF
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001003 .endif
Andy Lutomirski577ed452014-05-21 15:07:09 -07001004 .endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001005
1006 movq %rsp,%rdi /* pt_regs pointer */
1007
1008 .if \has_error_code
1009 movq ORIG_RAX(%rsp),%rsi /* get error code */
1010 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1011 .else
1012 xorl %esi,%esi /* no error code */
1013 .endif
1014
Andy Lutomirski577ed452014-05-21 15:07:09 -07001015 .if \shift_ist != -1
Andy Lutomirski9b476682015-03-05 19:19:07 -08001016 subq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001017 .endif
1018
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001019 call \do_sym
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001020
Andy Lutomirski577ed452014-05-21 15:07:09 -07001021 .if \shift_ist != -1
Andy Lutomirski9b476682015-03-05 19:19:07 -08001022 addq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001023 .endif
1024
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001025 /* these procedures expect "no swapgs" flag in ebx */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001026 .if \paranoid
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001027 jmp paranoid_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001028 .else
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001029 jmp error_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001030 .endif
1031
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001032 .if \paranoid == 1
1033 CFI_RESTORE_STATE
1034 /*
1035 * Paranoid entry from userspace. Switch stacks and treat it
1036 * as a normal entry. This means that paranoid handlers
1037 * run in real process context if user_mode(regs).
1038 */
10391:
1040 call error_entry
1041
1042 DEFAULT_FRAME 0
1043
1044 movq %rsp,%rdi /* pt_regs pointer */
1045 call sync_regs
1046 movq %rax,%rsp /* switch stack */
1047
1048 movq %rsp,%rdi /* pt_regs pointer */
1049
1050 .if \has_error_code
1051 movq ORIG_RAX(%rsp),%rsi /* get error code */
1052 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1053 .else
1054 xorl %esi,%esi /* no error code */
1055 .endif
1056
1057 call \do_sym
1058
1059 jmp error_exit /* %ebx: no swapgs flag */
1060 .endif
1061
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001062 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001063END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001064.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001065
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001066#ifdef CONFIG_TRACING
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001067.macro trace_idtentry sym do_sym has_error_code:req
1068idtentry trace(\sym) trace(\do_sym) has_error_code=\has_error_code
1069idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001070.endm
1071#else
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001072.macro trace_idtentry sym do_sym has_error_code:req
1073idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001074.endm
1075#endif
1076
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001077idtentry divide_error do_divide_error has_error_code=0
1078idtentry overflow do_overflow has_error_code=0
1079idtentry bounds do_bounds has_error_code=0
1080idtentry invalid_op do_invalid_op has_error_code=0
1081idtentry device_not_available do_device_not_available has_error_code=0
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001082idtentry double_fault do_double_fault has_error_code=1 paranoid=2
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001083idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0
1084idtentry invalid_TSS do_invalid_TSS has_error_code=1
1085idtentry segment_not_present do_segment_not_present has_error_code=1
1086idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0
1087idtentry coprocessor_error do_coprocessor_error has_error_code=0
1088idtentry alignment_check do_alignment_check has_error_code=1
1089idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001090
Ingo Molnar2601e642006-07-03 00:24:45 -07001091
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001092 /* Reload gs selector with exception handling */
1093 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001094ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001095 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001096 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001097 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001098 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001099gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001100 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070011012: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001102 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001103 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001104 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001105 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001106END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001107
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001108 _ASM_EXTABLE(gs_change,bad_gs)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001109 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001111bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001112 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001114 movl %eax,%gs
1115 jmp 2b
1116 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001117
Andi Kleen26995002006-08-02 22:37:28 +02001118/* Call softirq on interrupt stack. Interrupts are off. */
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001119ENTRY(do_softirq_own_stack)
Jan Beulich7effaa82005-09-12 18:49:24 +02001120 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001121 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001122 CFI_REL_OFFSET rbp,0
1123 mov %rsp,%rbp
1124 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001125 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001126 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001127 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001128 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001129 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001130 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001131 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001132 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001133 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001134 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001135 CFI_ENDPROC
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001136END(do_softirq_own_stack)
Andi Kleen75154f42007-06-23 02:29:25 +02001137
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001138#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001139idtentry xen_hypervisor_callback xen_do_hypervisor_callback has_error_code=0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001140
1141/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001142 * A note on the "critical region" in our callback handler.
1143 * We want to avoid stacking callback handlers due to events occurring
1144 * during handling of the last event. To do this, we keep events disabled
1145 * until we've done all processing. HOWEVER, we must enable events before
1146 * popping the stack frame (can't be done atomically) and so it would still
1147 * be possible to get enough handler activations to overflow the stack.
1148 * Although unlikely, bugs of that kind are hard to track down, so we'd
1149 * like to avoid the possibility.
1150 * So, on entry to the handler we detect whether we interrupted an
1151 * existing activation in its critical region -- if so, we pop the current
1152 * activation and restart the handler using the previous one.
1153 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001154ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1155 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001156/*
1157 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1158 * see the correct pointer to the pt_regs
1159 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001160 movq %rdi, %rsp # we don't return, adjust the stack frame
1161 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001162 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900116311: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001164 movq %rsp,%rbp
1165 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001166 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001167 pushq %rbp # backlink for old unwinder
1168 call xen_evtchn_do_upcall
1169 popq %rsp
1170 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001171 decl PER_CPU_VAR(irq_count)
David Vrabelfdfd8112015-02-19 15:23:17 +00001172#ifndef CONFIG_PREEMPT
1173 call xen_maybe_preempt_hcall
1174#endif
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001175 jmp error_exit
1176 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001177END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001178
1179/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001180 * Hypervisor uses this for application faults while it executes.
1181 * We get here for two reasons:
1182 * 1. Fault while reloading DS, ES, FS or GS
1183 * 2. Fault while executing IRET
1184 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1185 * registers that could be reloaded and zeroed the others.
1186 * Category 2 we fix up by killing the current process. We cannot use the
1187 * normal Linux return path in this case because if we use the IRET hypercall
1188 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1189 * We distinguish between categories by comparing each saved segment register
1190 * with its current contents: any discrepancy means we in category 1.
1191 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001192ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001193 INTR_FRAME 1 (6*8)
1194 /*CFI_REL_OFFSET gs,GS*/
1195 /*CFI_REL_OFFSET fs,FS*/
1196 /*CFI_REL_OFFSET es,ES*/
1197 /*CFI_REL_OFFSET ds,DS*/
1198 CFI_REL_OFFSET r11,8
1199 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001200 movw %ds,%cx
1201 cmpw %cx,0x10(%rsp)
1202 CFI_REMEMBER_STATE
1203 jne 1f
1204 movw %es,%cx
1205 cmpw %cx,0x18(%rsp)
1206 jne 1f
1207 movw %fs,%cx
1208 cmpw %cx,0x20(%rsp)
1209 jne 1f
1210 movw %gs,%cx
1211 cmpw %cx,0x28(%rsp)
1212 jne 1f
1213 /* All segments match their saved values => Category 2 (Bad IRET). */
1214 movq (%rsp),%rcx
1215 CFI_RESTORE rcx
1216 movq 8(%rsp),%r11
1217 CFI_RESTORE r11
1218 addq $0x30,%rsp
1219 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001220 pushq_cfi $0 /* RIP */
1221 pushq_cfi %r11
1222 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001223 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001224 CFI_RESTORE_STATE
12251: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1226 movq (%rsp),%rcx
1227 CFI_RESTORE rcx
1228 movq 8(%rsp),%r11
1229 CFI_RESTORE r11
1230 addq $0x30,%rsp
1231 CFI_ADJUST_CFA_OFFSET -0x30
David Vrabela349e23d12012-10-19 17:29:07 +01001232 pushq_cfi $-1 /* orig_ax = -1 => not a system call */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001233 ALLOC_PT_GPREGS_ON_STACK
1234 SAVE_C_REGS
1235 SAVE_EXTRA_REGS
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001236 jmp error_exit
1237 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001238END(xen_failsafe_callback)
1239
Seiji Aguchicf910e82013-06-20 11:46:53 -04001240apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
Sheng Yang38e20b02010-05-14 12:40:51 +01001241 xen_hvm_callback_vector xen_evtchn_do_upcall
1242
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001243#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001244
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001245#if IS_ENABLED(CONFIG_HYPERV)
Seiji Aguchicf910e82013-06-20 11:46:53 -04001246apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001247 hyperv_callback_vector hyperv_vector_handler
1248#endif /* CONFIG_HYPERV */
1249
Andy Lutomirski577ed452014-05-21 15:07:09 -07001250idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1251idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
Andy Lutomirski6f442be2014-11-22 18:00:32 -08001252idtentry stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001253#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001254idtentry xen_debug do_debug has_error_code=0
1255idtentry xen_int3 do_int3 has_error_code=0
1256idtentry xen_stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001257#endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001258idtentry general_protection do_general_protection has_error_code=1
1259trace_idtentry page_fault do_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001260#ifdef CONFIG_KVM_GUEST
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001261idtentry async_page_fault do_async_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001262#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001263#ifdef CONFIG_X86_MCE
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001264idtentry machine_check has_error_code=0 paranoid=1 do_sym=*machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001265#endif
1266
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001267/*
1268 * Save all registers in pt_regs, and switch gs if needed.
1269 * Use slow, but surefire "are we in kernel?" check.
1270 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
1271 */
1272ENTRY(paranoid_entry)
1273 XCPT_FRAME 1 15*8
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001274 cld
1275 SAVE_C_REGS 8
1276 SAVE_EXTRA_REGS 8
1277 movl $1,%ebx
1278 movl $MSR_GS_BASE,%ecx
1279 rdmsr
1280 testl %edx,%edx
1281 js 1f /* negative -> in kernel */
1282 SWAPGS
1283 xorl %ebx,%ebx
12841: ret
1285 CFI_ENDPROC
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001286END(paranoid_entry)
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001287
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001288/*
1289 * "Paranoid" exit path from exception stack. This is invoked
1290 * only on return from non-NMI IST interrupts that came
1291 * from kernel space.
1292 *
1293 * We may be returning to very strange contexts (e.g. very early
1294 * in syscall entry), so checking for preemption here would
1295 * be complicated. Fortunately, we there's no good reason
1296 * to try to handle preemption here.
1297 */
1298/* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001299ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001300 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001301 DISABLE_INTERRUPTS(CLBR_NONE)
Steven Rostedt5963e312012-05-30 11:54:53 -04001302 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001303 testl %ebx,%ebx /* swapgs needed? */
Denys Vlasenko0d550832015-02-26 14:40:29 -08001304 jnz paranoid_exit_no_swapgs
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001305 TRACE_IRQS_IRETQ
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001306 SWAPGS_UNSAFE_STACK
Denys Vlasenko0d550832015-02-26 14:40:29 -08001307 jmp paranoid_exit_restore
1308paranoid_exit_no_swapgs:
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001309 TRACE_IRQS_IRETQ_DEBUG
Denys Vlasenko0d550832015-02-26 14:40:29 -08001310paranoid_exit_restore:
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001311 RESTORE_EXTRA_REGS
1312 RESTORE_C_REGS
1313 REMOVE_PT_GPREGS_FROM_STACK 8
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001314 INTERRUPT_RETURN
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001315 CFI_ENDPROC
1316END(paranoid_exit)
1317
1318/*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001319 * Save all registers in pt_regs, and switch gs if needed.
1320 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001321 */
1322ENTRY(error_entry)
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001323 XCPT_FRAME 1 15*8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001324 cld
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001325 SAVE_C_REGS 8
1326 SAVE_EXTRA_REGS 8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001327 xorl %ebx,%ebx
1328 testl $3,CS+8(%rsp)
1329 je error_kernelspace
1330error_swapgs:
1331 SWAPGS
1332error_sti:
1333 TRACE_IRQS_OFF
1334 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001335
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001336 /*
1337 * There are two places in the kernel that can potentially fault with
1338 * usergs. Handle them here. B stepping K8s sometimes report a
1339 * truncated RIP for IRET exceptions returning to compat mode. Check
1340 * for these here too.
1341 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001342error_kernelspace:
Jan Beulich3bab13b2014-06-25 14:11:22 +01001343 CFI_REL_OFFSET rcx, RCX+8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001344 incl %ebx
Andy Lutomirski7209a752014-07-23 08:34:11 -07001345 leaq native_irq_return_iret(%rip),%rcx
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001346 cmpq %rcx,RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001347 je error_bad_iret
Brian Gerstae24ffe2009-10-12 10:18:23 -04001348 movl %ecx,%eax /* zero extend */
1349 cmpq %rax,RIP+8(%rsp)
1350 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001351 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001352 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001353 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001354
1355bstep_iret:
1356 /* Fix truncated RIP */
1357 movq %rcx,RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001358 /* fall through */
1359
1360error_bad_iret:
1361 SWAPGS
1362 mov %rsp,%rdi
1363 call fixup_bad_iret
1364 mov %rax,%rsp
1365 decl %ebx /* Return to usergs */
1366 jmp error_sti
Jan Beuliche6b04b62010-09-02 13:52:45 +01001367 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001368END(error_entry)
1369
1370
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001371/* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001372ENTRY(error_exit)
1373 DEFAULT_FRAME
1374 movl %ebx,%eax
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001375 RESTORE_EXTRA_REGS
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001376 DISABLE_INTERRUPTS(CLBR_NONE)
1377 TRACE_IRQS_OFF
1378 GET_THREAD_INFO(%rcx)
1379 testl %eax,%eax
1380 jne retint_kernel
1381 LOCKDEP_SYS_EXIT_IRQ
1382 movl TI_flags(%rcx),%edx
1383 movl $_TIF_WORK_MASK,%edi
1384 andl %edi,%edx
1385 jnz retint_careful
1386 jmp retint_swapgs
1387 CFI_ENDPROC
1388END(error_exit)
1389
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001390/*
1391 * Test if a given stack is an NMI stack or not.
1392 */
1393 .macro test_in_nmi reg stack nmi_ret normal_ret
1394 cmpq %\reg, \stack
1395 ja \normal_ret
1396 subq $EXCEPTION_STKSZ, %\reg
1397 cmpq %\reg, \stack
1398 jb \normal_ret
1399 jmp \nmi_ret
1400 .endm
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001401
1402 /* runs on exception stack */
1403ENTRY(nmi)
1404 INTR_FRAME
1405 PARAVIRT_ADJUST_EXCEPTION_FRAME
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001406 /*
1407 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1408 * the iretq it performs will take us out of NMI context.
1409 * This means that we can have nested NMIs where the next
1410 * NMI is using the top of the stack of the previous NMI. We
1411 * can't let it execute because the nested NMI will corrupt the
1412 * stack of the previous NMI. NMI handlers are not re-entrant
1413 * anyway.
1414 *
1415 * To handle this case we do the following:
1416 * Check the a special location on the stack that contains
1417 * a variable that is set when NMIs are executing.
1418 * The interrupted task's stack is also checked to see if it
1419 * is an NMI stack.
1420 * If the variable is not set and the stack is not the NMI
1421 * stack then:
1422 * o Set the special variable on the stack
1423 * o Copy the interrupt frame into a "saved" location on the stack
1424 * o Copy the interrupt frame into a "copy" location on the stack
1425 * o Continue processing the NMI
1426 * If the variable is set or the previous stack is the NMI stack:
1427 * o Modify the "copy" location to jump to the repeate_nmi
1428 * o return back to the first NMI
1429 *
1430 * Now on exit of the first NMI, we first clear the stack variable
1431 * The NMI stack will tell any nested NMIs at that point that it is
1432 * nested. Then we pop the stack normally with iret, and if there was
1433 * a nested NMI that updated the copy interrupt stack frame, a
1434 * jump will be made to the repeat_nmi code that will handle the second
1435 * NMI.
1436 */
1437
1438 /* Use %rdx as out temp variable throughout */
1439 pushq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001440 CFI_REL_OFFSET rdx, 0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001441
1442 /*
Steven Rostedt45d5a162012-02-19 16:43:37 -05001443 * If %cs was not the kernel segment, then the NMI triggered in user
1444 * space, which means it is definitely not nested.
1445 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001446 cmpl $__KERNEL_CS, 16(%rsp)
Steven Rostedt45d5a162012-02-19 16:43:37 -05001447 jne first_nmi
1448
1449 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001450 * Check the special variable on the stack to see if NMIs are
1451 * executing.
1452 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001453 cmpl $1, -8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001454 je nested_nmi
1455
1456 /*
1457 * Now test if the previous stack was an NMI stack.
1458 * We need the double check. We check the NMI stack to satisfy the
1459 * race when the first NMI clears the variable before returning.
1460 * We check the variable because the first NMI could be in a
1461 * breakpoint routine using a breakpoint stack.
1462 */
1463 lea 6*8(%rsp), %rdx
1464 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
Jan Beulich62610912012-02-24 14:54:37 +00001465 CFI_REMEMBER_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001466
1467nested_nmi:
1468 /*
1469 * Do nothing if we interrupted the fixup in repeat_nmi.
1470 * It's about to repeat the NMI handler, so we are fine
1471 * with ignoring this one.
1472 */
1473 movq $repeat_nmi, %rdx
1474 cmpq 8(%rsp), %rdx
1475 ja 1f
1476 movq $end_repeat_nmi, %rdx
1477 cmpq 8(%rsp), %rdx
1478 ja nested_nmi_out
1479
14801:
1481 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
Salman Qazi28696f42012-10-01 17:29:25 -07001482 leaq -1*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001483 movq %rdx, %rsp
Salman Qazi28696f42012-10-01 17:29:25 -07001484 CFI_ADJUST_CFA_OFFSET 1*8
1485 leaq -10*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001486 pushq_cfi $__KERNEL_DS
1487 pushq_cfi %rdx
1488 pushfq_cfi
1489 pushq_cfi $__KERNEL_CS
1490 pushq_cfi $repeat_nmi
1491
1492 /* Put stack back */
Salman Qazi28696f42012-10-01 17:29:25 -07001493 addq $(6*8), %rsp
1494 CFI_ADJUST_CFA_OFFSET -6*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001495
1496nested_nmi_out:
1497 popq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001498 CFI_RESTORE rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001499
1500 /* No need to check faults here */
1501 INTERRUPT_RETURN
1502
Jan Beulich62610912012-02-24 14:54:37 +00001503 CFI_RESTORE_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001504first_nmi:
1505 /*
1506 * Because nested NMIs will use the pushed location that we
1507 * stored in rdx, we must keep that space available.
1508 * Here's what our stack frame will look like:
1509 * +-------------------------+
1510 * | original SS |
1511 * | original Return RSP |
1512 * | original RFLAGS |
1513 * | original CS |
1514 * | original RIP |
1515 * +-------------------------+
1516 * | temp storage for rdx |
1517 * +-------------------------+
1518 * | NMI executing variable |
1519 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001520 * | copied SS |
1521 * | copied Return RSP |
1522 * | copied RFLAGS |
1523 * | copied CS |
1524 * | copied RIP |
1525 * +-------------------------+
Salman Qazi28696f42012-10-01 17:29:25 -07001526 * | Saved SS |
1527 * | Saved Return RSP |
1528 * | Saved RFLAGS |
1529 * | Saved CS |
1530 * | Saved RIP |
1531 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001532 * | pt_regs |
1533 * +-------------------------+
1534 *
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001535 * The saved stack frame is used to fix up the copied stack frame
1536 * that a nested NMI may change to make the interrupted NMI iret jump
1537 * to the repeat_nmi. The original stack frame and the temp storage
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001538 * is also used by nested NMIs and can not be trusted on exit.
1539 */
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001540 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
Jan Beulich62610912012-02-24 14:54:37 +00001541 movq (%rsp), %rdx
1542 CFI_RESTORE rdx
1543
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001544 /* Set the NMI executing variable on the stack. */
1545 pushq_cfi $1
1546
Salman Qazi28696f42012-10-01 17:29:25 -07001547 /*
1548 * Leave room for the "copied" frame
1549 */
1550 subq $(5*8), %rsp
Jan Beulich444723d2013-01-24 09:27:31 +00001551 CFI_ADJUST_CFA_OFFSET 5*8
Salman Qazi28696f42012-10-01 17:29:25 -07001552
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001553 /* Copy the stack frame to the Saved frame */
1554 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001555 pushq_cfi 11*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001556 .endr
Denys Vlasenko911d2bb2015-02-26 14:40:36 -08001557 CFI_DEF_CFA_OFFSET 5*8
Jan Beulich62610912012-02-24 14:54:37 +00001558
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001559 /* Everything up to here is safe from nested NMIs */
1560
Jan Beulich62610912012-02-24 14:54:37 +00001561 /*
1562 * If there was a nested NMI, the first NMI's iret will return
1563 * here. But NMIs are still enabled and we can take another
1564 * nested NMI. The nested NMI checks the interrupted RIP to see
1565 * if it is between repeat_nmi and end_repeat_nmi, and if so
1566 * it will just return, as we are about to repeat an NMI anyway.
1567 * This makes it safe to copy to the stack frame that a nested
1568 * NMI will update.
1569 */
1570repeat_nmi:
1571 /*
1572 * Update the stack variable to say we are still in NMI (the update
1573 * is benign for the non-repeat case, where 1 was pushed just above
1574 * to this very stack slot).
1575 */
Salman Qazi28696f42012-10-01 17:29:25 -07001576 movq $1, 10*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001577
1578 /* Make another copy, this one may be modified by nested NMIs */
Salman Qazi28696f42012-10-01 17:29:25 -07001579 addq $(10*8), %rsp
1580 CFI_ADJUST_CFA_OFFSET -10*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001581 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001582 pushq_cfi -6*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001583 .endr
Salman Qazi28696f42012-10-01 17:29:25 -07001584 subq $(5*8), %rsp
Denys Vlasenko911d2bb2015-02-26 14:40:36 -08001585 CFI_DEF_CFA_OFFSET 5*8
Jan Beulich62610912012-02-24 14:54:37 +00001586end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001587
1588 /*
1589 * Everything below this point can be preempted by a nested
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001590 * NMI if the first NMI took an exception and reset our iret stack
1591 * so that we repeat another NMI.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001592 */
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001593 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001594 ALLOC_PT_GPREGS_ON_STACK
1595
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001596 /*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001597 * Use paranoid_entry to handle SWAPGS, but no need to use paranoid_exit
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001598 * as we should not be calling schedule in NMI context.
1599 * Even with normal interrupts enabled. An NMI should not be
1600 * setting NEED_RESCHED or anything that normal interrupts and
1601 * exceptions might do.
1602 */
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001603 call paranoid_entry
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001604 DEFAULT_FRAME 0
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001605
1606 /*
1607 * Save off the CR2 register. If we take a page fault in the NMI then
1608 * it could corrupt the CR2 value. If the NMI preempts a page fault
1609 * handler before it was able to read the CR2 register, and then the
1610 * NMI itself takes a page fault, the page fault that was preempted
1611 * will read the information from the NMI page fault and not the
1612 * origin fault. Save it off and restore it if it changes.
1613 * Use the r12 callee-saved register.
1614 */
1615 movq %cr2, %r12
1616
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001617 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1618 movq %rsp,%rdi
1619 movq $-1,%rsi
1620 call do_nmi
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001621
1622 /* Did the NMI take a page fault? Restore cr2 if it did */
1623 movq %cr2, %rcx
1624 cmpq %rcx, %r12
1625 je 1f
1626 movq %r12, %cr2
16271:
1628
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001629 testl %ebx,%ebx /* swapgs needed? */
1630 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001631nmi_swapgs:
1632 SWAPGS_UNSAFE_STACK
1633nmi_restore:
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001634 RESTORE_EXTRA_REGS
1635 RESTORE_C_REGS
Jan Beulich444723d2013-01-24 09:27:31 +00001636 /* Pop the extra iret frame at once */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001637 REMOVE_PT_GPREGS_FROM_STACK 6*8
Salman Qazi28696f42012-10-01 17:29:25 -07001638
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001639 /* Clear the NMI executing stack variable */
Salman Qazi28696f42012-10-01 17:29:25 -07001640 movq $0, 5*8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001641 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001642 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001643END(nmi)
1644
1645ENTRY(ignore_sysret)
1646 CFI_STARTPROC
1647 mov $-ENOSYS,%eax
1648 sysret
1649 CFI_ENDPROC
1650END(ignore_sysret)
1651