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