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 * NOTE: This code handles signal-recognition, which happens every time
13 * after an interrupt and after each system call.
15 * Normal syscalls and interrupts don't save a full stack frame, this is
16 * only done for syscall tracing, signals or fork/exec et.al.
18 * A note on terminology:
19 * - top of stack: Architecture defined interrupt frame from SS to RIP
20 * at the top of the kernel process stack.
21 * - partial stack frame: partially saved registers upto R11.
22 * - full stack frame: Like partial stack frame, but all register saved.
25 * - CFI macros are used to generate dwarf2 unwind information for better
26 * backtraces. They don't change any code.
27 * - SAVE_ALL/RESTORE_ALL - Save/restore all registers
28 * - SAVE_ARGS/RESTORE_ARGS - Save/restore registers that C functions modify.
29 * There are unfortunately lots of special cases where some registers
30 * not touched. The macro is a big mess that should be cleaned up.
31 * - SAVE_REST/RESTORE_REST - Handle the registers not saved by SAVE_ARGS.
32 * Gives a full stack frame.
33 * - ENTRY/END Define functions in the symbol table.
34 * - FIXUP_TOP_OF_STACK/RESTORE_TOP_OF_STACK - Fix up the hardware stack
35 * frame that is otherwise undefined after a SYSCALL
36 * - TRACE_IRQ_* - Trace hard interrupt state for lock debugging.
37 * - errorentry/paranoidentry/zeroentry - Define exception entry points.
40 #include <linux/linkage.h>
41 #include <asm/segment.h>
42 #include <asm/cache.h>
43 #include <asm/errno.h>
44 #include <asm/dwarf2.h>
45 #include <asm/calling.h>
46 #include <asm/asm-offsets.h>
48 #include <asm/unistd.h>
49 #include <asm/thread_info.h>
50 #include <asm/hw_irq.h>
51 #include <asm/page_types.h>
52 #include <asm/irqflags.h>
53 #include <asm/paravirt.h>
54 #include <asm/ftrace.h>
55 #include <asm/percpu.h>
57 /* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
58 #include <linux/elf-em.h>
59 #define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
60 #define __AUDIT_ARCH_64BIT 0x80000000
61 #define __AUDIT_ARCH_LE 0x40000000
64 .section .entry.text, "ax"
66 #ifdef CONFIG_FUNCTION_TRACER
67 #ifdef CONFIG_DYNAMIC_FTRACE
73 cmpl $0, function_trace_stop
80 subq $MCOUNT_INSN_SIZE, %rdi
87 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
88 GLOBAL(ftrace_graph_call)
96 #else /* ! CONFIG_DYNAMIC_FTRACE */
98 cmpl $0, function_trace_stop
101 cmpq $ftrace_stub, ftrace_trace_function
104 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
105 cmpq $ftrace_stub, ftrace_graph_return
106 jnz ftrace_graph_caller
108 cmpq $ftrace_graph_entry_stub, ftrace_graph_entry
109 jnz ftrace_graph_caller
118 movq 0x38(%rsp), %rdi
120 subq $MCOUNT_INSN_SIZE, %rdi
122 call *ftrace_trace_function
128 #endif /* CONFIG_DYNAMIC_FTRACE */
129 #endif /* CONFIG_FUNCTION_TRACER */
131 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
132 ENTRY(ftrace_graph_caller)
133 cmpl $0, function_trace_stop
139 movq 0x38(%rsp), %rsi
141 subq $MCOUNT_INSN_SIZE, %rsi
143 call prepare_ftrace_return
148 END(ftrace_graph_caller)
150 GLOBAL(return_to_handler)
153 /* Save the return values */
158 call ftrace_return_to_handler
168 #ifndef CONFIG_PREEMPT
169 #define retint_kernel retint_restore_args
172 #ifdef CONFIG_PARAVIRT
173 ENTRY(native_usergs_sysret64)
176 ENDPROC(native_usergs_sysret64)
177 #endif /* CONFIG_PARAVIRT */
180 .macro TRACE_IRQS_IRETQ offset=ARGOFFSET
181 #ifdef CONFIG_TRACE_IRQFLAGS
182 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
190 * C code is not supposed to know about undefined top of stack. Every time
191 * a C function with an pt_regs argument is called from the SYSCALL based
192 * fast path FIXUP_TOP_OF_STACK is needed.
193 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
197 /* %rsp:at FRAMEEND */
198 .macro FIXUP_TOP_OF_STACK tmp offset=0
199 movq PER_CPU_VAR(old_rsp),\tmp
200 movq \tmp,RSP+\offset(%rsp)
201 movq $__USER_DS,SS+\offset(%rsp)
202 movq $__USER_CS,CS+\offset(%rsp)
203 movq $-1,RCX+\offset(%rsp)
204 movq R11+\offset(%rsp),\tmp /* get eflags */
205 movq \tmp,EFLAGS+\offset(%rsp)
208 .macro RESTORE_TOP_OF_STACK tmp offset=0
209 movq RSP+\offset(%rsp),\tmp
210 movq \tmp,PER_CPU_VAR(old_rsp)
211 movq EFLAGS+\offset(%rsp),\tmp
212 movq \tmp,R11+\offset(%rsp)
215 .macro FAKE_STACK_FRAME child_rip
216 /* push in order ss, rsp, eflags, cs, rip */
218 pushq_cfi $__KERNEL_DS /* ss */
219 /*CFI_REL_OFFSET ss,0*/
220 pushq_cfi %rax /* rsp */
222 pushq_cfi $X86_EFLAGS_IF /* eflags - interrupts on */
223 /*CFI_REL_OFFSET rflags,0*/
224 pushq_cfi $__KERNEL_CS /* cs */
225 /*CFI_REL_OFFSET cs,0*/
226 pushq_cfi \child_rip /* rip */
228 pushq_cfi %rax /* orig rax */
231 .macro UNFAKE_STACK_FRAME
233 CFI_ADJUST_CFA_OFFSET -(6*8)
237 * initial frame state for interrupts (and exceptions without error code)
239 .macro EMPTY_FRAME start=1 offset=0
243 CFI_DEF_CFA rsp,8+\offset
245 CFI_DEF_CFA_OFFSET 8+\offset
250 * initial frame state for interrupts (and exceptions without error code)
252 .macro INTR_FRAME start=1 offset=0
253 EMPTY_FRAME \start, SS+8+\offset-RIP
254 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
255 CFI_REL_OFFSET rsp, RSP+\offset-RIP
256 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
257 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
258 CFI_REL_OFFSET rip, RIP+\offset-RIP
262 * initial frame state for exceptions with error code (and interrupts
263 * with vector already pushed)
265 .macro XCPT_FRAME start=1 offset=0
266 INTR_FRAME \start, RIP+\offset-ORIG_RAX
267 /*CFI_REL_OFFSET orig_rax, ORIG_RAX-ORIG_RAX*/
271 * frame that enables calling into C.
273 .macro PARTIAL_FRAME start=1 offset=0
274 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
275 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
276 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
277 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
278 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
279 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
280 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
281 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
282 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
283 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
287 * frame that enables passing a complete pt_regs to a C function.
289 .macro DEFAULT_FRAME start=1 offset=0
290 PARTIAL_FRAME \start, R11+\offset-R15
291 CFI_REL_OFFSET rbx, RBX+\offset
292 CFI_REL_OFFSET rbp, RBP+\offset
293 CFI_REL_OFFSET r12, R12+\offset
294 CFI_REL_OFFSET r13, R13+\offset
295 CFI_REL_OFFSET r14, R14+\offset
296 CFI_REL_OFFSET r15, R15+\offset
299 /* save partial stack frame */
300 .pushsection .kprobes.text, "ax"
305 * start from rbp in pt_regs and jump over
308 movq_cfi rdi, RDI+8-RBP
309 movq_cfi rsi, RSI+8-RBP
310 movq_cfi rdx, RDX+8-RBP
311 movq_cfi rcx, RCX+8-RBP
312 movq_cfi rax, RAX+8-RBP
313 movq_cfi r8, R8+8-RBP
314 movq_cfi r9, R9+8-RBP
315 movq_cfi r10, R10+8-RBP
316 movq_cfi r11, R11+8-RBP
318 leaq -RBP+8(%rsp),%rdi /* arg1 for handler */
319 movq_cfi rbp, 8 /* push %rbp */
320 leaq 8(%rsp), %rbp /* mov %rsp, %ebp */
325 * irq_count is used to check if a CPU is already on an interrupt stack
326 * or not. While this is essentially redundant with preempt_count it is
327 * a little cheaper to use a separate counter in the PDA (short of
328 * moving irq_enter into assembly, which would be too much work)
330 1: incl PER_CPU_VAR(irq_count)
332 popq_cfi %rax /* move return address... */
333 mov PER_CPU_VAR(irq_stack_ptr),%rsp
335 pushq_cfi %rbp /* backlink for unwinder */
336 pushq_cfi %rax /* ... to the new stack */
338 * We entered an interrupt context - irqs are off:
347 PARTIAL_FRAME 1 REST_SKIP+8
348 movq 5*8+16(%rsp), %r11 /* save return address */
355 movq %r11, 8(%rsp) /* return address */
356 FIXUP_TOP_OF_STACK %r11, 16
361 /* save complete stack frame */
362 .pushsection .kprobes.text, "ax"
382 movl $MSR_GS_BASE,%ecx
385 js 1f /* negative -> in kernel */
394 * A newly forked process directly context switches into this address.
396 * rdi: prev task we switched from
401 LOCK ; btr $TIF_FORK,TI_flags(%r8)
403 pushq_cfi kernel_eflags(%rip)
404 popfq_cfi # reset kernel eflags
406 call schedule_tail # rdi: 'prev' task parameter
408 GET_THREAD_INFO(%rcx)
412 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
413 je int_ret_from_sys_call
415 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
416 jnz int_ret_from_sys_call
418 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
419 jmp ret_from_sys_call # go to the SYSRET fastpath
425 * System call entry. Upto 6 arguments in registers are supported.
427 * SYSCALL does not save anything on the stack and does not change the
433 * rax system call number
435 * rcx return address for syscall/sysret, C arg3
438 * r10 arg3 (--> moved to rcx for C)
441 * r11 eflags for syscall/sysret, temporary for C
442 * r12-r15,rbp,rbx saved by C code, not touched.
444 * Interrupts are off on entry.
445 * Only called from user space.
447 * XXX if we had a free scratch register we could save the RSP into the stack frame
448 * and report it properly in ps. Unfortunately we haven't.
450 * When user can change the frames always force IRET. That is because
451 * it deals with uncanonical addresses better. SYSRET has trouble
452 * with them due to bugs in both AMD and Intel CPUs.
458 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
460 /*CFI_REGISTER rflags,r11*/
463 * A hypervisor implementation might want to use a label
464 * after the swapgs, so that it can do the swapgs
465 * for the guest and jump here on syscall.
467 ENTRY(system_call_after_swapgs)
469 movq %rsp,PER_CPU_VAR(old_rsp)
470 movq PER_CPU_VAR(kernel_stack),%rsp
472 * No need to follow this irqs off/on section - it's straight
475 ENABLE_INTERRUPTS(CLBR_NONE)
477 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
478 movq %rcx,RIP-ARGOFFSET(%rsp)
479 CFI_REL_OFFSET rip,RIP-ARGOFFSET
480 GET_THREAD_INFO(%rcx)
481 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%rcx)
483 system_call_fastpath:
484 cmpq $__NR_syscall_max,%rax
487 call *sys_call_table(,%rax,8) # XXX: rip relative
488 movq %rax,RAX-ARGOFFSET(%rsp)
490 * Syscall return path ending with SYSRET (fast path)
491 * Has incomplete stack frame and undefined top of stack.
494 movl $_TIF_ALLWORK_MASK,%edi
498 GET_THREAD_INFO(%rcx)
499 DISABLE_INTERRUPTS(CLBR_NONE)
501 movl TI_flags(%rcx),%edx
506 * sysretq will re-enable interrupts:
509 movq RIP-ARGOFFSET(%rsp),%rcx
511 RESTORE_ARGS 0,-ARG_SKIP,1
512 /*CFI_REGISTER rflags,r11*/
513 movq PER_CPU_VAR(old_rsp), %rsp
517 /* Handle reschedules */
518 /* edx: work, edi: workmask */
520 bt $TIF_NEED_RESCHED,%edx
523 ENABLE_INTERRUPTS(CLBR_NONE)
529 /* Handle a signal */
532 ENABLE_INTERRUPTS(CLBR_NONE)
533 #ifdef CONFIG_AUDITSYSCALL
534 bt $TIF_SYSCALL_AUDIT,%edx
538 * We have a signal, or exit tracing or single-step.
539 * These all wind up with the iret return path anyway,
540 * so just join that path right now.
542 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
543 jmp int_check_syscall_exit_work
546 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
547 jmp ret_from_sys_call
549 #ifdef CONFIG_AUDITSYSCALL
551 * Fast path for syscall audit without full syscall trace.
552 * We just call audit_syscall_entry() directly, and then
553 * jump back to the normal fast path.
556 movq %r10,%r9 /* 6th arg: 4th syscall arg */
557 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
558 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
559 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
560 movq %rax,%rsi /* 2nd arg: syscall number */
561 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
562 call audit_syscall_entry
563 LOAD_ARGS 0 /* reload call-clobbered registers */
564 jmp system_call_fastpath
567 * Return fast path for syscall audit. Call audit_syscall_exit()
568 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
572 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
573 cmpq $0,%rsi /* is it < 0? */
574 setl %al /* 1 if so, 0 if not */
575 movzbl %al,%edi /* zero-extend that into %edi */
576 inc %edi /* first arg, 0->1(AUDITSC_SUCCESS), 1->2(AUDITSC_FAILURE) */
577 call audit_syscall_exit
578 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
580 #endif /* CONFIG_AUDITSYSCALL */
582 /* Do syscall tracing */
584 #ifdef CONFIG_AUDITSYSCALL
585 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags(%rcx)
589 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
590 FIXUP_TOP_OF_STACK %rdi
592 call syscall_trace_enter
594 * Reload arg registers from stack in case ptrace changed them.
595 * We don't reload %rax because syscall_trace_enter() returned
596 * the value it wants us to use in the table lookup.
598 LOAD_ARGS ARGOFFSET, 1
600 cmpq $__NR_syscall_max,%rax
601 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
602 movq %r10,%rcx /* fixup for C */
603 call *sys_call_table(,%rax,8)
604 movq %rax,RAX-ARGOFFSET(%rsp)
605 /* Use IRET because user could have changed frame */
608 * Syscall return path ending with IRET.
609 * Has correct top of stack, but partial stack frame.
611 GLOBAL(int_ret_from_sys_call)
612 DISABLE_INTERRUPTS(CLBR_NONE)
614 testl $3,CS-ARGOFFSET(%rsp)
615 je retint_restore_args
616 movl $_TIF_ALLWORK_MASK,%edi
617 /* edi: mask to check */
618 GLOBAL(int_with_check)
620 GET_THREAD_INFO(%rcx)
621 movl TI_flags(%rcx),%edx
624 andl $~TS_COMPAT,TI_status(%rcx)
627 /* Either reschedule or signal or syscall exit tracking needed. */
628 /* First do a reschedule test. */
629 /* edx: work, edi: workmask */
631 bt $TIF_NEED_RESCHED,%edx
634 ENABLE_INTERRUPTS(CLBR_NONE)
638 DISABLE_INTERRUPTS(CLBR_NONE)
642 /* handle signals and tracing -- both require a full stack frame */
645 ENABLE_INTERRUPTS(CLBR_NONE)
646 int_check_syscall_exit_work:
648 /* Check for syscall exit trace */
649 testl $_TIF_WORK_SYSCALL_EXIT,%edx
652 leaq 8(%rsp),%rdi # &ptregs -> arg1
653 call syscall_trace_leave
655 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
659 testl $_TIF_DO_NOTIFY_MASK,%edx
661 movq %rsp,%rdi # &ptregs -> arg1
662 xorl %esi,%esi # oldset -> arg2
663 call do_notify_resume
664 1: movl $_TIF_WORK_MASK,%edi
667 DISABLE_INTERRUPTS(CLBR_NONE)
674 * Certain special system calls that need to save a complete full stack frame.
676 .macro PTREGSCALL label,func,arg
678 PARTIAL_FRAME 1 8 /* offset 8: return address */
679 subq $REST_SKIP, %rsp
680 CFI_ADJUST_CFA_OFFSET REST_SKIP
682 DEFAULT_FRAME 0 8 /* offset 8: return address */
683 leaq 8(%rsp), \arg /* pt_regs pointer */
685 jmp ptregscall_common
690 PTREGSCALL stub_clone, sys_clone, %r8
691 PTREGSCALL stub_fork, sys_fork, %rdi
692 PTREGSCALL stub_vfork, sys_vfork, %rdi
693 PTREGSCALL stub_sigaltstack, sys_sigaltstack, %rdx
694 PTREGSCALL stub_iopl, sys_iopl, %rsi
696 ENTRY(ptregscall_common)
697 DEFAULT_FRAME 1 8 /* offset 8: return address */
698 RESTORE_TOP_OF_STACK %r11, 8
699 movq_cfi_restore R15+8, r15
700 movq_cfi_restore R14+8, r14
701 movq_cfi_restore R13+8, r13
702 movq_cfi_restore R12+8, r12
703 movq_cfi_restore RBP+8, rbp
704 movq_cfi_restore RBX+8, rbx
705 ret $REST_SKIP /* pop extended registers */
707 END(ptregscall_common)
714 FIXUP_TOP_OF_STACK %r11
717 RESTORE_TOP_OF_STACK %r11
720 jmp int_ret_from_sys_call
725 * sigreturn is special because it needs to restore all registers on return.
726 * This cannot be done with SYSRET, so use the IRET return path instead.
728 ENTRY(stub_rt_sigreturn)
734 FIXUP_TOP_OF_STACK %r11
735 call sys_rt_sigreturn
736 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
738 jmp int_ret_from_sys_call
740 END(stub_rt_sigreturn)
743 * Build the entry stubs and pointer table with some assembler magic.
744 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
745 * single cache line on all modern x86 implementations.
747 .section .init.rodata,"a"
751 .p2align CONFIG_X86_L1_CACHE_SHIFT
752 ENTRY(irq_entries_start)
754 vector=FIRST_EXTERNAL_VECTOR
755 .rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
758 .if vector < NR_VECTORS
759 .if vector <> FIRST_EXTERNAL_VECTOR
760 CFI_ADJUST_CFA_OFFSET -8
762 1: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
763 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
772 2: jmp common_interrupt
775 END(irq_entries_start)
782 * Interrupt entry/exit.
784 * Interrupt entry points save only callee clobbered registers in fast path.
786 * Entry runs with interrupts off.
789 /* 0(%rsp): ~(interrupt number) */
790 .macro interrupt func
791 /* reserve pt_regs for scratch regs and rbp */
792 subq $ORIG_RAX-RBP, %rsp
793 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
800 * Interrupt entry/exit should be protected against kprobes
802 .pushsection .kprobes.text, "ax"
804 * The interrupt stubs push (~vector+0x80) onto the stack and
805 * then jump to common_interrupt.
807 .p2align CONFIG_X86_L1_CACHE_SHIFT
810 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
812 /* 0(%rsp): old_rsp-ARGOFFSET */
814 DISABLE_INTERRUPTS(CLBR_NONE)
816 decl PER_CPU_VAR(irq_count)
820 CFI_DEF_CFA_REGISTER rsp
821 CFI_ADJUST_CFA_OFFSET -8
823 /* we did not save rbx, restore only from ARGOFFSET */
825 CFI_ADJUST_CFA_OFFSET -8
827 GET_THREAD_INFO(%rcx)
828 testl $3,CS-ARGOFFSET(%rsp)
831 /* Interrupt came from user space */
833 * Has a correct top of stack, but a partial stack frame
834 * %rcx: thread info. Interrupts off.
836 retint_with_reschedule:
837 movl $_TIF_WORK_MASK,%edi
840 movl TI_flags(%rcx),%edx
845 retint_swapgs: /* return to user-space */
847 * The iretq could re-enable interrupts:
849 DISABLE_INTERRUPTS(CLBR_ANY)
854 retint_restore_args: /* return to kernel space */
855 DISABLE_INTERRUPTS(CLBR_ANY)
857 * The iretq could re-enable interrupts:
866 .section __ex_table, "a"
867 .quad irq_return, bad_iret
870 #ifdef CONFIG_PARAVIRT
874 .section __ex_table,"a"
875 .quad native_iret, bad_iret
882 * The iret traps when the %cs or %ss being restored is bogus.
883 * We've lost the original trap vector and error code.
884 * #GPF is the most likely one to get for an invalid selector.
885 * So pretend we completed the iret and took the #GPF in user mode.
887 * We are now running with the kernel GS after exception recovery.
888 * But error_entry expects us to have user GS to match the user %cs,
894 jmp general_protection
898 /* edi: workmask, edx: work */
901 bt $TIF_NEED_RESCHED,%edx
904 ENABLE_INTERRUPTS(CLBR_NONE)
908 GET_THREAD_INFO(%rcx)
909 DISABLE_INTERRUPTS(CLBR_NONE)
914 testl $_TIF_DO_NOTIFY_MASK,%edx
917 ENABLE_INTERRUPTS(CLBR_NONE)
919 movq $-1,ORIG_RAX(%rsp)
920 xorl %esi,%esi # oldset
921 movq %rsp,%rdi # &pt_regs
922 call do_notify_resume
924 DISABLE_INTERRUPTS(CLBR_NONE)
926 GET_THREAD_INFO(%rcx)
927 jmp retint_with_reschedule
929 #ifdef CONFIG_PREEMPT
930 /* Returning to kernel space. Check if we need preemption */
931 /* rcx: threadinfo. interrupts off. */
933 cmpl $0,TI_preempt_count(%rcx)
934 jnz retint_restore_args
935 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
936 jnc retint_restore_args
937 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
938 jnc retint_restore_args
939 call preempt_schedule_irq
944 END(common_interrupt)
946 * End of kprobes section
953 .macro apicinterrupt num sym do_sym
964 apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
965 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
966 apicinterrupt REBOOT_VECTOR \
967 reboot_interrupt smp_reboot_interrupt
971 apicinterrupt UV_BAU_MESSAGE \
972 uv_bau_message_intr1 uv_bau_message_interrupt
974 apicinterrupt LOCAL_TIMER_VECTOR \
975 apic_timer_interrupt smp_apic_timer_interrupt
976 apicinterrupt X86_PLATFORM_IPI_VECTOR \
977 x86_platform_ipi smp_x86_platform_ipi
980 .irp idx,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15, \
981 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31
982 .if NUM_INVALIDATE_TLB_VECTORS > \idx
983 apicinterrupt (INVALIDATE_TLB_VECTOR_START)+\idx \
984 invalidate_interrupt\idx smp_invalidate_interrupt
989 apicinterrupt THRESHOLD_APIC_VECTOR \
990 threshold_interrupt smp_threshold_interrupt
991 apicinterrupt THERMAL_APIC_VECTOR \
992 thermal_interrupt smp_thermal_interrupt
994 #ifdef CONFIG_X86_MCE
995 apicinterrupt MCE_SELF_VECTOR \
996 mce_self_interrupt smp_mce_self_interrupt
1000 apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1001 call_function_single_interrupt smp_call_function_single_interrupt
1002 apicinterrupt CALL_FUNCTION_VECTOR \
1003 call_function_interrupt smp_call_function_interrupt
1004 apicinterrupt RESCHEDULE_VECTOR \
1005 reschedule_interrupt smp_reschedule_interrupt
1008 apicinterrupt ERROR_APIC_VECTOR \
1009 error_interrupt smp_error_interrupt
1010 apicinterrupt SPURIOUS_APIC_VECTOR \
1011 spurious_interrupt smp_spurious_interrupt
1013 #ifdef CONFIG_IRQ_WORK
1014 apicinterrupt IRQ_WORK_VECTOR \
1015 irq_work_interrupt smp_irq_work_interrupt
1019 * Exception entry points.
1021 .macro zeroentry sym do_sym
1024 PARAVIRT_ADJUST_EXCEPTION_FRAME
1025 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1026 subq $ORIG_RAX-R15, %rsp
1027 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1030 movq %rsp,%rdi /* pt_regs pointer */
1031 xorl %esi,%esi /* no error code */
1033 jmp error_exit /* %ebx: no swapgs flag */
1038 .macro paranoidzeroentry sym do_sym
1041 PARAVIRT_ADJUST_EXCEPTION_FRAME
1042 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1043 subq $ORIG_RAX-R15, %rsp
1044 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1047 movq %rsp,%rdi /* pt_regs pointer */
1048 xorl %esi,%esi /* no error code */
1050 jmp paranoid_exit /* %ebx: no swapgs flag */
1055 #define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
1056 .macro paranoidzeroentry_ist sym do_sym ist
1059 PARAVIRT_ADJUST_EXCEPTION_FRAME
1060 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1061 subq $ORIG_RAX-R15, %rsp
1062 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1065 movq %rsp,%rdi /* pt_regs pointer */
1066 xorl %esi,%esi /* no error code */
1067 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
1069 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
1070 jmp paranoid_exit /* %ebx: no swapgs flag */
1075 .macro errorentry sym do_sym
1078 PARAVIRT_ADJUST_EXCEPTION_FRAME
1079 subq $ORIG_RAX-R15, %rsp
1080 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1083 movq %rsp,%rdi /* pt_regs pointer */
1084 movq ORIG_RAX(%rsp),%rsi /* get error code */
1085 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1087 jmp error_exit /* %ebx: no swapgs flag */
1092 /* error code is on the stack already */
1093 .macro paranoiderrorentry sym do_sym
1096 PARAVIRT_ADJUST_EXCEPTION_FRAME
1097 subq $ORIG_RAX-R15, %rsp
1098 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1102 movq %rsp,%rdi /* pt_regs pointer */
1103 movq ORIG_RAX(%rsp),%rsi /* get error code */
1104 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1106 jmp paranoid_exit /* %ebx: no swapgs flag */
1111 zeroentry divide_error do_divide_error
1112 zeroentry overflow do_overflow
1113 zeroentry bounds do_bounds
1114 zeroentry invalid_op do_invalid_op
1115 zeroentry device_not_available do_device_not_available
1116 paranoiderrorentry double_fault do_double_fault
1117 zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1118 errorentry invalid_TSS do_invalid_TSS
1119 errorentry segment_not_present do_segment_not_present
1120 zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1121 zeroentry coprocessor_error do_coprocessor_error
1122 errorentry alignment_check do_alignment_check
1123 zeroentry simd_coprocessor_error do_simd_coprocessor_error
1125 /* Reload gs selector with exception handling */
1126 /* edi: new selector */
1127 ENTRY(native_load_gs_index)
1130 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
1134 2: mfence /* workaround */
1139 END(native_load_gs_index)
1141 .section __ex_table,"a"
1143 .quad gs_change,bad_gs
1145 .section .fixup,"ax"
1146 /* running with kernelgs */
1148 SWAPGS /* switch back to user gs */
1154 ENTRY(kernel_thread_helper)
1155 pushq $0 # fake return address
1158 * Here we are in the child and the registers are set as they were
1159 * at kernel_thread() invocation in the parent.
1165 ud2 # padding for call trace
1167 END(kernel_thread_helper)
1170 * execve(). This function needs to use IRET, not SYSRET, to set up all state properly.
1172 * C extern interface:
1173 * extern long execve(const char *name, char **argv, char **envp)
1175 * asm input arguments:
1176 * rdi: name, rsi: argv, rdx: envp
1178 * We want to fallback into:
1179 * extern long sys_execve(const char *name, char **argv,char **envp, struct pt_regs *regs)
1181 * do_sys_execve asm fallback arguments:
1182 * rdi: name, rsi: argv, rdx: envp, rcx: fake frame on the stack
1184 ENTRY(kernel_execve)
1190 movq %rax, RAX(%rsp)
1193 je int_ret_from_sys_call
1200 /* Call softirq on interrupt stack. Interrupts are off. */
1204 CFI_REL_OFFSET rbp,0
1206 CFI_DEF_CFA_REGISTER rbp
1207 incl PER_CPU_VAR(irq_count)
1208 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
1209 push %rbp # backlink for old unwinder
1213 CFI_DEF_CFA_REGISTER rsp
1214 CFI_ADJUST_CFA_OFFSET -8
1215 decl PER_CPU_VAR(irq_count)
1221 zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
1224 * A note on the "critical region" in our callback handler.
1225 * We want to avoid stacking callback handlers due to events occurring
1226 * during handling of the last event. To do this, we keep events disabled
1227 * until we've done all processing. HOWEVER, we must enable events before
1228 * popping the stack frame (can't be done atomically) and so it would still
1229 * be possible to get enough handler activations to overflow the stack.
1230 * Although unlikely, bugs of that kind are hard to track down, so we'd
1231 * like to avoid the possibility.
1232 * So, on entry to the handler we detect whether we interrupted an
1233 * existing activation in its critical region -- if so, we pop the current
1234 * activation and restart the handler using the previous one.
1236 ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1239 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1240 * see the correct pointer to the pt_regs
1242 movq %rdi, %rsp # we don't return, adjust the stack frame
1245 11: incl PER_CPU_VAR(irq_count)
1247 CFI_DEF_CFA_REGISTER rbp
1248 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
1249 pushq %rbp # backlink for old unwinder
1250 call xen_evtchn_do_upcall
1252 CFI_DEF_CFA_REGISTER rsp
1253 decl PER_CPU_VAR(irq_count)
1256 END(xen_do_hypervisor_callback)
1259 * Hypervisor uses this for application faults while it executes.
1260 * We get here for two reasons:
1261 * 1. Fault while reloading DS, ES, FS or GS
1262 * 2. Fault while executing IRET
1263 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1264 * registers that could be reloaded and zeroed the others.
1265 * Category 2 we fix up by killing the current process. We cannot use the
1266 * normal Linux return path in this case because if we use the IRET hypercall
1267 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1268 * We distinguish between categories by comparing each saved segment register
1269 * with its current contents: any discrepancy means we in category 1.
1271 ENTRY(xen_failsafe_callback)
1273 /*CFI_REL_OFFSET gs,GS*/
1274 /*CFI_REL_OFFSET fs,FS*/
1275 /*CFI_REL_OFFSET es,ES*/
1276 /*CFI_REL_OFFSET ds,DS*/
1277 CFI_REL_OFFSET r11,8
1278 CFI_REL_OFFSET rcx,0
1292 /* All segments match their saved values => Category 2 (Bad IRET). */
1298 CFI_ADJUST_CFA_OFFSET -0x30
1299 pushq_cfi $0 /* RIP */
1302 jmp general_protection
1304 1: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1310 CFI_ADJUST_CFA_OFFSET -0x30
1315 END(xen_failsafe_callback)
1317 apicinterrupt XEN_HVM_EVTCHN_CALLBACK \
1318 xen_hvm_callback_vector xen_evtchn_do_upcall
1320 #endif /* CONFIG_XEN */
1323 * Some functions should be protected against kprobes
1325 .pushsection .kprobes.text, "ax"
1327 paranoidzeroentry_ist debug do_debug DEBUG_STACK
1328 paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1329 paranoiderrorentry stack_segment do_stack_segment
1331 zeroentry xen_debug do_debug
1332 zeroentry xen_int3 do_int3
1333 errorentry xen_stack_segment do_stack_segment
1335 errorentry general_protection do_general_protection
1336 errorentry page_fault do_page_fault
1337 #ifdef CONFIG_KVM_GUEST
1338 errorentry async_page_fault do_async_page_fault
1340 #ifdef CONFIG_X86_MCE
1341 paranoidzeroentry machine_check *machine_check_vector(%rip)
1345 * "Paranoid" exit path from exception stack.
1346 * Paranoid because this is used by NMIs and cannot take
1347 * any kernel state for granted.
1348 * We don't do kernel preemption checks here, because only
1349 * NMI should be common and it does not enable IRQs and
1350 * cannot get reschedule ticks.
1352 * "trace" is 0 for the NMI handler only, because irq-tracing
1353 * is fundamentally NMI-unsafe. (we cannot change the soft and
1354 * hard flags at once, atomically)
1357 /* ebx: no swapgs flag */
1358 ENTRY(paranoid_exit)
1360 DISABLE_INTERRUPTS(CLBR_NONE)
1362 testl %ebx,%ebx /* swapgs needed? */
1363 jnz paranoid_restore
1365 jnz paranoid_userspace
1376 GET_THREAD_INFO(%rcx)
1377 movl TI_flags(%rcx),%ebx
1378 andl $_TIF_WORK_MASK,%ebx
1380 movq %rsp,%rdi /* &pt_regs */
1382 movq %rax,%rsp /* switch stack for scheduling */
1383 testl $_TIF_NEED_RESCHED,%ebx
1384 jnz paranoid_schedule
1385 movl %ebx,%edx /* arg3: thread flags */
1387 ENABLE_INTERRUPTS(CLBR_NONE)
1388 xorl %esi,%esi /* arg2: oldset */
1389 movq %rsp,%rdi /* arg1: &pt_regs */
1390 call do_notify_resume
1391 DISABLE_INTERRUPTS(CLBR_NONE)
1393 jmp paranoid_userspace
1396 ENABLE_INTERRUPTS(CLBR_ANY)
1398 DISABLE_INTERRUPTS(CLBR_ANY)
1400 jmp paranoid_userspace
1405 * Exception entry point. This expects an error code/orig_rax on the stack.
1406 * returns in "no swapgs flag" in %ebx.
1410 CFI_ADJUST_CFA_OFFSET 15*8
1411 /* oldrax contains error code */
1430 je error_kernelspace
1438 * There are two places in the kernel that can potentially fault with
1439 * usergs. Handle them here. The exception handlers after iret run with
1440 * kernel gs again, so don't set the user space flag. B stepping K8s
1441 * sometimes report an truncated RIP for IRET exceptions returning to
1442 * compat mode. Check for these here too.
1446 leaq irq_return(%rip),%rcx
1447 cmpq %rcx,RIP+8(%rsp)
1449 movl %ecx,%eax /* zero extend */
1450 cmpq %rax,RIP+8(%rsp)
1452 cmpq $gs_change,RIP+8(%rsp)
1457 /* Fix truncated RIP */
1458 movq %rcx,RIP+8(%rsp)
1464 /* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1469 DISABLE_INTERRUPTS(CLBR_NONE)
1471 GET_THREAD_INFO(%rcx)
1474 LOCKDEP_SYS_EXIT_IRQ
1475 movl TI_flags(%rcx),%edx
1476 movl $_TIF_WORK_MASK,%edi
1484 /* runs on exception stack */
1487 PARAVIRT_ADJUST_EXCEPTION_FRAME
1489 subq $ORIG_RAX-R15, %rsp
1490 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1493 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1497 #ifdef CONFIG_TRACE_IRQFLAGS
1498 /* paranoidexit; without TRACE_IRQS_OFF */
1499 /* ebx: no swapgs flag */
1500 DISABLE_INTERRUPTS(CLBR_NONE)
1501 testl %ebx,%ebx /* swapgs needed? */
1511 GET_THREAD_INFO(%rcx)
1512 movl TI_flags(%rcx),%ebx
1513 andl $_TIF_WORK_MASK,%ebx
1515 movq %rsp,%rdi /* &pt_regs */
1517 movq %rax,%rsp /* switch stack for scheduling */
1518 testl $_TIF_NEED_RESCHED,%ebx
1520 movl %ebx,%edx /* arg3: thread flags */
1521 ENABLE_INTERRUPTS(CLBR_NONE)
1522 xorl %esi,%esi /* arg2: oldset */
1523 movq %rsp,%rdi /* arg1: &pt_regs */
1524 call do_notify_resume
1525 DISABLE_INTERRUPTS(CLBR_NONE)
1528 ENABLE_INTERRUPTS(CLBR_ANY)
1530 DISABLE_INTERRUPTS(CLBR_ANY)
1539 ENTRY(ignore_sysret)
1547 * End of kprobes section