]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - arch/x86/kernel/entry_64.S
x86/asm/entry: Replace some open-coded VM86 checks with v8086_mode() checks
[mirror_ubuntu-focal-kernel.git] / arch / x86 / kernel / entry_64.S
CommitLineData
1da177e4
LT
1/*
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>
1da177e4
LT
7 */
8
9/*
10 * entry.S contains the system-call and fault low-level handling routines.
11 *
8b4777a4
AL
12 * Some of this is documented in Documentation/x86/entry_64.txt
13 *
1da177e4
LT
14 * NOTE: This code handles signal-recognition, which happens every time
15 * after an interrupt and after each system call.
0bd7b798 16 *
0bd7b798 17 * A note on terminology:
7fcb3bc3 18 * - iret frame: Architecture defined interrupt frame from SS to RIP
0bd7b798 19 * at the top of the kernel process stack.
2e91a17b
AK
20 *
21 * Some macro usage:
22 * - CFI macros are used to generate dwarf2 unwind information for better
23 * backtraces. They don't change any code.
2e91a17b
AK
24 * - ENTRY/END Define functions in the symbol table.
25 * - FIXUP_TOP_OF_STACK/RESTORE_TOP_OF_STACK - Fix up the hardware stack
26 * frame that is otherwise undefined after a SYSCALL
27 * - TRACE_IRQ_* - Trace hard interrupt state for lock debugging.
cb5dd2c5 28 * - idtentry - Define exception entry points.
1da177e4
LT
29 */
30
1da177e4
LT
31#include <linux/linkage.h>
32#include <asm/segment.h>
1da177e4
LT
33#include <asm/cache.h>
34#include <asm/errno.h>
35#include <asm/dwarf2.h>
36#include <asm/calling.h>
e2d5df93 37#include <asm/asm-offsets.h>
1da177e4
LT
38#include <asm/msr.h>
39#include <asm/unistd.h>
40#include <asm/thread_info.h>
41#include <asm/hw_irq.h>
0341c14d 42#include <asm/page_types.h>
2601e64d 43#include <asm/irqflags.h>
72fe4858 44#include <asm/paravirt.h>
9939ddaf 45#include <asm/percpu.h>
d7abc0fa 46#include <asm/asm.h>
91d1aa43 47#include <asm/context_tracking.h>
63bcff2a 48#include <asm/smap.h>
3891a04a 49#include <asm/pgtable_types.h>
d7e7528b 50#include <linux/err.h>
1da177e4 51
86a1c34a
RM
52/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
53#include <linux/elf-em.h>
54#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
55#define __AUDIT_ARCH_64BIT 0x80000000
56#define __AUDIT_ARCH_LE 0x40000000
57
1da177e4 58 .code64
ea714547
JO
59 .section .entry.text, "ax"
60
16444a8a 61
dc37db4d 62#ifndef CONFIG_PREEMPT
1da177e4 63#define retint_kernel retint_restore_args
0bd7b798 64#endif
2601e64d 65
72fe4858 66#ifdef CONFIG_PARAVIRT
2be29982 67ENTRY(native_usergs_sysret64)
72fe4858
GOC
68 swapgs
69 sysretq
b3baaa13 70ENDPROC(native_usergs_sysret64)
72fe4858
GOC
71#endif /* CONFIG_PARAVIRT */
72
2601e64d 73
f2db9382 74.macro TRACE_IRQS_IRETQ
2601e64d 75#ifdef CONFIG_TRACE_IRQFLAGS
f2db9382 76 bt $9,EFLAGS(%rsp) /* interrupts off? */
2601e64d
IM
77 jnc 1f
78 TRACE_IRQS_ON
791:
80#endif
81.endm
82
5963e317
SR
83/*
84 * When dynamic function tracer is enabled it will add a breakpoint
85 * to all locations that it is about to modify, sync CPUs, update
86 * all the code, sync CPUs, then remove the breakpoints. In this time
87 * if lockdep is enabled, it might jump back into the debug handler
88 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
89 *
90 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
91 * make sure the stack pointer does not get reset back to the top
92 * of the debug stack, and instead just reuses the current stack.
93 */
94#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
95
96.macro TRACE_IRQS_OFF_DEBUG
97 call debug_stack_set_zero
98 TRACE_IRQS_OFF
99 call debug_stack_reset
100.endm
101
102.macro TRACE_IRQS_ON_DEBUG
103 call debug_stack_set_zero
104 TRACE_IRQS_ON
105 call debug_stack_reset
106.endm
107
f2db9382
DV
108.macro TRACE_IRQS_IRETQ_DEBUG
109 bt $9,EFLAGS(%rsp) /* interrupts off? */
5963e317
SR
110 jnc 1f
111 TRACE_IRQS_ON_DEBUG
1121:
113.endm
114
115#else
116# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
117# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
118# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
119#endif
120
1da177e4 121/*
29722cd4
DV
122 * C code is not supposed to know that the iret frame is not populated.
123 * Every time a C function with an pt_regs argument is called from
124 * the SYSCALL based fast path FIXUP_TOP_OF_STACK is needed.
1da177e4
LT
125 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
126 * manipulation.
0bd7b798 127 */
c002a1e6 128 .macro FIXUP_TOP_OF_STACK tmp offset=0
c002a1e6
AH
129 movq $__USER_DS,SS+\offset(%rsp)
130 movq $__USER_CS,CS+\offset(%rsp)
0fcedc86
AL
131 movq RIP+\offset(%rsp),\tmp /* get rip */
132 movq \tmp,RCX+\offset(%rsp) /* copy it to rcx as sysret would do */
29722cd4
DV
133 movq EFLAGS+\offset(%rsp),\tmp /* ditto for rflags->r11 */
134 movq \tmp,R11+\offset(%rsp)
1da177e4
LT
135 .endm
136
c002a1e6 137 .macro RESTORE_TOP_OF_STACK tmp offset=0
263042e4 138 /* nothing to do */
1da177e4
LT
139 .endm
140
dcd072e2 141/*
e90e147c 142 * empty frame
dcd072e2
AH
143 */
144 .macro EMPTY_FRAME start=1 offset=0
7effaa88 145 .if \start
dcd072e2 146 CFI_STARTPROC simple
adf14236 147 CFI_SIGNAL_FRAME
dcd072e2 148 CFI_DEF_CFA rsp,8+\offset
7effaa88 149 .else
dcd072e2 150 CFI_DEF_CFA_OFFSET 8+\offset
7effaa88 151 .endif
1da177e4 152 .endm
d99015b1
AH
153
154/*
dcd072e2 155 * initial frame state for interrupts (and exceptions without error code)
d99015b1 156 */
dcd072e2 157 .macro INTR_FRAME start=1 offset=0
911d2bb5
DV
158 EMPTY_FRAME \start, 5*8+\offset
159 /*CFI_REL_OFFSET ss, 4*8+\offset*/
160 CFI_REL_OFFSET rsp, 3*8+\offset
161 /*CFI_REL_OFFSET rflags, 2*8+\offset*/
162 /*CFI_REL_OFFSET cs, 1*8+\offset*/
163 CFI_REL_OFFSET rip, 0*8+\offset
d99015b1
AH
164 .endm
165
d99015b1
AH
166/*
167 * initial frame state for exceptions with error code (and interrupts
168 * with vector already pushed)
169 */
dcd072e2 170 .macro XCPT_FRAME start=1 offset=0
911d2bb5 171 INTR_FRAME \start, 1*8+\offset
dcd072e2
AH
172 .endm
173
174/*
76f5df43 175 * frame that enables passing a complete pt_regs to a C function.
dcd072e2 176 */
76f5df43 177 .macro DEFAULT_FRAME start=1 offset=0
f2db9382
DV
178 XCPT_FRAME \start, ORIG_RAX+\offset
179 CFI_REL_OFFSET rdi, RDI+\offset
180 CFI_REL_OFFSET rsi, RSI+\offset
181 CFI_REL_OFFSET rdx, RDX+\offset
182 CFI_REL_OFFSET rcx, RCX+\offset
183 CFI_REL_OFFSET rax, RAX+\offset
184 CFI_REL_OFFSET r8, R8+\offset
185 CFI_REL_OFFSET r9, R9+\offset
186 CFI_REL_OFFSET r10, R10+\offset
187 CFI_REL_OFFSET r11, R11+\offset
dcd072e2
AH
188 CFI_REL_OFFSET rbx, RBX+\offset
189 CFI_REL_OFFSET rbp, RBP+\offset
190 CFI_REL_OFFSET r12, R12+\offset
191 CFI_REL_OFFSET r13, R13+\offset
192 CFI_REL_OFFSET r14, R14+\offset
193 CFI_REL_OFFSET r15, R15+\offset
194 .endm
d99015b1 195
1da177e4 196/*
b87cf63e 197 * 64bit SYSCALL instruction entry. Up to 6 arguments in registers.
1da177e4 198 *
b87cf63e
DV
199 * 64bit SYSCALL saves rip to rcx, clears rflags.RF, then saves rflags to r11,
200 * then loads new ss, cs, and rip from previously programmed MSRs.
201 * rflags gets masked by a value from another MSR (so CLD and CLAC
202 * are not needed). SYSCALL does not save anything on the stack
203 * and does not change rsp.
204 *
205 * Registers on entry:
1da177e4 206 * rax system call number
b87cf63e
DV
207 * rcx return address
208 * r11 saved rflags (note: r11 is callee-clobbered register in C ABI)
1da177e4 209 * rdi arg0
1da177e4 210 * rsi arg1
0bd7b798 211 * rdx arg2
b87cf63e 212 * r10 arg3 (needs to be moved to rcx to conform to C ABI)
1da177e4
LT
213 * r8 arg4
214 * r9 arg5
b87cf63e 215 * (note: r12-r15,rbp,rbx are callee-preserved in C ABI)
0bd7b798 216 *
1da177e4
LT
217 * Interrupts are off on entry.
218 * Only called from user space.
219 *
7fcb3bc3 220 * When user can change pt_regs->foo always force IRET. That is because
7bf36bbc
AK
221 * it deals with uncanonical addresses better. SYSRET has trouble
222 * with them due to bugs in both AMD and Intel CPUs.
0bd7b798 223 */
1da177e4
LT
224
225ENTRY(system_call)
7effaa88 226 CFI_STARTPROC simple
adf14236 227 CFI_SIGNAL_FRAME
9af45651 228 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
7effaa88
JB
229 CFI_REGISTER rip,rcx
230 /*CFI_REGISTER rflags,r11*/
72fe4858
GOC
231 SWAPGS_UNSAFE_STACK
232 /*
233 * A hypervisor implementation might want to use a label
234 * after the swapgs, so that it can do the swapgs
235 * for the guest and jump here on syscall.
236 */
f6b2bc84 237GLOBAL(system_call_after_swapgs)
72fe4858 238
7fcb3bc3 239 /*
c38e5038 240 * We use 'rsp_scratch' as a scratch register, hence this block must execute
7fcb3bc3 241 * atomically in the face of possible interrupt-driven task preemption,
c38e5038 242 * so we can enable interrupts only after we're done with using rsp_scratch:
7fcb3bc3 243 */
c38e5038 244 movq %rsp,PER_CPU_VAR(rsp_scratch)
b87cf63e 245 /* kernel_stack is set so that 5 slots (iret frame) are preallocated */
9af45651 246 movq PER_CPU_VAR(kernel_stack),%rsp
b87cf63e 247 ALLOC_PT_GPREGS_ON_STACK 8 /* +8: space for orig_ax */
263042e4 248 movq %rcx,RIP(%rsp)
c38e5038 249 movq PER_CPU_VAR(rsp_scratch),%rcx
263042e4
DV
250 movq %r11,EFLAGS(%rsp)
251 movq %rcx,RSP(%rsp)
33db1fd4
DV
252 /*
253 * No need to follow this irqs off/on section - it's straight
254 * and short:
255 */
256 ENABLE_INTERRUPTS(CLBR_NONE)
263042e4 257 movq_cfi rax,ORIG_RAX
29722cd4 258 SAVE_C_REGS_EXCEPT_RAX_RCX_R11
f2db9382 259 movq $-ENOSYS,RAX(%rsp)
f2db9382
DV
260 CFI_REL_OFFSET rip,RIP
261 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP)
1da177e4 262 jnz tracesys
86a1c34a 263system_call_fastpath:
fca460f9 264#if __SYSCALL_MASK == ~0
1da177e4 265 cmpq $__NR_syscall_max,%rax
fca460f9
PA
266#else
267 andl $__SYSCALL_MASK,%eax
268 cmpl $__NR_syscall_max,%eax
269#endif
54eea995 270 ja ret_from_sys_call /* and return regs->ax */
1da177e4
LT
271 movq %r10,%rcx
272 call *sys_call_table(,%rax,8) # XXX: rip relative
f2db9382 273 movq %rax,RAX(%rsp)
1da177e4
LT
274/*
275 * Syscall return path ending with SYSRET (fast path)
29722cd4 276 * Has incompletely filled pt_regs, iret frame is also incomplete.
0bd7b798 277 */
1da177e4 278ret_from_sys_call:
f2db9382 279 testl $_TIF_ALLWORK_MASK,TI_flags+THREAD_INFO(%rsp,RIP)
96b6352c
AL
280 jnz int_ret_from_sys_call_fixup /* Go the the slow path */
281
10cd706d 282 LOCKDEP_SYS_EXIT
72fe4858 283 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 284 TRACE_IRQS_OFF
bcddc015 285 CFI_REMEMBER_STATE
2601e64d
IM
286 /*
287 * sysretq will re-enable interrupts:
288 */
289 TRACE_IRQS_ON
29722cd4
DV
290 RESTORE_C_REGS_EXCEPT_RCX_R11
291 movq RIP(%rsp),%rcx
7effaa88 292 CFI_REGISTER rip,rcx
29722cd4 293 movq EFLAGS(%rsp),%r11
7effaa88 294 /*CFI_REGISTER rflags,r11*/
263042e4 295 movq RSP(%rsp),%rsp
b87cf63e
DV
296 /*
297 * 64bit SYSRET restores rip from rcx,
298 * rflags from r11 (but RF and VM bits are forced to 0),
299 * cs and ss are loaded from MSRs.
300 */
2be29982 301 USERGS_SYSRET64
1da177e4 302
bcddc015 303 CFI_RESTORE_STATE
1da177e4 304
96b6352c 305int_ret_from_sys_call_fixup:
f2db9382 306 FIXUP_TOP_OF_STACK %r11
96b6352c 307 jmp int_ret_from_sys_call
86a1c34a 308
7fcb3bc3 309 /* Do syscall entry tracing */
0bd7b798 310tracesys:
76f5df43 311 movq %rsp, %rdi
1dcf74f6
AL
312 movq $AUDIT_ARCH_X86_64, %rsi
313 call syscall_trace_enter_phase1
314 test %rax, %rax
315 jnz tracesys_phase2 /* if needed, run the slow path */
76f5df43 316 RESTORE_C_REGS_EXCEPT_RAX /* else restore clobbered regs */
f2db9382 317 movq ORIG_RAX(%rsp), %rax
1dcf74f6
AL
318 jmp system_call_fastpath /* and return to the fast path */
319
320tracesys_phase2:
76f5df43 321 SAVE_EXTRA_REGS
1da177e4 322 FIXUP_TOP_OF_STACK %rdi
1dcf74f6
AL
323 movq %rsp, %rdi
324 movq $AUDIT_ARCH_X86_64, %rsi
325 movq %rax,%rdx
326 call syscall_trace_enter_phase2
327
d4d67150 328 /*
e90e147c 329 * Reload registers from stack in case ptrace changed them.
1dcf74f6 330 * We don't reload %rax because syscall_trace_entry_phase2() returned
d4d67150
RM
331 * the value it wants us to use in the table lookup.
332 */
76f5df43
DV
333 RESTORE_C_REGS_EXCEPT_RAX
334 RESTORE_EXTRA_REGS
fca460f9 335#if __SYSCALL_MASK == ~0
1da177e4 336 cmpq $__NR_syscall_max,%rax
fca460f9
PA
337#else
338 andl $__SYSCALL_MASK,%eax
339 cmpl $__NR_syscall_max,%eax
340#endif
54eea995 341 ja int_ret_from_sys_call /* RAX(%rsp) is already set */
1da177e4
LT
342 movq %r10,%rcx /* fixup for C */
343 call *sys_call_table(,%rax,8)
f2db9382 344 movq %rax,RAX(%rsp)
7fcb3bc3 345 /* Use IRET because user could have changed pt_regs->foo */
0bd7b798
AH
346
347/*
1da177e4 348 * Syscall return path ending with IRET.
7fcb3bc3 349 * Has correct iret frame.
bcddc015 350 */
bc8b2b92 351GLOBAL(int_ret_from_sys_call)
72fe4858 352 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 353 TRACE_IRQS_OFF
1da177e4
LT
354 movl $_TIF_ALLWORK_MASK,%edi
355 /* edi: mask to check */
bc8b2b92 356GLOBAL(int_with_check)
10cd706d 357 LOCKDEP_SYS_EXIT_IRQ
1da177e4 358 GET_THREAD_INFO(%rcx)
26ccb8a7 359 movl TI_flags(%rcx),%edx
1da177e4
LT
360 andl %edi,%edx
361 jnz int_careful
26ccb8a7 362 andl $~TS_COMPAT,TI_status(%rcx)
1da177e4
LT
363 jmp retint_swapgs
364
365 /* Either reschedule or signal or syscall exit tracking needed. */
366 /* First do a reschedule test. */
367 /* edx: work, edi: workmask */
368int_careful:
369 bt $TIF_NEED_RESCHED,%edx
370 jnc int_very_careful
2601e64d 371 TRACE_IRQS_ON
72fe4858 372 ENABLE_INTERRUPTS(CLBR_NONE)
df5d1874 373 pushq_cfi %rdi
0430499c 374 SCHEDULE_USER
df5d1874 375 popq_cfi %rdi
72fe4858 376 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 377 TRACE_IRQS_OFF
1da177e4
LT
378 jmp int_with_check
379
7fcb3bc3 380 /* handle signals and tracing -- both require a full pt_regs */
1da177e4 381int_very_careful:
2601e64d 382 TRACE_IRQS_ON
72fe4858 383 ENABLE_INTERRUPTS(CLBR_NONE)
76f5df43 384 SAVE_EXTRA_REGS
0bd7b798 385 /* Check for syscall exit trace */
d4d67150 386 testl $_TIF_WORK_SYSCALL_EXIT,%edx
1da177e4 387 jz int_signal
df5d1874 388 pushq_cfi %rdi
0bd7b798 389 leaq 8(%rsp),%rdi # &ptregs -> arg1
1da177e4 390 call syscall_trace_leave
df5d1874 391 popq_cfi %rdi
d4d67150 392 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
1da177e4 393 jmp int_restore_rest
0bd7b798 394
1da177e4 395int_signal:
8f4d37ec 396 testl $_TIF_DO_NOTIFY_MASK,%edx
1da177e4
LT
397 jz 1f
398 movq %rsp,%rdi # &ptregs -> arg1
399 xorl %esi,%esi # oldset -> arg2
400 call do_notify_resume
eca91e78 4011: movl $_TIF_WORK_MASK,%edi
1da177e4 402int_restore_rest:
76f5df43 403 RESTORE_EXTRA_REGS
72fe4858 404 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 405 TRACE_IRQS_OFF
1da177e4
LT
406 jmp int_with_check
407 CFI_ENDPROC
bcddc015 408END(system_call)
0bd7b798 409
1d4b4b29
AV
410 .macro FORK_LIKE func
411ENTRY(stub_\func)
412 CFI_STARTPROC
76f5df43
DV
413 DEFAULT_FRAME 0, 8 /* offset 8: return address */
414 SAVE_EXTRA_REGS 8
1d4b4b29 415 FIXUP_TOP_OF_STACK %r11, 8
1d4b4b29
AV
416 call sys_\func
417 RESTORE_TOP_OF_STACK %r11, 8
76f5df43 418 ret
1d4b4b29
AV
419 CFI_ENDPROC
420END(stub_\func)
421 .endm
422
423 FORK_LIKE clone
424 FORK_LIKE fork
425 FORK_LIKE vfork
1da177e4 426
1da177e4
LT
427ENTRY(stub_execve)
428 CFI_STARTPROC
e6b04b6b 429 addq $8, %rsp
76f5df43
DV
430 DEFAULT_FRAME 0
431 SAVE_EXTRA_REGS
1da177e4
LT
432 FIXUP_TOP_OF_STACK %r11
433 call sys_execve
1da177e4 434 movq %rax,RAX(%rsp)
76f5df43 435 RESTORE_EXTRA_REGS
1da177e4
LT
436 jmp int_ret_from_sys_call
437 CFI_ENDPROC
4b787e0b 438END(stub_execve)
0bd7b798 439
27d6ec7a
DD
440ENTRY(stub_execveat)
441 CFI_STARTPROC
442 addq $8, %rsp
76f5df43
DV
443 DEFAULT_FRAME 0
444 SAVE_EXTRA_REGS
27d6ec7a
DD
445 FIXUP_TOP_OF_STACK %r11
446 call sys_execveat
447 RESTORE_TOP_OF_STACK %r11
448 movq %rax,RAX(%rsp)
76f5df43 449 RESTORE_EXTRA_REGS
27d6ec7a
DD
450 jmp int_ret_from_sys_call
451 CFI_ENDPROC
452END(stub_execveat)
453
1da177e4
LT
454/*
455 * sigreturn is special because it needs to restore all registers on return.
456 * This cannot be done with SYSRET, so use the IRET return path instead.
0bd7b798 457 */
1da177e4
LT
458ENTRY(stub_rt_sigreturn)
459 CFI_STARTPROC
7effaa88 460 addq $8, %rsp
76f5df43
DV
461 DEFAULT_FRAME 0
462 SAVE_EXTRA_REGS
1da177e4
LT
463 FIXUP_TOP_OF_STACK %r11
464 call sys_rt_sigreturn
465 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
76f5df43 466 RESTORE_EXTRA_REGS
1da177e4
LT
467 jmp int_ret_from_sys_call
468 CFI_ENDPROC
4b787e0b 469END(stub_rt_sigreturn)
1da177e4 470
c5a37394 471#ifdef CONFIG_X86_X32_ABI
c5a37394
PA
472ENTRY(stub_x32_rt_sigreturn)
473 CFI_STARTPROC
474 addq $8, %rsp
76f5df43
DV
475 DEFAULT_FRAME 0
476 SAVE_EXTRA_REGS
c5a37394
PA
477 FIXUP_TOP_OF_STACK %r11
478 call sys32_x32_rt_sigreturn
479 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
76f5df43 480 RESTORE_EXTRA_REGS
c5a37394
PA
481 jmp int_ret_from_sys_call
482 CFI_ENDPROC
483END(stub_x32_rt_sigreturn)
484
d1a797f3
PA
485ENTRY(stub_x32_execve)
486 CFI_STARTPROC
487 addq $8, %rsp
76f5df43
DV
488 DEFAULT_FRAME 0
489 SAVE_EXTRA_REGS
d1a797f3 490 FIXUP_TOP_OF_STACK %r11
6783eaa2 491 call compat_sys_execve
d1a797f3
PA
492 RESTORE_TOP_OF_STACK %r11
493 movq %rax,RAX(%rsp)
76f5df43 494 RESTORE_EXTRA_REGS
d1a797f3
PA
495 jmp int_ret_from_sys_call
496 CFI_ENDPROC
497END(stub_x32_execve)
498
27d6ec7a
DD
499ENTRY(stub_x32_execveat)
500 CFI_STARTPROC
501 addq $8, %rsp
76f5df43
DV
502 DEFAULT_FRAME 0
503 SAVE_EXTRA_REGS
27d6ec7a
DD
504 FIXUP_TOP_OF_STACK %r11
505 call compat_sys_execveat
506 RESTORE_TOP_OF_STACK %r11
507 movq %rax,RAX(%rsp)
76f5df43 508 RESTORE_EXTRA_REGS
27d6ec7a
DD
509 jmp int_ret_from_sys_call
510 CFI_ENDPROC
511END(stub_x32_execveat)
512
c5a37394
PA
513#endif
514
1eeb207f
DV
515/*
516 * A newly forked process directly context switches into this address.
517 *
518 * rdi: prev task we switched from
519 */
520ENTRY(ret_from_fork)
521 DEFAULT_FRAME
522
523 LOCK ; btr $TIF_FORK,TI_flags(%r8)
524
525 pushq_cfi $0x0002
526 popfq_cfi # reset kernel eflags
527
528 call schedule_tail # rdi: 'prev' task parameter
529
530 GET_THREAD_INFO(%rcx)
531
532 RESTORE_EXTRA_REGS
533
534 testl $3,CS(%rsp) # from kernel_thread?
535 jz 1f
536
1e3fbb8a
AL
537 /*
538 * By the time we get here, we have no idea whether our pt_regs,
539 * ti flags, and ti status came from the 64-bit SYSCALL fast path,
540 * the slow path, or one of the ia32entry paths.
541 * Use int_ret_from_sys_call to return, since it can safely handle
542 * all of the above.
543 */
544 jmp int_ret_from_sys_call
1eeb207f
DV
545
5461:
547 movq %rbp, %rdi
548 call *%rbx
549 movl $0, RAX(%rsp)
550 RESTORE_EXTRA_REGS
551 jmp int_ret_from_sys_call
552 CFI_ENDPROC
553END(ret_from_fork)
554
939b7871
PA
555/*
556 * Build the entry stubs and pointer table with some assembler magic.
557 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
558 * single cache line on all modern x86 implementations.
559 */
560 .section .init.rodata,"a"
561ENTRY(interrupt)
ea714547 562 .section .entry.text
939b7871
PA
563 .p2align 5
564 .p2align CONFIG_X86_L1_CACHE_SHIFT
565ENTRY(irq_entries_start)
566 INTR_FRAME
567vector=FIRST_EXTERNAL_VECTOR
2414e021 568.rept (FIRST_SYSTEM_VECTOR-FIRST_EXTERNAL_VECTOR+6)/7
939b7871
PA
569 .balign 32
570 .rept 7
2414e021 571 .if vector < FIRST_SYSTEM_VECTOR
8665596e 572 .if vector <> FIRST_EXTERNAL_VECTOR
939b7871
PA
573 CFI_ADJUST_CFA_OFFSET -8
574 .endif
df5d1874 5751: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
8665596e 576 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
939b7871
PA
577 jmp 2f
578 .endif
579 .previous
580 .quad 1b
ea714547 581 .section .entry.text
939b7871
PA
582vector=vector+1
583 .endif
584 .endr
5852: jmp common_interrupt
586.endr
587 CFI_ENDPROC
588END(irq_entries_start)
589
590.previous
591END(interrupt)
592.previous
593
d99015b1 594/*
1da177e4
LT
595 * Interrupt entry/exit.
596 *
597 * Interrupt entry points save only callee clobbered registers in fast path.
d99015b1
AH
598 *
599 * Entry runs with interrupts off.
600 */
1da177e4 601
722024db 602/* 0(%rsp): ~(interrupt number) */
1da177e4 603 .macro interrupt func
f6f64681 604 cld
e90e147c
DV
605 /*
606 * Since nothing in interrupt handling code touches r12...r15 members
607 * of "struct pt_regs", and since interrupts can nest, we can save
608 * four stack slots and simultaneously provide
609 * an unwind-friendly stack layout by saving "truncated" pt_regs
610 * exactly up to rbp slot, without these members.
611 */
76f5df43
DV
612 ALLOC_PT_GPREGS_ON_STACK -RBP
613 SAVE_C_REGS -RBP
614 /* this goes to 0(%rsp) for unwinder, not for saving the value: */
615 SAVE_EXTRA_REGS_RBP -RBP
616
617 leaq -RBP(%rsp),%rdi /* arg1 for \func (pointer to pt_regs) */
f6f64681 618
76f5df43 619 testl $3, CS-RBP(%rsp)
f6f64681
DV
620 je 1f
621 SWAPGS
76f5df43 6221:
f6f64681 623 /*
e90e147c 624 * Save previous stack pointer, optionally switch to interrupt stack.
f6f64681
DV
625 * irq_count is used to check if a CPU is already on an interrupt stack
626 * or not. While this is essentially redundant with preempt_count it is
627 * a little cheaper to use a separate counter in the PDA (short of
628 * moving irq_enter into assembly, which would be too much work)
629 */
76f5df43
DV
630 movq %rsp, %rsi
631 incl PER_CPU_VAR(irq_count)
f6f64681
DV
632 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
633 CFI_DEF_CFA_REGISTER rsi
f6f64681 634 pushq %rsi
911d2bb5
DV
635 /*
636 * For debugger:
637 * "CFA (Current Frame Address) is the value on stack + offset"
638 */
f6f64681 639 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
911d2bb5 640 0x77 /* DW_OP_breg7 (rsp) */, 0, \
f6f64681 641 0x06 /* DW_OP_deref */, \
911d2bb5 642 0x08 /* DW_OP_const1u */, SIZEOF_PTREGS-RBP, \
f6f64681
DV
643 0x22 /* DW_OP_plus */
644 /* We entered an interrupt context - irqs are off: */
645 TRACE_IRQS_OFF
646
1da177e4
LT
647 call \func
648 .endm
649
722024db
AH
650 /*
651 * The interrupt stubs push (~vector+0x80) onto the stack and
652 * then jump to common_interrupt.
653 */
939b7871
PA
654 .p2align CONFIG_X86_L1_CACHE_SHIFT
655common_interrupt:
7effaa88 656 XCPT_FRAME
ee4eb87b 657 ASM_CLAC
722024db 658 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
1da177e4 659 interrupt do_IRQ
c38e5038 660 /* 0(%rsp): rsp_scratch */
7effaa88 661ret_from_intr:
72fe4858 662 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 663 TRACE_IRQS_OFF
56895530 664 decl PER_CPU_VAR(irq_count)
625dbc3b 665
a2bbe750
FW
666 /* Restore saved previous stack */
667 popq %rsi
911d2bb5 668 CFI_DEF_CFA rsi,SIZEOF_PTREGS-RBP /* reg/off reset after def_cfa_expr */
e90e147c 669 /* return code expects complete pt_regs - adjust rsp accordingly: */
f2db9382 670 leaq -RBP(%rsi),%rsp
7effaa88 671 CFI_DEF_CFA_REGISTER rsp
f2db9382 672 CFI_ADJUST_CFA_OFFSET RBP
625dbc3b 673
7effaa88 674exit_intr:
1da177e4 675 GET_THREAD_INFO(%rcx)
f2db9382 676 testl $3,CS(%rsp)
1da177e4 677 je retint_kernel
0bd7b798 678
1da177e4
LT
679 /* Interrupt came from user space */
680 /*
e90e147c 681 * Has a correct top of stack.
1da177e4 682 * %rcx: thread info. Interrupts off.
0bd7b798 683 */
1da177e4
LT
684retint_with_reschedule:
685 movl $_TIF_WORK_MASK,%edi
7effaa88 686retint_check:
10cd706d 687 LOCKDEP_SYS_EXIT_IRQ
26ccb8a7 688 movl TI_flags(%rcx),%edx
1da177e4 689 andl %edi,%edx
7effaa88 690 CFI_REMEMBER_STATE
1da177e4 691 jnz retint_careful
10cd706d
PZ
692
693retint_swapgs: /* return to user-space */
2601e64d
IM
694 /*
695 * The iretq could re-enable interrupts:
696 */
72fe4858 697 DISABLE_INTERRUPTS(CLBR_ANY)
2601e64d 698 TRACE_IRQS_IRETQ
2a23c6b8
AL
699
700 /*
701 * Try to use SYSRET instead of IRET if we're returning to
702 * a completely clean 64-bit userspace context.
703 */
f2db9382
DV
704 movq RCX(%rsp),%rcx
705 cmpq %rcx,RIP(%rsp) /* RCX == RIP */
2a23c6b8
AL
706 jne opportunistic_sysret_failed
707
708 /*
709 * On Intel CPUs, sysret with non-canonical RCX/RIP will #GP
710 * in kernel space. This essentially lets the user take over
711 * the kernel, since userspace controls RSP. It's not worth
712 * testing for canonicalness exactly -- this check detects any
713 * of the 17 high bits set, which is true for non-canonical
714 * or kernel addresses. (This will pessimize vsyscall=native.
715 * Big deal.)
716 *
717 * If virtual addresses ever become wider, this will need
718 * to be updated to remain correct on both old and new CPUs.
719 */
720 .ifne __VIRTUAL_MASK_SHIFT - 47
721 .error "virtual address width changed -- sysret checks need update"
722 .endif
723 shr $__VIRTUAL_MASK_SHIFT, %rcx
724 jnz opportunistic_sysret_failed
725
f2db9382 726 cmpq $__USER_CS,CS(%rsp) /* CS must match SYSRET */
2a23c6b8
AL
727 jne opportunistic_sysret_failed
728
f2db9382
DV
729 movq R11(%rsp),%r11
730 cmpq %r11,EFLAGS(%rsp) /* R11 == RFLAGS */
2a23c6b8
AL
731 jne opportunistic_sysret_failed
732
f2db9382 733 testq $X86_EFLAGS_RF,%r11 /* sysret can't restore RF */
2a23c6b8
AL
734 jnz opportunistic_sysret_failed
735
736 /* nothing to check for RSP */
737
f2db9382 738 cmpq $__USER_DS,SS(%rsp) /* SS must match SYSRET */
2a23c6b8
AL
739 jne opportunistic_sysret_failed
740
741 /*
742 * We win! This label is here just for ease of understanding
743 * perf profiles. Nothing jumps here.
744 */
745irq_return_via_sysret:
746 CFI_REMEMBER_STATE
d441c1f2
DV
747 /* r11 is already restored (see code above) */
748 RESTORE_C_REGS_EXCEPT_R11
749 movq RSP(%rsp),%rsp
2a23c6b8
AL
750 USERGS_SYSRET64
751 CFI_RESTORE_STATE
752
753opportunistic_sysret_failed:
72fe4858 754 SWAPGS
2601e64d
IM
755 jmp restore_args
756
10cd706d 757retint_restore_args: /* return to kernel space */
72fe4858 758 DISABLE_INTERRUPTS(CLBR_ANY)
2601e64d
IM
759 /*
760 * The iretq could re-enable interrupts:
761 */
762 TRACE_IRQS_IRETQ
763restore_args:
76f5df43
DV
764 RESTORE_C_REGS
765 REMOVE_PT_GPREGS_FROM_STACK 8
3701d863 766
f7f3d791 767irq_return:
7209a75d
AL
768 INTERRUPT_RETURN
769
770ENTRY(native_iret)
3891a04a
PA
771 /*
772 * Are we returning to a stack segment from the LDT? Note: in
773 * 64-bit mode SS:RSP on the exception stack is always valid.
774 */
34273f41 775#ifdef CONFIG_X86_ESPFIX64
3891a04a 776 testb $4,(SS-RIP)(%rsp)
7209a75d 777 jnz native_irq_return_ldt
34273f41 778#endif
3891a04a 779
af726f21 780.global native_irq_return_iret
7209a75d 781native_irq_return_iret:
b645af2d
AL
782 /*
783 * This may fault. Non-paranoid faults on return to userspace are
784 * handled by fixup_bad_iret. These include #SS, #GP, and #NP.
785 * Double-faults due to espfix64 are handled in do_double_fault.
786 * Other faults here are fatal.
787 */
1da177e4 788 iretq
3701d863 789
34273f41 790#ifdef CONFIG_X86_ESPFIX64
7209a75d 791native_irq_return_ldt:
3891a04a
PA
792 pushq_cfi %rax
793 pushq_cfi %rdi
794 SWAPGS
795 movq PER_CPU_VAR(espfix_waddr),%rdi
796 movq %rax,(0*8)(%rdi) /* RAX */
797 movq (2*8)(%rsp),%rax /* RIP */
798 movq %rax,(1*8)(%rdi)
799 movq (3*8)(%rsp),%rax /* CS */
800 movq %rax,(2*8)(%rdi)
801 movq (4*8)(%rsp),%rax /* RFLAGS */
802 movq %rax,(3*8)(%rdi)
803 movq (6*8)(%rsp),%rax /* SS */
804 movq %rax,(5*8)(%rdi)
805 movq (5*8)(%rsp),%rax /* RSP */
806 movq %rax,(4*8)(%rdi)
807 andl $0xffff0000,%eax
808 popq_cfi %rdi
809 orq PER_CPU_VAR(espfix_stack),%rax
810 SWAPGS
811 movq %rax,%rsp
812 popq_cfi %rax
7209a75d 813 jmp native_irq_return_iret
34273f41 814#endif
3891a04a 815
7effaa88 816 /* edi: workmask, edx: work */
1da177e4 817retint_careful:
7effaa88 818 CFI_RESTORE_STATE
1da177e4
LT
819 bt $TIF_NEED_RESCHED,%edx
820 jnc retint_signal
2601e64d 821 TRACE_IRQS_ON
72fe4858 822 ENABLE_INTERRUPTS(CLBR_NONE)
df5d1874 823 pushq_cfi %rdi
0430499c 824 SCHEDULE_USER
df5d1874 825 popq_cfi %rdi
1da177e4 826 GET_THREAD_INFO(%rcx)
72fe4858 827 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 828 TRACE_IRQS_OFF
1da177e4 829 jmp retint_check
0bd7b798 830
1da177e4 831retint_signal:
8f4d37ec 832 testl $_TIF_DO_NOTIFY_MASK,%edx
10ffdbb8 833 jz retint_swapgs
2601e64d 834 TRACE_IRQS_ON
72fe4858 835 ENABLE_INTERRUPTS(CLBR_NONE)
76f5df43 836 SAVE_EXTRA_REGS
0bd7b798 837 movq $-1,ORIG_RAX(%rsp)
3829ee6b 838 xorl %esi,%esi # oldset
1da177e4
LT
839 movq %rsp,%rdi # &pt_regs
840 call do_notify_resume
76f5df43 841 RESTORE_EXTRA_REGS
72fe4858 842 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 843 TRACE_IRQS_OFF
be9e6870 844 GET_THREAD_INFO(%rcx)
eca91e78 845 jmp retint_with_reschedule
1da177e4
LT
846
847#ifdef CONFIG_PREEMPT
848 /* Returning to kernel space. Check if we need preemption */
849 /* rcx: threadinfo. interrupts off. */
b06babac 850ENTRY(retint_kernel)
c2daa3be 851 cmpl $0,PER_CPU_VAR(__preempt_count)
1da177e4 852 jnz retint_restore_args
f2db9382 853 bt $9,EFLAGS(%rsp) /* interrupts off? */
1da177e4
LT
854 jnc retint_restore_args
855 call preempt_schedule_irq
856 jmp exit_intr
0bd7b798 857#endif
1da177e4 858 CFI_ENDPROC
4b787e0b 859END(common_interrupt)
3891a04a 860
1da177e4
LT
861/*
862 * APIC interrupts.
0bd7b798 863 */
cf910e83 864.macro apicinterrupt3 num sym do_sym
322648d1 865ENTRY(\sym)
7effaa88 866 INTR_FRAME
ee4eb87b 867 ASM_CLAC
df5d1874 868 pushq_cfi $~(\num)
39e95433 869.Lcommon_\sym:
322648d1 870 interrupt \do_sym
1da177e4
LT
871 jmp ret_from_intr
872 CFI_ENDPROC
322648d1
AH
873END(\sym)
874.endm
1da177e4 875
cf910e83
SA
876#ifdef CONFIG_TRACING
877#define trace(sym) trace_##sym
878#define smp_trace(sym) smp_trace_##sym
879
880.macro trace_apicinterrupt num sym
881apicinterrupt3 \num trace(\sym) smp_trace(\sym)
882.endm
883#else
884.macro trace_apicinterrupt num sym do_sym
885.endm
886#endif
887
888.macro apicinterrupt num sym do_sym
889apicinterrupt3 \num \sym \do_sym
890trace_apicinterrupt \num \sym
891.endm
892
322648d1 893#ifdef CONFIG_SMP
cf910e83 894apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR \
322648d1 895 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
cf910e83 896apicinterrupt3 REBOOT_VECTOR \
4ef702c1 897 reboot_interrupt smp_reboot_interrupt
322648d1 898#endif
1da177e4 899
03b48632 900#ifdef CONFIG_X86_UV
cf910e83 901apicinterrupt3 UV_BAU_MESSAGE \
322648d1 902 uv_bau_message_intr1 uv_bau_message_interrupt
03b48632 903#endif
322648d1
AH
904apicinterrupt LOCAL_TIMER_VECTOR \
905 apic_timer_interrupt smp_apic_timer_interrupt
4a4de9c7
DS
906apicinterrupt X86_PLATFORM_IPI_VECTOR \
907 x86_platform_ipi smp_x86_platform_ipi
89b831ef 908
d78f2664 909#ifdef CONFIG_HAVE_KVM
cf910e83 910apicinterrupt3 POSTED_INTR_VECTOR \
d78f2664
YZ
911 kvm_posted_intr_ipi smp_kvm_posted_intr_ipi
912#endif
913
33e5ff63 914#ifdef CONFIG_X86_MCE_THRESHOLD
322648d1 915apicinterrupt THRESHOLD_APIC_VECTOR \
7856f6cc 916 threshold_interrupt smp_threshold_interrupt
33e5ff63
SA
917#endif
918
919#ifdef CONFIG_X86_THERMAL_VECTOR
322648d1
AH
920apicinterrupt THERMAL_APIC_VECTOR \
921 thermal_interrupt smp_thermal_interrupt
33e5ff63 922#endif
1812924b 923
322648d1
AH
924#ifdef CONFIG_SMP
925apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
926 call_function_single_interrupt smp_call_function_single_interrupt
927apicinterrupt CALL_FUNCTION_VECTOR \
928 call_function_interrupt smp_call_function_interrupt
929apicinterrupt RESCHEDULE_VECTOR \
930 reschedule_interrupt smp_reschedule_interrupt
931#endif
1da177e4 932
322648d1
AH
933apicinterrupt ERROR_APIC_VECTOR \
934 error_interrupt smp_error_interrupt
935apicinterrupt SPURIOUS_APIC_VECTOR \
936 spurious_interrupt smp_spurious_interrupt
0bd7b798 937
e360adbe
PZ
938#ifdef CONFIG_IRQ_WORK
939apicinterrupt IRQ_WORK_VECTOR \
940 irq_work_interrupt smp_irq_work_interrupt
241771ef
IM
941#endif
942
1da177e4
LT
943/*
944 * Exception entry points.
0bd7b798 945 */
9b476688 946#define CPU_TSS_IST(x) PER_CPU_VAR(cpu_tss) + (TSS_ist + ((x) - 1) * 8)
577ed45e
AL
947
948.macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1
322648d1 949ENTRY(\sym)
577ed45e
AL
950 /* Sanity check */
951 .if \shift_ist != -1 && \paranoid == 0
952 .error "using shift_ist requires paranoid=1"
953 .endif
954
cb5dd2c5
AL
955 .if \has_error_code
956 XCPT_FRAME
957 .else
7effaa88 958 INTR_FRAME
cb5dd2c5 959 .endif
1da177e4 960
ee4eb87b 961 ASM_CLAC
b8b1d08b 962 PARAVIRT_ADJUST_EXCEPTION_FRAME
cb5dd2c5
AL
963
964 .ifeq \has_error_code
965 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
966 .endif
967
76f5df43 968 ALLOC_PT_GPREGS_ON_STACK
cb5dd2c5
AL
969
970 .if \paranoid
48e08d0f
AL
971 .if \paranoid == 1
972 CFI_REMEMBER_STATE
973 testl $3, CS(%rsp) /* If coming from userspace, switch */
974 jnz 1f /* stacks. */
975 .endif
ebfc453e 976 call paranoid_entry
cb5dd2c5
AL
977 .else
978 call error_entry
979 .endif
ebfc453e 980 /* returned flag: ebx=0: need swapgs on exit, ebx=1: don't need it */
cb5dd2c5 981
1bd24efc 982 DEFAULT_FRAME 0
cb5dd2c5
AL
983
984 .if \paranoid
577ed45e
AL
985 .if \shift_ist != -1
986 TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */
987 .else
b8b1d08b 988 TRACE_IRQS_OFF
cb5dd2c5 989 .endif
577ed45e 990 .endif
cb5dd2c5
AL
991
992 movq %rsp,%rdi /* pt_regs pointer */
993
994 .if \has_error_code
995 movq ORIG_RAX(%rsp),%rsi /* get error code */
996 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
997 .else
998 xorl %esi,%esi /* no error code */
999 .endif
1000
577ed45e 1001 .if \shift_ist != -1
9b476688 1002 subq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
577ed45e
AL
1003 .endif
1004
322648d1 1005 call \do_sym
cb5dd2c5 1006
577ed45e 1007 .if \shift_ist != -1
9b476688 1008 addq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist)
577ed45e
AL
1009 .endif
1010
ebfc453e 1011 /* these procedures expect "no swapgs" flag in ebx */
cb5dd2c5 1012 .if \paranoid
ebfc453e 1013 jmp paranoid_exit
cb5dd2c5 1014 .else
ebfc453e 1015 jmp error_exit
cb5dd2c5
AL
1016 .endif
1017
48e08d0f
AL
1018 .if \paranoid == 1
1019 CFI_RESTORE_STATE
1020 /*
1021 * Paranoid entry from userspace. Switch stacks and treat it
1022 * as a normal entry. This means that paranoid handlers
1023 * run in real process context if user_mode(regs).
1024 */
10251:
1026 call error_entry
1027
1028 DEFAULT_FRAME 0
1029
1030 movq %rsp,%rdi /* pt_regs pointer */
1031 call sync_regs
1032 movq %rax,%rsp /* switch stack */
1033
1034 movq %rsp,%rdi /* pt_regs pointer */
1035
1036 .if \has_error_code
1037 movq ORIG_RAX(%rsp),%rsi /* get error code */
1038 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1039 .else
1040 xorl %esi,%esi /* no error code */
1041 .endif
1042
1043 call \do_sym
1044
1045 jmp error_exit /* %ebx: no swapgs flag */
1046 .endif
1047
b8b1d08b 1048 CFI_ENDPROC
ddeb8f21 1049END(\sym)
322648d1 1050.endm
b8b1d08b 1051
25c74b10 1052#ifdef CONFIG_TRACING
cb5dd2c5
AL
1053.macro trace_idtentry sym do_sym has_error_code:req
1054idtentry trace(\sym) trace(\do_sym) has_error_code=\has_error_code
1055idtentry \sym \do_sym has_error_code=\has_error_code
25c74b10
SA
1056.endm
1057#else
cb5dd2c5
AL
1058.macro trace_idtentry sym do_sym has_error_code:req
1059idtentry \sym \do_sym has_error_code=\has_error_code
25c74b10
SA
1060.endm
1061#endif
1062
cb5dd2c5
AL
1063idtentry divide_error do_divide_error has_error_code=0
1064idtentry overflow do_overflow has_error_code=0
1065idtentry bounds do_bounds has_error_code=0
1066idtentry invalid_op do_invalid_op has_error_code=0
1067idtentry device_not_available do_device_not_available has_error_code=0
48e08d0f 1068idtentry double_fault do_double_fault has_error_code=1 paranoid=2
cb5dd2c5
AL
1069idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0
1070idtentry invalid_TSS do_invalid_TSS has_error_code=1
1071idtentry segment_not_present do_segment_not_present has_error_code=1
1072idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0
1073idtentry coprocessor_error do_coprocessor_error has_error_code=0
1074idtentry alignment_check do_alignment_check has_error_code=1
1075idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0
5cec93c2 1076
2601e64d 1077
9f1e87ea
CG
1078 /* Reload gs selector with exception handling */
1079 /* edi: new selector */
9f9d489a 1080ENTRY(native_load_gs_index)
7effaa88 1081 CFI_STARTPROC
df5d1874 1082 pushfq_cfi
b8aa287f 1083 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
9f1e87ea 1084 SWAPGS
0bd7b798 1085gs_change:
9f1e87ea 1086 movl %edi,%gs
1da177e4 10872: mfence /* workaround */
72fe4858 1088 SWAPGS
df5d1874 1089 popfq_cfi
9f1e87ea 1090 ret
7effaa88 1091 CFI_ENDPROC
6efdcfaf 1092END(native_load_gs_index)
0bd7b798 1093
d7abc0fa 1094 _ASM_EXTABLE(gs_change,bad_gs)
9f1e87ea 1095 .section .fixup,"ax"
1da177e4 1096 /* running with kernelgs */
0bd7b798 1097bad_gs:
72fe4858 1098 SWAPGS /* switch back to user gs */
1da177e4 1099 xorl %eax,%eax
9f1e87ea
CG
1100 movl %eax,%gs
1101 jmp 2b
1102 .previous
0bd7b798 1103
2699500b 1104/* Call softirq on interrupt stack. Interrupts are off. */
7d65f4a6 1105ENTRY(do_softirq_own_stack)
7effaa88 1106 CFI_STARTPROC
df5d1874 1107 pushq_cfi %rbp
2699500b
AK
1108 CFI_REL_OFFSET rbp,0
1109 mov %rsp,%rbp
1110 CFI_DEF_CFA_REGISTER rbp
56895530 1111 incl PER_CPU_VAR(irq_count)
26f80bd6 1112 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
2699500b 1113 push %rbp # backlink for old unwinder
ed6b676c 1114 call __do_softirq
2699500b 1115 leaveq
df5d1874 1116 CFI_RESTORE rbp
7effaa88 1117 CFI_DEF_CFA_REGISTER rsp
2699500b 1118 CFI_ADJUST_CFA_OFFSET -8
56895530 1119 decl PER_CPU_VAR(irq_count)
ed6b676c 1120 ret
7effaa88 1121 CFI_ENDPROC
7d65f4a6 1122END(do_softirq_own_stack)
75154f40 1123
3d75e1b8 1124#ifdef CONFIG_XEN
cb5dd2c5 1125idtentry xen_hypervisor_callback xen_do_hypervisor_callback has_error_code=0
3d75e1b8
JF
1126
1127/*
9f1e87ea
CG
1128 * A note on the "critical region" in our callback handler.
1129 * We want to avoid stacking callback handlers due to events occurring
1130 * during handling of the last event. To do this, we keep events disabled
1131 * until we've done all processing. HOWEVER, we must enable events before
1132 * popping the stack frame (can't be done atomically) and so it would still
1133 * be possible to get enough handler activations to overflow the stack.
1134 * Although unlikely, bugs of that kind are hard to track down, so we'd
1135 * like to avoid the possibility.
1136 * So, on entry to the handler we detect whether we interrupted an
1137 * existing activation in its critical region -- if so, we pop the current
1138 * activation and restart the handler using the previous one.
1139 */
3d75e1b8
JF
1140ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1141 CFI_STARTPROC
9f1e87ea
CG
1142/*
1143 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1144 * see the correct pointer to the pt_regs
1145 */
3d75e1b8
JF
1146 movq %rdi, %rsp # we don't return, adjust the stack frame
1147 CFI_ENDPROC
dcd072e2 1148 DEFAULT_FRAME
56895530 114911: incl PER_CPU_VAR(irq_count)
3d75e1b8
JF
1150 movq %rsp,%rbp
1151 CFI_DEF_CFA_REGISTER rbp
26f80bd6 1152 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
3d75e1b8
JF
1153 pushq %rbp # backlink for old unwinder
1154 call xen_evtchn_do_upcall
1155 popq %rsp
1156 CFI_DEF_CFA_REGISTER rsp
56895530 1157 decl PER_CPU_VAR(irq_count)
fdfd811d
DV
1158#ifndef CONFIG_PREEMPT
1159 call xen_maybe_preempt_hcall
1160#endif
3d75e1b8
JF
1161 jmp error_exit
1162 CFI_ENDPROC
371c394a 1163END(xen_do_hypervisor_callback)
3d75e1b8
JF
1164
1165/*
9f1e87ea
CG
1166 * Hypervisor uses this for application faults while it executes.
1167 * We get here for two reasons:
1168 * 1. Fault while reloading DS, ES, FS or GS
1169 * 2. Fault while executing IRET
1170 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1171 * registers that could be reloaded and zeroed the others.
1172 * Category 2 we fix up by killing the current process. We cannot use the
1173 * normal Linux return path in this case because if we use the IRET hypercall
1174 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1175 * We distinguish between categories by comparing each saved segment register
1176 * with its current contents: any discrepancy means we in category 1.
1177 */
3d75e1b8 1178ENTRY(xen_failsafe_callback)
dcd072e2
AH
1179 INTR_FRAME 1 (6*8)
1180 /*CFI_REL_OFFSET gs,GS*/
1181 /*CFI_REL_OFFSET fs,FS*/
1182 /*CFI_REL_OFFSET es,ES*/
1183 /*CFI_REL_OFFSET ds,DS*/
1184 CFI_REL_OFFSET r11,8
1185 CFI_REL_OFFSET rcx,0
3d75e1b8
JF
1186 movw %ds,%cx
1187 cmpw %cx,0x10(%rsp)
1188 CFI_REMEMBER_STATE
1189 jne 1f
1190 movw %es,%cx
1191 cmpw %cx,0x18(%rsp)
1192 jne 1f
1193 movw %fs,%cx
1194 cmpw %cx,0x20(%rsp)
1195 jne 1f
1196 movw %gs,%cx
1197 cmpw %cx,0x28(%rsp)
1198 jne 1f
1199 /* All segments match their saved values => Category 2 (Bad IRET). */
1200 movq (%rsp),%rcx
1201 CFI_RESTORE rcx
1202 movq 8(%rsp),%r11
1203 CFI_RESTORE r11
1204 addq $0x30,%rsp
1205 CFI_ADJUST_CFA_OFFSET -0x30
14ae22ba
IM
1206 pushq_cfi $0 /* RIP */
1207 pushq_cfi %r11
1208 pushq_cfi %rcx
4a5c3e77 1209 jmp general_protection
3d75e1b8
JF
1210 CFI_RESTORE_STATE
12111: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1212 movq (%rsp),%rcx
1213 CFI_RESTORE rcx
1214 movq 8(%rsp),%r11
1215 CFI_RESTORE r11
1216 addq $0x30,%rsp
1217 CFI_ADJUST_CFA_OFFSET -0x30
a349e23d 1218 pushq_cfi $-1 /* orig_ax = -1 => not a system call */
76f5df43
DV
1219 ALLOC_PT_GPREGS_ON_STACK
1220 SAVE_C_REGS
1221 SAVE_EXTRA_REGS
3d75e1b8
JF
1222 jmp error_exit
1223 CFI_ENDPROC
3d75e1b8
JF
1224END(xen_failsafe_callback)
1225
cf910e83 1226apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
38e20b07
SY
1227 xen_hvm_callback_vector xen_evtchn_do_upcall
1228
3d75e1b8 1229#endif /* CONFIG_XEN */
ddeb8f21 1230
bc2b0331 1231#if IS_ENABLED(CONFIG_HYPERV)
cf910e83 1232apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
bc2b0331
S
1233 hyperv_callback_vector hyperv_vector_handler
1234#endif /* CONFIG_HYPERV */
1235
577ed45e
AL
1236idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1237idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
6f442be2 1238idtentry stack_segment do_stack_segment has_error_code=1
6cac5a92 1239#ifdef CONFIG_XEN
cb5dd2c5
AL
1240idtentry xen_debug do_debug has_error_code=0
1241idtentry xen_int3 do_int3 has_error_code=0
1242idtentry xen_stack_segment do_stack_segment has_error_code=1
6cac5a92 1243#endif
cb5dd2c5
AL
1244idtentry general_protection do_general_protection has_error_code=1
1245trace_idtentry page_fault do_page_fault has_error_code=1
631bc487 1246#ifdef CONFIG_KVM_GUEST
cb5dd2c5 1247idtentry async_page_fault do_async_page_fault has_error_code=1
631bc487 1248#endif
ddeb8f21 1249#ifdef CONFIG_X86_MCE
cb5dd2c5 1250idtentry machine_check has_error_code=0 paranoid=1 do_sym=*machine_check_vector(%rip)
ddeb8f21
AH
1251#endif
1252
ebfc453e
DV
1253/*
1254 * Save all registers in pt_regs, and switch gs if needed.
1255 * Use slow, but surefire "are we in kernel?" check.
1256 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
1257 */
1258ENTRY(paranoid_entry)
1259 XCPT_FRAME 1 15*8
1eeb207f
DV
1260 cld
1261 SAVE_C_REGS 8
1262 SAVE_EXTRA_REGS 8
1263 movl $1,%ebx
1264 movl $MSR_GS_BASE,%ecx
1265 rdmsr
1266 testl %edx,%edx
1267 js 1f /* negative -> in kernel */
1268 SWAPGS
1269 xorl %ebx,%ebx
12701: ret
1271 CFI_ENDPROC
ebfc453e 1272END(paranoid_entry)
ddeb8f21 1273
ebfc453e
DV
1274/*
1275 * "Paranoid" exit path from exception stack. This is invoked
1276 * only on return from non-NMI IST interrupts that came
1277 * from kernel space.
1278 *
1279 * We may be returning to very strange contexts (e.g. very early
1280 * in syscall entry), so checking for preemption here would
1281 * be complicated. Fortunately, we there's no good reason
1282 * to try to handle preemption here.
1283 */
1284/* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */
ddeb8f21 1285ENTRY(paranoid_exit)
1f130a78 1286 DEFAULT_FRAME
ddeb8f21 1287 DISABLE_INTERRUPTS(CLBR_NONE)
5963e317 1288 TRACE_IRQS_OFF_DEBUG
ddeb8f21 1289 testl %ebx,%ebx /* swapgs needed? */
0d550836 1290 jnz paranoid_exit_no_swapgs
f2db9382 1291 TRACE_IRQS_IRETQ
ddeb8f21 1292 SWAPGS_UNSAFE_STACK
0d550836
DV
1293 jmp paranoid_exit_restore
1294paranoid_exit_no_swapgs:
f2db9382 1295 TRACE_IRQS_IRETQ_DEBUG
0d550836 1296paranoid_exit_restore:
76f5df43
DV
1297 RESTORE_EXTRA_REGS
1298 RESTORE_C_REGS
1299 REMOVE_PT_GPREGS_FROM_STACK 8
48e08d0f 1300 INTERRUPT_RETURN
ddeb8f21
AH
1301 CFI_ENDPROC
1302END(paranoid_exit)
1303
1304/*
ebfc453e
DV
1305 * Save all registers in pt_regs, and switch gs if needed.
1306 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
ddeb8f21
AH
1307 */
1308ENTRY(error_entry)
ebfc453e 1309 XCPT_FRAME 1 15*8
ddeb8f21 1310 cld
76f5df43
DV
1311 SAVE_C_REGS 8
1312 SAVE_EXTRA_REGS 8
ddeb8f21
AH
1313 xorl %ebx,%ebx
1314 testl $3,CS+8(%rsp)
1315 je error_kernelspace
1316error_swapgs:
1317 SWAPGS
1318error_sti:
1319 TRACE_IRQS_OFF
1320 ret
ddeb8f21 1321
ebfc453e
DV
1322 /*
1323 * There are two places in the kernel that can potentially fault with
1324 * usergs. Handle them here. B stepping K8s sometimes report a
1325 * truncated RIP for IRET exceptions returning to compat mode. Check
1326 * for these here too.
1327 */
ddeb8f21 1328error_kernelspace:
3bab13b0 1329 CFI_REL_OFFSET rcx, RCX+8
ddeb8f21 1330 incl %ebx
7209a75d 1331 leaq native_irq_return_iret(%rip),%rcx
ddeb8f21 1332 cmpq %rcx,RIP+8(%rsp)
b645af2d 1333 je error_bad_iret
ae24ffe5
BG
1334 movl %ecx,%eax /* zero extend */
1335 cmpq %rax,RIP+8(%rsp)
1336 je bstep_iret
ddeb8f21 1337 cmpq $gs_change,RIP+8(%rsp)
9f1e87ea 1338 je error_swapgs
ddeb8f21 1339 jmp error_sti
ae24ffe5
BG
1340
1341bstep_iret:
1342 /* Fix truncated RIP */
1343 movq %rcx,RIP+8(%rsp)
b645af2d
AL
1344 /* fall through */
1345
1346error_bad_iret:
1347 SWAPGS
1348 mov %rsp,%rdi
1349 call fixup_bad_iret
1350 mov %rax,%rsp
1351 decl %ebx /* Return to usergs */
1352 jmp error_sti
e6b04b6b 1353 CFI_ENDPROC
ddeb8f21
AH
1354END(error_entry)
1355
1356
ebfc453e 1357/* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */
ddeb8f21
AH
1358ENTRY(error_exit)
1359 DEFAULT_FRAME
1360 movl %ebx,%eax
76f5df43 1361 RESTORE_EXTRA_REGS
ddeb8f21
AH
1362 DISABLE_INTERRUPTS(CLBR_NONE)
1363 TRACE_IRQS_OFF
1364 GET_THREAD_INFO(%rcx)
1365 testl %eax,%eax
1366 jne retint_kernel
1367 LOCKDEP_SYS_EXIT_IRQ
1368 movl TI_flags(%rcx),%edx
1369 movl $_TIF_WORK_MASK,%edi
1370 andl %edi,%edx
1371 jnz retint_careful
1372 jmp retint_swapgs
1373 CFI_ENDPROC
1374END(error_exit)
1375
3f3c8b8c
SR
1376/*
1377 * Test if a given stack is an NMI stack or not.
1378 */
1379 .macro test_in_nmi reg stack nmi_ret normal_ret
1380 cmpq %\reg, \stack
1381 ja \normal_ret
1382 subq $EXCEPTION_STKSZ, %\reg
1383 cmpq %\reg, \stack
1384 jb \normal_ret
1385 jmp \nmi_ret
1386 .endm
ddeb8f21
AH
1387
1388 /* runs on exception stack */
1389ENTRY(nmi)
1390 INTR_FRAME
1391 PARAVIRT_ADJUST_EXCEPTION_FRAME
3f3c8b8c
SR
1392 /*
1393 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1394 * the iretq it performs will take us out of NMI context.
1395 * This means that we can have nested NMIs where the next
1396 * NMI is using the top of the stack of the previous NMI. We
1397 * can't let it execute because the nested NMI will corrupt the
1398 * stack of the previous NMI. NMI handlers are not re-entrant
1399 * anyway.
1400 *
1401 * To handle this case we do the following:
1402 * Check the a special location on the stack that contains
1403 * a variable that is set when NMIs are executing.
1404 * The interrupted task's stack is also checked to see if it
1405 * is an NMI stack.
1406 * If the variable is not set and the stack is not the NMI
1407 * stack then:
1408 * o Set the special variable on the stack
1409 * o Copy the interrupt frame into a "saved" location on the stack
1410 * o Copy the interrupt frame into a "copy" location on the stack
1411 * o Continue processing the NMI
1412 * If the variable is set or the previous stack is the NMI stack:
1413 * o Modify the "copy" location to jump to the repeate_nmi
1414 * o return back to the first NMI
1415 *
1416 * Now on exit of the first NMI, we first clear the stack variable
1417 * The NMI stack will tell any nested NMIs at that point that it is
1418 * nested. Then we pop the stack normally with iret, and if there was
1419 * a nested NMI that updated the copy interrupt stack frame, a
1420 * jump will be made to the repeat_nmi code that will handle the second
1421 * NMI.
1422 */
1423
1424 /* Use %rdx as out temp variable throughout */
1425 pushq_cfi %rdx
62610913 1426 CFI_REL_OFFSET rdx, 0
3f3c8b8c 1427
45d5a168
SR
1428 /*
1429 * If %cs was not the kernel segment, then the NMI triggered in user
1430 * space, which means it is definitely not nested.
1431 */
a38449ef 1432 cmpl $__KERNEL_CS, 16(%rsp)
45d5a168
SR
1433 jne first_nmi
1434
3f3c8b8c
SR
1435 /*
1436 * Check the special variable on the stack to see if NMIs are
1437 * executing.
1438 */
a38449ef 1439 cmpl $1, -8(%rsp)
3f3c8b8c
SR
1440 je nested_nmi
1441
1442 /*
1443 * Now test if the previous stack was an NMI stack.
1444 * We need the double check. We check the NMI stack to satisfy the
1445 * race when the first NMI clears the variable before returning.
1446 * We check the variable because the first NMI could be in a
1447 * breakpoint routine using a breakpoint stack.
1448 */
1449 lea 6*8(%rsp), %rdx
1450 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
62610913 1451 CFI_REMEMBER_STATE
3f3c8b8c
SR
1452
1453nested_nmi:
1454 /*
1455 * Do nothing if we interrupted the fixup in repeat_nmi.
1456 * It's about to repeat the NMI handler, so we are fine
1457 * with ignoring this one.
1458 */
1459 movq $repeat_nmi, %rdx
1460 cmpq 8(%rsp), %rdx
1461 ja 1f
1462 movq $end_repeat_nmi, %rdx
1463 cmpq 8(%rsp), %rdx
1464 ja nested_nmi_out
1465
14661:
1467 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
28696f43 1468 leaq -1*8(%rsp), %rdx
3f3c8b8c 1469 movq %rdx, %rsp
28696f43
SQ
1470 CFI_ADJUST_CFA_OFFSET 1*8
1471 leaq -10*8(%rsp), %rdx
3f3c8b8c
SR
1472 pushq_cfi $__KERNEL_DS
1473 pushq_cfi %rdx
1474 pushfq_cfi
1475 pushq_cfi $__KERNEL_CS
1476 pushq_cfi $repeat_nmi
1477
1478 /* Put stack back */
28696f43
SQ
1479 addq $(6*8), %rsp
1480 CFI_ADJUST_CFA_OFFSET -6*8
3f3c8b8c
SR
1481
1482nested_nmi_out:
1483 popq_cfi %rdx
62610913 1484 CFI_RESTORE rdx
3f3c8b8c
SR
1485
1486 /* No need to check faults here */
1487 INTERRUPT_RETURN
1488
62610913 1489 CFI_RESTORE_STATE
3f3c8b8c
SR
1490first_nmi:
1491 /*
1492 * Because nested NMIs will use the pushed location that we
1493 * stored in rdx, we must keep that space available.
1494 * Here's what our stack frame will look like:
1495 * +-------------------------+
1496 * | original SS |
1497 * | original Return RSP |
1498 * | original RFLAGS |
1499 * | original CS |
1500 * | original RIP |
1501 * +-------------------------+
1502 * | temp storage for rdx |
1503 * +-------------------------+
1504 * | NMI executing variable |
1505 * +-------------------------+
3f3c8b8c
SR
1506 * | copied SS |
1507 * | copied Return RSP |
1508 * | copied RFLAGS |
1509 * | copied CS |
1510 * | copied RIP |
1511 * +-------------------------+
28696f43
SQ
1512 * | Saved SS |
1513 * | Saved Return RSP |
1514 * | Saved RFLAGS |
1515 * | Saved CS |
1516 * | Saved RIP |
1517 * +-------------------------+
3f3c8b8c
SR
1518 * | pt_regs |
1519 * +-------------------------+
1520 *
79fb4ad6
SR
1521 * The saved stack frame is used to fix up the copied stack frame
1522 * that a nested NMI may change to make the interrupted NMI iret jump
1523 * to the repeat_nmi. The original stack frame and the temp storage
3f3c8b8c
SR
1524 * is also used by nested NMIs and can not be trusted on exit.
1525 */
79fb4ad6 1526 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
62610913
JB
1527 movq (%rsp), %rdx
1528 CFI_RESTORE rdx
1529
3f3c8b8c
SR
1530 /* Set the NMI executing variable on the stack. */
1531 pushq_cfi $1
1532
28696f43
SQ
1533 /*
1534 * Leave room for the "copied" frame
1535 */
1536 subq $(5*8), %rsp
444723dc 1537 CFI_ADJUST_CFA_OFFSET 5*8
28696f43 1538
3f3c8b8c
SR
1539 /* Copy the stack frame to the Saved frame */
1540 .rept 5
28696f43 1541 pushq_cfi 11*8(%rsp)
3f3c8b8c 1542 .endr
911d2bb5 1543 CFI_DEF_CFA_OFFSET 5*8
62610913 1544
79fb4ad6
SR
1545 /* Everything up to here is safe from nested NMIs */
1546
62610913
JB
1547 /*
1548 * If there was a nested NMI, the first NMI's iret will return
1549 * here. But NMIs are still enabled and we can take another
1550 * nested NMI. The nested NMI checks the interrupted RIP to see
1551 * if it is between repeat_nmi and end_repeat_nmi, and if so
1552 * it will just return, as we are about to repeat an NMI anyway.
1553 * This makes it safe to copy to the stack frame that a nested
1554 * NMI will update.
1555 */
1556repeat_nmi:
1557 /*
1558 * Update the stack variable to say we are still in NMI (the update
1559 * is benign for the non-repeat case, where 1 was pushed just above
1560 * to this very stack slot).
1561 */
28696f43 1562 movq $1, 10*8(%rsp)
3f3c8b8c
SR
1563
1564 /* Make another copy, this one may be modified by nested NMIs */
28696f43
SQ
1565 addq $(10*8), %rsp
1566 CFI_ADJUST_CFA_OFFSET -10*8
3f3c8b8c 1567 .rept 5
28696f43 1568 pushq_cfi -6*8(%rsp)
3f3c8b8c 1569 .endr
28696f43 1570 subq $(5*8), %rsp
911d2bb5 1571 CFI_DEF_CFA_OFFSET 5*8
62610913 1572end_repeat_nmi:
3f3c8b8c
SR
1573
1574 /*
1575 * Everything below this point can be preempted by a nested
79fb4ad6
SR
1576 * NMI if the first NMI took an exception and reset our iret stack
1577 * so that we repeat another NMI.
3f3c8b8c 1578 */
1fd466ef 1579 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
76f5df43
DV
1580 ALLOC_PT_GPREGS_ON_STACK
1581
1fd466ef 1582 /*
ebfc453e 1583 * Use paranoid_entry to handle SWAPGS, but no need to use paranoid_exit
1fd466ef
SR
1584 * as we should not be calling schedule in NMI context.
1585 * Even with normal interrupts enabled. An NMI should not be
1586 * setting NEED_RESCHED or anything that normal interrupts and
1587 * exceptions might do.
1588 */
ebfc453e 1589 call paranoid_entry
ddeb8f21 1590 DEFAULT_FRAME 0
7fbb98c5
SR
1591
1592 /*
1593 * Save off the CR2 register. If we take a page fault in the NMI then
1594 * it could corrupt the CR2 value. If the NMI preempts a page fault
1595 * handler before it was able to read the CR2 register, and then the
1596 * NMI itself takes a page fault, the page fault that was preempted
1597 * will read the information from the NMI page fault and not the
1598 * origin fault. Save it off and restore it if it changes.
1599 * Use the r12 callee-saved register.
1600 */
1601 movq %cr2, %r12
1602
ddeb8f21
AH
1603 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1604 movq %rsp,%rdi
1605 movq $-1,%rsi
1606 call do_nmi
7fbb98c5
SR
1607
1608 /* Did the NMI take a page fault? Restore cr2 if it did */
1609 movq %cr2, %rcx
1610 cmpq %rcx, %r12
1611 je 1f
1612 movq %r12, %cr2
16131:
1614
ddeb8f21
AH
1615 testl %ebx,%ebx /* swapgs needed? */
1616 jnz nmi_restore
ddeb8f21
AH
1617nmi_swapgs:
1618 SWAPGS_UNSAFE_STACK
1619nmi_restore:
76f5df43
DV
1620 RESTORE_EXTRA_REGS
1621 RESTORE_C_REGS
444723dc 1622 /* Pop the extra iret frame at once */
76f5df43 1623 REMOVE_PT_GPREGS_FROM_STACK 6*8
28696f43 1624
3f3c8b8c 1625 /* Clear the NMI executing stack variable */
28696f43 1626 movq $0, 5*8(%rsp)
ddeb8f21 1627 jmp irq_return
9f1e87ea 1628 CFI_ENDPROC
ddeb8f21
AH
1629END(nmi)
1630
1631ENTRY(ignore_sysret)
1632 CFI_STARTPROC
1633 mov $-ENOSYS,%eax
1634 sysret
1635 CFI_ENDPROC
1636END(ignore_sysret)
1637