3 * Copyright (C) 1991, 1992 Linus Torvalds
7 * entry.S contains the system-call and fault low-level handling routines.
8 * This also contains the timer-interrupt handler, as well as all interrupts
9 * and faults that can result in a task-switch.
11 * NOTE: This code handles signal-recognition, which happens every time
12 * after a timer-interrupt and after each system call.
14 * I changed all the .align's to 4 (16 byte alignment), as that's faster
17 * Stack layout in 'syscall_exit':
18 * ptrace needs to have all regs on the stack.
19 * if the order here is changed, it needs to be
20 * updated in fork.c:copy_process, signal.c:do_signal,
21 * ptrace.c and ptrace.h
33 * 28(%esp) - %gs saved iff !CONFIG_X86_32_LAZY_GS
41 * "current" is in register %ebx during any slow entries.
44 #include <linux/linkage.h>
45 #include <linux/err.h>
46 #include <asm/thread_info.h>
47 #include <asm/irqflags.h>
48 #include <asm/errno.h>
49 #include <asm/segment.h>
51 #include <asm/page_types.h>
52 #include <asm/percpu.h>
53 #include <asm/dwarf2.h>
54 #include <asm/processor-flags.h>
55 #include <asm/ftrace.h>
56 #include <asm/irq_vectors.h>
57 #include <asm/cpufeature.h>
58 #include <asm/alternative-asm.h>
60 /* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
61 #include <linux/elf-em.h>
62 #define AUDIT_ARCH_I386 (EM_386|__AUDIT_ARCH_LE)
63 #define __AUDIT_ARCH_LE 0x40000000
65 #ifndef CONFIG_AUDITSYSCALL
66 #define sysenter_audit syscall_trace_entry
67 #define sysexit_audit syscall_exit_work
70 .section .entry.text, "ax"
73 * We use macros for low-level operations which need to be overridden
74 * for paravirtualization. The following will never clobber any registers:
75 * INTERRUPT_RETURN (aka. "iret")
76 * GET_CR0_INTO_EAX (aka. "movl %cr0, %eax")
77 * ENABLE_INTERRUPTS_SYSEXIT (aka "sti; sysexit").
79 * For DISABLE_INTERRUPTS/ENABLE_INTERRUPTS (aka "cli"/"sti"), you must
80 * specify what registers can be overwritten (CLBR_NONE, CLBR_EAX/EDX/ECX/ANY).
81 * Allowing a register to be clobbered can shrink the paravirt replacement
82 * enough to patch inline, increasing performance.
86 #define preempt_stop(clobbers) DISABLE_INTERRUPTS(clobbers); TRACE_IRQS_OFF
88 #define preempt_stop(clobbers)
89 #define resume_kernel restore_all
92 .macro TRACE_IRQS_IRET
93 #ifdef CONFIG_TRACE_IRQFLAGS
94 testl $X86_EFLAGS_IF,PT_EFLAGS(%esp) # interrupts off?
102 * User gs save/restore
104 * %gs is used for userland TLS and kernel only uses it for stack
105 * canary which is required to be at %gs:20 by gcc. Read the comment
106 * at the top of stackprotector.h for more info.
108 * Local labels 98 and 99 are used.
110 #ifdef CONFIG_X86_32_LAZY_GS
112 /* unfortunately push/pop can't be no-op */
117 addl $(4 + \pop), %esp
118 CFI_ADJUST_CFA_OFFSET -(4 + \pop)
123 /* all the rest are no-op */
130 .macro REG_TO_PTGS reg
132 .macro SET_KERNEL_GS reg
135 #else /* CONFIG_X86_32_LAZY_GS */
139 /*CFI_REL_OFFSET gs, 0*/
147 CFI_ADJUST_CFA_OFFSET -\pop
151 .pushsection .fixup, "ax"
154 .section __ex_table, "a"
161 98: mov PT_GS(%esp), %gs
164 .pushsection .fixup, "ax"
165 99: movl $0, PT_GS(%esp)
167 .section __ex_table, "a"
175 /*CFI_REGISTER gs, \reg*/
177 .macro REG_TO_PTGS reg
178 movl \reg, PT_GS(%esp)
179 /*CFI_REL_OFFSET gs, PT_GS*/
181 .macro SET_KERNEL_GS reg
182 movl $(__KERNEL_STACK_CANARY), \reg
186 #endif /* CONFIG_X86_32_LAZY_GS */
192 /*CFI_REL_OFFSET fs, 0;*/
194 /*CFI_REL_OFFSET es, 0;*/
196 /*CFI_REL_OFFSET ds, 0;*/
198 CFI_REL_OFFSET eax, 0
200 CFI_REL_OFFSET ebp, 0
202 CFI_REL_OFFSET edi, 0
204 CFI_REL_OFFSET esi, 0
206 CFI_REL_OFFSET edx, 0
208 CFI_REL_OFFSET ecx, 0
210 CFI_REL_OFFSET ebx, 0
211 movl $(__USER_DS), %edx
214 movl $(__KERNEL_PERCPU), %edx
219 .macro RESTORE_INT_REGS
236 .macro RESTORE_REGS pop=0
245 .pushsection .fixup, "ax"
252 .section __ex_table, "a"
261 .macro RING0_INT_FRAME
265 /*CFI_OFFSET cs, -2*4;*/
269 .macro RING0_EC_FRAME
273 /*CFI_OFFSET cs, -2*4;*/
277 .macro RING0_PTREGS_FRAME
280 CFI_DEF_CFA esp, PT_OLDESP-PT_EBX
281 /*CFI_OFFSET cs, PT_CS-PT_OLDESP;*/
282 CFI_OFFSET eip, PT_EIP-PT_OLDESP
283 /*CFI_OFFSET es, PT_ES-PT_OLDESP;*/
284 /*CFI_OFFSET ds, PT_DS-PT_OLDESP;*/
285 CFI_OFFSET eax, PT_EAX-PT_OLDESP
286 CFI_OFFSET ebp, PT_EBP-PT_OLDESP
287 CFI_OFFSET edi, PT_EDI-PT_OLDESP
288 CFI_OFFSET esi, PT_ESI-PT_OLDESP
289 CFI_OFFSET edx, PT_EDX-PT_OLDESP
290 CFI_OFFSET ecx, PT_ECX-PT_OLDESP
291 CFI_OFFSET ebx, PT_EBX-PT_OLDESP
298 GET_THREAD_INFO(%ebp)
300 pushl_cfi $0x0202 # Reset kernel eflags
307 * Interrupt exit functions should be protected against kprobes
309 .pushsection .kprobes.text, "ax"
311 * Return to user mode is not as complex as all this looks,
312 * but we want the default path for a system call return to
313 * go as quickly as possible which is why some of this is
314 * less clear than it otherwise should be.
317 # userspace resumption stub bypassing syscall exit tracing
321 preempt_stop(CLBR_ANY)
323 GET_THREAD_INFO(%ebp)
324 resume_userspace_sig:
326 movl PT_EFLAGS(%esp), %eax # mix EFLAGS and CS
327 movb PT_CS(%esp), %al
328 andl $(X86_EFLAGS_VM | SEGMENT_RPL_MASK), %eax
331 * We can be coming here from a syscall done in the kernel space,
332 * e.g. a failed kernel_execve().
334 movl PT_CS(%esp), %eax
335 andl $SEGMENT_RPL_MASK, %eax
338 jb resume_kernel # not returning to v8086 or userspace
340 ENTRY(resume_userspace)
342 DISABLE_INTERRUPTS(CLBR_ANY) # make sure we don't miss an interrupt
343 # setting need_resched or sigpending
344 # between sampling and the iret
346 movl TI_flags(%ebp), %ecx
347 andl $_TIF_WORK_MASK, %ecx # is there any work to be done on
348 # int/exception return?
351 END(ret_from_exception)
353 #ifdef CONFIG_PREEMPT
355 DISABLE_INTERRUPTS(CLBR_ANY)
356 cmpl $0,TI_preempt_count(%ebp) # non-zero preempt_count ?
359 movl TI_flags(%ebp), %ecx # need_resched set ?
360 testb $_TIF_NEED_RESCHED, %cl
362 testl $X86_EFLAGS_IF,PT_EFLAGS(%esp) # interrupts off (exception path) ?
364 call preempt_schedule_irq
370 * End of kprobes section
374 /* SYSENTER_RETURN points to after the "sysenter" instruction in
375 the vsyscall page. See vsyscall-sysentry.S, which defines the symbol. */
377 # sysenter call handler stub
378 ENTRY(ia32_sysenter_target)
382 CFI_REGISTER esp, ebp
383 movl TSS_sysenter_sp0(%esp),%esp
386 * Interrupts are disabled here, but we can't trace it until
387 * enough kernel state to call TRACE_IRQS_OFF can be called - but
388 * we immediately enable interrupts at that point anyway.
391 /*CFI_REL_OFFSET ss, 0*/
393 CFI_REL_OFFSET esp, 0
395 orl $X86_EFLAGS_IF, (%esp)
397 /*CFI_REL_OFFSET cs, 0*/
399 * Push current_thread_info()->sysenter_return to the stack.
400 * A tiny bit of offset fixup is necessary - 4*4 means the 4 words
401 * pushed above; +8 corresponds to copy_thread's esp0 setting.
403 pushl_cfi ((TI_sysenter_return)-THREAD_SIZE+8+4*4)(%esp)
404 CFI_REL_OFFSET eip, 0
408 ENABLE_INTERRUPTS(CLBR_NONE)
411 * Load the potential sixth argument from user stack.
412 * Careful about security.
414 cmpl $__PAGE_OFFSET-3,%ebp
417 movl %ebp,PT_EBP(%esp)
418 .section __ex_table,"a"
420 .long 1b,syscall_fault
423 GET_THREAD_INFO(%ebp)
425 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%ebp)
428 cmpl $(NR_syscalls), %eax
430 call *sys_call_table(,%eax,4)
431 movl %eax,PT_EAX(%esp)
433 DISABLE_INTERRUPTS(CLBR_ANY)
435 movl TI_flags(%ebp), %ecx
436 testl $_TIF_ALLWORK_MASK, %ecx
439 /* if something modifies registers it must also disable sysexit */
440 movl PT_EIP(%esp), %edx
441 movl PT_OLDESP(%esp), %ecx
444 1: mov PT_FS(%esp), %fs
446 ENABLE_INTERRUPTS_SYSEXIT
448 #ifdef CONFIG_AUDITSYSCALL
450 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags(%ebp)
451 jnz syscall_trace_entry
453 CFI_ADJUST_CFA_OFFSET -4
454 /* %esi already in 8(%esp) 6th arg: 4th syscall arg */
455 /* %edx already in 4(%esp) 5th arg: 3rd syscall arg */
456 /* %ecx already in 0(%esp) 4th arg: 2nd syscall arg */
457 movl %ebx,%ecx /* 3rd arg: 1st syscall arg */
458 movl %eax,%edx /* 2nd arg: syscall number */
459 movl $AUDIT_ARCH_I386,%eax /* 1st arg: audit arch */
460 call __audit_syscall_entry
462 movl PT_EAX(%esp),%eax /* reload syscall number */
466 testl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT), %ecx
467 jne syscall_exit_work
469 ENABLE_INTERRUPTS(CLBR_ANY)
470 movl %eax,%edx /* second arg, syscall return value */
471 cmpl $-MAX_ERRNO,%eax /* is it an error ? */
472 setbe %al /* 1 if so, 0 if not */
473 movzbl %al,%eax /* zero-extend that */
474 call __audit_syscall_exit
475 DISABLE_INTERRUPTS(CLBR_ANY)
477 movl TI_flags(%ebp), %ecx
478 testl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT), %ecx
479 jne syscall_exit_work
480 movl PT_EAX(%esp),%eax /* reload syscall return value */
485 .pushsection .fixup,"ax"
486 2: movl $0,PT_FS(%esp)
488 .section __ex_table,"a"
493 ENDPROC(ia32_sysenter_target)
496 * syscall stub including irq exit should be protected against kprobes
498 .pushsection .kprobes.text, "ax"
499 # system call handler stub
501 RING0_INT_FRAME # can't unwind into user space anyway
502 pushl_cfi %eax # save orig_eax
504 GET_THREAD_INFO(%ebp)
505 # system call tracing in operation / emulation
506 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%ebp)
507 jnz syscall_trace_entry
508 cmpl $(NR_syscalls), %eax
511 call *sys_call_table(,%eax,4)
512 movl %eax,PT_EAX(%esp) # store the return value
515 DISABLE_INTERRUPTS(CLBR_ANY) # make sure we don't miss an interrupt
516 # setting need_resched or sigpending
517 # between sampling and the iret
519 movl TI_flags(%ebp), %ecx
520 testl $_TIF_ALLWORK_MASK, %ecx # current->work
521 jne syscall_exit_work
526 movl PT_EFLAGS(%esp), %eax # mix EFLAGS, SS and CS
527 # Warning: PT_OLDSS(%esp) contains the wrong/random values if we
528 # are returning to the kernel.
529 # See comments in process.c:copy_thread() for details.
530 movb PT_OLDSS(%esp), %ah
531 movb PT_CS(%esp), %al
532 andl $(X86_EFLAGS_VM | (SEGMENT_TI_MASK << 8) | SEGMENT_RPL_MASK), %eax
533 cmpl $((SEGMENT_LDT << 8) | USER_RPL), %eax
535 je ldt_ss # returning to user-space with LDT SS
537 RESTORE_REGS 4 # skip orig_eax/error_code
542 pushl $0 # no error code
546 .section __ex_table,"a"
548 .long irq_return,iret_exc
553 larl PT_OLDSS(%esp), %eax
555 testl $0x00400000, %eax # returning to 32bit stack?
556 jnz restore_nocheck # allright, normal return
558 #ifdef CONFIG_PARAVIRT
560 * The kernel can't run on a non-flat stack if paravirt mode
561 * is active. Rather than try to fixup the high bits of
562 * ESP, bypass this code entirely. This may break DOSemu
563 * and/or Wine support in a paravirt VM, although the option
564 * is still available to implement the setting of the high
565 * 16-bits in the INTERRUPT_RETURN paravirt-op.
567 cmpl $0, pv_info+PARAVIRT_enabled
572 * Setup and switch to ESPFIX stack
574 * We're returning to userspace with a 16 bit stack. The CPU will not
575 * restore the high word of ESP for us on executing iret... This is an
576 * "official" bug of all the x86-compatible CPUs, which we can work
577 * around to make dosemu and wine happy. We do this by preloading the
578 * high word of ESP with the high word of the userspace ESP while
579 * compensating for the offset by changing to the ESPFIX segment with
580 * a base address that matches for the difference.
582 #define GDT_ESPFIX_SS PER_CPU_VAR(gdt_page) + (GDT_ENTRY_ESPFIX_SS * 8)
583 mov %esp, %edx /* load kernel esp */
584 mov PT_OLDESP(%esp), %eax /* load userspace esp */
585 mov %dx, %ax /* eax: new kernel esp */
586 sub %eax, %edx /* offset (low word is 0) */
588 mov %dl, GDT_ESPFIX_SS + 4 /* bits 16..23 */
589 mov %dh, GDT_ESPFIX_SS + 7 /* bits 24..31 */
590 pushl_cfi $__ESPFIX_SS
591 pushl_cfi %eax /* new kernel esp */
592 /* Disable interrupts, but do not irqtrace this section: we
593 * will soon execute iret and the tracer was already set to
594 * the irqstate after the iret */
595 DISABLE_INTERRUPTS(CLBR_EAX)
596 lss (%esp), %esp /* switch to espfix segment */
597 CFI_ADJUST_CFA_OFFSET -8
602 # perform work that needs to be done immediately before resumption
604 RING0_PTREGS_FRAME # can't unwind into user space anyway
606 testb $_TIF_NEED_RESCHED, %cl
611 DISABLE_INTERRUPTS(CLBR_ANY) # make sure we don't miss an interrupt
612 # setting need_resched or sigpending
613 # between sampling and the iret
615 movl TI_flags(%ebp), %ecx
616 andl $_TIF_WORK_MASK, %ecx # is there any work to be done other
617 # than syscall tracing?
619 testb $_TIF_NEED_RESCHED, %cl
622 work_notifysig: # deal with pending signals and
623 # notify-resume requests
625 testl $X86_EFLAGS_VM, PT_EFLAGS(%esp)
627 jne work_notifysig_v86 # returning to kernel-space or
630 ENABLE_INTERRUPTS(CLBR_NONE)
632 call do_notify_resume
633 jmp resume_userspace_sig
637 pushl_cfi %ecx # save ti_flags for do_notify_resume
638 call save_v86_state # %eax contains pt_regs pointer
645 ENABLE_INTERRUPTS(CLBR_NONE)
647 call do_notify_resume
648 jmp resume_userspace_sig
651 # perform syscall exit tracing
654 movl $-ENOSYS,PT_EAX(%esp)
656 call syscall_trace_enter
657 /* What it returned is what we'll actually use. */
658 cmpl $(NR_syscalls), %eax
661 END(syscall_trace_entry)
663 # perform syscall exit tracing
666 testl $_TIF_WORK_SYSCALL_EXIT, %ecx
669 ENABLE_INTERRUPTS(CLBR_ANY) # could let syscall_trace_leave() call
672 call syscall_trace_leave
674 END(syscall_exit_work)
677 RING0_INT_FRAME # can't unwind into user space anyway
679 GET_THREAD_INFO(%ebp)
680 movl $-EFAULT,PT_EAX(%esp)
685 movl $-ENOSYS,PT_EAX(%esp)
690 * End of kprobes section
695 * System calls that need a pt_regs pointer.
697 #define PTREGSCALL0(name) \
698 ENTRY(ptregs_##name) ; \
701 ENDPROC(ptregs_##name)
703 #define PTREGSCALL1(name) \
704 ENTRY(ptregs_##name) ; \
706 movl (PT_EBX+4)(%esp),%eax; \
708 ENDPROC(ptregs_##name)
710 #define PTREGSCALL2(name) \
711 ENTRY(ptregs_##name) ; \
713 movl (PT_ECX+4)(%esp),%edx; \
714 movl (PT_EBX+4)(%esp),%eax; \
716 ENDPROC(ptregs_##name)
718 #define PTREGSCALL3(name) \
719 ENTRY(ptregs_##name) ; \
723 movl PT_EDX(%eax),%ecx; \
724 movl PT_ECX(%eax),%edx; \
725 movl PT_EBX(%eax),%eax; \
728 CFI_ADJUST_CFA_OFFSET -4; \
731 ENDPROC(ptregs_##name)
737 PTREGSCALL2(sigaltstack)
738 PTREGSCALL0(sigreturn)
739 PTREGSCALL0(rt_sigreturn)
743 /* Clone is an oddball. The 4th arg is in %edi */
748 pushl_cfi PT_EDI(%eax)
749 movl PT_EDX(%eax),%ecx
750 movl PT_ECX(%eax),%edx
751 movl PT_EBX(%eax),%eax
754 CFI_ADJUST_CFA_OFFSET -8
757 ENDPROC(ptregs_clone)
759 .macro FIXUP_ESPFIX_STACK
761 * Switch back for ESPFIX stack to the normal zerobased stack
763 * We can't call C functions using the ESPFIX stack. This code reads
764 * the high word of the segment base from the GDT and swiches to the
765 * normal stack and adjusts ESP with the matching offset.
767 /* fixup the stack */
768 mov GDT_ESPFIX_SS + 4, %al /* bits 16..23 */
769 mov GDT_ESPFIX_SS + 7, %ah /* bits 24..31 */
771 addl %esp, %eax /* the adjusted stack pointer */
772 pushl_cfi $__KERNEL_DS
774 lss (%esp), %esp /* switch to the normal stack segment */
775 CFI_ADJUST_CFA_OFFSET -8
777 .macro UNWIND_ESPFIX_STACK
779 /* see if on espfix stack */
780 cmpw $__ESPFIX_SS, %ax
782 movl $__KERNEL_DS, %eax
785 /* switch to normal stack */
791 * Build the entry stubs and pointer table with some assembler magic.
792 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
793 * single cache line on all modern x86 implementations.
795 .section .init.rodata,"a"
797 .section .entry.text, "ax"
799 .p2align CONFIG_X86_L1_CACHE_SHIFT
800 ENTRY(irq_entries_start)
802 vector=FIRST_EXTERNAL_VECTOR
803 .rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
806 .if vector < NR_VECTORS
807 .if vector <> FIRST_EXTERNAL_VECTOR
808 CFI_ADJUST_CFA_OFFSET -4
810 1: pushl_cfi $(~vector+0x80) /* Note: always in signed byte range */
811 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
816 .section .entry.text, "ax"
820 2: jmp common_interrupt
822 END(irq_entries_start)
829 * the CPU automatically disables interrupts when executing an IRQ vector,
830 * so IRQ-flags tracing has to follow that:
832 .p2align CONFIG_X86_L1_CACHE_SHIFT
834 addl $-0x80,(%esp) /* Adjust vector into the [-256,-1] range */
840 ENDPROC(common_interrupt)
844 * Irq entries should be protected against kprobes
846 .pushsection .kprobes.text, "ax"
847 #define BUILD_INTERRUPT3(name, nr, fn) \
859 #define BUILD_INTERRUPT(name, nr) BUILD_INTERRUPT3(name, nr, smp_##name)
861 /* The include is where all of the SMP etc. interrupts come from */
862 #include <asm/entry_arch.h>
864 ENTRY(coprocessor_error)
867 pushl_cfi $do_coprocessor_error
870 END(coprocessor_error)
872 ENTRY(simd_coprocessor_error)
875 #ifdef CONFIG_X86_INVD_BUG
876 /* AMD 486 bug: invd from userspace calls exception 19 instead of #GP */
877 661: pushl_cfi $do_general_protection
879 .section .altinstructions,"a"
880 altinstruction_entry 661b, 663f, X86_FEATURE_XMM, 662b-661b, 664f-663f
882 .section .altinstr_replacement,"ax"
883 663: pushl $do_simd_coprocessor_error
887 pushl_cfi $do_simd_coprocessor_error
891 END(simd_coprocessor_error)
893 ENTRY(device_not_available)
895 pushl_cfi $-1 # mark this as an int
896 pushl_cfi $do_device_not_available
899 END(device_not_available)
901 #ifdef CONFIG_PARAVIRT
904 .section __ex_table,"a"
906 .long native_iret, iret_exc
910 ENTRY(native_irq_enable_sysexit)
913 END(native_irq_enable_sysexit)
919 pushl_cfi $do_overflow
935 pushl_cfi $do_invalid_op
940 ENTRY(coprocessor_segment_overrun)
943 pushl_cfi $do_coprocessor_segment_overrun
946 END(coprocessor_segment_overrun)
950 pushl_cfi $do_invalid_TSS
955 ENTRY(segment_not_present)
957 pushl_cfi $do_segment_not_present
960 END(segment_not_present)
964 pushl_cfi $do_stack_segment
969 ENTRY(alignment_check)
971 pushl_cfi $do_alignment_check
978 pushl_cfi $0 # no error code
979 pushl_cfi $do_divide_error
984 #ifdef CONFIG_X86_MCE
988 pushl_cfi machine_check_vector
994 ENTRY(spurious_interrupt_bug)
997 pushl_cfi $do_spurious_interrupt_bug
1000 END(spurious_interrupt_bug)
1002 * End of kprobes section
1006 ENTRY(kernel_thread_helper)
1007 pushl $0 # fake return address for unwinder
1012 ud2 # padding for call trace
1014 ENDPROC(kernel_thread_helper)
1017 /* Xen doesn't set %esp to be precisely what the normal sysenter
1018 entrypoint expects, so fix it up before using the normal path. */
1019 ENTRY(xen_sysenter_target)
1021 addl $5*4, %esp /* remove xen-provided frame */
1022 CFI_ADJUST_CFA_OFFSET -5*4
1023 jmp sysenter_past_esp
1026 ENTRY(xen_hypervisor_callback)
1032 /* Check to see if we got the event in the critical
1033 region in xen_iret_direct, after we've reenabled
1034 events and checked for pending events. This simulates
1035 iret instruction's behaviour where it delivers a
1036 pending interrupt when enabling interrupts. */
1037 movl PT_EIP(%esp),%eax
1038 cmpl $xen_iret_start_crit,%eax
1040 cmpl $xen_iret_end_crit,%eax
1043 jmp xen_iret_crit_fixup
1045 ENTRY(xen_do_upcall)
1047 call xen_evtchn_do_upcall
1050 ENDPROC(xen_hypervisor_callback)
1052 # Hypervisor uses this for application faults while it executes.
1053 # We get here for two reasons:
1054 # 1. Fault while reloading DS, ES, FS or GS
1055 # 2. Fault while executing IRET
1056 # Category 1 we fix up by reattempting the load, and zeroing the segment
1057 # register if the load fails.
1058 # Category 2 we fix up by jumping to do_iret_error. We cannot use the
1059 # normal Linux return path in this case because if we use the IRET hypercall
1060 # to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1061 # We distinguish between categories by maintaining a status value in EAX.
1062 ENTRY(xen_failsafe_callback)
1073 CFI_ADJUST_CFA_OFFSET -16
1076 jmp iret_exc # EAX != 0 => Category 2 (Bad IRET)
1077 5: pushl_cfi $0 # EAX == 0 => Category 1 (Bad segment)
1079 jmp ret_from_exception
1082 .section .fixup,"ax"
1096 .section __ex_table,"a"
1103 ENDPROC(xen_failsafe_callback)
1105 BUILD_INTERRUPT3(xen_hvm_callback_vector, XEN_HVM_EVTCHN_CALLBACK,
1106 xen_evtchn_do_upcall)
1108 #endif /* CONFIG_XEN */
1110 #ifdef CONFIG_FUNCTION_TRACER
1111 #ifdef CONFIG_DYNAMIC_FTRACE
1117 ENTRY(ftrace_caller)
1118 cmpl $0, function_trace_stop
1124 movl 0xc(%esp), %eax
1125 movl 0x4(%ebp), %edx
1126 subl $MCOUNT_INSN_SIZE, %eax
1135 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1136 .globl ftrace_graph_call
1146 #else /* ! CONFIG_DYNAMIC_FTRACE */
1149 cmpl $0, function_trace_stop
1152 cmpl $ftrace_stub, ftrace_trace_function
1154 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1155 cmpl $ftrace_stub, ftrace_graph_return
1156 jnz ftrace_graph_caller
1158 cmpl $ftrace_graph_entry_stub, ftrace_graph_entry
1159 jnz ftrace_graph_caller
1165 /* taken from glibc */
1170 movl 0xc(%esp), %eax
1171 movl 0x4(%ebp), %edx
1172 subl $MCOUNT_INSN_SIZE, %eax
1174 call *ftrace_trace_function
1181 #endif /* CONFIG_DYNAMIC_FTRACE */
1182 #endif /* CONFIG_FUNCTION_TRACER */
1184 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1185 ENTRY(ftrace_graph_caller)
1186 cmpl $0, function_trace_stop
1192 movl 0xc(%esp), %edx
1195 subl $MCOUNT_INSN_SIZE, %edx
1196 call prepare_ftrace_return
1201 END(ftrace_graph_caller)
1203 .globl return_to_handler
1208 call ftrace_return_to_handler
1216 * Some functions should be protected against kprobes
1218 .pushsection .kprobes.text, "ax"
1222 pushl_cfi $do_page_fault
1225 /* the function address is in %gs's slot on the stack */
1227 /*CFI_REL_OFFSET fs, 0*/
1229 /*CFI_REL_OFFSET es, 0*/
1231 /*CFI_REL_OFFSET ds, 0*/
1233 CFI_REL_OFFSET eax, 0
1235 CFI_REL_OFFSET ebp, 0
1237 CFI_REL_OFFSET edi, 0
1239 CFI_REL_OFFSET esi, 0
1241 CFI_REL_OFFSET edx, 0
1243 CFI_REL_OFFSET ecx, 0
1245 CFI_REL_OFFSET ebx, 0
1247 movl $(__KERNEL_PERCPU), %ecx
1251 movl PT_GS(%esp), %edi # get the function address
1252 movl PT_ORIG_EAX(%esp), %edx # get the error code
1253 movl $-1, PT_ORIG_EAX(%esp) # no syscall to restart
1256 movl $(__USER_DS), %ecx
1260 movl %esp,%eax # pt_regs pointer
1262 jmp ret_from_exception
1267 * Debug traps and NMI can happen at the one SYSENTER instruction
1268 * that sets up the real kernel stack. Check here, since we can't
1269 * allow the wrong stack to be used.
1271 * "TSS_sysenter_sp0+12" is because the NMI/debug handler will have
1272 * already pushed 3 words if it hits on the sysenter instruction:
1273 * eflags, cs and eip.
1275 * We just load the right stack, and push the three (known) values
1276 * by hand onto the new stack - while updating the return eip past
1277 * the instruction that would have done it for sysenter.
1279 .macro FIX_STACK offset ok label
1280 cmpw $__KERNEL_CS, 4(%esp)
1283 movl TSS_sysenter_sp0 + \offset(%esp), %esp
1287 pushl_cfi $__KERNEL_CS
1288 pushl_cfi $sysenter_past_esp
1289 CFI_REL_OFFSET eip, 0
1294 cmpl $ia32_sysenter_target,(%esp)
1295 jne debug_stack_correct
1296 FIX_STACK 12, debug_stack_correct, debug_esp_fix_insn
1297 debug_stack_correct:
1298 pushl_cfi $-1 # mark this as an int
1301 xorl %edx,%edx # error code 0
1302 movl %esp,%eax # pt_regs pointer
1304 jmp ret_from_exception
1309 * NMI is doubly nasty. It can happen _while_ we're handling
1310 * a debug fault, and the debug fault hasn't yet been able to
1311 * clear up the stack. So we first check whether we got an
1312 * NMI on the sysenter entry path, but after that we need to
1313 * check whether we got an NMI on the debug path where the debug
1314 * fault happened on the sysenter path.
1320 cmpw $__ESPFIX_SS, %ax
1323 cmpl $ia32_sysenter_target,(%esp)
1327 /* Do not access memory above the end of our stack page,
1328 * it might not exist.
1330 andl $(THREAD_SIZE-1),%eax
1331 cmpl $(THREAD_SIZE-20),%eax
1333 jae nmi_stack_correct
1334 cmpl $ia32_sysenter_target,12(%esp)
1335 je nmi_debug_stack_check
1337 /* We have a RING0_INT_FRAME here */
1340 xorl %edx,%edx # zero error code
1341 movl %esp,%eax # pt_regs pointer
1343 jmp restore_all_notrace
1348 FIX_STACK 12, nmi_stack_correct, 1
1349 jmp nmi_stack_correct
1351 nmi_debug_stack_check:
1352 /* We have a RING0_INT_FRAME here */
1353 cmpw $__KERNEL_CS,16(%esp)
1354 jne nmi_stack_correct
1356 jb nmi_stack_correct
1357 cmpl $debug_esp_fix_insn,(%esp)
1358 ja nmi_stack_correct
1359 FIX_STACK 24, nmi_stack_correct, 1
1360 jmp nmi_stack_correct
1363 /* We have a RING0_INT_FRAME here.
1365 * create the pointer to lss back
1370 /* copy the iret frame of 12 bytes */
1376 FIXUP_ESPFIX_STACK # %eax == %esp
1377 xorl %edx,%edx # zero error code
1380 lss 12+4(%esp), %esp # back to espfix stack
1381 CFI_ADJUST_CFA_OFFSET -24
1388 pushl_cfi $-1 # mark this as an int
1391 xorl %edx,%edx # zero error code
1392 movl %esp,%eax # pt_regs pointer
1394 jmp ret_from_exception
1398 ENTRY(general_protection)
1400 pushl_cfi $do_general_protection
1403 END(general_protection)
1405 #ifdef CONFIG_KVM_GUEST
1406 ENTRY(async_page_fault)
1408 pushl_cfi $do_async_page_fault
1411 END(async_page_fault)
1415 * End of kprobes section