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 /* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
60 #include <linux/elf-em.h>
61 #define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
62 #define __AUDIT_ARCH_64BIT 0x80000000
63 #define __AUDIT_ARCH_LE 0x40000000
66 .section .entry.text, "ax"
68 #ifdef CONFIG_FUNCTION_TRACER
69 #ifdef CONFIG_DYNAMIC_FTRACE
75 cmpl $0, function_trace_stop
82 subq $MCOUNT_INSN_SIZE, %rdi
89 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
90 GLOBAL(ftrace_graph_call)
98 #else /* ! CONFIG_DYNAMIC_FTRACE */
100 cmpl $0, function_trace_stop
103 cmpq $ftrace_stub, ftrace_trace_function
106 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
107 cmpq $ftrace_stub, ftrace_graph_return
108 jnz ftrace_graph_caller
110 cmpq $ftrace_graph_entry_stub, ftrace_graph_entry
111 jnz ftrace_graph_caller
120 movq 0x38(%rsp), %rdi
122 subq $MCOUNT_INSN_SIZE, %rdi
124 call *ftrace_trace_function
130 #endif /* CONFIG_DYNAMIC_FTRACE */
131 #endif /* CONFIG_FUNCTION_TRACER */
133 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
134 ENTRY(ftrace_graph_caller)
135 cmpl $0, function_trace_stop
141 movq 0x38(%rsp), %rsi
143 subq $MCOUNT_INSN_SIZE, %rsi
145 call prepare_ftrace_return
150 END(ftrace_graph_caller)
152 GLOBAL(return_to_handler)
155 /* Save the return values */
160 call ftrace_return_to_handler
170 #ifndef CONFIG_PREEMPT
171 #define retint_kernel retint_restore_args
174 #ifdef CONFIG_PARAVIRT
175 ENTRY(native_usergs_sysret64)
178 ENDPROC(native_usergs_sysret64)
179 #endif /* CONFIG_PARAVIRT */
182 .macro TRACE_IRQS_IRETQ offset=ARGOFFSET
183 #ifdef CONFIG_TRACE_IRQFLAGS
184 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
192 * C code is not supposed to know about undefined top of stack. Every time
193 * a C function with an pt_regs argument is called from the SYSCALL based
194 * fast path FIXUP_TOP_OF_STACK is needed.
195 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
199 /* %rsp:at FRAMEEND */
200 .macro FIXUP_TOP_OF_STACK tmp offset=0
201 movq PER_CPU_VAR(old_rsp),\tmp
202 movq \tmp,RSP+\offset(%rsp)
203 movq $__USER_DS,SS+\offset(%rsp)
204 movq $__USER_CS,CS+\offset(%rsp)
205 movq $-1,RCX+\offset(%rsp)
206 movq R11+\offset(%rsp),\tmp /* get eflags */
207 movq \tmp,EFLAGS+\offset(%rsp)
210 .macro RESTORE_TOP_OF_STACK tmp offset=0
211 movq RSP+\offset(%rsp),\tmp
212 movq \tmp,PER_CPU_VAR(old_rsp)
213 movq EFLAGS+\offset(%rsp),\tmp
214 movq \tmp,R11+\offset(%rsp)
217 .macro FAKE_STACK_FRAME child_rip
218 /* push in order ss, rsp, eflags, cs, rip */
220 pushq_cfi $__KERNEL_DS /* ss */
221 /*CFI_REL_OFFSET ss,0*/
222 pushq_cfi %rax /* rsp */
224 pushq_cfi $X86_EFLAGS_IF /* eflags - interrupts on */
225 /*CFI_REL_OFFSET rflags,0*/
226 pushq_cfi $__KERNEL_CS /* cs */
227 /*CFI_REL_OFFSET cs,0*/
228 pushq_cfi \child_rip /* rip */
230 pushq_cfi %rax /* orig rax */
233 .macro UNFAKE_STACK_FRAME
235 CFI_ADJUST_CFA_OFFSET -(6*8)
239 * initial frame state for interrupts (and exceptions without error code)
241 .macro EMPTY_FRAME start=1 offset=0
245 CFI_DEF_CFA rsp,8+\offset
247 CFI_DEF_CFA_OFFSET 8+\offset
252 * initial frame state for interrupts (and exceptions without error code)
254 .macro INTR_FRAME start=1 offset=0
255 EMPTY_FRAME \start, SS+8+\offset-RIP
256 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
257 CFI_REL_OFFSET rsp, RSP+\offset-RIP
258 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
259 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
260 CFI_REL_OFFSET rip, RIP+\offset-RIP
264 * initial frame state for exceptions with error code (and interrupts
265 * with vector already pushed)
267 .macro XCPT_FRAME start=1 offset=0
268 INTR_FRAME \start, RIP+\offset-ORIG_RAX
269 /*CFI_REL_OFFSET orig_rax, ORIG_RAX-ORIG_RAX*/
273 * frame that enables calling into C.
275 .macro PARTIAL_FRAME start=1 offset=0
276 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
277 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
278 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
279 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
280 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
281 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
282 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
283 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
284 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
285 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
289 * frame that enables passing a complete pt_regs to a C function.
291 .macro DEFAULT_FRAME start=1 offset=0
292 PARTIAL_FRAME \start, R11+\offset-R15
293 CFI_REL_OFFSET rbx, RBX+\offset
294 CFI_REL_OFFSET rbp, RBP+\offset
295 CFI_REL_OFFSET r12, R12+\offset
296 CFI_REL_OFFSET r13, R13+\offset
297 CFI_REL_OFFSET r14, R14+\offset
298 CFI_REL_OFFSET r15, R15+\offset
301 /* save partial stack frame */
302 .pushsection .kprobes.text, "ax"
307 * start from rbp in pt_regs and jump over
310 movq_cfi rdi, RDI+8-RBP
311 movq_cfi rsi, RSI+8-RBP
312 movq_cfi rdx, RDX+8-RBP
313 movq_cfi rcx, RCX+8-RBP
314 movq_cfi rax, RAX+8-RBP
315 movq_cfi r8, R8+8-RBP
316 movq_cfi r9, R9+8-RBP
317 movq_cfi r10, R10+8-RBP
318 movq_cfi r11, R11+8-RBP
320 leaq -RBP+8(%rsp),%rdi /* arg1 for handler */
321 movq_cfi rbp, 8 /* push %rbp */
322 leaq 8(%rsp), %rbp /* mov %rsp, %ebp */
327 * irq_count is used to check if a CPU is already on an interrupt stack
328 * or not. While this is essentially redundant with preempt_count it is
329 * a little cheaper to use a separate counter in the PDA (short of
330 * moving irq_enter into assembly, which would be too much work)
332 1: incl PER_CPU_VAR(irq_count)
334 popq_cfi %rax /* move return address... */
335 mov PER_CPU_VAR(irq_stack_ptr),%rsp
337 pushq_cfi %rbp /* backlink for unwinder */
338 pushq_cfi %rax /* ... to the new stack */
340 * We entered an interrupt context - irqs are off:
349 PARTIAL_FRAME 1 REST_SKIP+8
350 movq 5*8+16(%rsp), %r11 /* save return address */
357 movq %r11, 8(%rsp) /* return address */
358 FIXUP_TOP_OF_STACK %r11, 16
363 /* save complete stack frame */
364 .pushsection .kprobes.text, "ax"
384 movl $MSR_GS_BASE,%ecx
387 js 1f /* negative -> in kernel */
396 * A newly forked process directly context switches into this address.
398 * rdi: prev task we switched from
403 LOCK ; btr $TIF_FORK,TI_flags(%r8)
405 pushq_cfi kernel_eflags(%rip)
406 popfq_cfi # reset kernel eflags
408 call schedule_tail # rdi: 'prev' task parameter
410 GET_THREAD_INFO(%rcx)
414 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
415 je int_ret_from_sys_call
417 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
418 jnz int_ret_from_sys_call
420 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
421 jmp ret_from_sys_call # go to the SYSRET fastpath
427 * System call entry. Up to 6 arguments in registers are supported.
429 * SYSCALL does not save anything on the stack and does not change the
435 * rax system call number
437 * rcx return address for syscall/sysret, C arg3
440 * r10 arg3 (--> moved to rcx for C)
443 * r11 eflags for syscall/sysret, temporary for C
444 * r12-r15,rbp,rbx saved by C code, not touched.
446 * Interrupts are off on entry.
447 * Only called from user space.
449 * XXX if we had a free scratch register we could save the RSP into the stack frame
450 * and report it properly in ps. Unfortunately we haven't.
452 * When user can change the frames always force IRET. That is because
453 * it deals with uncanonical addresses better. SYSRET has trouble
454 * with them due to bugs in both AMD and Intel CPUs.
460 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
462 /*CFI_REGISTER rflags,r11*/
465 * A hypervisor implementation might want to use a label
466 * after the swapgs, so that it can do the swapgs
467 * for the guest and jump here on syscall.
469 ENTRY(system_call_after_swapgs)
471 movq %rsp,PER_CPU_VAR(old_rsp)
472 movq PER_CPU_VAR(kernel_stack),%rsp
474 * No need to follow this irqs off/on section - it's straight
477 ENABLE_INTERRUPTS(CLBR_NONE)
479 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
480 movq %rcx,RIP-ARGOFFSET(%rsp)
481 CFI_REL_OFFSET rip,RIP-ARGOFFSET
482 GET_THREAD_INFO(%rcx)
483 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%rcx)
485 system_call_fastpath:
486 cmpq $__NR_syscall_max,%rax
489 call *sys_call_table(,%rax,8) # XXX: rip relative
490 movq %rax,RAX-ARGOFFSET(%rsp)
492 * Syscall return path ending with SYSRET (fast path)
493 * Has incomplete stack frame and undefined top of stack.
496 movl $_TIF_ALLWORK_MASK,%edi
500 GET_THREAD_INFO(%rcx)
501 DISABLE_INTERRUPTS(CLBR_NONE)
503 movl TI_flags(%rcx),%edx
508 * sysretq will re-enable interrupts:
511 movq RIP-ARGOFFSET(%rsp),%rcx
513 RESTORE_ARGS 0,-ARG_SKIP,1
514 /*CFI_REGISTER rflags,r11*/
515 movq PER_CPU_VAR(old_rsp), %rsp
519 /* Handle reschedules */
520 /* edx: work, edi: workmask */
522 bt $TIF_NEED_RESCHED,%edx
525 ENABLE_INTERRUPTS(CLBR_NONE)
531 /* Handle a signal */
534 ENABLE_INTERRUPTS(CLBR_NONE)
535 #ifdef CONFIG_AUDITSYSCALL
536 bt $TIF_SYSCALL_AUDIT,%edx
540 * We have a signal, or exit tracing or single-step.
541 * These all wind up with the iret return path anyway,
542 * so just join that path right now.
544 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
545 jmp int_check_syscall_exit_work
548 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
549 jmp ret_from_sys_call
551 #ifdef CONFIG_AUDITSYSCALL
553 * Fast path for syscall audit without full syscall trace.
554 * We just call audit_syscall_entry() directly, and then
555 * jump back to the normal fast path.
558 movq %r10,%r9 /* 6th arg: 4th syscall arg */
559 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
560 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
561 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
562 movq %rax,%rsi /* 2nd arg: syscall number */
563 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
564 call audit_syscall_entry
565 LOAD_ARGS 0 /* reload call-clobbered registers */
566 jmp system_call_fastpath
569 * Return fast path for syscall audit. Call audit_syscall_exit()
570 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
574 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
575 cmpq $0,%rsi /* is it < 0? */
576 setl %al /* 1 if so, 0 if not */
577 movzbl %al,%edi /* zero-extend that into %edi */
578 inc %edi /* first arg, 0->1(AUDITSC_SUCCESS), 1->2(AUDITSC_FAILURE) */
579 call audit_syscall_exit
580 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
582 #endif /* CONFIG_AUDITSYSCALL */
584 /* Do syscall tracing */
586 #ifdef CONFIG_AUDITSYSCALL
587 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags(%rcx)
591 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
592 FIXUP_TOP_OF_STACK %rdi
594 call syscall_trace_enter
596 * Reload arg registers from stack in case ptrace changed them.
597 * We don't reload %rax because syscall_trace_enter() returned
598 * the value it wants us to use in the table lookup.
600 LOAD_ARGS ARGOFFSET, 1
602 cmpq $__NR_syscall_max,%rax
603 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
604 movq %r10,%rcx /* fixup for C */
605 call *sys_call_table(,%rax,8)
606 movq %rax,RAX-ARGOFFSET(%rsp)
607 /* Use IRET because user could have changed frame */
610 * Syscall return path ending with IRET.
611 * Has correct top of stack, but partial stack frame.
613 GLOBAL(int_ret_from_sys_call)
614 DISABLE_INTERRUPTS(CLBR_NONE)
616 testl $3,CS-ARGOFFSET(%rsp)
617 je retint_restore_args
618 movl $_TIF_ALLWORK_MASK,%edi
619 /* edi: mask to check */
620 GLOBAL(int_with_check)
622 GET_THREAD_INFO(%rcx)
623 movl TI_flags(%rcx),%edx
626 andl $~TS_COMPAT,TI_status(%rcx)
629 /* Either reschedule or signal or syscall exit tracking needed. */
630 /* First do a reschedule test. */
631 /* edx: work, edi: workmask */
633 bt $TIF_NEED_RESCHED,%edx
636 ENABLE_INTERRUPTS(CLBR_NONE)
640 DISABLE_INTERRUPTS(CLBR_NONE)
644 /* handle signals and tracing -- both require a full stack frame */
647 ENABLE_INTERRUPTS(CLBR_NONE)
648 int_check_syscall_exit_work:
650 /* Check for syscall exit trace */
651 testl $_TIF_WORK_SYSCALL_EXIT,%edx
654 leaq 8(%rsp),%rdi # &ptregs -> arg1
655 call syscall_trace_leave
657 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
661 testl $_TIF_DO_NOTIFY_MASK,%edx
663 movq %rsp,%rdi # &ptregs -> arg1
664 xorl %esi,%esi # oldset -> arg2
665 call do_notify_resume
666 1: movl $_TIF_WORK_MASK,%edi
669 DISABLE_INTERRUPTS(CLBR_NONE)
676 * Certain special system calls that need to save a complete full stack frame.
678 .macro PTREGSCALL label,func,arg
680 PARTIAL_FRAME 1 8 /* offset 8: return address */
681 subq $REST_SKIP, %rsp
682 CFI_ADJUST_CFA_OFFSET REST_SKIP
684 DEFAULT_FRAME 0 8 /* offset 8: return address */
685 leaq 8(%rsp), \arg /* pt_regs pointer */
687 jmp ptregscall_common
692 PTREGSCALL stub_clone, sys_clone, %r8
693 PTREGSCALL stub_fork, sys_fork, %rdi
694 PTREGSCALL stub_vfork, sys_vfork, %rdi
695 PTREGSCALL stub_sigaltstack, sys_sigaltstack, %rdx
696 PTREGSCALL stub_iopl, sys_iopl, %rsi
698 ENTRY(ptregscall_common)
699 DEFAULT_FRAME 1 8 /* offset 8: return address */
700 RESTORE_TOP_OF_STACK %r11, 8
701 movq_cfi_restore R15+8, r15
702 movq_cfi_restore R14+8, r14
703 movq_cfi_restore R13+8, r13
704 movq_cfi_restore R12+8, r12
705 movq_cfi_restore RBP+8, rbp
706 movq_cfi_restore RBX+8, rbx
707 ret $REST_SKIP /* pop extended registers */
709 END(ptregscall_common)
716 FIXUP_TOP_OF_STACK %r11
719 RESTORE_TOP_OF_STACK %r11
722 jmp int_ret_from_sys_call
727 * sigreturn is special because it needs to restore all registers on return.
728 * This cannot be done with SYSRET, so use the IRET return path instead.
730 ENTRY(stub_rt_sigreturn)
736 FIXUP_TOP_OF_STACK %r11
737 call sys_rt_sigreturn
738 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
740 jmp int_ret_from_sys_call
742 END(stub_rt_sigreturn)
745 * Build the entry stubs and pointer table with some assembler magic.
746 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
747 * single cache line on all modern x86 implementations.
749 .section .init.rodata,"a"
753 .p2align CONFIG_X86_L1_CACHE_SHIFT
754 ENTRY(irq_entries_start)
756 vector=FIRST_EXTERNAL_VECTOR
757 .rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
760 .if vector < NR_VECTORS
761 .if vector <> FIRST_EXTERNAL_VECTOR
762 CFI_ADJUST_CFA_OFFSET -8
764 1: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
765 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
774 2: jmp common_interrupt
777 END(irq_entries_start)
784 * Interrupt entry/exit.
786 * Interrupt entry points save only callee clobbered registers in fast path.
788 * Entry runs with interrupts off.
791 /* 0(%rsp): ~(interrupt number) */
792 .macro interrupt func
793 /* reserve pt_regs for scratch regs and rbp */
794 subq $ORIG_RAX-RBP, %rsp
795 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
802 * Interrupt entry/exit should be protected against kprobes
804 .pushsection .kprobes.text, "ax"
806 * The interrupt stubs push (~vector+0x80) onto the stack and
807 * then jump to common_interrupt.
809 .p2align CONFIG_X86_L1_CACHE_SHIFT
812 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
814 /* 0(%rsp): old_rsp-ARGOFFSET */
816 DISABLE_INTERRUPTS(CLBR_NONE)
818 decl PER_CPU_VAR(irq_count)
822 CFI_DEF_CFA_REGISTER rsp
823 CFI_ADJUST_CFA_OFFSET -8
825 /* we did not save rbx, restore only from ARGOFFSET */
827 CFI_ADJUST_CFA_OFFSET -8
829 GET_THREAD_INFO(%rcx)
830 testl $3,CS-ARGOFFSET(%rsp)
833 /* Interrupt came from user space */
835 * Has a correct top of stack, but a partial stack frame
836 * %rcx: thread info. Interrupts off.
838 retint_with_reschedule:
839 movl $_TIF_WORK_MASK,%edi
842 movl TI_flags(%rcx),%edx
847 retint_swapgs: /* return to user-space */
849 * The iretq could re-enable interrupts:
851 DISABLE_INTERRUPTS(CLBR_ANY)
856 retint_restore_args: /* return to kernel space */
857 DISABLE_INTERRUPTS(CLBR_ANY)
859 * The iretq could re-enable interrupts:
868 .section __ex_table, "a"
869 .quad irq_return, bad_iret
872 #ifdef CONFIG_PARAVIRT
876 .section __ex_table,"a"
877 .quad native_iret, bad_iret
884 * The iret traps when the %cs or %ss being restored is bogus.
885 * We've lost the original trap vector and error code.
886 * #GPF is the most likely one to get for an invalid selector.
887 * So pretend we completed the iret and took the #GPF in user mode.
889 * We are now running with the kernel GS after exception recovery.
890 * But error_entry expects us to have user GS to match the user %cs,
896 jmp general_protection
900 /* edi: workmask, edx: work */
903 bt $TIF_NEED_RESCHED,%edx
906 ENABLE_INTERRUPTS(CLBR_NONE)
910 GET_THREAD_INFO(%rcx)
911 DISABLE_INTERRUPTS(CLBR_NONE)
916 testl $_TIF_DO_NOTIFY_MASK,%edx
919 ENABLE_INTERRUPTS(CLBR_NONE)
921 movq $-1,ORIG_RAX(%rsp)
922 xorl %esi,%esi # oldset
923 movq %rsp,%rdi # &pt_regs
924 call do_notify_resume
926 DISABLE_INTERRUPTS(CLBR_NONE)
928 GET_THREAD_INFO(%rcx)
929 jmp retint_with_reschedule
931 #ifdef CONFIG_PREEMPT
932 /* Returning to kernel space. Check if we need preemption */
933 /* rcx: threadinfo. interrupts off. */
935 cmpl $0,TI_preempt_count(%rcx)
936 jnz retint_restore_args
937 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
938 jnc retint_restore_args
939 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
940 jnc retint_restore_args
941 call preempt_schedule_irq
946 END(common_interrupt)
948 * End of kprobes section
955 .macro apicinterrupt num sym do_sym
966 apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
967 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
968 apicinterrupt REBOOT_VECTOR \
969 reboot_interrupt smp_reboot_interrupt
973 apicinterrupt UV_BAU_MESSAGE \
974 uv_bau_message_intr1 uv_bau_message_interrupt
976 apicinterrupt LOCAL_TIMER_VECTOR \
977 apic_timer_interrupt smp_apic_timer_interrupt
978 apicinterrupt X86_PLATFORM_IPI_VECTOR \
979 x86_platform_ipi smp_x86_platform_ipi
982 .irp idx,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15, \
983 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31
984 .if NUM_INVALIDATE_TLB_VECTORS > \idx
985 apicinterrupt (INVALIDATE_TLB_VECTOR_START)+\idx \
986 invalidate_interrupt\idx smp_invalidate_interrupt
991 apicinterrupt THRESHOLD_APIC_VECTOR \
992 threshold_interrupt smp_threshold_interrupt
993 apicinterrupt THERMAL_APIC_VECTOR \
994 thermal_interrupt smp_thermal_interrupt
996 #ifdef CONFIG_X86_MCE
997 apicinterrupt MCE_SELF_VECTOR \
998 mce_self_interrupt smp_mce_self_interrupt
1002 apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1003 call_function_single_interrupt smp_call_function_single_interrupt
1004 apicinterrupt CALL_FUNCTION_VECTOR \
1005 call_function_interrupt smp_call_function_interrupt
1006 apicinterrupt RESCHEDULE_VECTOR \
1007 reschedule_interrupt smp_reschedule_interrupt
1010 apicinterrupt ERROR_APIC_VECTOR \
1011 error_interrupt smp_error_interrupt
1012 apicinterrupt SPURIOUS_APIC_VECTOR \
1013 spurious_interrupt smp_spurious_interrupt
1015 #ifdef CONFIG_IRQ_WORK
1016 apicinterrupt IRQ_WORK_VECTOR \
1017 irq_work_interrupt smp_irq_work_interrupt
1021 * Exception entry points.
1023 .macro zeroentry sym do_sym
1026 PARAVIRT_ADJUST_EXCEPTION_FRAME
1027 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1028 subq $ORIG_RAX-R15, %rsp
1029 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1032 movq %rsp,%rdi /* pt_regs pointer */
1033 xorl %esi,%esi /* no error code */
1035 jmp error_exit /* %ebx: no swapgs flag */
1040 .macro paranoidzeroentry sym do_sym
1043 PARAVIRT_ADJUST_EXCEPTION_FRAME
1044 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1045 subq $ORIG_RAX-R15, %rsp
1046 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1049 movq %rsp,%rdi /* pt_regs pointer */
1050 xorl %esi,%esi /* no error code */
1052 jmp paranoid_exit /* %ebx: no swapgs flag */
1057 #define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
1058 .macro paranoidzeroentry_ist sym do_sym ist
1061 PARAVIRT_ADJUST_EXCEPTION_FRAME
1062 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1063 subq $ORIG_RAX-R15, %rsp
1064 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1067 movq %rsp,%rdi /* pt_regs pointer */
1068 xorl %esi,%esi /* no error code */
1069 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
1071 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
1072 jmp paranoid_exit /* %ebx: no swapgs flag */
1077 .macro errorentry sym do_sym
1080 PARAVIRT_ADJUST_EXCEPTION_FRAME
1081 subq $ORIG_RAX-R15, %rsp
1082 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1085 movq %rsp,%rdi /* pt_regs pointer */
1086 movq ORIG_RAX(%rsp),%rsi /* get error code */
1087 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1089 jmp error_exit /* %ebx: no swapgs flag */
1094 /* error code is on the stack already */
1095 .macro paranoiderrorentry sym do_sym
1098 PARAVIRT_ADJUST_EXCEPTION_FRAME
1099 subq $ORIG_RAX-R15, %rsp
1100 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1104 movq %rsp,%rdi /* pt_regs pointer */
1105 movq ORIG_RAX(%rsp),%rsi /* get error code */
1106 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1108 jmp paranoid_exit /* %ebx: no swapgs flag */
1113 zeroentry divide_error do_divide_error
1114 zeroentry overflow do_overflow
1115 zeroentry bounds do_bounds
1116 zeroentry invalid_op do_invalid_op
1117 zeroentry device_not_available do_device_not_available
1118 paranoiderrorentry double_fault do_double_fault
1119 zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1120 errorentry invalid_TSS do_invalid_TSS
1121 errorentry segment_not_present do_segment_not_present
1122 zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1123 zeroentry coprocessor_error do_coprocessor_error
1124 errorentry alignment_check do_alignment_check
1125 zeroentry simd_coprocessor_error do_simd_coprocessor_error
1127 /* Reload gs selector with exception handling */
1128 /* edi: new selector */
1129 ENTRY(native_load_gs_index)
1132 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
1136 2: mfence /* workaround */
1141 END(native_load_gs_index)
1143 .section __ex_table,"a"
1145 .quad gs_change,bad_gs
1147 .section .fixup,"ax"
1148 /* running with kernelgs */
1150 SWAPGS /* switch back to user gs */
1156 ENTRY(kernel_thread_helper)
1157 pushq $0 # fake return address
1160 * Here we are in the child and the registers are set as they were
1161 * at kernel_thread() invocation in the parent.
1167 ud2 # padding for call trace
1169 END(kernel_thread_helper)
1172 * execve(). This function needs to use IRET, not SYSRET, to set up all state properly.
1174 * C extern interface:
1175 * extern long execve(const char *name, char **argv, char **envp)
1177 * asm input arguments:
1178 * rdi: name, rsi: argv, rdx: envp
1180 * We want to fallback into:
1181 * extern long sys_execve(const char *name, char **argv,char **envp, struct pt_regs *regs)
1183 * do_sys_execve asm fallback arguments:
1184 * rdi: name, rsi: argv, rdx: envp, rcx: fake frame on the stack
1186 ENTRY(kernel_execve)
1192 movq %rax, RAX(%rsp)
1195 je int_ret_from_sys_call
1202 /* Call softirq on interrupt stack. Interrupts are off. */
1206 CFI_REL_OFFSET rbp,0
1208 CFI_DEF_CFA_REGISTER rbp
1209 incl PER_CPU_VAR(irq_count)
1210 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
1211 push %rbp # backlink for old unwinder
1215 CFI_DEF_CFA_REGISTER rsp
1216 CFI_ADJUST_CFA_OFFSET -8
1217 decl PER_CPU_VAR(irq_count)
1223 zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
1226 * A note on the "critical region" in our callback handler.
1227 * We want to avoid stacking callback handlers due to events occurring
1228 * during handling of the last event. To do this, we keep events disabled
1229 * until we've done all processing. HOWEVER, we must enable events before
1230 * popping the stack frame (can't be done atomically) and so it would still
1231 * be possible to get enough handler activations to overflow the stack.
1232 * Although unlikely, bugs of that kind are hard to track down, so we'd
1233 * like to avoid the possibility.
1234 * So, on entry to the handler we detect whether we interrupted an
1235 * existing activation in its critical region -- if so, we pop the current
1236 * activation and restart the handler using the previous one.
1238 ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1241 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1242 * see the correct pointer to the pt_regs
1244 movq %rdi, %rsp # we don't return, adjust the stack frame
1247 11: incl PER_CPU_VAR(irq_count)
1249 CFI_DEF_CFA_REGISTER rbp
1250 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
1251 pushq %rbp # backlink for old unwinder
1252 call xen_evtchn_do_upcall
1254 CFI_DEF_CFA_REGISTER rsp
1255 decl PER_CPU_VAR(irq_count)
1258 END(xen_do_hypervisor_callback)
1261 * Hypervisor uses this for application faults while it executes.
1262 * We get here for two reasons:
1263 * 1. Fault while reloading DS, ES, FS or GS
1264 * 2. Fault while executing IRET
1265 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1266 * registers that could be reloaded and zeroed the others.
1267 * Category 2 we fix up by killing the current process. We cannot use the
1268 * normal Linux return path in this case because if we use the IRET hypercall
1269 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1270 * We distinguish between categories by comparing each saved segment register
1271 * with its current contents: any discrepancy means we in category 1.
1273 ENTRY(xen_failsafe_callback)
1275 /*CFI_REL_OFFSET gs,GS*/
1276 /*CFI_REL_OFFSET fs,FS*/
1277 /*CFI_REL_OFFSET es,ES*/
1278 /*CFI_REL_OFFSET ds,DS*/
1279 CFI_REL_OFFSET r11,8
1280 CFI_REL_OFFSET rcx,0
1294 /* All segments match their saved values => Category 2 (Bad IRET). */
1300 CFI_ADJUST_CFA_OFFSET -0x30
1301 pushq_cfi $0 /* RIP */
1304 jmp general_protection
1306 1: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1312 CFI_ADJUST_CFA_OFFSET -0x30
1317 END(xen_failsafe_callback)
1319 apicinterrupt XEN_HVM_EVTCHN_CALLBACK \
1320 xen_hvm_callback_vector xen_evtchn_do_upcall
1322 #endif /* CONFIG_XEN */
1325 * Some functions should be protected against kprobes
1327 .pushsection .kprobes.text, "ax"
1329 paranoidzeroentry_ist debug do_debug DEBUG_STACK
1330 paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1331 paranoiderrorentry stack_segment do_stack_segment
1333 zeroentry xen_debug do_debug
1334 zeroentry xen_int3 do_int3
1335 errorentry xen_stack_segment do_stack_segment
1337 errorentry general_protection do_general_protection
1338 errorentry page_fault do_page_fault
1339 #ifdef CONFIG_KVM_GUEST
1340 errorentry async_page_fault do_async_page_fault
1342 #ifdef CONFIG_X86_MCE
1343 paranoidzeroentry machine_check *machine_check_vector(%rip)
1347 * "Paranoid" exit path from exception stack.
1348 * Paranoid because this is used by NMIs and cannot take
1349 * any kernel state for granted.
1350 * We don't do kernel preemption checks here, because only
1351 * NMI should be common and it does not enable IRQs and
1352 * cannot get reschedule ticks.
1354 * "trace" is 0 for the NMI handler only, because irq-tracing
1355 * is fundamentally NMI-unsafe. (we cannot change the soft and
1356 * hard flags at once, atomically)
1359 /* ebx: no swapgs flag */
1360 ENTRY(paranoid_exit)
1362 DISABLE_INTERRUPTS(CLBR_NONE)
1364 testl %ebx,%ebx /* swapgs needed? */
1365 jnz paranoid_restore
1367 jnz paranoid_userspace
1378 GET_THREAD_INFO(%rcx)
1379 movl TI_flags(%rcx),%ebx
1380 andl $_TIF_WORK_MASK,%ebx
1382 movq %rsp,%rdi /* &pt_regs */
1384 movq %rax,%rsp /* switch stack for scheduling */
1385 testl $_TIF_NEED_RESCHED,%ebx
1386 jnz paranoid_schedule
1387 movl %ebx,%edx /* arg3: thread flags */
1389 ENABLE_INTERRUPTS(CLBR_NONE)
1390 xorl %esi,%esi /* arg2: oldset */
1391 movq %rsp,%rdi /* arg1: &pt_regs */
1392 call do_notify_resume
1393 DISABLE_INTERRUPTS(CLBR_NONE)
1395 jmp paranoid_userspace
1398 ENABLE_INTERRUPTS(CLBR_ANY)
1400 DISABLE_INTERRUPTS(CLBR_ANY)
1402 jmp paranoid_userspace
1407 * Exception entry point. This expects an error code/orig_rax on the stack.
1408 * returns in "no swapgs flag" in %ebx.
1412 CFI_ADJUST_CFA_OFFSET 15*8
1413 /* oldrax contains error code */
1432 je error_kernelspace
1440 * There are two places in the kernel that can potentially fault with
1441 * usergs. Handle them here. The exception handlers after iret run with
1442 * kernel gs again, so don't set the user space flag. B stepping K8s
1443 * sometimes report an truncated RIP for IRET exceptions returning to
1444 * compat mode. Check for these here too.
1448 leaq irq_return(%rip),%rcx
1449 cmpq %rcx,RIP+8(%rsp)
1451 movl %ecx,%eax /* zero extend */
1452 cmpq %rax,RIP+8(%rsp)
1454 cmpq $gs_change,RIP+8(%rsp)
1459 /* Fix truncated RIP */
1460 movq %rcx,RIP+8(%rsp)
1466 /* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1471 DISABLE_INTERRUPTS(CLBR_NONE)
1473 GET_THREAD_INFO(%rcx)
1476 LOCKDEP_SYS_EXIT_IRQ
1477 movl TI_flags(%rcx),%edx
1478 movl $_TIF_WORK_MASK,%edi
1486 /* runs on exception stack */
1489 PARAVIRT_ADJUST_EXCEPTION_FRAME
1491 subq $ORIG_RAX-R15, %rsp
1492 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1495 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1499 #ifdef CONFIG_TRACE_IRQFLAGS
1500 /* paranoidexit; without TRACE_IRQS_OFF */
1501 /* ebx: no swapgs flag */
1502 DISABLE_INTERRUPTS(CLBR_NONE)
1503 testl %ebx,%ebx /* swapgs needed? */
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
1522 movl %ebx,%edx /* arg3: thread flags */
1523 ENABLE_INTERRUPTS(CLBR_NONE)
1524 xorl %esi,%esi /* arg2: oldset */
1525 movq %rsp,%rdi /* arg1: &pt_regs */
1526 call do_notify_resume
1527 DISABLE_INTERRUPTS(CLBR_NONE)
1530 ENABLE_INTERRUPTS(CLBR_ANY)
1532 DISABLE_INTERRUPTS(CLBR_ANY)
1541 ENTRY(ignore_sysret)
1549 * End of kprobes section