blob: 9d6eceba0461ff819695c1e34ed31d3ed3ac020d [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)
Joerg Roedel0d2eb732018-07-18 11:40:43 +020068# define resume_kernel restore_all_kernel
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
Joerg Roedel45d7b252018-07-18 11:40:44 +0200157.macro SAVE_ALL pt_regs_ax=%eax switch_stacks=0
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
Joerg Roedel45d7b252018-07-18 11:40:44 +0200176
177 /* Switch to kernel stack if necessary */
178.if \switch_stacks > 0
179 SWITCH_TO_KERNEL_STACK
180.endif
181
Tejun Heof0d96112009-02-09 22:17:40 +0900182.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Joerg Roedel8b376fa2018-07-18 11:40:46 +0200184.macro SAVE_ALL_NMI
185 SAVE_ALL
186.endm
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500187/*
188 * This is a sneaky trick to help the unwinder find pt_regs on the stack. The
189 * frame pointer is replaced with an encoded pointer to pt_regs. The encoding
Josh Poimboeuf5c99b692017-10-09 20:20:03 -0500190 * is just clearing the MSB, which makes it an invalid stack address and is also
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500191 * a signal to the unwinder that it's a pt_regs pointer in disguise.
192 *
193 * NOTE: This macro must be used *after* SAVE_ALL because it corrupts the
194 * original rbp.
195 */
196.macro ENCODE_FRAME_POINTER
197#ifdef CONFIG_FRAME_POINTER
198 mov %esp, %ebp
Josh Poimboeuf5c99b692017-10-09 20:20:03 -0500199 andl $0x7fffffff, %ebp
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500200#endif
201.endm
202
Tejun Heof0d96112009-02-09 22:17:40 +0900203.macro RESTORE_INT_REGS
Ingo Molnara49976d2015-06-08 09:49:11 +0200204 popl %ebx
205 popl %ecx
206 popl %edx
207 popl %esi
208 popl %edi
209 popl %ebp
210 popl %eax
Tejun Heof0d96112009-02-09 22:17:40 +0900211.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Tejun Heoccbeed32009-02-09 22:17:40 +0900213.macro RESTORE_REGS pop=0
Tejun Heof0d96112009-02-09 22:17:40 +0900214 RESTORE_INT_REGS
Ingo Molnara49976d2015-06-08 09:49:11 +02002151: popl %ds
2162: popl %es
2173: popl %fs
Tejun Heoccbeed32009-02-09 22:17:40 +0900218 POP_GS \pop
Tejun Heof0d96112009-02-09 22:17:40 +0900219.pushsection .fixup, "ax"
Ingo Molnara49976d2015-06-08 09:49:11 +02002204: movl $0, (%esp)
221 jmp 1b
2225: movl $0, (%esp)
223 jmp 2b
2246: movl $0, (%esp)
225 jmp 3b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226.popsection
Ingo Molnara49976d2015-06-08 09:49:11 +0200227 _ASM_EXTABLE(1b, 4b)
228 _ASM_EXTABLE(2b, 5b)
229 _ASM_EXTABLE(3b, 6b)
Tejun Heoccbeed32009-02-09 22:17:40 +0900230 POP_GS_EX
Tejun Heof0d96112009-02-09 22:17:40 +0900231.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Joerg Roedel8b376fa2018-07-18 11:40:46 +0200233.macro RESTORE_ALL_NMI pop=0
234 RESTORE_REGS pop=\pop
235.endm
236
Joerg Roedel46eabca2018-07-18 11:40:41 +0200237.macro CHECK_AND_APPLY_ESPFIX
238#ifdef CONFIG_X86_ESPFIX32
239#define GDT_ESPFIX_SS PER_CPU_VAR(gdt_page) + (GDT_ENTRY_ESPFIX_SS * 8)
240
241 ALTERNATIVE "jmp .Lend_\@", "", X86_BUG_ESPFIX
242
243 movl PT_EFLAGS(%esp), %eax # mix EFLAGS, SS and CS
244 /*
245 * Warning: PT_OLDSS(%esp) contains the wrong/random values if we
246 * are returning to the kernel.
247 * See comments in process.c:copy_thread() for details.
248 */
249 movb PT_OLDSS(%esp), %ah
250 movb PT_CS(%esp), %al
251 andl $(X86_EFLAGS_VM | (SEGMENT_TI_MASK << 8) | SEGMENT_RPL_MASK), %eax
252 cmpl $((SEGMENT_LDT << 8) | USER_RPL), %eax
253 jne .Lend_\@ # returning to user-space with LDT SS
254
255 /*
256 * Setup and switch to ESPFIX stack
257 *
258 * We're returning to userspace with a 16 bit stack. The CPU will not
259 * restore the high word of ESP for us on executing iret... This is an
260 * "official" bug of all the x86-compatible CPUs, which we can work
261 * around to make dosemu and wine happy. We do this by preloading the
262 * high word of ESP with the high word of the userspace ESP while
263 * compensating for the offset by changing to the ESPFIX segment with
264 * a base address that matches for the difference.
265 */
266 mov %esp, %edx /* load kernel esp */
267 mov PT_OLDESP(%esp), %eax /* load userspace esp */
268 mov %dx, %ax /* eax: new kernel esp */
269 sub %eax, %edx /* offset (low word is 0) */
270 shr $16, %edx
271 mov %dl, GDT_ESPFIX_SS + 4 /* bits 16..23 */
272 mov %dh, GDT_ESPFIX_SS + 7 /* bits 24..31 */
273 pushl $__ESPFIX_SS
274 pushl %eax /* new kernel esp */
275 /*
276 * Disable interrupts, but do not irqtrace this section: we
277 * will soon execute iret and the tracer was already set to
278 * the irqstate after the IRET:
279 */
280 DISABLE_INTERRUPTS(CLBR_ANY)
281 lss (%esp), %esp /* switch to espfix segment */
282.Lend_\@:
283#endif /* CONFIG_X86_ESPFIX32 */
284.endm
Joerg Roedel45d7b252018-07-18 11:40:44 +0200285
286
287/*
288 * Called with pt_regs fully populated and kernel segments loaded,
289 * so we can access PER_CPU and use the integer registers.
290 *
291 * We need to be very careful here with the %esp switch, because an NMI
292 * can happen everywhere. If the NMI handler finds itself on the
293 * entry-stack, it will overwrite the task-stack and everything we
294 * copied there. So allocate the stack-frame on the task-stack and
295 * switch to it before we do any copying.
296 */
Joerg Roedelb92a1652018-07-18 11:40:47 +0200297
298#define CS_FROM_ENTRY_STACK (1 << 31)
299
Joerg Roedel45d7b252018-07-18 11:40:44 +0200300.macro SWITCH_TO_KERNEL_STACK
301
302 ALTERNATIVE "", "jmp .Lend_\@", X86_FEATURE_XENPV
303
304 /* Are we on the entry stack? Bail out if not! */
305 movl PER_CPU_VAR(cpu_entry_area), %ecx
306 addl $CPU_ENTRY_AREA_entry_stack + SIZEOF_entry_stack, %ecx
307 subl %esp, %ecx /* ecx = (end of entry_stack) - esp */
308 cmpl $SIZEOF_entry_stack, %ecx
309 jae .Lend_\@
310
311 /* Load stack pointer into %esi and %edi */
312 movl %esp, %esi
313 movl %esi, %edi
314
315 /* Move %edi to the top of the entry stack */
316 andl $(MASK_entry_stack), %edi
317 addl $(SIZEOF_entry_stack), %edi
318
319 /* Load top of task-stack into %edi */
320 movl TSS_entry2task_stack(%edi), %edi
321
Joerg Roedelb92a1652018-07-18 11:40:47 +0200322 /*
323 * Clear unused upper bits of the dword containing the word-sized CS
324 * slot in pt_regs in case hardware didn't clear it for us.
325 */
326 andl $(0x0000ffff), PT_CS(%esp)
327
328 /* Special case - entry from kernel mode via entry stack */
329 testl $SEGMENT_RPL_MASK, PT_CS(%esp)
330 jz .Lentry_from_kernel_\@
331
Joerg Roedel45d7b252018-07-18 11:40:44 +0200332 /* Bytes to copy */
333 movl $PTREGS_SIZE, %ecx
334
335#ifdef CONFIG_VM86
336 testl $X86_EFLAGS_VM, PT_EFLAGS(%esi)
337 jz .Lcopy_pt_regs_\@
338
339 /*
340 * Stack-frame contains 4 additional segment registers when
341 * coming from VM86 mode
342 */
343 addl $(4 * 4), %ecx
344
Joerg Roedel45d7b252018-07-18 11:40:44 +0200345#endif
Joerg Roedelb92a1652018-07-18 11:40:47 +0200346.Lcopy_pt_regs_\@:
Joerg Roedel45d7b252018-07-18 11:40:44 +0200347
348 /* Allocate frame on task-stack */
349 subl %ecx, %edi
350
351 /* Switch to task-stack */
352 movl %edi, %esp
353
354 /*
355 * We are now on the task-stack and can safely copy over the
356 * stack-frame
357 */
358 shrl $2, %ecx
359 cld
360 rep movsl
361
Joerg Roedelb92a1652018-07-18 11:40:47 +0200362 jmp .Lend_\@
363
364.Lentry_from_kernel_\@:
365
366 /*
367 * This handles the case when we enter the kernel from
368 * kernel-mode and %esp points to the entry-stack. When this
369 * happens we need to switch to the task-stack to run C code,
370 * but switch back to the entry-stack again when we approach
371 * iret and return to the interrupted code-path. This usually
372 * happens when we hit an exception while restoring user-space
373 * segment registers on the way back to user-space.
374 *
375 * When we switch to the task-stack here, we can't trust the
376 * contents of the entry-stack anymore, as the exception handler
377 * might be scheduled out or moved to another CPU. Therefore we
378 * copy the complete entry-stack to the task-stack and set a
379 * marker in the iret-frame (bit 31 of the CS dword) to detect
380 * what we've done on the iret path.
381 *
382 * On the iret path we copy everything back and switch to the
383 * entry-stack, so that the interrupted kernel code-path
384 * continues on the same stack it was interrupted with.
385 *
386 * Be aware that an NMI can happen anytime in this code.
387 *
388 * %esi: Entry-Stack pointer (same as %esp)
389 * %edi: Top of the task stack
390 */
391
392 /* Calculate number of bytes on the entry stack in %ecx */
393 movl %esi, %ecx
394
395 /* %ecx to the top of entry-stack */
396 andl $(MASK_entry_stack), %ecx
397 addl $(SIZEOF_entry_stack), %ecx
398
399 /* Number of bytes on the entry stack to %ecx */
400 sub %esi, %ecx
401
402 /* Mark stackframe as coming from entry stack */
403 orl $CS_FROM_ENTRY_STACK, PT_CS(%esp)
404
405 /*
406 * %esi and %edi are unchanged, %ecx contains the number of
407 * bytes to copy. The code at .Lcopy_pt_regs_\@ will allocate
408 * the stack-frame on task-stack and copy everything over
409 */
410 jmp .Lcopy_pt_regs_\@
411
Joerg Roedel45d7b252018-07-18 11:40:44 +0200412.Lend_\@:
413.endm
414
Brian Gerst01003012016-08-13 12:38:19 -0400415/*
Joerg Roedele5862d02018-07-18 11:40:45 +0200416 * Switch back from the kernel stack to the entry stack.
417 *
418 * The %esp register must point to pt_regs on the task stack. It will
419 * first calculate the size of the stack-frame to copy, depending on
420 * whether we return to VM86 mode or not. With that it uses 'rep movsl'
421 * to copy the contents of the stack over to the entry stack.
422 *
423 * We must be very careful here, as we can't trust the contents of the
424 * task-stack once we switched to the entry-stack. When an NMI happens
425 * while on the entry-stack, the NMI handler will switch back to the top
426 * of the task stack, overwriting our stack-frame we are about to copy.
427 * Therefore we switch the stack only after everything is copied over.
428 */
429.macro SWITCH_TO_ENTRY_STACK
430
431 ALTERNATIVE "", "jmp .Lend_\@", X86_FEATURE_XENPV
432
433 /* Bytes to copy */
434 movl $PTREGS_SIZE, %ecx
435
436#ifdef CONFIG_VM86
437 testl $(X86_EFLAGS_VM), PT_EFLAGS(%esp)
438 jz .Lcopy_pt_regs_\@
439
440 /* Additional 4 registers to copy when returning to VM86 mode */
441 addl $(4 * 4), %ecx
442
443.Lcopy_pt_regs_\@:
444#endif
445
446 /* Initialize source and destination for movsl */
447 movl PER_CPU_VAR(cpu_tss_rw + TSS_sp0), %edi
448 subl %ecx, %edi
449 movl %esp, %esi
450
451 /* Save future stack pointer in %ebx */
452 movl %edi, %ebx
453
454 /* Copy over the stack-frame */
455 shrl $2, %ecx
456 cld
457 rep movsl
458
459 /*
460 * Switch to entry-stack - needs to happen after everything is
461 * copied because the NMI handler will overwrite the task-stack
462 * when on entry-stack
463 */
464 movl %ebx, %esp
465
466.Lend_\@:
467.endm
468
469/*
Joerg Roedelb92a1652018-07-18 11:40:47 +0200470 * This macro handles the case when we return to kernel-mode on the iret
471 * path and have to switch back to the entry stack.
472 *
473 * See the comments below the .Lentry_from_kernel_\@ label in the
474 * SWITCH_TO_KERNEL_STACK macro for more details.
475 */
476.macro PARANOID_EXIT_TO_KERNEL_MODE
477
478 /*
479 * Test if we entered the kernel with the entry-stack. Most
480 * likely we did not, because this code only runs on the
481 * return-to-kernel path.
482 */
483 testl $CS_FROM_ENTRY_STACK, PT_CS(%esp)
484 jz .Lend_\@
485
486 /* Unlikely slow-path */
487
488 /* Clear marker from stack-frame */
489 andl $(~CS_FROM_ENTRY_STACK), PT_CS(%esp)
490
491 /* Copy the remaining task-stack contents to entry-stack */
492 movl %esp, %esi
493 movl PER_CPU_VAR(cpu_tss_rw + TSS_sp0), %edi
494
495 /* Bytes on the task-stack to ecx */
496 movl PER_CPU_VAR(cpu_tss_rw + TSS_sp1), %ecx
497 subl %esi, %ecx
498
499 /* Allocate stack-frame on entry-stack */
500 subl %ecx, %edi
501
502 /*
503 * Save future stack-pointer, we must not switch until the
504 * copy is done, otherwise the NMI handler could destroy the
505 * contents of the task-stack we are about to copy.
506 */
507 movl %edi, %ebx
508
509 /* Do the copy */
510 shrl $2, %ecx
511 cld
512 rep movsl
513
514 /* Safe to switch to entry-stack now */
515 movl %ebx, %esp
516
517.Lend_\@:
518.endm
519/*
Brian Gerst01003012016-08-13 12:38:19 -0400520 * %eax: prev task
521 * %edx: next task
522 */
523ENTRY(__switch_to_asm)
524 /*
525 * Save callee-saved registers
526 * This must match the order in struct inactive_task_frame
527 */
528 pushl %ebp
529 pushl %ebx
530 pushl %edi
531 pushl %esi
532
533 /* switch stack */
534 movl %esp, TASK_threadsp(%eax)
535 movl TASK_threadsp(%edx), %esp
536
Linus Torvalds050e9ba2018-06-14 12:21:18 +0900537#ifdef CONFIG_STACKPROTECTOR
Brian Gerst01003012016-08-13 12:38:19 -0400538 movl TASK_stack_canary(%edx), %ebx
539 movl %ebx, PER_CPU_VAR(stack_canary)+stack_canary_offset
540#endif
541
David Woodhousec995efd2018-01-12 17:49:25 +0000542#ifdef CONFIG_RETPOLINE
543 /*
544 * When switching from a shallower to a deeper call stack
545 * the RSB may either underflow or use entries populated
546 * with userspace addresses. On CPUs where those concerns
547 * exist, overwrite the RSB with entries which capture
548 * speculative execution to prevent attack.
549 */
David Woodhoused1c99102018-02-19 10:50:56 +0000550 FILL_RETURN_BUFFER %ebx, RSB_CLEAR_LOOPS, X86_FEATURE_RSB_CTXSW
David Woodhousec995efd2018-01-12 17:49:25 +0000551#endif
552
Brian Gerst01003012016-08-13 12:38:19 -0400553 /* restore callee-saved registers */
554 popl %esi
555 popl %edi
556 popl %ebx
557 popl %ebp
558
559 jmp __switch_to
560END(__switch_to_asm)
561
562/*
Josh Poimboeufebd57492017-05-23 10:37:29 -0500563 * The unwinder expects the last frame on the stack to always be at the same
564 * offset from the end of the page, which allows it to validate the stack.
565 * Calling schedule_tail() directly would break that convention because its an
566 * asmlinkage function so its argument has to be pushed on the stack. This
567 * wrapper creates a proper "end of stack" frame header before the call.
568 */
569ENTRY(schedule_tail_wrapper)
570 FRAME_BEGIN
571
572 pushl %eax
573 call schedule_tail
574 popl %eax
575
576 FRAME_END
577 ret
578ENDPROC(schedule_tail_wrapper)
579/*
Brian Gerst01003012016-08-13 12:38:19 -0400580 * A newly forked process directly context switches into this address.
581 *
582 * eax: prev task we switched from
Brian Gerst616d2482016-08-13 12:38:20 -0400583 * ebx: kernel thread func (NULL for user thread)
584 * edi: kernel thread arg
Brian Gerst01003012016-08-13 12:38:19 -0400585 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586ENTRY(ret_from_fork)
Josh Poimboeufebd57492017-05-23 10:37:29 -0500587 call schedule_tail_wrapper
Andy Lutomirski39e87012015-10-05 17:48:13 -0700588
Brian Gerst616d2482016-08-13 12:38:20 -0400589 testl %ebx, %ebx
590 jnz 1f /* kernel threads are uncommon */
591
5922:
Andy Lutomirski39e87012015-10-05 17:48:13 -0700593 /* When we fork, we trace the syscall return in the child, too. */
Josh Poimboeufebd57492017-05-23 10:37:29 -0500594 movl %esp, %eax
Andy Lutomirski39e87012015-10-05 17:48:13 -0700595 call syscall_return_slowpath
596 jmp restore_all
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Brian Gerst616d2482016-08-13 12:38:20 -0400598 /* kernel thread */
5991: movl %edi, %eax
David Woodhouse2641f082018-01-11 21:46:28 +0000600 CALL_NOSPEC %ebx
Andy Lutomirski39e87012015-10-05 17:48:13 -0700601 /*
Brian Gerst616d2482016-08-13 12:38:20 -0400602 * A kernel thread is allowed to return here after successfully
603 * calling do_execve(). Exit to userspace to complete the execve()
604 * syscall.
Andy Lutomirski39e87012015-10-05 17:48:13 -0700605 */
Brian Gerst616d2482016-08-13 12:38:20 -0400606 movl $0, PT_EAX(%esp)
607 jmp 2b
608END(ret_from_fork)
Al Viro6783eaa22012-08-02 23:05:11 +0400609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610/*
611 * Return to user mode is not as complex as all this looks,
612 * but we want the default path for a system call return to
613 * go as quickly as possible which is why some of this is
614 * less clear than it otherwise should be.
615 */
616
617 # userspace resumption stub bypassing syscall exit tracing
618 ALIGN
619ret_from_exception:
Rusty Russell139ec7c2006-12-07 02:14:08 +0100620 preempt_stop(CLBR_ANY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621ret_from_intr:
Dmitry Adamushko29a2e282012-03-22 21:39:25 +0100622#ifdef CONFIG_VM86
Ingo Molnara49976d2015-06-08 09:49:11 +0200623 movl PT_EFLAGS(%esp), %eax # mix EFLAGS and CS
624 movb PT_CS(%esp), %al
625 andl $(X86_EFLAGS_VM | SEGMENT_RPL_MASK), %eax
Dmitry Adamushko29a2e282012-03-22 21:39:25 +0100626#else
627 /*
Al Viro6783eaa22012-08-02 23:05:11 +0400628 * We can be coming here from child spawned by kernel_thread().
Dmitry Adamushko29a2e282012-03-22 21:39:25 +0100629 */
Ingo Molnara49976d2015-06-08 09:49:11 +0200630 movl PT_CS(%esp), %eax
631 andl $SEGMENT_RPL_MASK, %eax
Dmitry Adamushko29a2e282012-03-22 21:39:25 +0100632#endif
Ingo Molnara49976d2015-06-08 09:49:11 +0200633 cmpl $USER_RPL, %eax
634 jb resume_kernel # not returning to v8086 or userspace
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636ENTRY(resume_userspace)
Andy Lutomirski5d73fc72015-07-31 14:41:09 -0700637 DISABLE_INTERRUPTS(CLBR_ANY)
Peter Zijlstrae32e58a2008-06-06 10:14:08 +0200638 TRACE_IRQS_OFF
Andy Lutomirski5d73fc72015-07-31 14:41:09 -0700639 movl %esp, %eax
640 call prepare_exit_to_usermode
Ingo Molnara49976d2015-06-08 09:49:11 +0200641 jmp restore_all
Jan Beulich47a55cd2007-02-13 13:26:24 +0100642END(ret_from_exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644#ifdef CONFIG_PREEMPT
645ENTRY(resume_kernel)
Rusty Russell139ec7c2006-12-07 02:14:08 +0100646 DISABLE_INTERRUPTS(CLBR_ANY)
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500647.Lneed_resched:
Ingo Molnara49976d2015-06-08 09:49:11 +0200648 cmpl $0, PER_CPU_VAR(__preempt_count)
Joerg Roedel0d2eb732018-07-18 11:40:43 +0200649 jnz restore_all_kernel
Ingo Molnara49976d2015-06-08 09:49:11 +0200650 testl $X86_EFLAGS_IF, PT_EFLAGS(%esp) # interrupts off (exception path) ?
Joerg Roedel0d2eb732018-07-18 11:40:43 +0200651 jz restore_all_kernel
Ingo Molnara49976d2015-06-08 09:49:11 +0200652 call preempt_schedule_irq
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500653 jmp .Lneed_resched
Jan Beulich47a55cd2007-02-13 13:26:24 +0100654END(resume_kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655#endif
656
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800657GLOBAL(__begin_SYSENTER_singlestep_region)
658/*
659 * All code from here through __end_SYSENTER_singlestep_region is subject
660 * to being single-stepped if a user program sets TF and executes SYSENTER.
661 * There is absolutely nothing that we can do to prevent this from happening
662 * (thanks Intel!). To keep our handling of this situation as simple as
663 * possible, we handle TF just like AC and NT, except that our #DB handler
664 * will ignore all of the single-step traps generated in this range.
665 */
666
667#ifdef CONFIG_XEN
668/*
669 * Xen doesn't set %esp to be precisely what the normal SYSENTER
670 * entry point expects, so fix it up before using the normal path.
671 */
672ENTRY(xen_sysenter_target)
673 addl $5*4, %esp /* remove xen-provided frame */
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500674 jmp .Lsysenter_past_esp
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800675#endif
676
Andy Lutomirskifda57b22016-03-09 19:00:35 -0800677/*
678 * 32-bit SYSENTER entry.
679 *
680 * 32-bit system calls through the vDSO's __kernel_vsyscall enter here
681 * if X86_FEATURE_SEP is available. This is the preferred system call
682 * entry on 32-bit systems.
683 *
684 * The SYSENTER instruction, in principle, should *only* occur in the
685 * vDSO. In practice, a small number of Android devices were shipped
686 * with a copy of Bionic that inlined a SYSENTER instruction. This
687 * never happened in any of Google's Bionic versions -- it only happened
688 * in a narrow range of Intel-provided versions.
689 *
690 * SYSENTER loads SS, ESP, CS, and EIP from previously programmed MSRs.
691 * IF and VM in RFLAGS are cleared (IOW: interrupts are off).
692 * SYSENTER does not save anything on the stack,
693 * and does not save old EIP (!!!), ESP, or EFLAGS.
694 *
695 * To avoid losing track of EFLAGS.VM (and thus potentially corrupting
696 * user and/or vm86 state), we explicitly disable the SYSENTER
697 * instruction in vm86 mode by reprogramming the MSRs.
698 *
699 * Arguments:
700 * eax system call number
701 * ebx arg1
702 * ecx arg2
703 * edx arg3
704 * esi arg4
705 * edi arg5
706 * ebp user stack
707 * 0(%ebp) arg6
708 */
Ingo Molnar4c8cd0c2015-06-08 08:33:56 +0200709ENTRY(entry_SYSENTER_32)
Joerg Roedelae2e5652018-07-18 11:40:39 +0200710 movl TSS_entry2task_stack(%esp), %esp
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500711.Lsysenter_past_esp:
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700712 pushl $__USER_DS /* pt_regs->ss */
Andy Lutomirski30bfa7b2015-12-16 23:18:48 -0800713 pushl %ebp /* pt_regs->sp (stashed in bp) */
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700714 pushfl /* pt_regs->flags (except IF = 0) */
715 orl $X86_EFLAGS_IF, (%esp) /* Fix IF */
716 pushl $__USER_CS /* pt_regs->cs */
717 pushl $0 /* pt_regs->ip = 0 (placeholder) */
718 pushl %eax /* pt_regs->orig_ax */
Joerg Roedel45d7b252018-07-18 11:40:44 +0200719 SAVE_ALL pt_regs_ax=$-ENOSYS /* save rest, stack already switched */
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700720
Ingo Molnar55f327f2006-07-03 00:24:43 -0700721 /*
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800722 * SYSENTER doesn't filter flags, so we need to clear NT, AC
723 * and TF ourselves. To save a few cycles, we can check whether
Andy Lutomirski67f590e2016-03-09 19:00:26 -0800724 * either was set instead of doing an unconditional popfq.
725 * This needs to happen before enabling interrupts so that
726 * we don't get preempted with NT set.
727 *
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800728 * If TF is set, we will single-step all the way to here -- do_debug
729 * will ignore all the traps. (Yes, this is slow, but so is
730 * single-stepping in general. This allows us to avoid having
731 * a more complicated code to handle the case where a user program
732 * forces us to single-step through the SYSENTER entry code.)
733 *
Andy Lutomirski67f590e2016-03-09 19:00:26 -0800734 * NB.: .Lsysenter_fix_flags is a label with the code under it moved
735 * out-of-line as an optimization: NT is unlikely to be set in the
736 * majority of the cases and instead of polluting the I$ unnecessarily,
737 * we're keeping that code behind a branch which will predict as
738 * not-taken and therefore its instructions won't be fetched.
739 */
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800740 testl $X86_EFLAGS_NT|X86_EFLAGS_AC|X86_EFLAGS_TF, PT_EFLAGS(%esp)
Andy Lutomirski67f590e2016-03-09 19:00:26 -0800741 jnz .Lsysenter_fix_flags
742.Lsysenter_flags_fixed:
743
744 /*
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700745 * User mode is traced as though IRQs are on, and SYSENTER
746 * turned them off.
Ingo Molnar55f327f2006-07-03 00:24:43 -0700747 */
Ingo Molnar55f327f2006-07-03 00:24:43 -0700748 TRACE_IRQS_OFF
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700749
750 movl %esp, %eax
751 call do_fast_syscall_32
Boris Ostrovsky91e2eea2015-11-19 16:55:45 -0500752 /* XEN PV guests always use IRET path */
753 ALTERNATIVE "testl %eax, %eax; jz .Lsyscall_32_done", \
754 "jmp .Lsyscall_32_done", X86_FEATURE_XENPV
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700755
756/* Opportunistic SYSEXIT */
757 TRACE_IRQS_ON /* User mode traces as IRQs on. */
Joerg Roedele5862d02018-07-18 11:40:45 +0200758
759 /*
760 * Setup entry stack - we keep the pointer in %eax and do the
761 * switch after almost all user-state is restored.
762 */
763
764 /* Load entry stack pointer and allocate frame for eflags/eax */
765 movl PER_CPU_VAR(cpu_tss_rw + TSS_sp0), %eax
766 subl $(2*4), %eax
767
768 /* Copy eflags and eax to entry stack */
769 movl PT_EFLAGS(%esp), %edi
770 movl PT_EAX(%esp), %esi
771 movl %edi, (%eax)
772 movl %esi, 4(%eax)
773
774 /* Restore user registers and segments */
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700775 movl PT_EIP(%esp), %edx /* pt_regs->ip */
776 movl PT_OLDESP(%esp), %ecx /* pt_regs->sp */
Andy Lutomirski3bd29512015-10-16 15:42:55 -07007771: mov PT_FS(%esp), %fs
778 PTGS_TO_GS
Joerg Roedele5862d02018-07-18 11:40:45 +0200779
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700780 popl %ebx /* pt_regs->bx */
781 addl $2*4, %esp /* skip pt_regs->cx and pt_regs->dx */
782 popl %esi /* pt_regs->si */
783 popl %edi /* pt_regs->di */
784 popl %ebp /* pt_regs->bp */
Joerg Roedele5862d02018-07-18 11:40:45 +0200785
786 /* Switch to entry stack */
787 movl %eax, %esp
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700788
789 /*
Andy Lutomirskic2c9b522016-03-09 19:00:27 -0800790 * Restore all flags except IF. (We restore IF separately because
791 * STI gives a one-instruction window in which we won't be interrupted,
792 * whereas POPF does not.)
793 */
Jan Beulich236f0cd2018-06-25 04:21:59 -0600794 btrl $X86_EFLAGS_IF_BIT, (%esp)
Andy Lutomirskic2c9b522016-03-09 19:00:27 -0800795 popfl
Joerg Roedele5862d02018-07-18 11:40:45 +0200796 popl %eax
Andy Lutomirskic2c9b522016-03-09 19:00:27 -0800797
798 /*
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700799 * Return back to the vDSO, which will pop ecx and edx.
800 * Don't bother with DS and ES (they already contain __USER_DS).
801 */
Boris Ostrovsky88c15ec2015-11-19 16:55:46 -0500802 sti
803 sysexit
Roland McGrathaf0575b2008-06-24 04:16:52 -0700804
Ingo Molnara49976d2015-06-08 09:49:11 +0200805.pushsection .fixup, "ax"
8062: movl $0, PT_FS(%esp)
807 jmp 1b
Jeremy Fitzhardingef95d47c2006-12-07 02:14:02 +0100808.popsection
Ingo Molnara49976d2015-06-08 09:49:11 +0200809 _ASM_EXTABLE(1b, 2b)
Tejun Heoccbeed32009-02-09 22:17:40 +0900810 PTGS_TO_GS_EX
Andy Lutomirski67f590e2016-03-09 19:00:26 -0800811
812.Lsysenter_fix_flags:
813 pushl $X86_EFLAGS_FIXED
814 popfl
815 jmp .Lsysenter_flags_fixed
Andy Lutomirskif2b37572016-03-09 19:00:30 -0800816GLOBAL(__end_SYSENTER_singlestep_region)
Ingo Molnar4c8cd0c2015-06-08 08:33:56 +0200817ENDPROC(entry_SYSENTER_32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Andy Lutomirskifda57b22016-03-09 19:00:35 -0800819/*
820 * 32-bit legacy system call entry.
821 *
822 * 32-bit x86 Linux system calls traditionally used the INT $0x80
823 * instruction. INT $0x80 lands here.
824 *
825 * This entry point can be used by any 32-bit perform system calls.
826 * Instances of INT $0x80 can be found inline in various programs and
827 * libraries. It is also used by the vDSO's __kernel_vsyscall
828 * fallback for hardware that doesn't support a faster entry method.
829 * Restarted 32-bit system calls also fall back to INT $0x80
830 * regardless of what instruction was originally used to do the system
831 * call. (64-bit programs can use INT $0x80 as well, but they can
832 * only run on 64-bit kernels and therefore land in
833 * entry_INT80_compat.)
834 *
835 * This is considered a slow path. It is not used by most libc
836 * implementations on modern hardware except during process startup.
837 *
838 * Arguments:
839 * eax system call number
840 * ebx arg1
841 * ecx arg2
842 * edx arg3
843 * esi arg4
844 * edi arg5
845 * ebp arg6
846 */
Ingo Molnarb2502b42015-06-08 08:42:03 +0200847ENTRY(entry_INT80_32)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700848 ASM_CLAC
Andy Lutomirski150ac782015-10-05 17:48:14 -0700849 pushl %eax /* pt_regs->orig_ax */
Joerg Roedel45d7b252018-07-18 11:40:44 +0200850
851 SAVE_ALL pt_regs_ax=$-ENOSYS switch_stacks=1 /* save rest */
Andy Lutomirski150ac782015-10-05 17:48:14 -0700852
853 /*
Andy Lutomirskia798f092016-03-09 13:24:32 -0800854 * User mode is traced as though IRQs are on, and the interrupt gate
855 * turned them off.
Andy Lutomirski150ac782015-10-05 17:48:14 -0700856 */
Andy Lutomirskia798f092016-03-09 13:24:32 -0800857 TRACE_IRQS_OFF
Andy Lutomirski150ac782015-10-05 17:48:14 -0700858
859 movl %esp, %eax
Andy Lutomirskia798f092016-03-09 13:24:32 -0800860 call do_int80_syscall_32
Andy Lutomirski5f310f72015-10-05 17:48:15 -0700861.Lsyscall_32_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863restore_all:
Alexander van Heukelum2e04bc72009-06-18 00:35:57 +0200864 TRACE_IRQS_IRET
Joerg Roedele5862d02018-07-18 11:40:45 +0200865 SWITCH_TO_ENTRY_STACK
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500866.Lrestore_all_notrace:
Joerg Roedel46eabca2018-07-18 11:40:41 +0200867 CHECK_AND_APPLY_ESPFIX
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500868.Lrestore_nocheck:
Ingo Molnara49976d2015-06-08 09:49:11 +0200869 RESTORE_REGS 4 # skip orig_eax/error_code
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500870.Lirq_return:
Mathieu Desnoyers10bcc802018-01-29 15:20:18 -0500871 /*
872 * ARCH_HAS_MEMBARRIER_SYNC_CORE rely on IRET core serialization
873 * when returning from IPI handler and when returning from
874 * scheduler to user-space.
875 */
Ingo Molnar3701d8632008-02-09 23:24:08 +0100876 INTERRUPT_RETURN
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500877
Joerg Roedel0d2eb732018-07-18 11:40:43 +0200878restore_all_kernel:
879 TRACE_IRQS_IRET
Joerg Roedelb92a1652018-07-18 11:40:47 +0200880 PARANOID_EXIT_TO_KERNEL_MODE
Joerg Roedel0d2eb732018-07-18 11:40:43 +0200881 RESTORE_REGS 4
882 jmp .Lirq_return
883
Ingo Molnara49976d2015-06-08 09:49:11 +0200884.section .fixup, "ax"
885ENTRY(iret_exc )
886 pushl $0 # no error code
887 pushl $do_iret_error
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500888 jmp common_exception
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889.previous
Josh Poimboeuf1b002552016-09-21 16:03:59 -0500890 _ASM_EXTABLE(.Lirq_return, iret_exc)
Ingo Molnarb2502b42015-06-08 08:42:03 +0200891ENDPROC(entry_INT80_32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Tejun Heof0d96112009-02-09 22:17:40 +0900893.macro FIXUP_ESPFIX_STACK
Alexander van Heukelumdc4c2a02009-06-18 00:35:58 +0200894/*
895 * Switch back for ESPFIX stack to the normal zerobased stack
896 *
897 * We can't call C functions using the ESPFIX stack. This code reads
898 * the high word of the segment base from the GDT and swiches to the
899 * normal stack and adjusts ESP with the matching offset.
900 */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700901#ifdef CONFIG_X86_ESPFIX32
Alexander van Heukelumdc4c2a02009-06-18 00:35:58 +0200902 /* fixup the stack */
Ingo Molnara49976d2015-06-08 09:49:11 +0200903 mov GDT_ESPFIX_SS + 4, %al /* bits 16..23 */
904 mov GDT_ESPFIX_SS + 7, %ah /* bits 24..31 */
Denys Vlasenko9b47feb2015-06-08 22:35:33 +0200905 shl $16, %eax
Ingo Molnara49976d2015-06-08 09:49:11 +0200906 addl %esp, %eax /* the adjusted stack pointer */
907 pushl $__KERNEL_DS
908 pushl %eax
909 lss (%esp), %esp /* switch to the normal stack segment */
H. Peter Anvin34273f42014-05-04 10:36:22 -0700910#endif
Tejun Heof0d96112009-02-09 22:17:40 +0900911.endm
912.macro UNWIND_ESPFIX_STACK
H. Peter Anvin34273f42014-05-04 10:36:22 -0700913#ifdef CONFIG_X86_ESPFIX32
Ingo Molnara49976d2015-06-08 09:49:11 +0200914 movl %ss, %eax
Tejun Heof0d96112009-02-09 22:17:40 +0900915 /* see if on espfix stack */
Ingo Molnara49976d2015-06-08 09:49:11 +0200916 cmpw $__ESPFIX_SS, %ax
917 jne 27f
918 movl $__KERNEL_DS, %eax
919 movl %eax, %ds
920 movl %eax, %es
Tejun Heof0d96112009-02-09 22:17:40 +0900921 /* switch to normal stack */
922 FIXUP_ESPFIX_STACK
92327:
H. Peter Anvin34273f42014-05-04 10:36:22 -0700924#endif
Tejun Heof0d96112009-02-09 22:17:40 +0900925.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927/*
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200928 * Build the entry stubs with some assembler magic.
929 * We pack 1 stub into every 8-byte block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 */
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200931 .align 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932ENTRY(irq_entries_start)
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200933 vector=FIRST_EXTERNAL_VECTOR
934 .rept (FIRST_SYSTEM_VECTOR - FIRST_EXTERNAL_VECTOR)
Ingo Molnara49976d2015-06-08 09:49:11 +0200935 pushl $(~vector+0x80) /* Note: always in signed byte range */
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200936 vector=vector+1
937 jmp common_interrupt
Denys Vlasenko3304c9c2015-04-03 21:49:13 +0200938 .align 8
939 .endr
Jan Beulich47a55cd2007-02-13 13:26:24 +0100940END(irq_entries_start)
941
Ingo Molnar55f327f2006-07-03 00:24:43 -0700942/*
943 * the CPU automatically disables interrupts when executing an IRQ vector,
944 * so IRQ-flags tracing has to follow that:
945 */
H. Peter Anvinb7c62442008-11-11 13:24:58 -0800946 .p2align CONFIG_X86_L1_CACHE_SHIFT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947common_interrupt:
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700948 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200949 addl $-0x80, (%esp) /* Adjust vector into the [-256, -1] range */
Joerg Roedel45d7b252018-07-18 11:40:44 +0200950
951 SAVE_ALL switch_stacks=1
Josh Poimboeuf946c1912016-10-20 11:34:40 -0500952 ENCODE_FRAME_POINTER
Ingo Molnar55f327f2006-07-03 00:24:43 -0700953 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +0200954 movl %esp, %eax
955 call do_IRQ
956 jmp ret_from_intr
Jan Beulich47a55cd2007-02-13 13:26:24 +0100957ENDPROC(common_interrupt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Joerg Roedel45d7b252018-07-18 11:40:44 +0200959#define BUILD_INTERRUPT3(name, nr, fn) \
960ENTRY(name) \
961 ASM_CLAC; \
962 pushl $~(nr); \
963 SAVE_ALL switch_stacks=1; \
964 ENCODE_FRAME_POINTER; \
965 TRACE_IRQS_OFF \
966 movl %esp, %eax; \
967 call fn; \
968 jmp ret_from_intr; \
Jan Beulich47a55cd2007-02-13 13:26:24 +0100969ENDPROC(name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Ingo Molnara49976d2015-06-08 09:49:11 +0200971#define BUILD_INTERRUPT(name, nr) \
972 BUILD_INTERRUPT3(name, nr, smp_##name); \
Tejun Heo02cf94c2009-01-21 17:26:06 +0900973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974/* The include is where all of the SMP etc. interrupts come from */
Ingo Molnar1164dd02009-01-28 19:34:09 +0100975#include <asm/entry_arch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977ENTRY(coprocessor_error)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700978 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200979 pushl $0
980 pushl $do_coprocessor_error
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500981 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100982END(coprocessor_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984ENTRY(simd_coprocessor_error)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700985 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +0200986 pushl $0
Brian Gerst40d2e762010-03-21 09:00:43 -0400987#ifdef CONFIG_X86_INVD_BUG
988 /* AMD 486 bug: invd from userspace calls exception 19 instead of #GP */
Ingo Molnara49976d2015-06-08 09:49:11 +0200989 ALTERNATIVE "pushl $do_general_protection", \
990 "pushl $do_simd_coprocessor_error", \
Borislav Petkov8e65f6e2015-01-18 12:35:55 +0100991 X86_FEATURE_XMM
Brian Gerst40d2e762010-03-21 09:00:43 -0400992#else
Ingo Molnara49976d2015-06-08 09:49:11 +0200993 pushl $do_simd_coprocessor_error
Brian Gerst40d2e762010-03-21 09:00:43 -0400994#endif
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -0500995 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +0100996END(simd_coprocessor_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998ENTRY(device_not_available)
H. Peter Anvine59d1b02012-09-21 13:58:10 -0700999 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001000 pushl $-1 # mark this as an int
1001 pushl $do_device_not_available
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001002 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +01001003END(device_not_available)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Rusty Russelld3561b72006-12-07 02:14:07 +01001005#ifdef CONFIG_PARAVIRT
1006ENTRY(native_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +01001007 iret
H. Peter Anvin6837a542012-04-20 12:19:50 -07001008 _ASM_EXTABLE(native_iret, iret_exc)
Jan Beulich47a55cd2007-02-13 13:26:24 +01001009END(native_iret)
Rusty Russelld3561b72006-12-07 02:14:07 +01001010#endif
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012ENTRY(overflow)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001013 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001014 pushl $0
1015 pushl $do_overflow
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001016 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +01001017END(overflow)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019ENTRY(bounds)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001020 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001021 pushl $0
1022 pushl $do_bounds
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001023 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +01001024END(bounds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026ENTRY(invalid_op)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001027 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001028 pushl $0
1029 pushl $do_invalid_op
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001030 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +01001031END(invalid_op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033ENTRY(coprocessor_segment_overrun)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001034 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001035 pushl $0
1036 pushl $do_coprocessor_segment_overrun
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001037 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +01001038END(coprocessor_segment_overrun)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040ENTRY(invalid_TSS)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001041 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001042 pushl $do_invalid_TSS
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001043 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +01001044END(invalid_TSS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046ENTRY(segment_not_present)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001047 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001048 pushl $do_segment_not_present
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001049 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +01001050END(segment_not_present)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052ENTRY(stack_segment)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001053 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001054 pushl $do_stack_segment
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001055 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +01001056END(stack_segment)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058ENTRY(alignment_check)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001059 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001060 pushl $do_alignment_check
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001061 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +01001062END(alignment_check)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Prasanna S.Pd28c4392006-09-26 10:52:34 +02001064ENTRY(divide_error)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001065 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001066 pushl $0 # no error code
1067 pushl $do_divide_error
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001068 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +01001069END(divide_error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071#ifdef CONFIG_X86_MCE
1072ENTRY(machine_check)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001073 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001074 pushl $0
1075 pushl machine_check_vector
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001076 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +01001077END(machine_check)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078#endif
1079
1080ENTRY(spurious_interrupt_bug)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001081 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001082 pushl $0
1083 pushl $do_spurious_interrupt_bug
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001084 jmp common_exception
Jan Beulich47a55cd2007-02-13 13:26:24 +01001085END(spurious_interrupt_bug)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001087#ifdef CONFIG_XEN
1088ENTRY(xen_hypervisor_callback)
Ingo Molnara49976d2015-06-08 09:49:11 +02001089 pushl $-1 /* orig_ax = -1 => not a system call */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001090 SAVE_ALL
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001091 ENCODE_FRAME_POINTER
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001092 TRACE_IRQS_OFF
Jeremy Fitzhardinge9ec2b802007-07-17 18:37:07 -07001093
Ingo Molnara49976d2015-06-08 09:49:11 +02001094 /*
1095 * Check to see if we got the event in the critical
1096 * region in xen_iret_direct, after we've reenabled
1097 * events and checked for pending events. This simulates
1098 * iret instruction's behaviour where it delivers a
1099 * pending interrupt when enabling interrupts:
1100 */
1101 movl PT_EIP(%esp), %eax
1102 cmpl $xen_iret_start_crit, %eax
1103 jb 1f
1104 cmpl $xen_iret_end_crit, %eax
1105 jae 1f
Jeremy Fitzhardinge9ec2b802007-07-17 18:37:07 -07001106
Ingo Molnara49976d2015-06-08 09:49:11 +02001107 jmp xen_iret_crit_fixup
Jeremy Fitzhardinge9ec2b802007-07-17 18:37:07 -07001108
Jeremy Fitzhardingee2a81ba2008-03-17 16:37:17 -07001109ENTRY(xen_do_upcall)
Ingo Molnara49976d2015-06-08 09:49:11 +020011101: mov %esp, %eax
1111 call xen_evtchn_do_upcall
David Vrabelfdfd8112015-02-19 15:23:17 +00001112#ifndef CONFIG_PREEMPT
Ingo Molnara49976d2015-06-08 09:49:11 +02001113 call xen_maybe_preempt_hcall
David Vrabelfdfd8112015-02-19 15:23:17 +00001114#endif
Ingo Molnara49976d2015-06-08 09:49:11 +02001115 jmp ret_from_intr
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001116ENDPROC(xen_hypervisor_callback)
1117
Ingo Molnara49976d2015-06-08 09:49:11 +02001118/*
1119 * Hypervisor uses this for application faults while it executes.
1120 * We get here for two reasons:
1121 * 1. Fault while reloading DS, ES, FS or GS
1122 * 2. Fault while executing IRET
1123 * Category 1 we fix up by reattempting the load, and zeroing the segment
1124 * register if the load fails.
1125 * Category 2 we fix up by jumping to do_iret_error. We cannot use the
1126 * normal Linux return path in this case because if we use the IRET hypercall
1127 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1128 * We distinguish between categories by maintaining a status value in EAX.
1129 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001130ENTRY(xen_failsafe_callback)
Ingo Molnara49976d2015-06-08 09:49:11 +02001131 pushl %eax
1132 movl $1, %eax
11331: mov 4(%esp), %ds
11342: mov 8(%esp), %es
11353: mov 12(%esp), %fs
11364: mov 16(%esp), %gs
David Vrabela349e23d12012-10-19 17:29:07 +01001137 /* EAX == 0 => Category 1 (Bad segment)
1138 EAX != 0 => Category 2 (Bad IRET) */
Ingo Molnara49976d2015-06-08 09:49:11 +02001139 testl %eax, %eax
1140 popl %eax
1141 lea 16(%esp), %esp
1142 jz 5f
1143 jmp iret_exc
11445: pushl $-1 /* orig_ax = -1 => not a system call */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001145 SAVE_ALL
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001146 ENCODE_FRAME_POINTER
Ingo Molnara49976d2015-06-08 09:49:11 +02001147 jmp ret_from_exception
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001148
Ingo Molnara49976d2015-06-08 09:49:11 +02001149.section .fixup, "ax"
11506: xorl %eax, %eax
1151 movl %eax, 4(%esp)
1152 jmp 1b
11537: xorl %eax, %eax
1154 movl %eax, 8(%esp)
1155 jmp 2b
11568: xorl %eax, %eax
1157 movl %eax, 12(%esp)
1158 jmp 3b
11599: xorl %eax, %eax
1160 movl %eax, 16(%esp)
1161 jmp 4b
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001162.previous
Ingo Molnara49976d2015-06-08 09:49:11 +02001163 _ASM_EXTABLE(1b, 6b)
1164 _ASM_EXTABLE(2b, 7b)
1165 _ASM_EXTABLE(3b, 8b)
1166 _ASM_EXTABLE(4b, 9b)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001167ENDPROC(xen_failsafe_callback)
1168
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001169BUILD_INTERRUPT3(xen_hvm_callback_vector, HYPERVISOR_CALLBACK_VECTOR,
Thomas Gleixner4b9a8dc2017-08-28 08:47:31 +02001170 xen_evtchn_do_upcall)
Sheng Yang38e20b02010-05-14 12:40:51 +01001171
Ingo Molnara49976d2015-06-08 09:49:11 +02001172#endif /* CONFIG_XEN */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001173
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001174#if IS_ENABLED(CONFIG_HYPERV)
1175
1176BUILD_INTERRUPT3(hyperv_callback_vector, HYPERVISOR_CALLBACK_VECTOR,
Thomas Gleixner4b9a8dc2017-08-28 08:47:31 +02001177 hyperv_vector_handler)
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001178
Vitaly Kuznetsov93286262018-01-24 14:23:33 +01001179BUILD_INTERRUPT3(hyperv_reenlightenment_vector, HYPERV_REENLIGHTENMENT_VECTOR,
1180 hyperv_reenlightenment_intr)
1181
Michael Kelley248e7422018-03-04 22:17:18 -07001182BUILD_INTERRUPT3(hv_stimer0_callback_vector, HYPERV_STIMER0_VECTOR,
1183 hv_stimer0_vector_handler)
1184
K. Y. Srinivasanbc2b0332013-02-03 17:22:39 -08001185#endif /* CONFIG_HYPERV */
1186
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001187ENTRY(page_fault)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001188 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001189 pushl $do_page_fault
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001190 ALIGN
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001191 jmp common_exception
1192END(page_fault)
1193
1194common_exception:
Tejun Heoccbeed32009-02-09 22:17:40 +09001195 /* the function address is in %gs's slot on the stack */
Ingo Molnara49976d2015-06-08 09:49:11 +02001196 pushl %fs
1197 pushl %es
1198 pushl %ds
1199 pushl %eax
Joerg Roedel45d7b252018-07-18 11:40:44 +02001200 movl $(__USER_DS), %eax
1201 movl %eax, %ds
1202 movl %eax, %es
1203 movl $(__KERNEL_PERCPU), %eax
1204 movl %eax, %fs
Ingo Molnara49976d2015-06-08 09:49:11 +02001205 pushl %ebp
1206 pushl %edi
1207 pushl %esi
1208 pushl %edx
1209 pushl %ecx
1210 pushl %ebx
Joerg Roedel45d7b252018-07-18 11:40:44 +02001211 SWITCH_TO_KERNEL_STACK
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001212 ENCODE_FRAME_POINTER
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001213 cld
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001214 UNWIND_ESPFIX_STACK
Tejun Heoccbeed32009-02-09 22:17:40 +09001215 GS_TO_REG %ecx
Ingo Molnara49976d2015-06-08 09:49:11 +02001216 movl PT_GS(%esp), %edi # get the function address
1217 movl PT_ORIG_EAX(%esp), %edx # get the error code
1218 movl $-1, PT_ORIG_EAX(%esp) # no syscall to restart
Tejun Heoccbeed32009-02-09 22:17:40 +09001219 REG_TO_PTGS %ecx
1220 SET_KERNEL_GS %ecx
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001221 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +02001222 movl %esp, %eax # pt_regs pointer
David Woodhouse2641f082018-01-11 21:46:28 +00001223 CALL_NOSPEC %edi
Ingo Molnara49976d2015-06-08 09:49:11 +02001224 jmp ret_from_exception
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001225END(common_exception)
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001226
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001227ENTRY(debug)
Andy Lutomirski75366562016-03-09 19:00:32 -08001228 /*
1229 * #DB can happen at the first instruction of
1230 * entry_SYSENTER_32 or in Xen's SYSENTER prologue. If this
1231 * happens, then we will be running on a very small stack. We
1232 * need to detect this condition and switch to the thread
1233 * stack before calling any C code at all.
1234 *
1235 * If you edit this code, keep in mind that NMIs can happen in here.
1236 */
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001237 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001238 pushl $-1 # mark this as an int
Joerg Roedel45d7b252018-07-18 11:40:44 +02001239
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001240 SAVE_ALL
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001241 ENCODE_FRAME_POINTER
Ingo Molnara49976d2015-06-08 09:49:11 +02001242 xorl %edx, %edx # error code 0
1243 movl %esp, %eax # pt_regs pointer
Andy Lutomirski75366562016-03-09 19:00:32 -08001244
1245 /* Are we currently on the SYSENTER stack? */
Andy Lutomirski72f5e082017-12-04 15:07:20 +01001246 movl PER_CPU_VAR(cpu_entry_area), %ecx
Dave Hansen4fe2d8b2017-12-04 17:25:07 -08001247 addl $CPU_ENTRY_AREA_entry_stack + SIZEOF_entry_stack, %ecx
1248 subl %eax, %ecx /* ecx = (end of entry_stack) - esp */
1249 cmpl $SIZEOF_entry_stack, %ecx
Andy Lutomirski75366562016-03-09 19:00:32 -08001250 jb .Ldebug_from_sysenter_stack
1251
1252 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +02001253 call do_debug
1254 jmp ret_from_exception
Andy Lutomirski75366562016-03-09 19:00:32 -08001255
1256.Ldebug_from_sysenter_stack:
1257 /* We're on the SYSENTER stack. Switch off. */
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001258 movl %esp, %ebx
Andy Lutomirski75366562016-03-09 19:00:32 -08001259 movl PER_CPU_VAR(cpu_current_top_of_stack), %esp
1260 TRACE_IRQS_OFF
1261 call do_debug
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001262 movl %ebx, %esp
Andy Lutomirski75366562016-03-09 19:00:32 -08001263 jmp ret_from_exception
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001264END(debug)
1265
1266/*
Andy Lutomirski75366562016-03-09 19:00:32 -08001267 * NMI is doubly nasty. It can happen on the first instruction of
1268 * entry_SYSENTER_32 (just like #DB), but it can also interrupt the beginning
1269 * of the #DB handler even if that #DB in turn hit before entry_SYSENTER_32
1270 * switched stacks. We handle both conditions by simply checking whether we
1271 * interrupted kernel code running on the SYSENTER stack.
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001272 */
1273ENTRY(nmi)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001274 ASM_CLAC
Joerg Roedel45d7b252018-07-18 11:40:44 +02001275
H. Peter Anvin34273f42014-05-04 10:36:22 -07001276#ifdef CONFIG_X86_ESPFIX32
Ingo Molnara49976d2015-06-08 09:49:11 +02001277 pushl %eax
1278 movl %ss, %eax
1279 cmpw $__ESPFIX_SS, %ax
1280 popl %eax
Josh Poimboeuf1b002552016-09-21 16:03:59 -05001281 je .Lnmi_espfix_stack
H. Peter Anvin34273f42014-05-04 10:36:22 -07001282#endif
Andy Lutomirski75366562016-03-09 19:00:32 -08001283
1284 pushl %eax # pt_regs->orig_ax
Joerg Roedel8b376fa2018-07-18 11:40:46 +02001285 SAVE_ALL_NMI
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001286 ENCODE_FRAME_POINTER
Ingo Molnara49976d2015-06-08 09:49:11 +02001287 xorl %edx, %edx # zero error code
1288 movl %esp, %eax # pt_regs pointer
Andy Lutomirski75366562016-03-09 19:00:32 -08001289
1290 /* Are we currently on the SYSENTER stack? */
Andy Lutomirski72f5e082017-12-04 15:07:20 +01001291 movl PER_CPU_VAR(cpu_entry_area), %ecx
Dave Hansen4fe2d8b2017-12-04 17:25:07 -08001292 addl $CPU_ENTRY_AREA_entry_stack + SIZEOF_entry_stack, %ecx
1293 subl %eax, %ecx /* ecx = (end of entry_stack) - esp */
1294 cmpl $SIZEOF_entry_stack, %ecx
Andy Lutomirski75366562016-03-09 19:00:32 -08001295 jb .Lnmi_from_sysenter_stack
1296
1297 /* Not on SYSENTER stack. */
Ingo Molnara49976d2015-06-08 09:49:11 +02001298 call do_nmi
Joerg Roedel8e676ce2018-07-18 11:40:42 +02001299 jmp .Lnmi_return
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001300
Andy Lutomirski75366562016-03-09 19:00:32 -08001301.Lnmi_from_sysenter_stack:
1302 /*
1303 * We're on the SYSENTER stack. Switch off. No one (not even debug)
1304 * is using the thread stack right now, so it's safe for us to use it.
1305 */
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001306 movl %esp, %ebx
Andy Lutomirski75366562016-03-09 19:00:32 -08001307 movl PER_CPU_VAR(cpu_current_top_of_stack), %esp
1308 call do_nmi
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001309 movl %ebx, %esp
Joerg Roedel8e676ce2018-07-18 11:40:42 +02001310
1311.Lnmi_return:
1312 CHECK_AND_APPLY_ESPFIX
Joerg Roedel8b376fa2018-07-18 11:40:46 +02001313 RESTORE_ALL_NMI pop=4
Joerg Roedel8e676ce2018-07-18 11:40:42 +02001314 jmp .Lirq_return
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001315
H. Peter Anvin34273f42014-05-04 10:36:22 -07001316#ifdef CONFIG_X86_ESPFIX32
Josh Poimboeuf1b002552016-09-21 16:03:59 -05001317.Lnmi_espfix_stack:
Ingo Molnar131484c2015-05-28 12:21:47 +02001318 /*
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001319 * create the pointer to lss back
1320 */
Ingo Molnara49976d2015-06-08 09:49:11 +02001321 pushl %ss
1322 pushl %esp
1323 addl $4, (%esp)
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001324 /* copy the iret frame of 12 bytes */
1325 .rept 3
Ingo Molnara49976d2015-06-08 09:49:11 +02001326 pushl 16(%esp)
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001327 .endr
Ingo Molnara49976d2015-06-08 09:49:11 +02001328 pushl %eax
Joerg Roedel8b376fa2018-07-18 11:40:46 +02001329 SAVE_ALL_NMI
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001330 ENCODE_FRAME_POINTER
Ingo Molnara49976d2015-06-08 09:49:11 +02001331 FIXUP_ESPFIX_STACK # %eax == %esp
1332 xorl %edx, %edx # zero error code
1333 call do_nmi
Joerg Roedel8b376fa2018-07-18 11:40:46 +02001334 RESTORE_ALL_NMI
Ingo Molnara49976d2015-06-08 09:49:11 +02001335 lss 12+4(%esp), %esp # back to espfix stack
Josh Poimboeuf1b002552016-09-21 16:03:59 -05001336 jmp .Lirq_return
H. Peter Anvin34273f42014-05-04 10:36:22 -07001337#endif
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001338END(nmi)
1339
1340ENTRY(int3)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001341 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001342 pushl $-1 # mark this as an int
Joerg Roedel45d7b252018-07-18 11:40:44 +02001343
1344 SAVE_ALL switch_stacks=1
Josh Poimboeuf946c1912016-10-20 11:34:40 -05001345 ENCODE_FRAME_POINTER
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001346 TRACE_IRQS_OFF
Ingo Molnara49976d2015-06-08 09:49:11 +02001347 xorl %edx, %edx # zero error code
1348 movl %esp, %eax # pt_regs pointer
1349 call do_int3
1350 jmp ret_from_exception
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001351END(int3)
1352
1353ENTRY(general_protection)
Ingo Molnara49976d2015-06-08 09:49:11 +02001354 pushl $do_general_protection
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001355 jmp common_exception
Alexander van Heukelumd211af02008-11-24 15:38:45 +01001356END(general_protection)
1357
Gleb Natapov631bc482010-10-14 11:22:52 +02001358#ifdef CONFIG_KVM_GUEST
1359ENTRY(async_page_fault)
H. Peter Anvine59d1b02012-09-21 13:58:10 -07001360 ASM_CLAC
Ingo Molnara49976d2015-06-08 09:49:11 +02001361 pushl $do_async_page_fault
Josh Poimboeuf7252c4c2016-09-21 16:04:00 -05001362 jmp common_exception
Sedat Dilek2ae9d292011-03-08 22:39:24 +01001363END(async_page_fault)
Gleb Natapov631bc482010-10-14 11:22:52 +02001364#endif
Andy Lutomirski2deb4be2016-07-14 13:22:55 -07001365
1366ENTRY(rewind_stack_do_exit)
1367 /* Prevent any naive code from trying to unwind to our caller. */
1368 xorl %ebp, %ebp
1369
1370 movl PER_CPU_VAR(cpu_current_top_of_stack), %esi
1371 leal -TOP_OF_KERNEL_STACK_PADDING-PTREGS_SIZE(%esi), %esp
1372
1373 call do_exit
13741: jmp 1b
1375END(rewind_stack_do_exit)