blob: 21b352a11b493f4868b1a091dc416c7e2279ad34 [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>
Al Viro784d5692016-01-11 11:04:34 -050047#include <asm/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Jiri Olsaea714542011-03-07 19:10:39 +010049 .section .entry.text, "ax"
50
Rusty Russell139ec7c2006-12-07 02:14:08 +010051/*
52 * We use macros for low-level operations which need to be overridden
53 * for paravirtualization. The following will never clobber any registers:
54 * INTERRUPT_RETURN (aka. "iret")
55 * GET_CR0_INTO_EAX (aka. "movl %cr0, %eax")
Jeremy Fitzhardinged75cd22f2008-06-25 00:19:26 -040056 * ENABLE_INTERRUPTS_SYSEXIT (aka "sti; sysexit").
Rusty Russell139ec7c2006-12-07 02:14:08 +010057 *
58 * For DISABLE_INTERRUPTS/ENABLE_INTERRUPTS (aka "cli"/"sti"), you must
59 * specify what registers can be overwritten (CLBR_NONE, CLBR_EAX/EDX/ECX/ANY).
60 * Allowing a register to be clobbered can shrink the paravirt replacement
61 * enough to patch inline, increasing performance.
62 */
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#ifdef CONFIG_PREEMPT
Ingo Molnara49976d2015-06-08 09:49:11 +020065# define preempt_stop(clobbers) DISABLE_INTERRUPTS(clobbers); TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#else
Ingo Molnara49976d2015-06-08 09:49:11 +020067# define preempt_stop(clobbers)
68# define resume_kernel restore_all
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#endif
70
Ingo Molnar55f327f2006-07-03 00:24:43 -070071.macro TRACE_IRQS_IRET
72#ifdef CONFIG_TRACE_IRQFLAGS
Ingo Molnara49976d2015-06-08 09:49:11 +020073 testl $X86_EFLAGS_IF, PT_EFLAGS(%esp) # interrupts off?
74 jz 1f
Ingo Molnar55f327f2006-07-03 00:24:43 -070075 TRACE_IRQS_ON
761:
77#endif
78.endm
79
Tejun Heoccbeed32009-02-09 22:17:40 +090080/*
81 * User gs save/restore
82 *
83 * %gs is used for userland TLS and kernel only uses it for stack
84 * canary which is required to be at %gs:20 by gcc. Read the comment
85 * at the top of stackprotector.h for more info.
86 *
87 * Local labels 98 and 99 are used.
88 */
89#ifdef CONFIG_X86_32_LAZY_GS
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Tejun Heoccbeed32009-02-09 22:17:40 +090091 /* unfortunately push/pop can't be no-op */
92.macro PUSH_GS
Ingo Molnara49976d2015-06-08 09:49:11 +020093 pushl $0
Tejun Heoccbeed32009-02-09 22:17:40 +090094.endm
95.macro POP_GS pop=0
Ingo Molnara49976d2015-06-08 09:49:11 +020096 addl $(4 + \pop), %esp
Tejun Heoccbeed32009-02-09 22:17:40 +090097.endm
98.macro POP_GS_EX
99.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Tejun Heoccbeed32009-02-09 22:17:40 +0900101 /* all the rest are no-op */
102.macro PTGS_TO_GS
103.endm
104.macro PTGS_TO_GS_EX
105.endm
106.macro GS_TO_REG reg
107.endm
108.macro REG_TO_PTGS reg
109.endm
110.macro SET_KERNEL_GS reg
111.endm
112
113#else /* CONFIG_X86_32_LAZY_GS */
114
115.macro PUSH_GS
Ingo Molnara49976d2015-06-08 09:49:11 +0200116 pushl %gs
Tejun Heoccbeed32009-02-09 22:17:40 +0900117.endm
118
119.macro POP_GS pop=0
Ingo Molnara49976d2015-06-08 09:49:11 +020012098: popl %gs
Tejun Heoccbeed32009-02-09 22:17:40 +0900121 .if \pop <> 0
Denys Vlasenko9b47feb2015-06-08 22:35:33 +0200122 add $\pop, %esp
Tejun Heoccbeed32009-02-09 22:17:40 +0900123 .endif
124.endm
125.macro POP_GS_EX
126.pushsection .fixup, "ax"
Ingo Molnara49976d2015-06-08 09:49:11 +020012799: movl $0, (%esp)
128 jmp 98b
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100129.popsection
Ingo Molnara49976d2015-06-08 09:49:11 +0200130 _ASM_EXTABLE(98b, 99b)
Tejun Heoccbeed32009-02-09 22:17:40 +0900131.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Tejun Heoccbeed32009-02-09 22:17:40 +0900133.macro PTGS_TO_GS
Ingo Molnara49976d2015-06-08 09:49:11 +020013498: mov PT_GS(%esp), %gs
Tejun Heoccbeed32009-02-09 22:17:40 +0900135.endm
136.macro PTGS_TO_GS_EX
137.pushsection .fixup, "ax"
Ingo Molnara49976d2015-06-08 09:49:11 +020013899: movl $0, PT_GS(%esp)
139 jmp 98b
Tejun Heoccbeed32009-02-09 22:17:40 +0900140.popsection
Ingo Molnara49976d2015-06-08 09:49:11 +0200141 _ASM_EXTABLE(98b, 99b)
Tejun Heoccbeed32009-02-09 22:17:40 +0900142.endm
143
144.macro GS_TO_REG reg
Ingo Molnara49976d2015-06-08 09:49:11 +0200145 movl %gs, \reg
Tejun Heoccbeed32009-02-09 22:17:40 +0900146.endm
147.macro REG_TO_PTGS reg
Ingo Molnara49976d2015-06-08 09:49:11 +0200148 movl \reg, PT_GS(%esp)
Tejun Heoccbeed32009-02-09 22:17:40 +0900149.endm
150.macro SET_KERNEL_GS reg
Ingo Molnara49976d2015-06-08 09:49:11 +0200151 movl $(__KERNEL_STACK_CANARY), \reg
152 movl \reg, %gs
Tejun Heoccbeed32009-02-09 22:17:40 +0900153.endm
154
Ingo Molnara49976d2015-06-08 09:49:11 +0200155#endif /* CONFIG_X86_32_LAZY_GS */
Tejun Heoccbeed32009-02-09 22:17:40 +0900156
Andy Lutomirski150ac782015-10-05 17:48:14 -0700157.macro SAVE_ALL pt_regs_ax=%eax
Tejun Heof0d96112009-02-09 22:17:40 +0900158 cld
Tejun Heoccbeed32009-02-09 22:17:40 +0900159 PUSH_GS
Ingo Molnara49976d2015-06-08 09:49:11 +0200160 pushl %fs
161 pushl %es
162 pushl %ds
Andy Lutomirski150ac782015-10-05 17:48:14 -0700163 pushl \pt_regs_ax
Ingo Molnara49976d2015-06-08 09:49:11 +0200164 pushl %ebp
165 pushl %edi
166 pushl %esi
167 pushl %edx
168 pushl %ecx
169 pushl %ebx
170 movl $(__USER_DS), %edx
171 movl %edx, %ds
172 movl %edx, %es
173 movl $(__KERNEL_PERCPU), %edx
174 movl %edx, %fs
Tejun Heoccbeed32009-02-09 22:17:40 +0900175 SET_KERNEL_GS %edx
Tejun Heof0d96112009-02-09 22:17:40 +0900176.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Tejun Heof0d96112009-02-09 22:17:40 +0900178.macro RESTORE_INT_REGS
Ingo Molnara49976d2015-06-08 09:49:11 +0200179 popl %ebx
180 popl %ecx
181 popl %edx
182 popl %esi
183 popl %edi
184 popl %ebp
185 popl %eax
Tejun Heof0d96112009-02-09 22:17:40 +0900186.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Tejun Heoccbeed32009-02-09 22:17:40 +0900188.macro RESTORE_REGS pop=0
Tejun Heof0d96112009-02-09 22:17:40 +0900189 RESTORE_INT_REGS
Ingo Molnara49976d2015-06-08 09:49:11 +02001901: popl %ds
1912: popl %es
1923: popl %fs
Tejun Heoccbeed32009-02-09 22:17:40 +0900193 POP_GS \pop
Tejun Heof0d96112009-02-09 22:17:40 +0900194.pushsection .fixup, "ax"
Ingo Molnara49976d2015-06-08 09:49:11 +02001954: movl $0, (%esp)
196 jmp 1b
1975: movl $0, (%esp)
198 jmp 2b
1996: movl $0, (%esp)
200 jmp 3b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201.popsection
Ingo Molnara49976d2015-06-08 09:49:11 +0200202 _ASM_EXTABLE(1b, 4b)
203 _ASM_EXTABLE(2b, 5b)
204 _ASM_EXTABLE(3b, 6b)
Tejun Heoccbeed32009-02-09 22:17:40 +0900205 POP_GS_EX
Tejun Heof0d96112009-02-09 22:17:40 +0900206.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Brian Gerst01003012016-08-13 12:38:19 -0400208/*
209 * %eax: prev task
210 * %edx: next task
211 */
212ENTRY(__switch_to_asm)
213 /*
214 * Save callee-saved registers
215 * This must match the order in struct inactive_task_frame
216 */
217 pushl %ebp
218 pushl %ebx
219 pushl %edi
220 pushl %esi
221
222 /* switch stack */
223 movl %esp, TASK_threadsp(%eax)
224 movl TASK_threadsp(%edx), %esp
225
226#ifdef CONFIG_CC_STACKPROTECTOR
227 movl TASK_stack_canary(%edx), %ebx
228 movl %ebx, PER_CPU_VAR(stack_canary)+stack_canary_offset
229#endif
230
231 /* restore callee-saved registers */
232 popl %esi
233 popl %edi
234 popl %ebx
235 popl %ebp
236
237 jmp __switch_to
238END(__switch_to_asm)
239
240/*
241 * A newly forked process directly context switches into this address.
242 *
243 * eax: prev task we switched from
Brian Gerst616d2482016-08-13 12:38:20 -0400244 * ebx: kernel thread func (NULL for user thread)
245 * edi: kernel thread arg
Brian Gerst01003012016-08-13 12:38:19 -0400246 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247ENTRY(ret_from_fork)
Ingo Molnara49976d2015-06-08 09:49:11 +0200248 pushl %eax
249 call schedule_tail
Ingo Molnara49976d2015-06-08 09:49:11 +0200250 popl %eax
Andy Lutomirski39e87012015-10-05 17:48:13 -0700251
Brian Gerst616d2482016-08-13 12:38:20 -0400252 testl %ebx, %ebx
253 jnz 1f /* kernel threads are uncommon */
254
2552:
Andy Lutomirski39e87012015-10-05 17:48:13 -0700256 /* When we fork, we trace the syscall return in the child, too. */
257 movl %esp, %eax
258 call syscall_return_slowpath
259 jmp restore_all
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Brian Gerst616d2482016-08-13 12:38:20 -0400261 /* kernel thread */
2621: movl %edi, %eax
263 call *%ebx
Andy Lutomirski39e87012015-10-05 17:48:13 -0700264 /*
Brian Gerst616d2482016-08-13 12:38:20 -0400265 * A kernel thread is allowed to return here after successfully
266 * calling do_execve(). Exit to userspace to complete the execve()
267 * syscall.
Andy Lutomirski39e87012015-10-05 17:48:13 -0700268 */
Brian Gerst616d2482016-08-13 12:38:20 -0400269 movl $0, PT_EAX(%esp)
270 jmp 2b
271END(ret_from_fork)
Al Viro6783eaa2012-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 Viro6783eaa2012-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 */
Al Viro784d5692016-01-11 11:04:34 -0500995EXPORT_SYMBOL(mcount)
Steven Rostedt606576c2008-10-06 19:06:12 -0400996#endif /* CONFIG_FUNCTION_TRACER */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200997
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100998#ifdef CONFIG_FUNCTION_GRAPH_TRACER
999ENTRY(ftrace_graph_caller)
Ingo Molnara49976d2015-06-08 09:49:11 +02001000 pushl %eax
1001 pushl %ecx
1002 pushl %edx
1003 movl 0xc(%esp), %eax
1004 lea 0x4(%ebp), %edx
1005 movl (%ebp), %ecx
1006 subl $MCOUNT_INSN_SIZE, %eax
1007 call prepare_ftrace_return
1008 popl %edx
1009 popl %ecx
1010 popl %eax
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01001011 ret
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01001012END(ftrace_graph_caller)
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +01001013
1014.globl return_to_handler
1015return_to_handler:
Ingo Molnara49976d2015-06-08 09:49:11 +02001016 pushl %eax
1017 pushl %edx
1018 movl %ebp, %eax
1019 call ftrace_return_to_handler
1020 movl %eax, %ecx
1021 popl %edx
1022 popl %eax
1023 jmp *%ecx
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01001024#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001026#ifdef CONFIG_TRACING
1027ENTRY(trace_page_fault)
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001028 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001029 pushl $trace_do_page_fault
1030 jmp error_code
Seiji Aguchi25c74b12013-10-30 16:37:00 -04001031END(trace_page_fault)
1032#endif
1033
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001034ENTRY(page_fault)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001035 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001036 pushl $do_page_fault
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001037 ALIGN
1038error_code:
Tejun Heoccbeed32009-02-09 22:17:40 +09001039 /* the function address is in %gs's slot on the stack */
Ingo Molnara49976d2015-06-08 09:49:11 +02001040 pushl %fs
1041 pushl %es
1042 pushl %ds
1043 pushl %eax
1044 pushl %ebp
1045 pushl %edi
1046 pushl %esi
1047 pushl %edx
1048 pushl %ecx
1049 pushl %ebx
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001050 cld
Ingo Molnara49976d2015-06-08 09:49:11 +02001051 movl $(__KERNEL_PERCPU), %ecx
1052 movl %ecx, %fs
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001053 UNWIND_ESPFIX_STACK
Tejun Heoccbeed32009-02-09 22:17:40 +09001054 GS_TO_REG %ecx
Ingo Molnara49976d2015-06-08 09:49:11 +02001055 movl PT_GS(%esp), %edi # get the function address
1056 movl PT_ORIG_EAX(%esp), %edx # get the error code
1057 movl $-1, PT_ORIG_EAX(%esp) # no syscall to restart
Tejun Heoccbeed32009-02-09 22:17:40 +09001058 REG_TO_PTGS %ecx
1059 SET_KERNEL_GS %ecx
Ingo Molnara49976d2015-06-08 09:49:11 +02001060 movl $(__USER_DS), %ecx
1061 movl %ecx, %ds
1062 movl %ecx, %es
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001063 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +02001064 movl %esp, %eax # pt_regs pointer
1065 call *%edi
1066 jmp ret_from_exception
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001067END(page_fault)
1068
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001069ENTRY(debug)
Andy Lutomirski75366562016-03-09 19:00:32 -08001070 /*
1071 * #DB can happen at the first instruction of
1072 * entry_SYSENTER_32 or in Xen's SYSENTER prologue. If this
1073 * happens, then we will be running on a very small stack. We
1074 * need to detect this condition and switch to the thread
1075 * stack before calling any C code at all.
1076 *
1077 * If you edit this code, keep in mind that NMIs can happen in here.
1078 */
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001079 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001080 pushl $-1 # mark this as an int
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001081 SAVE_ALL
Ingo Molnara49976d2015-06-08 09:49:11 +02001082 xorl %edx, %edx # error code 0
1083 movl %esp, %eax # pt_regs pointer
Andy Lutomirski75366562016-03-09 19:00:32 -08001084
1085 /* Are we currently on the SYSENTER stack? */
1086 PER_CPU(cpu_tss + CPU_TSS_SYSENTER_stack + SIZEOF_SYSENTER_stack, %ecx)
1087 subl %eax, %ecx /* ecx = (end of SYSENTER_stack) - esp */
1088 cmpl $SIZEOF_SYSENTER_stack, %ecx
1089 jb .Ldebug_from_sysenter_stack
1090
1091 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +02001092 call do_debug
1093 jmp ret_from_exception
Andy Lutomirski75366562016-03-09 19:00:32 -08001094
1095.Ldebug_from_sysenter_stack:
1096 /* We're on the SYSENTER stack. Switch off. */
1097 movl %esp, %ebp
1098 movl PER_CPU_VAR(cpu_current_top_of_stack), %esp
1099 TRACE_IRQS_OFF
1100 call do_debug
1101 movl %ebp, %esp
1102 jmp ret_from_exception
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001103END(debug)
1104
1105/*
Andy Lutomirski75366562016-03-09 19:00:32 -08001106 * NMI is doubly nasty. It can happen on the first instruction of
1107 * entry_SYSENTER_32 (just like #DB), but it can also interrupt the beginning
1108 * of the #DB handler even if that #DB in turn hit before entry_SYSENTER_32
1109 * switched stacks. We handle both conditions by simply checking whether we
1110 * interrupted kernel code running on the SYSENTER stack.
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001111 */
1112ENTRY(nmi)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001113 ASM_CLAC
H. Peter Anvin34273f42014-05-04 10:36:22 -07001114#ifdef CONFIG_X86_ESPFIX32
Ingo Molnara49976d2015-06-08 09:49:11 +02001115 pushl %eax
1116 movl %ss, %eax
1117 cmpw $__ESPFIX_SS, %ax
1118 popl %eax
1119 je nmi_espfix_stack
H. Peter Anvin34273f42014-05-04 10:36:22 -07001120#endif
Andy Lutomirski75366562016-03-09 19:00:32 -08001121
1122 pushl %eax # pt_regs->orig_ax
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001123 SAVE_ALL
Ingo Molnara49976d2015-06-08 09:49:11 +02001124 xorl %edx, %edx # zero error code
1125 movl %esp, %eax # pt_regs pointer
Andy Lutomirski75366562016-03-09 19:00:32 -08001126
1127 /* Are we currently on the SYSENTER stack? */
1128 PER_CPU(cpu_tss + CPU_TSS_SYSENTER_stack + SIZEOF_SYSENTER_stack, %ecx)
1129 subl %eax, %ecx /* ecx = (end of SYSENTER_stack) - esp */
1130 cmpl $SIZEOF_SYSENTER_stack, %ecx
1131 jb .Lnmi_from_sysenter_stack
1132
1133 /* Not on SYSENTER stack. */
Ingo Molnara49976d2015-06-08 09:49:11 +02001134 call do_nmi
1135 jmp restore_all_notrace
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001136
Andy Lutomirski75366562016-03-09 19:00:32 -08001137.Lnmi_from_sysenter_stack:
1138 /*
1139 * We're on the SYSENTER stack. Switch off. No one (not even debug)
1140 * is using the thread stack right now, so it's safe for us to use it.
1141 */
1142 movl %esp, %ebp
1143 movl PER_CPU_VAR(cpu_current_top_of_stack), %esp
1144 call do_nmi
1145 movl %ebp, %esp
1146 jmp restore_all_notrace
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001147
H. Peter Anvin34273f42014-05-04 10:36:22 -07001148#ifdef CONFIG_X86_ESPFIX32
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001149nmi_espfix_stack:
Ingo Molnar131484c2015-05-28 12:21:47 +02001150 /*
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001151 * create the pointer to lss back
1152 */
Ingo Molnara49976d2015-06-08 09:49:11 +02001153 pushl %ss
1154 pushl %esp
1155 addl $4, (%esp)
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001156 /* copy the iret frame of 12 bytes */
1157 .rept 3
Ingo Molnara49976d2015-06-08 09:49:11 +02001158 pushl 16(%esp)
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001159 .endr
Ingo Molnara49976d2015-06-08 09:49:11 +02001160 pushl %eax
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001161 SAVE_ALL
Ingo Molnara49976d2015-06-08 09:49:11 +02001162 FIXUP_ESPFIX_STACK # %eax == %esp
1163 xorl %edx, %edx # zero error code
1164 call do_nmi
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001165 RESTORE_REGS
Ingo Molnara49976d2015-06-08 09:49:11 +02001166 lss 12+4(%esp), %esp # back to espfix stack
1167 jmp irq_return
H. Peter Anvin34273f42014-05-04 10:36:22 -07001168#endif
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001169END(nmi)
1170
1171ENTRY(int3)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001172 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001173 pushl $-1 # mark this as an int
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001174 SAVE_ALL
1175 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +02001176 xorl %edx, %edx # zero error code
1177 movl %esp, %eax # pt_regs pointer
1178 call do_int3
1179 jmp ret_from_exception
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001180END(int3)
1181
1182ENTRY(general_protection)
Ingo Molnara49976d2015-06-08 09:49:11 +02001183 pushl $do_general_protection
1184 jmp error_code
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001185END(general_protection)
1186
Gleb Natapov631bc482010-10-14 11:22:52 +02001187#ifdef CONFIG_KVM_GUEST
1188ENTRY(async_page_fault)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001189 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001190 pushl $do_async_page_fault
1191 jmp error_code
Sedat Dilek2ae9d292011-03-08 22:39:24 +01001192END(async_page_fault)
Gleb Natapov631bc482010-10-14 11:22:52 +02001193#endif
Andy Lutomirski2deb4be2016-07-14 13:22:55 -07001194
1195ENTRY(rewind_stack_do_exit)
1196 /* Prevent any naive code from trying to unwind to our caller. */
1197 xorl %ebp, %ebp
1198
1199 movl PER_CPU_VAR(cpu_current_top_of_stack), %esi
1200 leal -TOP_OF_KERNEL_STACK_PADDING-PTREGS_SIZE(%esi), %esp
1201
1202 call do_exit
12031: jmp 1b
1204END(rewind_stack_do_exit)