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