x86/asm/entry: Rename 'init_tss' to 'cpu_tss'
[linux-2.6-block.git] / arch / x86 / kernel / entry_64.S
CommitLineData
1da177e4
LT
1/*
2 * linux/arch/x86_64/entry.S
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 2000, 2001, 2002 Andi Kleen SuSE Labs
6 * Copyright (C) 2000 Pavel Machek <pavel@suse.cz>
1da177e4
LT
7 */
8
9/*
10 * entry.S contains the system-call and fault low-level handling routines.
11 *
8b4777a4
AL
12 * Some of this is documented in Documentation/x86/entry_64.txt
13 *
1da177e4
LT
14 * NOTE: This code handles signal-recognition, which happens every time
15 * after an interrupt and after each system call.
0bd7b798 16 *
0bd7b798
AH
17 * A note on terminology:
18 * - top of stack: Architecture defined interrupt frame from SS to RIP
19 * at the top of the kernel process stack.
0d2eb44f 20 * - partial stack frame: partially saved registers up to R11.
0bd7b798 21 * - full stack frame: Like partial stack frame, but all register saved.
2e91a17b
AK
22 *
23 * Some macro usage:
24 * - CFI macros are used to generate dwarf2 unwind information for better
25 * backtraces. They don't change any code.
2e91a17b
AK
26 * - ENTRY/END Define functions in the symbol table.
27 * - FIXUP_TOP_OF_STACK/RESTORE_TOP_OF_STACK - Fix up the hardware stack
28 * frame that is otherwise undefined after a SYSCALL
29 * - TRACE_IRQ_* - Trace hard interrupt state for lock debugging.
cb5dd2c5 30 * - idtentry - Define exception entry points.
1da177e4
LT
31 */
32
1da177e4
LT
33#include <linux/linkage.h>
34#include <asm/segment.h>
1da177e4
LT
35#include <asm/cache.h>
36#include <asm/errno.h>
37#include <asm/dwarf2.h>
38#include <asm/calling.h>
e2d5df93 39#include <asm/asm-offsets.h>
1da177e4
LT
40#include <asm/msr.h>
41#include <asm/unistd.h>
42#include <asm/thread_info.h>
43#include <asm/hw_irq.h>
0341c14d 44#include <asm/page_types.h>
2601e64d 45#include <asm/irqflags.h>
72fe4858 46#include <asm/paravirt.h>
9939ddaf 47#include <asm/percpu.h>
d7abc0fa 48#include <asm/asm.h>
91d1aa43 49#include <asm/context_tracking.h>
63bcff2a 50#include <asm/smap.h>
3891a04a 51#include <asm/pgtable_types.h>
d7e7528b 52#include <linux/err.h>
1da177e4 53
86a1c34a
RM
54/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
55#include <linux/elf-em.h>
56#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
57#define __AUDIT_ARCH_64BIT 0x80000000
58#define __AUDIT_ARCH_LE 0x40000000
59
1da177e4 60 .code64
ea714547
JO
61 .section .entry.text, "ax"
62
16444a8a 63
dc37db4d 64#ifndef CONFIG_PREEMPT
1da177e4 65#define retint_kernel retint_restore_args
0bd7b798 66#endif
2601e64d 67
72fe4858 68#ifdef CONFIG_PARAVIRT
2be29982 69ENTRY(native_usergs_sysret64)
72fe4858
GOC
70 swapgs
71 sysretq
b3baaa13 72ENDPROC(native_usergs_sysret64)
72fe4858
GOC
73#endif /* CONFIG_PARAVIRT */
74
2601e64d 75
f2db9382 76.macro TRACE_IRQS_IRETQ
2601e64d 77#ifdef CONFIG_TRACE_IRQFLAGS
f2db9382 78 bt $9,EFLAGS(%rsp) /* interrupts off? */
2601e64d
IM
79 jnc 1f
80 TRACE_IRQS_ON
811:
82#endif
83.endm
84
5963e317
SR
85/*
86 * When dynamic function tracer is enabled it will add a breakpoint
87 * to all locations that it is about to modify, sync CPUs, update
88 * all the code, sync CPUs, then remove the breakpoints. In this time
89 * if lockdep is enabled, it might jump back into the debug handler
90 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
91 *
92 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
93 * make sure the stack pointer does not get reset back to the top
94 * of the debug stack, and instead just reuses the current stack.
95 */
96#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
97
98.macro TRACE_IRQS_OFF_DEBUG
99 call debug_stack_set_zero
100 TRACE_IRQS_OFF
101 call debug_stack_reset
102.endm
103
104.macro TRACE_IRQS_ON_DEBUG
105 call debug_stack_set_zero
106 TRACE_IRQS_ON
107 call debug_stack_reset
108.endm
109
f2db9382
DV
110.macro TRACE_IRQS_IRETQ_DEBUG
111 bt $9,EFLAGS(%rsp) /* interrupts off? */
5963e317
SR
112 jnc 1f
113 TRACE_IRQS_ON_DEBUG
1141:
115.endm
116
117#else
118# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
119# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
120# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
121#endif
122
1da177e4 123/*
0bd7b798
AH
124 * C code is not supposed to know about undefined top of stack. Every time
125 * a C function with an pt_regs argument is called from the SYSCALL based
1da177e4
LT
126 * fast path FIXUP_TOP_OF_STACK is needed.
127 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
128 * manipulation.
0bd7b798
AH
129 */
130
131 /* %rsp:at FRAMEEND */
c002a1e6 132 .macro FIXUP_TOP_OF_STACK tmp offset=0
3d1e42a7 133 movq PER_CPU_VAR(old_rsp),\tmp
c002a1e6
AH
134 movq \tmp,RSP+\offset(%rsp)
135 movq $__USER_DS,SS+\offset(%rsp)
136 movq $__USER_CS,CS+\offset(%rsp)
0fcedc86
AL
137 movq RIP+\offset(%rsp),\tmp /* get rip */
138 movq \tmp,RCX+\offset(%rsp) /* copy it to rcx as sysret would do */
c002a1e6
AH
139 movq R11+\offset(%rsp),\tmp /* get eflags */
140 movq \tmp,EFLAGS+\offset(%rsp)
1da177e4
LT
141 .endm
142
c002a1e6
AH
143 .macro RESTORE_TOP_OF_STACK tmp offset=0
144 movq RSP+\offset(%rsp),\tmp
3d1e42a7 145 movq \tmp,PER_CPU_VAR(old_rsp)
c002a1e6
AH
146 movq EFLAGS+\offset(%rsp),\tmp
147 movq \tmp,R11+\offset(%rsp)
1da177e4
LT
148 .endm
149
dcd072e2 150/*
e90e147c 151 * empty frame
dcd072e2
AH
152 */
153 .macro EMPTY_FRAME start=1 offset=0
7effaa88 154 .if \start
dcd072e2 155 CFI_STARTPROC simple
adf14236 156 CFI_SIGNAL_FRAME
dcd072e2 157 CFI_DEF_CFA rsp,8+\offset
7effaa88 158 .else
dcd072e2 159 CFI_DEF_CFA_OFFSET 8+\offset
7effaa88 160 .endif
1da177e4 161 .endm
d99015b1
AH
162
163/*
dcd072e2 164 * initial frame state for interrupts (and exceptions without error code)
d99015b1 165 */
dcd072e2 166 .macro INTR_FRAME start=1 offset=0
911d2bb5
DV
167 EMPTY_FRAME \start, 5*8+\offset
168 /*CFI_REL_OFFSET ss, 4*8+\offset*/
169 CFI_REL_OFFSET rsp, 3*8+\offset
170 /*CFI_REL_OFFSET rflags, 2*8+\offset*/
171 /*CFI_REL_OFFSET cs, 1*8+\offset*/
172 CFI_REL_OFFSET rip, 0*8+\offset
d99015b1
AH
173 .endm
174
d99015b1
AH
175/*
176 * initial frame state for exceptions with error code (and interrupts
177 * with vector already pushed)
178 */
dcd072e2 179 .macro XCPT_FRAME start=1 offset=0
911d2bb5 180 INTR_FRAME \start, 1*8+\offset
dcd072e2
AH
181 .endm
182
183/*
76f5df43 184 * frame that enables passing a complete pt_regs to a C function.
dcd072e2 185 */
76f5df43 186 .macro DEFAULT_FRAME start=1 offset=0
f2db9382
DV
187 XCPT_FRAME \start, ORIG_RAX+\offset
188 CFI_REL_OFFSET rdi, RDI+\offset
189 CFI_REL_OFFSET rsi, RSI+\offset
190 CFI_REL_OFFSET rdx, RDX+\offset
191 CFI_REL_OFFSET rcx, RCX+\offset
192 CFI_REL_OFFSET rax, RAX+\offset
193 CFI_REL_OFFSET r8, R8+\offset
194 CFI_REL_OFFSET r9, R9+\offset
195 CFI_REL_OFFSET r10, R10+\offset
196 CFI_REL_OFFSET r11, R11+\offset
dcd072e2
AH
197 CFI_REL_OFFSET rbx, RBX+\offset
198 CFI_REL_OFFSET rbp, RBP+\offset
199 CFI_REL_OFFSET r12, R12+\offset
200 CFI_REL_OFFSET r13, R13+\offset
201 CFI_REL_OFFSET r14, R14+\offset
202 CFI_REL_OFFSET r15, R15+\offset
203 .endm
d99015b1 204
1da177e4 205/*
b87cf63e 206 * 64bit SYSCALL instruction entry. Up to 6 arguments in registers.
1da177e4 207 *
b87cf63e
DV
208 * 64bit SYSCALL saves rip to rcx, clears rflags.RF, then saves rflags to r11,
209 * then loads new ss, cs, and rip from previously programmed MSRs.
210 * rflags gets masked by a value from another MSR (so CLD and CLAC
211 * are not needed). SYSCALL does not save anything on the stack
212 * and does not change rsp.
213 *
214 * Registers on entry:
1da177e4 215 * rax system call number
b87cf63e
DV
216 * rcx return address
217 * r11 saved rflags (note: r11 is callee-clobbered register in C ABI)
1da177e4 218 * rdi arg0
1da177e4 219 * rsi arg1
0bd7b798 220 * rdx arg2
b87cf63e 221 * r10 arg3 (needs to be moved to rcx to conform to C ABI)
1da177e4
LT
222 * r8 arg4
223 * r9 arg5
b87cf63e 224 * (note: r12-r15,rbp,rbx are callee-preserved in C ABI)
0bd7b798 225 *
1da177e4
LT
226 * Interrupts are off on entry.
227 * Only called from user space.
228 *
229 * XXX if we had a free scratch register we could save the RSP into the stack frame
230 * and report it properly in ps. Unfortunately we haven't.
7bf36bbc
AK
231 *
232 * When user can change the frames always force IRET. That is because
233 * it deals with uncanonical addresses better. SYSRET has trouble
234 * with them due to bugs in both AMD and Intel CPUs.
0bd7b798 235 */
1da177e4
LT
236
237ENTRY(system_call)
7effaa88 238 CFI_STARTPROC simple
adf14236 239 CFI_SIGNAL_FRAME
9af45651 240 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
7effaa88
JB
241 CFI_REGISTER rip,rcx
242 /*CFI_REGISTER rflags,r11*/
72fe4858
GOC
243 SWAPGS_UNSAFE_STACK
244 /*
245 * A hypervisor implementation might want to use a label
246 * after the swapgs, so that it can do the swapgs
247 * for the guest and jump here on syscall.
248 */
f6b2bc84 249GLOBAL(system_call_after_swapgs)
72fe4858 250
3d1e42a7 251 movq %rsp,PER_CPU_VAR(old_rsp)
b87cf63e 252 /* kernel_stack is set so that 5 slots (iret frame) are preallocated */
9af45651 253 movq PER_CPU_VAR(kernel_stack),%rsp
2601e64d
IM
254 /*
255 * No need to follow this irqs off/on section - it's straight
256 * and short:
257 */
72fe4858 258 ENABLE_INTERRUPTS(CLBR_NONE)
b87cf63e 259 ALLOC_PT_GPREGS_ON_STACK 8 /* +8: space for orig_ax */
76f5df43 260 SAVE_C_REGS_EXCEPT_RAX_RCX
f2db9382
DV
261 movq $-ENOSYS,RAX(%rsp)
262 movq_cfi rax,ORIG_RAX
263 movq %rcx,RIP(%rsp)
264 CFI_REL_OFFSET rip,RIP
265 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP)
1da177e4 266 jnz tracesys
86a1c34a 267system_call_fastpath:
fca460f9 268#if __SYSCALL_MASK == ~0
1da177e4 269 cmpq $__NR_syscall_max,%rax
fca460f9
PA
270#else
271 andl $__SYSCALL_MASK,%eax
272 cmpl $__NR_syscall_max,%eax
273#endif
54eea995 274 ja ret_from_sys_call /* and return regs->ax */
1da177e4
LT
275 movq %r10,%rcx
276 call *sys_call_table(,%rax,8) # XXX: rip relative
f2db9382 277 movq %rax,RAX(%rsp)
1da177e4
LT
278/*
279 * Syscall return path ending with SYSRET (fast path)
0bd7b798
AH
280 * Has incomplete stack frame and undefined top of stack.
281 */
1da177e4 282ret_from_sys_call:
f2db9382 283 testl $_TIF_ALLWORK_MASK,TI_flags+THREAD_INFO(%rsp,RIP)
96b6352c
AL
284 jnz int_ret_from_sys_call_fixup /* Go the the slow path */
285
10cd706d 286 LOCKDEP_SYS_EXIT
72fe4858 287 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 288 TRACE_IRQS_OFF
bcddc015 289 CFI_REMEMBER_STATE
2601e64d
IM
290 /*
291 * sysretq will re-enable interrupts:
292 */
293 TRACE_IRQS_ON
76f5df43 294 RESTORE_C_REGS_EXCEPT_RCX
f2db9382 295 movq RIP(%rsp),%rcx
7effaa88 296 CFI_REGISTER rip,rcx
7effaa88 297 /*CFI_REGISTER rflags,r11*/
3d1e42a7 298 movq PER_CPU_VAR(old_rsp), %rsp
b87cf63e
DV
299 /*
300 * 64bit SYSRET restores rip from rcx,
301 * rflags from r11 (but RF and VM bits are forced to 0),
302 * cs and ss are loaded from MSRs.
303 */
2be29982 304 USERGS_SYSRET64
1da177e4 305
bcddc015 306 CFI_RESTORE_STATE
1da177e4 307
96b6352c 308int_ret_from_sys_call_fixup:
f2db9382 309 FIXUP_TOP_OF_STACK %r11
96b6352c 310 jmp int_ret_from_sys_call
86a1c34a 311
1da177e4 312 /* Do syscall tracing */
0bd7b798 313tracesys:
76f5df43 314 movq %rsp, %rdi
1dcf74f6
AL
315 movq $AUDIT_ARCH_X86_64, %rsi
316 call syscall_trace_enter_phase1
317 test %rax, %rax
318 jnz tracesys_phase2 /* if needed, run the slow path */
76f5df43 319 RESTORE_C_REGS_EXCEPT_RAX /* else restore clobbered regs */
f2db9382 320 movq ORIG_RAX(%rsp), %rax
1dcf74f6
AL
321 jmp system_call_fastpath /* and return to the fast path */
322
323tracesys_phase2:
76f5df43 324 SAVE_EXTRA_REGS
1da177e4 325 FIXUP_TOP_OF_STACK %rdi
1dcf74f6
AL
326 movq %rsp, %rdi
327 movq $AUDIT_ARCH_X86_64, %rsi
328 movq %rax,%rdx
329 call syscall_trace_enter_phase2
330
d4d67150 331 /*
e90e147c 332 * Reload registers from stack in case ptrace changed them.
1dcf74f6 333 * We don't reload %rax because syscall_trace_entry_phase2() returned
d4d67150
RM
334 * the value it wants us to use in the table lookup.
335 */
76f5df43
DV
336 RESTORE_C_REGS_EXCEPT_RAX
337 RESTORE_EXTRA_REGS
fca460f9 338#if __SYSCALL_MASK == ~0
1da177e4 339 cmpq $__NR_syscall_max,%rax
fca460f9
PA
340#else
341 andl $__SYSCALL_MASK,%eax
342 cmpl $__NR_syscall_max,%eax
343#endif
54eea995 344 ja int_ret_from_sys_call /* RAX(%rsp) is already set */
1da177e4
LT
345 movq %r10,%rcx /* fixup for C */
346 call *sys_call_table(,%rax,8)
f2db9382 347 movq %rax,RAX(%rsp)
7bf36bbc 348 /* Use IRET because user could have changed frame */
0bd7b798
AH
349
350/*
1da177e4
LT
351 * Syscall return path ending with IRET.
352 * Has correct top of stack, but partial stack frame.
bcddc015 353 */
bc8b2b92 354GLOBAL(int_ret_from_sys_call)
72fe4858 355 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 356 TRACE_IRQS_OFF
1da177e4
LT
357 movl $_TIF_ALLWORK_MASK,%edi
358 /* edi: mask to check */
bc8b2b92 359GLOBAL(int_with_check)
10cd706d 360 LOCKDEP_SYS_EXIT_IRQ
1da177e4 361 GET_THREAD_INFO(%rcx)
26ccb8a7 362 movl TI_flags(%rcx),%edx
1da177e4
LT
363 andl %edi,%edx
364 jnz int_careful
26ccb8a7 365 andl $~TS_COMPAT,TI_status(%rcx)
1da177e4
LT
366 jmp retint_swapgs
367
368 /* Either reschedule or signal or syscall exit tracking needed. */
369 /* First do a reschedule test. */
370 /* edx: work, edi: workmask */
371int_careful:
372 bt $TIF_NEED_RESCHED,%edx
373 jnc int_very_careful
2601e64d 374 TRACE_IRQS_ON
72fe4858 375 ENABLE_INTERRUPTS(CLBR_NONE)
df5d1874 376 pushq_cfi %rdi
0430499c 377 SCHEDULE_USER
df5d1874 378 popq_cfi %rdi
72fe4858 379 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 380 TRACE_IRQS_OFF
1da177e4
LT
381 jmp int_with_check
382
383 /* handle signals and tracing -- both require a full stack frame */
384int_very_careful:
2601e64d 385 TRACE_IRQS_ON
72fe4858 386 ENABLE_INTERRUPTS(CLBR_NONE)
76f5df43 387 SAVE_EXTRA_REGS
0bd7b798 388 /* Check for syscall exit trace */
d4d67150 389 testl $_TIF_WORK_SYSCALL_EXIT,%edx
1da177e4 390 jz int_signal
df5d1874 391 pushq_cfi %rdi
0bd7b798 392 leaq 8(%rsp),%rdi # &ptregs -> arg1
1da177e4 393 call syscall_trace_leave
df5d1874 394 popq_cfi %rdi
d4d67150 395 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
1da177e4 396 jmp int_restore_rest
0bd7b798 397
1da177e4 398int_signal:
8f4d37ec 399 testl $_TIF_DO_NOTIFY_MASK,%edx
1da177e4
LT
400 jz 1f
401 movq %rsp,%rdi # &ptregs -> arg1
402 xorl %esi,%esi # oldset -> arg2
403 call do_notify_resume
eca91e78 4041: movl $_TIF_WORK_MASK,%edi
1da177e4 405int_restore_rest:
76f5df43 406 RESTORE_EXTRA_REGS
72fe4858 407 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 408 TRACE_IRQS_OFF
1da177e4
LT
409 jmp int_with_check
410 CFI_ENDPROC
bcddc015 411END(system_call)
0bd7b798 412
1d4b4b29
AV
413 .macro FORK_LIKE func
414ENTRY(stub_\func)
415 CFI_STARTPROC
76f5df43
DV
416 DEFAULT_FRAME 0, 8 /* offset 8: return address */
417 SAVE_EXTRA_REGS 8
1d4b4b29 418 FIXUP_TOP_OF_STACK %r11, 8
1d4b4b29
AV
419 call sys_\func
420 RESTORE_TOP_OF_STACK %r11, 8
76f5df43 421 ret
1d4b4b29
AV
422 CFI_ENDPROC
423END(stub_\func)
424 .endm
425
b3af11af
AV
426 .macro FIXED_FRAME label,func
427ENTRY(\label)
428 CFI_STARTPROC
76f5df43 429 DEFAULT_FRAME 0, 8 /* offset 8: return address */
f2db9382 430 FIXUP_TOP_OF_STACK %r11, 8
b3af11af 431 call \func
f2db9382 432 RESTORE_TOP_OF_STACK %r11, 8
b3af11af
AV
433 ret
434 CFI_ENDPROC
435END(\label)
436 .endm
437
1d4b4b29
AV
438 FORK_LIKE clone
439 FORK_LIKE fork
440 FORK_LIKE vfork
b3af11af 441 FIXED_FRAME stub_iopl, sys_iopl
1da177e4 442
1da177e4
LT
443ENTRY(stub_execve)
444 CFI_STARTPROC
e6b04b6b 445 addq $8, %rsp
76f5df43
DV
446 DEFAULT_FRAME 0
447 SAVE_EXTRA_REGS
1da177e4
LT
448 FIXUP_TOP_OF_STACK %r11
449 call sys_execve
1da177e4 450 movq %rax,RAX(%rsp)
76f5df43 451 RESTORE_EXTRA_REGS
1da177e4
LT
452 jmp int_ret_from_sys_call
453 CFI_ENDPROC
4b787e0b 454END(stub_execve)
0bd7b798 455
27d6ec7a
DD
456ENTRY(stub_execveat)
457 CFI_STARTPROC
458 addq $8, %rsp
76f5df43
DV
459 DEFAULT_FRAME 0
460 SAVE_EXTRA_REGS
27d6ec7a
DD
461 FIXUP_TOP_OF_STACK %r11
462 call sys_execveat
463 RESTORE_TOP_OF_STACK %r11
464 movq %rax,RAX(%rsp)
76f5df43 465 RESTORE_EXTRA_REGS
27d6ec7a
DD
466 jmp int_ret_from_sys_call
467 CFI_ENDPROC
468END(stub_execveat)
469
1da177e4
LT
470/*
471 * sigreturn is special because it needs to restore all registers on return.
472 * This cannot be done with SYSRET, so use the IRET return path instead.
0bd7b798 473 */
1da177e4
LT
474ENTRY(stub_rt_sigreturn)
475 CFI_STARTPROC
7effaa88 476 addq $8, %rsp
76f5df43
DV
477 DEFAULT_FRAME 0
478 SAVE_EXTRA_REGS
1da177e4
LT
479 FIXUP_TOP_OF_STACK %r11
480 call sys_rt_sigreturn
481 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
76f5df43 482 RESTORE_EXTRA_REGS
1da177e4
LT
483 jmp int_ret_from_sys_call
484 CFI_ENDPROC
4b787e0b 485END(stub_rt_sigreturn)
1da177e4 486
c5a37394 487#ifdef CONFIG_X86_X32_ABI
c5a37394
PA
488ENTRY(stub_x32_rt_sigreturn)
489 CFI_STARTPROC
490 addq $8, %rsp
76f5df43
DV
491 DEFAULT_FRAME 0
492 SAVE_EXTRA_REGS
c5a37394
PA
493 FIXUP_TOP_OF_STACK %r11
494 call sys32_x32_rt_sigreturn
495 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
76f5df43 496 RESTORE_EXTRA_REGS
c5a37394
PA
497 jmp int_ret_from_sys_call
498 CFI_ENDPROC
499END(stub_x32_rt_sigreturn)
500
d1a797f3
PA
501ENTRY(stub_x32_execve)
502 CFI_STARTPROC
503 addq $8, %rsp
76f5df43
DV
504 DEFAULT_FRAME 0
505 SAVE_EXTRA_REGS
d1a797f3 506 FIXUP_TOP_OF_STACK %r11
6783eaa2 507 call compat_sys_execve
d1a797f3
PA
508 RESTORE_TOP_OF_STACK %r11
509 movq %rax,RAX(%rsp)
76f5df43 510 RESTORE_EXTRA_REGS
d1a797f3
PA
511 jmp int_ret_from_sys_call
512 CFI_ENDPROC
513END(stub_x32_execve)
514
27d6ec7a
DD
515ENTRY(stub_x32_execveat)
516 CFI_STARTPROC
517 addq $8, %rsp
76f5df43
DV
518 DEFAULT_FRAME 0
519 SAVE_EXTRA_REGS
27d6ec7a
DD
520 FIXUP_TOP_OF_STACK %r11
521 call compat_sys_execveat
522 RESTORE_TOP_OF_STACK %r11
523 movq %rax,RAX(%rsp)
76f5df43 524 RESTORE_EXTRA_REGS
27d6ec7a
DD
525 jmp int_ret_from_sys_call
526 CFI_ENDPROC
527END(stub_x32_execveat)
528
c5a37394
PA
529#endif
530
1eeb207f
DV
531/*
532 * A newly forked process directly context switches into this address.
533 *
534 * rdi: prev task we switched from
535 */
536ENTRY(ret_from_fork)
537 DEFAULT_FRAME
538
539 LOCK ; btr $TIF_FORK,TI_flags(%r8)
540
541 pushq_cfi $0x0002
542 popfq_cfi # reset kernel eflags
543
544 call schedule_tail # rdi: 'prev' task parameter
545
546 GET_THREAD_INFO(%rcx)
547
548 RESTORE_EXTRA_REGS
549
550 testl $3,CS(%rsp) # from kernel_thread?
551 jz 1f
552
1e3fbb8a
AL
553 /*
554 * By the time we get here, we have no idea whether our pt_regs,
555 * ti flags, and ti status came from the 64-bit SYSCALL fast path,
556 * the slow path, or one of the ia32entry paths.
557 * Use int_ret_from_sys_call to return, since it can safely handle
558 * all of the above.
559 */
560 jmp int_ret_from_sys_call
1eeb207f
DV
561
5621:
563 movq %rbp, %rdi
564 call *%rbx
565 movl $0, RAX(%rsp)
566 RESTORE_EXTRA_REGS
567 jmp int_ret_from_sys_call
568 CFI_ENDPROC
569END(ret_from_fork)
570
939b7871
PA
571/*
572 * Build the entry stubs and pointer table with some assembler magic.
573 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
574 * single cache line on all modern x86 implementations.
575 */
576 .section .init.rodata,"a"
577ENTRY(interrupt)
ea714547 578 .section .entry.text
939b7871
PA
579 .p2align 5
580 .p2align CONFIG_X86_L1_CACHE_SHIFT
581ENTRY(irq_entries_start)
582 INTR_FRAME
583vector=FIRST_EXTERNAL_VECTOR
2414e021 584.rept (FIRST_SYSTEM_VECTOR-FIRST_EXTERNAL_VECTOR+6)/7
939b7871
PA
585 .balign 32
586 .rept 7
2414e021 587 .if vector < FIRST_SYSTEM_VECTOR
8665596e 588 .if vector <> FIRST_EXTERNAL_VECTOR
939b7871
PA
589 CFI_ADJUST_CFA_OFFSET -8
590 .endif
df5d1874 5911: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
8665596e 592 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
939b7871
PA
593 jmp 2f
594 .endif
595 .previous
596 .quad 1b
ea714547 597 .section .entry.text
939b7871
PA
598vector=vector+1
599 .endif
600 .endr
6012: jmp common_interrupt
602.endr
603 CFI_ENDPROC
604END(irq_entries_start)
605
606.previous
607END(interrupt)
608.previous
609
d99015b1 610/*
1da177e4
LT
611 * Interrupt entry/exit.
612 *
613 * Interrupt entry points save only callee clobbered registers in fast path.
d99015b1
AH
614 *
615 * Entry runs with interrupts off.
616 */
1da177e4 617
722024db 618/* 0(%rsp): ~(interrupt number) */
1da177e4 619 .macro interrupt func
f6f64681 620 cld
e90e147c
DV
621 /*
622 * Since nothing in interrupt handling code touches r12...r15 members
623 * of "struct pt_regs", and since interrupts can nest, we can save
624 * four stack slots and simultaneously provide
625 * an unwind-friendly stack layout by saving "truncated" pt_regs
626 * exactly up to rbp slot, without these members.
627 */
76f5df43
DV
628 ALLOC_PT_GPREGS_ON_STACK -RBP
629 SAVE_C_REGS -RBP
630 /* this goes to 0(%rsp) for unwinder, not for saving the value: */
631 SAVE_EXTRA_REGS_RBP -RBP
632
633 leaq -RBP(%rsp),%rdi /* arg1 for \func (pointer to pt_regs) */
f6f64681 634
76f5df43 635 testl $3, CS-RBP(%rsp)
f6f64681
DV
636 je 1f
637 SWAPGS
76f5df43 6381:
f6f64681 639 /*
e90e147c 640 * Save previous stack pointer, optionally switch to interrupt stack.
f6f64681
DV
641 * irq_count is used to check if a CPU is already on an interrupt stack
642 * or not. While this is essentially redundant with preempt_count it is
643 * a little cheaper to use a separate counter in the PDA (short of
644 * moving irq_enter into assembly, which would be too much work)
645 */
76f5df43
DV
646 movq %rsp, %rsi
647 incl PER_CPU_VAR(irq_count)
f6f64681
DV
648 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
649 CFI_DEF_CFA_REGISTER rsi
f6f64681 650 pushq %rsi
911d2bb5
DV
651 /*
652 * For debugger:
653 * "CFA (Current Frame Address) is the value on stack + offset"
654 */
f6f64681 655 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
911d2bb5 656 0x77 /* DW_OP_breg7 (rsp) */, 0, \
f6f64681 657 0x06 /* DW_OP_deref */, \
911d2bb5 658 0x08 /* DW_OP_const1u */, SIZEOF_PTREGS-RBP, \
f6f64681
DV
659 0x22 /* DW_OP_plus */
660 /* We entered an interrupt context - irqs are off: */
661 TRACE_IRQS_OFF
662
1da177e4
LT
663 call \func
664 .endm
665
722024db
AH
666 /*
667 * The interrupt stubs push (~vector+0x80) onto the stack and
668 * then jump to common_interrupt.
669 */
939b7871
PA
670 .p2align CONFIG_X86_L1_CACHE_SHIFT
671common_interrupt:
7effaa88 672 XCPT_FRAME
ee4eb87b 673 ASM_CLAC
722024db 674 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
1da177e4 675 interrupt do_IRQ
f2db9382 676 /* 0(%rsp): old_rsp */
7effaa88 677ret_from_intr:
72fe4858 678 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 679 TRACE_IRQS_OFF
56895530 680 decl PER_CPU_VAR(irq_count)
625dbc3b 681
a2bbe750
FW
682 /* Restore saved previous stack */
683 popq %rsi
911d2bb5 684 CFI_DEF_CFA rsi,SIZEOF_PTREGS-RBP /* reg/off reset after def_cfa_expr */
e90e147c 685 /* return code expects complete pt_regs - adjust rsp accordingly: */
f2db9382 686 leaq -RBP(%rsi),%rsp
7effaa88 687 CFI_DEF_CFA_REGISTER rsp
f2db9382 688 CFI_ADJUST_CFA_OFFSET RBP
625dbc3b 689
7effaa88 690exit_intr:
1da177e4 691 GET_THREAD_INFO(%rcx)
f2db9382 692 testl $3,CS(%rsp)
1da177e4 693 je retint_kernel
0bd7b798 694
1da177e4
LT
695 /* Interrupt came from user space */
696 /*
e90e147c 697 * Has a correct top of stack.
1da177e4 698 * %rcx: thread info. Interrupts off.
0bd7b798 699 */
1da177e4
LT
700retint_with_reschedule:
701 movl $_TIF_WORK_MASK,%edi
7effaa88 702retint_check:
10cd706d 703 LOCKDEP_SYS_EXIT_IRQ
26ccb8a7 704 movl TI_flags(%rcx),%edx
1da177e4 705 andl %edi,%edx
7effaa88 706 CFI_REMEMBER_STATE
1da177e4 707 jnz retint_careful
10cd706d
PZ
708
709retint_swapgs: /* return to user-space */
2601e64d
IM
710 /*
711 * The iretq could re-enable interrupts:
712 */
72fe4858 713 DISABLE_INTERRUPTS(CLBR_ANY)
2601e64d 714 TRACE_IRQS_IRETQ
2a23c6b8
AL
715
716 /*
717 * Try to use SYSRET instead of IRET if we're returning to
718 * a completely clean 64-bit userspace context.
719 */
f2db9382
DV
720 movq RCX(%rsp),%rcx
721 cmpq %rcx,RIP(%rsp) /* RCX == RIP */
2a23c6b8
AL
722 jne opportunistic_sysret_failed
723
724 /*
725 * On Intel CPUs, sysret with non-canonical RCX/RIP will #GP
726 * in kernel space. This essentially lets the user take over
727 * the kernel, since userspace controls RSP. It's not worth
728 * testing for canonicalness exactly -- this check detects any
729 * of the 17 high bits set, which is true for non-canonical
730 * or kernel addresses. (This will pessimize vsyscall=native.
731 * Big deal.)
732 *
733 * If virtual addresses ever become wider, this will need
734 * to be updated to remain correct on both old and new CPUs.
735 */
736 .ifne __VIRTUAL_MASK_SHIFT - 47
737 .error "virtual address width changed -- sysret checks need update"
738 .endif
739 shr $__VIRTUAL_MASK_SHIFT, %rcx
740 jnz opportunistic_sysret_failed
741
f2db9382 742 cmpq $__USER_CS,CS(%rsp) /* CS must match SYSRET */
2a23c6b8
AL
743 jne opportunistic_sysret_failed
744
f2db9382
DV
745 movq R11(%rsp),%r11
746 cmpq %r11,EFLAGS(%rsp) /* R11 == RFLAGS */
2a23c6b8
AL
747 jne opportunistic_sysret_failed
748
f2db9382 749 testq $X86_EFLAGS_RF,%r11 /* sysret can't restore RF */
2a23c6b8
AL
750 jnz opportunistic_sysret_failed
751
752 /* nothing to check for RSP */
753
f2db9382 754 cmpq $__USER_DS,SS(%rsp) /* SS must match SYSRET */
2a23c6b8
AL
755 jne opportunistic_sysret_failed
756
757 /*
758 * We win! This label is here just for ease of understanding
759 * perf profiles. Nothing jumps here.
760 */
761irq_return_via_sysret:
762 CFI_REMEMBER_STATE
d441c1f2
DV
763 /* r11 is already restored (see code above) */
764 RESTORE_C_REGS_EXCEPT_R11
765 movq RSP(%rsp),%rsp
2a23c6b8
AL
766 USERGS_SYSRET64
767 CFI_RESTORE_STATE
768
769opportunistic_sysret_failed:
72fe4858 770 SWAPGS
2601e64d
IM
771 jmp restore_args
772
10cd706d 773retint_restore_args: /* return to kernel space */
72fe4858 774 DISABLE_INTERRUPTS(CLBR_ANY)
2601e64d
IM
775 /*
776 * The iretq could re-enable interrupts:
777 */
778 TRACE_IRQS_IRETQ
779restore_args:
76f5df43
DV
780 RESTORE_C_REGS
781 REMOVE_PT_GPREGS_FROM_STACK 8
3701d863 782
f7f3d791 783irq_return:
7209a75d
AL
784 INTERRUPT_RETURN
785
786ENTRY(native_iret)
3891a04a
PA
787 /*
788 * Are we returning to a stack segment from the LDT? Note: in
789 * 64-bit mode SS:RSP on the exception stack is always valid.
790 */
34273f41 791#ifdef CONFIG_X86_ESPFIX64
3891a04a 792 testb $4,(SS-RIP)(%rsp)
7209a75d 793 jnz native_irq_return_ldt
34273f41 794#endif
3891a04a 795
af726f21 796.global native_irq_return_iret
7209a75d 797native_irq_return_iret:
b645af2d
AL
798 /*
799 * This may fault. Non-paranoid faults on return to userspace are
800 * handled by fixup_bad_iret. These include #SS, #GP, and #NP.
801 * Double-faults due to espfix64 are handled in do_double_fault.
802 * Other faults here are fatal.
803 */
1da177e4 804 iretq
3701d863 805
34273f41 806#ifdef CONFIG_X86_ESPFIX64
7209a75d 807native_irq_return_ldt:
3891a04a
PA
808 pushq_cfi %rax
809 pushq_cfi %rdi
810 SWAPGS
811 movq PER_CPU_VAR(espfix_waddr),%rdi
812 movq %rax,(0*8)(%rdi) /* RAX */
813 movq (2*8)(%rsp),%rax /* RIP */
814 movq %rax,(1*8)(%rdi)
815 movq (3*8)(%rsp),%rax /* CS */
816 movq %rax,(2*8)(%rdi)
817 movq (4*8)(%rsp),%rax /* RFLAGS */
818 movq %rax,(3*8)(%rdi)
819 movq (6*8)(%rsp),%rax /* SS */
820 movq %rax,(5*8)(%rdi)
821 movq (5*8)(%rsp),%rax /* RSP */
822 movq %rax,(4*8)(%rdi)
823 andl $0xffff0000,%eax
824 popq_cfi %rdi
825 orq PER_CPU_VAR(espfix_stack),%rax
826 SWAPGS
827 movq %rax,%rsp
828 popq_cfi %rax
7209a75d 829 jmp native_irq_return_iret
34273f41 830#endif
3891a04a 831
7effaa88 832 /* edi: workmask, edx: work */
1da177e4 833retint_careful:
7effaa88 834 CFI_RESTORE_STATE
1da177e4
LT
835 bt $TIF_NEED_RESCHED,%edx
836 jnc retint_signal
2601e64d 837 TRACE_IRQS_ON
72fe4858 838 ENABLE_INTERRUPTS(CLBR_NONE)
df5d1874 839 pushq_cfi %rdi
0430499c 840 SCHEDULE_USER
df5d1874 841 popq_cfi %rdi
1da177e4 842 GET_THREAD_INFO(%rcx)
72fe4858 843 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 844 TRACE_IRQS_OFF
1da177e4 845 jmp retint_check
0bd7b798 846
1da177e4 847retint_signal:
8f4d37ec 848 testl $_TIF_DO_NOTIFY_MASK,%edx
10ffdbb8 849 jz retint_swapgs
2601e64d 850 TRACE_IRQS_ON
72fe4858 851 ENABLE_INTERRUPTS(CLBR_NONE)
76f5df43 852 SAVE_EXTRA_REGS
0bd7b798 853 movq $-1,ORIG_RAX(%rsp)
3829ee6b 854 xorl %esi,%esi # oldset
1da177e4
LT
855 movq %rsp,%rdi # &pt_regs
856 call do_notify_resume
76f5df43 857 RESTORE_EXTRA_REGS
72fe4858 858 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 859 TRACE_IRQS_OFF
be9e6870 860 GET_THREAD_INFO(%rcx)
eca91e78 861 jmp retint_with_reschedule
1da177e4
LT
862
863#ifdef CONFIG_PREEMPT
864 /* Returning to kernel space. Check if we need preemption */
865 /* rcx: threadinfo. interrupts off. */
b06babac 866ENTRY(retint_kernel)
c2daa3be 867 cmpl $0,PER_CPU_VAR(__preempt_count)
1da177e4 868 jnz retint_restore_args
f2db9382 869 bt $9,EFLAGS(%rsp) /* interrupts off? */
1da177e4
LT
870 jnc retint_restore_args
871 call preempt_schedule_irq
872 jmp exit_intr
0bd7b798 873#endif
1da177e4 874 CFI_ENDPROC
4b787e0b 875END(common_interrupt)
3891a04a 876
1da177e4
LT
877/*
878 * APIC interrupts.
0bd7b798 879 */
cf910e83 880.macro apicinterrupt3 num sym do_sym
322648d1 881ENTRY(\sym)
7effaa88 882 INTR_FRAME
ee4eb87b 883 ASM_CLAC
df5d1874 884 pushq_cfi $~(\num)
39e95433 885.Lcommon_\sym:
322648d1 886 interrupt \do_sym
1da177e4
LT
887 jmp ret_from_intr
888 CFI_ENDPROC
322648d1
AH
889END(\sym)
890.endm
1da177e4 891
cf910e83
SA
892#ifdef CONFIG_TRACING
893#define trace(sym) trace_##sym
894#define smp_trace(sym) smp_trace_##sym
895
896.macro trace_apicinterrupt num sym
897apicinterrupt3 \num trace(\sym) smp_trace(\sym)
898.endm
899#else
900.macro trace_apicinterrupt num sym do_sym
901.endm
902#endif
903
904.macro apicinterrupt num sym do_sym
905apicinterrupt3 \num \sym \do_sym
906trace_apicinterrupt \num \sym
907.endm
908
322648d1 909#ifdef CONFIG_SMP
cf910e83 910apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR \
322648d1 911 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
cf910e83 912apicinterrupt3 REBOOT_VECTOR \
4ef702c1 913 reboot_interrupt smp_reboot_interrupt
322648d1 914#endif
1da177e4 915
03b48632 916#ifdef CONFIG_X86_UV
cf910e83 917apicinterrupt3 UV_BAU_MESSAGE \
322648d1 918 uv_bau_message_intr1 uv_bau_message_interrupt
03b48632 919#endif
322648d1
AH
920apicinterrupt LOCAL_TIMER_VECTOR \
921 apic_timer_interrupt smp_apic_timer_interrupt
4a4de9c7
DS
922apicinterrupt X86_PLATFORM_IPI_VECTOR \
923 x86_platform_ipi smp_x86_platform_ipi
89b831ef 924
d78f2664 925#ifdef CONFIG_HAVE_KVM
cf910e83 926apicinterrupt3 POSTED_INTR_VECTOR \
d78f2664
YZ
927 kvm_posted_intr_ipi smp_kvm_posted_intr_ipi
928#endif
929
33e5ff63 930#ifdef CONFIG_X86_MCE_THRESHOLD
322648d1 931apicinterrupt THRESHOLD_APIC_VECTOR \
7856f6cc 932 threshold_interrupt smp_threshold_interrupt
33e5ff63
SA
933#endif
934
935#ifdef CONFIG_X86_THERMAL_VECTOR
322648d1
AH
936apicinterrupt THERMAL_APIC_VECTOR \
937 thermal_interrupt smp_thermal_interrupt
33e5ff63 938#endif
1812924b 939
322648d1
AH
940#ifdef CONFIG_SMP
941apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
942 call_function_single_interrupt smp_call_function_single_interrupt
943apicinterrupt CALL_FUNCTION_VECTOR \
944 call_function_interrupt smp_call_function_interrupt
945apicinterrupt RESCHEDULE_VECTOR \
946 reschedule_interrupt smp_reschedule_interrupt
947#endif
1da177e4 948
322648d1
AH
949apicinterrupt ERROR_APIC_VECTOR \
950 error_interrupt smp_error_interrupt
951apicinterrupt SPURIOUS_APIC_VECTOR \
952 spurious_interrupt smp_spurious_interrupt
0bd7b798 953
e360adbe
PZ
954#ifdef CONFIG_IRQ_WORK
955apicinterrupt IRQ_WORK_VECTOR \
956 irq_work_interrupt smp_irq_work_interrupt
241771ef
IM
957#endif
958
1da177e4
LT
959/*
960 * Exception entry points.
0bd7b798 961 */
24933b82 962#define INIT_TSS_IST(x) PER_CPU_VAR(cpu_tss) + (TSS_ist + ((x) - 1) * 8)
577ed45e
AL
963
964.macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1
322648d1 965ENTRY(\sym)
577ed45e
AL
966 /* Sanity check */
967 .if \shift_ist != -1 && \paranoid == 0
968 .error "using shift_ist requires paranoid=1"
969 .endif
970
cb5dd2c5
AL
971 .if \has_error_code
972 XCPT_FRAME
973 .else
7effaa88 974 INTR_FRAME
cb5dd2c5 975 .endif
1da177e4 976
ee4eb87b 977 ASM_CLAC
b8b1d08b 978 PARAVIRT_ADJUST_EXCEPTION_FRAME
cb5dd2c5
AL
979
980 .ifeq \has_error_code
981 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
982 .endif
983
76f5df43 984 ALLOC_PT_GPREGS_ON_STACK
cb5dd2c5
AL
985
986 .if \paranoid
48e08d0f
AL
987 .if \paranoid == 1
988 CFI_REMEMBER_STATE
989 testl $3, CS(%rsp) /* If coming from userspace, switch */
990 jnz 1f /* stacks. */
991 .endif
ebfc453e 992 call paranoid_entry
cb5dd2c5
AL
993 .else
994 call error_entry
995 .endif
ebfc453e 996 /* returned flag: ebx=0: need swapgs on exit, ebx=1: don't need it */
cb5dd2c5 997
1bd24efc 998 DEFAULT_FRAME 0
cb5dd2c5
AL
999
1000 .if \paranoid
577ed45e
AL
1001 .if \shift_ist != -1
1002 TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */
1003 .else
b8b1d08b 1004 TRACE_IRQS_OFF
cb5dd2c5 1005 .endif
577ed45e 1006 .endif
cb5dd2c5
AL
1007
1008 movq %rsp,%rdi /* pt_regs pointer */
1009
1010 .if \has_error_code
1011 movq ORIG_RAX(%rsp),%rsi /* get error code */
1012 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1013 .else
1014 xorl %esi,%esi /* no error code */
1015 .endif
1016
577ed45e
AL
1017 .if \shift_ist != -1
1018 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\shift_ist)
1019 .endif
1020
322648d1 1021 call \do_sym
cb5dd2c5 1022
577ed45e
AL
1023 .if \shift_ist != -1
1024 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\shift_ist)
1025 .endif
1026
ebfc453e 1027 /* these procedures expect "no swapgs" flag in ebx */
cb5dd2c5 1028 .if \paranoid
ebfc453e 1029 jmp paranoid_exit
cb5dd2c5 1030 .else
ebfc453e 1031 jmp error_exit
cb5dd2c5
AL
1032 .endif
1033
48e08d0f
AL
1034 .if \paranoid == 1
1035 CFI_RESTORE_STATE
1036 /*
1037 * Paranoid entry from userspace. Switch stacks and treat it
1038 * as a normal entry. This means that paranoid handlers
1039 * run in real process context if user_mode(regs).
1040 */
10411:
1042 call error_entry
1043
1044 DEFAULT_FRAME 0
1045
1046 movq %rsp,%rdi /* pt_regs pointer */
1047 call sync_regs
1048 movq %rax,%rsp /* switch stack */
1049
1050 movq %rsp,%rdi /* pt_regs pointer */
1051
1052 .if \has_error_code
1053 movq ORIG_RAX(%rsp),%rsi /* get error code */
1054 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
1055 .else
1056 xorl %esi,%esi /* no error code */
1057 .endif
1058
1059 call \do_sym
1060
1061 jmp error_exit /* %ebx: no swapgs flag */
1062 .endif
1063
b8b1d08b 1064 CFI_ENDPROC
ddeb8f21 1065END(\sym)
322648d1 1066.endm
b8b1d08b 1067
25c74b10 1068#ifdef CONFIG_TRACING
cb5dd2c5
AL
1069.macro trace_idtentry sym do_sym has_error_code:req
1070idtentry trace(\sym) trace(\do_sym) has_error_code=\has_error_code
1071idtentry \sym \do_sym has_error_code=\has_error_code
25c74b10
SA
1072.endm
1073#else
cb5dd2c5
AL
1074.macro trace_idtentry sym do_sym has_error_code:req
1075idtentry \sym \do_sym has_error_code=\has_error_code
25c74b10
SA
1076.endm
1077#endif
1078
cb5dd2c5
AL
1079idtentry divide_error do_divide_error has_error_code=0
1080idtentry overflow do_overflow has_error_code=0
1081idtentry bounds do_bounds has_error_code=0
1082idtentry invalid_op do_invalid_op has_error_code=0
1083idtentry device_not_available do_device_not_available has_error_code=0
48e08d0f 1084idtentry double_fault do_double_fault has_error_code=1 paranoid=2
cb5dd2c5
AL
1085idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0
1086idtentry invalid_TSS do_invalid_TSS has_error_code=1
1087idtentry segment_not_present do_segment_not_present has_error_code=1
1088idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0
1089idtentry coprocessor_error do_coprocessor_error has_error_code=0
1090idtentry alignment_check do_alignment_check has_error_code=1
1091idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0
5cec93c2 1092
2601e64d 1093
9f1e87ea
CG
1094 /* Reload gs selector with exception handling */
1095 /* edi: new selector */
9f9d489a 1096ENTRY(native_load_gs_index)
7effaa88 1097 CFI_STARTPROC
df5d1874 1098 pushfq_cfi
b8aa287f 1099 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
9f1e87ea 1100 SWAPGS
0bd7b798 1101gs_change:
9f1e87ea 1102 movl %edi,%gs
1da177e4 11032: mfence /* workaround */
72fe4858 1104 SWAPGS
df5d1874 1105 popfq_cfi
9f1e87ea 1106 ret
7effaa88 1107 CFI_ENDPROC
6efdcfaf 1108END(native_load_gs_index)
0bd7b798 1109
d7abc0fa 1110 _ASM_EXTABLE(gs_change,bad_gs)
9f1e87ea 1111 .section .fixup,"ax"
1da177e4 1112 /* running with kernelgs */
0bd7b798 1113bad_gs:
72fe4858 1114 SWAPGS /* switch back to user gs */
1da177e4 1115 xorl %eax,%eax
9f1e87ea
CG
1116 movl %eax,%gs
1117 jmp 2b
1118 .previous
0bd7b798 1119
2699500b 1120/* Call softirq on interrupt stack. Interrupts are off. */
7d65f4a6 1121ENTRY(do_softirq_own_stack)
7effaa88 1122 CFI_STARTPROC
df5d1874 1123 pushq_cfi %rbp
2699500b
AK
1124 CFI_REL_OFFSET rbp,0
1125 mov %rsp,%rbp
1126 CFI_DEF_CFA_REGISTER rbp
56895530 1127 incl PER_CPU_VAR(irq_count)
26f80bd6 1128 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
2699500b 1129 push %rbp # backlink for old unwinder
ed6b676c 1130 call __do_softirq
2699500b 1131 leaveq
df5d1874 1132 CFI_RESTORE rbp
7effaa88 1133 CFI_DEF_CFA_REGISTER rsp
2699500b 1134 CFI_ADJUST_CFA_OFFSET -8
56895530 1135 decl PER_CPU_VAR(irq_count)
ed6b676c 1136 ret
7effaa88 1137 CFI_ENDPROC
7d65f4a6 1138END(do_softirq_own_stack)
75154f40 1139
3d75e1b8 1140#ifdef CONFIG_XEN
cb5dd2c5 1141idtentry xen_hypervisor_callback xen_do_hypervisor_callback has_error_code=0
3d75e1b8
JF
1142
1143/*
9f1e87ea
CG
1144 * A note on the "critical region" in our callback handler.
1145 * We want to avoid stacking callback handlers due to events occurring
1146 * during handling of the last event. To do this, we keep events disabled
1147 * until we've done all processing. HOWEVER, we must enable events before
1148 * popping the stack frame (can't be done atomically) and so it would still
1149 * be possible to get enough handler activations to overflow the stack.
1150 * Although unlikely, bugs of that kind are hard to track down, so we'd
1151 * like to avoid the possibility.
1152 * So, on entry to the handler we detect whether we interrupted an
1153 * existing activation in its critical region -- if so, we pop the current
1154 * activation and restart the handler using the previous one.
1155 */
3d75e1b8
JF
1156ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1157 CFI_STARTPROC
9f1e87ea
CG
1158/*
1159 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1160 * see the correct pointer to the pt_regs
1161 */
3d75e1b8
JF
1162 movq %rdi, %rsp # we don't return, adjust the stack frame
1163 CFI_ENDPROC
dcd072e2 1164 DEFAULT_FRAME
56895530 116511: incl PER_CPU_VAR(irq_count)
3d75e1b8
JF
1166 movq %rsp,%rbp
1167 CFI_DEF_CFA_REGISTER rbp
26f80bd6 1168 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
3d75e1b8
JF
1169 pushq %rbp # backlink for old unwinder
1170 call xen_evtchn_do_upcall
1171 popq %rsp
1172 CFI_DEF_CFA_REGISTER rsp
56895530 1173 decl PER_CPU_VAR(irq_count)
fdfd811d
DV
1174#ifndef CONFIG_PREEMPT
1175 call xen_maybe_preempt_hcall
1176#endif
3d75e1b8
JF
1177 jmp error_exit
1178 CFI_ENDPROC
371c394a 1179END(xen_do_hypervisor_callback)
3d75e1b8
JF
1180
1181/*
9f1e87ea
CG
1182 * Hypervisor uses this for application faults while it executes.
1183 * We get here for two reasons:
1184 * 1. Fault while reloading DS, ES, FS or GS
1185 * 2. Fault while executing IRET
1186 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1187 * registers that could be reloaded and zeroed the others.
1188 * Category 2 we fix up by killing the current process. We cannot use the
1189 * normal Linux return path in this case because if we use the IRET hypercall
1190 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1191 * We distinguish between categories by comparing each saved segment register
1192 * with its current contents: any discrepancy means we in category 1.
1193 */
3d75e1b8 1194ENTRY(xen_failsafe_callback)
dcd072e2
AH
1195 INTR_FRAME 1 (6*8)
1196 /*CFI_REL_OFFSET gs,GS*/
1197 /*CFI_REL_OFFSET fs,FS*/
1198 /*CFI_REL_OFFSET es,ES*/
1199 /*CFI_REL_OFFSET ds,DS*/
1200 CFI_REL_OFFSET r11,8
1201 CFI_REL_OFFSET rcx,0
3d75e1b8
JF
1202 movw %ds,%cx
1203 cmpw %cx,0x10(%rsp)
1204 CFI_REMEMBER_STATE
1205 jne 1f
1206 movw %es,%cx
1207 cmpw %cx,0x18(%rsp)
1208 jne 1f
1209 movw %fs,%cx
1210 cmpw %cx,0x20(%rsp)
1211 jne 1f
1212 movw %gs,%cx
1213 cmpw %cx,0x28(%rsp)
1214 jne 1f
1215 /* All segments match their saved values => Category 2 (Bad IRET). */
1216 movq (%rsp),%rcx
1217 CFI_RESTORE rcx
1218 movq 8(%rsp),%r11
1219 CFI_RESTORE r11
1220 addq $0x30,%rsp
1221 CFI_ADJUST_CFA_OFFSET -0x30
14ae22ba
IM
1222 pushq_cfi $0 /* RIP */
1223 pushq_cfi %r11
1224 pushq_cfi %rcx
4a5c3e77 1225 jmp general_protection
3d75e1b8
JF
1226 CFI_RESTORE_STATE
12271: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1228 movq (%rsp),%rcx
1229 CFI_RESTORE rcx
1230 movq 8(%rsp),%r11
1231 CFI_RESTORE r11
1232 addq $0x30,%rsp
1233 CFI_ADJUST_CFA_OFFSET -0x30
a349e23d 1234 pushq_cfi $-1 /* orig_ax = -1 => not a system call */
76f5df43
DV
1235 ALLOC_PT_GPREGS_ON_STACK
1236 SAVE_C_REGS
1237 SAVE_EXTRA_REGS
3d75e1b8
JF
1238 jmp error_exit
1239 CFI_ENDPROC
3d75e1b8
JF
1240END(xen_failsafe_callback)
1241
cf910e83 1242apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
38e20b07
SY
1243 xen_hvm_callback_vector xen_evtchn_do_upcall
1244
3d75e1b8 1245#endif /* CONFIG_XEN */
ddeb8f21 1246
bc2b0331 1247#if IS_ENABLED(CONFIG_HYPERV)
cf910e83 1248apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \
bc2b0331
S
1249 hyperv_callback_vector hyperv_vector_handler
1250#endif /* CONFIG_HYPERV */
1251
577ed45e
AL
1252idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
1253idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK
6f442be2 1254idtentry stack_segment do_stack_segment has_error_code=1
6cac5a92 1255#ifdef CONFIG_XEN
cb5dd2c5
AL
1256idtentry xen_debug do_debug has_error_code=0
1257idtentry xen_int3 do_int3 has_error_code=0
1258idtentry xen_stack_segment do_stack_segment has_error_code=1
6cac5a92 1259#endif
cb5dd2c5
AL
1260idtentry general_protection do_general_protection has_error_code=1
1261trace_idtentry page_fault do_page_fault has_error_code=1
631bc487 1262#ifdef CONFIG_KVM_GUEST
cb5dd2c5 1263idtentry async_page_fault do_async_page_fault has_error_code=1
631bc487 1264#endif
ddeb8f21 1265#ifdef CONFIG_X86_MCE
cb5dd2c5 1266idtentry machine_check has_error_code=0 paranoid=1 do_sym=*machine_check_vector(%rip)
ddeb8f21
AH
1267#endif
1268
ebfc453e
DV
1269/*
1270 * Save all registers in pt_regs, and switch gs if needed.
1271 * Use slow, but surefire "are we in kernel?" check.
1272 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
1273 */
1274ENTRY(paranoid_entry)
1275 XCPT_FRAME 1 15*8
1eeb207f
DV
1276 cld
1277 SAVE_C_REGS 8
1278 SAVE_EXTRA_REGS 8
1279 movl $1,%ebx
1280 movl $MSR_GS_BASE,%ecx
1281 rdmsr
1282 testl %edx,%edx
1283 js 1f /* negative -> in kernel */
1284 SWAPGS
1285 xorl %ebx,%ebx
12861: ret
1287 CFI_ENDPROC
ebfc453e 1288END(paranoid_entry)
ddeb8f21 1289
ebfc453e
DV
1290/*
1291 * "Paranoid" exit path from exception stack. This is invoked
1292 * only on return from non-NMI IST interrupts that came
1293 * from kernel space.
1294 *
1295 * We may be returning to very strange contexts (e.g. very early
1296 * in syscall entry), so checking for preemption here would
1297 * be complicated. Fortunately, we there's no good reason
1298 * to try to handle preemption here.
1299 */
1300/* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */
ddeb8f21 1301ENTRY(paranoid_exit)
1f130a78 1302 DEFAULT_FRAME
ddeb8f21 1303 DISABLE_INTERRUPTS(CLBR_NONE)
5963e317 1304 TRACE_IRQS_OFF_DEBUG
ddeb8f21 1305 testl %ebx,%ebx /* swapgs needed? */
0d550836 1306 jnz paranoid_exit_no_swapgs
f2db9382 1307 TRACE_IRQS_IRETQ
ddeb8f21 1308 SWAPGS_UNSAFE_STACK
0d550836
DV
1309 jmp paranoid_exit_restore
1310paranoid_exit_no_swapgs:
f2db9382 1311 TRACE_IRQS_IRETQ_DEBUG
0d550836 1312paranoid_exit_restore:
76f5df43
DV
1313 RESTORE_EXTRA_REGS
1314 RESTORE_C_REGS
1315 REMOVE_PT_GPREGS_FROM_STACK 8
48e08d0f 1316 INTERRUPT_RETURN
ddeb8f21
AH
1317 CFI_ENDPROC
1318END(paranoid_exit)
1319
1320/*
ebfc453e
DV
1321 * Save all registers in pt_regs, and switch gs if needed.
1322 * Return: ebx=0: need swapgs on exit, ebx=1: otherwise
ddeb8f21
AH
1323 */
1324ENTRY(error_entry)
ebfc453e 1325 XCPT_FRAME 1 15*8
ddeb8f21 1326 cld
76f5df43
DV
1327 SAVE_C_REGS 8
1328 SAVE_EXTRA_REGS 8
ddeb8f21
AH
1329 xorl %ebx,%ebx
1330 testl $3,CS+8(%rsp)
1331 je error_kernelspace
1332error_swapgs:
1333 SWAPGS
1334error_sti:
1335 TRACE_IRQS_OFF
1336 ret
ddeb8f21 1337
ebfc453e
DV
1338 /*
1339 * There are two places in the kernel that can potentially fault with
1340 * usergs. Handle them here. B stepping K8s sometimes report a
1341 * truncated RIP for IRET exceptions returning to compat mode. Check
1342 * for these here too.
1343 */
ddeb8f21 1344error_kernelspace:
3bab13b0 1345 CFI_REL_OFFSET rcx, RCX+8
ddeb8f21 1346 incl %ebx
7209a75d 1347 leaq native_irq_return_iret(%rip),%rcx
ddeb8f21 1348 cmpq %rcx,RIP+8(%rsp)
b645af2d 1349 je error_bad_iret
ae24ffe5
BG
1350 movl %ecx,%eax /* zero extend */
1351 cmpq %rax,RIP+8(%rsp)
1352 je bstep_iret
ddeb8f21 1353 cmpq $gs_change,RIP+8(%rsp)
9f1e87ea 1354 je error_swapgs
ddeb8f21 1355 jmp error_sti
ae24ffe5
BG
1356
1357bstep_iret:
1358 /* Fix truncated RIP */
1359 movq %rcx,RIP+8(%rsp)
b645af2d
AL
1360 /* fall through */
1361
1362error_bad_iret:
1363 SWAPGS
1364 mov %rsp,%rdi
1365 call fixup_bad_iret
1366 mov %rax,%rsp
1367 decl %ebx /* Return to usergs */
1368 jmp error_sti
e6b04b6b 1369 CFI_ENDPROC
ddeb8f21
AH
1370END(error_entry)
1371
1372
ebfc453e 1373/* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */
ddeb8f21
AH
1374ENTRY(error_exit)
1375 DEFAULT_FRAME
1376 movl %ebx,%eax
76f5df43 1377 RESTORE_EXTRA_REGS
ddeb8f21
AH
1378 DISABLE_INTERRUPTS(CLBR_NONE)
1379 TRACE_IRQS_OFF
1380 GET_THREAD_INFO(%rcx)
1381 testl %eax,%eax
1382 jne retint_kernel
1383 LOCKDEP_SYS_EXIT_IRQ
1384 movl TI_flags(%rcx),%edx
1385 movl $_TIF_WORK_MASK,%edi
1386 andl %edi,%edx
1387 jnz retint_careful
1388 jmp retint_swapgs
1389 CFI_ENDPROC
1390END(error_exit)
1391
3f3c8b8c
SR
1392/*
1393 * Test if a given stack is an NMI stack or not.
1394 */
1395 .macro test_in_nmi reg stack nmi_ret normal_ret
1396 cmpq %\reg, \stack
1397 ja \normal_ret
1398 subq $EXCEPTION_STKSZ, %\reg
1399 cmpq %\reg, \stack
1400 jb \normal_ret
1401 jmp \nmi_ret
1402 .endm
ddeb8f21
AH
1403
1404 /* runs on exception stack */
1405ENTRY(nmi)
1406 INTR_FRAME
1407 PARAVIRT_ADJUST_EXCEPTION_FRAME
3f3c8b8c
SR
1408 /*
1409 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1410 * the iretq it performs will take us out of NMI context.
1411 * This means that we can have nested NMIs where the next
1412 * NMI is using the top of the stack of the previous NMI. We
1413 * can't let it execute because the nested NMI will corrupt the
1414 * stack of the previous NMI. NMI handlers are not re-entrant
1415 * anyway.
1416 *
1417 * To handle this case we do the following:
1418 * Check the a special location on the stack that contains
1419 * a variable that is set when NMIs are executing.
1420 * The interrupted task's stack is also checked to see if it
1421 * is an NMI stack.
1422 * If the variable is not set and the stack is not the NMI
1423 * stack then:
1424 * o Set the special variable on the stack
1425 * o Copy the interrupt frame into a "saved" location on the stack
1426 * o Copy the interrupt frame into a "copy" location on the stack
1427 * o Continue processing the NMI
1428 * If the variable is set or the previous stack is the NMI stack:
1429 * o Modify the "copy" location to jump to the repeate_nmi
1430 * o return back to the first NMI
1431 *
1432 * Now on exit of the first NMI, we first clear the stack variable
1433 * The NMI stack will tell any nested NMIs at that point that it is
1434 * nested. Then we pop the stack normally with iret, and if there was
1435 * a nested NMI that updated the copy interrupt stack frame, a
1436 * jump will be made to the repeat_nmi code that will handle the second
1437 * NMI.
1438 */
1439
1440 /* Use %rdx as out temp variable throughout */
1441 pushq_cfi %rdx
62610913 1442 CFI_REL_OFFSET rdx, 0
3f3c8b8c 1443
45d5a168
SR
1444 /*
1445 * If %cs was not the kernel segment, then the NMI triggered in user
1446 * space, which means it is definitely not nested.
1447 */
a38449ef 1448 cmpl $__KERNEL_CS, 16(%rsp)
45d5a168
SR
1449 jne first_nmi
1450
3f3c8b8c
SR
1451 /*
1452 * Check the special variable on the stack to see if NMIs are
1453 * executing.
1454 */
a38449ef 1455 cmpl $1, -8(%rsp)
3f3c8b8c
SR
1456 je nested_nmi
1457
1458 /*
1459 * Now test if the previous stack was an NMI stack.
1460 * We need the double check. We check the NMI stack to satisfy the
1461 * race when the first NMI clears the variable before returning.
1462 * We check the variable because the first NMI could be in a
1463 * breakpoint routine using a breakpoint stack.
1464 */
1465 lea 6*8(%rsp), %rdx
1466 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
62610913 1467 CFI_REMEMBER_STATE
3f3c8b8c
SR
1468
1469nested_nmi:
1470 /*
1471 * Do nothing if we interrupted the fixup in repeat_nmi.
1472 * It's about to repeat the NMI handler, so we are fine
1473 * with ignoring this one.
1474 */
1475 movq $repeat_nmi, %rdx
1476 cmpq 8(%rsp), %rdx
1477 ja 1f
1478 movq $end_repeat_nmi, %rdx
1479 cmpq 8(%rsp), %rdx
1480 ja nested_nmi_out
1481
14821:
1483 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
28696f43 1484 leaq -1*8(%rsp), %rdx
3f3c8b8c 1485 movq %rdx, %rsp
28696f43
SQ
1486 CFI_ADJUST_CFA_OFFSET 1*8
1487 leaq -10*8(%rsp), %rdx
3f3c8b8c
SR
1488 pushq_cfi $__KERNEL_DS
1489 pushq_cfi %rdx
1490 pushfq_cfi
1491 pushq_cfi $__KERNEL_CS
1492 pushq_cfi $repeat_nmi
1493
1494 /* Put stack back */
28696f43
SQ
1495 addq $(6*8), %rsp
1496 CFI_ADJUST_CFA_OFFSET -6*8
3f3c8b8c
SR
1497
1498nested_nmi_out:
1499 popq_cfi %rdx
62610913 1500 CFI_RESTORE rdx
3f3c8b8c
SR
1501
1502 /* No need to check faults here */
1503 INTERRUPT_RETURN
1504
62610913 1505 CFI_RESTORE_STATE
3f3c8b8c
SR
1506first_nmi:
1507 /*
1508 * Because nested NMIs will use the pushed location that we
1509 * stored in rdx, we must keep that space available.
1510 * Here's what our stack frame will look like:
1511 * +-------------------------+
1512 * | original SS |
1513 * | original Return RSP |
1514 * | original RFLAGS |
1515 * | original CS |
1516 * | original RIP |
1517 * +-------------------------+
1518 * | temp storage for rdx |
1519 * +-------------------------+
1520 * | NMI executing variable |
1521 * +-------------------------+
3f3c8b8c
SR
1522 * | copied SS |
1523 * | copied Return RSP |
1524 * | copied RFLAGS |
1525 * | copied CS |
1526 * | copied RIP |
1527 * +-------------------------+
28696f43
SQ
1528 * | Saved SS |
1529 * | Saved Return RSP |
1530 * | Saved RFLAGS |
1531 * | Saved CS |
1532 * | Saved RIP |
1533 * +-------------------------+
3f3c8b8c
SR
1534 * | pt_regs |
1535 * +-------------------------+
1536 *
79fb4ad6
SR
1537 * The saved stack frame is used to fix up the copied stack frame
1538 * that a nested NMI may change to make the interrupted NMI iret jump
1539 * to the repeat_nmi. The original stack frame and the temp storage
3f3c8b8c
SR
1540 * is also used by nested NMIs and can not be trusted on exit.
1541 */
79fb4ad6 1542 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
62610913
JB
1543 movq (%rsp), %rdx
1544 CFI_RESTORE rdx
1545
3f3c8b8c
SR
1546 /* Set the NMI executing variable on the stack. */
1547 pushq_cfi $1
1548
28696f43
SQ
1549 /*
1550 * Leave room for the "copied" frame
1551 */
1552 subq $(5*8), %rsp
444723dc 1553 CFI_ADJUST_CFA_OFFSET 5*8
28696f43 1554
3f3c8b8c
SR
1555 /* Copy the stack frame to the Saved frame */
1556 .rept 5
28696f43 1557 pushq_cfi 11*8(%rsp)
3f3c8b8c 1558 .endr
911d2bb5 1559 CFI_DEF_CFA_OFFSET 5*8
62610913 1560
79fb4ad6
SR
1561 /* Everything up to here is safe from nested NMIs */
1562
62610913
JB
1563 /*
1564 * If there was a nested NMI, the first NMI's iret will return
1565 * here. But NMIs are still enabled and we can take another
1566 * nested NMI. The nested NMI checks the interrupted RIP to see
1567 * if it is between repeat_nmi and end_repeat_nmi, and if so
1568 * it will just return, as we are about to repeat an NMI anyway.
1569 * This makes it safe to copy to the stack frame that a nested
1570 * NMI will update.
1571 */
1572repeat_nmi:
1573 /*
1574 * Update the stack variable to say we are still in NMI (the update
1575 * is benign for the non-repeat case, where 1 was pushed just above
1576 * to this very stack slot).
1577 */
28696f43 1578 movq $1, 10*8(%rsp)
3f3c8b8c
SR
1579
1580 /* Make another copy, this one may be modified by nested NMIs */
28696f43
SQ
1581 addq $(10*8), %rsp
1582 CFI_ADJUST_CFA_OFFSET -10*8
3f3c8b8c 1583 .rept 5
28696f43 1584 pushq_cfi -6*8(%rsp)
3f3c8b8c 1585 .endr
28696f43 1586 subq $(5*8), %rsp
911d2bb5 1587 CFI_DEF_CFA_OFFSET 5*8
62610913 1588end_repeat_nmi:
3f3c8b8c
SR
1589
1590 /*
1591 * Everything below this point can be preempted by a nested
79fb4ad6
SR
1592 * NMI if the first NMI took an exception and reset our iret stack
1593 * so that we repeat another NMI.
3f3c8b8c 1594 */
1fd466ef 1595 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
76f5df43
DV
1596 ALLOC_PT_GPREGS_ON_STACK
1597
1fd466ef 1598 /*
ebfc453e 1599 * Use paranoid_entry to handle SWAPGS, but no need to use paranoid_exit
1fd466ef
SR
1600 * as we should not be calling schedule in NMI context.
1601 * Even with normal interrupts enabled. An NMI should not be
1602 * setting NEED_RESCHED or anything that normal interrupts and
1603 * exceptions might do.
1604 */
ebfc453e 1605 call paranoid_entry
ddeb8f21 1606 DEFAULT_FRAME 0
7fbb98c5
SR
1607
1608 /*
1609 * Save off the CR2 register. If we take a page fault in the NMI then
1610 * it could corrupt the CR2 value. If the NMI preempts a page fault
1611 * handler before it was able to read the CR2 register, and then the
1612 * NMI itself takes a page fault, the page fault that was preempted
1613 * will read the information from the NMI page fault and not the
1614 * origin fault. Save it off and restore it if it changes.
1615 * Use the r12 callee-saved register.
1616 */
1617 movq %cr2, %r12
1618
ddeb8f21
AH
1619 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1620 movq %rsp,%rdi
1621 movq $-1,%rsi
1622 call do_nmi
7fbb98c5
SR
1623
1624 /* Did the NMI take a page fault? Restore cr2 if it did */
1625 movq %cr2, %rcx
1626 cmpq %rcx, %r12
1627 je 1f
1628 movq %r12, %cr2
16291:
1630
ddeb8f21
AH
1631 testl %ebx,%ebx /* swapgs needed? */
1632 jnz nmi_restore
ddeb8f21
AH
1633nmi_swapgs:
1634 SWAPGS_UNSAFE_STACK
1635nmi_restore:
76f5df43
DV
1636 RESTORE_EXTRA_REGS
1637 RESTORE_C_REGS
444723dc 1638 /* Pop the extra iret frame at once */
76f5df43 1639 REMOVE_PT_GPREGS_FROM_STACK 6*8
28696f43 1640
3f3c8b8c 1641 /* Clear the NMI executing stack variable */
28696f43 1642 movq $0, 5*8(%rsp)
ddeb8f21 1643 jmp irq_return
9f1e87ea 1644 CFI_ENDPROC
ddeb8f21
AH
1645END(nmi)
1646
1647ENTRY(ignore_sysret)
1648 CFI_STARTPROC
1649 mov $-ENOSYS,%eax
1650 sysret
1651 CFI_ENDPROC
1652END(ignore_sysret)
1653