2 * linux/arch/x86_64/entry.S
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>
10 * entry.S contains the system-call and fault low-level handling routines.
12 * Some of this is documented in Documentation/x86/entry_64.txt
14 * NOTE: This code handles signal-recognition, which happens every time
15 * after an interrupt and after each system call.
17 * Normal syscalls and interrupts don't save a full stack frame, this is
18 * only done for syscall tracing, signals or fork/exec et.al.
20 * A note on terminology:
21 * - top of stack: Architecture defined interrupt frame from SS to RIP
22 * at the top of the kernel process stack.
23 * - partial stack frame: partially saved registers up to R11.
24 * - full stack frame: Like partial stack frame, but all register saved.
27 * - CFI macros are used to generate dwarf2 unwind information for better
28 * backtraces. They don't change any code.
29 * - SAVE_ALL/RESTORE_ALL - Save/restore all registers
30 * - SAVE_ARGS/RESTORE_ARGS - Save/restore registers that C functions modify.
31 * There are unfortunately lots of special cases where some registers
32 * not touched. The macro is a big mess that should be cleaned up.
33 * - SAVE_REST/RESTORE_REST - Handle the registers not saved by SAVE_ARGS.
34 * Gives a full stack frame.
35 * - ENTRY/END Define functions in the symbol table.
36 * - FIXUP_TOP_OF_STACK/RESTORE_TOP_OF_STACK - Fix up the hardware stack
37 * frame that is otherwise undefined after a SYSCALL
38 * - TRACE_IRQ_* - Trace hard interrupt state for lock debugging.
39 * - errorentry/paranoidentry/zeroentry - Define exception entry points.
42 #include <linux/linkage.h>
43 #include <asm/segment.h>
44 #include <asm/cache.h>
45 #include <asm/errno.h>
46 #include <asm/dwarf2.h>
47 #include <asm/calling.h>
48 #include <asm/asm-offsets.h>
50 #include <asm/unistd.h>
51 #include <asm/thread_info.h>
52 #include <asm/hw_irq.h>
53 #include <asm/page_types.h>
54 #include <asm/irqflags.h>
55 #include <asm/paravirt.h>
56 #include <asm/ftrace.h>
57 #include <asm/percpu.h>
59 #include <asm/context_tracking.h>
61 #include <linux/err.h>
63 /* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
64 #include <linux/elf-em.h>
65 #define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
66 #define __AUDIT_ARCH_64BIT 0x80000000
67 #define __AUDIT_ARCH_LE 0x40000000
70 .section .entry.text, "ax"
72 #ifdef CONFIG_FUNCTION_TRACER
74 #ifdef CC_USING_FENTRY
75 # define function_hook __fentry__
77 # define function_hook mcount
80 #ifdef CONFIG_DYNAMIC_FTRACE
86 /* skip is set if stack has been adjusted */
87 .macro ftrace_caller_setup skip=0
88 MCOUNT_SAVE_FRAME \skip
90 /* Load the ftrace_ops into the 3rd parameter */
91 leaq function_trace_op, %rdx
93 /* Load ip into the first parameter */
95 subq $MCOUNT_INSN_SIZE, %rdi
96 /* Load the parent_ip into the second parameter */
97 #ifdef CC_USING_FENTRY
98 movq SS+16(%rsp), %rsi
105 /* Check if tracing was disabled (quick check) */
106 cmpl $0, function_trace_stop
110 /* regs go into 4th parameter (but make it NULL) */
119 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
120 GLOBAL(ftrace_graph_call)
128 ENTRY(ftrace_regs_caller)
129 /* Save the current flags before compare (in SS location)*/
132 /* Check if tracing was disabled (quick check) */
133 cmpl $0, function_trace_stop
134 jne ftrace_restore_flags
136 /* skip=8 to skip flags saved in SS */
137 ftrace_caller_setup 8
139 /* Save the rest of pt_regs */
148 /* Copy saved flags */
150 movq %rcx, EFLAGS(%rsp)
151 /* Kernel segments */
152 movq $__KERNEL_DS, %rcx
154 movq $__KERNEL_CS, %rcx
156 /* Stack - skipping return address */
157 leaq SS+16(%rsp), %rcx
160 /* regs go into 4th parameter */
163 GLOBAL(ftrace_regs_call)
166 /* Copy flags back to SS, to restore them */
167 movq EFLAGS(%rsp), %rax
170 /* Handlers can change the RIP */
172 movq %rax, SS+8(%rsp)
174 /* restore the rest of pt_regs */
183 /* skip=8 to skip flags saved in SS */
184 MCOUNT_RESTORE_FRAME 8
190 ftrace_restore_flags:
194 END(ftrace_regs_caller)
197 #else /* ! CONFIG_DYNAMIC_FTRACE */
200 cmpl $0, function_trace_stop
203 cmpq $ftrace_stub, ftrace_trace_function
206 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
207 cmpq $ftrace_stub, ftrace_graph_return
208 jnz ftrace_graph_caller
210 cmpq $ftrace_graph_entry_stub, ftrace_graph_entry
211 jnz ftrace_graph_caller
221 #ifdef CC_USING_FENTRY
222 movq SS+16(%rsp), %rsi
226 subq $MCOUNT_INSN_SIZE, %rdi
228 call *ftrace_trace_function
234 #endif /* CONFIG_DYNAMIC_FTRACE */
235 #endif /* CONFIG_FUNCTION_TRACER */
237 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
238 ENTRY(ftrace_graph_caller)
241 #ifdef CC_USING_FENTRY
242 leaq SS+16(%rsp), %rdi
243 movq $0, %rdx /* No framepointers needed */
249 subq $MCOUNT_INSN_SIZE, %rsi
251 call prepare_ftrace_return
256 END(ftrace_graph_caller)
258 GLOBAL(return_to_handler)
261 /* Save the return values */
266 call ftrace_return_to_handler
276 #ifndef CONFIG_PREEMPT
277 #define retint_kernel retint_restore_args
280 #ifdef CONFIG_PARAVIRT
281 ENTRY(native_usergs_sysret64)
284 ENDPROC(native_usergs_sysret64)
285 #endif /* CONFIG_PARAVIRT */
288 .macro TRACE_IRQS_IRETQ offset=ARGOFFSET
289 #ifdef CONFIG_TRACE_IRQFLAGS
290 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
298 * When dynamic function tracer is enabled it will add a breakpoint
299 * to all locations that it is about to modify, sync CPUs, update
300 * all the code, sync CPUs, then remove the breakpoints. In this time
301 * if lockdep is enabled, it might jump back into the debug handler
302 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
304 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
305 * make sure the stack pointer does not get reset back to the top
306 * of the debug stack, and instead just reuses the current stack.
308 #if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
310 .macro TRACE_IRQS_OFF_DEBUG
311 call debug_stack_set_zero
313 call debug_stack_reset
316 .macro TRACE_IRQS_ON_DEBUG
317 call debug_stack_set_zero
319 call debug_stack_reset
322 .macro TRACE_IRQS_IRETQ_DEBUG offset=ARGOFFSET
323 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
330 # define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
331 # define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
332 # define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
336 * C code is not supposed to know about undefined top of stack. Every time
337 * a C function with an pt_regs argument is called from the SYSCALL based
338 * fast path FIXUP_TOP_OF_STACK is needed.
339 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
343 /* %rsp:at FRAMEEND */
344 .macro FIXUP_TOP_OF_STACK tmp offset=0
345 movq PER_CPU_VAR(old_rsp),\tmp
346 movq \tmp,RSP+\offset(%rsp)
347 movq $__USER_DS,SS+\offset(%rsp)
348 movq $__USER_CS,CS+\offset(%rsp)
349 movq $-1,RCX+\offset(%rsp)
350 movq R11+\offset(%rsp),\tmp /* get eflags */
351 movq \tmp,EFLAGS+\offset(%rsp)
354 .macro RESTORE_TOP_OF_STACK tmp offset=0
355 movq RSP+\offset(%rsp),\tmp
356 movq \tmp,PER_CPU_VAR(old_rsp)
357 movq EFLAGS+\offset(%rsp),\tmp
358 movq \tmp,R11+\offset(%rsp)
361 .macro FAKE_STACK_FRAME child_rip
362 /* push in order ss, rsp, eflags, cs, rip */
364 pushq_cfi $__KERNEL_DS /* ss */
365 /*CFI_REL_OFFSET ss,0*/
366 pushq_cfi %rax /* rsp */
368 pushq_cfi $(X86_EFLAGS_IF|X86_EFLAGS_BIT1) /* eflags - interrupts on */
369 /*CFI_REL_OFFSET rflags,0*/
370 pushq_cfi $__KERNEL_CS /* cs */
371 /*CFI_REL_OFFSET cs,0*/
372 pushq_cfi \child_rip /* rip */
374 pushq_cfi %rax /* orig rax */
377 .macro UNFAKE_STACK_FRAME
379 CFI_ADJUST_CFA_OFFSET -(6*8)
383 * initial frame state for interrupts (and exceptions without error code)
385 .macro EMPTY_FRAME start=1 offset=0
389 CFI_DEF_CFA rsp,8+\offset
391 CFI_DEF_CFA_OFFSET 8+\offset
396 * initial frame state for interrupts (and exceptions without error code)
398 .macro INTR_FRAME start=1 offset=0
399 EMPTY_FRAME \start, SS+8+\offset-RIP
400 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
401 CFI_REL_OFFSET rsp, RSP+\offset-RIP
402 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
403 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
404 CFI_REL_OFFSET rip, RIP+\offset-RIP
408 * initial frame state for exceptions with error code (and interrupts
409 * with vector already pushed)
411 .macro XCPT_FRAME start=1 offset=0
412 INTR_FRAME \start, RIP+\offset-ORIG_RAX
413 /*CFI_REL_OFFSET orig_rax, ORIG_RAX-ORIG_RAX*/
417 * frame that enables calling into C.
419 .macro PARTIAL_FRAME start=1 offset=0
420 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
421 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
422 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
423 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
424 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
425 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
426 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
427 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
428 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
429 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
433 * frame that enables passing a complete pt_regs to a C function.
435 .macro DEFAULT_FRAME start=1 offset=0
436 PARTIAL_FRAME \start, R11+\offset-R15
437 CFI_REL_OFFSET rbx, RBX+\offset
438 CFI_REL_OFFSET rbp, RBP+\offset
439 CFI_REL_OFFSET r12, R12+\offset
440 CFI_REL_OFFSET r13, R13+\offset
441 CFI_REL_OFFSET r14, R14+\offset
442 CFI_REL_OFFSET r15, R15+\offset
445 /* save partial stack frame */
448 /* start from rbp in pt_regs and jump over */
449 movq_cfi rdi, (RDI-RBP)
450 movq_cfi rsi, (RSI-RBP)
451 movq_cfi rdx, (RDX-RBP)
452 movq_cfi rcx, (RCX-RBP)
453 movq_cfi rax, (RAX-RBP)
454 movq_cfi r8, (R8-RBP)
455 movq_cfi r9, (R9-RBP)
456 movq_cfi r10, (R10-RBP)
457 movq_cfi r11, (R11-RBP)
459 /* Save rbp so that we can unwind from get_irq_regs() */
462 /* Save previous stack value */
465 leaq -RBP(%rsp),%rdi /* arg1 for handler */
466 testl $3, CS-RBP(%rsi)
470 * irq_count is used to check if a CPU is already on an interrupt stack
471 * or not. While this is essentially redundant with preempt_count it is
472 * a little cheaper to use a separate counter in the PDA (short of
473 * moving irq_enter into assembly, which would be too much work)
475 1: incl PER_CPU_VAR(irq_count)
476 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
477 CFI_DEF_CFA_REGISTER rsi
479 /* Store previous stack value */
481 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
482 0x77 /* DW_OP_breg7 */, 0, \
483 0x06 /* DW_OP_deref */, \
484 0x08 /* DW_OP_const1u */, SS+8-RBP, \
485 0x22 /* DW_OP_plus */
486 /* We entered an interrupt context - irqs are off: */
491 PARTIAL_FRAME 1 (REST_SKIP+8)
492 movq 5*8+16(%rsp), %r11 /* save return address */
499 movq %r11, 8(%rsp) /* return address */
500 FIXUP_TOP_OF_STACK %r11, 16
505 /* save complete stack frame */
506 .pushsection .kprobes.text, "ax"
526 movl $MSR_GS_BASE,%ecx
529 js 1f /* negative -> in kernel */
538 * A newly forked process directly context switches into this address.
540 * rdi: prev task we switched from
545 LOCK ; btr $TIF_FORK,TI_flags(%r8)
548 popfq_cfi # reset kernel eflags
550 call schedule_tail # rdi: 'prev' task parameter
552 GET_THREAD_INFO(%rcx)
556 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
559 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
560 jnz int_ret_from_sys_call
562 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
563 jmp ret_from_sys_call # go to the SYSRET fastpath
566 subq $REST_SKIP, %rsp # leave space for volatiles
567 CFI_ADJUST_CFA_OFFSET REST_SKIP
572 jmp int_ret_from_sys_call
577 * System call entry. Up to 6 arguments in registers are supported.
579 * SYSCALL does not save anything on the stack and does not change the
580 * stack pointer. However, it does mask the flags register for us, so
581 * CLD and CLAC are not needed.
586 * rax system call number
588 * rcx return address for syscall/sysret, C arg3
591 * r10 arg3 (--> moved to rcx for C)
594 * r11 eflags for syscall/sysret, temporary for C
595 * r12-r15,rbp,rbx saved by C code, not touched.
597 * Interrupts are off on entry.
598 * Only called from user space.
600 * XXX if we had a free scratch register we could save the RSP into the stack frame
601 * and report it properly in ps. Unfortunately we haven't.
603 * When user can change the frames always force IRET. That is because
604 * it deals with uncanonical addresses better. SYSRET has trouble
605 * with them due to bugs in both AMD and Intel CPUs.
611 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
613 /*CFI_REGISTER rflags,r11*/
616 * A hypervisor implementation might want to use a label
617 * after the swapgs, so that it can do the swapgs
618 * for the guest and jump here on syscall.
620 GLOBAL(system_call_after_swapgs)
622 movq %rsp,PER_CPU_VAR(old_rsp)
623 movq PER_CPU_VAR(kernel_stack),%rsp
625 * No need to follow this irqs off/on section - it's straight
628 ENABLE_INTERRUPTS(CLBR_NONE)
630 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
631 movq %rcx,RIP-ARGOFFSET(%rsp)
632 CFI_REL_OFFSET rip,RIP-ARGOFFSET
633 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
635 system_call_fastpath:
636 #if __SYSCALL_MASK == ~0
637 cmpq $__NR_syscall_max,%rax
639 andl $__SYSCALL_MASK,%eax
640 cmpl $__NR_syscall_max,%eax
644 call *sys_call_table(,%rax,8) # XXX: rip relative
645 movq %rax,RAX-ARGOFFSET(%rsp)
647 * Syscall return path ending with SYSRET (fast path)
648 * Has incomplete stack frame and undefined top of stack.
651 movl $_TIF_ALLWORK_MASK,%edi
655 DISABLE_INTERRUPTS(CLBR_NONE)
657 movl TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET),%edx
662 * sysretq will re-enable interrupts:
665 movq RIP-ARGOFFSET(%rsp),%rcx
667 RESTORE_ARGS 1,-ARG_SKIP,0
668 /*CFI_REGISTER rflags,r11*/
669 movq PER_CPU_VAR(old_rsp), %rsp
673 /* Handle reschedules */
674 /* edx: work, edi: workmask */
676 bt $TIF_NEED_RESCHED,%edx
679 ENABLE_INTERRUPTS(CLBR_NONE)
685 /* Handle a signal */
688 ENABLE_INTERRUPTS(CLBR_NONE)
689 #ifdef CONFIG_AUDITSYSCALL
690 bt $TIF_SYSCALL_AUDIT,%edx
694 * We have a signal, or exit tracing or single-step.
695 * These all wind up with the iret return path anyway,
696 * so just join that path right now.
698 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
699 jmp int_check_syscall_exit_work
702 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
703 jmp ret_from_sys_call
705 #ifdef CONFIG_AUDITSYSCALL
707 * Fast path for syscall audit without full syscall trace.
708 * We just call __audit_syscall_entry() directly, and then
709 * jump back to the normal fast path.
712 movq %r10,%r9 /* 6th arg: 4th syscall arg */
713 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
714 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
715 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
716 movq %rax,%rsi /* 2nd arg: syscall number */
717 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
718 call __audit_syscall_entry
719 LOAD_ARGS 0 /* reload call-clobbered registers */
720 jmp system_call_fastpath
723 * Return fast path for syscall audit. Call __audit_syscall_exit()
724 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
728 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
729 cmpq $-MAX_ERRNO,%rsi /* is it < -MAX_ERRNO? */
730 setbe %al /* 1 if so, 0 if not */
731 movzbl %al,%edi /* zero-extend that into %edi */
732 call __audit_syscall_exit
733 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
735 #endif /* CONFIG_AUDITSYSCALL */
737 /* Do syscall tracing */
739 #ifdef CONFIG_AUDITSYSCALL
740 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
744 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
745 FIXUP_TOP_OF_STACK %rdi
747 call syscall_trace_enter
749 * Reload arg registers from stack in case ptrace changed them.
750 * We don't reload %rax because syscall_trace_enter() returned
751 * the value it wants us to use in the table lookup.
753 LOAD_ARGS ARGOFFSET, 1
755 #if __SYSCALL_MASK == ~0
756 cmpq $__NR_syscall_max,%rax
758 andl $__SYSCALL_MASK,%eax
759 cmpl $__NR_syscall_max,%eax
761 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
762 movq %r10,%rcx /* fixup for C */
763 call *sys_call_table(,%rax,8)
764 movq %rax,RAX-ARGOFFSET(%rsp)
765 /* Use IRET because user could have changed frame */
768 * Syscall return path ending with IRET.
769 * Has correct top of stack, but partial stack frame.
771 GLOBAL(int_ret_from_sys_call)
772 DISABLE_INTERRUPTS(CLBR_NONE)
774 movl $_TIF_ALLWORK_MASK,%edi
775 /* edi: mask to check */
776 GLOBAL(int_with_check)
778 GET_THREAD_INFO(%rcx)
779 movl TI_flags(%rcx),%edx
782 andl $~TS_COMPAT,TI_status(%rcx)
785 /* Either reschedule or signal or syscall exit tracking needed. */
786 /* First do a reschedule test. */
787 /* edx: work, edi: workmask */
789 bt $TIF_NEED_RESCHED,%edx
792 ENABLE_INTERRUPTS(CLBR_NONE)
796 DISABLE_INTERRUPTS(CLBR_NONE)
800 /* handle signals and tracing -- both require a full stack frame */
803 ENABLE_INTERRUPTS(CLBR_NONE)
804 int_check_syscall_exit_work:
806 /* Check for syscall exit trace */
807 testl $_TIF_WORK_SYSCALL_EXIT,%edx
810 leaq 8(%rsp),%rdi # &ptregs -> arg1
811 call syscall_trace_leave
813 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
817 testl $_TIF_DO_NOTIFY_MASK,%edx
819 movq %rsp,%rdi # &ptregs -> arg1
820 xorl %esi,%esi # oldset -> arg2
821 call do_notify_resume
822 1: movl $_TIF_WORK_MASK,%edi
825 DISABLE_INTERRUPTS(CLBR_NONE)
831 .macro FORK_LIKE func
834 popq %r11 /* save return address */
837 pushq %r11 /* put it back on stack */
838 FIXUP_TOP_OF_STACK %r11, 8
839 DEFAULT_FRAME 0 8 /* offset 8: return address */
841 RESTORE_TOP_OF_STACK %r11, 8
842 ret $REST_SKIP /* pop extended registers */
847 .macro FIXED_FRAME label,func
850 PARTIAL_FRAME 0 8 /* offset 8: return address */
851 FIXUP_TOP_OF_STACK %r11, 8-ARGOFFSET
853 RESTORE_TOP_OF_STACK %r11, 8-ARGOFFSET
862 FIXED_FRAME stub_iopl, sys_iopl
864 ENTRY(ptregscall_common)
865 DEFAULT_FRAME 1 8 /* offset 8: return address */
866 RESTORE_TOP_OF_STACK %r11, 8
867 movq_cfi_restore R15+8, r15
868 movq_cfi_restore R14+8, r14
869 movq_cfi_restore R13+8, r13
870 movq_cfi_restore R12+8, r12
871 movq_cfi_restore RBP+8, rbp
872 movq_cfi_restore RBX+8, rbx
873 ret $REST_SKIP /* pop extended registers */
875 END(ptregscall_common)
882 FIXUP_TOP_OF_STACK %r11
886 jmp int_ret_from_sys_call
891 * sigreturn is special because it needs to restore all registers on return.
892 * This cannot be done with SYSRET, so use the IRET return path instead.
894 ENTRY(stub_rt_sigreturn)
899 FIXUP_TOP_OF_STACK %r11
900 call sys_rt_sigreturn
901 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
903 jmp int_ret_from_sys_call
905 END(stub_rt_sigreturn)
907 #ifdef CONFIG_X86_X32_ABI
908 ENTRY(stub_x32_rt_sigreturn)
913 FIXUP_TOP_OF_STACK %r11
914 call sys32_x32_rt_sigreturn
915 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
917 jmp int_ret_from_sys_call
919 END(stub_x32_rt_sigreturn)
921 ENTRY(stub_x32_execve)
926 FIXUP_TOP_OF_STACK %r11
927 call compat_sys_execve
928 RESTORE_TOP_OF_STACK %r11
931 jmp int_ret_from_sys_call
938 * Build the entry stubs and pointer table with some assembler magic.
939 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
940 * single cache line on all modern x86 implementations.
942 .section .init.rodata,"a"
946 .p2align CONFIG_X86_L1_CACHE_SHIFT
947 ENTRY(irq_entries_start)
949 vector=FIRST_EXTERNAL_VECTOR
950 .rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
953 .if vector < NR_VECTORS
954 .if vector <> FIRST_EXTERNAL_VECTOR
955 CFI_ADJUST_CFA_OFFSET -8
957 1: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
958 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
967 2: jmp common_interrupt
970 END(irq_entries_start)
977 * Interrupt entry/exit.
979 * Interrupt entry points save only callee clobbered registers in fast path.
981 * Entry runs with interrupts off.
984 /* 0(%rsp): ~(interrupt number) */
985 .macro interrupt func
986 /* reserve pt_regs for scratch regs and rbp */
987 subq $ORIG_RAX-RBP, %rsp
988 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
994 * Interrupt entry/exit should be protected against kprobes
996 .pushsection .kprobes.text, "ax"
998 * The interrupt stubs push (~vector+0x80) onto the stack and
999 * then jump to common_interrupt.
1001 .p2align CONFIG_X86_L1_CACHE_SHIFT
1005 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
1007 /* 0(%rsp): old_rsp-ARGOFFSET */
1009 DISABLE_INTERRUPTS(CLBR_NONE)
1011 decl PER_CPU_VAR(irq_count)
1013 /* Restore saved previous stack */
1015 CFI_DEF_CFA rsi,SS+8-RBP /* reg/off reset after def_cfa_expr */
1016 leaq ARGOFFSET-RBP(%rsi), %rsp
1017 CFI_DEF_CFA_REGISTER rsp
1018 CFI_ADJUST_CFA_OFFSET RBP-ARGOFFSET
1021 GET_THREAD_INFO(%rcx)
1022 testl $3,CS-ARGOFFSET(%rsp)
1025 /* Interrupt came from user space */
1027 * Has a correct top of stack, but a partial stack frame
1028 * %rcx: thread info. Interrupts off.
1030 retint_with_reschedule:
1031 movl $_TIF_WORK_MASK,%edi
1033 LOCKDEP_SYS_EXIT_IRQ
1034 movl TI_flags(%rcx),%edx
1039 retint_swapgs: /* return to user-space */
1041 * The iretq could re-enable interrupts:
1043 DISABLE_INTERRUPTS(CLBR_ANY)
1048 retint_restore_args: /* return to kernel space */
1049 DISABLE_INTERRUPTS(CLBR_ANY)
1051 * The iretq could re-enable interrupts:
1059 _ASM_EXTABLE(irq_return, bad_iret)
1061 #ifdef CONFIG_PARAVIRT
1064 _ASM_EXTABLE(native_iret, bad_iret)
1067 .section .fixup,"ax"
1070 * The iret traps when the %cs or %ss being restored is bogus.
1071 * We've lost the original trap vector and error code.
1072 * #GPF is the most likely one to get for an invalid selector.
1073 * So pretend we completed the iret and took the #GPF in user mode.
1075 * We are now running with the kernel GS after exception recovery.
1076 * But error_entry expects us to have user GS to match the user %cs,
1082 jmp general_protection
1086 /* edi: workmask, edx: work */
1089 bt $TIF_NEED_RESCHED,%edx
1092 ENABLE_INTERRUPTS(CLBR_NONE)
1096 GET_THREAD_INFO(%rcx)
1097 DISABLE_INTERRUPTS(CLBR_NONE)
1102 testl $_TIF_DO_NOTIFY_MASK,%edx
1105 ENABLE_INTERRUPTS(CLBR_NONE)
1107 movq $-1,ORIG_RAX(%rsp)
1108 xorl %esi,%esi # oldset
1109 movq %rsp,%rdi # &pt_regs
1110 call do_notify_resume
1112 DISABLE_INTERRUPTS(CLBR_NONE)
1114 GET_THREAD_INFO(%rcx)
1115 jmp retint_with_reschedule
1117 #ifdef CONFIG_PREEMPT
1118 /* Returning to kernel space. Check if we need preemption */
1119 /* rcx: threadinfo. interrupts off. */
1120 ENTRY(retint_kernel)
1121 cmpl $0,TI_preempt_count(%rcx)
1122 jnz retint_restore_args
1123 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
1124 jnc retint_restore_args
1125 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
1126 jnc retint_restore_args
1127 call preempt_schedule_irq
1132 END(common_interrupt)
1134 * End of kprobes section
1141 .macro apicinterrupt num sym do_sym
1154 apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
1155 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
1156 apicinterrupt REBOOT_VECTOR \
1157 reboot_interrupt smp_reboot_interrupt
1160 #ifdef CONFIG_X86_UV
1161 apicinterrupt UV_BAU_MESSAGE \
1162 uv_bau_message_intr1 uv_bau_message_interrupt
1164 apicinterrupt LOCAL_TIMER_VECTOR \
1165 apic_timer_interrupt smp_apic_timer_interrupt
1166 apicinterrupt X86_PLATFORM_IPI_VECTOR \
1167 x86_platform_ipi smp_x86_platform_ipi
1169 apicinterrupt THRESHOLD_APIC_VECTOR \
1170 threshold_interrupt smp_threshold_interrupt
1171 apicinterrupt THERMAL_APIC_VECTOR \
1172 thermal_interrupt smp_thermal_interrupt
1175 apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1176 call_function_single_interrupt smp_call_function_single_interrupt
1177 apicinterrupt CALL_FUNCTION_VECTOR \
1178 call_function_interrupt smp_call_function_interrupt
1179 apicinterrupt RESCHEDULE_VECTOR \
1180 reschedule_interrupt smp_reschedule_interrupt
1183 apicinterrupt ERROR_APIC_VECTOR \
1184 error_interrupt smp_error_interrupt
1185 apicinterrupt SPURIOUS_APIC_VECTOR \
1186 spurious_interrupt smp_spurious_interrupt
1188 #ifdef CONFIG_IRQ_WORK
1189 apicinterrupt IRQ_WORK_VECTOR \
1190 irq_work_interrupt smp_irq_work_interrupt
1194 * Exception entry points.
1196 .macro zeroentry sym do_sym
1200 PARAVIRT_ADJUST_EXCEPTION_FRAME
1201 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1202 subq $ORIG_RAX-R15, %rsp
1203 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1206 movq %rsp,%rdi /* pt_regs pointer */
1207 xorl %esi,%esi /* no error code */
1209 jmp error_exit /* %ebx: no swapgs flag */
1214 .macro paranoidzeroentry sym do_sym
1218 PARAVIRT_ADJUST_EXCEPTION_FRAME
1219 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1220 subq $ORIG_RAX-R15, %rsp
1221 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1224 movq %rsp,%rdi /* pt_regs pointer */
1225 xorl %esi,%esi /* no error code */
1227 jmp paranoid_exit /* %ebx: no swapgs flag */
1232 #define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
1233 .macro paranoidzeroentry_ist sym do_sym ist
1237 PARAVIRT_ADJUST_EXCEPTION_FRAME
1238 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1239 subq $ORIG_RAX-R15, %rsp
1240 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1242 TRACE_IRQS_OFF_DEBUG
1243 movq %rsp,%rdi /* pt_regs pointer */
1244 xorl %esi,%esi /* no error code */
1245 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
1247 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
1248 jmp paranoid_exit /* %ebx: no swapgs flag */
1253 .macro errorentry sym do_sym
1257 PARAVIRT_ADJUST_EXCEPTION_FRAME
1258 subq $ORIG_RAX-R15, %rsp
1259 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1262 movq %rsp,%rdi /* pt_regs pointer */
1263 movq ORIG_RAX(%rsp),%rsi /* get error code */
1264 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1266 jmp error_exit /* %ebx: no swapgs flag */
1271 /* error code is on the stack already */
1272 .macro paranoiderrorentry sym do_sym
1276 PARAVIRT_ADJUST_EXCEPTION_FRAME
1277 subq $ORIG_RAX-R15, %rsp
1278 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1282 movq %rsp,%rdi /* pt_regs pointer */
1283 movq ORIG_RAX(%rsp),%rsi /* get error code */
1284 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1286 jmp paranoid_exit /* %ebx: no swapgs flag */
1291 zeroentry divide_error do_divide_error
1292 zeroentry overflow do_overflow
1293 zeroentry bounds do_bounds
1294 zeroentry invalid_op do_invalid_op
1295 zeroentry device_not_available do_device_not_available
1296 paranoiderrorentry double_fault do_double_fault
1297 zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1298 errorentry invalid_TSS do_invalid_TSS
1299 errorentry segment_not_present do_segment_not_present
1300 zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1301 zeroentry coprocessor_error do_coprocessor_error
1302 errorentry alignment_check do_alignment_check
1303 zeroentry simd_coprocessor_error do_simd_coprocessor_error
1306 /* Reload gs selector with exception handling */
1307 /* edi: new selector */
1308 ENTRY(native_load_gs_index)
1311 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
1315 2: mfence /* workaround */
1320 END(native_load_gs_index)
1322 _ASM_EXTABLE(gs_change,bad_gs)
1323 .section .fixup,"ax"
1324 /* running with kernelgs */
1326 SWAPGS /* switch back to user gs */
1332 /* Call softirq on interrupt stack. Interrupts are off. */
1336 CFI_REL_OFFSET rbp,0
1338 CFI_DEF_CFA_REGISTER rbp
1339 incl PER_CPU_VAR(irq_count)
1340 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
1341 push %rbp # backlink for old unwinder
1345 CFI_DEF_CFA_REGISTER rsp
1346 CFI_ADJUST_CFA_OFFSET -8
1347 decl PER_CPU_VAR(irq_count)
1353 zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
1356 * A note on the "critical region" in our callback handler.
1357 * We want to avoid stacking callback handlers due to events occurring
1358 * during handling of the last event. To do this, we keep events disabled
1359 * until we've done all processing. HOWEVER, we must enable events before
1360 * popping the stack frame (can't be done atomically) and so it would still
1361 * be possible to get enough handler activations to overflow the stack.
1362 * Although unlikely, bugs of that kind are hard to track down, so we'd
1363 * like to avoid the possibility.
1364 * So, on entry to the handler we detect whether we interrupted an
1365 * existing activation in its critical region -- if so, we pop the current
1366 * activation and restart the handler using the previous one.
1368 ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1371 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1372 * see the correct pointer to the pt_regs
1374 movq %rdi, %rsp # we don't return, adjust the stack frame
1377 11: incl PER_CPU_VAR(irq_count)
1379 CFI_DEF_CFA_REGISTER rbp
1380 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
1381 pushq %rbp # backlink for old unwinder
1382 call xen_evtchn_do_upcall
1384 CFI_DEF_CFA_REGISTER rsp
1385 decl PER_CPU_VAR(irq_count)
1388 END(xen_do_hypervisor_callback)
1391 * Hypervisor uses this for application faults while it executes.
1392 * We get here for two reasons:
1393 * 1. Fault while reloading DS, ES, FS or GS
1394 * 2. Fault while executing IRET
1395 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1396 * registers that could be reloaded and zeroed the others.
1397 * Category 2 we fix up by killing the current process. We cannot use the
1398 * normal Linux return path in this case because if we use the IRET hypercall
1399 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1400 * We distinguish between categories by comparing each saved segment register
1401 * with its current contents: any discrepancy means we in category 1.
1403 ENTRY(xen_failsafe_callback)
1405 /*CFI_REL_OFFSET gs,GS*/
1406 /*CFI_REL_OFFSET fs,FS*/
1407 /*CFI_REL_OFFSET es,ES*/
1408 /*CFI_REL_OFFSET ds,DS*/
1409 CFI_REL_OFFSET r11,8
1410 CFI_REL_OFFSET rcx,0
1424 /* All segments match their saved values => Category 2 (Bad IRET). */
1430 CFI_ADJUST_CFA_OFFSET -0x30
1431 pushq_cfi $0 /* RIP */
1434 jmp general_protection
1436 1: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1442 CFI_ADJUST_CFA_OFFSET -0x30
1443 pushq_cfi $-1 /* orig_ax = -1 => not a system call */
1447 END(xen_failsafe_callback)
1449 apicinterrupt HYPERVISOR_CALLBACK_VECTOR \
1450 xen_hvm_callback_vector xen_evtchn_do_upcall
1452 #endif /* CONFIG_XEN */
1454 #if IS_ENABLED(CONFIG_HYPERV)
1455 apicinterrupt HYPERVISOR_CALLBACK_VECTOR \
1456 hyperv_callback_vector hyperv_vector_handler
1457 #endif /* CONFIG_HYPERV */
1460 * Some functions should be protected against kprobes
1462 .pushsection .kprobes.text, "ax"
1464 paranoidzeroentry_ist debug do_debug DEBUG_STACK
1465 paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1466 paranoiderrorentry stack_segment do_stack_segment
1468 zeroentry xen_debug do_debug
1469 zeroentry xen_int3 do_int3
1470 errorentry xen_stack_segment do_stack_segment
1472 errorentry general_protection do_general_protection
1473 errorentry page_fault do_page_fault
1474 #ifdef CONFIG_KVM_GUEST
1475 errorentry async_page_fault do_async_page_fault
1477 #ifdef CONFIG_X86_MCE
1478 paranoidzeroentry machine_check *machine_check_vector(%rip)
1482 * "Paranoid" exit path from exception stack.
1483 * Paranoid because this is used by NMIs and cannot take
1484 * any kernel state for granted.
1485 * We don't do kernel preemption checks here, because only
1486 * NMI should be common and it does not enable IRQs and
1487 * cannot get reschedule ticks.
1489 * "trace" is 0 for the NMI handler only, because irq-tracing
1490 * is fundamentally NMI-unsafe. (we cannot change the soft and
1491 * hard flags at once, atomically)
1494 /* ebx: no swapgs flag */
1495 ENTRY(paranoid_exit)
1497 DISABLE_INTERRUPTS(CLBR_NONE)
1498 TRACE_IRQS_OFF_DEBUG
1499 testl %ebx,%ebx /* swapgs needed? */
1500 jnz paranoid_restore
1502 jnz paranoid_userspace
1509 TRACE_IRQS_IRETQ_DEBUG 0
1513 GET_THREAD_INFO(%rcx)
1514 movl TI_flags(%rcx),%ebx
1515 andl $_TIF_WORK_MASK,%ebx
1517 movq %rsp,%rdi /* &pt_regs */
1519 movq %rax,%rsp /* switch stack for scheduling */
1520 testl $_TIF_NEED_RESCHED,%ebx
1521 jnz paranoid_schedule
1522 movl %ebx,%edx /* arg3: thread flags */
1524 ENABLE_INTERRUPTS(CLBR_NONE)
1525 xorl %esi,%esi /* arg2: oldset */
1526 movq %rsp,%rdi /* arg1: &pt_regs */
1527 call do_notify_resume
1528 DISABLE_INTERRUPTS(CLBR_NONE)
1530 jmp paranoid_userspace
1533 ENABLE_INTERRUPTS(CLBR_ANY)
1535 DISABLE_INTERRUPTS(CLBR_ANY)
1537 jmp paranoid_userspace
1542 * Exception entry point. This expects an error code/orig_rax on the stack.
1543 * returns in "no swapgs flag" in %ebx.
1547 CFI_ADJUST_CFA_OFFSET 15*8
1548 /* oldrax contains error code */
1567 je error_kernelspace
1575 * There are two places in the kernel that can potentially fault with
1576 * usergs. Handle them here. The exception handlers after iret run with
1577 * kernel gs again, so don't set the user space flag. B stepping K8s
1578 * sometimes report an truncated RIP for IRET exceptions returning to
1579 * compat mode. Check for these here too.
1583 leaq irq_return(%rip),%rcx
1584 cmpq %rcx,RIP+8(%rsp)
1586 movl %ecx,%eax /* zero extend */
1587 cmpq %rax,RIP+8(%rsp)
1589 cmpq $gs_change,RIP+8(%rsp)
1594 /* Fix truncated RIP */
1595 movq %rcx,RIP+8(%rsp)
1601 /* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1606 DISABLE_INTERRUPTS(CLBR_NONE)
1608 GET_THREAD_INFO(%rcx)
1611 LOCKDEP_SYS_EXIT_IRQ
1612 movl TI_flags(%rcx),%edx
1613 movl $_TIF_WORK_MASK,%edi
1621 * Test if a given stack is an NMI stack or not.
1623 .macro test_in_nmi reg stack nmi_ret normal_ret
1626 subq $EXCEPTION_STKSZ, %\reg
1632 /* runs on exception stack */
1635 PARAVIRT_ADJUST_EXCEPTION_FRAME
1637 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1638 * the iretq it performs will take us out of NMI context.
1639 * This means that we can have nested NMIs where the next
1640 * NMI is using the top of the stack of the previous NMI. We
1641 * can't let it execute because the nested NMI will corrupt the
1642 * stack of the previous NMI. NMI handlers are not re-entrant
1645 * To handle this case we do the following:
1646 * Check the a special location on the stack that contains
1647 * a variable that is set when NMIs are executing.
1648 * The interrupted task's stack is also checked to see if it
1650 * If the variable is not set and the stack is not the NMI
1652 * o Set the special variable on the stack
1653 * o Copy the interrupt frame into a "saved" location on the stack
1654 * o Copy the interrupt frame into a "copy" location on the stack
1655 * o Continue processing the NMI
1656 * If the variable is set or the previous stack is the NMI stack:
1657 * o Modify the "copy" location to jump to the repeate_nmi
1658 * o return back to the first NMI
1660 * Now on exit of the first NMI, we first clear the stack variable
1661 * The NMI stack will tell any nested NMIs at that point that it is
1662 * nested. Then we pop the stack normally with iret, and if there was
1663 * a nested NMI that updated the copy interrupt stack frame, a
1664 * jump will be made to the repeat_nmi code that will handle the second
1668 /* Use %rdx as out temp variable throughout */
1670 CFI_REL_OFFSET rdx, 0
1673 * If %cs was not the kernel segment, then the NMI triggered in user
1674 * space, which means it is definitely not nested.
1676 cmpl $__KERNEL_CS, 16(%rsp)
1680 * Check the special variable on the stack to see if NMIs are
1687 * Now test if the previous stack was an NMI stack.
1688 * We need the double check. We check the NMI stack to satisfy the
1689 * race when the first NMI clears the variable before returning.
1690 * We check the variable because the first NMI could be in a
1691 * breakpoint routine using a breakpoint stack.
1694 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
1699 * Do nothing if we interrupted the fixup in repeat_nmi.
1700 * It's about to repeat the NMI handler, so we are fine
1701 * with ignoring this one.
1703 movq $repeat_nmi, %rdx
1706 movq $end_repeat_nmi, %rdx
1711 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
1712 leaq -1*8(%rsp), %rdx
1714 CFI_ADJUST_CFA_OFFSET 1*8
1715 leaq -10*8(%rsp), %rdx
1716 pushq_cfi $__KERNEL_DS
1719 pushq_cfi $__KERNEL_CS
1720 pushq_cfi $repeat_nmi
1722 /* Put stack back */
1724 CFI_ADJUST_CFA_OFFSET -6*8
1730 /* No need to check faults here */
1736 * Because nested NMIs will use the pushed location that we
1737 * stored in rdx, we must keep that space available.
1738 * Here's what our stack frame will look like:
1739 * +-------------------------+
1741 * | original Return RSP |
1742 * | original RFLAGS |
1745 * +-------------------------+
1746 * | temp storage for rdx |
1747 * +-------------------------+
1748 * | NMI executing variable |
1749 * +-------------------------+
1751 * | copied Return RSP |
1755 * +-------------------------+
1757 * | Saved Return RSP |
1761 * +-------------------------+
1763 * +-------------------------+
1765 * The saved stack frame is used to fix up the copied stack frame
1766 * that a nested NMI may change to make the interrupted NMI iret jump
1767 * to the repeat_nmi. The original stack frame and the temp storage
1768 * is also used by nested NMIs and can not be trusted on exit.
1770 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
1774 /* Set the NMI executing variable on the stack. */
1778 * Leave room for the "copied" frame
1781 CFI_ADJUST_CFA_OFFSET 5*8
1783 /* Copy the stack frame to the Saved frame */
1785 pushq_cfi 11*8(%rsp)
1787 CFI_DEF_CFA_OFFSET SS+8-RIP
1789 /* Everything up to here is safe from nested NMIs */
1792 * If there was a nested NMI, the first NMI's iret will return
1793 * here. But NMIs are still enabled and we can take another
1794 * nested NMI. The nested NMI checks the interrupted RIP to see
1795 * if it is between repeat_nmi and end_repeat_nmi, and if so
1796 * it will just return, as we are about to repeat an NMI anyway.
1797 * This makes it safe to copy to the stack frame that a nested
1802 * Update the stack variable to say we are still in NMI (the update
1803 * is benign for the non-repeat case, where 1 was pushed just above
1804 * to this very stack slot).
1808 /* Make another copy, this one may be modified by nested NMIs */
1810 CFI_ADJUST_CFA_OFFSET -10*8
1812 pushq_cfi -6*8(%rsp)
1815 CFI_DEF_CFA_OFFSET SS+8-RIP
1819 * Everything below this point can be preempted by a nested
1820 * NMI if the first NMI took an exception and reset our iret stack
1821 * so that we repeat another NMI.
1823 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1824 subq $ORIG_RAX-R15, %rsp
1825 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1827 * Use save_paranoid to handle SWAPGS, but no need to use paranoid_exit
1828 * as we should not be calling schedule in NMI context.
1829 * Even with normal interrupts enabled. An NMI should not be
1830 * setting NEED_RESCHED or anything that normal interrupts and
1831 * exceptions might do.
1837 * Save off the CR2 register. If we take a page fault in the NMI then
1838 * it could corrupt the CR2 value. If the NMI preempts a page fault
1839 * handler before it was able to read the CR2 register, and then the
1840 * NMI itself takes a page fault, the page fault that was preempted
1841 * will read the information from the NMI page fault and not the
1842 * origin fault. Save it off and restore it if it changes.
1843 * Use the r12 callee-saved register.
1847 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1852 /* Did the NMI take a page fault? Restore cr2 if it did */
1859 testl %ebx,%ebx /* swapgs needed? */
1864 /* Pop the extra iret frame at once */
1867 /* Clear the NMI executing stack variable */
1873 ENTRY(ignore_sysret)
1881 * End of kprobes section