2 * Copyright (C) 1991,1992 Linus Torvalds
4 * entry_32.S contains the system-call and low-level fault and trap handling routines.
6 * Stack layout while running C code:
7 * ptrace needs to have all registers on the stack.
8 * If the order here is changed, it needs to be
9 * updated in fork.c:copy_process(), signal.c:do_signal(),
10 * ptrace.c and ptrace.h
22 * 28(%esp) - %gs saved iff !CONFIG_X86_32_LAZY_GS
31 #include <linux/linkage.h>
32 #include <linux/err.h>
33 #include <asm/thread_info.h>
34 #include <asm/irqflags.h>
35 #include <asm/errno.h>
36 #include <asm/segment.h>
38 #include <asm/page_types.h>
39 #include <asm/percpu.h>
40 #include <asm/processor-flags.h>
41 #include <asm/ftrace.h>
42 #include <asm/irq_vectors.h>
43 #include <asm/cpufeatures.h>
44 #include <asm/alternative-asm.h>
47 #include <asm/export.h>
48 #include <asm/frame.h>
50 .section .entry.text, "ax"
53 * We use macros for low-level operations which need to be overridden
54 * for paravirtualization. The following will never clobber any registers:
55 * INTERRUPT_RETURN (aka. "iret")
56 * GET_CR0_INTO_EAX (aka. "movl %cr0, %eax")
57 * ENABLE_INTERRUPTS_SYSEXIT (aka "sti; sysexit").
59 * For DISABLE_INTERRUPTS/ENABLE_INTERRUPTS (aka "cli"/"sti"), you must
60 * specify what registers can be overwritten (CLBR_NONE, CLBR_EAX/EDX/ECX/ANY).
61 * Allowing a register to be clobbered can shrink the paravirt replacement
62 * enough to patch inline, increasing performance.
66 # define preempt_stop(clobbers) DISABLE_INTERRUPTS(clobbers); TRACE_IRQS_OFF
68 # define preempt_stop(clobbers)
69 # define resume_kernel restore_all
72 .macro TRACE_IRQS_IRET
73 #ifdef CONFIG_TRACE_IRQFLAGS
74 testl $X86_EFLAGS_IF, PT_EFLAGS(%esp) # interrupts off?
82 * User gs save/restore
84 * %gs is used for userland TLS and kernel only uses it for stack
85 * canary which is required to be at %gs:20 by gcc. Read the comment
86 * at the top of stackprotector.h for more info.
88 * Local labels 98 and 99 are used.
90 #ifdef CONFIG_X86_32_LAZY_GS
92 /* unfortunately push/pop can't be no-op */
97 addl $(4 + \pop), %esp
102 /* all the rest are no-op */
109 .macro REG_TO_PTGS reg
111 .macro SET_KERNEL_GS reg
114 #else /* CONFIG_X86_32_LAZY_GS */
127 .pushsection .fixup, "ax"
131 _ASM_EXTABLE(98b, 99b)
135 98: mov PT_GS(%esp), %gs
138 .pushsection .fixup, "ax"
139 99: movl $0, PT_GS(%esp)
142 _ASM_EXTABLE(98b, 99b)
148 .macro REG_TO_PTGS reg
149 movl \reg, PT_GS(%esp)
151 .macro SET_KERNEL_GS reg
152 movl $(__KERNEL_STACK_CANARY), \reg
156 #endif /* CONFIG_X86_32_LAZY_GS */
158 .macro SAVE_ALL pt_regs_ax=%eax
171 movl $(__USER_DS), %edx
174 movl $(__KERNEL_PERCPU), %edx
180 * This is a sneaky trick to help the unwinder find pt_regs on the stack. The
181 * frame pointer is replaced with an encoded pointer to pt_regs. The encoding
182 * is just setting the LSB, which makes it an invalid stack address and is also
183 * a signal to the unwinder that it's a pt_regs pointer in disguise.
185 * NOTE: This macro must be used *after* SAVE_ALL because it corrupts the
188 .macro ENCODE_FRAME_POINTER
189 #ifdef CONFIG_FRAME_POINTER
195 .macro RESTORE_INT_REGS
205 .macro RESTORE_REGS pop=0
211 .pushsection .fixup, "ax"
229 ENTRY(__switch_to_asm)
231 * Save callee-saved registers
232 * This must match the order in struct inactive_task_frame
240 movl %esp, TASK_threadsp(%eax)
241 movl TASK_threadsp(%edx), %esp
243 #ifdef CONFIG_CC_STACKPROTECTOR
244 movl TASK_stack_canary(%edx), %ebx
245 movl %ebx, PER_CPU_VAR(stack_canary)+stack_canary_offset
248 /* restore callee-saved registers */
258 * A newly forked process directly context switches into this address.
260 * eax: prev task we switched from
261 * ebx: kernel thread func (NULL for user thread)
262 * edi: kernel thread arg
265 FRAME_BEGIN /* help unwinder find end of stack */
268 * schedule_tail() is asmlinkage so we have to put its 'prev' argument
276 jnz 1f /* kernel threads are uncommon */
279 /* When we fork, we trace the syscall return in the child, too. */
280 leal FRAME_OFFSET(%esp), %eax
281 call syscall_return_slowpath
289 * A kernel thread is allowed to return here after successfully
290 * calling do_execve(). Exit to userspace to complete the execve()
293 movl $0, PT_EAX(%esp)
298 * Return to user mode is not as complex as all this looks,
299 * but we want the default path for a system call return to
300 * go as quickly as possible which is why some of this is
301 * less clear than it otherwise should be.
304 # userspace resumption stub bypassing syscall exit tracing
307 preempt_stop(CLBR_ANY)
310 movl PT_EFLAGS(%esp), %eax # mix EFLAGS and CS
311 movb PT_CS(%esp), %al
312 andl $(X86_EFLAGS_VM | SEGMENT_RPL_MASK), %eax
315 * We can be coming here from child spawned by kernel_thread().
317 movl PT_CS(%esp), %eax
318 andl $SEGMENT_RPL_MASK, %eax
321 jb resume_kernel # not returning to v8086 or userspace
323 ENTRY(resume_userspace)
324 DISABLE_INTERRUPTS(CLBR_ANY)
327 call prepare_exit_to_usermode
329 END(ret_from_exception)
331 #ifdef CONFIG_PREEMPT
333 DISABLE_INTERRUPTS(CLBR_ANY)
335 cmpl $0, PER_CPU_VAR(__preempt_count)
337 testl $X86_EFLAGS_IF, PT_EFLAGS(%esp) # interrupts off (exception path) ?
339 call preempt_schedule_irq
344 GLOBAL(__begin_SYSENTER_singlestep_region)
346 * All code from here through __end_SYSENTER_singlestep_region is subject
347 * to being single-stepped if a user program sets TF and executes SYSENTER.
348 * There is absolutely nothing that we can do to prevent this from happening
349 * (thanks Intel!). To keep our handling of this situation as simple as
350 * possible, we handle TF just like AC and NT, except that our #DB handler
351 * will ignore all of the single-step traps generated in this range.
356 * Xen doesn't set %esp to be precisely what the normal SYSENTER
357 * entry point expects, so fix it up before using the normal path.
359 ENTRY(xen_sysenter_target)
360 addl $5*4, %esp /* remove xen-provided frame */
361 jmp .Lsysenter_past_esp
365 * 32-bit SYSENTER entry.
367 * 32-bit system calls through the vDSO's __kernel_vsyscall enter here
368 * if X86_FEATURE_SEP is available. This is the preferred system call
369 * entry on 32-bit systems.
371 * The SYSENTER instruction, in principle, should *only* occur in the
372 * vDSO. In practice, a small number of Android devices were shipped
373 * with a copy of Bionic that inlined a SYSENTER instruction. This
374 * never happened in any of Google's Bionic versions -- it only happened
375 * in a narrow range of Intel-provided versions.
377 * SYSENTER loads SS, ESP, CS, and EIP from previously programmed MSRs.
378 * IF and VM in RFLAGS are cleared (IOW: interrupts are off).
379 * SYSENTER does not save anything on the stack,
380 * and does not save old EIP (!!!), ESP, or EFLAGS.
382 * To avoid losing track of EFLAGS.VM (and thus potentially corrupting
383 * user and/or vm86 state), we explicitly disable the SYSENTER
384 * instruction in vm86 mode by reprogramming the MSRs.
387 * eax system call number
396 ENTRY(entry_SYSENTER_32)
397 movl TSS_sysenter_sp0(%esp), %esp
399 pushl $__USER_DS /* pt_regs->ss */
400 pushl %ebp /* pt_regs->sp (stashed in bp) */
401 pushfl /* pt_regs->flags (except IF = 0) */
402 orl $X86_EFLAGS_IF, (%esp) /* Fix IF */
403 pushl $__USER_CS /* pt_regs->cs */
404 pushl $0 /* pt_regs->ip = 0 (placeholder) */
405 pushl %eax /* pt_regs->orig_ax */
406 SAVE_ALL pt_regs_ax=$-ENOSYS /* save rest */
409 * SYSENTER doesn't filter flags, so we need to clear NT, AC
410 * and TF ourselves. To save a few cycles, we can check whether
411 * either was set instead of doing an unconditional popfq.
412 * This needs to happen before enabling interrupts so that
413 * we don't get preempted with NT set.
415 * If TF is set, we will single-step all the way to here -- do_debug
416 * will ignore all the traps. (Yes, this is slow, but so is
417 * single-stepping in general. This allows us to avoid having
418 * a more complicated code to handle the case where a user program
419 * forces us to single-step through the SYSENTER entry code.)
421 * NB.: .Lsysenter_fix_flags is a label with the code under it moved
422 * out-of-line as an optimization: NT is unlikely to be set in the
423 * majority of the cases and instead of polluting the I$ unnecessarily,
424 * we're keeping that code behind a branch which will predict as
425 * not-taken and therefore its instructions won't be fetched.
427 testl $X86_EFLAGS_NT|X86_EFLAGS_AC|X86_EFLAGS_TF, PT_EFLAGS(%esp)
428 jnz .Lsysenter_fix_flags
429 .Lsysenter_flags_fixed:
432 * User mode is traced as though IRQs are on, and SYSENTER
438 call do_fast_syscall_32
439 /* XEN PV guests always use IRET path */
440 ALTERNATIVE "testl %eax, %eax; jz .Lsyscall_32_done", \
441 "jmp .Lsyscall_32_done", X86_FEATURE_XENPV
443 /* Opportunistic SYSEXIT */
444 TRACE_IRQS_ON /* User mode traces as IRQs on. */
445 movl PT_EIP(%esp), %edx /* pt_regs->ip */
446 movl PT_OLDESP(%esp), %ecx /* pt_regs->sp */
447 1: mov PT_FS(%esp), %fs
449 popl %ebx /* pt_regs->bx */
450 addl $2*4, %esp /* skip pt_regs->cx and pt_regs->dx */
451 popl %esi /* pt_regs->si */
452 popl %edi /* pt_regs->di */
453 popl %ebp /* pt_regs->bp */
454 popl %eax /* pt_regs->ax */
457 * Restore all flags except IF. (We restore IF separately because
458 * STI gives a one-instruction window in which we won't be interrupted,
459 * whereas POPF does not.)
461 addl $PT_EFLAGS-PT_DS, %esp /* point esp at pt_regs->flags */
462 btr $X86_EFLAGS_IF_BIT, (%esp)
466 * Return back to the vDSO, which will pop ecx and edx.
467 * Don't bother with DS and ES (they already contain __USER_DS).
472 .pushsection .fixup, "ax"
473 2: movl $0, PT_FS(%esp)
479 .Lsysenter_fix_flags:
480 pushl $X86_EFLAGS_FIXED
482 jmp .Lsysenter_flags_fixed
483 GLOBAL(__end_SYSENTER_singlestep_region)
484 ENDPROC(entry_SYSENTER_32)
487 * 32-bit legacy system call entry.
489 * 32-bit x86 Linux system calls traditionally used the INT $0x80
490 * instruction. INT $0x80 lands here.
492 * This entry point can be used by any 32-bit perform system calls.
493 * Instances of INT $0x80 can be found inline in various programs and
494 * libraries. It is also used by the vDSO's __kernel_vsyscall
495 * fallback for hardware that doesn't support a faster entry method.
496 * Restarted 32-bit system calls also fall back to INT $0x80
497 * regardless of what instruction was originally used to do the system
498 * call. (64-bit programs can use INT $0x80 as well, but they can
499 * only run on 64-bit kernels and therefore land in
500 * entry_INT80_compat.)
502 * This is considered a slow path. It is not used by most libc
503 * implementations on modern hardware except during process startup.
506 * eax system call number
514 ENTRY(entry_INT80_32)
516 pushl %eax /* pt_regs->orig_ax */
517 SAVE_ALL pt_regs_ax=$-ENOSYS /* save rest */
520 * User mode is traced as though IRQs are on, and the interrupt gate
526 call do_int80_syscall_32
531 .Lrestore_all_notrace:
532 #ifdef CONFIG_X86_ESPFIX32
533 ALTERNATIVE "jmp .Lrestore_nocheck", "", X86_BUG_ESPFIX
535 movl PT_EFLAGS(%esp), %eax # mix EFLAGS, SS and CS
537 * Warning: PT_OLDSS(%esp) contains the wrong/random values if we
538 * are returning to the kernel.
539 * See comments in process.c:copy_thread() for details.
541 movb PT_OLDSS(%esp), %ah
542 movb PT_CS(%esp), %al
543 andl $(X86_EFLAGS_VM | (SEGMENT_TI_MASK << 8) | SEGMENT_RPL_MASK), %eax
544 cmpl $((SEGMENT_LDT << 8) | USER_RPL), %eax
545 je .Lldt_ss # returning to user-space with LDT SS
548 RESTORE_REGS 4 # skip orig_eax/error_code
552 .section .fixup, "ax"
554 pushl $0 # no error code
558 _ASM_EXTABLE(.Lirq_return, iret_exc)
560 #ifdef CONFIG_X86_ESPFIX32
563 * Setup and switch to ESPFIX stack
565 * We're returning to userspace with a 16 bit stack. The CPU will not
566 * restore the high word of ESP for us on executing iret... This is an
567 * "official" bug of all the x86-compatible CPUs, which we can work
568 * around to make dosemu and wine happy. We do this by preloading the
569 * high word of ESP with the high word of the userspace ESP while
570 * compensating for the offset by changing to the ESPFIX segment with
571 * a base address that matches for the difference.
573 #define GDT_ESPFIX_SS PER_CPU_VAR(gdt_page) + (GDT_ENTRY_ESPFIX_SS * 8)
574 mov %esp, %edx /* load kernel esp */
575 mov PT_OLDESP(%esp), %eax /* load userspace esp */
576 mov %dx, %ax /* eax: new kernel esp */
577 sub %eax, %edx /* offset (low word is 0) */
579 mov %dl, GDT_ESPFIX_SS + 4 /* bits 16..23 */
580 mov %dh, GDT_ESPFIX_SS + 7 /* bits 24..31 */
582 pushl %eax /* new kernel esp */
584 * Disable interrupts, but do not irqtrace this section: we
585 * will soon execute iret and the tracer was already set to
586 * the irqstate after the IRET:
588 DISABLE_INTERRUPTS(CLBR_EAX)
589 lss (%esp), %esp /* switch to espfix segment */
590 jmp .Lrestore_nocheck
592 ENDPROC(entry_INT80_32)
594 .macro FIXUP_ESPFIX_STACK
596 * Switch back for ESPFIX stack to the normal zerobased stack
598 * We can't call C functions using the ESPFIX stack. This code reads
599 * the high word of the segment base from the GDT and swiches to the
600 * normal stack and adjusts ESP with the matching offset.
602 #ifdef CONFIG_X86_ESPFIX32
603 /* fixup the stack */
604 mov GDT_ESPFIX_SS + 4, %al /* bits 16..23 */
605 mov GDT_ESPFIX_SS + 7, %ah /* bits 24..31 */
607 addl %esp, %eax /* the adjusted stack pointer */
610 lss (%esp), %esp /* switch to the normal stack segment */
613 .macro UNWIND_ESPFIX_STACK
614 #ifdef CONFIG_X86_ESPFIX32
616 /* see if on espfix stack */
617 cmpw $__ESPFIX_SS, %ax
619 movl $__KERNEL_DS, %eax
622 /* switch to normal stack */
629 * Build the entry stubs with some assembler magic.
630 * We pack 1 stub into every 8-byte block.
633 ENTRY(irq_entries_start)
634 vector=FIRST_EXTERNAL_VECTOR
635 .rept (FIRST_SYSTEM_VECTOR - FIRST_EXTERNAL_VECTOR)
636 pushl $(~vector+0x80) /* Note: always in signed byte range */
641 END(irq_entries_start)
644 * the CPU automatically disables interrupts when executing an IRQ vector,
645 * so IRQ-flags tracing has to follow that:
647 .p2align CONFIG_X86_L1_CACHE_SHIFT
650 addl $-0x80, (%esp) /* Adjust vector into the [-256, -1] range */
657 ENDPROC(common_interrupt)
659 #define BUILD_INTERRUPT3(name, nr, fn) \
664 ENCODE_FRAME_POINTER; \
672 #ifdef CONFIG_TRACING
673 # define TRACE_BUILD_INTERRUPT(name, nr) BUILD_INTERRUPT3(trace_##name, nr, smp_trace_##name)
675 # define TRACE_BUILD_INTERRUPT(name, nr)
678 #define BUILD_INTERRUPT(name, nr) \
679 BUILD_INTERRUPT3(name, nr, smp_##name); \
680 TRACE_BUILD_INTERRUPT(name, nr)
682 /* The include is where all of the SMP etc. interrupts come from */
683 #include <asm/entry_arch.h>
685 ENTRY(coprocessor_error)
688 pushl $do_coprocessor_error
690 END(coprocessor_error)
692 ENTRY(simd_coprocessor_error)
695 #ifdef CONFIG_X86_INVD_BUG
696 /* AMD 486 bug: invd from userspace calls exception 19 instead of #GP */
697 ALTERNATIVE "pushl $do_general_protection", \
698 "pushl $do_simd_coprocessor_error", \
701 pushl $do_simd_coprocessor_error
704 END(simd_coprocessor_error)
706 ENTRY(device_not_available)
708 pushl $-1 # mark this as an int
709 pushl $do_device_not_available
711 END(device_not_available)
713 #ifdef CONFIG_PARAVIRT
716 _ASM_EXTABLE(native_iret, iret_exc)
741 ENTRY(coprocessor_segment_overrun)
744 pushl $do_coprocessor_segment_overrun
746 END(coprocessor_segment_overrun)
750 pushl $do_invalid_TSS
754 ENTRY(segment_not_present)
756 pushl $do_segment_not_present
758 END(segment_not_present)
762 pushl $do_stack_segment
766 ENTRY(alignment_check)
768 pushl $do_alignment_check
774 pushl $0 # no error code
775 pushl $do_divide_error
779 #ifdef CONFIG_X86_MCE
783 pushl machine_check_vector
788 ENTRY(spurious_interrupt_bug)
791 pushl $do_spurious_interrupt_bug
793 END(spurious_interrupt_bug)
796 ENTRY(xen_hypervisor_callback)
797 pushl $-1 /* orig_ax = -1 => not a system call */
803 * Check to see if we got the event in the critical
804 * region in xen_iret_direct, after we've reenabled
805 * events and checked for pending events. This simulates
806 * iret instruction's behaviour where it delivers a
807 * pending interrupt when enabling interrupts:
809 movl PT_EIP(%esp), %eax
810 cmpl $xen_iret_start_crit, %eax
812 cmpl $xen_iret_end_crit, %eax
815 jmp xen_iret_crit_fixup
819 call xen_evtchn_do_upcall
820 #ifndef CONFIG_PREEMPT
821 call xen_maybe_preempt_hcall
824 ENDPROC(xen_hypervisor_callback)
827 * Hypervisor uses this for application faults while it executes.
828 * We get here for two reasons:
829 * 1. Fault while reloading DS, ES, FS or GS
830 * 2. Fault while executing IRET
831 * Category 1 we fix up by reattempting the load, and zeroing the segment
832 * register if the load fails.
833 * Category 2 we fix up by jumping to do_iret_error. We cannot use the
834 * normal Linux return path in this case because if we use the IRET hypercall
835 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
836 * We distinguish between categories by maintaining a status value in EAX.
838 ENTRY(xen_failsafe_callback)
845 /* EAX == 0 => Category 1 (Bad segment)
846 EAX != 0 => Category 2 (Bad IRET) */
852 5: pushl $-1 /* orig_ax = -1 => not a system call */
855 jmp ret_from_exception
857 .section .fixup, "ax"
875 ENDPROC(xen_failsafe_callback)
877 BUILD_INTERRUPT3(xen_hvm_callback_vector, HYPERVISOR_CALLBACK_VECTOR,
878 xen_evtchn_do_upcall)
880 #endif /* CONFIG_XEN */
882 #if IS_ENABLED(CONFIG_HYPERV)
884 BUILD_INTERRUPT3(hyperv_callback_vector, HYPERVISOR_CALLBACK_VECTOR,
885 hyperv_vector_handler)
887 #endif /* CONFIG_HYPERV */
889 #ifdef CONFIG_FUNCTION_TRACER
890 #ifdef CONFIG_DYNAMIC_FTRACE
900 pushl $0 /* Pass NULL as regs pointer */
903 movl function_trace_op, %ecx
904 subl $MCOUNT_INSN_SIZE, %eax
910 addl $4, %esp /* skip NULL pointer */
915 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
916 .globl ftrace_graph_call
921 /* This is weak to keep gas from relaxing the jumps */
926 ENTRY(ftrace_regs_caller)
927 pushf /* push flags before compare (in cs location) */
930 * i386 does not save SS and ESP when coming from kernel.
931 * Instead, to get sp, ®s->sp is used (see ptrace.h).
932 * Unfortunately, that means eflags must be at the same location
933 * as the current return ip is. We move the return ip into the
934 * ip location, and move flags into the return ip location.
936 pushl 4(%esp) /* save return ip into ip slot */
938 pushl $0 /* Load 0 into orig_ax */
951 movl 13*4(%esp), %eax /* Get the saved flags */
952 movl %eax, 14*4(%esp) /* Move saved flags into regs->flags location */
953 /* clobbering return ip */
954 movl $__KERNEL_CS, 13*4(%esp)
956 movl 12*4(%esp), %eax /* Load ip (1st parameter) */
957 subl $MCOUNT_INSN_SIZE, %eax /* Adjust ip */
958 movl 0x4(%ebp), %edx /* Load parent ip (2nd parameter) */
959 movl function_trace_op, %ecx /* Save ftrace_pos in 3rd parameter */
960 pushl %esp /* Save pt_regs as 4th parameter */
962 GLOBAL(ftrace_regs_call)
965 addl $4, %esp /* Skip pt_regs */
966 movl 14*4(%esp), %eax /* Move flags back into cs */
967 movl %eax, 13*4(%esp) /* Needed to keep addl from modifying flags */
968 movl 12*4(%esp), %eax /* Get return ip from regs->ip */
969 movl %eax, 14*4(%esp) /* Put return ip back for ret */
982 addl $8, %esp /* Skip orig_ax and ip */
983 popf /* Pop flags at end (no addl to corrupt flags) */
988 #else /* ! CONFIG_DYNAMIC_FTRACE */
991 cmpl $__PAGE_OFFSET, %esp
992 jb ftrace_stub /* Paging not enabled yet? */
994 cmpl $ftrace_stub, ftrace_trace_function
996 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
997 cmpl $ftrace_stub, ftrace_graph_return
998 jnz ftrace_graph_caller
1000 cmpl $ftrace_graph_entry_stub, ftrace_graph_entry
1001 jnz ftrace_graph_caller
1007 /* taken from glibc */
1012 movl 0xc(%esp), %eax
1013 movl 0x4(%ebp), %edx
1014 subl $MCOUNT_INSN_SIZE, %eax
1016 call *ftrace_trace_function
1023 #endif /* CONFIG_DYNAMIC_FTRACE */
1024 EXPORT_SYMBOL(mcount)
1025 #endif /* CONFIG_FUNCTION_TRACER */
1027 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1028 ENTRY(ftrace_graph_caller)
1032 movl 0xc(%esp), %eax
1035 subl $MCOUNT_INSN_SIZE, %eax
1036 call prepare_ftrace_return
1041 END(ftrace_graph_caller)
1043 .globl return_to_handler
1048 call ftrace_return_to_handler
1055 #ifdef CONFIG_TRACING
1056 ENTRY(trace_page_fault)
1058 pushl $trace_do_page_fault
1059 jmp common_exception
1060 END(trace_page_fault)
1065 pushl $do_page_fault
1067 jmp common_exception
1071 /* the function address is in %gs's slot on the stack */
1082 ENCODE_FRAME_POINTER
1084 movl $(__KERNEL_PERCPU), %ecx
1088 movl PT_GS(%esp), %edi # get the function address
1089 movl PT_ORIG_EAX(%esp), %edx # get the error code
1090 movl $-1, PT_ORIG_EAX(%esp) # no syscall to restart
1093 movl $(__USER_DS), %ecx
1097 movl %esp, %eax # pt_regs pointer
1099 jmp ret_from_exception
1100 END(common_exception)
1104 * #DB can happen at the first instruction of
1105 * entry_SYSENTER_32 or in Xen's SYSENTER prologue. If this
1106 * happens, then we will be running on a very small stack. We
1107 * need to detect this condition and switch to the thread
1108 * stack before calling any C code at all.
1110 * If you edit this code, keep in mind that NMIs can happen in here.
1113 pushl $-1 # mark this as an int
1115 ENCODE_FRAME_POINTER
1116 xorl %edx, %edx # error code 0
1117 movl %esp, %eax # pt_regs pointer
1119 /* Are we currently on the SYSENTER stack? */
1120 PER_CPU(cpu_tss + CPU_TSS_SYSENTER_stack + SIZEOF_SYSENTER_stack, %ecx)
1121 subl %eax, %ecx /* ecx = (end of SYSENTER_stack) - esp */
1122 cmpl $SIZEOF_SYSENTER_stack, %ecx
1123 jb .Ldebug_from_sysenter_stack
1127 jmp ret_from_exception
1129 .Ldebug_from_sysenter_stack:
1130 /* We're on the SYSENTER stack. Switch off. */
1132 movl PER_CPU_VAR(cpu_current_top_of_stack), %esp
1136 jmp ret_from_exception
1140 * NMI is doubly nasty. It can happen on the first instruction of
1141 * entry_SYSENTER_32 (just like #DB), but it can also interrupt the beginning
1142 * of the #DB handler even if that #DB in turn hit before entry_SYSENTER_32
1143 * switched stacks. We handle both conditions by simply checking whether we
1144 * interrupted kernel code running on the SYSENTER stack.
1148 #ifdef CONFIG_X86_ESPFIX32
1151 cmpw $__ESPFIX_SS, %ax
1153 je .Lnmi_espfix_stack
1156 pushl %eax # pt_regs->orig_ax
1158 ENCODE_FRAME_POINTER
1159 xorl %edx, %edx # zero error code
1160 movl %esp, %eax # pt_regs pointer
1162 /* Are we currently on the SYSENTER stack? */
1163 PER_CPU(cpu_tss + CPU_TSS_SYSENTER_stack + SIZEOF_SYSENTER_stack, %ecx)
1164 subl %eax, %ecx /* ecx = (end of SYSENTER_stack) - esp */
1165 cmpl $SIZEOF_SYSENTER_stack, %ecx
1166 jb .Lnmi_from_sysenter_stack
1168 /* Not on SYSENTER stack. */
1170 jmp .Lrestore_all_notrace
1172 .Lnmi_from_sysenter_stack:
1174 * We're on the SYSENTER stack. Switch off. No one (not even debug)
1175 * is using the thread stack right now, so it's safe for us to use it.
1178 movl PER_CPU_VAR(cpu_current_top_of_stack), %esp
1181 jmp .Lrestore_all_notrace
1183 #ifdef CONFIG_X86_ESPFIX32
1186 * create the pointer to lss back
1191 /* copy the iret frame of 12 bytes */
1197 ENCODE_FRAME_POINTER
1198 FIXUP_ESPFIX_STACK # %eax == %esp
1199 xorl %edx, %edx # zero error code
1202 lss 12+4(%esp), %esp # back to espfix stack
1209 pushl $-1 # mark this as an int
1211 ENCODE_FRAME_POINTER
1213 xorl %edx, %edx # zero error code
1214 movl %esp, %eax # pt_regs pointer
1216 jmp ret_from_exception
1219 ENTRY(general_protection)
1220 pushl $do_general_protection
1221 jmp common_exception
1222 END(general_protection)
1224 #ifdef CONFIG_KVM_GUEST
1225 ENTRY(async_page_fault)
1227 pushl $do_async_page_fault
1228 jmp common_exception
1229 END(async_page_fault)
1232 ENTRY(rewind_stack_do_exit)
1233 /* Prevent any naive code from trying to unwind to our caller. */
1236 movl PER_CPU_VAR(cpu_current_top_of_stack), %esi
1237 leal -TOP_OF_KERNEL_STACK_PADDING-PTREGS_SIZE(%esi), %esp
1241 END(rewind_stack_do_exit)