blob: 12aea85fe738bf3fab7a58f670a2eb4ddbdb3ec6 [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.
Andy Lutomirski61f01dd2015-04-26 16:47:59 -0700298 *
299 * NB: On AMD CPUs with the X86_BUG_SYSRET_SS_ATTRS bug, the ss
300 * descriptor is not reinitialized. This means that we should
301 * avoid SYSRET with SS == NULL, which could happen if we schedule,
302 * exit the kernel, and re-enter using an interrupt vector. (All
303 * interrupt entries on x86_64 set SS to NULL.) We prevent that
304 * from happening by reloading SS in __switch_to. (Actually
305 * detecting the failure in 64-bit userspace is tricky but can be
306 * done.)
Denys Vlasenkob87cf632015-02-26 14:40:32 -0800307 */
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400308 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Jan Beulichbcddc012006-12-07 02:14:02 +0100310 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100312 /* Do syscall entry tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100313tracesys:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800314 movq %rsp, %rdi
Denys Vlasenko47eb5822015-03-25 18:18:15 +0100315 movl $AUDIT_ARCH_X86_64, %esi
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700316 call syscall_trace_enter_phase1
317 test %rax, %rax
318 jnz tracesys_phase2 /* if needed, run the slow path */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800319 RESTORE_C_REGS_EXCEPT_RAX /* else restore clobbered regs */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800320 movq ORIG_RAX(%rsp), %rax
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700321 jmp system_call_fastpath /* and return to the fast path */
322
323tracesys_phase2:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800324 SAVE_EXTRA_REGS
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700325 movq %rsp, %rdi
Denys Vlasenko47eb5822015-03-25 18:18:15 +0100326 movl $AUDIT_ARCH_X86_64, %esi
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700327 movq %rax,%rdx
328 call syscall_trace_enter_phase2
329
Roland McGrathd4d67152008-07-09 02:38:07 -0700330 /*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800331 * Reload registers from stack in case ptrace changed them.
Andy Lutomirski1dcf74f2014-09-05 15:13:56 -0700332 * We don't reload %rax because syscall_trace_entry_phase2() returned
Roland McGrathd4d67152008-07-09 02:38:07 -0700333 * the value it wants us to use in the table lookup.
334 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800335 RESTORE_C_REGS_EXCEPT_RAX
336 RESTORE_EXTRA_REGS
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800337#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800339#else
340 andl $__SYSCALL_MASK,%eax
341 cmpl $__NR_syscall_max,%eax
342#endif
Denys Vlasenkoa6de5a22015-03-31 19:00:11 +0200343 ja 1f /* return -ENOSYS (already in pt_regs->ax) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 movq %r10,%rcx /* fixup for C */
345 call *sys_call_table(,%rax,8)
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800346 movq %rax,RAX(%rsp)
Denys Vlasenkoa6de5a22015-03-31 19:00:11 +02003471:
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100348 /* Use IRET because user could have changed pt_regs->foo */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100349
350/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 * Syscall return path ending with IRET.
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100352 * Has correct iret frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100353 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300354GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100355 DISABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko4416c5a2015-03-31 19:00:03 +0200356int_ret_from_sys_call_irqs_off: /* jumps come here from the irqs-off SYSRET path */
Ingo Molnar2601e642006-07-03 00:24:45 -0700357 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 movl $_TIF_ALLWORK_MASK,%edi
359 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300360GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200361 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300363 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 andl %edi,%edx
365 jnz int_careful
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200366 andl $~TS_COMPAT,TI_status(%rcx)
367 jmp syscall_return
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 /* Either reschedule or signal or syscall exit tracking needed. */
370 /* First do a reschedule test. */
371 /* edx: work, edi: workmask */
372int_careful:
373 bt $TIF_NEED_RESCHED,%edx
374 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700375 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100376 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100377 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200378 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100379 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100380 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700381 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 jmp int_with_check
383
Ingo Molnar7fcb3bc2015-03-17 14:42:59 +0100384 /* handle signals and tracing -- both require a full pt_regs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700386 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100387 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800388 SAVE_EXTRA_REGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100389 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700390 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100392 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100393 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100395 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700396 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100400 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 jz 1f
402 movq %rsp,%rdi # &ptregs -> arg1
403 xorl %esi,%esi # oldset -> arg2
404 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07004051: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406int_restore_rest:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800407 RESTORE_EXTRA_REGS
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100408 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700409 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 jmp int_with_check
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200411
412syscall_return:
413 /* The IRETQ could re-enable interrupts: */
414 DISABLE_INTERRUPTS(CLBR_ANY)
415 TRACE_IRQS_IRETQ
416
417 /*
418 * Try to use SYSRET instead of IRET if we're returning to
419 * a completely clean 64-bit userspace context.
420 */
421 movq RCX(%rsp),%rcx
422 cmpq %rcx,RIP(%rsp) /* RCX == RIP */
423 jne opportunistic_sysret_failed
424
425 /*
426 * On Intel CPUs, SYSRET with non-canonical RCX/RIP will #GP
427 * in kernel space. This essentially lets the user take over
428 * the kernel, since userspace controls RSP. It's not worth
429 * testing for canonicalness exactly -- this check detects any
430 * of the 17 high bits set, which is true for non-canonical
431 * or kernel addresses. (This will pessimize vsyscall=native.
432 * Big deal.)
433 *
434 * If virtual addresses ever become wider, this will need
435 * to be updated to remain correct on both old and new CPUs.
436 */
437 .ifne __VIRTUAL_MASK_SHIFT - 47
438 .error "virtual address width changed -- SYSRET checks need update"
439 .endif
440 shr $__VIRTUAL_MASK_SHIFT, %rcx
441 jnz opportunistic_sysret_failed
442
443 cmpq $__USER_CS,CS(%rsp) /* CS must match SYSRET */
444 jne opportunistic_sysret_failed
445
446 movq R11(%rsp),%r11
447 cmpq %r11,EFLAGS(%rsp) /* R11 == RFLAGS */
448 jne opportunistic_sysret_failed
449
450 /*
451 * SYSRET can't restore RF. SYSRET can restore TF, but unlike IRET,
452 * restoring TF results in a trap from userspace immediately after
453 * SYSRET. This would cause an infinite loop whenever #DB happens
454 * with register state that satisfies the opportunistic SYSRET
455 * conditions. For example, single-stepping this user code:
456 *
457 * movq $stuck_here,%rcx
458 * pushfq
459 * popq %r11
460 * stuck_here:
461 *
462 * would never get past 'stuck_here'.
463 */
464 testq $(X86_EFLAGS_RF|X86_EFLAGS_TF), %r11
465 jnz opportunistic_sysret_failed
466
467 /* nothing to check for RSP */
468
469 cmpq $__USER_DS,SS(%rsp) /* SS must match SYSRET */
470 jne opportunistic_sysret_failed
471
472 /*
473 * We win! This label is here just for ease of understanding
474 * perf profiles. Nothing jumps here.
475 */
476syscall_return_via_sysret:
477 CFI_REMEMBER_STATE
478 /* r11 is already restored (see code above) */
479 RESTORE_C_REGS_EXCEPT_R11
480 movq RSP(%rsp),%rsp
481 USERGS_SYSRET64
482 CFI_RESTORE_STATE
483
484opportunistic_sysret_failed:
485 SWAPGS
486 jmp restore_c_regs_and_iret
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100488END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100489
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200490
Al Viro1d4b4b22012-10-22 22:34:11 -0400491 .macro FORK_LIKE func
492ENTRY(stub_\func)
493 CFI_STARTPROC
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800494 DEFAULT_FRAME 0, 8 /* offset 8: return address */
495 SAVE_EXTRA_REGS 8
Denys Vlasenko772951c2015-04-07 22:43:40 +0200496 jmp sys_\func
Al Viro1d4b4b22012-10-22 22:34:11 -0400497 CFI_ENDPROC
498END(stub_\func)
499 .endm
500
501 FORK_LIKE clone
502 FORK_LIKE fork
503 FORK_LIKE vfork
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505ENTRY(stub_execve)
506 CFI_STARTPROC
Denys Vlasenkofc3e9582015-04-04 20:55:19 +0200507 DEFAULT_FRAME 0, 8
508 call sys_execve
509return_from_execve:
510 testl %eax, %eax
511 jz 1f
512 /* exec failed, can use fast SYSRET code path in this case */
513 ret
5141:
515 /* must use IRET code path (pt_regs->cs may have changed) */
516 addq $8, %rsp
Denys Vlasenko8b3607b52015-04-07 18:42:47 +0200517 CFI_ADJUST_CFA_OFFSET -8
Denys Vlasenkofc3e9582015-04-04 20:55:19 +0200518 ZERO_EXTRA_REGS
519 movq %rax,RAX(%rsp)
520 jmp int_ret_from_sys_call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200522END(stub_execve)
Denys Vlasenkoa37f34a2015-04-07 22:43:44 +0200523/*
524 * Remaining execve stubs are only 7 bytes long.
525 * ENTRY() often aligns to 16 bytes, which in this case has no benefits.
526 */
527 .align 8
528GLOBAL(stub_execveat)
David Drysdale27d6ec72014-12-12 16:57:33 -0800529 CFI_STARTPROC
Denys Vlasenkofc3e9582015-04-04 20:55:19 +0200530 DEFAULT_FRAME 0, 8
531 call sys_execveat
532 jmp return_from_execve
David Drysdale27d6ec72014-12-12 16:57:33 -0800533 CFI_ENDPROC
534END(stub_execveat)
535
Denys Vlasenko05f17522015-04-07 22:43:38 +0200536#ifdef CONFIG_X86_X32_ABI
Denys Vlasenkoa37f34a2015-04-07 22:43:44 +0200537 .align 8
538GLOBAL(stub_x32_execve)
Denys Vlasenko05f17522015-04-07 22:43:38 +0200539 CFI_STARTPROC
540 DEFAULT_FRAME 0, 8
541 call compat_sys_execve
542 jmp return_from_execve
543 CFI_ENDPROC
544END(stub_x32_execve)
Denys Vlasenkoa37f34a2015-04-07 22:43:44 +0200545 .align 8
546GLOBAL(stub_x32_execveat)
Denys Vlasenko05f17522015-04-07 22:43:38 +0200547 CFI_STARTPROC
548 DEFAULT_FRAME 0, 8
549 call compat_sys_execveat
550 jmp return_from_execve
551 CFI_ENDPROC
552END(stub_x32_execveat)
553#endif
554
Denys Vlasenko0f90fb92015-04-07 22:43:39 +0200555#ifdef CONFIG_IA32_EMULATION
Denys Vlasenkoa37f34a2015-04-07 22:43:44 +0200556 .align 8
557GLOBAL(stub32_execve)
Denys Vlasenko0f90fb92015-04-07 22:43:39 +0200558 CFI_STARTPROC
559 call compat_sys_execve
560 jmp return_from_execve
561 CFI_ENDPROC
562END(stub32_execve)
Denys Vlasenkoa37f34a2015-04-07 22:43:44 +0200563 .align 8
564GLOBAL(stub32_execveat)
Denys Vlasenko0f90fb92015-04-07 22:43:39 +0200565 CFI_STARTPROC
566 call compat_sys_execveat
567 jmp return_from_execve
568 CFI_ENDPROC
569END(stub32_execveat)
570#endif
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572/*
573 * sigreturn is special because it needs to restore all registers on return.
574 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100575 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576ENTRY(stub_rt_sigreturn)
577 CFI_STARTPROC
Denys Vlasenko31f01192015-04-07 22:43:37 +0200578 DEFAULT_FRAME 0, 8
579 /*
580 * SAVE_EXTRA_REGS result is not normally needed:
581 * sigreturn overwrites all pt_regs->GPREGS.
582 * But sigreturn can fail (!), and there is no easy way to detect that.
583 * To make sure RESTORE_EXTRA_REGS doesn't restore garbage on error,
584 * we SAVE_EXTRA_REGS here.
585 */
586 SAVE_EXTRA_REGS 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 call sys_rt_sigreturn
Denys Vlasenko31f01192015-04-07 22:43:37 +0200588return_from_stub:
589 addq $8, %rsp
590 CFI_ADJUST_CFA_OFFSET -8
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800591 RESTORE_EXTRA_REGS
Denys Vlasenko31f01192015-04-07 22:43:37 +0200592 movq %rax,RAX(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 jmp int_ret_from_sys_call
594 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200595END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800597#ifdef CONFIG_X86_X32_ABI
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800598ENTRY(stub_x32_rt_sigreturn)
599 CFI_STARTPROC
Denys Vlasenko31f01192015-04-07 22:43:37 +0200600 DEFAULT_FRAME 0, 8
601 SAVE_EXTRA_REGS 8
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800602 call sys32_x32_rt_sigreturn
Denys Vlasenko31f01192015-04-07 22:43:37 +0200603 jmp return_from_stub
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800604 CFI_ENDPROC
605END(stub_x32_rt_sigreturn)
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800606#endif
607
Jan Beulich7effaa82005-09-12 18:49:24 +0200608/*
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800609 * A newly forked process directly context switches into this address.
610 *
611 * rdi: prev task we switched from
612 */
613ENTRY(ret_from_fork)
614 DEFAULT_FRAME
615
616 LOCK ; btr $TIF_FORK,TI_flags(%r8)
617
618 pushq_cfi $0x0002
619 popfq_cfi # reset kernel eflags
620
621 call schedule_tail # rdi: 'prev' task parameter
622
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800623 RESTORE_EXTRA_REGS
624
625 testl $3,CS(%rsp) # from kernel_thread?
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800626
Andy Lutomirski1e3fbb82015-02-26 14:40:39 -0800627 /*
628 * By the time we get here, we have no idea whether our pt_regs,
629 * ti flags, and ti status came from the 64-bit SYSCALL fast path,
630 * the slow path, or one of the ia32entry paths.
Denys Vlasenko66ad4ef2015-04-07 22:43:42 +0200631 * Use IRET code path to return, since it can safely handle
Andy Lutomirski1e3fbb82015-02-26 14:40:39 -0800632 * all of the above.
633 */
Denys Vlasenko66ad4ef2015-04-07 22:43:42 +0200634 jnz int_ret_from_sys_call
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800635
Denys Vlasenko66ad4ef2015-04-07 22:43:42 +0200636 /* We came from kernel_thread */
637 /* nb: we depend on RESTORE_EXTRA_REGS above */
Denys Vlasenko1eeb2072015-02-26 14:40:33 -0800638 movq %rbp, %rdi
639 call *%rbx
640 movl $0, RAX(%rsp)
641 RESTORE_EXTRA_REGS
642 jmp int_ret_from_sys_call
643 CFI_ENDPROC
644END(ret_from_fork)
645
646/*
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200647 * Build the entry stubs with some assembler magic.
648 * We pack 1 stub into every 8-byte block.
H. Peter Anvin939b7872008-11-11 13:51:52 -0800649 */
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200650 .align 8
H. Peter Anvin939b7872008-11-11 13:51:52 -0800651ENTRY(irq_entries_start)
652 INTR_FRAME
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200653 vector=FIRST_EXTERNAL_VECTOR
654 .rept (FIRST_SYSTEM_VECTOR - FIRST_EXTERNAL_VECTOR)
655 pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
656 vector=vector+1
657 jmp common_interrupt
H. Peter Anvin939b7872008-11-11 13:51:52 -0800658 CFI_ADJUST_CFA_OFFSET -8
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200659 .align 8
660 .endr
H. Peter Anvin939b7872008-11-11 13:51:52 -0800661 CFI_ENDPROC
662END(irq_entries_start)
663
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100664/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 * Interrupt entry/exit.
666 *
667 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100668 *
669 * Entry runs with interrupts off.
670 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100672/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 .macro interrupt func
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100674 cld
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800675 /*
676 * Since nothing in interrupt handling code touches r12...r15 members
677 * of "struct pt_regs", and since interrupts can nest, we can save
678 * four stack slots and simultaneously provide
679 * an unwind-friendly stack layout by saving "truncated" pt_regs
680 * exactly up to rbp slot, without these members.
681 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800682 ALLOC_PT_GPREGS_ON_STACK -RBP
683 SAVE_C_REGS -RBP
684 /* this goes to 0(%rsp) for unwinder, not for saving the value: */
685 SAVE_EXTRA_REGS_RBP -RBP
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100686
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800687 leaq -RBP(%rsp),%rdi /* arg1 for \func (pointer to pt_regs) */
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100688
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800689 testl $3, CS-RBP(%rsp)
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100690 je 1f
691 SWAPGS
Denys Vlasenko76f5df42015-02-26 14:40:27 -08006921:
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100693 /*
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800694 * Save previous stack pointer, optionally switch to interrupt stack.
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100695 * irq_count is used to check if a CPU is already on an interrupt stack
696 * or not. While this is essentially redundant with preempt_count it is
697 * a little cheaper to use a separate counter in the PDA (short of
698 * moving irq_enter into assembly, which would be too much work)
699 */
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800700 movq %rsp, %rsi
701 incl PER_CPU_VAR(irq_count)
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100702 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
703 CFI_DEF_CFA_REGISTER rsi
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100704 pushq %rsi
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800705 /*
706 * For debugger:
707 * "CFA (Current Frame Address) is the value on stack + offset"
708 */
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100709 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800710 0x77 /* DW_OP_breg7 (rsp) */, 0, \
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100711 0x06 /* DW_OP_deref */, \
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800712 0x08 /* DW_OP_const1u */, SIZEOF_PTREGS-RBP, \
Denys Vlasenkof6f64682015-01-08 17:25:15 +0100713 0x22 /* DW_OP_plus */
714 /* We entered an interrupt context - irqs are off: */
715 TRACE_IRQS_OFF
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 call \func
718 .endm
719
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100720 /*
721 * The interrupt stubs push (~vector+0x80) onto the stack and
722 * then jump to common_interrupt.
723 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800724 .p2align CONFIG_X86_L1_CACHE_SHIFT
725common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200726 XCPT_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000727 ASM_CLAC
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100728 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 interrupt do_IRQ
Denys Vlasenko34061f12015-03-23 14:03:59 +0100730 /* 0(%rsp): old RSP */
Jan Beulich7effaa82005-09-12 18:49:24 +0200731ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100732 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700733 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900734 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100735
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200736 /* Restore saved previous stack */
737 popq %rsi
Denys Vlasenko911d2bb2015-02-26 14:40:36 -0800738 CFI_DEF_CFA rsi,SIZEOF_PTREGS-RBP /* reg/off reset after def_cfa_expr */
Denys Vlasenkoe90e1472015-02-26 14:40:28 -0800739 /* return code expects complete pt_regs - adjust rsp accordingly: */
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800740 leaq -RBP(%rsi),%rsp
Jan Beulich7effaa82005-09-12 18:49:24 +0200741 CFI_DEF_CFA_REGISTER rsp
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800742 CFI_ADJUST_CFA_OFFSET RBP
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100743
Denys Vlasenkof2db9382015-02-26 14:40:30 -0800744 testl $3,CS(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 je retint_kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 /* Interrupt came from user space */
Denys Vlasenkoa3675b32015-03-30 20:09:34 +0200747
748 GET_THREAD_INFO(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100751 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752retint_with_reschedule:
753 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200754retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200755 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300756 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200758 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200760
761retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700762 /*
763 * The iretq could re-enable interrupts:
764 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100765 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700766 TRACE_IRQS_IRETQ
Andy Lutomirski2a23c6b2014-07-22 12:46:50 -0700767
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100768 SWAPGS
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200769 jmp restore_c_regs_and_iret
Ingo Molnar2601e642006-07-03 00:24:45 -0700770
Denys Vlasenko627276c2015-03-30 20:09:31 +0200771/* Returning to kernel space */
Denys Vlasenko6ba71b72015-03-31 19:00:05 +0200772retint_kernel:
Denys Vlasenko627276c2015-03-30 20:09:31 +0200773#ifdef CONFIG_PREEMPT
774 /* Interrupts are off */
775 /* Check if we need preemption */
Denys Vlasenko627276c2015-03-30 20:09:31 +0200776 bt $9,EFLAGS(%rsp) /* interrupts were off? */
Denys Vlasenko6ba71b72015-03-31 19:00:05 +0200777 jnc 1f
Denys Vlasenko36acef22015-03-31 19:00:07 +02007780: cmpl $0,PER_CPU_VAR(__preempt_count)
779 jnz 1f
Denys Vlasenko627276c2015-03-30 20:09:31 +0200780 call preempt_schedule_irq
Denys Vlasenko36acef22015-03-31 19:00:07 +0200781 jmp 0b
Denys Vlasenko6ba71b72015-03-31 19:00:05 +02007821:
Denys Vlasenko627276c2015-03-30 20:09:31 +0200783#endif
Ingo Molnar2601e642006-07-03 00:24:45 -0700784 /*
785 * The iretq could re-enable interrupts:
786 */
787 TRACE_IRQS_IRETQ
Denys Vlasenkofffbb5d2015-04-02 18:46:59 +0200788
789/*
790 * At this label, code paths which return to kernel and to user,
791 * which come from interrupts/exception and from syscalls, merge.
792 */
793restore_c_regs_and_iret:
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800794 RESTORE_C_REGS
795 REMOVE_PT_GPREGS_FROM_STACK 8
Ingo Molnar3701d8632008-02-09 23:24:08 +0100796
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200797irq_return:
Andy Lutomirski7209a752014-07-23 08:34:11 -0700798 INTERRUPT_RETURN
799
800ENTRY(native_iret)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700801 /*
802 * Are we returning to a stack segment from the LDT? Note: in
803 * 64-bit mode SS:RSP on the exception stack is always valid.
804 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700805#ifdef CONFIG_X86_ESPFIX64
H. Peter Anvin3891a042014-04-29 16:46:09 -0700806 testb $4,(SS-RIP)(%rsp)
Andy Lutomirski7209a752014-07-23 08:34:11 -0700807 jnz native_irq_return_ldt
H. Peter Anvin34273f42014-05-04 10:36:22 -0700808#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700809
Andy Lutomirskiaf726f22014-11-22 18:00:31 -0800810.global native_irq_return_iret
Andy Lutomirski7209a752014-07-23 08:34:11 -0700811native_irq_return_iret:
Andy Lutomirskib645af22014-11-22 18:00:33 -0800812 /*
813 * This may fault. Non-paranoid faults on return to userspace are
814 * handled by fixup_bad_iret. These include #SS, #GP, and #NP.
815 * Double-faults due to espfix64 are handled in do_double_fault.
816 * Other faults here are fatal.
817 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 iretq
Ingo Molnar3701d8632008-02-09 23:24:08 +0100819
H. Peter Anvin34273f42014-05-04 10:36:22 -0700820#ifdef CONFIG_X86_ESPFIX64
Andy Lutomirski7209a752014-07-23 08:34:11 -0700821native_irq_return_ldt:
H. Peter Anvin3891a042014-04-29 16:46:09 -0700822 pushq_cfi %rax
823 pushq_cfi %rdi
824 SWAPGS
825 movq PER_CPU_VAR(espfix_waddr),%rdi
826 movq %rax,(0*8)(%rdi) /* RAX */
827 movq (2*8)(%rsp),%rax /* RIP */
828 movq %rax,(1*8)(%rdi)
829 movq (3*8)(%rsp),%rax /* CS */
830 movq %rax,(2*8)(%rdi)
831 movq (4*8)(%rsp),%rax /* RFLAGS */
832 movq %rax,(3*8)(%rdi)
833 movq (6*8)(%rsp),%rax /* SS */
834 movq %rax,(5*8)(%rdi)
835 movq (5*8)(%rsp),%rax /* RSP */
836 movq %rax,(4*8)(%rdi)
837 andl $0xffff0000,%eax
838 popq_cfi %rdi
839 orq PER_CPU_VAR(espfix_stack),%rax
840 SWAPGS
841 movq %rax,%rsp
842 popq_cfi %rax
Andy Lutomirski7209a752014-07-23 08:34:11 -0700843 jmp native_irq_return_iret
H. Peter Anvin34273f42014-05-04 10:36:22 -0700844#endif
H. Peter Anvin3891a042014-04-29 16:46:09 -0700845
Jan Beulich7effaa82005-09-12 18:49:24 +0200846 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200848 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 bt $TIF_NEED_RESCHED,%edx
850 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700851 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100852 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100853 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200854 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100855 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100857 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700858 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100862 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700863 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700864 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100865 ENABLE_INTERRUPTS(CLBR_NONE)
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800866 SAVE_EXTRA_REGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100867 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700868 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 movq %rsp,%rdi # &pt_regs
870 call do_notify_resume
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800871 RESTORE_EXTRA_REGS
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100872 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700873 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -0700874 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -0700875 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200878END(common_interrupt)
H. Peter Anvin3891a042014-04-29 16:46:09 -0700879
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400880/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100882 */
Seiji Aguchicf910e82013-06-20 11:46:53 -0400883.macro apicinterrupt3 num sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100884ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +0200885 INTR_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +0000886 ASM_CLAC
Jan Beulichdf5d1872010-09-02 14:07:16 +0100887 pushq_cfi $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +0000888.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100889 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 jmp ret_from_intr
891 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100892END(\sym)
893.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100894
Seiji Aguchicf910e82013-06-20 11:46:53 -0400895#ifdef CONFIG_TRACING
896#define trace(sym) trace_##sym
897#define smp_trace(sym) smp_trace_##sym
898
899.macro trace_apicinterrupt num sym
900apicinterrupt3 \num trace(\sym) smp_trace(\sym)
901.endm
902#else
903.macro trace_apicinterrupt num sym do_sym
904.endm
905#endif
906
907.macro apicinterrupt num sym do_sym
908apicinterrupt3 \num \sym \do_sym
909trace_apicinterrupt \num \sym
910.endm
911
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100912#ifdef CONFIG_SMP
Seiji Aguchicf910e82013-06-20 11:46:53 -0400913apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100914 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Seiji Aguchicf910e82013-06-20 11:46:53 -0400915apicinterrupt3 REBOOT_VECTOR \
Andi Kleen4ef702c2009-05-27 21:56:52 +0200916 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917#endif
918
Nick Piggin03b48632009-01-20 04:36:04 +0100919#ifdef CONFIG_X86_UV
Seiji Aguchicf910e82013-06-20 11:46:53 -0400920apicinterrupt3 UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100921 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100922#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100923apicinterrupt LOCAL_TIMER_VECTOR \
924 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500925apicinterrupt X86_PLATFORM_IPI_VECTOR \
926 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Yang Zhangd78f2662013-04-11 19:25:11 +0800928#ifdef CONFIG_HAVE_KVM
Seiji Aguchicf910e82013-06-20 11:46:53 -0400929apicinterrupt3 POSTED_INTR_VECTOR \
Yang Zhangd78f2662013-04-11 19:25:11 +0800930 kvm_posted_intr_ipi smp_kvm_posted_intr_ipi
931#endif
932
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400933#ifdef CONFIG_X86_MCE_THRESHOLD
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100934apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +0200935 threshold_interrupt smp_threshold_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400936#endif
937
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500938#ifdef CONFIG_X86_MCE_AMD
939apicinterrupt DEFERRED_ERROR_VECTOR \
940 deferred_error_interrupt smp_deferred_error_interrupt
941#endif
942
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400943#ifdef CONFIG_X86_THERMAL_VECTOR
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100944apicinterrupt THERMAL_APIC_VECTOR \
945 thermal_interrupt smp_thermal_interrupt
Seiji Aguchi33e5ff62013-06-22 07:33:30 -0400946#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100948#ifdef CONFIG_SMP
949apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
950 call_function_single_interrupt smp_call_function_single_interrupt
951apicinterrupt CALL_FUNCTION_VECTOR \
952 call_function_interrupt smp_call_function_interrupt
953apicinterrupt RESCHEDULE_VECTOR \
954 reschedule_interrupt smp_reschedule_interrupt
955#endif
956
957apicinterrupt ERROR_APIC_VECTOR \
958 error_interrupt smp_error_interrupt
959apicinterrupt SPURIOUS_APIC_VECTOR \
960 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100961
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800962#ifdef CONFIG_IRQ_WORK
963apicinterrupt IRQ_WORK_VECTOR \
964 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +0100965#endif
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967/*
968 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100969 */
Andy Lutomirski9b476682015-03-05 19:19:07 -0800970#define CPU_TSS_IST(x) PER_CPU_VAR(cpu_tss) + (TSS_ist + ((x) - 1) * 8)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700971
972.macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100973ENTRY(\sym)
Andy Lutomirski577ed452014-05-21 15:07:09 -0700974 /* Sanity check */
975 .if \shift_ist != -1 && \paranoid == 0
976 .error "using shift_ist requires paranoid=1"
977 .endif
978
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700979 .if \has_error_code
980 XCPT_FRAME
981 .else
Jan Beulich7effaa82005-09-12 18:49:24 +0200982 INTR_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700983 .endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Jan Beulichee4eb872012-11-02 11:18:39 +0000985 ASM_CLAC
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +0100986 PARAVIRT_ADJUST_EXCEPTION_FRAME
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700987
988 .ifeq \has_error_code
989 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
990 .endif
991
Denys Vlasenko76f5df42015-02-26 14:40:27 -0800992 ALLOC_PT_GPREGS_ON_STACK
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -0700993
994 .if \paranoid
Andy Lutomirski48e08d02014-11-11 12:49:41 -0800995 .if \paranoid == 1
996 CFI_REMEMBER_STATE
997 testl $3, CS(%rsp) /* If coming from userspace, switch */
998 jnz 1f /* stacks. */
999 .endif
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001000 call paranoid_entry
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001001 .else
1002 call error_entry
1003 .endif
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001004 /* returned flag: ebx=0: need swapgs on exit, ebx=1: don't need it */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001005
Andy Lutomirski1bd24ef2014-05-21 15:07:07 -07001006 DEFAULT_FRAME 0
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001007
1008 .if \paranoid
Andy Lutomirski577ed452014-05-21 15:07:09 -07001009 .if \shift_ist != -1
1010 TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */
1011 .else
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001012 TRACE_IRQS_OFF
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001013 .endif
Andy Lutomirski577ed452014-05-21 15:07:09 -07001014 .endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001015
1016 movq %rsp,%rdi /* pt_regs pointer */
1017
1018 .if \has_error_code
1019 movq ORIG_RAX(%rsp),%rsi /* get error code */
1020 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1021 .else
1022 xorl %esi,%esi /* no error code */
1023 .endif
1024
Andy Lutomirski577ed452014-05-21 15:07:09 -07001025 .if \shift_ist != -1
Andy Lutomirski9b476682015-03-05 19:19:07 -08001026 subq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001027 .endif
1028
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001029 call \do_sym
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001030
Andy Lutomirski577ed452014-05-21 15:07:09 -07001031 .if \shift_ist != -1
Andy Lutomirski9b476682015-03-05 19:19:07 -08001032 addq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
Andy Lutomirski577ed452014-05-21 15:07:09 -07001033 .endif
1034
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001035 /* these procedures expect "no swapgs" flag in ebx */
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001036 .if \paranoid
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001037 jmp paranoid_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001038 .else
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001039 jmp error_exit
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001040 .endif
1041
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001042 .if \paranoid == 1
1043 CFI_RESTORE_STATE
1044 /*
1045 * Paranoid entry from userspace. Switch stacks and treat it
1046 * as a normal entry. This means that paranoid handlers
1047 * run in real process context if user_mode(regs).
1048 */
10491:
1050 call error_entry
1051
1052 DEFAULT_FRAME 0
1053
1054 movq %rsp,%rdi /* pt_regs pointer */
1055 call sync_regs
1056 movq %rax,%rsp /* switch stack */
1057
1058 movq %rsp,%rdi /* pt_regs pointer */
1059
1060 .if \has_error_code
1061 movq ORIG_RAX(%rsp),%rsi /* get error code */
1062 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1063 .else
1064 xorl %esi,%esi /* no error code */
1065 .endif
1066
1067 call \do_sym
1068
1069 jmp error_exit /* %ebx: no swapgs flag */
1070 .endif
1071
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001072 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001073END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001074.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001075
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001076#ifdef CONFIG_TRACING
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001077.macro trace_idtentry sym do_sym has_error_code:req
1078idtentry trace(\sym) trace(\do_sym) has_error_code=\has_error_code
1079idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001080.endm
1081#else
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001082.macro trace_idtentry sym do_sym has_error_code:req
1083idtentry \sym \do_sym has_error_code=\has_error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001084.endm
1085#endif
1086
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001087idtentry divide_error do_divide_error has_error_code=0
1088idtentry overflow do_overflow has_error_code=0
1089idtentry bounds do_bounds has_error_code=0
1090idtentry invalid_op do_invalid_op has_error_code=0
1091idtentry device_not_available do_device_not_available has_error_code=0
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001092idtentry double_fault do_double_fault has_error_code=1 paranoid=2
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001093idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0
1094idtentry invalid_TSS do_invalid_TSS has_error_code=1
1095idtentry segment_not_present do_segment_not_present has_error_code=1
1096idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0
1097idtentry coprocessor_error do_coprocessor_error has_error_code=0
1098idtentry alignment_check do_alignment_check has_error_code=1
1099idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001100
Ingo Molnar2601e642006-07-03 00:24:45 -07001101
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001102 /* Reload gs selector with exception handling */
1103 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001104ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001105 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001106 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001107 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001108 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001109gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001110 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070011112: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001112 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001113 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001114 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001115 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001116END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001117
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001118 _ASM_EXTABLE(gs_change,bad_gs)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001119 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001121bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001122 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001124 movl %eax,%gs
1125 jmp 2b
1126 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001127
Andi Kleen26995002006-08-02 22:37:28 +02001128/* Call softirq on interrupt stack. Interrupts are off. */
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001129ENTRY(do_softirq_own_stack)
Jan Beulich7effaa82005-09-12 18:49:24 +02001130 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001131 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001132 CFI_REL_OFFSET rbp,0
1133 mov %rsp,%rbp
1134 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001135 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001136 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001137 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001138 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001139 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001140 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001141 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001142 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001143 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001144 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001145 CFI_ENDPROC
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +02001146END(do_softirq_own_stack)
Andi Kleen75154f42007-06-23 02:29:25 +02001147
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001148#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001149idtentry xen_hypervisor_callback xen_do_hypervisor_callback has_error_code=0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001150
1151/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001152 * A note on the "critical region" in our callback handler.
1153 * We want to avoid stacking callback handlers due to events occurring
1154 * during handling of the last event. To do this, we keep events disabled
1155 * until we've done all processing. HOWEVER, we must enable events before
1156 * popping the stack frame (can't be done atomically) and so it would still
1157 * be possible to get enough handler activations to overflow the stack.
1158 * Although unlikely, bugs of that kind are hard to track down, so we'd
1159 * like to avoid the possibility.
1160 * So, on entry to the handler we detect whether we interrupted an
1161 * existing activation in its critical region -- if so, we pop the current
1162 * activation and restart the handler using the previous one.
1163 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001164ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1165 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001166/*
1167 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1168 * see the correct pointer to the pt_regs
1169 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001170 movq %rdi, %rsp # we don't return, adjust the stack frame
1171 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001172 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900117311: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001174 movq %rsp,%rbp
1175 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001176 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001177 pushq %rbp # backlink for old unwinder
1178 call xen_evtchn_do_upcall
1179 popq %rsp
1180 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001181 decl PER_CPU_VAR(irq_count)
David Vrabelfdfd8112015-02-19 15:23:17 +00001182#ifndef CONFIG_PREEMPT
1183 call xen_maybe_preempt_hcall
1184#endif
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001185 jmp error_exit
1186 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001187END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001188
1189/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001190 * Hypervisor uses this for application faults while it executes.
1191 * We get here for two reasons:
1192 * 1. Fault while reloading DS, ES, FS or GS
1193 * 2. Fault while executing IRET
1194 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1195 * registers that could be reloaded and zeroed the others.
1196 * Category 2 we fix up by killing the current process. We cannot use the
1197 * normal Linux return path in this case because if we use the IRET hypercall
1198 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1199 * We distinguish between categories by comparing each saved segment register
1200 * with its current contents: any discrepancy means we in category 1.
1201 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001202ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001203 INTR_FRAME 1 (6*8)
1204 /*CFI_REL_OFFSET gs,GS*/
1205 /*CFI_REL_OFFSET fs,FS*/
1206 /*CFI_REL_OFFSET es,ES*/
1207 /*CFI_REL_OFFSET ds,DS*/
1208 CFI_REL_OFFSET r11,8
1209 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001210 movw %ds,%cx
1211 cmpw %cx,0x10(%rsp)
1212 CFI_REMEMBER_STATE
1213 jne 1f
1214 movw %es,%cx
1215 cmpw %cx,0x18(%rsp)
1216 jne 1f
1217 movw %fs,%cx
1218 cmpw %cx,0x20(%rsp)
1219 jne 1f
1220 movw %gs,%cx
1221 cmpw %cx,0x28(%rsp)
1222 jne 1f
1223 /* All segments match their saved values => Category 2 (Bad IRET). */
1224 movq (%rsp),%rcx
1225 CFI_RESTORE rcx
1226 movq 8(%rsp),%r11
1227 CFI_RESTORE r11
1228 addq $0x30,%rsp
1229 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001230 pushq_cfi $0 /* RIP */
1231 pushq_cfi %r11
1232 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001233 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001234 CFI_RESTORE_STATE
12351: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1236 movq (%rsp),%rcx
1237 CFI_RESTORE rcx
1238 movq 8(%rsp),%r11
1239 CFI_RESTORE r11
1240 addq $0x30,%rsp
1241 CFI_ADJUST_CFA_OFFSET -0x30
David Vrabela349e23d12012-10-19 17:29:07 +01001242 pushq_cfi $-1 /* orig_ax = -1 => not a system call */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001243 ALLOC_PT_GPREGS_ON_STACK
1244 SAVE_C_REGS
1245 SAVE_EXTRA_REGS
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001246 jmp error_exit
1247 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001248END(xen_failsafe_callback)
1249
Seiji Aguchicf910e82013-06-20 11:46:53 -04001250apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
Sheng Yang38e20b02010-05-14 12:40:51 +01001251 xen_hvm_callback_vector xen_evtchn_do_upcall
1252
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001253#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001254
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001255#if IS_ENABLED(CONFIG_HYPERV)
Seiji Aguchicf910e82013-06-20 11:46:53 -04001256apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001257 hyperv_callback_vector hyperv_vector_handler
1258#endif /* CONFIG_HYPERV */
1259
Andy Lutomirski577ed452014-05-21 15:07:09 -07001260idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1261idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
Andy Lutomirski6f442be2014-11-22 18:00:32 -08001262idtentry stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001263#ifdef CONFIG_XEN
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001264idtentry xen_debug do_debug has_error_code=0
1265idtentry xen_int3 do_int3 has_error_code=0
1266idtentry xen_stack_segment do_stack_segment has_error_code=1
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001267#endif
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001268idtentry general_protection do_general_protection has_error_code=1
1269trace_idtentry page_fault do_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001270#ifdef CONFIG_KVM_GUEST
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001271idtentry async_page_fault do_async_page_fault has_error_code=1
Gleb Natapov631bc482010-10-14 11:22:52 +02001272#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001273#ifdef CONFIG_X86_MCE
Andy Lutomirskicb5dd2c2014-05-21 15:07:08 -07001274idtentry machine_check has_error_code=0 paranoid=1 do_sym=*machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001275#endif
1276
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001277/*
1278 * Save all registers in pt_regs, and switch gs if needed.
1279 * Use slow, but surefire "are we in kernel?" check.
1280 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
1281 */
1282ENTRY(paranoid_entry)
1283 XCPT_FRAME 1 15*8
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001284 cld
1285 SAVE_C_REGS 8
1286 SAVE_EXTRA_REGS 8
1287 movl $1,%ebx
1288 movl $MSR_GS_BASE,%ecx
1289 rdmsr
1290 testl %edx,%edx
1291 js 1f /* negative -> in kernel */
1292 SWAPGS
1293 xorl %ebx,%ebx
12941: ret
1295 CFI_ENDPROC
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001296END(paranoid_entry)
Denys Vlasenko1eeb2072015-02-26 14:40:33 -08001297
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001298/*
1299 * "Paranoid" exit path from exception stack. This is invoked
1300 * only on return from non-NMI IST interrupts that came
1301 * from kernel space.
1302 *
1303 * We may be returning to very strange contexts (e.g. very early
1304 * in syscall entry), so checking for preemption here would
1305 * be complicated. Fortunately, we there's no good reason
1306 * to try to handle preemption here.
1307 */
1308/* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001309ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001310 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001311 DISABLE_INTERRUPTS(CLBR_NONE)
Steven Rostedt5963e312012-05-30 11:54:53 -04001312 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001313 testl %ebx,%ebx /* swapgs needed? */
Denys Vlasenko0d550832015-02-26 14:40:29 -08001314 jnz paranoid_exit_no_swapgs
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001315 TRACE_IRQS_IRETQ
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001316 SWAPGS_UNSAFE_STACK
Denys Vlasenko0d550832015-02-26 14:40:29 -08001317 jmp paranoid_exit_restore
1318paranoid_exit_no_swapgs:
Denys Vlasenkof2db9382015-02-26 14:40:30 -08001319 TRACE_IRQS_IRETQ_DEBUG
Denys Vlasenko0d550832015-02-26 14:40:29 -08001320paranoid_exit_restore:
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001321 RESTORE_EXTRA_REGS
1322 RESTORE_C_REGS
1323 REMOVE_PT_GPREGS_FROM_STACK 8
Andy Lutomirski48e08d02014-11-11 12:49:41 -08001324 INTERRUPT_RETURN
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001325 CFI_ENDPROC
1326END(paranoid_exit)
1327
1328/*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001329 * Save all registers in pt_regs, and switch gs if needed.
1330 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001331 */
1332ENTRY(error_entry)
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001333 XCPT_FRAME 1 15*8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001334 cld
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001335 SAVE_C_REGS 8
1336 SAVE_EXTRA_REGS 8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001337 xorl %ebx,%ebx
1338 testl $3,CS+8(%rsp)
1339 je error_kernelspace
1340error_swapgs:
1341 SWAPGS
1342error_sti:
1343 TRACE_IRQS_OFF
1344 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001345
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001346 /*
1347 * There are two places in the kernel that can potentially fault with
1348 * usergs. Handle them here. B stepping K8s sometimes report a
1349 * truncated RIP for IRET exceptions returning to compat mode. Check
1350 * for these here too.
1351 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001352error_kernelspace:
Jan Beulich3bab13b2014-06-25 14:11:22 +01001353 CFI_REL_OFFSET rcx, RCX+8
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001354 incl %ebx
Andy Lutomirski7209a752014-07-23 08:34:11 -07001355 leaq native_irq_return_iret(%rip),%rcx
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001356 cmpq %rcx,RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001357 je error_bad_iret
Brian Gerstae24ffe2009-10-12 10:18:23 -04001358 movl %ecx,%eax /* zero extend */
1359 cmpq %rax,RIP+8(%rsp)
1360 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001361 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001362 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001363 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001364
1365bstep_iret:
1366 /* Fix truncated RIP */
1367 movq %rcx,RIP+8(%rsp)
Andy Lutomirskib645af22014-11-22 18:00:33 -08001368 /* fall through */
1369
1370error_bad_iret:
1371 SWAPGS
1372 mov %rsp,%rdi
1373 call fixup_bad_iret
1374 mov %rax,%rsp
1375 decl %ebx /* Return to usergs */
1376 jmp error_sti
Jan Beuliche6b04b62010-09-02 13:52:45 +01001377 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001378END(error_entry)
1379
1380
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001381/* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001382ENTRY(error_exit)
1383 DEFAULT_FRAME
1384 movl %ebx,%eax
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001385 RESTORE_EXTRA_REGS
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001386 DISABLE_INTERRUPTS(CLBR_NONE)
1387 TRACE_IRQS_OFF
1388 GET_THREAD_INFO(%rcx)
1389 testl %eax,%eax
1390 jne retint_kernel
1391 LOCKDEP_SYS_EXIT_IRQ
1392 movl TI_flags(%rcx),%edx
1393 movl $_TIF_WORK_MASK,%edi
1394 andl %edi,%edx
1395 jnz retint_careful
1396 jmp retint_swapgs
1397 CFI_ENDPROC
1398END(error_exit)
1399
Denys Vlasenko0784b362015-04-01 16:50:57 +02001400/* Runs on exception stack */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001401ENTRY(nmi)
1402 INTR_FRAME
1403 PARAVIRT_ADJUST_EXCEPTION_FRAME
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001404 /*
1405 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1406 * the iretq it performs will take us out of NMI context.
1407 * This means that we can have nested NMIs where the next
1408 * NMI is using the top of the stack of the previous NMI. We
1409 * can't let it execute because the nested NMI will corrupt the
1410 * stack of the previous NMI. NMI handlers are not re-entrant
1411 * anyway.
1412 *
1413 * To handle this case we do the following:
1414 * Check the a special location on the stack that contains
1415 * a variable that is set when NMIs are executing.
1416 * The interrupted task's stack is also checked to see if it
1417 * is an NMI stack.
1418 * If the variable is not set and the stack is not the NMI
1419 * stack then:
1420 * o Set the special variable on the stack
1421 * o Copy the interrupt frame into a "saved" location on the stack
1422 * o Copy the interrupt frame into a "copy" location on the stack
1423 * o Continue processing the NMI
1424 * If the variable is set or the previous stack is the NMI stack:
1425 * o Modify the "copy" location to jump to the repeate_nmi
1426 * o return back to the first NMI
1427 *
1428 * Now on exit of the first NMI, we first clear the stack variable
1429 * The NMI stack will tell any nested NMIs at that point that it is
1430 * nested. Then we pop the stack normally with iret, and if there was
1431 * a nested NMI that updated the copy interrupt stack frame, a
1432 * jump will be made to the repeat_nmi code that will handle the second
1433 * NMI.
1434 */
1435
Denys Vlasenko146b2b02015-03-25 18:18:13 +01001436 /* Use %rdx as our temp variable throughout */
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001437 pushq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001438 CFI_REL_OFFSET rdx, 0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001439
1440 /*
Steven Rostedt45d5a162012-02-19 16:43:37 -05001441 * If %cs was not the kernel segment, then the NMI triggered in user
1442 * space, which means it is definitely not nested.
1443 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001444 cmpl $__KERNEL_CS, 16(%rsp)
Steven Rostedt45d5a162012-02-19 16:43:37 -05001445 jne first_nmi
1446
1447 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001448 * Check the special variable on the stack to see if NMIs are
1449 * executing.
1450 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001451 cmpl $1, -8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001452 je nested_nmi
1453
1454 /*
1455 * Now test if the previous stack was an NMI stack.
1456 * We need the double check. We check the NMI stack to satisfy the
1457 * race when the first NMI clears the variable before returning.
1458 * We check the variable because the first NMI could be in a
1459 * breakpoint routine using a breakpoint stack.
1460 */
Denys Vlasenko0784b362015-04-01 16:50:57 +02001461 lea 6*8(%rsp), %rdx
1462 /* Compare the NMI stack (rdx) with the stack we came from (4*8(%rsp)) */
1463 cmpq %rdx, 4*8(%rsp)
1464 /* If the stack pointer is above the NMI stack, this is a normal NMI */
1465 ja first_nmi
1466 subq $EXCEPTION_STKSZ, %rdx
1467 cmpq %rdx, 4*8(%rsp)
1468 /* If it is below the NMI stack, it is a normal NMI */
1469 jb first_nmi
1470 /* Ah, it is within the NMI stack, treat it as nested */
Denys Vlasenko0784b362015-04-01 16:50:57 +02001471
Jan Beulich62610912012-02-24 14:54:37 +00001472 CFI_REMEMBER_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001473
1474nested_nmi:
1475 /*
1476 * Do nothing if we interrupted the fixup in repeat_nmi.
1477 * It's about to repeat the NMI handler, so we are fine
1478 * with ignoring this one.
1479 */
1480 movq $repeat_nmi, %rdx
1481 cmpq 8(%rsp), %rdx
1482 ja 1f
1483 movq $end_repeat_nmi, %rdx
1484 cmpq 8(%rsp), %rdx
1485 ja nested_nmi_out
1486
14871:
1488 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
Salman Qazi28696f42012-10-01 17:29:25 -07001489 leaq -1*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001490 movq %rdx, %rsp
Salman Qazi28696f42012-10-01 17:29:25 -07001491 CFI_ADJUST_CFA_OFFSET 1*8
1492 leaq -10*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001493 pushq_cfi $__KERNEL_DS
1494 pushq_cfi %rdx
1495 pushfq_cfi
1496 pushq_cfi $__KERNEL_CS
1497 pushq_cfi $repeat_nmi
1498
1499 /* Put stack back */
Salman Qazi28696f42012-10-01 17:29:25 -07001500 addq $(6*8), %rsp
1501 CFI_ADJUST_CFA_OFFSET -6*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001502
1503nested_nmi_out:
1504 popq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001505 CFI_RESTORE rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001506
1507 /* No need to check faults here */
1508 INTERRUPT_RETURN
1509
Jan Beulich62610912012-02-24 14:54:37 +00001510 CFI_RESTORE_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001511first_nmi:
1512 /*
1513 * Because nested NMIs will use the pushed location that we
1514 * stored in rdx, we must keep that space available.
1515 * Here's what our stack frame will look like:
1516 * +-------------------------+
1517 * | original SS |
1518 * | original Return RSP |
1519 * | original RFLAGS |
1520 * | original CS |
1521 * | original RIP |
1522 * +-------------------------+
1523 * | temp storage for rdx |
1524 * +-------------------------+
1525 * | NMI executing variable |
1526 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001527 * | copied SS |
1528 * | copied Return RSP |
1529 * | copied RFLAGS |
1530 * | copied CS |
1531 * | copied RIP |
1532 * +-------------------------+
Salman Qazi28696f42012-10-01 17:29:25 -07001533 * | Saved SS |
1534 * | Saved Return RSP |
1535 * | Saved RFLAGS |
1536 * | Saved CS |
1537 * | Saved RIP |
1538 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001539 * | pt_regs |
1540 * +-------------------------+
1541 *
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001542 * The saved stack frame is used to fix up the copied stack frame
1543 * that a nested NMI may change to make the interrupted NMI iret jump
1544 * to the repeat_nmi. The original stack frame and the temp storage
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001545 * is also used by nested NMIs and can not be trusted on exit.
1546 */
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001547 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
Jan Beulich62610912012-02-24 14:54:37 +00001548 movq (%rsp), %rdx
1549 CFI_RESTORE rdx
1550
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001551 /* Set the NMI executing variable on the stack. */
1552 pushq_cfi $1
1553
Salman Qazi28696f42012-10-01 17:29:25 -07001554 /*
1555 * Leave room for the "copied" frame
1556 */
1557 subq $(5*8), %rsp
Jan Beulich444723d2013-01-24 09:27:31 +00001558 CFI_ADJUST_CFA_OFFSET 5*8
Salman Qazi28696f42012-10-01 17:29:25 -07001559
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001560 /* Copy the stack frame to the Saved frame */
1561 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001562 pushq_cfi 11*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001563 .endr
Denys Vlasenko911d2bb2015-02-26 14:40:36 -08001564 CFI_DEF_CFA_OFFSET 5*8
Jan Beulich62610912012-02-24 14:54:37 +00001565
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001566 /* Everything up to here is safe from nested NMIs */
1567
Jan Beulich62610912012-02-24 14:54:37 +00001568 /*
1569 * If there was a nested NMI, the first NMI's iret will return
1570 * here. But NMIs are still enabled and we can take another
1571 * nested NMI. The nested NMI checks the interrupted RIP to see
1572 * if it is between repeat_nmi and end_repeat_nmi, and if so
1573 * it will just return, as we are about to repeat an NMI anyway.
1574 * This makes it safe to copy to the stack frame that a nested
1575 * NMI will update.
1576 */
1577repeat_nmi:
1578 /*
1579 * Update the stack variable to say we are still in NMI (the update
1580 * is benign for the non-repeat case, where 1 was pushed just above
1581 * to this very stack slot).
1582 */
Salman Qazi28696f42012-10-01 17:29:25 -07001583 movq $1, 10*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001584
1585 /* Make another copy, this one may be modified by nested NMIs */
Salman Qazi28696f42012-10-01 17:29:25 -07001586 addq $(10*8), %rsp
1587 CFI_ADJUST_CFA_OFFSET -10*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001588 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001589 pushq_cfi -6*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001590 .endr
Salman Qazi28696f42012-10-01 17:29:25 -07001591 subq $(5*8), %rsp
Denys Vlasenko911d2bb2015-02-26 14:40:36 -08001592 CFI_DEF_CFA_OFFSET 5*8
Jan Beulich62610912012-02-24 14:54:37 +00001593end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001594
1595 /*
1596 * Everything below this point can be preempted by a nested
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001597 * NMI if the first NMI took an exception and reset our iret stack
1598 * so that we repeat another NMI.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001599 */
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001600 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001601 ALLOC_PT_GPREGS_ON_STACK
1602
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001603 /*
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001604 * Use paranoid_entry to handle SWAPGS, but no need to use paranoid_exit
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001605 * as we should not be calling schedule in NMI context.
1606 * Even with normal interrupts enabled. An NMI should not be
1607 * setting NEED_RESCHED or anything that normal interrupts and
1608 * exceptions might do.
1609 */
Denys Vlasenkoebfc4532015-02-26 14:40:34 -08001610 call paranoid_entry
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001611 DEFAULT_FRAME 0
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001612
1613 /*
1614 * Save off the CR2 register. If we take a page fault in the NMI then
1615 * it could corrupt the CR2 value. If the NMI preempts a page fault
1616 * handler before it was able to read the CR2 register, and then the
1617 * NMI itself takes a page fault, the page fault that was preempted
1618 * will read the information from the NMI page fault and not the
1619 * origin fault. Save it off and restore it if it changes.
1620 * Use the r12 callee-saved register.
1621 */
1622 movq %cr2, %r12
1623
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001624 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1625 movq %rsp,%rdi
1626 movq $-1,%rsi
1627 call do_nmi
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001628
1629 /* Did the NMI take a page fault? Restore cr2 if it did */
1630 movq %cr2, %rcx
1631 cmpq %rcx, %r12
1632 je 1f
1633 movq %r12, %cr2
16341:
1635
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001636 testl %ebx,%ebx /* swapgs needed? */
1637 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001638nmi_swapgs:
1639 SWAPGS_UNSAFE_STACK
1640nmi_restore:
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001641 RESTORE_EXTRA_REGS
1642 RESTORE_C_REGS
Jan Beulich444723d2013-01-24 09:27:31 +00001643 /* Pop the extra iret frame at once */
Denys Vlasenko76f5df42015-02-26 14:40:27 -08001644 REMOVE_PT_GPREGS_FROM_STACK 6*8
Salman Qazi28696f42012-10-01 17:29:25 -07001645
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001646 /* Clear the NMI executing stack variable */
Salman Qazi28696f42012-10-01 17:29:25 -07001647 movq $0, 5*8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001648 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001649 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001650END(nmi)
1651
1652ENTRY(ignore_sysret)
1653 CFI_STARTPROC
1654 mov $-ENOSYS,%eax
1655 sysret
1656 CFI_ENDPROC
1657END(ignore_sysret)
1658