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