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