blob: f72c03a1ac5498af28219ba82280ec5de329605b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/x86_64/entry.S
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 2000, 2001, 2002 Andi Kleen SuSE Labs
6 * Copyright (C) 2000 Pavel Machek <pavel@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
9/*
10 * entry.S contains the system-call and fault low-level handling routines.
11 *
Andy Lutomirski8b4777a2011-06-05 13:50:18 -040012 * Some of this is documented in Documentation/x86/entry_64.txt
13 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * NOTE: This code handles signal-recognition, which happens every time
15 * after an interrupt and after each system call.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010016 *
17 * Normal syscalls and interrupts don't save a full stack frame, this is
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * only done for syscall tracing, signals or fork/exec et.al.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010019 *
20 * A note on terminology:
21 * - top of stack: Architecture defined interrupt frame from SS to RIP
22 * at the top of the kernel process stack.
Lucas De Marchi0d2eb442011-03-17 16:24:16 -030023 * - partial stack frame: partially saved registers up to R11.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010024 * - full stack frame: Like partial stack frame, but all register saved.
Andi Kleen2e91a172006-09-26 10:52:29 +020025 *
26 * Some macro usage:
27 * - CFI macros are used to generate dwarf2 unwind information for better
28 * backtraces. They don't change any code.
29 * - SAVE_ALL/RESTORE_ALL - Save/restore all registers
30 * - SAVE_ARGS/RESTORE_ARGS - Save/restore registers that C functions modify.
31 * There are unfortunately lots of special cases where some registers
32 * not touched. The macro is a big mess that should be cleaned up.
33 * - SAVE_REST/RESTORE_REST - Handle the registers not saved by SAVE_ARGS.
34 * Gives a full stack frame.
35 * - ENTRY/END Define functions in the symbol table.
36 * - FIXUP_TOP_OF_STACK/RESTORE_TOP_OF_STACK - Fix up the hardware stack
37 * frame that is otherwise undefined after a SYSCALL
38 * - TRACE_IRQ_* - Trace hard interrupt state for lock debugging.
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -070039 * - idtentry - Define exception entry points.
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 */
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/linkage.h>
43#include <asm/segment.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/cache.h>
45#include <asm/errno.h>
46#include <asm/dwarf2.h>
47#include <asm/calling.h>
Sam Ravnborge2d5df92005-09-09 21:28:48 +020048#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/msr.h>
50#include <asm/unistd.h>
51#include <asm/thread_info.h>
52#include <asm/hw_irq.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080053#include <asm/page_types.h>
Ingo Molnar2601e642006-07-03 00:24:45 -070054#include <asm/irqflags.h>
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010055#include <asm/paravirt.h>
Tejun Heo9939dda2009-01-13 20:41:35 +090056#include <asm/percpu.h>
H. Peter Anvind7abc0f2012-04-20 12:19:50 -070057#include <asm/asm.h>
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010058#include <asm/context_tracking.h>
H. Peter Anvin63bcff22012-09-21 12:43:12 -070059#include <asm/smap.h>
H. Peter Anvin3891a042014-04-29 16:46:09 -070060#include <asm/pgtable_types.h>
Eric Parisd7e75282012-01-03 14:23:06 -050061#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Roland McGrath86a1c342008-06-23 15:37:04 -070063/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
64#include <linux/elf-em.h>
65#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
66#define __AUDIT_ARCH_64BIT 0x80000000
67#define __AUDIT_ARCH_LE 0x40000000
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 .code64
Jiri Olsaea714542011-03-07 19:10:39 +010070 .section .entry.text, "ax"
71
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020072
Andi Kleendc37db42005-04-16 15:25:05 -070073#ifndef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define retint_kernel retint_restore_args
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010075#endif
Ingo Molnar2601e642006-07-03 00:24:45 -070076
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010077#ifdef CONFIG_PARAVIRT
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -040078ENTRY(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010079 swapgs
80 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +030081ENDPROC(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010082#endif /* CONFIG_PARAVIRT */
83
Ingo Molnar2601e642006-07-03 00:24:45 -070084
85.macro TRACE_IRQS_IRETQ offset=ARGOFFSET
86#ifdef CONFIG_TRACE_IRQFLAGS
87 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
88 jnc 1f
89 TRACE_IRQS_ON
901:
91#endif
92.endm
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*
Steven Rostedt5963e312012-05-30 11:54:53 -040095 * When dynamic function tracer is enabled it will add a breakpoint
96 * to all locations that it is about to modify, sync CPUs, update
97 * all the code, sync CPUs, then remove the breakpoints. In this time
98 * if lockdep is enabled, it might jump back into the debug handler
99 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
100 *
101 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
102 * make sure the stack pointer does not get reset back to the top
103 * of the debug stack, and instead just reuses the current stack.
104 */
105#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
106
107.macro TRACE_IRQS_OFF_DEBUG
108 call debug_stack_set_zero
109 TRACE_IRQS_OFF
110 call debug_stack_reset
111.endm
112
113.macro TRACE_IRQS_ON_DEBUG
114 call debug_stack_set_zero
115 TRACE_IRQS_ON
116 call debug_stack_reset
117.endm
118
119.macro TRACE_IRQS_IRETQ_DEBUG offset=ARGOFFSET
120 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
121 jnc 1f
122 TRACE_IRQS_ON_DEBUG
1231:
124.endm
125
126#else
127# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
128# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
129# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
130#endif
131
132/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100133 * C code is not supposed to know about undefined top of stack. Every time
134 * a C function with an pt_regs argument is called from the SYSCALL based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 * fast path FIXUP_TOP_OF_STACK is needed.
136 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
137 * manipulation.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100138 */
139
140 /* %rsp:at FRAMEEND */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100141 .macro FIXUP_TOP_OF_STACK tmp offset=0
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900142 movq PER_CPU_VAR(old_rsp),\tmp
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100143 movq \tmp,RSP+\offset(%rsp)
144 movq $__USER_DS,SS+\offset(%rsp)
145 movq $__USER_CS,CS+\offset(%rsp)
146 movq $-1,RCX+\offset(%rsp)
147 movq R11+\offset(%rsp),\tmp /* get eflags */
148 movq \tmp,EFLAGS+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 .endm
150
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100151 .macro RESTORE_TOP_OF_STACK tmp offset=0
152 movq RSP+\offset(%rsp),\tmp
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900153 movq \tmp,PER_CPU_VAR(old_rsp)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100154 movq EFLAGS+\offset(%rsp),\tmp
155 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 .endm
157
158 .macro FAKE_STACK_FRAME child_rip
159 /* push in order ss, rsp, eflags, cs, rip */
Andi Kleen3829ee62005-07-28 21:15:48 -0700160 xorl %eax, %eax
Jan Beulichdf5d1872010-09-02 14:07:16 +0100161 pushq_cfi $__KERNEL_DS /* ss */
Jan Beulich7effaa82005-09-12 18:49:24 +0200162 /*CFI_REL_OFFSET ss,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100163 pushq_cfi %rax /* rsp */
Jan Beulich7effaa82005-09-12 18:49:24 +0200164 CFI_REL_OFFSET rsp,0
H. Peter Anvin1adfa762013-04-27 16:10:11 -0700165 pushq_cfi $(X86_EFLAGS_IF|X86_EFLAGS_FIXED) /* eflags - interrupts on */
Jan Beulich7effaa82005-09-12 18:49:24 +0200166 /*CFI_REL_OFFSET rflags,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100167 pushq_cfi $__KERNEL_CS /* cs */
Jan Beulich7effaa82005-09-12 18:49:24 +0200168 /*CFI_REL_OFFSET cs,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100169 pushq_cfi \child_rip /* rip */
Jan Beulich7effaa82005-09-12 18:49:24 +0200170 CFI_REL_OFFSET rip,0
Jan Beulichdf5d1872010-09-02 14:07:16 +0100171 pushq_cfi %rax /* orig rax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 .endm
173
174 .macro UNFAKE_STACK_FRAME
175 addq $8*6, %rsp
176 CFI_ADJUST_CFA_OFFSET -(6*8)
177 .endm
178
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100179/*
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100180 * initial frame state for interrupts (and exceptions without error code)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100181 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100182 .macro EMPTY_FRAME start=1 offset=0
183 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100184 CFI_STARTPROC simple
185 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100186 CFI_DEF_CFA rsp,8+\offset
187 .else
188 CFI_DEF_CFA_OFFSET 8+\offset
189 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100190 .endm
191
192/*
193 * initial frame state for interrupts (and exceptions without error code)
194 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100195 .macro INTR_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100196 EMPTY_FRAME \start, SS+8+\offset-RIP
197 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
198 CFI_REL_OFFSET rsp, RSP+\offset-RIP
199 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
200 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
201 CFI_REL_OFFSET rip, RIP+\offset-RIP
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100202 .endm
203
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100204/*
205 * initial frame state for exceptions with error code (and interrupts
206 * with vector already pushed)
207 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100208 .macro XCPT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100209 INTR_FRAME \start, RIP+\offset-ORIG_RAX
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100210 .endm
211
212/*
213 * frame that enables calling into C.
214 */
215 .macro PARTIAL_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100216 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
217 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
218 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
219 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
220 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
221 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
222 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
223 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
224 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
225 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100226 .endm
227
228/*
229 * frame that enables passing a complete pt_regs to a C function.
230 */
231 .macro DEFAULT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100232 PARTIAL_FRAME \start, R11+\offset-R15
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100233 CFI_REL_OFFSET rbx, RBX+\offset
234 CFI_REL_OFFSET rbp, RBP+\offset
235 CFI_REL_OFFSET r12, R12+\offset
236 CFI_REL_OFFSET r13, R13+\offset
237 CFI_REL_OFFSET r14, R14+\offset
238 CFI_REL_OFFSET r15, R15+\offset
239 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100240
241/* save partial stack frame */
Frederic Weisbecker18718532011-07-01 01:51:22 +0200242 .macro SAVE_ARGS_IRQ
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100243 cld
Frederic Weisbecker18718532011-07-01 01:51:22 +0200244 /* start from rbp in pt_regs and jump over */
Tao Guo1b2b23d2012-09-26 04:28:22 -0400245 movq_cfi rdi, (RDI-RBP)
246 movq_cfi rsi, (RSI-RBP)
247 movq_cfi rdx, (RDX-RBP)
248 movq_cfi rcx, (RCX-RBP)
249 movq_cfi rax, (RAX-RBP)
250 movq_cfi r8, (R8-RBP)
251 movq_cfi r9, (R9-RBP)
252 movq_cfi r10, (R10-RBP)
253 movq_cfi r11, (R11-RBP)
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100254
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200255 /* Save rbp so that we can unwind from get_irq_regs() */
256 movq_cfi rbp, 0
257
258 /* Save previous stack value */
259 movq %rsp, %rsi
Frederic Weisbecker3b99a3ef2011-07-01 02:25:17 +0200260
261 leaq -RBP(%rsp),%rdi /* arg1 for handler */
Jan Beulich69466462012-02-24 11:55:01 +0000262 testl $3, CS-RBP(%rsi)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100263 je 1f
264 SWAPGS
265 /*
Brian Gerst56895532009-01-19 00:38:58 +0900266 * irq_count is used to check if a CPU is already on an interrupt stack
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100267 * or not. While this is essentially redundant with preempt_count it is
268 * a little cheaper to use a separate counter in the PDA (short of
269 * moving irq_enter into assembly, which would be too much work)
270 */
Brian Gerst56895532009-01-19 00:38:58 +09002711: incl PER_CPU_VAR(irq_count)
Jan Beulich69466462012-02-24 11:55:01 +0000272 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100273 CFI_DEF_CFA_REGISTER rsi
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200274
Jan Beulich69466462012-02-24 11:55:01 +0000275 /* Store previous stack value */
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200276 pushq %rsi
Jan Beulicheab9e612011-09-28 16:57:52 +0100277 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
278 0x77 /* DW_OP_breg7 */, 0, \
279 0x06 /* DW_OP_deref */, \
280 0x08 /* DW_OP_const1u */, SS+8-RBP, \
281 0x22 /* DW_OP_plus */
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200282 /* We entered an interrupt context - irqs are off: */
283 TRACE_IRQS_OFF
Frederic Weisbecker18718532011-07-01 01:51:22 +0200284 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100285
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100286ENTRY(save_paranoid)
287 XCPT_FRAME 1 RDI+8
288 cld
Jan Beulich3bab13b2014-06-25 14:11:22 +0100289 movq %rdi, RDI+8(%rsp)
290 movq %rsi, RSI+8(%rsp)
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100291 movq_cfi rdx, RDX+8
292 movq_cfi rcx, RCX+8
293 movq_cfi rax, RAX+8
Jan Beulich3bab13b2014-06-25 14:11:22 +0100294 movq %r8, R8+8(%rsp)
295 movq %r9, R9+8(%rsp)
296 movq %r10, R10+8(%rsp)
297 movq %r11, R11+8(%rsp)
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100298 movq_cfi rbx, RBX+8
Jan Beulich3bab13b2014-06-25 14:11:22 +0100299 movq %rbp, RBP+8(%rsp)
300 movq %r12, R12+8(%rsp)
301 movq %r13, R13+8(%rsp)
302 movq %r14, R14+8(%rsp)
303 movq %r15, R15+8(%rsp)
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100304 movl $1,%ebx
305 movl $MSR_GS_BASE,%ecx
306 rdmsr
307 testl %edx,%edx
308 js 1f /* negative -> in kernel */
309 SWAPGS
310 xorl %ebx,%ebx
3111: ret
312 CFI_ENDPROC
313END(save_paranoid)
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315/*
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100316 * A newly forked process directly context switches into this address.
317 *
318 * rdi: prev task we switched from
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100319 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320ENTRY(ret_from_fork)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100321 DEFAULT_FRAME
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100322
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500323 LOCK ; btr $TIF_FORK,TI_flags(%r8)
324
Ian Campbell6eebdda2012-08-24 23:58:47 +0400325 pushq_cfi $0x0002
Jan Beulichdf5d1872010-09-02 14:07:16 +0100326 popfq_cfi # reset kernel eflags
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100327
328 call schedule_tail # rdi: 'prev' task parameter
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 GET_THREAD_INFO(%rcx)
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 RESTORE_REST
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100333
334 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
Al Viro7076aad2012-09-10 16:44:54 -0400335 jz 1f
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100336
337 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 jnz int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100339
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100340 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100341 jmp ret_from_sys_call # go to the SYSRET fastpath
342
Al Viro7076aad2012-09-10 16:44:54 -04003431:
Al Viro22e2430d2012-10-10 21:35:42 -0400344 subq $REST_SKIP, %rsp # leave space for volatiles
Al Viro7076aad2012-09-10 16:44:54 -0400345 CFI_ADJUST_CFA_OFFSET REST_SKIP
346 movq %rbp, %rdi
347 call *%rbx
Al Viro22e2430d2012-10-10 21:35:42 -0400348 movl $0, RAX(%rsp)
349 RESTORE_REST
350 jmp int_ret_from_sys_call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200352END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354/*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300355 * System call entry. Up to 6 arguments in registers are supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 *
357 * SYSCALL does not save anything on the stack and does not change the
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700358 * stack pointer. However, it does mask the flags register for us, so
359 * CLD and CLAC are not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100363 * Register setup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 * rax system call number
365 * rdi arg0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100366 * rcx return address for syscall/sysret, C arg3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100368 * rdx arg2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * r10 arg3 (--> moved to rcx for C)
370 * r8 arg4
371 * r9 arg5
372 * r11 eflags for syscall/sysret, temporary for C
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100373 * r12-r15,rbp,rbx saved by C code, not touched.
374 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 * Interrupts are off on entry.
376 * Only called from user space.
377 *
378 * XXX if we had a free scratch register we could save the RSP into the stack frame
379 * and report it properly in ps. Unfortunately we haven't.
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200380 *
381 * When user can change the frames always force IRET. That is because
382 * it deals with uncanonical addresses better. SYSRET has trouble
383 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100384 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200387 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200388 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900389 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200390 CFI_REGISTER rip,rcx
391 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100392 SWAPGS_UNSAFE_STACK
393 /*
394 * A hypervisor implementation might want to use a label
395 * after the swapgs, so that it can do the swapgs
396 * for the guest and jump here on syscall.
397 */
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000398GLOBAL(system_call_after_swapgs)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100399
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900400 movq %rsp,PER_CPU_VAR(old_rsp)
Brian Gerst9af45652009-01-19 00:38:58 +0900401 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700402 /*
403 * No need to follow this irqs off/on section - it's straight
404 * and short:
405 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100406 ENABLE_INTERRUPTS(CLBR_NONE)
Borislav Petkovcac0e0a2011-05-31 22:21:52 +0200407 SAVE_ARGS 8,0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100408 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
Jan Beulich7effaa82005-09-12 18:49:24 +0200409 movq %rcx,RIP-ARGOFFSET(%rsp)
410 CFI_REL_OFFSET rip,RIP-ARGOFFSET
Jan Beulich46db09d2011-11-29 11:17:45 +0000411 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700413system_call_fastpath:
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800414#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800416#else
417 andl $__SYSCALL_MASK,%eax
418 cmpl $__NR_syscall_max,%eax
419#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 ja badsys
421 movq %r10,%rcx
422 call *sys_call_table(,%rax,8) # XXX: rip relative
423 movq %rax,RAX-ARGOFFSET(%rsp)
424/*
425 * Syscall return path ending with SYSRET (fast path)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100426 * Has incomplete stack frame and undefined top of stack.
427 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428ret_from_sys_call:
Andi Kleen11b854b2005-04-16 15:25:02 -0700429 movl $_TIF_ALLWORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 /* edi: flagmask */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100431sysret_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200432 LOCKDEP_SYS_EXIT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100433 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700434 TRACE_IRQS_OFF
Jan Beulich46db09d2011-11-29 11:17:45 +0000435 movl TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 andl %edi,%edx
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100437 jnz sysret_careful
Jan Beulichbcddc012006-12-07 02:14:02 +0100438 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700439 /*
440 * sysretq will re-enable interrupts:
441 */
442 TRACE_IRQS_ON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 movq RIP-ARGOFFSET(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200444 CFI_REGISTER rip,rcx
Borislav Petkov838feb42011-05-31 22:21:53 +0200445 RESTORE_ARGS 1,-ARG_SKIP,0
Jan Beulich7effaa82005-09-12 18:49:24 +0200446 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900447 movq PER_CPU_VAR(old_rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400448 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Jan Beulichbcddc012006-12-07 02:14:02 +0100450 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 /* Handle reschedules */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100452 /* edx: work, edi: workmask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453sysret_careful:
454 bt $TIF_NEED_RESCHED,%edx
455 jnc sysret_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700456 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100457 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100458 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200459 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100460 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 jmp sysret_check
462
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100463 /* Handle a signal */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464sysret_signal:
Ingo Molnar2601e642006-07-03 00:24:45 -0700465 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100466 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrath86a1c342008-06-23 15:37:04 -0700467#ifdef CONFIG_AUDITSYSCALL
468 bt $TIF_SYSCALL_AUDIT,%edx
469 jc sysret_audit
470#endif
Roland McGrathb60e7142009-09-22 16:46:34 -0700471 /*
472 * We have a signal, or exit tracing or single-step.
473 * These all wind up with the iret return path anyway,
474 * so just join that path right now.
475 */
476 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
477 jmp int_check_syscall_exit_work
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100478
Jan Beulich7effaa82005-09-12 18:49:24 +0200479badsys:
480 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
481 jmp ret_from_sys_call
482
Roland McGrath86a1c342008-06-23 15:37:04 -0700483#ifdef CONFIG_AUDITSYSCALL
484 /*
485 * Fast path for syscall audit without full syscall trace.
Eric Parisb05d8442012-01-03 14:23:06 -0500486 * We just call __audit_syscall_entry() directly, and then
Roland McGrath86a1c342008-06-23 15:37:04 -0700487 * jump back to the normal fast path.
488 */
489auditsys:
490 movq %r10,%r9 /* 6th arg: 4th syscall arg */
491 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
492 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
493 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
494 movq %rax,%rsi /* 2nd arg: syscall number */
495 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
Eric Parisb05d8442012-01-03 14:23:06 -0500496 call __audit_syscall_entry
Roland McGrath86a1c342008-06-23 15:37:04 -0700497 LOAD_ARGS 0 /* reload call-clobbered registers */
498 jmp system_call_fastpath
499
500 /*
Eric Parisd7e75282012-01-03 14:23:06 -0500501 * Return fast path for syscall audit. Call __audit_syscall_exit()
Roland McGrath86a1c342008-06-23 15:37:04 -0700502 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
503 * masked off.
504 */
505sysret_audit:
Roland McGrath03275592010-07-21 17:44:12 -0700506 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
Eric Parisd7e75282012-01-03 14:23:06 -0500507 cmpq $-MAX_ERRNO,%rsi /* is it < -MAX_ERRNO? */
508 setbe %al /* 1 if so, 0 if not */
Roland McGrath86a1c342008-06-23 15:37:04 -0700509 movzbl %al,%edi /* zero-extend that into %edi */
Eric Parisd7e75282012-01-03 14:23:06 -0500510 call __audit_syscall_exit
Roland McGrath86a1c342008-06-23 15:37:04 -0700511 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
512 jmp sysret_check
513#endif /* CONFIG_AUDITSYSCALL */
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100516tracesys:
Roland McGrath86a1c342008-06-23 15:37:04 -0700517#ifdef CONFIG_AUDITSYSCALL
Jan Beulich46db09d2011-11-29 11:17:45 +0000518 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Roland McGrath86a1c342008-06-23 15:37:04 -0700519 jz auditsys
520#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 SAVE_REST
Roland McGratha31f8dd2008-03-16 21:59:11 -0700522 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 FIXUP_TOP_OF_STACK %rdi
524 movq %rsp,%rdi
525 call syscall_trace_enter
Roland McGrathd4d67152008-07-09 02:38:07 -0700526 /*
527 * Reload arg registers from stack in case ptrace changed them.
528 * We don't reload %rax because syscall_trace_enter() returned
529 * the value it wants us to use in the table lookup.
530 */
531 LOAD_ARGS ARGOFFSET, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 RESTORE_REST
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800533#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800535#else
536 andl $__SYSCALL_MASK,%eax
537 cmpl $__NR_syscall_max,%eax
538#endif
Roland McGratha31f8dd2008-03-16 21:59:11 -0700539 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 movq %r10,%rcx /* fixup for C */
541 call *sys_call_table(,%rax,8)
Roland McGratha31f8dd2008-03-16 21:59:11 -0700542 movq %rax,RAX-ARGOFFSET(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200543 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100544
545/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 * Syscall return path ending with IRET.
547 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100548 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300549GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100550 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700551 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 movl $_TIF_ALLWORK_MASK,%edi
553 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300554GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200555 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300557 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 andl %edi,%edx
559 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300560 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 jmp retint_swapgs
562
563 /* Either reschedule or signal or syscall exit tracking needed. */
564 /* First do a reschedule test. */
565 /* edx: work, edi: workmask */
566int_careful:
567 bt $TIF_NEED_RESCHED,%edx
568 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700569 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100570 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100571 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200572 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100573 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100574 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700575 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 jmp int_with_check
577
578 /* handle signals and tracing -- both require a full stack frame */
579int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700580 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100581 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrathb60e7142009-09-22 16:46:34 -0700582int_check_syscall_exit_work:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100584 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700585 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100587 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100588 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100590 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700591 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100595 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 jz 1f
597 movq %rsp,%rdi # &ptregs -> arg1
598 xorl %esi,%esi # oldset -> arg2
599 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07006001: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601int_restore_rest:
602 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100603 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700604 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 jmp int_with_check
606 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100607END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100608
Al Viro1d4b4b22012-10-22 22:34:11 -0400609 .macro FORK_LIKE func
610ENTRY(stub_\func)
611 CFI_STARTPROC
612 popq %r11 /* save return address */
613 PARTIAL_FRAME 0
614 SAVE_REST
615 pushq %r11 /* put it back on stack */
616 FIXUP_TOP_OF_STACK %r11, 8
617 DEFAULT_FRAME 0 8 /* offset 8: return address */
618 call sys_\func
619 RESTORE_TOP_OF_STACK %r11, 8
620 ret $REST_SKIP /* pop extended registers */
621 CFI_ENDPROC
622END(stub_\func)
623 .endm
624
Al Virob3af11a2012-11-19 22:00:52 -0500625 .macro FIXED_FRAME label,func
626ENTRY(\label)
627 CFI_STARTPROC
628 PARTIAL_FRAME 0 8 /* offset 8: return address */
629 FIXUP_TOP_OF_STACK %r11, 8-ARGOFFSET
630 call \func
631 RESTORE_TOP_OF_STACK %r11, 8-ARGOFFSET
632 ret
633 CFI_ENDPROC
634END(\label)
635 .endm
636
Al Viro1d4b4b22012-10-22 22:34:11 -0400637 FORK_LIKE clone
638 FORK_LIKE fork
639 FORK_LIKE vfork
Al Virob3af11a2012-11-19 22:00:52 -0500640 FIXED_FRAME stub_iopl, sys_iopl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642ENTRY(ptregscall_common)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100643 DEFAULT_FRAME 1 8 /* offset 8: return address */
644 RESTORE_TOP_OF_STACK %r11, 8
645 movq_cfi_restore R15+8, r15
646 movq_cfi_restore R14+8, r14
647 movq_cfi_restore R13+8, r13
648 movq_cfi_restore R12+8, r12
649 movq_cfi_restore RBP+8, rbp
650 movq_cfi_restore RBX+8, rbx
651 ret $REST_SKIP /* pop extended registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200653END(ptregscall_common)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655ENTRY(stub_execve)
656 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100657 addq $8, %rsp
658 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 FIXUP_TOP_OF_STACK %r11
661 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 movq %rax,RAX(%rsp)
663 RESTORE_REST
664 jmp int_ret_from_sys_call
665 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200666END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668/*
669 * sigreturn is special because it needs to restore all registers on return.
670 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100671 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672ENTRY(stub_rt_sigreturn)
673 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200674 addq $8, %rsp
Jan Beuliche6b04b62010-09-02 13:52:45 +0100675 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 FIXUP_TOP_OF_STACK %r11
678 call sys_rt_sigreturn
679 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
680 RESTORE_REST
681 jmp int_ret_from_sys_call
682 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200683END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800685#ifdef CONFIG_X86_X32_ABI
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800686ENTRY(stub_x32_rt_sigreturn)
687 CFI_STARTPROC
688 addq $8, %rsp
689 PARTIAL_FRAME 0
690 SAVE_REST
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800691 FIXUP_TOP_OF_STACK %r11
692 call sys32_x32_rt_sigreturn
693 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
694 RESTORE_REST
695 jmp int_ret_from_sys_call
696 CFI_ENDPROC
697END(stub_x32_rt_sigreturn)
698
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800699ENTRY(stub_x32_execve)
700 CFI_STARTPROC
701 addq $8, %rsp
702 PARTIAL_FRAME 0
703 SAVE_REST
704 FIXUP_TOP_OF_STACK %r11
Al Viro6783eaa22012-08-02 23:05:11 +0400705 call compat_sys_execve
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800706 RESTORE_TOP_OF_STACK %r11
707 movq %rax,RAX(%rsp)
708 RESTORE_REST
709 jmp int_ret_from_sys_call
710 CFI_ENDPROC
711END(stub_x32_execve)
712
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800713#endif
714
Jan Beulich7effaa82005-09-12 18:49:24 +0200715/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800716 * Build the entry stubs and pointer table with some assembler magic.
717 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
718 * single cache line on all modern x86 implementations.
719 */
720 .section .init.rodata,"a"
721ENTRY(interrupt)
Jiri Olsaea714542011-03-07 19:10:39 +0100722 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800723 .p2align 5
724 .p2align CONFIG_X86_L1_CACHE_SHIFT
725ENTRY(irq_entries_start)
726 INTR_FRAME
727vector=FIRST_EXTERNAL_VECTOR
728.rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
729 .balign 32
730 .rept 7
731 .if vector < NR_VECTORS
H. Peter Anvin86655962008-11-12 10:27:35 -0800732 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800733 CFI_ADJUST_CFA_OFFSET -8
734 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01007351: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800736 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800737 jmp 2f
738 .endif
739 .previous
740 .quad 1b
Jiri Olsaea714542011-03-07 19:10:39 +0100741 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800742vector=vector+1
743 .endif
744 .endr
7452: jmp common_interrupt
746.endr
747 CFI_ENDPROC
748END(irq_entries_start)
749
750.previous
751END(interrupt)
752.previous
753
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100754/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 * Interrupt entry/exit.
756 *
757 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100758 *
759 * Entry runs with interrupts off.
760 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100762/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 .macro interrupt func
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100764 /* reserve pt_regs for scratch regs and rbp */
765 subq $ORIG_RAX-RBP, %rsp
766 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
Frederic Weisbecker18718532011-07-01 01:51:22 +0200767 SAVE_ARGS_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 call \func
769 .endm
770
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100771 /*
772 * The interrupt stubs push (~vector+0x80) onto the stack and
773 * then jump to common_interrupt.
774 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800775 .p2align CONFIG_X86_L1_CACHE_SHIFT
776common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200777 XCPT_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000778 ASM_CLAC
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100779 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 interrupt do_IRQ
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900781 /* 0(%rsp): old_rsp-ARGOFFSET */
Jan Beulich7effaa82005-09-12 18:49:24 +0200782ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100783 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700784 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900785 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100786
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200787 /* Restore saved previous stack */
788 popq %rsi
Mark Wielaard928282e2012-02-24 11:32:05 +0100789 CFI_DEF_CFA rsi,SS+8-RBP /* reg/off reset after def_cfa_expr */
Jan Beulicheab9e612011-09-28 16:57:52 +0100790 leaq ARGOFFSET-RBP(%rsi), %rsp
Jan Beulich7effaa82005-09-12 18:49:24 +0200791 CFI_DEF_CFA_REGISTER rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100792 CFI_ADJUST_CFA_OFFSET RBP-ARGOFFSET
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100793
Jan Beulich7effaa82005-09-12 18:49:24 +0200794exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 GET_THREAD_INFO(%rcx)
796 testl $3,CS-ARGOFFSET(%rsp)
797 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 /* Interrupt came from user space */
800 /*
801 * Has a correct top of stack, but a partial stack frame
802 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100803 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804retint_with_reschedule:
805 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200806retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200807 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300808 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200810 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200812
813retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700814 /*
815 * The iretq could re-enable interrupts:
816 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100817 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700818 TRACE_IRQS_IRETQ
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100819 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700820 jmp restore_args
821
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200822retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100823 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700824 /*
825 * The iretq could re-enable interrupts:
826 */
827 TRACE_IRQS_IRETQ
828restore_args:
Borislav Petkov838feb42011-05-31 22:21:53 +0200829 RESTORE_ARGS 1,8,1
Ingo Molnar3701d8632008-02-09 23:24:08 +0100830
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200831irq_return:
H. Peter Anvin3891a042014-04-29 16:46:09 -0700832 /*
833 * Are we returning to a stack segment from the LDT? Note: in
834 * 64-bit mode SS:RSP on the exception stack is always valid.
835 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700836#ifdef CONFIG_X86_ESPFIX64
H. Peter Anvin3891a042014-04-29 16:46:09 -0700837 testb $4,(SS-RIP)(%rsp)
838 jnz irq_return_ldt
H. Peter Anvin34273f42014-05-04 10:36:22 -0700839#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700840
841irq_return_iret:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100842 INTERRUPT_RETURN
H. Peter Anvin3891a042014-04-29 16:46:09 -0700843 _ASM_EXTABLE(irq_return_iret, bad_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +0100844
845#ifdef CONFIG_PARAVIRT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100846ENTRY(native_iret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 iretq
H. Peter Anvind7abc0f2012-04-20 12:19:50 -0700848 _ASM_EXTABLE(native_iret, bad_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +0100849#endif
850
H. Peter Anvin34273f42014-05-04 10:36:22 -0700851#ifdef CONFIG_X86_ESPFIX64
H. Peter Anvin3891a042014-04-29 16:46:09 -0700852irq_return_ldt:
853 pushq_cfi %rax
854 pushq_cfi %rdi
855 SWAPGS
856 movq PER_CPU_VAR(espfix_waddr),%rdi
857 movq %rax,(0*8)(%rdi) /* RAX */
858 movq (2*8)(%rsp),%rax /* RIP */
859 movq %rax,(1*8)(%rdi)
860 movq (3*8)(%rsp),%rax /* CS */
861 movq %rax,(2*8)(%rdi)
862 movq (4*8)(%rsp),%rax /* RFLAGS */
863 movq %rax,(3*8)(%rdi)
864 movq (6*8)(%rsp),%rax /* SS */
865 movq %rax,(5*8)(%rdi)
866 movq (5*8)(%rsp),%rax /* RSP */
867 movq %rax,(4*8)(%rdi)
868 andl $0xffff0000,%eax
869 popq_cfi %rdi
870 orq PER_CPU_VAR(espfix_stack),%rax
871 SWAPGS
872 movq %rax,%rsp
873 popq_cfi %rax
874 jmp irq_return_iret
H. Peter Anvin34273f42014-05-04 10:36:22 -0700875#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878bad_iret:
Roland McGrath3aa4b372008-02-06 22:39:43 +0100879 /*
880 * The iret traps when the %cs or %ss being restored is bogus.
881 * We've lost the original trap vector and error code.
882 * #GPF is the most likely one to get for an invalid selector.
883 * So pretend we completed the iret and took the #GPF in user mode.
884 *
885 * We are now running with the kernel GS after exception recovery.
886 * But error_entry expects us to have user GS to match the user %cs,
887 * so swap back.
888 */
889 pushq $0
890
891 SWAPGS
892 jmp general_protection
893
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100894 .previous
895
Jan Beulich7effaa82005-09-12 18:49:24 +0200896 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200898 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 bt $TIF_NEED_RESCHED,%edx
900 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700901 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100902 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100903 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200904 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100905 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100907 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700908 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100912 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700913 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700914 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100915 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100917 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700918 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 movq %rsp,%rdi # &pt_regs
920 call do_notify_resume
921 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100922 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700923 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -0700924 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -0700925 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927#ifdef CONFIG_PREEMPT
928 /* Returning to kernel space. Check if we need preemption */
929 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +0200930ENTRY(retint_kernel)
Peter Zijlstrac2daa3b2013-08-14 14:51:00 +0200931 cmpl $0,PER_CPU_VAR(__preempt_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 jnz retint_restore_args
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
934 jnc retint_restore_args
935 call preempt_schedule_irq
936 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100937#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200939END(common_interrupt)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700940
941 /*
942 * If IRET takes a fault on the espfix stack, then we
943 * end up promoting it to a doublefault. In that case,
944 * modify the stack to make it look like we just entered
945 * the #GP handler from user space, similar to bad_iret.
946 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700947#ifdef CONFIG_X86_ESPFIX64
H. Peter Anvin3891a042014-04-29 16:46:09 -0700948 ALIGN
949__do_double_fault:
950 XCPT_FRAME 1 RDI+8
951 movq RSP(%rdi),%rax /* Trap on the espfix stack? */
952 sarq $PGDIR_SHIFT,%rax
953 cmpl $ESPFIX_PGD_ENTRY,%eax
954 jne do_double_fault /* No, just deliver the fault */
955 cmpl $__KERNEL_CS,CS(%rdi)
956 jne do_double_fault
957 movq RIP(%rdi),%rax
958 cmpq $irq_return_iret,%rax
959#ifdef CONFIG_PARAVIRT
960 je 1f
961 cmpq $native_iret,%rax
962#endif
963 jne do_double_fault /* This shouldn't happen... */
9641:
965 movq PER_CPU_VAR(kernel_stack),%rax
966 subq $(6*8-KERNEL_STACK_OFFSET),%rax /* Reset to original stack */
967 movq %rax,RSP(%rdi)
968 movq $0,(%rax) /* Missing (lost) #GP error code */
969 movq $general_protection,RIP(%rdi)
970 retq
971 CFI_ENDPROC
972END(__do_double_fault)
H. Peter Anvin34273f42014-05-04 10:36:22 -0700973#else
974# define __do_double_fault do_double_fault
975#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700976
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400977/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100979 */
Seiji Aguchicf910e82013-06-20 11:46:53 -0400980.macro apicinterrupt3 num sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100981ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +0200982 INTR_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000983 ASM_CLAC
Jan Beulichdf5d1872010-09-02 14:07:16 +0100984 pushq_cfi $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +0000985.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100986 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 jmp ret_from_intr
988 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100989END(\sym)
990.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100991
Seiji Aguchicf910e82013-06-20 11:46:53 -0400992#ifdef CONFIG_TRACING
993#define trace(sym) trace_##sym
994#define smp_trace(sym) smp_trace_##sym
995
996.macro trace_apicinterrupt num sym
997apicinterrupt3 \num trace(\sym) smp_trace(\sym)
998.endm
999#else
1000.macro trace_apicinterrupt num sym do_sym
1001.endm
1002#endif
1003
1004.macro apicinterrupt num sym do_sym
1005apicinterrupt3 \num \sym \do_sym
1006trace_apicinterrupt \num \sym
1007.endm
1008
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001009#ifdef CONFIG_SMP
Seiji Aguchicf910e82013-06-20 11:46:53 -04001010apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR \
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001011 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Seiji Aguchicf910e82013-06-20 11:46:53 -04001012apicinterrupt3 REBOOT_VECTOR \
Andi Kleen4ef702c2009-05-27 21:56:52 +02001013 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014#endif
1015
Nick Piggin03b48632009-01-20 04:36:04 +01001016#ifdef CONFIG_X86_UV
Seiji Aguchicf910e82013-06-20 11:46:53 -04001017apicinterrupt3 UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001018 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +01001019#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001020apicinterrupt LOCAL_TIMER_VECTOR \
1021 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -05001022apicinterrupt X86_PLATFORM_IPI_VECTOR \
1023 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Yang Zhangd78f2662013-04-11 19:25:11 +08001025#ifdef CONFIG_HAVE_KVM
Seiji Aguchicf910e82013-06-20 11:46:53 -04001026apicinterrupt3 POSTED_INTR_VECTOR \
Yang Zhangd78f2662013-04-11 19:25:11 +08001027 kvm_posted_intr_ipi smp_kvm_posted_intr_ipi
1028#endif
1029
Seiji Aguchi33e5ff62013-06-22 07:33:30 -04001030#ifdef CONFIG_X86_MCE_THRESHOLD
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001031apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +02001032 threshold_interrupt smp_threshold_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -04001033#endif
1034
1035#ifdef CONFIG_X86_THERMAL_VECTOR
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001036apicinterrupt THERMAL_APIC_VECTOR \
1037 thermal_interrupt smp_thermal_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -04001038#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001040#ifdef CONFIG_SMP
1041apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1042 call_function_single_interrupt smp_call_function_single_interrupt
1043apicinterrupt CALL_FUNCTION_VECTOR \
1044 call_function_interrupt smp_call_function_interrupt
1045apicinterrupt RESCHEDULE_VECTOR \
1046 reschedule_interrupt smp_reschedule_interrupt
1047#endif
1048
1049apicinterrupt ERROR_APIC_VECTOR \
1050 error_interrupt smp_error_interrupt
1051apicinterrupt SPURIOUS_APIC_VECTOR \
1052 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001053
Peter Zijlstrae360adb2010-10-14 14:01:34 +08001054#ifdef CONFIG_IRQ_WORK
1055apicinterrupt IRQ_WORK_VECTOR \
1056 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +01001057#endif
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059/*
1060 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001061 */
Andy Lutomirski577ed452014-05-21 15:07:09 -07001062#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
1063
1064.macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001065ENTRY(\sym)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001066 /* Sanity check */
1067 .if \shift_ist != -1 && \paranoid == 0
1068 .error "using shift_ist requires paranoid=1"
1069 .endif
1070
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001071 .if \has_error_code
1072 XCPT_FRAME
1073 .else
Jan Beulich7effaa82005-09-12 18:49:24 +02001074 INTR_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001075 .endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Jan Beulichee4eb872012-11-02 11:18:39 +00001077 ASM_CLAC
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001078 PARAVIRT_ADJUST_EXCEPTION_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001079
1080 .ifeq \has_error_code
1081 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1082 .endif
1083
Jan Beulichb1cccb12010-09-02 13:55:11 +01001084 subq $ORIG_RAX-R15, %rsp
1085 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001086
1087 .if \paranoid
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001088 call save_paranoid
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001089 .else
1090 call error_entry
1091 .endif
1092
Andy Lutomirski1bd24ef2014-05-21 15:07:07 -07001093 DEFAULT_FRAME 0
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001094
1095 .if \paranoid
Andy Lutomirski577ed452014-05-21 15:07:09 -07001096 .if \shift_ist != -1
1097 TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */
1098 .else
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001099 TRACE_IRQS_OFF
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001100 .endif
Andy Lutomirski577ed452014-05-21 15:07:09 -07001101 .endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001102
1103 movq %rsp,%rdi /* pt_regs pointer */
1104
1105 .if \has_error_code
1106 movq ORIG_RAX(%rsp),%rsi /* get error code */
1107 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1108 .else
1109 xorl %esi,%esi /* no error code */
1110 .endif
1111
Andy Lutomirski577ed452014-05-21 15:07:09 -07001112 .if \shift_ist != -1
1113 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\shift_ist)
1114 .endif
1115
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001116 call \do_sym
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001117
Andy Lutomirski577ed452014-05-21 15:07:09 -07001118 .if \shift_ist != -1
1119 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\shift_ist)
1120 .endif
1121
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001122 .if \paranoid
1123 jmp paranoid_exit /* %ebx: no swapgs flag */
1124 .else
1125 jmp error_exit /* %ebx: no swapgs flag */
1126 .endif
1127
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001128 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001129END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001130.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001131
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001132#ifdef CONFIG_TRACING
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001133.macro trace_idtentry sym do_sym has_error_code:req
1134idtentry trace(\sym) trace(\do_sym) has_error_code=\has_error_code
1135idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001136.endm
1137#else
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001138.macro trace_idtentry sym do_sym has_error_code:req
1139idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001140.endm
1141#endif
1142
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001143idtentry divide_error do_divide_error has_error_code=0
1144idtentry overflow do_overflow has_error_code=0
1145idtentry bounds do_bounds has_error_code=0
1146idtentry invalid_op do_invalid_op has_error_code=0
1147idtentry device_not_available do_device_not_available has_error_code=0
Linus Torvalds2071b3e2014-06-05 07:46:15 -07001148idtentry double_fault __do_double_fault has_error_code=1 paranoid=1
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001149idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0
1150idtentry invalid_TSS do_invalid_TSS has_error_code=1
1151idtentry segment_not_present do_segment_not_present has_error_code=1
1152idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0
1153idtentry coprocessor_error do_coprocessor_error has_error_code=0
1154idtentry alignment_check do_alignment_check has_error_code=1
1155idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001156
Ingo Molnar2601e642006-07-03 00:24:45 -07001157
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001158 /* Reload gs selector with exception handling */
1159 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001160ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001161 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001162 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001163 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001164 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001165gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001166 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070011672: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001168 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001169 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001170 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001171 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001172END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001173
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001174 _ASM_EXTABLE(gs_change,bad_gs)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001175 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001177bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001178 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001180 movl %eax,%gs
1181 jmp 2b
1182 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001183
Andi Kleen26995002006-08-02 22:37:28 +02001184/* Call softirq on interrupt stack. Interrupts are off. */
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001185ENTRY(do_softirq_own_stack)
Jan Beulich7effaa82005-09-12 18:49:24 +02001186 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001187 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001188 CFI_REL_OFFSET rbp,0
1189 mov %rsp,%rbp
1190 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001191 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001192 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001193 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001194 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001195 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001196 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001197 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001198 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001199 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001200 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001201 CFI_ENDPROC
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001202END(do_softirq_own_stack)
Andi Kleen75154f42007-06-23 02:29:25 +02001203
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001204#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001205idtentry xen_hypervisor_callback xen_do_hypervisor_callback has_error_code=0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001206
1207/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001208 * A note on the "critical region" in our callback handler.
1209 * We want to avoid stacking callback handlers due to events occurring
1210 * during handling of the last event. To do this, we keep events disabled
1211 * until we've done all processing. HOWEVER, we must enable events before
1212 * popping the stack frame (can't be done atomically) and so it would still
1213 * be possible to get enough handler activations to overflow the stack.
1214 * Although unlikely, bugs of that kind are hard to track down, so we'd
1215 * like to avoid the possibility.
1216 * So, on entry to the handler we detect whether we interrupted an
1217 * existing activation in its critical region -- if so, we pop the current
1218 * activation and restart the handler using the previous one.
1219 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001220ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1221 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001222/*
1223 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1224 * see the correct pointer to the pt_regs
1225 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001226 movq %rdi, %rsp # we don't return, adjust the stack frame
1227 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001228 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900122911: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001230 movq %rsp,%rbp
1231 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001232 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001233 pushq %rbp # backlink for old unwinder
1234 call xen_evtchn_do_upcall
1235 popq %rsp
1236 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001237 decl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001238 jmp error_exit
1239 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001240END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001241
1242/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001243 * Hypervisor uses this for application faults while it executes.
1244 * We get here for two reasons:
1245 * 1. Fault while reloading DS, ES, FS or GS
1246 * 2. Fault while executing IRET
1247 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1248 * registers that could be reloaded and zeroed the others.
1249 * Category 2 we fix up by killing the current process. We cannot use the
1250 * normal Linux return path in this case because if we use the IRET hypercall
1251 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1252 * We distinguish between categories by comparing each saved segment register
1253 * with its current contents: any discrepancy means we in category 1.
1254 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001255ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001256 INTR_FRAME 1 (6*8)
1257 /*CFI_REL_OFFSET gs,GS*/
1258 /*CFI_REL_OFFSET fs,FS*/
1259 /*CFI_REL_OFFSET es,ES*/
1260 /*CFI_REL_OFFSET ds,DS*/
1261 CFI_REL_OFFSET r11,8
1262 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001263 movw %ds,%cx
1264 cmpw %cx,0x10(%rsp)
1265 CFI_REMEMBER_STATE
1266 jne 1f
1267 movw %es,%cx
1268 cmpw %cx,0x18(%rsp)
1269 jne 1f
1270 movw %fs,%cx
1271 cmpw %cx,0x20(%rsp)
1272 jne 1f
1273 movw %gs,%cx
1274 cmpw %cx,0x28(%rsp)
1275 jne 1f
1276 /* All segments match their saved values => Category 2 (Bad IRET). */
1277 movq (%rsp),%rcx
1278 CFI_RESTORE rcx
1279 movq 8(%rsp),%r11
1280 CFI_RESTORE r11
1281 addq $0x30,%rsp
1282 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001283 pushq_cfi $0 /* RIP */
1284 pushq_cfi %r11
1285 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001286 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001287 CFI_RESTORE_STATE
12881: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1289 movq (%rsp),%rcx
1290 CFI_RESTORE rcx
1291 movq 8(%rsp),%r11
1292 CFI_RESTORE r11
1293 addq $0x30,%rsp
1294 CFI_ADJUST_CFA_OFFSET -0x30
David Vrabela349e23d12012-10-19 17:29:07 +01001295 pushq_cfi $-1 /* orig_ax = -1 => not a system call */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001296 SAVE_ALL
1297 jmp error_exit
1298 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001299END(xen_failsafe_callback)
1300
Seiji Aguchicf910e82013-06-20 11:46:53 -04001301apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
Sheng Yang38e20b02010-05-14 12:40:51 +01001302 xen_hvm_callback_vector xen_evtchn_do_upcall
1303
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001304#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001305
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001306#if IS_ENABLED(CONFIG_HYPERV)
Seiji Aguchicf910e82013-06-20 11:46:53 -04001307apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001308 hyperv_callback_vector hyperv_vector_handler
1309#endif /* CONFIG_HYPERV */
1310
Andy Lutomirski577ed452014-05-21 15:07:09 -07001311idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1312idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001313idtentry stack_segment do_stack_segment has_error_code=1 paranoid=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001314#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001315idtentry xen_debug do_debug has_error_code=0
1316idtentry xen_int3 do_int3 has_error_code=0
1317idtentry xen_stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001318#endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001319idtentry general_protection do_general_protection has_error_code=1
1320trace_idtentry page_fault do_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001321#ifdef CONFIG_KVM_GUEST
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001322idtentry async_page_fault do_async_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001323#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001324#ifdef CONFIG_X86_MCE
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001325idtentry machine_check has_error_code=0 paranoid=1 do_sym=*machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001326#endif
1327
1328 /*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001329 * "Paranoid" exit path from exception stack.
1330 * Paranoid because this is used by NMIs and cannot take
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001331 * any kernel state for granted.
1332 * We don't do kernel preemption checks here, because only
1333 * NMI should be common and it does not enable IRQs and
1334 * cannot get reschedule ticks.
1335 *
1336 * "trace" is 0 for the NMI handler only, because irq-tracing
1337 * is fundamentally NMI-unsafe. (we cannot change the soft and
1338 * hard flags at once, atomically)
1339 */
1340
1341 /* ebx: no swapgs flag */
1342ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001343 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001344 DISABLE_INTERRUPTS(CLBR_NONE)
Steven Rostedt5963e312012-05-30 11:54:53 -04001345 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001346 testl %ebx,%ebx /* swapgs needed? */
1347 jnz paranoid_restore
1348 testl $3,CS(%rsp)
1349 jnz paranoid_userspace
1350paranoid_swapgs:
1351 TRACE_IRQS_IRETQ 0
1352 SWAPGS_UNSAFE_STACK
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001353 RESTORE_ALL 8
1354 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001355paranoid_restore:
Steven Rostedt5963e312012-05-30 11:54:53 -04001356 TRACE_IRQS_IRETQ_DEBUG 0
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001357 RESTORE_ALL 8
1358 jmp irq_return
1359paranoid_userspace:
1360 GET_THREAD_INFO(%rcx)
1361 movl TI_flags(%rcx),%ebx
1362 andl $_TIF_WORK_MASK,%ebx
1363 jz paranoid_swapgs
1364 movq %rsp,%rdi /* &pt_regs */
1365 call sync_regs
1366 movq %rax,%rsp /* switch stack for scheduling */
1367 testl $_TIF_NEED_RESCHED,%ebx
1368 jnz paranoid_schedule
1369 movl %ebx,%edx /* arg3: thread flags */
1370 TRACE_IRQS_ON
1371 ENABLE_INTERRUPTS(CLBR_NONE)
1372 xorl %esi,%esi /* arg2: oldset */
1373 movq %rsp,%rdi /* arg1: &pt_regs */
1374 call do_notify_resume
1375 DISABLE_INTERRUPTS(CLBR_NONE)
1376 TRACE_IRQS_OFF
1377 jmp paranoid_userspace
1378paranoid_schedule:
1379 TRACE_IRQS_ON
1380 ENABLE_INTERRUPTS(CLBR_ANY)
Frederic Weisbecker04304992012-07-11 20:26:38 +02001381 SCHEDULE_USER
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001382 DISABLE_INTERRUPTS(CLBR_ANY)
1383 TRACE_IRQS_OFF
1384 jmp paranoid_userspace
1385 CFI_ENDPROC
1386END(paranoid_exit)
1387
1388/*
1389 * Exception entry point. This expects an error code/orig_rax on the stack.
1390 * returns in "no swapgs flag" in %ebx.
1391 */
1392ENTRY(error_entry)
1393 XCPT_FRAME
1394 CFI_ADJUST_CFA_OFFSET 15*8
1395 /* oldrax contains error code */
1396 cld
Jan Beulich3bab13b2014-06-25 14:11:22 +01001397 movq %rdi, RDI+8(%rsp)
1398 movq %rsi, RSI+8(%rsp)
1399 movq %rdx, RDX+8(%rsp)
1400 movq %rcx, RCX+8(%rsp)
1401 movq %rax, RAX+8(%rsp)
1402 movq %r8, R8+8(%rsp)
1403 movq %r9, R9+8(%rsp)
1404 movq %r10, R10+8(%rsp)
1405 movq %r11, R11+8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001406 movq_cfi rbx, RBX+8
Jan Beulich3bab13b2014-06-25 14:11:22 +01001407 movq %rbp, RBP+8(%rsp)
1408 movq %r12, R12+8(%rsp)
1409 movq %r13, R13+8(%rsp)
1410 movq %r14, R14+8(%rsp)
1411 movq %r15, R15+8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001412 xorl %ebx,%ebx
1413 testl $3,CS+8(%rsp)
1414 je error_kernelspace
1415error_swapgs:
1416 SWAPGS
1417error_sti:
1418 TRACE_IRQS_OFF
1419 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001420
1421/*
1422 * There are two places in the kernel that can potentially fault with
1423 * usergs. Handle them here. The exception handlers after iret run with
1424 * kernel gs again, so don't set the user space flag. B stepping K8s
1425 * sometimes report an truncated RIP for IRET exceptions returning to
1426 * compat mode. Check for these here too.
1427 */
1428error_kernelspace:
Jan Beulich3bab13b2014-06-25 14:11:22 +01001429 CFI_REL_OFFSET rcx, RCX+8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001430 incl %ebx
H. Peter Anvin3891a042014-04-29 16:46:09 -07001431 leaq irq_return_iret(%rip),%rcx
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001432 cmpq %rcx,RIP+8(%rsp)
1433 je error_swapgs
Brian Gerstae24ffe2009-10-12 10:18:23 -04001434 movl %ecx,%eax /* zero extend */
1435 cmpq %rax,RIP+8(%rsp)
1436 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001437 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001438 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001439 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001440
1441bstep_iret:
1442 /* Fix truncated RIP */
1443 movq %rcx,RIP+8(%rsp)
Brian Gerst97829de2009-11-03 14:02:05 -05001444 jmp error_swapgs
Jan Beuliche6b04b62010-09-02 13:52:45 +01001445 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001446END(error_entry)
1447
1448
1449/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1450ENTRY(error_exit)
1451 DEFAULT_FRAME
1452 movl %ebx,%eax
1453 RESTORE_REST
1454 DISABLE_INTERRUPTS(CLBR_NONE)
1455 TRACE_IRQS_OFF
1456 GET_THREAD_INFO(%rcx)
1457 testl %eax,%eax
1458 jne retint_kernel
1459 LOCKDEP_SYS_EXIT_IRQ
1460 movl TI_flags(%rcx),%edx
1461 movl $_TIF_WORK_MASK,%edi
1462 andl %edi,%edx
1463 jnz retint_careful
1464 jmp retint_swapgs
1465 CFI_ENDPROC
1466END(error_exit)
1467
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001468/*
1469 * Test if a given stack is an NMI stack or not.
1470 */
1471 .macro test_in_nmi reg stack nmi_ret normal_ret
1472 cmpq %\reg, \stack
1473 ja \normal_ret
1474 subq $EXCEPTION_STKSZ, %\reg
1475 cmpq %\reg, \stack
1476 jb \normal_ret
1477 jmp \nmi_ret
1478 .endm
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001479
1480 /* runs on exception stack */
1481ENTRY(nmi)
1482 INTR_FRAME
1483 PARAVIRT_ADJUST_EXCEPTION_FRAME
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001484 /*
1485 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1486 * the iretq it performs will take us out of NMI context.
1487 * This means that we can have nested NMIs where the next
1488 * NMI is using the top of the stack of the previous NMI. We
1489 * can't let it execute because the nested NMI will corrupt the
1490 * stack of the previous NMI. NMI handlers are not re-entrant
1491 * anyway.
1492 *
1493 * To handle this case we do the following:
1494 * Check the a special location on the stack that contains
1495 * a variable that is set when NMIs are executing.
1496 * The interrupted task's stack is also checked to see if it
1497 * is an NMI stack.
1498 * If the variable is not set and the stack is not the NMI
1499 * stack then:
1500 * o Set the special variable on the stack
1501 * o Copy the interrupt frame into a "saved" location on the stack
1502 * o Copy the interrupt frame into a "copy" location on the stack
1503 * o Continue processing the NMI
1504 * If the variable is set or the previous stack is the NMI stack:
1505 * o Modify the "copy" location to jump to the repeate_nmi
1506 * o return back to the first NMI
1507 *
1508 * Now on exit of the first NMI, we first clear the stack variable
1509 * The NMI stack will tell any nested NMIs at that point that it is
1510 * nested. Then we pop the stack normally with iret, and if there was
1511 * a nested NMI that updated the copy interrupt stack frame, a
1512 * jump will be made to the repeat_nmi code that will handle the second
1513 * NMI.
1514 */
1515
1516 /* Use %rdx as out temp variable throughout */
1517 pushq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001518 CFI_REL_OFFSET rdx, 0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001519
1520 /*
Steven Rostedt45d5a162012-02-19 16:43:37 -05001521 * If %cs was not the kernel segment, then the NMI triggered in user
1522 * space, which means it is definitely not nested.
1523 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001524 cmpl $__KERNEL_CS, 16(%rsp)
Steven Rostedt45d5a162012-02-19 16:43:37 -05001525 jne first_nmi
1526
1527 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001528 * Check the special variable on the stack to see if NMIs are
1529 * executing.
1530 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001531 cmpl $1, -8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001532 je nested_nmi
1533
1534 /*
1535 * Now test if the previous stack was an NMI stack.
1536 * We need the double check. We check the NMI stack to satisfy the
1537 * race when the first NMI clears the variable before returning.
1538 * We check the variable because the first NMI could be in a
1539 * breakpoint routine using a breakpoint stack.
1540 */
1541 lea 6*8(%rsp), %rdx
1542 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
Jan Beulich62610912012-02-24 14:54:37 +00001543 CFI_REMEMBER_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001544
1545nested_nmi:
1546 /*
1547 * Do nothing if we interrupted the fixup in repeat_nmi.
1548 * It's about to repeat the NMI handler, so we are fine
1549 * with ignoring this one.
1550 */
1551 movq $repeat_nmi, %rdx
1552 cmpq 8(%rsp), %rdx
1553 ja 1f
1554 movq $end_repeat_nmi, %rdx
1555 cmpq 8(%rsp), %rdx
1556 ja nested_nmi_out
1557
15581:
1559 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
Salman Qazi28696f42012-10-01 17:29:25 -07001560 leaq -1*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001561 movq %rdx, %rsp
Salman Qazi28696f42012-10-01 17:29:25 -07001562 CFI_ADJUST_CFA_OFFSET 1*8
1563 leaq -10*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001564 pushq_cfi $__KERNEL_DS
1565 pushq_cfi %rdx
1566 pushfq_cfi
1567 pushq_cfi $__KERNEL_CS
1568 pushq_cfi $repeat_nmi
1569
1570 /* Put stack back */
Salman Qazi28696f42012-10-01 17:29:25 -07001571 addq $(6*8), %rsp
1572 CFI_ADJUST_CFA_OFFSET -6*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001573
1574nested_nmi_out:
1575 popq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001576 CFI_RESTORE rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001577
1578 /* No need to check faults here */
1579 INTERRUPT_RETURN
1580
Jan Beulich62610912012-02-24 14:54:37 +00001581 CFI_RESTORE_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001582first_nmi:
1583 /*
1584 * Because nested NMIs will use the pushed location that we
1585 * stored in rdx, we must keep that space available.
1586 * Here's what our stack frame will look like:
1587 * +-------------------------+
1588 * | original SS |
1589 * | original Return RSP |
1590 * | original RFLAGS |
1591 * | original CS |
1592 * | original RIP |
1593 * +-------------------------+
1594 * | temp storage for rdx |
1595 * +-------------------------+
1596 * | NMI executing variable |
1597 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001598 * | copied SS |
1599 * | copied Return RSP |
1600 * | copied RFLAGS |
1601 * | copied CS |
1602 * | copied RIP |
1603 * +-------------------------+
Salman Qazi28696f42012-10-01 17:29:25 -07001604 * | Saved SS |
1605 * | Saved Return RSP |
1606 * | Saved RFLAGS |
1607 * | Saved CS |
1608 * | Saved RIP |
1609 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001610 * | pt_regs |
1611 * +-------------------------+
1612 *
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001613 * The saved stack frame is used to fix up the copied stack frame
1614 * that a nested NMI may change to make the interrupted NMI iret jump
1615 * to the repeat_nmi. The original stack frame and the temp storage
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001616 * is also used by nested NMIs and can not be trusted on exit.
1617 */
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001618 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
Jan Beulich62610912012-02-24 14:54:37 +00001619 movq (%rsp), %rdx
1620 CFI_RESTORE rdx
1621
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001622 /* Set the NMI executing variable on the stack. */
1623 pushq_cfi $1
1624
Salman Qazi28696f42012-10-01 17:29:25 -07001625 /*
1626 * Leave room for the "copied" frame
1627 */
1628 subq $(5*8), %rsp
Jan Beulich444723d2013-01-24 09:27:31 +00001629 CFI_ADJUST_CFA_OFFSET 5*8
Salman Qazi28696f42012-10-01 17:29:25 -07001630
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001631 /* Copy the stack frame to the Saved frame */
1632 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001633 pushq_cfi 11*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001634 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001635 CFI_DEF_CFA_OFFSET SS+8-RIP
1636
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001637 /* Everything up to here is safe from nested NMIs */
1638
Jan Beulich62610912012-02-24 14:54:37 +00001639 /*
1640 * If there was a nested NMI, the first NMI's iret will return
1641 * here. But NMIs are still enabled and we can take another
1642 * nested NMI. The nested NMI checks the interrupted RIP to see
1643 * if it is between repeat_nmi and end_repeat_nmi, and if so
1644 * it will just return, as we are about to repeat an NMI anyway.
1645 * This makes it safe to copy to the stack frame that a nested
1646 * NMI will update.
1647 */
1648repeat_nmi:
1649 /*
1650 * Update the stack variable to say we are still in NMI (the update
1651 * is benign for the non-repeat case, where 1 was pushed just above
1652 * to this very stack slot).
1653 */
Salman Qazi28696f42012-10-01 17:29:25 -07001654 movq $1, 10*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001655
1656 /* Make another copy, this one may be modified by nested NMIs */
Salman Qazi28696f42012-10-01 17:29:25 -07001657 addq $(10*8), %rsp
1658 CFI_ADJUST_CFA_OFFSET -10*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001659 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001660 pushq_cfi -6*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001661 .endr
Salman Qazi28696f42012-10-01 17:29:25 -07001662 subq $(5*8), %rsp
Jan Beulich62610912012-02-24 14:54:37 +00001663 CFI_DEF_CFA_OFFSET SS+8-RIP
1664end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001665
1666 /*
1667 * Everything below this point can be preempted by a nested
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001668 * NMI if the first NMI took an exception and reset our iret stack
1669 * so that we repeat another NMI.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001670 */
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001671 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001672 subq $ORIG_RAX-R15, %rsp
1673 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001674 /*
1675 * Use save_paranoid to handle SWAPGS, but no need to use paranoid_exit
1676 * as we should not be calling schedule in NMI context.
1677 * Even with normal interrupts enabled. An NMI should not be
1678 * setting NEED_RESCHED or anything that normal interrupts and
1679 * exceptions might do.
1680 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001681 call save_paranoid
1682 DEFAULT_FRAME 0
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001683
1684 /*
1685 * Save off the CR2 register. If we take a page fault in the NMI then
1686 * it could corrupt the CR2 value. If the NMI preempts a page fault
1687 * handler before it was able to read the CR2 register, and then the
1688 * NMI itself takes a page fault, the page fault that was preempted
1689 * will read the information from the NMI page fault and not the
1690 * origin fault. Save it off and restore it if it changes.
1691 * Use the r12 callee-saved register.
1692 */
1693 movq %cr2, %r12
1694
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001695 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1696 movq %rsp,%rdi
1697 movq $-1,%rsi
1698 call do_nmi
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001699
1700 /* Did the NMI take a page fault? Restore cr2 if it did */
1701 movq %cr2, %rcx
1702 cmpq %rcx, %r12
1703 je 1f
1704 movq %r12, %cr2
17051:
1706
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001707 testl %ebx,%ebx /* swapgs needed? */
1708 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001709nmi_swapgs:
1710 SWAPGS_UNSAFE_STACK
1711nmi_restore:
Jan Beulich444723d2013-01-24 09:27:31 +00001712 /* Pop the extra iret frame at once */
1713 RESTORE_ALL 6*8
Salman Qazi28696f42012-10-01 17:29:25 -07001714
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001715 /* Clear the NMI executing stack variable */
Salman Qazi28696f42012-10-01 17:29:25 -07001716 movq $0, 5*8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001717 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001718 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001719END(nmi)
1720
1721ENTRY(ignore_sysret)
1722 CFI_STARTPROC
1723 mov $-ENOSYS,%eax
1724 sysret
1725 CFI_ENDPROC
1726END(ignore_sysret)
1727