blob: 16c2c022540d42b9fc51ee7489383775bd319ac1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Ingo Molnara49976d2015-06-08 09:49:11 +02003 * Copyright (C) 1991,1992 Linus Torvalds
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Ingo Molnara49976d2015-06-08 09:49:11 +02005 * entry_32.S contains the system-call and low-level fault and trap handling routines.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Andy Lutomirski39e87012015-10-05 17:48:13 -07007 * Stack layout while running C code:
Ingo Molnara49976d2015-06-08 09:49:11 +02008 * ptrace needs to have all registers on the stack.
9 * If the order here is changed, it needs to be
10 * updated in fork.c:copy_process(), signal.c:do_signal(),
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * ptrace.c and ptrace.h
12 *
13 * 0(%esp) - %ebx
14 * 4(%esp) - %ecx
15 * 8(%esp) - %edx
Denys Vlasenko9b47feb2015-06-08 22:35:33 +020016 * C(%esp) - %esi
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * 10(%esp) - %edi
18 * 14(%esp) - %ebp
19 * 18(%esp) - %eax
20 * 1C(%esp) - %ds
21 * 20(%esp) - %es
Jeremy Fitzhardinge464d1a72007-02-13 13:26:20 +010022 * 24(%esp) - %fs
Tejun Heoccbeed32009-02-09 22:17:40 +090023 * 28(%esp) - %gs saved iff !CONFIG_X86_32_LAZY_GS
24 * 2C(%esp) - orig_eax
25 * 30(%esp) - %eip
26 * 34(%esp) - %cs
27 * 38(%esp) - %eflags
28 * 3C(%esp) - %oldesp
29 * 40(%esp) - %oldss
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 */
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/linkage.h>
Eric Parisd7e75282012-01-03 14:23:06 -050033#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/thread_info.h>
Ingo Molnar55f327f2006-07-03 00:24:43 -070035#include <asm/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/errno.h>
37#include <asm/segment.h>
38#include <asm/smp.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>
Thomas Gleixner9b7dc562008-05-02 20:10:09 +020041#include <asm/irq_vectors.h>
Borislav Petkovcd4d09e2016-01-26 22:12:04 +010042#include <asm/cpufeatures.h>
Andy Lutomirskib4ca46e2011-08-25 16:10:33 -040043#include <asm/alternative-asm.h>
H. Peter Anvin6837a542012-04-20 12:19:50 -070044#include <asm/asm.h>
H. Peter Anvine59d1b02012-09-21 13:58:10 -070045#include <asm/smap.h>
Josh Poimboeuf4d516f42016-09-21 16:04:01 -050046#include <asm/frame.h>
David Woodhouse2641f082018-01-11 21:46:28 +000047#include <asm/nospec-branch.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 Fitzhardinged75cd222008-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
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500178/*
179 * This is a sneaky trick to help the unwinder find pt_regs on the stack. The
180 * frame pointer is replaced with an encoded pointer to pt_regs. The encoding
Josh Poimboeuf5c99b692017-10-09 20:20:03 -0500181 * is just clearing the MSB, which makes it an invalid stack address and is also
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500182 * a signal to the unwinder that it's a pt_regs pointer in disguise.
183 *
184 * NOTE: This macro must be used *after* SAVE_ALL because it corrupts the
185 * original rbp.
186 */
187.macro ENCODE_FRAME_POINTER
188#ifdef CONFIG_FRAME_POINTER
189 mov %esp, %ebp
Josh Poimboeuf5c99b692017-10-09 20:20:03 -0500190 andl $0x7fffffff, %ebp
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500191#endif
192.endm
193
Tejun Heof0d96112009-02-09 22:17:40 +0900194.macro RESTORE_INT_REGS
Ingo Molnara49976d2015-06-08 09:49:11 +0200195 popl %ebx
196 popl %ecx
197 popl %edx
198 popl %esi
199 popl %edi
200 popl %ebp
201 popl %eax
Tejun Heof0d96112009-02-09 22:17:40 +0900202.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Tejun Heoccbeed32009-02-09 22:17:40 +0900204.macro RESTORE_REGS pop=0
Tejun Heof0d96112009-02-09 22:17:40 +0900205 RESTORE_INT_REGS
Ingo Molnara49976d2015-06-08 09:49:11 +02002061: popl %ds
2072: popl %es
2083: popl %fs
Tejun Heoccbeed32009-02-09 22:17:40 +0900209 POP_GS \pop
Tejun Heof0d96112009-02-09 22:17:40 +0900210.pushsection .fixup, "ax"
Ingo Molnara49976d2015-06-08 09:49:11 +02002114: movl $0, (%esp)
212 jmp 1b
2135: movl $0, (%esp)
214 jmp 2b
2156: movl $0, (%esp)
216 jmp 3b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217.popsection
Ingo Molnara49976d2015-06-08 09:49:11 +0200218 _ASM_EXTABLE(1b, 4b)
219 _ASM_EXTABLE(2b, 5b)
220 _ASM_EXTABLE(3b, 6b)
Tejun Heoccbeed32009-02-09 22:17:40 +0900221 POP_GS_EX
Tejun Heof0d96112009-02-09 22:17:40 +0900222.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Brian Gerst01003012016-08-13 12:38:19 -0400224/*
225 * %eax: prev task
226 * %edx: next task
227 */
228ENTRY(__switch_to_asm)
229 /*
230 * Save callee-saved registers
231 * This must match the order in struct inactive_task_frame
232 */
233 pushl %ebp
234 pushl %ebx
235 pushl %edi
236 pushl %esi
237
238 /* switch stack */
239 movl %esp, TASK_threadsp(%eax)
240 movl TASK_threadsp(%edx), %esp
241
242#ifdef CONFIG_CC_STACKPROTECTOR
243 movl TASK_stack_canary(%edx), %ebx
244 movl %ebx, PER_CPU_VAR(stack_canary)+stack_canary_offset
245#endif
246
David Woodhousec995efd2018-01-12 17:49:25 +0000247#ifdef CONFIG_RETPOLINE
248 /*
249 * When switching from a shallower to a deeper call stack
250 * the RSB may either underflow or use entries populated
251 * with userspace addresses. On CPUs where those concerns
252 * exist, overwrite the RSB with entries which capture
253 * speculative execution to prevent attack.
254 */
Borislav Petkov1dde7412018-01-27 16:24:33 +0000255 /* Clobbers %ebx */
256 FILL_RETURN_BUFFER RSB_CLEAR_LOOPS, X86_FEATURE_RSB_CTXSW
David Woodhousec995efd2018-01-12 17:49:25 +0000257#endif
258
Brian Gerst01003012016-08-13 12:38:19 -0400259 /* restore callee-saved registers */
260 popl %esi
261 popl %edi
262 popl %ebx
263 popl %ebp
264
265 jmp __switch_to
266END(__switch_to_asm)
267
268/*
Josh Poimboeufebd57492017-05-23 10:37:29 -0500269 * The unwinder expects the last frame on the stack to always be at the same
270 * offset from the end of the page, which allows it to validate the stack.
271 * Calling schedule_tail() directly would break that convention because its an
272 * asmlinkage function so its argument has to be pushed on the stack. This
273 * wrapper creates a proper "end of stack" frame header before the call.
274 */
275ENTRY(schedule_tail_wrapper)
276 FRAME_BEGIN
277
278 pushl %eax
279 call schedule_tail
280 popl %eax
281
282 FRAME_END
283 ret
284ENDPROC(schedule_tail_wrapper)
285/*
Brian Gerst01003012016-08-13 12:38:19 -0400286 * A newly forked process directly context switches into this address.
287 *
288 * eax: prev task we switched from
Brian Gerst616d2482016-08-13 12:38:20 -0400289 * ebx: kernel thread func (NULL for user thread)
290 * edi: kernel thread arg
Brian Gerst01003012016-08-13 12:38:19 -0400291 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292ENTRY(ret_from_fork)
Josh Poimboeufebd57492017-05-23 10:37:29 -0500293 call schedule_tail_wrapper
Andy Lutomirski39e87012015-10-05 17:48:13 -0700294
Brian Gerst616d2482016-08-13 12:38:20 -0400295 testl %ebx, %ebx
296 jnz 1f /* kernel threads are uncommon */
297
2982:
Andy Lutomirski39e87012015-10-05 17:48:13 -0700299 /* When we fork, we trace the syscall return in the child, too. */
Josh Poimboeufebd57492017-05-23 10:37:29 -0500300 movl %esp, %eax
Andy Lutomirski39e87012015-10-05 17:48:13 -0700301 call syscall_return_slowpath
302 jmp restore_all
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Brian Gerst616d2482016-08-13 12:38:20 -0400304 /* kernel thread */
3051: movl %edi, %eax
David Woodhouse2641f082018-01-11 21:46:28 +0000306 CALL_NOSPEC %ebx
Andy Lutomirski39e87012015-10-05 17:48:13 -0700307 /*
Brian Gerst616d2482016-08-13 12:38:20 -0400308 * A kernel thread is allowed to return here after successfully
309 * calling do_execve(). Exit to userspace to complete the execve()
310 * syscall.
Andy Lutomirski39e87012015-10-05 17:48:13 -0700311 */
Brian Gerst616d2482016-08-13 12:38:20 -0400312 movl $0, PT_EAX(%esp)
313 jmp 2b
314END(ret_from_fork)
Al Viro6783eaa22012-08-02 23:05:11 +0400315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/*
317 * Return to user mode is not as complex as all this looks,
318 * but we want the default path for a system call return to
319 * go as quickly as possible which is why some of this is
320 * less clear than it otherwise should be.
321 */
322
323 # userspace resumption stub bypassing syscall exit tracing
324 ALIGN
325ret_from_exception:
Rusty Russell139ec7c2006-12-07 02:14:08 +0100326 preempt_stop(CLBR_ANY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327ret_from_intr:
Dmitry Adamushko29a2e282012-03-22 21:39:25 +0100328#ifdef CONFIG_VM86
Ingo Molnara49976d2015-06-08 09:49:11 +0200329 movl PT_EFLAGS(%esp), %eax # mix EFLAGS and CS
330 movb PT_CS(%esp), %al
331 andl $(X86_EFLAGS_VM | SEGMENT_RPL_MASK), %eax
Dmitry Adamushko29a2e282012-03-22 21:39:25 +0100332#else
333 /*
Al Viro6783eaa22012-08-02 23:05:11 +0400334 * We can be coming here from child spawned by kernel_thread().
Dmitry Adamushko29a2e282012-03-22 21:39:25 +0100335 */
Ingo Molnara49976d2015-06-08 09:49:11 +0200336 movl PT_CS(%esp), %eax
337 andl $SEGMENT_RPL_MASK, %eax
Dmitry Adamushko29a2e282012-03-22 21:39:25 +0100338#endif
Ingo Molnara49976d2015-06-08 09:49:11 +0200339 cmpl $USER_RPL, %eax
340 jb resume_kernel # not returning to v8086 or userspace
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342ENTRY(resume_userspace)
Andy Lutomirski5d73fc72015-07-31 14:41:09 -0700343 DISABLE_INTERRUPTS(CLBR_ANY)
Peter Zijlstrae32e58a2008-06-06 10:14:08 +0200344 TRACE_IRQS_OFF
Andy Lutomirski5d73fc72015-07-31 14:41:09 -0700345 movl %esp, %eax
346 call prepare_exit_to_usermode
Ingo Molnara49976d2015-06-08 09:49:11 +0200347 jmp restore_all
Jan Beulich47a55cd2007-02-13 13:26:24 +0100348END(ret_from_exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350#ifdef CONFIG_PREEMPT
351ENTRY(resume_kernel)
Rusty Russell139ec7c2006-12-07 02:14:08 +0100352 DISABLE_INTERRUPTS(CLBR_ANY)
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500353.Lneed_resched:
Ingo Molnara49976d2015-06-08 09:49:11 +0200354 cmpl $0, PER_CPU_VAR(__preempt_count)
355 jnz restore_all
356 testl $X86_EFLAGS_IF, PT_EFLAGS(%esp) # interrupts off (exception path) ?
357 jz restore_all
358 call preempt_schedule_irq
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500359 jmp .Lneed_resched
Jan Beulich47a55cd2007-02-13 13:26:24 +0100360END(resume_kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361#endif
362
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800363GLOBAL(__begin_SYSENTER_singlestep_region)
364/*
365 * All code from here through __end_SYSENTER_singlestep_region is subject
366 * to being single-stepped if a user program sets TF and executes SYSENTER.
367 * There is absolutely nothing that we can do to prevent this from happening
368 * (thanks Intel!). To keep our handling of this situation as simple as
369 * possible, we handle TF just like AC and NT, except that our #DB handler
370 * will ignore all of the single-step traps generated in this range.
371 */
372
373#ifdef CONFIG_XEN
374/*
375 * Xen doesn't set %esp to be precisely what the normal SYSENTER
376 * entry point expects, so fix it up before using the normal path.
377 */
378ENTRY(xen_sysenter_target)
379 addl $5*4, %esp /* remove xen-provided frame */
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500380 jmp .Lsysenter_past_esp
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800381#endif
382
Andy Lutomirskifda57b22016-03-09 19:00:35 -0800383/*
384 * 32-bit SYSENTER entry.
385 *
386 * 32-bit system calls through the vDSO's __kernel_vsyscall enter here
387 * if X86_FEATURE_SEP is available. This is the preferred system call
388 * entry on 32-bit systems.
389 *
390 * The SYSENTER instruction, in principle, should *only* occur in the
391 * vDSO. In practice, a small number of Android devices were shipped
392 * with a copy of Bionic that inlined a SYSENTER instruction. This
393 * never happened in any of Google's Bionic versions -- it only happened
394 * in a narrow range of Intel-provided versions.
395 *
396 * SYSENTER loads SS, ESP, CS, and EIP from previously programmed MSRs.
397 * IF and VM in RFLAGS are cleared (IOW: interrupts are off).
398 * SYSENTER does not save anything on the stack,
399 * and does not save old EIP (!!!), ESP, or EFLAGS.
400 *
401 * To avoid losing track of EFLAGS.VM (and thus potentially corrupting
402 * user and/or vm86 state), we explicitly disable the SYSENTER
403 * instruction in vm86 mode by reprogramming the MSRs.
404 *
405 * Arguments:
406 * eax system call number
407 * ebx arg1
408 * ecx arg2
409 * edx arg3
410 * esi arg4
411 * edi arg5
412 * ebp user stack
413 * 0(%ebp) arg6
414 */
Ingo Molnar4c8cd0c2015-06-08 08:33:56 +0200415ENTRY(entry_SYSENTER_32)
Ingo Molnara49976d2015-06-08 09:49:11 +0200416 movl TSS_sysenter_sp0(%esp), %esp
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500417.Lsysenter_past_esp:
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700418 pushl $__USER_DS /* pt_regs->ss */
Andy Lutomirski30bfa7b2015-12-16 23:18:48 -0800419 pushl %ebp /* pt_regs->sp (stashed in bp) */
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700420 pushfl /* pt_regs->flags (except IF = 0) */
421 orl $X86_EFLAGS_IF, (%esp) /* Fix IF */
422 pushl $__USER_CS /* pt_regs->cs */
423 pushl $0 /* pt_regs->ip = 0 (placeholder) */
424 pushl %eax /* pt_regs->orig_ax */
425 SAVE_ALL pt_regs_ax=$-ENOSYS /* save rest */
426
Ingo Molnar55f327f2006-07-03 00:24:43 -0700427 /*
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800428 * SYSENTER doesn't filter flags, so we need to clear NT, AC
429 * and TF ourselves. To save a few cycles, we can check whether
Andy Lutomirski67f590e2016-03-09 19:00:26 -0800430 * either was set instead of doing an unconditional popfq.
431 * This needs to happen before enabling interrupts so that
432 * we don't get preempted with NT set.
433 *
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800434 * If TF is set, we will single-step all the way to here -- do_debug
435 * will ignore all the traps. (Yes, this is slow, but so is
436 * single-stepping in general. This allows us to avoid having
437 * a more complicated code to handle the case where a user program
438 * forces us to single-step through the SYSENTER entry code.)
439 *
Andy Lutomirski67f590e2016-03-09 19:00:26 -0800440 * NB.: .Lsysenter_fix_flags is a label with the code under it moved
441 * out-of-line as an optimization: NT is unlikely to be set in the
442 * majority of the cases and instead of polluting the I$ unnecessarily,
443 * we're keeping that code behind a branch which will predict as
444 * not-taken and therefore its instructions won't be fetched.
445 */
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800446 testl $X86_EFLAGS_NT|X86_EFLAGS_AC|X86_EFLAGS_TF, PT_EFLAGS(%esp)
Andy Lutomirski67f590e2016-03-09 19:00:26 -0800447 jnz .Lsysenter_fix_flags
448.Lsysenter_flags_fixed:
449
450 /*
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700451 * User mode is traced as though IRQs are on, and SYSENTER
452 * turned them off.
Ingo Molnar55f327f2006-07-03 00:24:43 -0700453 */
Ingo Molnar55f327f2006-07-03 00:24:43 -0700454 TRACE_IRQS_OFF
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700455
456 movl %esp, %eax
457 call do_fast_syscall_32
Boris Ostrovsky91e2eea2015-11-19 16:55:45 -0500458 /* XEN PV guests always use IRET path */
459 ALTERNATIVE "testl %eax, %eax; jz .Lsyscall_32_done", \
460 "jmp .Lsyscall_32_done", X86_FEATURE_XENPV
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700461
462/* Opportunistic SYSEXIT */
463 TRACE_IRQS_ON /* User mode traces as IRQs on. */
464 movl PT_EIP(%esp), %edx /* pt_regs->ip */
465 movl PT_OLDESP(%esp), %ecx /* pt_regs->sp */
Andy Lutomirski3bd29512015-10-16 15:42:55 -07004661: mov PT_FS(%esp), %fs
467 PTGS_TO_GS
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700468 popl %ebx /* pt_regs->bx */
469 addl $2*4, %esp /* skip pt_regs->cx and pt_regs->dx */
470 popl %esi /* pt_regs->si */
471 popl %edi /* pt_regs->di */
472 popl %ebp /* pt_regs->bp */
473 popl %eax /* pt_regs->ax */
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700474
475 /*
Andy Lutomirskic2c9b522016-03-09 19:00:27 -0800476 * Restore all flags except IF. (We restore IF separately because
477 * STI gives a one-instruction window in which we won't be interrupted,
478 * whereas POPF does not.)
479 */
480 addl $PT_EFLAGS-PT_DS, %esp /* point esp at pt_regs->flags */
481 btr $X86_EFLAGS_IF_BIT, (%esp)
482 popfl
483
484 /*
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700485 * Return back to the vDSO, which will pop ecx and edx.
486 * Don't bother with DS and ES (they already contain __USER_DS).
487 */
Boris Ostrovsky88c15ec2015-11-19 16:55:46 -0500488 sti
489 sysexit
Roland McGrathaf0575b2008-06-24 04:16:52 -0700490
Ingo Molnara49976d2015-06-08 09:49:11 +0200491.pushsection .fixup, "ax"
4922: movl $0, PT_FS(%esp)
493 jmp 1b
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100494.popsection
Ingo Molnara49976d2015-06-08 09:49:11 +0200495 _ASM_EXTABLE(1b, 2b)
Tejun Heoccbeed32009-02-09 22:17:40 +0900496 PTGS_TO_GS_EX
Andy Lutomirski67f590e2016-03-09 19:00:26 -0800497
498.Lsysenter_fix_flags:
499 pushl $X86_EFLAGS_FIXED
500 popfl
501 jmp .Lsysenter_flags_fixed
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800502GLOBAL(__end_SYSENTER_singlestep_region)
Ingo Molnar4c8cd0c2015-06-08 08:33:56 +0200503ENDPROC(entry_SYSENTER_32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Andy Lutomirskifda57b22016-03-09 19:00:35 -0800505/*
506 * 32-bit legacy system call entry.
507 *
508 * 32-bit x86 Linux system calls traditionally used the INT $0x80
509 * instruction. INT $0x80 lands here.
510 *
511 * This entry point can be used by any 32-bit perform system calls.
512 * Instances of INT $0x80 can be found inline in various programs and
513 * libraries. It is also used by the vDSO's __kernel_vsyscall
514 * fallback for hardware that doesn't support a faster entry method.
515 * Restarted 32-bit system calls also fall back to INT $0x80
516 * regardless of what instruction was originally used to do the system
517 * call. (64-bit programs can use INT $0x80 as well, but they can
518 * only run on 64-bit kernels and therefore land in
519 * entry_INT80_compat.)
520 *
521 * This is considered a slow path. It is not used by most libc
522 * implementations on modern hardware except during process startup.
523 *
524 * Arguments:
525 * eax system call number
526 * ebx arg1
527 * ecx arg2
528 * edx arg3
529 * esi arg4
530 * edi arg5
531 * ebp arg6
532 */
Ingo Molnarb2502b42015-06-08 08:42:03 +0200533ENTRY(entry_INT80_32)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700534 ASM_CLAC
Andy Lutomirski150ac782015-10-05 17:48:14 -0700535 pushl %eax /* pt_regs->orig_ax */
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700536 SAVE_ALL pt_regs_ax=$-ENOSYS /* save rest */
Andy Lutomirski150ac782015-10-05 17:48:14 -0700537
538 /*
Andy Lutomirskia798f092016-03-09 13:24:32 -0800539 * User mode is traced as though IRQs are on, and the interrupt gate
540 * turned them off.
Andy Lutomirski150ac782015-10-05 17:48:14 -0700541 */
Andy Lutomirskia798f092016-03-09 13:24:32 -0800542 TRACE_IRQS_OFF
Andy Lutomirski150ac782015-10-05 17:48:14 -0700543
544 movl %esp, %eax
Andy Lutomirskia798f092016-03-09 13:24:32 -0800545 call do_int80_syscall_32
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700546.Lsyscall_32_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548restore_all:
Alexander van Heukelum2e04bc72009-06-18 00:35:57 +0200549 TRACE_IRQS_IRET
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500550.Lrestore_all_notrace:
H. Peter Anvin34273f42014-05-04 10:36:22 -0700551#ifdef CONFIG_X86_ESPFIX32
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500552 ALTERNATIVE "jmp .Lrestore_nocheck", "", X86_BUG_ESPFIX
Andy Lutomirski58a5aac2016-02-29 15:50:19 -0800553
Ingo Molnara49976d2015-06-08 09:49:11 +0200554 movl PT_EFLAGS(%esp), %eax # mix EFLAGS, SS and CS
555 /*
556 * Warning: PT_OLDSS(%esp) contains the wrong/random values if we
557 * are returning to the kernel.
558 * See comments in process.c:copy_thread() for details.
559 */
560 movb PT_OLDSS(%esp), %ah
561 movb PT_CS(%esp), %al
562 andl $(X86_EFLAGS_VM | (SEGMENT_TI_MASK << 8) | SEGMENT_RPL_MASK), %eax
563 cmpl $((SEGMENT_LDT << 8) | USER_RPL), %eax
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500564 je .Lldt_ss # returning to user-space with LDT SS
H. Peter Anvin34273f42014-05-04 10:36:22 -0700565#endif
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500566.Lrestore_nocheck:
Ingo Molnara49976d2015-06-08 09:49:11 +0200567 RESTORE_REGS 4 # skip orig_eax/error_code
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500568.Lirq_return:
Mathieu Desnoyers10bcc802018-01-29 15:20:18 -0500569 /*
570 * ARCH_HAS_MEMBARRIER_SYNC_CORE rely on IRET core serialization
571 * when returning from IPI handler and when returning from
572 * scheduler to user-space.
573 */
Ingo Molnar3701d8632008-02-09 23:24:08 +0100574 INTERRUPT_RETURN
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500575
Ingo Molnara49976d2015-06-08 09:49:11 +0200576.section .fixup, "ax"
577ENTRY(iret_exc )
578 pushl $0 # no error code
579 pushl $do_iret_error
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500580 jmp common_exception
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581.previous
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500582 _ASM_EXTABLE(.Lirq_return, iret_exc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
H. Peter Anvin34273f42014-05-04 10:36:22 -0700584#ifdef CONFIG_X86_ESPFIX32
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500585.Lldt_ss:
Alexander van Heukelumdc4c2a02009-06-18 00:35:58 +0200586/*
587 * Setup and switch to ESPFIX stack
588 *
589 * We're returning to userspace with a 16 bit stack. The CPU will not
590 * restore the high word of ESP for us on executing iret... This is an
591 * "official" bug of all the x86-compatible CPUs, which we can work
592 * around to make dosemu and wine happy. We do this by preloading the
593 * high word of ESP with the high word of the userspace ESP while
594 * compensating for the offset by changing to the ESPFIX segment with
595 * a base address that matches for the difference.
596 */
Brian Gerst72c511d2010-07-31 12:48:23 -0400597#define GDT_ESPFIX_SS PER_CPU_VAR(gdt_page) + (GDT_ENTRY_ESPFIX_SS * 8)
Ingo Molnara49976d2015-06-08 09:49:11 +0200598 mov %esp, %edx /* load kernel esp */
599 mov PT_OLDESP(%esp), %eax /* load userspace esp */
600 mov %dx, %ax /* eax: new kernel esp */
Denys Vlasenko9b47feb2015-06-08 22:35:33 +0200601 sub %eax, %edx /* offset (low word is 0) */
602 shr $16, %edx
Ingo Molnara49976d2015-06-08 09:49:11 +0200603 mov %dl, GDT_ESPFIX_SS + 4 /* bits 16..23 */
604 mov %dh, GDT_ESPFIX_SS + 7 /* bits 24..31 */
605 pushl $__ESPFIX_SS
606 pushl %eax /* new kernel esp */
607 /*
608 * Disable interrupts, but do not irqtrace this section: we
Alexander van Heukelum2e04bc72009-06-18 00:35:57 +0200609 * will soon execute iret and the tracer was already set to
Ingo Molnara49976d2015-06-08 09:49:11 +0200610 * the irqstate after the IRET:
611 */
Jan Beulichfdbd5182017-02-03 01:58:03 -0700612 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnara49976d2015-06-08 09:49:11 +0200613 lss (%esp), %esp /* switch to espfix segment */
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500614 jmp .Lrestore_nocheck
H. Peter Anvin34273f42014-05-04 10:36:22 -0700615#endif
Ingo Molnarb2502b42015-06-08 08:42:03 +0200616ENDPROC(entry_INT80_32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Tejun Heof0d96112009-02-09 22:17:40 +0900618.macro FIXUP_ESPFIX_STACK
Alexander van Heukelumdc4c2a02009-06-18 00:35:58 +0200619/*
620 * Switch back for ESPFIX stack to the normal zerobased stack
621 *
622 * We can't call C functions using the ESPFIX stack. This code reads
623 * the high word of the segment base from the GDT and swiches to the
624 * normal stack and adjusts ESP with the matching offset.
625 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700626#ifdef CONFIG_X86_ESPFIX32
Alexander van Heukelumdc4c2a02009-06-18 00:35:58 +0200627 /* fixup the stack */
Ingo Molnara49976d2015-06-08 09:49:11 +0200628 mov GDT_ESPFIX_SS + 4, %al /* bits 16..23 */
629 mov GDT_ESPFIX_SS + 7, %ah /* bits 24..31 */
Denys Vlasenko9b47feb2015-06-08 22:35:33 +0200630 shl $16, %eax
Ingo Molnara49976d2015-06-08 09:49:11 +0200631 addl %esp, %eax /* the adjusted stack pointer */
632 pushl $__KERNEL_DS
633 pushl %eax
634 lss (%esp), %esp /* switch to the normal stack segment */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700635#endif
Tejun Heof0d96112009-02-09 22:17:40 +0900636.endm
637.macro UNWIND_ESPFIX_STACK
H. Peter Anvin34273f42014-05-04 10:36:22 -0700638#ifdef CONFIG_X86_ESPFIX32
Ingo Molnara49976d2015-06-08 09:49:11 +0200639 movl %ss, %eax
Tejun Heof0d96112009-02-09 22:17:40 +0900640 /* see if on espfix stack */
Ingo Molnara49976d2015-06-08 09:49:11 +0200641 cmpw $__ESPFIX_SS, %ax
642 jne 27f
643 movl $__KERNEL_DS, %eax
644 movl %eax, %ds
645 movl %eax, %es
Tejun Heof0d96112009-02-09 22:17:40 +0900646 /* switch to normal stack */
647 FIXUP_ESPFIX_STACK
64827:
H. Peter Anvin34273f42014-05-04 10:36:22 -0700649#endif
Tejun Heof0d96112009-02-09 22:17:40 +0900650.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652/*
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200653 * Build the entry stubs with some assembler magic.
654 * We pack 1 stub into every 8-byte block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 */
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200656 .align 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657ENTRY(irq_entries_start)
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200658 vector=FIRST_EXTERNAL_VECTOR
659 .rept (FIRST_SYSTEM_VECTOR - FIRST_EXTERNAL_VECTOR)
Ingo Molnara49976d2015-06-08 09:49:11 +0200660 pushl $(~vector+0x80) /* Note: always in signed byte range */
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200661 vector=vector+1
662 jmp common_interrupt
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200663 .align 8
664 .endr
Jan Beulich47a55cd2007-02-13 13:26:24 +0100665END(irq_entries_start)
666
Ingo Molnar55f327f2006-07-03 00:24:43 -0700667/*
668 * the CPU automatically disables interrupts when executing an IRQ vector,
669 * so IRQ-flags tracing has to follow that:
670 */
H. Peter Anvinb7c62442008-11-11 13:24:58 -0800671 .p2align CONFIG_X86_L1_CACHE_SHIFT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672common_interrupt:
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700673 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200674 addl $-0x80, (%esp) /* Adjust vector into the [-256, -1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 SAVE_ALL
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500676 ENCODE_FRAME_POINTER
Ingo Molnar55f327f2006-07-03 00:24:43 -0700677 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +0200678 movl %esp, %eax
679 call do_IRQ
680 jmp ret_from_intr
Jan Beulich47a55cd2007-02-13 13:26:24 +0100681ENDPROC(common_interrupt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Tejun Heo02cf94c2009-01-21 17:26:06 +0900683#define BUILD_INTERRUPT3(name, nr, fn) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684ENTRY(name) \
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700685 ASM_CLAC; \
Ingo Molnara49976d2015-06-08 09:49:11 +0200686 pushl $~(nr); \
Jan Beulichfe7cacc2006-06-26 13:57:44 +0200687 SAVE_ALL; \
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500688 ENCODE_FRAME_POINTER; \
Ingo Molnar55f327f2006-07-03 00:24:43 -0700689 TRACE_IRQS_OFF \
Ingo Molnara49976d2015-06-08 09:49:11 +0200690 movl %esp, %eax; \
691 call fn; \
692 jmp ret_from_intr; \
Jan Beulich47a55cd2007-02-13 13:26:24 +0100693ENDPROC(name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Ingo Molnara49976d2015-06-08 09:49:11 +0200695#define BUILD_INTERRUPT(name, nr) \
696 BUILD_INTERRUPT3(name, nr, smp_##name); \
Tejun Heo02cf94c2009-01-21 17:26:06 +0900697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698/* The include is where all of the SMP etc. interrupts come from */
Ingo Molnar1164dd02009-01-28 19:34:09 +0100699#include <asm/entry_arch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701ENTRY(coprocessor_error)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700702 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200703 pushl $0
704 pushl $do_coprocessor_error
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500705 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100706END(coprocessor_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708ENTRY(simd_coprocessor_error)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700709 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200710 pushl $0
Brian Gerst40d2e762010-03-21 09:00:43 -0400711#ifdef CONFIG_X86_INVD_BUG
712 /* AMD 486 bug: invd from userspace calls exception 19 instead of #GP */
Ingo Molnara49976d2015-06-08 09:49:11 +0200713 ALTERNATIVE "pushl $do_general_protection", \
714 "pushl $do_simd_coprocessor_error", \
Borislav Petkov8e65f6e2015-01-18 12:35:55 +0100715 X86_FEATURE_XMM
Brian Gerst40d2e762010-03-21 09:00:43 -0400716#else
Ingo Molnara49976d2015-06-08 09:49:11 +0200717 pushl $do_simd_coprocessor_error
Brian Gerst40d2e762010-03-21 09:00:43 -0400718#endif
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500719 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100720END(simd_coprocessor_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722ENTRY(device_not_available)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700723 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200724 pushl $-1 # mark this as an int
725 pushl $do_device_not_available
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500726 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100727END(device_not_available)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Rusty Russelld3561b72006-12-07 02:14:07 +0100729#ifdef CONFIG_PARAVIRT
730ENTRY(native_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +0100731 iret
H. Peter Anvin6837a542012-04-20 12:19:50 -0700732 _ASM_EXTABLE(native_iret, iret_exc)
Jan Beulich47a55cd2007-02-13 13:26:24 +0100733END(native_iret)
Rusty Russelld3561b72006-12-07 02:14:07 +0100734#endif
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736ENTRY(overflow)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700737 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200738 pushl $0
739 pushl $do_overflow
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500740 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100741END(overflow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743ENTRY(bounds)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700744 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200745 pushl $0
746 pushl $do_bounds
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500747 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100748END(bounds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750ENTRY(invalid_op)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700751 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200752 pushl $0
753 pushl $do_invalid_op
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500754 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100755END(invalid_op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757ENTRY(coprocessor_segment_overrun)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700758 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200759 pushl $0
760 pushl $do_coprocessor_segment_overrun
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500761 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100762END(coprocessor_segment_overrun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764ENTRY(invalid_TSS)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700765 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200766 pushl $do_invalid_TSS
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500767 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100768END(invalid_TSS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770ENTRY(segment_not_present)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700771 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200772 pushl $do_segment_not_present
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500773 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100774END(segment_not_present)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776ENTRY(stack_segment)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700777 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200778 pushl $do_stack_segment
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500779 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100780END(stack_segment)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782ENTRY(alignment_check)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700783 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200784 pushl $do_alignment_check
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500785 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100786END(alignment_check)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Prasanna S.Pd28c4392006-09-26 10:52:34 +0200788ENTRY(divide_error)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700789 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200790 pushl $0 # no error code
791 pushl $do_divide_error
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500792 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100793END(divide_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795#ifdef CONFIG_X86_MCE
796ENTRY(machine_check)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700797 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200798 pushl $0
799 pushl machine_check_vector
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500800 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100801END(machine_check)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802#endif
803
804ENTRY(spurious_interrupt_bug)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700805 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200806 pushl $0
807 pushl $do_spurious_interrupt_bug
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500808 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100809END(spurious_interrupt_bug)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700811#ifdef CONFIG_XEN
812ENTRY(xen_hypervisor_callback)
Ingo Molnara49976d2015-06-08 09:49:11 +0200813 pushl $-1 /* orig_ax = -1 => not a system call */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700814 SAVE_ALL
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500815 ENCODE_FRAME_POINTER
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700816 TRACE_IRQS_OFF
Jeremy Fitzhardinge9ec2b802007-07-17 18:37:07 -0700817
Ingo Molnara49976d2015-06-08 09:49:11 +0200818 /*
819 * Check to see if we got the event in the critical
820 * region in xen_iret_direct, after we've reenabled
821 * events and checked for pending events. This simulates
822 * iret instruction's behaviour where it delivers a
823 * pending interrupt when enabling interrupts:
824 */
825 movl PT_EIP(%esp), %eax
826 cmpl $xen_iret_start_crit, %eax
827 jb 1f
828 cmpl $xen_iret_end_crit, %eax
829 jae 1f
Jeremy Fitzhardinge9ec2b802007-07-17 18:37:07 -0700830
Ingo Molnara49976d2015-06-08 09:49:11 +0200831 jmp xen_iret_crit_fixup
Jeremy Fitzhardinge9ec2b802007-07-17 18:37:07 -0700832
Jeremy Fitzhardingee2a81ba2008-03-17 16:37:17 -0700833ENTRY(xen_do_upcall)
Ingo Molnara49976d2015-06-08 09:49:11 +02008341: mov %esp, %eax
835 call xen_evtchn_do_upcall
David Vrabelfdfd8112015-02-19 15:23:17 +0000836#ifndef CONFIG_PREEMPT
Ingo Molnara49976d2015-06-08 09:49:11 +0200837 call xen_maybe_preempt_hcall
David Vrabelfdfd8112015-02-19 15:23:17 +0000838#endif
Ingo Molnara49976d2015-06-08 09:49:11 +0200839 jmp ret_from_intr
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700840ENDPROC(xen_hypervisor_callback)
841
Ingo Molnara49976d2015-06-08 09:49:11 +0200842/*
843 * Hypervisor uses this for application faults while it executes.
844 * We get here for two reasons:
845 * 1. Fault while reloading DS, ES, FS or GS
846 * 2. Fault while executing IRET
847 * Category 1 we fix up by reattempting the load, and zeroing the segment
848 * register if the load fails.
849 * Category 2 we fix up by jumping to do_iret_error. We cannot use the
850 * normal Linux return path in this case because if we use the IRET hypercall
851 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
852 * We distinguish between categories by maintaining a status value in EAX.
853 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700854ENTRY(xen_failsafe_callback)
Ingo Molnara49976d2015-06-08 09:49:11 +0200855 pushl %eax
856 movl $1, %eax
8571: mov 4(%esp), %ds
8582: mov 8(%esp), %es
8593: mov 12(%esp), %fs
8604: mov 16(%esp), %gs
David Vrabela349e23d12012-10-19 17:29:07 +0100861 /* EAX == 0 => Category 1 (Bad segment)
862 EAX != 0 => Category 2 (Bad IRET) */
Ingo Molnara49976d2015-06-08 09:49:11 +0200863 testl %eax, %eax
864 popl %eax
865 lea 16(%esp), %esp
866 jz 5f
867 jmp iret_exc
8685: pushl $-1 /* orig_ax = -1 => not a system call */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700869 SAVE_ALL
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500870 ENCODE_FRAME_POINTER
Ingo Molnara49976d2015-06-08 09:49:11 +0200871 jmp ret_from_exception
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700872
Ingo Molnara49976d2015-06-08 09:49:11 +0200873.section .fixup, "ax"
8746: xorl %eax, %eax
875 movl %eax, 4(%esp)
876 jmp 1b
8777: xorl %eax, %eax
878 movl %eax, 8(%esp)
879 jmp 2b
8808: xorl %eax, %eax
881 movl %eax, 12(%esp)
882 jmp 3b
8839: xorl %eax, %eax
884 movl %eax, 16(%esp)
885 jmp 4b
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700886.previous
Ingo Molnara49976d2015-06-08 09:49:11 +0200887 _ASM_EXTABLE(1b, 6b)
888 _ASM_EXTABLE(2b, 7b)
889 _ASM_EXTABLE(3b, 8b)
890 _ASM_EXTABLE(4b, 9b)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700891ENDPROC(xen_failsafe_callback)
892
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -0800893BUILD_INTERRUPT3(xen_hvm_callback_vector, HYPERVISOR_CALLBACK_VECTOR,
Thomas Gleixner4b9a8dc2017-08-28 08:47:31 +0200894 xen_evtchn_do_upcall)
Sheng Yang38e20b02010-05-14 12:40:51 +0100895
Ingo Molnara49976d2015-06-08 09:49:11 +0200896#endif /* CONFIG_XEN */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700897
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -0800898#if IS_ENABLED(CONFIG_HYPERV)
899
900BUILD_INTERRUPT3(hyperv_callback_vector, HYPERVISOR_CALLBACK_VECTOR,
Thomas Gleixner4b9a8dc2017-08-28 08:47:31 +0200901 hyperv_vector_handler)
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -0800902
Vitaly Kuznetsov93286262018-01-24 14:23:33 +0100903BUILD_INTERRUPT3(hyperv_reenlightenment_vector, HYPERV_REENLIGHTENMENT_VECTOR,
904 hyperv_reenlightenment_intr)
905
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -0800906#endif /* CONFIG_HYPERV */
907
Alexander van Heukelumd211af02008-11-24 15:38:45 +0100908ENTRY(page_fault)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700909 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200910 pushl $do_page_fault
Alexander van Heukelumd211af02008-11-24 15:38:45 +0100911 ALIGN
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500912 jmp common_exception
913END(page_fault)
914
915common_exception:
Tejun Heoccbeed32009-02-09 22:17:40 +0900916 /* the function address is in %gs's slot on the stack */
Ingo Molnara49976d2015-06-08 09:49:11 +0200917 pushl %fs
918 pushl %es
919 pushl %ds
920 pushl %eax
921 pushl %ebp
922 pushl %edi
923 pushl %esi
924 pushl %edx
925 pushl %ecx
926 pushl %ebx
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500927 ENCODE_FRAME_POINTER
Alexander van Heukelumd211af02008-11-24 15:38:45 +0100928 cld
Ingo Molnara49976d2015-06-08 09:49:11 +0200929 movl $(__KERNEL_PERCPU), %ecx
930 movl %ecx, %fs
Alexander van Heukelumd211af02008-11-24 15:38:45 +0100931 UNWIND_ESPFIX_STACK
Tejun Heoccbeed32009-02-09 22:17:40 +0900932 GS_TO_REG %ecx
Ingo Molnara49976d2015-06-08 09:49:11 +0200933 movl PT_GS(%esp), %edi # get the function address
934 movl PT_ORIG_EAX(%esp), %edx # get the error code
935 movl $-1, PT_ORIG_EAX(%esp) # no syscall to restart
Tejun Heoccbeed32009-02-09 22:17:40 +0900936 REG_TO_PTGS %ecx
937 SET_KERNEL_GS %ecx
Ingo Molnara49976d2015-06-08 09:49:11 +0200938 movl $(__USER_DS), %ecx
939 movl %ecx, %ds
940 movl %ecx, %es
Alexander van Heukelumd211af02008-11-24 15:38:45 +0100941 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +0200942 movl %esp, %eax # pt_regs pointer
David Woodhouse2641f082018-01-11 21:46:28 +0000943 CALL_NOSPEC %edi
Ingo Molnara49976d2015-06-08 09:49:11 +0200944 jmp ret_from_exception
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500945END(common_exception)
Alexander van Heukelumd211af02008-11-24 15:38:45 +0100946
Alexander van Heukelumd211af02008-11-24 15:38:45 +0100947ENTRY(debug)
Andy Lutomirski75366562016-03-09 19:00:32 -0800948 /*
949 * #DB can happen at the first instruction of
950 * entry_SYSENTER_32 or in Xen's SYSENTER prologue. If this
951 * happens, then we will be running on a very small stack. We
952 * need to detect this condition and switch to the thread
953 * stack before calling any C code at all.
954 *
955 * If you edit this code, keep in mind that NMIs can happen in here.
956 */
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700957 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200958 pushl $-1 # mark this as an int
Alexander van Heukelumd211af02008-11-24 15:38:45 +0100959 SAVE_ALL
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500960 ENCODE_FRAME_POINTER
Ingo Molnara49976d2015-06-08 09:49:11 +0200961 xorl %edx, %edx # error code 0
962 movl %esp, %eax # pt_regs pointer
Andy Lutomirski75366562016-03-09 19:00:32 -0800963
964 /* Are we currently on the SYSENTER stack? */
Andy Lutomirski72f5e082017-12-04 15:07:20 +0100965 movl PER_CPU_VAR(cpu_entry_area), %ecx
Dave Hansen4fe2d8b2017-12-04 17:25:07 -0800966 addl $CPU_ENTRY_AREA_entry_stack + SIZEOF_entry_stack, %ecx
967 subl %eax, %ecx /* ecx = (end of entry_stack) - esp */
968 cmpl $SIZEOF_entry_stack, %ecx
Andy Lutomirski75366562016-03-09 19:00:32 -0800969 jb .Ldebug_from_sysenter_stack
970
971 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +0200972 call do_debug
973 jmp ret_from_exception
Andy Lutomirski75366562016-03-09 19:00:32 -0800974
975.Ldebug_from_sysenter_stack:
976 /* We're on the SYSENTER stack. Switch off. */
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500977 movl %esp, %ebx
Andy Lutomirski75366562016-03-09 19:00:32 -0800978 movl PER_CPU_VAR(cpu_current_top_of_stack), %esp
979 TRACE_IRQS_OFF
980 call do_debug
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500981 movl %ebx, %esp
Andy Lutomirski75366562016-03-09 19:00:32 -0800982 jmp ret_from_exception
Alexander van Heukelumd211af02008-11-24 15:38:45 +0100983END(debug)
984
985/*
Andy Lutomirski75366562016-03-09 19:00:32 -0800986 * NMI is doubly nasty. It can happen on the first instruction of
987 * entry_SYSENTER_32 (just like #DB), but it can also interrupt the beginning
988 * of the #DB handler even if that #DB in turn hit before entry_SYSENTER_32
989 * switched stacks. We handle both conditions by simply checking whether we
990 * interrupted kernel code running on the SYSENTER stack.
Alexander van Heukelumd211af02008-11-24 15:38:45 +0100991 */
992ENTRY(nmi)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700993 ASM_CLAC
H. Peter Anvin34273f42014-05-04 10:36:22 -0700994#ifdef CONFIG_X86_ESPFIX32
Ingo Molnara49976d2015-06-08 09:49:11 +0200995 pushl %eax
996 movl %ss, %eax
997 cmpw $__ESPFIX_SS, %ax
998 popl %eax
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500999 je .Lnmi_espfix_stack
H. Peter Anvin34273f42014-05-04 10:36:22 -07001000#endif
Andy Lutomirski75366562016-03-09 19:00:32 -08001001
1002 pushl %eax # pt_regs->orig_ax
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001003 SAVE_ALL
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001004 ENCODE_FRAME_POINTER
Ingo Molnara49976d2015-06-08 09:49:11 +02001005 xorl %edx, %edx # zero error code
1006 movl %esp, %eax # pt_regs pointer
Andy Lutomirski75366562016-03-09 19:00:32 -08001007
1008 /* Are we currently on the SYSENTER stack? */
Andy Lutomirski72f5e082017-12-04 15:07:20 +01001009 movl PER_CPU_VAR(cpu_entry_area), %ecx
Dave Hansen4fe2d8b2017-12-04 17:25:07 -08001010 addl $CPU_ENTRY_AREA_entry_stack + SIZEOF_entry_stack, %ecx
1011 subl %eax, %ecx /* ecx = (end of entry_stack) - esp */
1012 cmpl $SIZEOF_entry_stack, %ecx
Andy Lutomirski75366562016-03-09 19:00:32 -08001013 jb .Lnmi_from_sysenter_stack
1014
1015 /* Not on SYSENTER stack. */
Ingo Molnara49976d2015-06-08 09:49:11 +02001016 call do_nmi
Josh Poimboeuf1b002552016-09-21 16:03:59 -05001017 jmp .Lrestore_all_notrace
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001018
Andy Lutomirski75366562016-03-09 19:00:32 -08001019.Lnmi_from_sysenter_stack:
1020 /*
1021 * We're on the SYSENTER stack. Switch off. No one (not even debug)
1022 * is using the thread stack right now, so it's safe for us to use it.
1023 */
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001024 movl %esp, %ebx
Andy Lutomirski75366562016-03-09 19:00:32 -08001025 movl PER_CPU_VAR(cpu_current_top_of_stack), %esp
1026 call do_nmi
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001027 movl %ebx, %esp
Josh Poimboeuf1b002552016-09-21 16:03:59 -05001028 jmp .Lrestore_all_notrace
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001029
H. Peter Anvin34273f42014-05-04 10:36:22 -07001030#ifdef CONFIG_X86_ESPFIX32
Josh Poimboeuf1b002552016-09-21 16:03:59 -05001031.Lnmi_espfix_stack:
Ingo Molnar131484c2015-05-28 12:21:47 +02001032 /*
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001033 * create the pointer to lss back
1034 */
Ingo Molnara49976d2015-06-08 09:49:11 +02001035 pushl %ss
1036 pushl %esp
1037 addl $4, (%esp)
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001038 /* copy the iret frame of 12 bytes */
1039 .rept 3
Ingo Molnara49976d2015-06-08 09:49:11 +02001040 pushl 16(%esp)
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001041 .endr
Ingo Molnara49976d2015-06-08 09:49:11 +02001042 pushl %eax
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001043 SAVE_ALL
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001044 ENCODE_FRAME_POINTER
Ingo Molnara49976d2015-06-08 09:49:11 +02001045 FIXUP_ESPFIX_STACK # %eax == %esp
1046 xorl %edx, %edx # zero error code
1047 call do_nmi
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001048 RESTORE_REGS
Ingo Molnara49976d2015-06-08 09:49:11 +02001049 lss 12+4(%esp), %esp # back to espfix stack
Josh Poimboeuf1b002552016-09-21 16:03:59 -05001050 jmp .Lirq_return
H. Peter Anvin34273f42014-05-04 10:36:22 -07001051#endif
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001052END(nmi)
1053
1054ENTRY(int3)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001055 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001056 pushl $-1 # mark this as an int
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001057 SAVE_ALL
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001058 ENCODE_FRAME_POINTER
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001059 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +02001060 xorl %edx, %edx # zero error code
1061 movl %esp, %eax # pt_regs pointer
1062 call do_int3
1063 jmp ret_from_exception
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001064END(int3)
1065
1066ENTRY(general_protection)
Ingo Molnara49976d2015-06-08 09:49:11 +02001067 pushl $do_general_protection
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001068 jmp common_exception
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001069END(general_protection)
1070
Gleb Natapov631bc482010-10-14 11:22:52 +02001071#ifdef CONFIG_KVM_GUEST
1072ENTRY(async_page_fault)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001073 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001074 pushl $do_async_page_fault
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001075 jmp common_exception
Sedat Dilek2ae9d292011-03-08 22:39:24 +01001076END(async_page_fault)
Gleb Natapov631bc482010-10-14 11:22:52 +02001077#endif
Andy Lutomirski2deb4be2016-07-14 13:22:55 -07001078
1079ENTRY(rewind_stack_do_exit)
1080 /* Prevent any naive code from trying to unwind to our caller. */
1081 xorl %ebp, %ebp
1082
1083 movl PER_CPU_VAR(cpu_current_top_of_stack), %esi
1084 leal -TOP_OF_KERNEL_STACK_PADDING-PTREGS_SIZE(%esi), %esp
1085
1086 call do_exit
10871: jmp 1b
1088END(rewind_stack_do_exit)