blob: bf8f221f9c94212da5560a9c5e46f2de8bfc4bd9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Ingo Molnara49976d2015-06-08 09:49:11 +02002 * Copyright (C) 1991,1992 Linus Torvalds
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Ingo Molnara49976d2015-06-08 09:49:11 +02004 * entry_32.S contains the system-call and low-level fault and trap handling routines.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Andy Lutomirski39e87012015-10-05 17:48:13 -07006 * Stack layout while running C code:
Ingo Molnara49976d2015-06-08 09:49:11 +02007 * 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(),
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * ptrace.c and ptrace.h
11 *
12 * 0(%esp) - %ebx
13 * 4(%esp) - %ecx
14 * 8(%esp) - %edx
Denys Vlasenko9b47feb2015-06-08 22:35:33 +020015 * C(%esp) - %esi
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * 10(%esp) - %edi
17 * 14(%esp) - %ebp
18 * 18(%esp) - %eax
19 * 1C(%esp) - %ds
20 * 20(%esp) - %es
Jeremy Fitzhardinge464d1a72007-02-13 13:26:20 +010021 * 24(%esp) - %fs
Tejun Heoccbeed32009-02-09 22:17:40 +090022 * 28(%esp) - %gs saved iff !CONFIG_X86_32_LAZY_GS
23 * 2C(%esp) - orig_eax
24 * 30(%esp) - %eip
25 * 34(%esp) - %cs
26 * 38(%esp) - %eflags
27 * 3C(%esp) - %oldesp
28 * 40(%esp) - %oldss
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 */
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/linkage.h>
Eric Parisd7e75282012-01-03 14:23:06 -050032#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/thread_info.h>
Ingo Molnar55f327f2006-07-03 00:24:43 -070034#include <asm/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/errno.h>
36#include <asm/segment.h>
37#include <asm/smp.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080038#include <asm/page_types.h>
Stas Sergeevbe44d2a2006-12-07 02:14:01 +010039#include <asm/percpu.h>
Cyrill Gorcunovab68ed92008-03-25 22:16:32 +030040#include <asm/processor-flags.h>
Abhishek Sagar395a59d2008-06-21 23:47:27 +053041#include <asm/ftrace.h>
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020042#include <asm/irq_vectors.h>
Borislav Petkovcd4d09e2016-01-26 22:12:04 +010043#include <asm/cpufeatures.h>
Andy Lutomirskib4ca46e2011-08-25 16:10:33 -040044#include <asm/alternative-asm.h>
H. Peter Anvin6837a542012-04-20 12:19:50 -070045#include <asm/asm.h>
H. Peter Anvine59d1b02012-09-21 13:58:10 -070046#include <asm/smap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Jiri Olsaea714542011-03-07 19:10:39 +010048 .section .entry.text, "ax"
49
Rusty Russell139ec7c2006-12-07 02:14:08 +010050/*
51 * We use macros for low-level operations which need to be overridden
52 * for paravirtualization. The following will never clobber any registers:
53 * INTERRUPT_RETURN (aka. "iret")
54 * GET_CR0_INTO_EAX (aka. "movl %cr0, %eax")
Jeremy Fitzhardinged75cd222008-06-25 00:19:26 -040055 * ENABLE_INTERRUPTS_SYSEXIT (aka "sti; sysexit").
Rusty Russell139ec7c2006-12-07 02:14:08 +010056 *
57 * For DISABLE_INTERRUPTS/ENABLE_INTERRUPTS (aka "cli"/"sti"), you must
58 * specify what registers can be overwritten (CLBR_NONE, CLBR_EAX/EDX/ECX/ANY).
59 * Allowing a register to be clobbered can shrink the paravirt replacement
60 * enough to patch inline, increasing performance.
61 */
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#ifdef CONFIG_PREEMPT
Ingo Molnara49976d2015-06-08 09:49:11 +020064# define preempt_stop(clobbers) DISABLE_INTERRUPTS(clobbers); TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#else
Ingo Molnara49976d2015-06-08 09:49:11 +020066# define preempt_stop(clobbers)
67# define resume_kernel restore_all
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#endif
69
Ingo Molnar55f327f2006-07-03 00:24:43 -070070.macro TRACE_IRQS_IRET
71#ifdef CONFIG_TRACE_IRQFLAGS
Ingo Molnara49976d2015-06-08 09:49:11 +020072 testl $X86_EFLAGS_IF, PT_EFLAGS(%esp) # interrupts off?
73 jz 1f
Ingo Molnar55f327f2006-07-03 00:24:43 -070074 TRACE_IRQS_ON
751:
76#endif
77.endm
78
Tejun Heoccbeed32009-02-09 22:17:40 +090079/*
80 * User gs save/restore
81 *
82 * %gs is used for userland TLS and kernel only uses it for stack
83 * canary which is required to be at %gs:20 by gcc. Read the comment
84 * at the top of stackprotector.h for more info.
85 *
86 * Local labels 98 and 99 are used.
87 */
88#ifdef CONFIG_X86_32_LAZY_GS
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Tejun Heoccbeed32009-02-09 22:17:40 +090090 /* unfortunately push/pop can't be no-op */
91.macro PUSH_GS
Ingo Molnara49976d2015-06-08 09:49:11 +020092 pushl $0
Tejun Heoccbeed32009-02-09 22:17:40 +090093.endm
94.macro POP_GS pop=0
Ingo Molnara49976d2015-06-08 09:49:11 +020095 addl $(4 + \pop), %esp
Tejun Heoccbeed32009-02-09 22:17:40 +090096.endm
97.macro POP_GS_EX
98.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Tejun Heoccbeed32009-02-09 22:17:40 +0900100 /* all the rest are no-op */
101.macro PTGS_TO_GS
102.endm
103.macro PTGS_TO_GS_EX
104.endm
105.macro GS_TO_REG reg
106.endm
107.macro REG_TO_PTGS reg
108.endm
109.macro SET_KERNEL_GS reg
110.endm
111
112#else /* CONFIG_X86_32_LAZY_GS */
113
114.macro PUSH_GS
Ingo Molnara49976d2015-06-08 09:49:11 +0200115 pushl %gs
Tejun Heoccbeed32009-02-09 22:17:40 +0900116.endm
117
118.macro POP_GS pop=0
Ingo Molnara49976d2015-06-08 09:49:11 +020011998: popl %gs
Tejun Heoccbeed32009-02-09 22:17:40 +0900120 .if \pop <> 0
Denys Vlasenko9b47feb2015-06-08 22:35:33 +0200121 add $\pop, %esp
Tejun Heoccbeed32009-02-09 22:17:40 +0900122 .endif
123.endm
124.macro POP_GS_EX
125.pushsection .fixup, "ax"
Ingo Molnara49976d2015-06-08 09:49:11 +020012699: movl $0, (%esp)
127 jmp 98b
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100128.popsection
Ingo Molnara49976d2015-06-08 09:49:11 +0200129 _ASM_EXTABLE(98b, 99b)
Tejun Heoccbeed32009-02-09 22:17:40 +0900130.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Tejun Heoccbeed32009-02-09 22:17:40 +0900132.macro PTGS_TO_GS
Ingo Molnara49976d2015-06-08 09:49:11 +020013398: mov PT_GS(%esp), %gs
Tejun Heoccbeed32009-02-09 22:17:40 +0900134.endm
135.macro PTGS_TO_GS_EX
136.pushsection .fixup, "ax"
Ingo Molnara49976d2015-06-08 09:49:11 +020013799: movl $0, PT_GS(%esp)
138 jmp 98b
Tejun Heoccbeed32009-02-09 22:17:40 +0900139.popsection
Ingo Molnara49976d2015-06-08 09:49:11 +0200140 _ASM_EXTABLE(98b, 99b)
Tejun Heoccbeed32009-02-09 22:17:40 +0900141.endm
142
143.macro GS_TO_REG reg
Ingo Molnara49976d2015-06-08 09:49:11 +0200144 movl %gs, \reg
Tejun Heoccbeed32009-02-09 22:17:40 +0900145.endm
146.macro REG_TO_PTGS reg
Ingo Molnara49976d2015-06-08 09:49:11 +0200147 movl \reg, PT_GS(%esp)
Tejun Heoccbeed32009-02-09 22:17:40 +0900148.endm
149.macro SET_KERNEL_GS reg
Ingo Molnara49976d2015-06-08 09:49:11 +0200150 movl $(__KERNEL_STACK_CANARY), \reg
151 movl \reg, %gs
Tejun Heoccbeed32009-02-09 22:17:40 +0900152.endm
153
Ingo Molnara49976d2015-06-08 09:49:11 +0200154#endif /* CONFIG_X86_32_LAZY_GS */
Tejun Heoccbeed32009-02-09 22:17:40 +0900155
Andy Lutomirski150ac782015-10-05 17:48:14 -0700156.macro SAVE_ALL pt_regs_ax=%eax
Tejun Heof0d96112009-02-09 22:17:40 +0900157 cld
Tejun Heoccbeed32009-02-09 22:17:40 +0900158 PUSH_GS
Ingo Molnara49976d2015-06-08 09:49:11 +0200159 pushl %fs
160 pushl %es
161 pushl %ds
Andy Lutomirski150ac782015-10-05 17:48:14 -0700162 pushl \pt_regs_ax
Ingo Molnara49976d2015-06-08 09:49:11 +0200163 pushl %ebp
164 pushl %edi
165 pushl %esi
166 pushl %edx
167 pushl %ecx
168 pushl %ebx
169 movl $(__USER_DS), %edx
170 movl %edx, %ds
171 movl %edx, %es
172 movl $(__KERNEL_PERCPU), %edx
173 movl %edx, %fs
Tejun Heoccbeed32009-02-09 22:17:40 +0900174 SET_KERNEL_GS %edx
Tejun Heof0d96112009-02-09 22:17:40 +0900175.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Tejun Heof0d96112009-02-09 22:17:40 +0900177.macro RESTORE_INT_REGS
Ingo Molnara49976d2015-06-08 09:49:11 +0200178 popl %ebx
179 popl %ecx
180 popl %edx
181 popl %esi
182 popl %edi
183 popl %ebp
184 popl %eax
Tejun Heof0d96112009-02-09 22:17:40 +0900185.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Tejun Heoccbeed32009-02-09 22:17:40 +0900187.macro RESTORE_REGS pop=0
Tejun Heof0d96112009-02-09 22:17:40 +0900188 RESTORE_INT_REGS
Ingo Molnara49976d2015-06-08 09:49:11 +02001891: popl %ds
1902: popl %es
1913: popl %fs
Tejun Heoccbeed32009-02-09 22:17:40 +0900192 POP_GS \pop
Tejun Heof0d96112009-02-09 22:17:40 +0900193.pushsection .fixup, "ax"
Ingo Molnara49976d2015-06-08 09:49:11 +02001944: movl $0, (%esp)
195 jmp 1b
1965: movl $0, (%esp)
197 jmp 2b
1986: movl $0, (%esp)
199 jmp 3b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200.popsection
Ingo Molnara49976d2015-06-08 09:49:11 +0200201 _ASM_EXTABLE(1b, 4b)
202 _ASM_EXTABLE(2b, 5b)
203 _ASM_EXTABLE(3b, 6b)
Tejun Heoccbeed32009-02-09 22:17:40 +0900204 POP_GS_EX
Tejun Heof0d96112009-02-09 22:17:40 +0900205.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Brian Gerst01003012016-08-13 12:38:19 -0400207/*
208 * %eax: prev task
209 * %edx: next task
210 */
211ENTRY(__switch_to_asm)
212 /*
213 * Save callee-saved registers
214 * This must match the order in struct inactive_task_frame
215 */
216 pushl %ebp
217 pushl %ebx
218 pushl %edi
219 pushl %esi
220
221 /* switch stack */
222 movl %esp, TASK_threadsp(%eax)
223 movl TASK_threadsp(%edx), %esp
224
225#ifdef CONFIG_CC_STACKPROTECTOR
226 movl TASK_stack_canary(%edx), %ebx
227 movl %ebx, PER_CPU_VAR(stack_canary)+stack_canary_offset
228#endif
229
230 /* restore callee-saved registers */
231 popl %esi
232 popl %edi
233 popl %ebx
234 popl %ebp
235
236 jmp __switch_to
237END(__switch_to_asm)
238
239/*
240 * A newly forked process directly context switches into this address.
241 *
242 * eax: prev task we switched from
243 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244ENTRY(ret_from_fork)
Ingo Molnara49976d2015-06-08 09:49:11 +0200245 pushl %eax
246 call schedule_tail
Ingo Molnara49976d2015-06-08 09:49:11 +0200247 popl %eax
Andy Lutomirski39e87012015-10-05 17:48:13 -0700248
249 /* When we fork, we trace the syscall return in the child, too. */
250 movl %esp, %eax
251 call syscall_return_slowpath
252 jmp restore_all
Jan Beulich47a55cd2007-02-13 13:26:24 +0100253END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Al Viro22e2430d2012-10-10 21:35:42 -0400255ENTRY(ret_from_kernel_thread)
Ingo Molnara49976d2015-06-08 09:49:11 +0200256 pushl %eax
257 call schedule_tail
Ingo Molnara49976d2015-06-08 09:49:11 +0200258 popl %eax
Ingo Molnara49976d2015-06-08 09:49:11 +0200259 movl PT_EBP(%esp), %eax
260 call *PT_EBX(%esp)
261 movl $0, PT_EAX(%esp)
Andy Lutomirski39e87012015-10-05 17:48:13 -0700262
263 /*
264 * Kernel threads return to userspace as if returning from a syscall.
265 * We should check whether anything actually uses this path and, if so,
266 * consider switching it over to ret_from_fork.
267 */
268 movl %esp, %eax
269 call syscall_return_slowpath
270 jmp restore_all
Al Viro22e2430d2012-10-10 21:35:42 -0400271ENDPROC(ret_from_kernel_thread)
Al Viro6783eaa22012-08-02 23:05:11 +0400272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273/*
274 * Return to user mode is not as complex as all this looks,
275 * but we want the default path for a system call return to
276 * go as quickly as possible which is why some of this is
277 * less clear than it otherwise should be.
278 */
279
280 # userspace resumption stub bypassing syscall exit tracing
281 ALIGN
282ret_from_exception:
Rusty Russell139ec7c2006-12-07 02:14:08 +0100283 preempt_stop(CLBR_ANY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284ret_from_intr:
Dmitry Adamushko29a2e282012-03-22 21:39:25 +0100285#ifdef CONFIG_VM86
Ingo Molnara49976d2015-06-08 09:49:11 +0200286 movl PT_EFLAGS(%esp), %eax # mix EFLAGS and CS
287 movb PT_CS(%esp), %al
288 andl $(X86_EFLAGS_VM | SEGMENT_RPL_MASK), %eax
Dmitry Adamushko29a2e282012-03-22 21:39:25 +0100289#else
290 /*
Al Viro6783eaa22012-08-02 23:05:11 +0400291 * We can be coming here from child spawned by kernel_thread().
Dmitry Adamushko29a2e282012-03-22 21:39:25 +0100292 */
Ingo Molnara49976d2015-06-08 09:49:11 +0200293 movl PT_CS(%esp), %eax
294 andl $SEGMENT_RPL_MASK, %eax
Dmitry Adamushko29a2e282012-03-22 21:39:25 +0100295#endif
Ingo Molnara49976d2015-06-08 09:49:11 +0200296 cmpl $USER_RPL, %eax
297 jb resume_kernel # not returning to v8086 or userspace
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299ENTRY(resume_userspace)
Andy Lutomirski5d73fc72015-07-31 14:41:09 -0700300 DISABLE_INTERRUPTS(CLBR_ANY)
Peter Zijlstrae32e58a2008-06-06 10:14:08 +0200301 TRACE_IRQS_OFF
Andy Lutomirski5d73fc72015-07-31 14:41:09 -0700302 movl %esp, %eax
303 call prepare_exit_to_usermode
Ingo Molnara49976d2015-06-08 09:49:11 +0200304 jmp restore_all
Jan Beulich47a55cd2007-02-13 13:26:24 +0100305END(ret_from_exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307#ifdef CONFIG_PREEMPT
308ENTRY(resume_kernel)
Rusty Russell139ec7c2006-12-07 02:14:08 +0100309 DISABLE_INTERRUPTS(CLBR_ANY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310need_resched:
Ingo Molnara49976d2015-06-08 09:49:11 +0200311 cmpl $0, PER_CPU_VAR(__preempt_count)
312 jnz restore_all
313 testl $X86_EFLAGS_IF, PT_EFLAGS(%esp) # interrupts off (exception path) ?
314 jz restore_all
315 call preempt_schedule_irq
316 jmp need_resched
Jan Beulich47a55cd2007-02-13 13:26:24 +0100317END(resume_kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318#endif
319
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800320GLOBAL(__begin_SYSENTER_singlestep_region)
321/*
322 * All code from here through __end_SYSENTER_singlestep_region is subject
323 * to being single-stepped if a user program sets TF and executes SYSENTER.
324 * There is absolutely nothing that we can do to prevent this from happening
325 * (thanks Intel!). To keep our handling of this situation as simple as
326 * possible, we handle TF just like AC and NT, except that our #DB handler
327 * will ignore all of the single-step traps generated in this range.
328 */
329
330#ifdef CONFIG_XEN
331/*
332 * Xen doesn't set %esp to be precisely what the normal SYSENTER
333 * entry point expects, so fix it up before using the normal path.
334 */
335ENTRY(xen_sysenter_target)
336 addl $5*4, %esp /* remove xen-provided frame */
337 jmp sysenter_past_esp
338#endif
339
Andy Lutomirskifda57b22016-03-09 19:00:35 -0800340/*
341 * 32-bit SYSENTER entry.
342 *
343 * 32-bit system calls through the vDSO's __kernel_vsyscall enter here
344 * if X86_FEATURE_SEP is available. This is the preferred system call
345 * entry on 32-bit systems.
346 *
347 * The SYSENTER instruction, in principle, should *only* occur in the
348 * vDSO. In practice, a small number of Android devices were shipped
349 * with a copy of Bionic that inlined a SYSENTER instruction. This
350 * never happened in any of Google's Bionic versions -- it only happened
351 * in a narrow range of Intel-provided versions.
352 *
353 * SYSENTER loads SS, ESP, CS, and EIP from previously programmed MSRs.
354 * IF and VM in RFLAGS are cleared (IOW: interrupts are off).
355 * SYSENTER does not save anything on the stack,
356 * and does not save old EIP (!!!), ESP, or EFLAGS.
357 *
358 * To avoid losing track of EFLAGS.VM (and thus potentially corrupting
359 * user and/or vm86 state), we explicitly disable the SYSENTER
360 * instruction in vm86 mode by reprogramming the MSRs.
361 *
362 * Arguments:
363 * eax system call number
364 * ebx arg1
365 * ecx arg2
366 * edx arg3
367 * esi arg4
368 * edi arg5
369 * ebp user stack
370 * 0(%ebp) arg6
371 */
Ingo Molnar4c8cd0c2015-06-08 08:33:56 +0200372ENTRY(entry_SYSENTER_32)
Ingo Molnara49976d2015-06-08 09:49:11 +0200373 movl TSS_sysenter_sp0(%esp), %esp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374sysenter_past_esp:
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700375 pushl $__USER_DS /* pt_regs->ss */
Andy Lutomirski30bfa7b2015-12-16 23:18:48 -0800376 pushl %ebp /* pt_regs->sp (stashed in bp) */
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700377 pushfl /* pt_regs->flags (except IF = 0) */
378 orl $X86_EFLAGS_IF, (%esp) /* Fix IF */
379 pushl $__USER_CS /* pt_regs->cs */
380 pushl $0 /* pt_regs->ip = 0 (placeholder) */
381 pushl %eax /* pt_regs->orig_ax */
382 SAVE_ALL pt_regs_ax=$-ENOSYS /* save rest */
383
Ingo Molnar55f327f2006-07-03 00:24:43 -0700384 /*
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800385 * SYSENTER doesn't filter flags, so we need to clear NT, AC
386 * and TF ourselves. To save a few cycles, we can check whether
Andy Lutomirski67f590e2016-03-09 19:00:26 -0800387 * either was set instead of doing an unconditional popfq.
388 * This needs to happen before enabling interrupts so that
389 * we don't get preempted with NT set.
390 *
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800391 * If TF is set, we will single-step all the way to here -- do_debug
392 * will ignore all the traps. (Yes, this is slow, but so is
393 * single-stepping in general. This allows us to avoid having
394 * a more complicated code to handle the case where a user program
395 * forces us to single-step through the SYSENTER entry code.)
396 *
Andy Lutomirski67f590e2016-03-09 19:00:26 -0800397 * NB.: .Lsysenter_fix_flags is a label with the code under it moved
398 * out-of-line as an optimization: NT is unlikely to be set in the
399 * majority of the cases and instead of polluting the I$ unnecessarily,
400 * we're keeping that code behind a branch which will predict as
401 * not-taken and therefore its instructions won't be fetched.
402 */
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800403 testl $X86_EFLAGS_NT|X86_EFLAGS_AC|X86_EFLAGS_TF, PT_EFLAGS(%esp)
Andy Lutomirski67f590e2016-03-09 19:00:26 -0800404 jnz .Lsysenter_fix_flags
405.Lsysenter_flags_fixed:
406
407 /*
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700408 * User mode is traced as though IRQs are on, and SYSENTER
409 * turned them off.
Ingo Molnar55f327f2006-07-03 00:24:43 -0700410 */
Ingo Molnar55f327f2006-07-03 00:24:43 -0700411 TRACE_IRQS_OFF
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700412
413 movl %esp, %eax
414 call do_fast_syscall_32
Boris Ostrovsky91e2eea2015-11-19 16:55:45 -0500415 /* XEN PV guests always use IRET path */
416 ALTERNATIVE "testl %eax, %eax; jz .Lsyscall_32_done", \
417 "jmp .Lsyscall_32_done", X86_FEATURE_XENPV
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700418
419/* Opportunistic SYSEXIT */
420 TRACE_IRQS_ON /* User mode traces as IRQs on. */
421 movl PT_EIP(%esp), %edx /* pt_regs->ip */
422 movl PT_OLDESP(%esp), %ecx /* pt_regs->sp */
Andy Lutomirski3bd29512015-10-16 15:42:55 -07004231: mov PT_FS(%esp), %fs
424 PTGS_TO_GS
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700425 popl %ebx /* pt_regs->bx */
426 addl $2*4, %esp /* skip pt_regs->cx and pt_regs->dx */
427 popl %esi /* pt_regs->si */
428 popl %edi /* pt_regs->di */
429 popl %ebp /* pt_regs->bp */
430 popl %eax /* pt_regs->ax */
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700431
432 /*
Andy Lutomirskic2c9b522016-03-09 19:00:27 -0800433 * Restore all flags except IF. (We restore IF separately because
434 * STI gives a one-instruction window in which we won't be interrupted,
435 * whereas POPF does not.)
436 */
437 addl $PT_EFLAGS-PT_DS, %esp /* point esp at pt_regs->flags */
438 btr $X86_EFLAGS_IF_BIT, (%esp)
439 popfl
440
441 /*
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700442 * Return back to the vDSO, which will pop ecx and edx.
443 * Don't bother with DS and ES (they already contain __USER_DS).
444 */
Boris Ostrovsky88c15ec2015-11-19 16:55:46 -0500445 sti
446 sysexit
Roland McGrathaf0575b2008-06-24 04:16:52 -0700447
Ingo Molnara49976d2015-06-08 09:49:11 +0200448.pushsection .fixup, "ax"
4492: movl $0, PT_FS(%esp)
450 jmp 1b
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100451.popsection
Ingo Molnara49976d2015-06-08 09:49:11 +0200452 _ASM_EXTABLE(1b, 2b)
Tejun Heoccbeed32009-02-09 22:17:40 +0900453 PTGS_TO_GS_EX
Andy Lutomirski67f590e2016-03-09 19:00:26 -0800454
455.Lsysenter_fix_flags:
456 pushl $X86_EFLAGS_FIXED
457 popfl
458 jmp .Lsysenter_flags_fixed
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800459GLOBAL(__end_SYSENTER_singlestep_region)
Ingo Molnar4c8cd0c2015-06-08 08:33:56 +0200460ENDPROC(entry_SYSENTER_32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Andy Lutomirskifda57b22016-03-09 19:00:35 -0800462/*
463 * 32-bit legacy system call entry.
464 *
465 * 32-bit x86 Linux system calls traditionally used the INT $0x80
466 * instruction. INT $0x80 lands here.
467 *
468 * This entry point can be used by any 32-bit perform system calls.
469 * Instances of INT $0x80 can be found inline in various programs and
470 * libraries. It is also used by the vDSO's __kernel_vsyscall
471 * fallback for hardware that doesn't support a faster entry method.
472 * Restarted 32-bit system calls also fall back to INT $0x80
473 * regardless of what instruction was originally used to do the system
474 * call. (64-bit programs can use INT $0x80 as well, but they can
475 * only run on 64-bit kernels and therefore land in
476 * entry_INT80_compat.)
477 *
478 * This is considered a slow path. It is not used by most libc
479 * implementations on modern hardware except during process startup.
480 *
481 * Arguments:
482 * eax system call number
483 * ebx arg1
484 * ecx arg2
485 * edx arg3
486 * esi arg4
487 * edi arg5
488 * ebp arg6
489 */
Ingo Molnarb2502b42015-06-08 08:42:03 +0200490ENTRY(entry_INT80_32)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700491 ASM_CLAC
Andy Lutomirski150ac782015-10-05 17:48:14 -0700492 pushl %eax /* pt_regs->orig_ax */
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700493 SAVE_ALL pt_regs_ax=$-ENOSYS /* save rest */
Andy Lutomirski150ac782015-10-05 17:48:14 -0700494
495 /*
Andy Lutomirskia798f092016-03-09 13:24:32 -0800496 * User mode is traced as though IRQs are on, and the interrupt gate
497 * turned them off.
Andy Lutomirski150ac782015-10-05 17:48:14 -0700498 */
Andy Lutomirskia798f092016-03-09 13:24:32 -0800499 TRACE_IRQS_OFF
Andy Lutomirski150ac782015-10-05 17:48:14 -0700500
501 movl %esp, %eax
Andy Lutomirskia798f092016-03-09 13:24:32 -0800502 call do_int80_syscall_32
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700503.Lsyscall_32_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505restore_all:
Alexander van Heukelum2e04bc72009-06-18 00:35:57 +0200506 TRACE_IRQS_IRET
507restore_all_notrace:
H. Peter Anvin34273f42014-05-04 10:36:22 -0700508#ifdef CONFIG_X86_ESPFIX32
Andy Lutomirski58a5aac2016-02-29 15:50:19 -0800509 ALTERNATIVE "jmp restore_nocheck", "", X86_BUG_ESPFIX
510
Ingo Molnara49976d2015-06-08 09:49:11 +0200511 movl PT_EFLAGS(%esp), %eax # mix EFLAGS, SS and CS
512 /*
513 * Warning: PT_OLDSS(%esp) contains the wrong/random values if we
514 * are returning to the kernel.
515 * See comments in process.c:copy_thread() for details.
516 */
517 movb PT_OLDSS(%esp), %ah
518 movb PT_CS(%esp), %al
519 andl $(X86_EFLAGS_VM | (SEGMENT_TI_MASK << 8) | SEGMENT_RPL_MASK), %eax
520 cmpl $((SEGMENT_LDT << 8) | USER_RPL), %eax
521 je ldt_ss # returning to user-space with LDT SS
H. Peter Anvin34273f42014-05-04 10:36:22 -0700522#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523restore_nocheck:
Ingo Molnara49976d2015-06-08 09:49:11 +0200524 RESTORE_REGS 4 # skip orig_eax/error_code
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200525irq_return:
Ingo Molnar3701d8632008-02-09 23:24:08 +0100526 INTERRUPT_RETURN
Ingo Molnara49976d2015-06-08 09:49:11 +0200527.section .fixup, "ax"
528ENTRY(iret_exc )
529 pushl $0 # no error code
530 pushl $do_iret_error
531 jmp error_code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532.previous
Ingo Molnara49976d2015-06-08 09:49:11 +0200533 _ASM_EXTABLE(irq_return, iret_exc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
H. Peter Anvin34273f42014-05-04 10:36:22 -0700535#ifdef CONFIG_X86_ESPFIX32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536ldt_ss:
Alexander van Heukelumdc4c2a02009-06-18 00:35:58 +0200537/*
538 * Setup and switch to ESPFIX stack
539 *
540 * We're returning to userspace with a 16 bit stack. The CPU will not
541 * restore the high word of ESP for us on executing iret... This is an
542 * "official" bug of all the x86-compatible CPUs, which we can work
543 * around to make dosemu and wine happy. We do this by preloading the
544 * high word of ESP with the high word of the userspace ESP while
545 * compensating for the offset by changing to the ESPFIX segment with
546 * a base address that matches for the difference.
547 */
Brian Gerst72c511d2010-07-31 12:48:23 -0400548#define GDT_ESPFIX_SS PER_CPU_VAR(gdt_page) + (GDT_ENTRY_ESPFIX_SS * 8)
Ingo Molnara49976d2015-06-08 09:49:11 +0200549 mov %esp, %edx /* load kernel esp */
550 mov PT_OLDESP(%esp), %eax /* load userspace esp */
551 mov %dx, %ax /* eax: new kernel esp */
Denys Vlasenko9b47feb2015-06-08 22:35:33 +0200552 sub %eax, %edx /* offset (low word is 0) */
553 shr $16, %edx
Ingo Molnara49976d2015-06-08 09:49:11 +0200554 mov %dl, GDT_ESPFIX_SS + 4 /* bits 16..23 */
555 mov %dh, GDT_ESPFIX_SS + 7 /* bits 24..31 */
556 pushl $__ESPFIX_SS
557 pushl %eax /* new kernel esp */
558 /*
559 * Disable interrupts, but do not irqtrace this section: we
Alexander van Heukelum2e04bc72009-06-18 00:35:57 +0200560 * will soon execute iret and the tracer was already set to
Ingo Molnara49976d2015-06-08 09:49:11 +0200561 * the irqstate after the IRET:
562 */
Rusty Russell139ec7c2006-12-07 02:14:08 +0100563 DISABLE_INTERRUPTS(CLBR_EAX)
Ingo Molnara49976d2015-06-08 09:49:11 +0200564 lss (%esp), %esp /* switch to espfix segment */
565 jmp restore_nocheck
H. Peter Anvin34273f42014-05-04 10:36:22 -0700566#endif
Ingo Molnarb2502b42015-06-08 08:42:03 +0200567ENDPROC(entry_INT80_32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Tejun Heof0d96112009-02-09 22:17:40 +0900569.macro FIXUP_ESPFIX_STACK
Alexander van Heukelumdc4c2a02009-06-18 00:35:58 +0200570/*
571 * Switch back for ESPFIX stack to the normal zerobased stack
572 *
573 * We can't call C functions using the ESPFIX stack. This code reads
574 * the high word of the segment base from the GDT and swiches to the
575 * normal stack and adjusts ESP with the matching offset.
576 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700577#ifdef CONFIG_X86_ESPFIX32
Alexander van Heukelumdc4c2a02009-06-18 00:35:58 +0200578 /* fixup the stack */
Ingo Molnara49976d2015-06-08 09:49:11 +0200579 mov GDT_ESPFIX_SS + 4, %al /* bits 16..23 */
580 mov GDT_ESPFIX_SS + 7, %ah /* bits 24..31 */
Denys Vlasenko9b47feb2015-06-08 22:35:33 +0200581 shl $16, %eax
Ingo Molnara49976d2015-06-08 09:49:11 +0200582 addl %esp, %eax /* the adjusted stack pointer */
583 pushl $__KERNEL_DS
584 pushl %eax
585 lss (%esp), %esp /* switch to the normal stack segment */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700586#endif
Tejun Heof0d96112009-02-09 22:17:40 +0900587.endm
588.macro UNWIND_ESPFIX_STACK
H. Peter Anvin34273f42014-05-04 10:36:22 -0700589#ifdef CONFIG_X86_ESPFIX32
Ingo Molnara49976d2015-06-08 09:49:11 +0200590 movl %ss, %eax
Tejun Heof0d96112009-02-09 22:17:40 +0900591 /* see if on espfix stack */
Ingo Molnara49976d2015-06-08 09:49:11 +0200592 cmpw $__ESPFIX_SS, %ax
593 jne 27f
594 movl $__KERNEL_DS, %eax
595 movl %eax, %ds
596 movl %eax, %es
Tejun Heof0d96112009-02-09 22:17:40 +0900597 /* switch to normal stack */
598 FIXUP_ESPFIX_STACK
59927:
H. Peter Anvin34273f42014-05-04 10:36:22 -0700600#endif
Tejun Heof0d96112009-02-09 22:17:40 +0900601.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603/*
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200604 * Build the entry stubs with some assembler magic.
605 * We pack 1 stub into every 8-byte block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 */
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200607 .align 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608ENTRY(irq_entries_start)
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200609 vector=FIRST_EXTERNAL_VECTOR
610 .rept (FIRST_SYSTEM_VECTOR - FIRST_EXTERNAL_VECTOR)
Ingo Molnara49976d2015-06-08 09:49:11 +0200611 pushl $(~vector+0x80) /* Note: always in signed byte range */
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200612 vector=vector+1
613 jmp common_interrupt
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200614 .align 8
615 .endr
Jan Beulich47a55cd2007-02-13 13:26:24 +0100616END(irq_entries_start)
617
Ingo Molnar55f327f2006-07-03 00:24:43 -0700618/*
619 * the CPU automatically disables interrupts when executing an IRQ vector,
620 * so IRQ-flags tracing has to follow that:
621 */
H. Peter Anvinb7c62442008-11-11 13:24:58 -0800622 .p2align CONFIG_X86_L1_CACHE_SHIFT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623common_interrupt:
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700624 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200625 addl $-0x80, (%esp) /* Adjust vector into the [-256, -1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 SAVE_ALL
Ingo Molnar55f327f2006-07-03 00:24:43 -0700627 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +0200628 movl %esp, %eax
629 call do_IRQ
630 jmp ret_from_intr
Jan Beulich47a55cd2007-02-13 13:26:24 +0100631ENDPROC(common_interrupt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Tejun Heo02cf94c2009-01-21 17:26:06 +0900633#define BUILD_INTERRUPT3(name, nr, fn) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634ENTRY(name) \
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700635 ASM_CLAC; \
Ingo Molnara49976d2015-06-08 09:49:11 +0200636 pushl $~(nr); \
Jan Beulichfe7cacc2006-06-26 13:57:44 +0200637 SAVE_ALL; \
Ingo Molnar55f327f2006-07-03 00:24:43 -0700638 TRACE_IRQS_OFF \
Ingo Molnara49976d2015-06-08 09:49:11 +0200639 movl %esp, %eax; \
640 call fn; \
641 jmp ret_from_intr; \
Jan Beulich47a55cd2007-02-13 13:26:24 +0100642ENDPROC(name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Seiji Aguchicf910e82013-06-20 11:46:53 -0400644
645#ifdef CONFIG_TRACING
Ingo Molnara49976d2015-06-08 09:49:11 +0200646# define TRACE_BUILD_INTERRUPT(name, nr) BUILD_INTERRUPT3(trace_##name, nr, smp_trace_##name)
Seiji Aguchicf910e82013-06-20 11:46:53 -0400647#else
Ingo Molnara49976d2015-06-08 09:49:11 +0200648# define TRACE_BUILD_INTERRUPT(name, nr)
Seiji Aguchicf910e82013-06-20 11:46:53 -0400649#endif
650
Ingo Molnara49976d2015-06-08 09:49:11 +0200651#define BUILD_INTERRUPT(name, nr) \
652 BUILD_INTERRUPT3(name, nr, smp_##name); \
Seiji Aguchicf910e82013-06-20 11:46:53 -0400653 TRACE_BUILD_INTERRUPT(name, nr)
Tejun Heo02cf94c2009-01-21 17:26:06 +0900654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655/* The include is where all of the SMP etc. interrupts come from */
Ingo Molnar1164dd02009-01-28 19:34:09 +0100656#include <asm/entry_arch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658ENTRY(coprocessor_error)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700659 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200660 pushl $0
661 pushl $do_coprocessor_error
662 jmp error_code
Jan Beulich47a55cd2007-02-13 13:26:24 +0100663END(coprocessor_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665ENTRY(simd_coprocessor_error)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700666 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200667 pushl $0
Brian Gerst40d2e762010-03-21 09:00:43 -0400668#ifdef CONFIG_X86_INVD_BUG
669 /* AMD 486 bug: invd from userspace calls exception 19 instead of #GP */
Ingo Molnara49976d2015-06-08 09:49:11 +0200670 ALTERNATIVE "pushl $do_general_protection", \
671 "pushl $do_simd_coprocessor_error", \
Borislav Petkov8e65f6e2015-01-18 12:35:55 +0100672 X86_FEATURE_XMM
Brian Gerst40d2e762010-03-21 09:00:43 -0400673#else
Ingo Molnara49976d2015-06-08 09:49:11 +0200674 pushl $do_simd_coprocessor_error
Brian Gerst40d2e762010-03-21 09:00:43 -0400675#endif
Ingo Molnara49976d2015-06-08 09:49:11 +0200676 jmp error_code
Jan Beulich47a55cd2007-02-13 13:26:24 +0100677END(simd_coprocessor_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679ENTRY(device_not_available)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700680 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200681 pushl $-1 # mark this as an int
682 pushl $do_device_not_available
683 jmp error_code
Jan Beulich47a55cd2007-02-13 13:26:24 +0100684END(device_not_available)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Rusty Russelld3561b72006-12-07 02:14:07 +0100686#ifdef CONFIG_PARAVIRT
687ENTRY(native_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +0100688 iret
H. Peter Anvin6837a542012-04-20 12:19:50 -0700689 _ASM_EXTABLE(native_iret, iret_exc)
Jan Beulich47a55cd2007-02-13 13:26:24 +0100690END(native_iret)
Rusty Russelld3561b72006-12-07 02:14:07 +0100691#endif
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693ENTRY(overflow)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700694 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200695 pushl $0
696 pushl $do_overflow
697 jmp error_code
Jan Beulich47a55cd2007-02-13 13:26:24 +0100698END(overflow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700ENTRY(bounds)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700701 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200702 pushl $0
703 pushl $do_bounds
704 jmp error_code
Jan Beulich47a55cd2007-02-13 13:26:24 +0100705END(bounds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707ENTRY(invalid_op)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700708 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200709 pushl $0
710 pushl $do_invalid_op
711 jmp error_code
Jan Beulich47a55cd2007-02-13 13:26:24 +0100712END(invalid_op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714ENTRY(coprocessor_segment_overrun)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700715 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200716 pushl $0
717 pushl $do_coprocessor_segment_overrun
718 jmp error_code
Jan Beulich47a55cd2007-02-13 13:26:24 +0100719END(coprocessor_segment_overrun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721ENTRY(invalid_TSS)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700722 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200723 pushl $do_invalid_TSS
724 jmp error_code
Jan Beulich47a55cd2007-02-13 13:26:24 +0100725END(invalid_TSS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727ENTRY(segment_not_present)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700728 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200729 pushl $do_segment_not_present
730 jmp error_code
Jan Beulich47a55cd2007-02-13 13:26:24 +0100731END(segment_not_present)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733ENTRY(stack_segment)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700734 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200735 pushl $do_stack_segment
736 jmp error_code
Jan Beulich47a55cd2007-02-13 13:26:24 +0100737END(stack_segment)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739ENTRY(alignment_check)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700740 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200741 pushl $do_alignment_check
742 jmp error_code
Jan Beulich47a55cd2007-02-13 13:26:24 +0100743END(alignment_check)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Prasanna S.Pd28c4392006-09-26 10:52:34 +0200745ENTRY(divide_error)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700746 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200747 pushl $0 # no error code
748 pushl $do_divide_error
749 jmp error_code
Jan Beulich47a55cd2007-02-13 13:26:24 +0100750END(divide_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752#ifdef CONFIG_X86_MCE
753ENTRY(machine_check)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700754 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200755 pushl $0
756 pushl machine_check_vector
757 jmp error_code
Jan Beulich47a55cd2007-02-13 13:26:24 +0100758END(machine_check)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759#endif
760
761ENTRY(spurious_interrupt_bug)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700762 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200763 pushl $0
764 pushl $do_spurious_interrupt_bug
765 jmp error_code
Jan Beulich47a55cd2007-02-13 13:26:24 +0100766END(spurious_interrupt_bug)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700768#ifdef CONFIG_XEN
769ENTRY(xen_hypervisor_callback)
Ingo Molnara49976d2015-06-08 09:49:11 +0200770 pushl $-1 /* orig_ax = -1 => not a system call */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700771 SAVE_ALL
772 TRACE_IRQS_OFF
Jeremy Fitzhardinge9ec2b802007-07-17 18:37:07 -0700773
Ingo Molnara49976d2015-06-08 09:49:11 +0200774 /*
775 * Check to see if we got the event in the critical
776 * region in xen_iret_direct, after we've reenabled
777 * events and checked for pending events. This simulates
778 * iret instruction's behaviour where it delivers a
779 * pending interrupt when enabling interrupts:
780 */
781 movl PT_EIP(%esp), %eax
782 cmpl $xen_iret_start_crit, %eax
783 jb 1f
784 cmpl $xen_iret_end_crit, %eax
785 jae 1f
Jeremy Fitzhardinge9ec2b802007-07-17 18:37:07 -0700786
Ingo Molnara49976d2015-06-08 09:49:11 +0200787 jmp xen_iret_crit_fixup
Jeremy Fitzhardinge9ec2b802007-07-17 18:37:07 -0700788
Jeremy Fitzhardingee2a81ba2008-03-17 16:37:17 -0700789ENTRY(xen_do_upcall)
Ingo Molnara49976d2015-06-08 09:49:11 +02007901: mov %esp, %eax
791 call xen_evtchn_do_upcall
David Vrabelfdfd8112015-02-19 15:23:17 +0000792#ifndef CONFIG_PREEMPT
Ingo Molnara49976d2015-06-08 09:49:11 +0200793 call xen_maybe_preempt_hcall
David Vrabelfdfd8112015-02-19 15:23:17 +0000794#endif
Ingo Molnara49976d2015-06-08 09:49:11 +0200795 jmp ret_from_intr
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700796ENDPROC(xen_hypervisor_callback)
797
Ingo Molnara49976d2015-06-08 09:49:11 +0200798/*
799 * Hypervisor uses this for application faults while it executes.
800 * We get here for two reasons:
801 * 1. Fault while reloading DS, ES, FS or GS
802 * 2. Fault while executing IRET
803 * Category 1 we fix up by reattempting the load, and zeroing the segment
804 * register if the load fails.
805 * Category 2 we fix up by jumping to do_iret_error. We cannot use the
806 * normal Linux return path in this case because if we use the IRET hypercall
807 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
808 * We distinguish between categories by maintaining a status value in EAX.
809 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700810ENTRY(xen_failsafe_callback)
Ingo Molnara49976d2015-06-08 09:49:11 +0200811 pushl %eax
812 movl $1, %eax
8131: mov 4(%esp), %ds
8142: mov 8(%esp), %es
8153: mov 12(%esp), %fs
8164: mov 16(%esp), %gs
David Vrabela349e23d12012-10-19 17:29:07 +0100817 /* EAX == 0 => Category 1 (Bad segment)
818 EAX != 0 => Category 2 (Bad IRET) */
Ingo Molnara49976d2015-06-08 09:49:11 +0200819 testl %eax, %eax
820 popl %eax
821 lea 16(%esp), %esp
822 jz 5f
823 jmp iret_exc
8245: pushl $-1 /* orig_ax = -1 => not a system call */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700825 SAVE_ALL
Ingo Molnara49976d2015-06-08 09:49:11 +0200826 jmp ret_from_exception
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700827
Ingo Molnara49976d2015-06-08 09:49:11 +0200828.section .fixup, "ax"
8296: xorl %eax, %eax
830 movl %eax, 4(%esp)
831 jmp 1b
8327: xorl %eax, %eax
833 movl %eax, 8(%esp)
834 jmp 2b
8358: xorl %eax, %eax
836 movl %eax, 12(%esp)
837 jmp 3b
8389: xorl %eax, %eax
839 movl %eax, 16(%esp)
840 jmp 4b
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700841.previous
Ingo Molnara49976d2015-06-08 09:49:11 +0200842 _ASM_EXTABLE(1b, 6b)
843 _ASM_EXTABLE(2b, 7b)
844 _ASM_EXTABLE(3b, 8b)
845 _ASM_EXTABLE(4b, 9b)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700846ENDPROC(xen_failsafe_callback)
847
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -0800848BUILD_INTERRUPT3(xen_hvm_callback_vector, HYPERVISOR_CALLBACK_VECTOR,
Sheng Yang38e20b02010-05-14 12:40:51 +0100849 xen_evtchn_do_upcall)
850
Ingo Molnara49976d2015-06-08 09:49:11 +0200851#endif /* CONFIG_XEN */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700852
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -0800853#if IS_ENABLED(CONFIG_HYPERV)
854
855BUILD_INTERRUPT3(hyperv_callback_vector, HYPERVISOR_CALLBACK_VECTOR,
856 hyperv_vector_handler)
857
858#endif /* CONFIG_HYPERV */
859
Steven Rostedt606576c2008-10-06 19:06:12 -0400860#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200861#ifdef CONFIG_DYNAMIC_FTRACE
862
863ENTRY(mcount)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200864 ret
865END(mcount)
866
867ENTRY(ftrace_caller)
Ingo Molnara49976d2015-06-08 09:49:11 +0200868 pushl %eax
869 pushl %ecx
870 pushl %edx
871 pushl $0 /* Pass NULL as regs pointer */
872 movl 4*4(%esp), %eax
873 movl 0x4(%ebp), %edx
874 movl function_trace_op, %ecx
875 subl $MCOUNT_INSN_SIZE, %eax
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200876
877.globl ftrace_call
878ftrace_call:
Ingo Molnara49976d2015-06-08 09:49:11 +0200879 call ftrace_stub
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200880
Ingo Molnara49976d2015-06-08 09:49:11 +0200881 addl $4, %esp /* skip NULL pointer */
882 popl %edx
883 popl %ecx
884 popl %eax
Steven Rostedt4de72392012-06-05 20:00:11 -0400885ftrace_ret:
Steven Rostedt5a45cfe2008-11-26 00:16:24 -0500886#ifdef CONFIG_FUNCTION_GRAPH_TRACER
887.globl ftrace_graph_call
888ftrace_graph_call:
Ingo Molnara49976d2015-06-08 09:49:11 +0200889 jmp ftrace_stub
Steven Rostedt5a45cfe2008-11-26 00:16:24 -0500890#endif
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200891
892.globl ftrace_stub
893ftrace_stub:
894 ret
895END(ftrace_caller)
896
Steven Rostedt4de72392012-06-05 20:00:11 -0400897ENTRY(ftrace_regs_caller)
898 pushf /* push flags before compare (in cs location) */
Steven Rostedt4de72392012-06-05 20:00:11 -0400899
900 /*
901 * i386 does not save SS and ESP when coming from kernel.
902 * Instead, to get sp, &regs->sp is used (see ptrace.h).
903 * Unfortunately, that means eflags must be at the same location
904 * as the current return ip is. We move the return ip into the
905 * ip location, and move flags into the return ip location.
906 */
Ingo Molnara49976d2015-06-08 09:49:11 +0200907 pushl 4(%esp) /* save return ip into ip slot */
Steven Rostedt4de72392012-06-05 20:00:11 -0400908
Ingo Molnara49976d2015-06-08 09:49:11 +0200909 pushl $0 /* Load 0 into orig_ax */
910 pushl %gs
911 pushl %fs
912 pushl %es
913 pushl %ds
914 pushl %eax
915 pushl %ebp
916 pushl %edi
917 pushl %esi
918 pushl %edx
919 pushl %ecx
920 pushl %ebx
Steven Rostedt4de72392012-06-05 20:00:11 -0400921
Ingo Molnara49976d2015-06-08 09:49:11 +0200922 movl 13*4(%esp), %eax /* Get the saved flags */
923 movl %eax, 14*4(%esp) /* Move saved flags into regs->flags location */
924 /* clobbering return ip */
925 movl $__KERNEL_CS, 13*4(%esp)
Steven Rostedt4de72392012-06-05 20:00:11 -0400926
Ingo Molnara49976d2015-06-08 09:49:11 +0200927 movl 12*4(%esp), %eax /* Load ip (1st parameter) */
928 subl $MCOUNT_INSN_SIZE, %eax /* Adjust ip */
929 movl 0x4(%ebp), %edx /* Load parent ip (2nd parameter) */
930 movl function_trace_op, %ecx /* Save ftrace_pos in 3rd parameter */
931 pushl %esp /* Save pt_regs as 4th parameter */
Steven Rostedt4de72392012-06-05 20:00:11 -0400932
933GLOBAL(ftrace_regs_call)
Ingo Molnara49976d2015-06-08 09:49:11 +0200934 call ftrace_stub
Steven Rostedt4de72392012-06-05 20:00:11 -0400935
Ingo Molnara49976d2015-06-08 09:49:11 +0200936 addl $4, %esp /* Skip pt_regs */
937 movl 14*4(%esp), %eax /* Move flags back into cs */
938 movl %eax, 13*4(%esp) /* Needed to keep addl from modifying flags */
939 movl 12*4(%esp), %eax /* Get return ip from regs->ip */
940 movl %eax, 14*4(%esp) /* Put return ip back for ret */
Steven Rostedt4de72392012-06-05 20:00:11 -0400941
Ingo Molnara49976d2015-06-08 09:49:11 +0200942 popl %ebx
943 popl %ecx
944 popl %edx
945 popl %esi
946 popl %edi
947 popl %ebp
948 popl %eax
949 popl %ds
950 popl %es
951 popl %fs
952 popl %gs
953 addl $8, %esp /* Skip orig_ax and ip */
954 popf /* Pop flags at end (no addl to corrupt flags) */
955 jmp ftrace_ret
Steven Rostedt4de72392012-06-05 20:00:11 -0400956
Steven Rostedt4de72392012-06-05 20:00:11 -0400957 popf
Ingo Molnara49976d2015-06-08 09:49:11 +0200958 jmp ftrace_stub
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200959#else /* ! CONFIG_DYNAMIC_FTRACE */
960
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200961ENTRY(mcount)
Ingo Molnara49976d2015-06-08 09:49:11 +0200962 cmpl $__PAGE_OFFSET, %esp
963 jb ftrace_stub /* Paging not enabled yet? */
H. Peter Anvinaf058ab2013-08-30 17:29:29 -0700964
Ingo Molnara49976d2015-06-08 09:49:11 +0200965 cmpl $ftrace_stub, ftrace_trace_function
966 jnz trace
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100967#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Ingo Molnara49976d2015-06-08 09:49:11 +0200968 cmpl $ftrace_stub, ftrace_graph_return
969 jnz ftrace_graph_caller
Steven Rostedte49dc192008-12-02 23:50:05 -0500970
Ingo Molnara49976d2015-06-08 09:49:11 +0200971 cmpl $ftrace_graph_entry_stub, ftrace_graph_entry
972 jnz ftrace_graph_caller
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100973#endif
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200974.globl ftrace_stub
975ftrace_stub:
976 ret
977
978 /* taken from glibc */
979trace:
Ingo Molnara49976d2015-06-08 09:49:11 +0200980 pushl %eax
981 pushl %ecx
982 pushl %edx
983 movl 0xc(%esp), %eax
984 movl 0x4(%ebp), %edx
985 subl $MCOUNT_INSN_SIZE, %eax
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200986
Ingo Molnara49976d2015-06-08 09:49:11 +0200987 call *ftrace_trace_function
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200988
Ingo Molnara49976d2015-06-08 09:49:11 +0200989 popl %edx
990 popl %ecx
991 popl %eax
992 jmp ftrace_stub
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200993END(mcount)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200994#endif /* CONFIG_DYNAMIC_FTRACE */
Steven Rostedt606576c2008-10-06 19:06:12 -0400995#endif /* CONFIG_FUNCTION_TRACER */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200996
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100997#ifdef CONFIG_FUNCTION_GRAPH_TRACER
998ENTRY(ftrace_graph_caller)
Ingo Molnara49976d2015-06-08 09:49:11 +0200999 pushl %eax
1000 pushl %ecx
1001 pushl %edx
1002 movl 0xc(%esp), %eax
1003 lea 0x4(%ebp), %edx
1004 movl (%ebp), %ecx
1005 subl $MCOUNT_INSN_SIZE, %eax
1006 call prepare_ftrace_return
1007 popl %edx
1008 popl %ecx
1009 popl %eax
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01001010 ret
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01001011END(ftrace_graph_caller)
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +01001012
1013.globl return_to_handler
1014return_to_handler:
Ingo Molnara49976d2015-06-08 09:49:11 +02001015 pushl %eax
1016 pushl %edx
1017 movl %ebp, %eax
1018 call ftrace_return_to_handler
1019 movl %eax, %ecx
1020 popl %edx
1021 popl %eax
1022 jmp *%ecx
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01001023#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001025#ifdef CONFIG_TRACING
1026ENTRY(trace_page_fault)
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001027 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001028 pushl $trace_do_page_fault
1029 jmp error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001030END(trace_page_fault)
1031#endif
1032
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001033ENTRY(page_fault)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001034 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001035 pushl $do_page_fault
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001036 ALIGN
1037error_code:
Tejun Heoccbeed32009-02-09 22:17:40 +09001038 /* the function address is in %gs's slot on the stack */
Ingo Molnara49976d2015-06-08 09:49:11 +02001039 pushl %fs
1040 pushl %es
1041 pushl %ds
1042 pushl %eax
1043 pushl %ebp
1044 pushl %edi
1045 pushl %esi
1046 pushl %edx
1047 pushl %ecx
1048 pushl %ebx
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001049 cld
Ingo Molnara49976d2015-06-08 09:49:11 +02001050 movl $(__KERNEL_PERCPU), %ecx
1051 movl %ecx, %fs
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001052 UNWIND_ESPFIX_STACK
Tejun Heoccbeed32009-02-09 22:17:40 +09001053 GS_TO_REG %ecx
Ingo Molnara49976d2015-06-08 09:49:11 +02001054 movl PT_GS(%esp), %edi # get the function address
1055 movl PT_ORIG_EAX(%esp), %edx # get the error code
1056 movl $-1, PT_ORIG_EAX(%esp) # no syscall to restart
Tejun Heoccbeed32009-02-09 22:17:40 +09001057 REG_TO_PTGS %ecx
1058 SET_KERNEL_GS %ecx
Ingo Molnara49976d2015-06-08 09:49:11 +02001059 movl $(__USER_DS), %ecx
1060 movl %ecx, %ds
1061 movl %ecx, %es
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001062 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +02001063 movl %esp, %eax # pt_regs pointer
1064 call *%edi
1065 jmp ret_from_exception
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001066END(page_fault)
1067
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001068ENTRY(debug)
Andy Lutomirski75366562016-03-09 19:00:32 -08001069 /*
1070 * #DB can happen at the first instruction of
1071 * entry_SYSENTER_32 or in Xen's SYSENTER prologue. If this
1072 * happens, then we will be running on a very small stack. We
1073 * need to detect this condition and switch to the thread
1074 * stack before calling any C code at all.
1075 *
1076 * If you edit this code, keep in mind that NMIs can happen in here.
1077 */
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001078 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001079 pushl $-1 # mark this as an int
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001080 SAVE_ALL
Ingo Molnara49976d2015-06-08 09:49:11 +02001081 xorl %edx, %edx # error code 0
1082 movl %esp, %eax # pt_regs pointer
Andy Lutomirski75366562016-03-09 19:00:32 -08001083
1084 /* Are we currently on the SYSENTER stack? */
1085 PER_CPU(cpu_tss + CPU_TSS_SYSENTER_stack + SIZEOF_SYSENTER_stack, %ecx)
1086 subl %eax, %ecx /* ecx = (end of SYSENTER_stack) - esp */
1087 cmpl $SIZEOF_SYSENTER_stack, %ecx
1088 jb .Ldebug_from_sysenter_stack
1089
1090 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +02001091 call do_debug
1092 jmp ret_from_exception
Andy Lutomirski75366562016-03-09 19:00:32 -08001093
1094.Ldebug_from_sysenter_stack:
1095 /* We're on the SYSENTER stack. Switch off. */
1096 movl %esp, %ebp
1097 movl PER_CPU_VAR(cpu_current_top_of_stack), %esp
1098 TRACE_IRQS_OFF
1099 call do_debug
1100 movl %ebp, %esp
1101 jmp ret_from_exception
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001102END(debug)
1103
1104/*
Andy Lutomirski75366562016-03-09 19:00:32 -08001105 * NMI is doubly nasty. It can happen on the first instruction of
1106 * entry_SYSENTER_32 (just like #DB), but it can also interrupt the beginning
1107 * of the #DB handler even if that #DB in turn hit before entry_SYSENTER_32
1108 * switched stacks. We handle both conditions by simply checking whether we
1109 * interrupted kernel code running on the SYSENTER stack.
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001110 */
1111ENTRY(nmi)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001112 ASM_CLAC
H. Peter Anvin34273f42014-05-04 10:36:22 -07001113#ifdef CONFIG_X86_ESPFIX32
Ingo Molnara49976d2015-06-08 09:49:11 +02001114 pushl %eax
1115 movl %ss, %eax
1116 cmpw $__ESPFIX_SS, %ax
1117 popl %eax
1118 je nmi_espfix_stack
H. Peter Anvin34273f42014-05-04 10:36:22 -07001119#endif
Andy Lutomirski75366562016-03-09 19:00:32 -08001120
1121 pushl %eax # pt_regs->orig_ax
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001122 SAVE_ALL
Ingo Molnara49976d2015-06-08 09:49:11 +02001123 xorl %edx, %edx # zero error code
1124 movl %esp, %eax # pt_regs pointer
Andy Lutomirski75366562016-03-09 19:00:32 -08001125
1126 /* Are we currently on the SYSENTER stack? */
1127 PER_CPU(cpu_tss + CPU_TSS_SYSENTER_stack + SIZEOF_SYSENTER_stack, %ecx)
1128 subl %eax, %ecx /* ecx = (end of SYSENTER_stack) - esp */
1129 cmpl $SIZEOF_SYSENTER_stack, %ecx
1130 jb .Lnmi_from_sysenter_stack
1131
1132 /* Not on SYSENTER stack. */
Ingo Molnara49976d2015-06-08 09:49:11 +02001133 call do_nmi
1134 jmp restore_all_notrace
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001135
Andy Lutomirski75366562016-03-09 19:00:32 -08001136.Lnmi_from_sysenter_stack:
1137 /*
1138 * We're on the SYSENTER stack. Switch off. No one (not even debug)
1139 * is using the thread stack right now, so it's safe for us to use it.
1140 */
1141 movl %esp, %ebp
1142 movl PER_CPU_VAR(cpu_current_top_of_stack), %esp
1143 call do_nmi
1144 movl %ebp, %esp
1145 jmp restore_all_notrace
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001146
H. Peter Anvin34273f42014-05-04 10:36:22 -07001147#ifdef CONFIG_X86_ESPFIX32
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001148nmi_espfix_stack:
Ingo Molnar131484c2015-05-28 12:21:47 +02001149 /*
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001150 * create the pointer to lss back
1151 */
Ingo Molnara49976d2015-06-08 09:49:11 +02001152 pushl %ss
1153 pushl %esp
1154 addl $4, (%esp)
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001155 /* copy the iret frame of 12 bytes */
1156 .rept 3
Ingo Molnara49976d2015-06-08 09:49:11 +02001157 pushl 16(%esp)
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001158 .endr
Ingo Molnara49976d2015-06-08 09:49:11 +02001159 pushl %eax
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001160 SAVE_ALL
Ingo Molnara49976d2015-06-08 09:49:11 +02001161 FIXUP_ESPFIX_STACK # %eax == %esp
1162 xorl %edx, %edx # zero error code
1163 call do_nmi
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001164 RESTORE_REGS
Ingo Molnara49976d2015-06-08 09:49:11 +02001165 lss 12+4(%esp), %esp # back to espfix stack
1166 jmp irq_return
H. Peter Anvin34273f42014-05-04 10:36:22 -07001167#endif
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001168END(nmi)
1169
1170ENTRY(int3)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001171 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001172 pushl $-1 # mark this as an int
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001173 SAVE_ALL
1174 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +02001175 xorl %edx, %edx # zero error code
1176 movl %esp, %eax # pt_regs pointer
1177 call do_int3
1178 jmp ret_from_exception
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001179END(int3)
1180
1181ENTRY(general_protection)
Ingo Molnara49976d2015-06-08 09:49:11 +02001182 pushl $do_general_protection
1183 jmp error_code
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001184END(general_protection)
1185
Gleb Natapov631bc482010-10-14 11:22:52 +02001186#ifdef CONFIG_KVM_GUEST
1187ENTRY(async_page_fault)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001188 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001189 pushl $do_async_page_fault
1190 jmp error_code
Sedat Dilek2ae9d292011-03-08 22:39:24 +01001191END(async_page_fault)
Gleb Natapov631bc482010-10-14 11:22:52 +02001192#endif
Andy Lutomirski2deb4be2016-07-14 13:22:55 -07001193
1194ENTRY(rewind_stack_do_exit)
1195 /* Prevent any naive code from trying to unwind to our caller. */
1196 xorl %ebp, %ebp
1197
1198 movl PER_CPU_VAR(cpu_current_top_of_stack), %esi
1199 leal -TOP_OF_KERNEL_STACK_PADDING-PTREGS_SIZE(%esi), %esp
1200
1201 call do_exit
12021: jmp 1b
1203END(rewind_stack_do_exit)