blob: 60705b032521140e9fd0defc5dc769f09f547aa8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/x86_64/entry.S
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 2000, 2001, 2002 Andi Kleen SuSE Labs
6 * Copyright (C) 2000 Pavel Machek <pavel@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
9/*
10 * entry.S contains the system-call and fault low-level handling routines.
11 *
Andy Lutomirski8b4777a2011-06-05 13:50:18 -040012 * Some of this is documented in Documentation/x86/entry_64.txt
13 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * NOTE: This code handles signal-recognition, which happens every time
15 * after an interrupt and after each system call.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010016 *
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010017 * A note on terminology:
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +010018 * - iret frame: Architecture defined interrupt frame from SS to RIP
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010019 * at the top of the kernel process stack.
Andi Kleen2e91a172006-09-26 10:52:29 +020020 *
21 * Some macro usage:
22 * - CFI macros are used to generate dwarf2 unwind information for better
23 * backtraces. They don't change any code.
Andi Kleen2e91a172006-09-26 10:52:29 +020024 * - ENTRY/END Define functions in the symbol table.
Andi Kleen2e91a172006-09-26 10:52:29 +020025 * - TRACE_IRQ_* - Trace hard interrupt state for lock debugging.
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -070026 * - idtentry - Define exception entry points.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/linkage.h>
30#include <asm/segment.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/cache.h>
32#include <asm/errno.h>
33#include <asm/dwarf2.h>
34#include <asm/calling.h>
Sam Ravnborge2d5df92005-09-09 21:28:48 +020035#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/msr.h>
37#include <asm/unistd.h>
38#include <asm/thread_info.h>
39#include <asm/hw_irq.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080040#include <asm/page_types.h>
Ingo Molnar2601e642006-07-03 00:24:45 -070041#include <asm/irqflags.h>
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010042#include <asm/paravirt.h>
Tejun Heo9939dda2009-01-13 20:41:35 +090043#include <asm/percpu.h>
H. Peter Anvind7abc0f2012-04-20 12:19:50 -070044#include <asm/asm.h>
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010045#include <asm/context_tracking.h>
H. Peter Anvin63bcff22012-09-21 12:43:12 -070046#include <asm/smap.h>
H. Peter Anvin3891a042014-04-29 16:46:09 -070047#include <asm/pgtable_types.h>
Eric Parisd7e75282012-01-03 14:23:06 -050048#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Roland McGrath86a1c342008-06-23 15:37:04 -070050/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
51#include <linux/elf-em.h>
52#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
53#define __AUDIT_ARCH_64BIT 0x80000000
54#define __AUDIT_ARCH_LE 0x40000000
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 .code64
Jiri Olsaea714542011-03-07 19:10:39 +010057 .section .entry.text, "ax"
58
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020059
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010060#ifdef CONFIG_PARAVIRT
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -040061ENTRY(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010062 swapgs
63 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +030064ENDPROC(native_usergs_sysret64)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010065#endif /* CONFIG_PARAVIRT */
66
Ingo Molnar2601e642006-07-03 00:24:45 -070067
Denys Vlasenkof2db9382015-02-26 14:40:30 -080068.macro TRACE_IRQS_IRETQ
Ingo Molnar2601e642006-07-03 00:24:45 -070069#ifdef CONFIG_TRACE_IRQFLAGS
Denys Vlasenkof2db9382015-02-26 14:40:30 -080070 bt $9,EFLAGS(%rsp) /* interrupts off? */
Ingo Molnar2601e642006-07-03 00:24:45 -070071 jnc 1f
72 TRACE_IRQS_ON
731:
74#endif
75.endm
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/*
Steven Rostedt5963e312012-05-30 11:54:53 -040078 * When dynamic function tracer is enabled it will add a breakpoint
79 * to all locations that it is about to modify, sync CPUs, update
80 * all the code, sync CPUs, then remove the breakpoints. In this time
81 * if lockdep is enabled, it might jump back into the debug handler
82 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
83 *
84 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
85 * make sure the stack pointer does not get reset back to the top
86 * of the debug stack, and instead just reuses the current stack.
87 */
88#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
89
90.macro TRACE_IRQS_OFF_DEBUG
91 call debug_stack_set_zero
92 TRACE_IRQS_OFF
93 call debug_stack_reset
94.endm
95
96.macro TRACE_IRQS_ON_DEBUG
97 call debug_stack_set_zero
98 TRACE_IRQS_ON
99 call debug_stack_reset
100.endm
101
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800102.macro TRACE_IRQS_IRETQ_DEBUG
103 bt $9,EFLAGS(%rsp) /* interrupts off? */
Steven Rostedt5963e312012-05-30 11:54:53 -0400104 jnc 1f
105 TRACE_IRQS_ON_DEBUG
1061:
107.endm
108
109#else
110# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
111# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
112# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
113#endif
114
115/*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800116 * empty frame
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100117 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100118 .macro EMPTY_FRAME start=1 offset=0
119 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100120 CFI_STARTPROC simple
121 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100122 CFI_DEF_CFA rsp,8+\offset
123 .else
124 CFI_DEF_CFA_OFFSET 8+\offset
125 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100126 .endm
127
128/*
129 * initial frame state for interrupts (and exceptions without error code)
130 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100131 .macro INTR_FRAME start=1 offset=0
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800132 EMPTY_FRAME \start, 5*8+\offset
133 /*CFI_REL_OFFSET ss, 4*8+\offset*/
134 CFI_REL_OFFSET rsp, 3*8+\offset
135 /*CFI_REL_OFFSET rflags, 2*8+\offset*/
136 /*CFI_REL_OFFSET cs, 1*8+\offset*/
137 CFI_REL_OFFSET rip, 0*8+\offset
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100138 .endm
139
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100140/*
141 * initial frame state for exceptions with error code (and interrupts
142 * with vector already pushed)
143 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100144 .macro XCPT_FRAME start=1 offset=0
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800145 INTR_FRAME \start, 1*8+\offset
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100146 .endm
147
148/*
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800149 * frame that enables passing a complete pt_regs to a C function.
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100150 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800151 .macro DEFAULT_FRAME start=1 offset=0
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800152 XCPT_FRAME \start, ORIG_RAX+\offset
153 CFI_REL_OFFSET rdi, RDI+\offset
154 CFI_REL_OFFSET rsi, RSI+\offset
155 CFI_REL_OFFSET rdx, RDX+\offset
156 CFI_REL_OFFSET rcx, RCX+\offset
157 CFI_REL_OFFSET rax, RAX+\offset
158 CFI_REL_OFFSET r8, R8+\offset
159 CFI_REL_OFFSET r9, R9+\offset
160 CFI_REL_OFFSET r10, R10+\offset
161 CFI_REL_OFFSET r11, R11+\offset
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100162 CFI_REL_OFFSET rbx, RBX+\offset
163 CFI_REL_OFFSET rbp, RBP+\offset
164 CFI_REL_OFFSET r12, R12+\offset
165 CFI_REL_OFFSET r13, R13+\offset
166 CFI_REL_OFFSET r14, R14+\offset
167 CFI_REL_OFFSET r15, R15+\offset
168 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/*
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800171 * 64bit SYSCALL instruction entry. Up to 6 arguments in registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 *
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800173 * 64bit SYSCALL saves rip to rcx, clears rflags.RF, then saves rflags to r11,
174 * then loads new ss, cs, and rip from previously programmed MSRs.
175 * rflags gets masked by a value from another MSR (so CLD and CLAC
176 * are not needed). SYSCALL does not save anything on the stack
177 * and does not change rsp.
178 *
179 * Registers on entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * rax system call number
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800181 * rcx return address
182 * r11 saved rflags (note: r11 is callee-clobbered register in C ABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * rdi arg0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100185 * rdx arg2
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800186 * r10 arg3 (needs to be moved to rcx to conform to C ABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 * r8 arg4
188 * r9 arg5
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800189 * (note: r12-r15,rbp,rbx are callee-preserved in C ABI)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100190 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * Only called from user space.
192 *
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100193 * When user can change pt_regs->foo always force IRET. That is because
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200194 * it deals with uncanonical addresses better. SYSRET has trouble
195 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200199 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200200 CFI_SIGNAL_FRAME
Denys Vlasenkoef593262015-03-19 18:17:46 +0100201 CFI_DEF_CFA rsp,0
Jan Beulich7effaa82005-09-12 18:49:24 +0200202 CFI_REGISTER rip,rcx
203 /*CFI_REGISTER rflags,r11*/
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100204
205 /*
206 * Interrupts are off on entry.
207 * We do not frame this tiny irq-off block with TRACE_IRQS_OFF/ON,
208 * it is too small to ever cause noticeable irq latency.
209 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100210 SWAPGS_UNSAFE_STACK
211 /*
212 * A hypervisor implementation might want to use a label
213 * after the swapgs, so that it can do the swapgs
214 * for the guest and jump here on syscall.
215 */
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000216GLOBAL(system_call_after_swapgs)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100217
Ingo Molnarc38e5032015-03-17 14:42:59 +0100218 movq %rsp,PER_CPU_VAR(rsp_scratch)
Brian Gerst9af45652009-01-19 00:38:58 +0900219 movq PER_CPU_VAR(kernel_stack),%rsp
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100220
221 /* Construct struct pt_regs on stack */
222 pushq_cfi $__USER_DS /* pt_regs->ss */
223 pushq_cfi PER_CPU_VAR(rsp_scratch) /* pt_regs->sp */
Denys Vlasenko33db1fd2015-03-17 14:52:24 +0100224 /*
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100225 * Re-enable interrupts.
226 * We use 'rsp_scratch' as a scratch space, hence irq-off block above
227 * must execute atomically in the face of possible interrupt-driven
228 * task preemption. We must enable interrupts only after we're done
229 * with using rsp_scratch:
Denys Vlasenko33db1fd2015-03-17 14:52:24 +0100230 */
231 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100232 pushq_cfi %r11 /* pt_regs->flags */
233 pushq_cfi $__USER_CS /* pt_regs->cs */
234 pushq_cfi %rcx /* pt_regs->ip */
235 CFI_REL_OFFSET rip,0
236 pushq_cfi_reg rax /* pt_regs->orig_ax */
237 pushq_cfi_reg rdi /* pt_regs->di */
238 pushq_cfi_reg rsi /* pt_regs->si */
239 pushq_cfi_reg rdx /* pt_regs->dx */
240 pushq_cfi_reg rcx /* pt_regs->cx */
241 pushq_cfi $-ENOSYS /* pt_regs->ax */
242 pushq_cfi_reg r8 /* pt_regs->r8 */
243 pushq_cfi_reg r9 /* pt_regs->r9 */
244 pushq_cfi_reg r10 /* pt_regs->r10 */
Denys Vlasenkoa71ffdd2015-03-19 18:17:48 +0100245 pushq_cfi_reg r11 /* pt_regs->r11 */
246 sub $(6*8),%rsp /* pt_regs->bp,bx,r12-15 not saved */
Denys Vlasenko27be87c2015-03-27 11:36:19 +0100247 CFI_ADJUST_CFA_OFFSET 6*8
Denys Vlasenko9ed8e7d2015-03-19 18:17:47 +0100248
Ingo Molnardca5b522015-03-24 19:44:42 +0100249 testl $_TIF_WORK_SYSCALL_ENTRY, ASM_THREAD_INFO(TI_flags, %rsp, SIZEOF_PTREGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700251system_call_fastpath:
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800252#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800254#else
255 andl $__SYSCALL_MASK,%eax
256 cmpl $__NR_syscall_max,%eax
257#endif
Denys Vlasenko146b2b02015-03-25 18:18:13 +0100258 ja 1f /* return -ENOSYS (already in pt_regs->ax) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 movq %r10,%rcx
Denys Vlasenko146b2b02015-03-25 18:18:13 +0100260 call *sys_call_table(,%rax,8)
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800261 movq %rax,RAX(%rsp)
Denys Vlasenko146b2b02015-03-25 18:18:13 +01002621:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263/*
Denys Vlasenko146b2b02015-03-25 18:18:13 +0100264 * Syscall return path ending with SYSRET (fast path).
265 * Has incompletely filled pt_regs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100266 */
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200267 LOCKDEP_SYS_EXIT
Denys Vlasenko4416c5a2015-03-31 19:00:03 +0200268 /*
269 * We do not frame this tiny irq-off block with TRACE_IRQS_OFF/ON,
270 * it is too small to ever cause noticeable irq latency.
271 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100272 DISABLE_INTERRUPTS(CLBR_NONE)
Andy Lutomirskib3494a42015-03-23 12:32:54 -0700273
274 /*
275 * We must check ti flags with interrupts (or at least preemption)
276 * off because we must *never* return to userspace without
277 * processing exit work that is enqueued if we're preempted here.
278 * In particular, returning to userspace with any of the one-shot
279 * flags (TIF_NOTIFY_RESUME, TIF_USER_RETURN_NOTIFY, etc) set is
280 * very bad.
281 */
Ingo Molnar06ab9c12015-03-24 21:14:07 +0100282 testl $_TIF_ALLWORK_MASK, ASM_THREAD_INFO(TI_flags, %rsp, SIZEOF_PTREGS)
283 jnz int_ret_from_sys_call_irqs_off /* Go to the slow path */
Andy Lutomirskib3494a42015-03-23 12:32:54 -0700284
Jan Beulichbcddc012006-12-07 02:14:02 +0100285 CFI_REMEMBER_STATE
Denys Vlasenko4416c5a2015-03-31 19:00:03 +0200286
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100287 RESTORE_C_REGS_EXCEPT_RCX_R11
288 movq RIP(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200289 CFI_REGISTER rip,rcx
Denys Vlasenko29722cd2015-03-09 19:39:21 +0100290 movq EFLAGS(%rsp),%r11
Jan Beulich7effaa82005-09-12 18:49:24 +0200291 /*CFI_REGISTER rflags,r11*/
Denys Vlasenko263042e2015-03-09 19:39:23 +0100292 movq RSP(%rsp),%rsp
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800293 /*
294 * 64bit SYSRET restores rip from rcx,
295 * rflags from r11 (but RF and VM bits are forced to 0),
296 * cs and ss are loaded from MSRs.
Denys Vlasenko4416c5a2015-03-31 19:00:03 +0200297 * Restoration of rflags re-enables interrupts.
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800298 */
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400299 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Jan Beulichbcddc012006-12-07 02:14:02 +0100301 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100303 /* Do syscall entry tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100304tracesys:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800305 movq %rsp, %rdi
Denys Vlasenko47eb5822015-03-25 18:18:15 +0100306 movl $AUDIT_ARCH_X86_64, %esi
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700307 call syscall_trace_enter_phase1
308 test %rax, %rax
309 jnz tracesys_phase2 /* if needed, run the slow path */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800310 RESTORE_C_REGS_EXCEPT_RAX /* else restore clobbered regs */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800311 movq ORIG_RAX(%rsp), %rax
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700312 jmp system_call_fastpath /* and return to the fast path */
313
314tracesys_phase2:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800315 SAVE_EXTRA_REGS
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700316 movq %rsp, %rdi
Denys Vlasenko47eb5822015-03-25 18:18:15 +0100317 movl $AUDIT_ARCH_X86_64, %esi
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700318 movq %rax,%rdx
319 call syscall_trace_enter_phase2
320
Roland McGrathd4d67152008-07-09 02:38:07 -0700321 /*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800322 * Reload registers from stack in case ptrace changed them.
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700323 * We don't reload %rax because syscall_trace_entry_phase2() returned
Roland McGrathd4d67152008-07-09 02:38:07 -0700324 * the value it wants us to use in the table lookup.
325 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800326 RESTORE_C_REGS_EXCEPT_RAX
327 RESTORE_EXTRA_REGS
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800328#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800330#else
331 andl $__SYSCALL_MASK,%eax
332 cmpl $__NR_syscall_max,%eax
333#endif
Denys Vlasenkoa6de5a22015-03-31 19:00:11 +0200334 ja 1f /* return -ENOSYS (already in pt_regs->ax) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 movq %r10,%rcx /* fixup for C */
336 call *sys_call_table(,%rax,8)
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800337 movq %rax,RAX(%rsp)
Denys Vlasenkoa6de5a22015-03-31 19:00:11 +02003381:
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100339 /* Use IRET because user could have changed pt_regs->foo */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100340
341/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 * Syscall return path ending with IRET.
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100343 * Has correct iret frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100344 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300345GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100346 DISABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko4416c5a2015-03-31 19:00:03 +0200347int_ret_from_sys_call_irqs_off: /* jumps come here from the irqs-off SYSRET path */
Ingo Molnar2601e642006-07-03 00:24:45 -0700348 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 movl $_TIF_ALLWORK_MASK,%edi
350 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300351GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200352 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300354 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 andl %edi,%edx
356 jnz int_careful
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200357 andl $~TS_COMPAT,TI_status(%rcx)
358 jmp syscall_return
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 /* Either reschedule or signal or syscall exit tracking needed. */
361 /* First do a reschedule test. */
362 /* edx: work, edi: workmask */
363int_careful:
364 bt $TIF_NEED_RESCHED,%edx
365 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700366 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100367 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100368 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200369 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100370 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100371 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700372 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 jmp int_with_check
374
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100375 /* handle signals and tracing -- both require a full pt_regs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700377 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100378 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800379 SAVE_EXTRA_REGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100380 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700381 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100383 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100384 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100386 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700387 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100391 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 jz 1f
393 movq %rsp,%rdi # &ptregs -> arg1
394 xorl %esi,%esi # oldset -> arg2
395 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07003961: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397int_restore_rest:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800398 RESTORE_EXTRA_REGS
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100399 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700400 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 jmp int_with_check
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200402
403syscall_return:
404 /* The IRETQ could re-enable interrupts: */
405 DISABLE_INTERRUPTS(CLBR_ANY)
406 TRACE_IRQS_IRETQ
407
408 /*
409 * Try to use SYSRET instead of IRET if we're returning to
410 * a completely clean 64-bit userspace context.
411 */
412 movq RCX(%rsp),%rcx
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200413 movq RIP(%rsp),%r11
414 cmpq %rcx,%r11 /* RCX == RIP */
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200415 jne opportunistic_sysret_failed
416
417 /*
418 * On Intel CPUs, SYSRET with non-canonical RCX/RIP will #GP
419 * in kernel space. This essentially lets the user take over
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200420 * the kernel, since userspace controls RSP.
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200421 *
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200422 * If width of "canonical tail" ever becomes variable, this will need
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200423 * to be updated to remain correct on both old and new CPUs.
424 */
425 .ifne __VIRTUAL_MASK_SHIFT - 47
426 .error "virtual address width changed -- SYSRET checks need update"
427 .endif
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200428 /* Change top 16 bits to be the sign-extension of 47th bit */
429 shl $(64 - (__VIRTUAL_MASK_SHIFT+1)), %rcx
430 sar $(64 - (__VIRTUAL_MASK_SHIFT+1)), %rcx
431 /* If this changed %rcx, it was not canonical */
432 cmpq %rcx, %r11
433 jne opportunistic_sysret_failed
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200434
435 cmpq $__USER_CS,CS(%rsp) /* CS must match SYSRET */
436 jne opportunistic_sysret_failed
437
438 movq R11(%rsp),%r11
439 cmpq %r11,EFLAGS(%rsp) /* R11 == RFLAGS */
440 jne opportunistic_sysret_failed
441
442 /*
443 * SYSRET can't restore RF. SYSRET can restore TF, but unlike IRET,
444 * restoring TF results in a trap from userspace immediately after
445 * SYSRET. This would cause an infinite loop whenever #DB happens
446 * with register state that satisfies the opportunistic SYSRET
447 * conditions. For example, single-stepping this user code:
448 *
449 * movq $stuck_here,%rcx
450 * pushfq
451 * popq %r11
452 * stuck_here:
453 *
454 * would never get past 'stuck_here'.
455 */
456 testq $(X86_EFLAGS_RF|X86_EFLAGS_TF), %r11
457 jnz opportunistic_sysret_failed
458
459 /* nothing to check for RSP */
460
461 cmpq $__USER_DS,SS(%rsp) /* SS must match SYSRET */
462 jne opportunistic_sysret_failed
463
464 /*
465 * We win! This label is here just for ease of understanding
466 * perf profiles. Nothing jumps here.
467 */
468syscall_return_via_sysret:
469 CFI_REMEMBER_STATE
Denys Vlasenko17be0ae2015-04-21 18:27:29 +0200470 /* rcx and r11 are already restored (see code above) */
471 RESTORE_C_REGS_EXCEPT_RCX_R11
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200472 movq RSP(%rsp),%rsp
473 USERGS_SYSRET64
474 CFI_RESTORE_STATE
475
476opportunistic_sysret_failed:
477 SWAPGS
478 jmp restore_c_regs_and_iret
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100480END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100481
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200482
Al Viro1d4b4b22012-10-22 22:34:11 -0400483 .macro FORK_LIKE func
484ENTRY(stub_\func)
485 CFI_STARTPROC
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800486 DEFAULT_FRAME 0, 8 /* offset 8: return address */
487 SAVE_EXTRA_REGS 8
Denys Vlasenko772951c2015-04-07 22:43:40 +0200488 jmp sys_\func
Al Viro1d4b4b22012-10-22 22:34:11 -0400489 CFI_ENDPROC
490END(stub_\func)
491 .endm
492
493 FORK_LIKE clone
494 FORK_LIKE fork
495 FORK_LIKE vfork
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497ENTRY(stub_execve)
498 CFI_STARTPROC
Denys Vlasenkofc3e9582015-04-04 20:55:19 +0200499 DEFAULT_FRAME 0, 8
500 call sys_execve
501return_from_execve:
502 testl %eax, %eax
503 jz 1f
504 /* exec failed, can use fast SYSRET code path in this case */
505 ret
5061:
507 /* must use IRET code path (pt_regs->cs may have changed) */
508 addq $8, %rsp
Denys Vlasenko8b3607b52015-04-07 18:42:47 +0200509 CFI_ADJUST_CFA_OFFSET -8
Denys Vlasenkofc3e9582015-04-04 20:55:19 +0200510 ZERO_EXTRA_REGS
511 movq %rax,RAX(%rsp)
512 jmp int_ret_from_sys_call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200514END(stub_execve)
Denys Vlasenkoa37f34a2015-04-07 22:43:44 +0200515/*
516 * Remaining execve stubs are only 7 bytes long.
517 * ENTRY() often aligns to 16 bytes, which in this case has no benefits.
518 */
519 .align 8
520GLOBAL(stub_execveat)
David Drysdale27d6ec72014-12-12 16:57:33 -0800521 CFI_STARTPROC
Denys Vlasenkofc3e9582015-04-04 20:55:19 +0200522 DEFAULT_FRAME 0, 8
523 call sys_execveat
524 jmp return_from_execve
David Drysdale27d6ec72014-12-12 16:57:33 -0800525 CFI_ENDPROC
526END(stub_execveat)
527
Denys Vlasenkoac7f5df2015-04-21 18:03:13 +0200528#if defined(CONFIG_X86_X32_ABI) || defined(CONFIG_IA32_EMULATION)
Denys Vlasenkoa37f34a2015-04-07 22:43:44 +0200529 .align 8
530GLOBAL(stub_x32_execve)
Denys Vlasenkoa37f34a2015-04-07 22:43:44 +0200531GLOBAL(stub32_execve)
Denys Vlasenko0f90fb92015-04-07 22:43:39 +0200532 CFI_STARTPROC
Denys Vlasenkoac7f5df2015-04-21 18:03:13 +0200533 DEFAULT_FRAME 0, 8
Denys Vlasenko0f90fb92015-04-07 22:43:39 +0200534 call compat_sys_execve
535 jmp return_from_execve
536 CFI_ENDPROC
537END(stub32_execve)
Denys Vlasenkoac7f5df2015-04-21 18:03:13 +0200538END(stub_x32_execve)
Denys Vlasenkoa37f34a2015-04-07 22:43:44 +0200539 .align 8
Denys Vlasenkoac7f5df2015-04-21 18:03:13 +0200540GLOBAL(stub_x32_execveat)
Denys Vlasenkoa37f34a2015-04-07 22:43:44 +0200541GLOBAL(stub32_execveat)
Denys Vlasenko0f90fb92015-04-07 22:43:39 +0200542 CFI_STARTPROC
Denys Vlasenkoac7f5df2015-04-21 18:03:13 +0200543 DEFAULT_FRAME 0, 8
Denys Vlasenko0f90fb92015-04-07 22:43:39 +0200544 call compat_sys_execveat
545 jmp return_from_execve
546 CFI_ENDPROC
547END(stub32_execveat)
Denys Vlasenkoac7f5df2015-04-21 18:03:13 +0200548END(stub_x32_execveat)
Denys Vlasenko0f90fb92015-04-07 22:43:39 +0200549#endif
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551/*
552 * sigreturn is special because it needs to restore all registers on return.
553 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100554 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555ENTRY(stub_rt_sigreturn)
556 CFI_STARTPROC
Denys Vlasenko31f01192015-04-07 22:43:37 +0200557 DEFAULT_FRAME 0, 8
558 /*
559 * SAVE_EXTRA_REGS result is not normally needed:
560 * sigreturn overwrites all pt_regs->GPREGS.
561 * But sigreturn can fail (!), and there is no easy way to detect that.
562 * To make sure RESTORE_EXTRA_REGS doesn't restore garbage on error,
563 * we SAVE_EXTRA_REGS here.
564 */
565 SAVE_EXTRA_REGS 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 call sys_rt_sigreturn
Denys Vlasenko31f01192015-04-07 22:43:37 +0200567return_from_stub:
568 addq $8, %rsp
569 CFI_ADJUST_CFA_OFFSET -8
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800570 RESTORE_EXTRA_REGS
Denys Vlasenko31f01192015-04-07 22:43:37 +0200571 movq %rax,RAX(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 jmp int_ret_from_sys_call
573 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200574END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800576#ifdef CONFIG_X86_X32_ABI
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800577ENTRY(stub_x32_rt_sigreturn)
578 CFI_STARTPROC
Denys Vlasenko31f01192015-04-07 22:43:37 +0200579 DEFAULT_FRAME 0, 8
580 SAVE_EXTRA_REGS 8
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800581 call sys32_x32_rt_sigreturn
Denys Vlasenko31f01192015-04-07 22:43:37 +0200582 jmp return_from_stub
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800583 CFI_ENDPROC
584END(stub_x32_rt_sigreturn)
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800585#endif
586
Jan Beulich7effaa82005-09-12 18:49:24 +0200587/*
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800588 * A newly forked process directly context switches into this address.
589 *
590 * rdi: prev task we switched from
591 */
592ENTRY(ret_from_fork)
593 DEFAULT_FRAME
594
595 LOCK ; btr $TIF_FORK,TI_flags(%r8)
596
597 pushq_cfi $0x0002
598 popfq_cfi # reset kernel eflags
599
600 call schedule_tail # rdi: 'prev' task parameter
601
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800602 RESTORE_EXTRA_REGS
603
Denys Vlasenko03335e92015-04-27 15:21:52 +0200604 testb $3, CS(%rsp) # from kernel_thread?
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800605
Andy Lutomirski1e3fbb82015-02-26 14:40:39 -0800606 /*
607 * By the time we get here, we have no idea whether our pt_regs,
608 * ti flags, and ti status came from the 64-bit SYSCALL fast path,
609 * the slow path, or one of the ia32entry paths.
Denys Vlasenko66ad4ef2015-04-07 22:43:42 +0200610 * Use IRET code path to return, since it can safely handle
Andy Lutomirski1e3fbb82015-02-26 14:40:39 -0800611 * all of the above.
612 */
Denys Vlasenko66ad4ef2015-04-07 22:43:42 +0200613 jnz int_ret_from_sys_call
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800614
Denys Vlasenko66ad4ef2015-04-07 22:43:42 +0200615 /* We came from kernel_thread */
616 /* nb: we depend on RESTORE_EXTRA_REGS above */
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800617 movq %rbp, %rdi
618 call *%rbx
619 movl $0, RAX(%rsp)
620 RESTORE_EXTRA_REGS
621 jmp int_ret_from_sys_call
622 CFI_ENDPROC
623END(ret_from_fork)
624
625/*
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200626 * Build the entry stubs with some assembler magic.
627 * We pack 1 stub into every 8-byte block.
H. Peter Anvin939b7872008-11-11 13:51:52 -0800628 */
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200629 .align 8
H. Peter Anvin939b7872008-11-11 13:51:52 -0800630ENTRY(irq_entries_start)
631 INTR_FRAME
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200632 vector=FIRST_EXTERNAL_VECTOR
633 .rept (FIRST_SYSTEM_VECTOR - FIRST_EXTERNAL_VECTOR)
634 pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
635 vector=vector+1
636 jmp common_interrupt
H. Peter Anvin939b7872008-11-11 13:51:52 -0800637 CFI_ADJUST_CFA_OFFSET -8
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200638 .align 8
639 .endr
H. Peter Anvin939b7872008-11-11 13:51:52 -0800640 CFI_ENDPROC
641END(irq_entries_start)
642
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100643/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 * Interrupt entry/exit.
645 *
646 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100647 *
648 * Entry runs with interrupts off.
649 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100651/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 .macro interrupt func
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100653 cld
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800654 /*
655 * Since nothing in interrupt handling code touches r12...r15 members
656 * of "struct pt_regs", and since interrupts can nest, we can save
657 * four stack slots and simultaneously provide
658 * an unwind-friendly stack layout by saving "truncated" pt_regs
659 * exactly up to rbp slot, without these members.
660 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800661 ALLOC_PT_GPREGS_ON_STACK -RBP
662 SAVE_C_REGS -RBP
663 /* this goes to 0(%rsp) for unwinder, not for saving the value: */
664 SAVE_EXTRA_REGS_RBP -RBP
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100665
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800666 leaq -RBP(%rsp),%rdi /* arg1 for \func (pointer to pt_regs) */
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100667
Denys Vlasenko03335e92015-04-27 15:21:52 +0200668 testb $3, CS-RBP(%rsp)
Denys Vlasenkodde74f22015-04-27 15:21:51 +0200669 jz 1f
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100670 SWAPGS
Denys Vlasenko76f5df42015-02-26 14:40:27 -08006711:
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100672 /*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800673 * Save previous stack pointer, optionally switch to interrupt stack.
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100674 * irq_count is used to check if a CPU is already on an interrupt stack
675 * or not. While this is essentially redundant with preempt_count it is
676 * a little cheaper to use a separate counter in the PDA (short of
677 * moving irq_enter into assembly, which would be too much work)
678 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800679 movq %rsp, %rsi
680 incl PER_CPU_VAR(irq_count)
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100681 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
682 CFI_DEF_CFA_REGISTER rsi
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100683 pushq %rsi
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800684 /*
685 * For debugger:
686 * "CFA (Current Frame Address) is the value on stack + offset"
687 */
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100688 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800689 0x77 /* DW_OP_breg7 (rsp) */, 0, \
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100690 0x06 /* DW_OP_deref */, \
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800691 0x08 /* DW_OP_const1u */, SIZEOF_PTREGS-RBP, \
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100692 0x22 /* DW_OP_plus */
693 /* We entered an interrupt context - irqs are off: */
694 TRACE_IRQS_OFF
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 call \func
697 .endm
698
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100699 /*
700 * The interrupt stubs push (~vector+0x80) onto the stack and
701 * then jump to common_interrupt.
702 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800703 .p2align CONFIG_X86_L1_CACHE_SHIFT
704common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200705 XCPT_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000706 ASM_CLAC
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100707 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 interrupt do_IRQ
Denys Vlasenko34061f12015-03-23 14:03:59 +0100709 /* 0(%rsp): old RSP */
Jan Beulich7effaa82005-09-12 18:49:24 +0200710ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100711 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700712 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900713 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100714
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200715 /* Restore saved previous stack */
716 popq %rsi
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800717 CFI_DEF_CFA rsi,SIZEOF_PTREGS-RBP /* reg/off reset after def_cfa_expr */
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800718 /* return code expects complete pt_regs - adjust rsp accordingly: */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800719 leaq -RBP(%rsi),%rsp
Jan Beulich7effaa82005-09-12 18:49:24 +0200720 CFI_DEF_CFA_REGISTER rsp
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800721 CFI_ADJUST_CFA_OFFSET RBP
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100722
Denys Vlasenko03335e92015-04-27 15:21:52 +0200723 testb $3, CS(%rsp)
Denys Vlasenkodde74f22015-04-27 15:21:51 +0200724 jz retint_kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /* Interrupt came from user space */
Denys Vlasenkoa3675b32015-03-30 20:09:34 +0200726
727 GET_THREAD_INFO(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100730 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731retint_with_reschedule:
732 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200733retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200734 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300735 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200737 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200739
740retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700741 /*
742 * The iretq could re-enable interrupts:
743 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100744 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700745 TRACE_IRQS_IRETQ
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700746
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100747 SWAPGS
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200748 jmp restore_c_regs_and_iret
Ingo Molnar2601e642006-07-03 00:24:45 -0700749
Denys Vlasenko627276c2015-03-30 20:09:31 +0200750/* Returning to kernel space */
Denys Vlasenko6ba71b72015-03-31 19:00:05 +0200751retint_kernel:
Denys Vlasenko627276c2015-03-30 20:09:31 +0200752#ifdef CONFIG_PREEMPT
753 /* Interrupts are off */
754 /* Check if we need preemption */
Denys Vlasenko627276c2015-03-30 20:09:31 +0200755 bt $9,EFLAGS(%rsp) /* interrupts were off? */
Denys Vlasenko6ba71b72015-03-31 19:00:05 +0200756 jnc 1f
Denys Vlasenko36acef22015-03-31 19:00:07 +02007570: cmpl $0,PER_CPU_VAR(__preempt_count)
758 jnz 1f
Denys Vlasenko627276c2015-03-30 20:09:31 +0200759 call preempt_schedule_irq
Denys Vlasenko36acef22015-03-31 19:00:07 +0200760 jmp 0b
Denys Vlasenko6ba71b72015-03-31 19:00:05 +02007611:
Denys Vlasenko627276c2015-03-30 20:09:31 +0200762#endif
Ingo Molnar2601e642006-07-03 00:24:45 -0700763 /*
764 * The iretq could re-enable interrupts:
765 */
766 TRACE_IRQS_IRETQ
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200767
768/*
769 * At this label, code paths which return to kernel and to user,
770 * which come from interrupts/exception and from syscalls, merge.
771 */
772restore_c_regs_and_iret:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800773 RESTORE_C_REGS
774 REMOVE_PT_GPREGS_FROM_STACK 8
Ingo Molnar3701d8632008-02-09 23:24:08 +0100775
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200776irq_return:
Andy Lutomirski7209a752014-07-23 08:34:11 -0700777 INTERRUPT_RETURN
778
779ENTRY(native_iret)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700780 /*
781 * Are we returning to a stack segment from the LDT? Note: in
782 * 64-bit mode SS:RSP on the exception stack is always valid.
783 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700784#ifdef CONFIG_X86_ESPFIX64
H. Peter Anvin3891a042014-04-29 16:46:09 -0700785 testb $4,(SS-RIP)(%rsp)
Andy Lutomirski7209a752014-07-23 08:34:11 -0700786 jnz native_irq_return_ldt
H. Peter Anvin34273f42014-05-04 10:36:22 -0700787#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700788
Andy Lutomirskiaf726f22014-11-22 18:00:31 -0800789.global native_irq_return_iret
Andy Lutomirski7209a752014-07-23 08:34:11 -0700790native_irq_return_iret:
Andy Lutomirskib645af22014-11-22 18:00:33 -0800791 /*
792 * This may fault. Non-paranoid faults on return to userspace are
793 * handled by fixup_bad_iret. These include #SS, #GP, and #NP.
794 * Double-faults due to espfix64 are handled in do_double_fault.
795 * Other faults here are fatal.
796 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 iretq
Ingo Molnar3701d8632008-02-09 23:24:08 +0100798
H. Peter Anvin34273f42014-05-04 10:36:22 -0700799#ifdef CONFIG_X86_ESPFIX64
Andy Lutomirski7209a752014-07-23 08:34:11 -0700800native_irq_return_ldt:
H. Peter Anvin3891a042014-04-29 16:46:09 -0700801 pushq_cfi %rax
802 pushq_cfi %rdi
803 SWAPGS
804 movq PER_CPU_VAR(espfix_waddr),%rdi
805 movq %rax,(0*8)(%rdi) /* RAX */
806 movq (2*8)(%rsp),%rax /* RIP */
807 movq %rax,(1*8)(%rdi)
808 movq (3*8)(%rsp),%rax /* CS */
809 movq %rax,(2*8)(%rdi)
810 movq (4*8)(%rsp),%rax /* RFLAGS */
811 movq %rax,(3*8)(%rdi)
812 movq (6*8)(%rsp),%rax /* SS */
813 movq %rax,(5*8)(%rdi)
814 movq (5*8)(%rsp),%rax /* RSP */
815 movq %rax,(4*8)(%rdi)
816 andl $0xffff0000,%eax
817 popq_cfi %rdi
818 orq PER_CPU_VAR(espfix_stack),%rax
819 SWAPGS
820 movq %rax,%rsp
821 popq_cfi %rax
Andy Lutomirski7209a752014-07-23 08:34:11 -0700822 jmp native_irq_return_iret
H. Peter Anvin34273f42014-05-04 10:36:22 -0700823#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700824
Jan Beulich7effaa82005-09-12 18:49:24 +0200825 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200827 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 bt $TIF_NEED_RESCHED,%edx
829 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700830 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100831 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100832 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200833 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100834 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100836 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700837 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100841 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700842 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700843 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100844 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800845 SAVE_EXTRA_REGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100846 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700847 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 movq %rsp,%rdi # &pt_regs
849 call do_notify_resume
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800850 RESTORE_EXTRA_REGS
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100851 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700852 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -0700853 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -0700854 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200857END(common_interrupt)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700858
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400859/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100861 */
Seiji Aguchicf910e82013-06-20 11:46:53 -0400862.macro apicinterrupt3 num sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100863ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +0200864 INTR_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000865 ASM_CLAC
Jan Beulichdf5d1872010-09-02 14:07:16 +0100866 pushq_cfi $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +0000867.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100868 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 jmp ret_from_intr
870 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100871END(\sym)
872.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100873
Seiji Aguchicf910e82013-06-20 11:46:53 -0400874#ifdef CONFIG_TRACING
875#define trace(sym) trace_##sym
876#define smp_trace(sym) smp_trace_##sym
877
878.macro trace_apicinterrupt num sym
879apicinterrupt3 \num trace(\sym) smp_trace(\sym)
880.endm
881#else
882.macro trace_apicinterrupt num sym do_sym
883.endm
884#endif
885
886.macro apicinterrupt num sym do_sym
887apicinterrupt3 \num \sym \do_sym
888trace_apicinterrupt \num \sym
889.endm
890
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100891#ifdef CONFIG_SMP
Seiji Aguchicf910e82013-06-20 11:46:53 -0400892apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100893 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Seiji Aguchicf910e82013-06-20 11:46:53 -0400894apicinterrupt3 REBOOT_VECTOR \
Andi Kleen4ef702c2009-05-27 21:56:52 +0200895 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896#endif
897
Nick Piggin03b48632009-01-20 04:36:04 +0100898#ifdef CONFIG_X86_UV
Seiji Aguchicf910e82013-06-20 11:46:53 -0400899apicinterrupt3 UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100900 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100901#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100902apicinterrupt LOCAL_TIMER_VECTOR \
903 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500904apicinterrupt X86_PLATFORM_IPI_VECTOR \
905 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Yang Zhangd78f2662013-04-11 19:25:11 +0800907#ifdef CONFIG_HAVE_KVM
Seiji Aguchicf910e82013-06-20 11:46:53 -0400908apicinterrupt3 POSTED_INTR_VECTOR \
Yang Zhangd78f2662013-04-11 19:25:11 +0800909 kvm_posted_intr_ipi smp_kvm_posted_intr_ipi
910#endif
911
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400912#ifdef CONFIG_X86_MCE_THRESHOLD
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100913apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +0200914 threshold_interrupt smp_threshold_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400915#endif
916
917#ifdef CONFIG_X86_THERMAL_VECTOR
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100918apicinterrupt THERMAL_APIC_VECTOR \
919 thermal_interrupt smp_thermal_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400920#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100922#ifdef CONFIG_SMP
923apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
924 call_function_single_interrupt smp_call_function_single_interrupt
925apicinterrupt CALL_FUNCTION_VECTOR \
926 call_function_interrupt smp_call_function_interrupt
927apicinterrupt RESCHEDULE_VECTOR \
928 reschedule_interrupt smp_reschedule_interrupt
929#endif
930
931apicinterrupt ERROR_APIC_VECTOR \
932 error_interrupt smp_error_interrupt
933apicinterrupt SPURIOUS_APIC_VECTOR \
934 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100935
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800936#ifdef CONFIG_IRQ_WORK
937apicinterrupt IRQ_WORK_VECTOR \
938 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +0100939#endif
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941/*
942 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100943 */
Andy Lutomirski9b476682015-03-05 19:19:07 -0800944#define CPU_TSS_IST(x) PER_CPU_VAR(cpu_tss) + (TSS_ist + ((x) - 1) * 8)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700945
946.macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100947ENTRY(\sym)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700948 /* Sanity check */
949 .if \shift_ist != -1 && \paranoid == 0
950 .error "using shift_ist requires paranoid=1"
951 .endif
952
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700953 .if \has_error_code
954 XCPT_FRAME
955 .else
Jan Beulich7effaa82005-09-12 18:49:24 +0200956 INTR_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700957 .endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Jan Beulichee4eb872012-11-02 11:18:39 +0000959 ASM_CLAC
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +0100960 PARAVIRT_ADJUST_EXCEPTION_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700961
962 .ifeq \has_error_code
963 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
964 .endif
965
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800966 ALLOC_PT_GPREGS_ON_STACK
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700967
968 .if \paranoid
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800969 .if \paranoid == 1
970 CFI_REMEMBER_STATE
Denys Vlasenko03335e92015-04-27 15:21:52 +0200971 testb $3, CS(%rsp) /* If coming from userspace, switch */
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800972 jnz 1f /* stacks. */
973 .endif
Denys Vlasenkoebfc4532015-02-26 14:40:34 -0800974 call paranoid_entry
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700975 .else
976 call error_entry
977 .endif
Denys Vlasenkoebfc4532015-02-26 14:40:34 -0800978 /* returned flag: ebx=0: need swapgs on exit, ebx=1: don't need it */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700979
Andy Lutomirski1bd24ef2014-05-21 15:07:07 -0700980 DEFAULT_FRAME 0
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700981
982 .if \paranoid
Andy Lutomirski577ed452014-05-21 15:07:09 -0700983 .if \shift_ist != -1
984 TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */
985 .else
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +0100986 TRACE_IRQS_OFF
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700987 .endif
Andy Lutomirski577ed452014-05-21 15:07:09 -0700988 .endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700989
990 movq %rsp,%rdi /* pt_regs pointer */
991
992 .if \has_error_code
993 movq ORIG_RAX(%rsp),%rsi /* get error code */
994 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
995 .else
996 xorl %esi,%esi /* no error code */
997 .endif
998
Andy Lutomirski577ed452014-05-21 15:07:09 -0700999 .if \shift_ist != -1
Andy Lutomirski9b476682015-03-05 19:19:07 -08001000 subq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001001 .endif
1002
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001003 call \do_sym
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001004
Andy Lutomirski577ed452014-05-21 15:07:09 -07001005 .if \shift_ist != -1
Andy Lutomirski9b476682015-03-05 19:19:07 -08001006 addq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001007 .endif
1008
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001009 /* these procedures expect "no swapgs" flag in ebx */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001010 .if \paranoid
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001011 jmp paranoid_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001012 .else
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001013 jmp error_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001014 .endif
1015
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001016 .if \paranoid == 1
1017 CFI_RESTORE_STATE
1018 /*
1019 * Paranoid entry from userspace. Switch stacks and treat it
1020 * as a normal entry. This means that paranoid handlers
1021 * run in real process context if user_mode(regs).
1022 */
10231:
1024 call error_entry
1025
1026 DEFAULT_FRAME 0
1027
1028 movq %rsp,%rdi /* pt_regs pointer */
1029 call sync_regs
1030 movq %rax,%rsp /* switch stack */
1031
1032 movq %rsp,%rdi /* pt_regs pointer */
1033
1034 .if \has_error_code
1035 movq ORIG_RAX(%rsp),%rsi /* get error code */
1036 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1037 .else
1038 xorl %esi,%esi /* no error code */
1039 .endif
1040
1041 call \do_sym
1042
1043 jmp error_exit /* %ebx: no swapgs flag */
1044 .endif
1045
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001046 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001047END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001048.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001049
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001050#ifdef CONFIG_TRACING
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001051.macro trace_idtentry sym do_sym has_error_code:req
1052idtentry trace(\sym) trace(\do_sym) has_error_code=\has_error_code
1053idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001054.endm
1055#else
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001056.macro trace_idtentry sym do_sym has_error_code:req
1057idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001058.endm
1059#endif
1060
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001061idtentry divide_error do_divide_error has_error_code=0
1062idtentry overflow do_overflow has_error_code=0
1063idtentry bounds do_bounds has_error_code=0
1064idtentry invalid_op do_invalid_op has_error_code=0
1065idtentry device_not_available do_device_not_available has_error_code=0
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001066idtentry double_fault do_double_fault has_error_code=1 paranoid=2
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001067idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0
1068idtentry invalid_TSS do_invalid_TSS has_error_code=1
1069idtentry segment_not_present do_segment_not_present has_error_code=1
1070idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0
1071idtentry coprocessor_error do_coprocessor_error has_error_code=0
1072idtentry alignment_check do_alignment_check has_error_code=1
1073idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001074
Ingo Molnar2601e642006-07-03 00:24:45 -07001075
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001076 /* Reload gs selector with exception handling */
1077 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001078ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001079 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001080 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001081 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001082 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001083gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001084 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070010852: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001086 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001087 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001088 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001089 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001090END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001091
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001092 _ASM_EXTABLE(gs_change,bad_gs)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001093 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001095bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001096 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001098 movl %eax,%gs
1099 jmp 2b
1100 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001101
Andi Kleen26995002006-08-02 22:37:28 +02001102/* Call softirq on interrupt stack. Interrupts are off. */
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001103ENTRY(do_softirq_own_stack)
Jan Beulich7effaa82005-09-12 18:49:24 +02001104 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001105 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001106 CFI_REL_OFFSET rbp,0
1107 mov %rsp,%rbp
1108 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001109 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001110 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001111 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001112 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001113 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001114 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001115 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001116 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001117 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001118 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001119 CFI_ENDPROC
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001120END(do_softirq_own_stack)
Andi Kleen75154f42007-06-23 02:29:25 +02001121
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001122#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001123idtentry xen_hypervisor_callback xen_do_hypervisor_callback has_error_code=0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001124
1125/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001126 * A note on the "critical region" in our callback handler.
1127 * We want to avoid stacking callback handlers due to events occurring
1128 * during handling of the last event. To do this, we keep events disabled
1129 * until we've done all processing. HOWEVER, we must enable events before
1130 * popping the stack frame (can't be done atomically) and so it would still
1131 * be possible to get enough handler activations to overflow the stack.
1132 * Although unlikely, bugs of that kind are hard to track down, so we'd
1133 * like to avoid the possibility.
1134 * So, on entry to the handler we detect whether we interrupted an
1135 * existing activation in its critical region -- if so, we pop the current
1136 * activation and restart the handler using the previous one.
1137 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001138ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1139 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001140/*
1141 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1142 * see the correct pointer to the pt_regs
1143 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001144 movq %rdi, %rsp # we don't return, adjust the stack frame
1145 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001146 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900114711: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001148 movq %rsp,%rbp
1149 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001150 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001151 pushq %rbp # backlink for old unwinder
1152 call xen_evtchn_do_upcall
1153 popq %rsp
1154 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001155 decl PER_CPU_VAR(irq_count)
David Vrabelfdfd8112015-02-19 15:23:17 +00001156#ifndef CONFIG_PREEMPT
1157 call xen_maybe_preempt_hcall
1158#endif
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001159 jmp error_exit
1160 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001161END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001162
1163/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001164 * Hypervisor uses this for application faults while it executes.
1165 * We get here for two reasons:
1166 * 1. Fault while reloading DS, ES, FS or GS
1167 * 2. Fault while executing IRET
1168 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1169 * registers that could be reloaded and zeroed the others.
1170 * Category 2 we fix up by killing the current process. We cannot use the
1171 * normal Linux return path in this case because if we use the IRET hypercall
1172 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1173 * We distinguish between categories by comparing each saved segment register
1174 * with its current contents: any discrepancy means we in category 1.
1175 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001176ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001177 INTR_FRAME 1 (6*8)
1178 /*CFI_REL_OFFSET gs,GS*/
1179 /*CFI_REL_OFFSET fs,FS*/
1180 /*CFI_REL_OFFSET es,ES*/
1181 /*CFI_REL_OFFSET ds,DS*/
1182 CFI_REL_OFFSET r11,8
1183 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001184 movw %ds,%cx
1185 cmpw %cx,0x10(%rsp)
1186 CFI_REMEMBER_STATE
1187 jne 1f
1188 movw %es,%cx
1189 cmpw %cx,0x18(%rsp)
1190 jne 1f
1191 movw %fs,%cx
1192 cmpw %cx,0x20(%rsp)
1193 jne 1f
1194 movw %gs,%cx
1195 cmpw %cx,0x28(%rsp)
1196 jne 1f
1197 /* All segments match their saved values => Category 2 (Bad IRET). */
1198 movq (%rsp),%rcx
1199 CFI_RESTORE rcx
1200 movq 8(%rsp),%r11
1201 CFI_RESTORE r11
1202 addq $0x30,%rsp
1203 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001204 pushq_cfi $0 /* RIP */
1205 pushq_cfi %r11
1206 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001207 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001208 CFI_RESTORE_STATE
12091: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1210 movq (%rsp),%rcx
1211 CFI_RESTORE rcx
1212 movq 8(%rsp),%r11
1213 CFI_RESTORE r11
1214 addq $0x30,%rsp
1215 CFI_ADJUST_CFA_OFFSET -0x30
David Vrabela349e23d12012-10-19 17:29:07 +01001216 pushq_cfi $-1 /* orig_ax = -1 => not a system call */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001217 ALLOC_PT_GPREGS_ON_STACK
1218 SAVE_C_REGS
1219 SAVE_EXTRA_REGS
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001220 jmp error_exit
1221 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001222END(xen_failsafe_callback)
1223
Seiji Aguchicf910e82013-06-20 11:46:53 -04001224apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
Sheng Yang38e20b02010-05-14 12:40:51 +01001225 xen_hvm_callback_vector xen_evtchn_do_upcall
1226
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001227#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001228
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001229#if IS_ENABLED(CONFIG_HYPERV)
Seiji Aguchicf910e82013-06-20 11:46:53 -04001230apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001231 hyperv_callback_vector hyperv_vector_handler
1232#endif /* CONFIG_HYPERV */
1233
Andy Lutomirski577ed452014-05-21 15:07:09 -07001234idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1235idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
Andy Lutomirski6f442be2014-11-22 18:00:32 -08001236idtentry stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001237#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001238idtentry xen_debug do_debug has_error_code=0
1239idtentry xen_int3 do_int3 has_error_code=0
1240idtentry xen_stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001241#endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001242idtentry general_protection do_general_protection has_error_code=1
1243trace_idtentry page_fault do_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001244#ifdef CONFIG_KVM_GUEST
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001245idtentry async_page_fault do_async_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001246#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001247#ifdef CONFIG_X86_MCE
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001248idtentry machine_check has_error_code=0 paranoid=1 do_sym=*machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001249#endif
1250
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001251/*
1252 * Save all registers in pt_regs, and switch gs if needed.
1253 * Use slow, but surefire "are we in kernel?" check.
1254 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
1255 */
1256ENTRY(paranoid_entry)
1257 XCPT_FRAME 1 15*8
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001258 cld
1259 SAVE_C_REGS 8
1260 SAVE_EXTRA_REGS 8
1261 movl $1,%ebx
1262 movl $MSR_GS_BASE,%ecx
1263 rdmsr
1264 testl %edx,%edx
1265 js 1f /* negative -> in kernel */
1266 SWAPGS
1267 xorl %ebx,%ebx
12681: ret
1269 CFI_ENDPROC
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001270END(paranoid_entry)
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001271
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001272/*
1273 * "Paranoid" exit path from exception stack. This is invoked
1274 * only on return from non-NMI IST interrupts that came
1275 * from kernel space.
1276 *
1277 * We may be returning to very strange contexts (e.g. very early
1278 * in syscall entry), so checking for preemption here would
1279 * be complicated. Fortunately, we there's no good reason
1280 * to try to handle preemption here.
1281 */
1282/* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001283ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001284 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001285 DISABLE_INTERRUPTS(CLBR_NONE)
Steven Rostedt5963e312012-05-30 11:54:53 -04001286 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001287 testl %ebx,%ebx /* swapgs needed? */
Denys Vlasenko0d550832015-02-26 14:40:29 -08001288 jnz paranoid_exit_no_swapgs
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001289 TRACE_IRQS_IRETQ
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001290 SWAPGS_UNSAFE_STACK
Denys Vlasenko0d550832015-02-26 14:40:29 -08001291 jmp paranoid_exit_restore
1292paranoid_exit_no_swapgs:
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001293 TRACE_IRQS_IRETQ_DEBUG
Denys Vlasenko0d550832015-02-26 14:40:29 -08001294paranoid_exit_restore:
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001295 RESTORE_EXTRA_REGS
1296 RESTORE_C_REGS
1297 REMOVE_PT_GPREGS_FROM_STACK 8
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001298 INTERRUPT_RETURN
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001299 CFI_ENDPROC
1300END(paranoid_exit)
1301
1302/*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001303 * Save all registers in pt_regs, and switch gs if needed.
1304 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001305 */
1306ENTRY(error_entry)
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001307 XCPT_FRAME 1 15*8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001308 cld
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001309 SAVE_C_REGS 8
1310 SAVE_EXTRA_REGS 8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001311 xorl %ebx,%ebx
Denys Vlasenko03335e92015-04-27 15:21:52 +02001312 testb $3, CS+8(%rsp)
Denys Vlasenkodde74f22015-04-27 15:21:51 +02001313 jz error_kernelspace
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001314error_swapgs:
1315 SWAPGS
1316error_sti:
1317 TRACE_IRQS_OFF
1318 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001319
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001320 /*
1321 * There are two places in the kernel that can potentially fault with
1322 * usergs. Handle them here. B stepping K8s sometimes report a
1323 * truncated RIP for IRET exceptions returning to compat mode. Check
1324 * for these here too.
1325 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001326error_kernelspace:
Jan Beulich3bab13b2014-06-25 14:11:22 +01001327 CFI_REL_OFFSET rcx, RCX+8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001328 incl %ebx
Andy Lutomirski7209a752014-07-23 08:34:11 -07001329 leaq native_irq_return_iret(%rip),%rcx
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001330 cmpq %rcx,RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001331 je error_bad_iret
Brian Gerstae24ffe2009-10-12 10:18:23 -04001332 movl %ecx,%eax /* zero extend */
1333 cmpq %rax,RIP+8(%rsp)
1334 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001335 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001336 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001337 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001338
1339bstep_iret:
1340 /* Fix truncated RIP */
1341 movq %rcx,RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001342 /* fall through */
1343
1344error_bad_iret:
1345 SWAPGS
1346 mov %rsp,%rdi
1347 call fixup_bad_iret
1348 mov %rax,%rsp
1349 decl %ebx /* Return to usergs */
1350 jmp error_sti
Jan Beuliche6b04b62010-09-02 13:52:45 +01001351 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001352END(error_entry)
1353
1354
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001355/* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001356ENTRY(error_exit)
1357 DEFAULT_FRAME
1358 movl %ebx,%eax
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001359 RESTORE_EXTRA_REGS
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001360 DISABLE_INTERRUPTS(CLBR_NONE)
1361 TRACE_IRQS_OFF
1362 GET_THREAD_INFO(%rcx)
1363 testl %eax,%eax
Denys Vlasenkodde74f22015-04-27 15:21:51 +02001364 jnz retint_kernel
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001365 LOCKDEP_SYS_EXIT_IRQ
1366 movl TI_flags(%rcx),%edx
1367 movl $_TIF_WORK_MASK,%edi
1368 andl %edi,%edx
1369 jnz retint_careful
1370 jmp retint_swapgs
1371 CFI_ENDPROC
1372END(error_exit)
1373
Denys Vlasenko0784b362015-04-01 16:50:57 +02001374/* Runs on exception stack */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001375ENTRY(nmi)
1376 INTR_FRAME
1377 PARAVIRT_ADJUST_EXCEPTION_FRAME
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001378 /*
1379 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1380 * the iretq it performs will take us out of NMI context.
1381 * This means that we can have nested NMIs where the next
1382 * NMI is using the top of the stack of the previous NMI. We
1383 * can't let it execute because the nested NMI will corrupt the
1384 * stack of the previous NMI. NMI handlers are not re-entrant
1385 * anyway.
1386 *
1387 * To handle this case we do the following:
1388 * Check the a special location on the stack that contains
1389 * a variable that is set when NMIs are executing.
1390 * The interrupted task's stack is also checked to see if it
1391 * is an NMI stack.
1392 * If the variable is not set and the stack is not the NMI
1393 * stack then:
1394 * o Set the special variable on the stack
1395 * o Copy the interrupt frame into a "saved" location on the stack
1396 * o Copy the interrupt frame into a "copy" location on the stack
1397 * o Continue processing the NMI
1398 * If the variable is set or the previous stack is the NMI stack:
1399 * o Modify the "copy" location to jump to the repeate_nmi
1400 * o return back to the first NMI
1401 *
1402 * Now on exit of the first NMI, we first clear the stack variable
1403 * The NMI stack will tell any nested NMIs at that point that it is
1404 * nested. Then we pop the stack normally with iret, and if there was
1405 * a nested NMI that updated the copy interrupt stack frame, a
1406 * jump will be made to the repeat_nmi code that will handle the second
1407 * NMI.
1408 */
1409
Denys Vlasenko146b2b02015-03-25 18:18:13 +01001410 /* Use %rdx as our temp variable throughout */
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001411 pushq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001412 CFI_REL_OFFSET rdx, 0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001413
1414 /*
Steven Rostedt45d5a162012-02-19 16:43:37 -05001415 * If %cs was not the kernel segment, then the NMI triggered in user
1416 * space, which means it is definitely not nested.
1417 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001418 cmpl $__KERNEL_CS, 16(%rsp)
Steven Rostedt45d5a162012-02-19 16:43:37 -05001419 jne first_nmi
1420
1421 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001422 * Check the special variable on the stack to see if NMIs are
1423 * executing.
1424 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001425 cmpl $1, -8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001426 je nested_nmi
1427
1428 /*
1429 * Now test if the previous stack was an NMI stack.
1430 * We need the double check. We check the NMI stack to satisfy the
1431 * race when the first NMI clears the variable before returning.
1432 * We check the variable because the first NMI could be in a
1433 * breakpoint routine using a breakpoint stack.
1434 */
Denys Vlasenko0784b362015-04-01 16:50:57 +02001435 lea 6*8(%rsp), %rdx
1436 /* Compare the NMI stack (rdx) with the stack we came from (4*8(%rsp)) */
1437 cmpq %rdx, 4*8(%rsp)
1438 /* If the stack pointer is above the NMI stack, this is a normal NMI */
1439 ja first_nmi
1440 subq $EXCEPTION_STKSZ, %rdx
1441 cmpq %rdx, 4*8(%rsp)
1442 /* If it is below the NMI stack, it is a normal NMI */
1443 jb first_nmi
1444 /* Ah, it is within the NMI stack, treat it as nested */
Denys Vlasenko0784b362015-04-01 16:50:57 +02001445
Jan Beulich62610912012-02-24 14:54:37 +00001446 CFI_REMEMBER_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001447
1448nested_nmi:
1449 /*
1450 * Do nothing if we interrupted the fixup in repeat_nmi.
1451 * It's about to repeat the NMI handler, so we are fine
1452 * with ignoring this one.
1453 */
1454 movq $repeat_nmi, %rdx
1455 cmpq 8(%rsp), %rdx
1456 ja 1f
1457 movq $end_repeat_nmi, %rdx
1458 cmpq 8(%rsp), %rdx
1459 ja nested_nmi_out
1460
14611:
1462 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
Salman Qazi28696f42012-10-01 17:29:25 -07001463 leaq -1*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001464 movq %rdx, %rsp
Salman Qazi28696f42012-10-01 17:29:25 -07001465 CFI_ADJUST_CFA_OFFSET 1*8
1466 leaq -10*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001467 pushq_cfi $__KERNEL_DS
1468 pushq_cfi %rdx
1469 pushfq_cfi
1470 pushq_cfi $__KERNEL_CS
1471 pushq_cfi $repeat_nmi
1472
1473 /* Put stack back */
Salman Qazi28696f42012-10-01 17:29:25 -07001474 addq $(6*8), %rsp
1475 CFI_ADJUST_CFA_OFFSET -6*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001476
1477nested_nmi_out:
1478 popq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001479 CFI_RESTORE rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001480
1481 /* No need to check faults here */
1482 INTERRUPT_RETURN
1483
Jan Beulich62610912012-02-24 14:54:37 +00001484 CFI_RESTORE_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001485first_nmi:
1486 /*
1487 * Because nested NMIs will use the pushed location that we
1488 * stored in rdx, we must keep that space available.
1489 * Here's what our stack frame will look like:
1490 * +-------------------------+
1491 * | original SS |
1492 * | original Return RSP |
1493 * | original RFLAGS |
1494 * | original CS |
1495 * | original RIP |
1496 * +-------------------------+
1497 * | temp storage for rdx |
1498 * +-------------------------+
1499 * | NMI executing variable |
1500 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001501 * | copied SS |
1502 * | copied Return RSP |
1503 * | copied RFLAGS |
1504 * | copied CS |
1505 * | copied RIP |
1506 * +-------------------------+
Salman Qazi28696f42012-10-01 17:29:25 -07001507 * | Saved SS |
1508 * | Saved Return RSP |
1509 * | Saved RFLAGS |
1510 * | Saved CS |
1511 * | Saved RIP |
1512 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001513 * | pt_regs |
1514 * +-------------------------+
1515 *
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001516 * The saved stack frame is used to fix up the copied stack frame
1517 * that a nested NMI may change to make the interrupted NMI iret jump
1518 * to the repeat_nmi. The original stack frame and the temp storage
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001519 * is also used by nested NMIs and can not be trusted on exit.
1520 */
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001521 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
Jan Beulich62610912012-02-24 14:54:37 +00001522 movq (%rsp), %rdx
1523 CFI_RESTORE rdx
1524
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001525 /* Set the NMI executing variable on the stack. */
1526 pushq_cfi $1
1527
Salman Qazi28696f42012-10-01 17:29:25 -07001528 /*
1529 * Leave room for the "copied" frame
1530 */
1531 subq $(5*8), %rsp
Jan Beulich444723d2013-01-24 09:27:31 +00001532 CFI_ADJUST_CFA_OFFSET 5*8
Salman Qazi28696f42012-10-01 17:29:25 -07001533
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001534 /* Copy the stack frame to the Saved frame */
1535 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001536 pushq_cfi 11*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001537 .endr
Denys Vlasenko911d2bb2015-02-26 14:40:36 -08001538 CFI_DEF_CFA_OFFSET 5*8
Jan Beulich62610912012-02-24 14:54:37 +00001539
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001540 /* Everything up to here is safe from nested NMIs */
1541
Jan Beulich62610912012-02-24 14:54:37 +00001542 /*
1543 * If there was a nested NMI, the first NMI's iret will return
1544 * here. But NMIs are still enabled and we can take another
1545 * nested NMI. The nested NMI checks the interrupted RIP to see
1546 * if it is between repeat_nmi and end_repeat_nmi, and if so
1547 * it will just return, as we are about to repeat an NMI anyway.
1548 * This makes it safe to copy to the stack frame that a nested
1549 * NMI will update.
1550 */
1551repeat_nmi:
1552 /*
1553 * Update the stack variable to say we are still in NMI (the update
1554 * is benign for the non-repeat case, where 1 was pushed just above
1555 * to this very stack slot).
1556 */
Salman Qazi28696f42012-10-01 17:29:25 -07001557 movq $1, 10*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001558
1559 /* Make another copy, this one may be modified by nested NMIs */
Salman Qazi28696f42012-10-01 17:29:25 -07001560 addq $(10*8), %rsp
1561 CFI_ADJUST_CFA_OFFSET -10*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001562 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001563 pushq_cfi -6*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001564 .endr
Salman Qazi28696f42012-10-01 17:29:25 -07001565 subq $(5*8), %rsp
Denys Vlasenko911d2bb2015-02-26 14:40:36 -08001566 CFI_DEF_CFA_OFFSET 5*8
Jan Beulich62610912012-02-24 14:54:37 +00001567end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001568
1569 /*
1570 * Everything below this point can be preempted by a nested
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001571 * NMI if the first NMI took an exception and reset our iret stack
1572 * so that we repeat another NMI.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001573 */
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001574 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001575 ALLOC_PT_GPREGS_ON_STACK
1576
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001577 /*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001578 * Use paranoid_entry to handle SWAPGS, but no need to use paranoid_exit
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001579 * as we should not be calling schedule in NMI context.
1580 * Even with normal interrupts enabled. An NMI should not be
1581 * setting NEED_RESCHED or anything that normal interrupts and
1582 * exceptions might do.
1583 */
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001584 call paranoid_entry
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001585 DEFAULT_FRAME 0
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001586
1587 /*
1588 * Save off the CR2 register. If we take a page fault in the NMI then
1589 * it could corrupt the CR2 value. If the NMI preempts a page fault
1590 * handler before it was able to read the CR2 register, and then the
1591 * NMI itself takes a page fault, the page fault that was preempted
1592 * will read the information from the NMI page fault and not the
1593 * origin fault. Save it off and restore it if it changes.
1594 * Use the r12 callee-saved register.
1595 */
1596 movq %cr2, %r12
1597
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001598 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1599 movq %rsp,%rdi
1600 movq $-1,%rsi
1601 call do_nmi
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001602
1603 /* Did the NMI take a page fault? Restore cr2 if it did */
1604 movq %cr2, %rcx
1605 cmpq %rcx, %r12
1606 je 1f
1607 movq %r12, %cr2
16081:
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001609 testl %ebx,%ebx /* swapgs needed? */
1610 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001611nmi_swapgs:
1612 SWAPGS_UNSAFE_STACK
1613nmi_restore:
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001614 RESTORE_EXTRA_REGS
1615 RESTORE_C_REGS
Jan Beulich444723d2013-01-24 09:27:31 +00001616 /* Pop the extra iret frame at once */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001617 REMOVE_PT_GPREGS_FROM_STACK 6*8
Salman Qazi28696f42012-10-01 17:29:25 -07001618
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001619 /* Clear the NMI executing stack variable */
Salman Qazi28696f42012-10-01 17:29:25 -07001620 movq $0, 5*8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001621 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001622 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001623END(nmi)
1624
1625ENTRY(ignore_sysret)
1626 CFI_STARTPROC
1627 mov $-ENOSYS,%eax
1628 sysret
1629 CFI_ENDPROC
1630END(ignore_sysret)
1631