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