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