Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | /* |
| 10 | * entry.S contains the system-call and fault low-level handling routines. |
| 11 | * |
Andy Lutomirski | 8b4777a | 2011-06-05 13:50:18 -0400 | [diff] [blame] | 12 | * Some of this is documented in Documentation/x86/entry_64.txt |
| 13 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * NOTE: This code handles signal-recognition, which happens every time |
| 15 | * after an interrupt and after each system call. |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 16 | * |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 17 | * A note on terminology: |
Ingo Molnar | 7fcb3bc | 2015-03-17 14:42:59 +0100 | [diff] [blame] | 18 | * - iret frame: Architecture defined interrupt frame from SS to RIP |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 19 | * at the top of the kernel process stack. |
Andi Kleen | 2e91a17 | 2006-09-26 10:52:29 +0200 | [diff] [blame] | 20 | * |
| 21 | * Some macro usage: |
Andi Kleen | 2e91a17 | 2006-09-26 10:52:29 +0200 | [diff] [blame] | 22 | * - ENTRY/END Define functions in the symbol table. |
Andi Kleen | 2e91a17 | 2006-09-26 10:52:29 +0200 | [diff] [blame] | 23 | * - TRACE_IRQ_* - Trace hard interrupt state for lock debugging. |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 24 | * - idtentry - Define exception entry points. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | */ |
| 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/linkage.h> |
| 28 | #include <asm/segment.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <asm/cache.h> |
| 30 | #include <asm/errno.h> |
Ingo Molnar | d36f947 | 2015-06-03 18:29:26 +0200 | [diff] [blame] | 31 | #include "calling.h" |
Sam Ravnborg | e2d5df9 | 2005-09-09 21:28:48 +0200 | [diff] [blame] | 32 | #include <asm/asm-offsets.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <asm/msr.h> |
| 34 | #include <asm/unistd.h> |
| 35 | #include <asm/thread_info.h> |
| 36 | #include <asm/hw_irq.h> |
Jeremy Fitzhardinge | 0341c14 | 2009-02-13 11:14:01 -0800 | [diff] [blame] | 37 | #include <asm/page_types.h> |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 38 | #include <asm/irqflags.h> |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 39 | #include <asm/paravirt.h> |
Tejun Heo | 9939dda | 2009-01-13 20:41:35 +0900 | [diff] [blame] | 40 | #include <asm/percpu.h> |
H. Peter Anvin | d7abc0f | 2012-04-20 12:19:50 -0700 | [diff] [blame] | 41 | #include <asm/asm.h> |
Frederic Weisbecker | 91d1aa43 | 2012-11-27 19:33:25 +0100 | [diff] [blame] | 42 | #include <asm/context_tracking.h> |
H. Peter Anvin | 63bcff2 | 2012-09-21 12:43:12 -0700 | [diff] [blame] | 43 | #include <asm/smap.h> |
H. Peter Anvin | 3891a04 | 2014-04-29 16:46:09 -0700 | [diff] [blame] | 44 | #include <asm/pgtable_types.h> |
Eric Paris | d7e7528 | 2012-01-03 14:23:06 -0500 | [diff] [blame] | 45 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Roland McGrath | 86a1c34 | 2008-06-23 15:37:04 -0700 | [diff] [blame] | 47 | /* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */ |
| 48 | #include <linux/elf-em.h> |
| 49 | #define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) |
| 50 | #define __AUDIT_ARCH_64BIT 0x80000000 |
| 51 | #define __AUDIT_ARCH_LE 0x40000000 |
| 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | .code64 |
Jiri Olsa | ea71454 | 2011-03-07 19:10:39 +0100 | [diff] [blame] | 54 | .section .entry.text, "ax" |
| 55 | |
Arnaldo Carvalho de Melo | 16444a8 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 56 | |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 57 | #ifdef CONFIG_PARAVIRT |
Jeremy Fitzhardinge | 2be2998 | 2008-06-25 00:19:28 -0400 | [diff] [blame] | 58 | ENTRY(native_usergs_sysret64) |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 59 | swapgs |
| 60 | sysretq |
Cyrill Gorcunov | b3baaa1 | 2009-02-23 22:57:00 +0300 | [diff] [blame] | 61 | ENDPROC(native_usergs_sysret64) |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 62 | #endif /* CONFIG_PARAVIRT */ |
| 63 | |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 64 | |
Denys Vlasenko | f2db938 | 2015-02-26 14:40:30 -0800 | [diff] [blame] | 65 | .macro TRACE_IRQS_IRETQ |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 66 | #ifdef CONFIG_TRACE_IRQFLAGS |
Denys Vlasenko | f2db938 | 2015-02-26 14:40:30 -0800 | [diff] [blame] | 67 | bt $9,EFLAGS(%rsp) /* interrupts off? */ |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 68 | jnc 1f |
| 69 | TRACE_IRQS_ON |
| 70 | 1: |
| 71 | #endif |
| 72 | .endm |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | /* |
Steven Rostedt | 5963e31 | 2012-05-30 11:54:53 -0400 | [diff] [blame] | 75 | * When dynamic function tracer is enabled it will add a breakpoint |
| 76 | * to all locations that it is about to modify, sync CPUs, update |
| 77 | * all the code, sync CPUs, then remove the breakpoints. In this time |
| 78 | * if lockdep is enabled, it might jump back into the debug handler |
| 79 | * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF). |
| 80 | * |
| 81 | * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to |
| 82 | * make sure the stack pointer does not get reset back to the top |
| 83 | * of the debug stack, and instead just reuses the current stack. |
| 84 | */ |
| 85 | #if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS) |
| 86 | |
| 87 | .macro TRACE_IRQS_OFF_DEBUG |
| 88 | call debug_stack_set_zero |
| 89 | TRACE_IRQS_OFF |
| 90 | call debug_stack_reset |
| 91 | .endm |
| 92 | |
| 93 | .macro TRACE_IRQS_ON_DEBUG |
| 94 | call debug_stack_set_zero |
| 95 | TRACE_IRQS_ON |
| 96 | call debug_stack_reset |
| 97 | .endm |
| 98 | |
Denys Vlasenko | f2db938 | 2015-02-26 14:40:30 -0800 | [diff] [blame] | 99 | .macro TRACE_IRQS_IRETQ_DEBUG |
| 100 | bt $9,EFLAGS(%rsp) /* interrupts off? */ |
Steven Rostedt | 5963e31 | 2012-05-30 11:54:53 -0400 | [diff] [blame] | 101 | jnc 1f |
| 102 | TRACE_IRQS_ON_DEBUG |
| 103 | 1: |
| 104 | .endm |
| 105 | |
| 106 | #else |
| 107 | # define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF |
| 108 | # define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON |
| 109 | # define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ |
| 110 | #endif |
| 111 | |
| 112 | /* |
Denys Vlasenko | b87cf63 | 2015-02-26 14:40:32 -0800 | [diff] [blame] | 113 | * 64bit SYSCALL instruction entry. Up to 6 arguments in registers. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | * |
Denys Vlasenko | b87cf63 | 2015-02-26 14:40:32 -0800 | [diff] [blame] | 115 | * 64bit SYSCALL saves rip to rcx, clears rflags.RF, then saves rflags to r11, |
| 116 | * then loads new ss, cs, and rip from previously programmed MSRs. |
| 117 | * rflags gets masked by a value from another MSR (so CLD and CLAC |
| 118 | * are not needed). SYSCALL does not save anything on the stack |
| 119 | * and does not change rsp. |
| 120 | * |
| 121 | * Registers on entry: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | * rax system call number |
Denys Vlasenko | b87cf63 | 2015-02-26 14:40:32 -0800 | [diff] [blame] | 123 | * rcx return address |
| 124 | * r11 saved rflags (note: r11 is callee-clobbered register in C ABI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | * rdi arg0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | * rsi arg1 |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 127 | * rdx arg2 |
Denys Vlasenko | b87cf63 | 2015-02-26 14:40:32 -0800 | [diff] [blame] | 128 | * r10 arg3 (needs to be moved to rcx to conform to C ABI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | * r8 arg4 |
| 130 | * r9 arg5 |
Denys Vlasenko | b87cf63 | 2015-02-26 14:40:32 -0800 | [diff] [blame] | 131 | * (note: r12-r15,rbp,rbx are callee-preserved in C ABI) |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 132 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | * Only called from user space. |
| 134 | * |
Ingo Molnar | 7fcb3bc | 2015-03-17 14:42:59 +0100 | [diff] [blame] | 135 | * When user can change pt_regs->foo always force IRET. That is because |
Andi Kleen | 7bf36bb | 2006-04-07 19:50:00 +0200 | [diff] [blame] | 136 | * it deals with uncanonical addresses better. SYSRET has trouble |
| 137 | * with them due to bugs in both AMD and Intel CPUs. |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 138 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
| 140 | ENTRY(system_call) |
Denys Vlasenko | 9ed8e7d | 2015-03-19 18:17:47 +0100 | [diff] [blame] | 141 | /* |
| 142 | * Interrupts are off on entry. |
| 143 | * We do not frame this tiny irq-off block with TRACE_IRQS_OFF/ON, |
| 144 | * it is too small to ever cause noticeable irq latency. |
| 145 | */ |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 146 | SWAPGS_UNSAFE_STACK |
| 147 | /* |
| 148 | * A hypervisor implementation might want to use a label |
| 149 | * after the swapgs, so that it can do the swapgs |
| 150 | * for the guest and jump here on syscall. |
| 151 | */ |
Jan Beulich | f6b2bc8 | 2011-11-29 11:24:10 +0000 | [diff] [blame] | 152 | GLOBAL(system_call_after_swapgs) |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 153 | |
Ingo Molnar | c38e503 | 2015-03-17 14:42:59 +0100 | [diff] [blame] | 154 | movq %rsp,PER_CPU_VAR(rsp_scratch) |
Denys Vlasenko | 3a23208 | 2015-04-24 17:31:35 +0200 | [diff] [blame] | 155 | movq PER_CPU_VAR(cpu_current_top_of_stack),%rsp |
Denys Vlasenko | 9ed8e7d | 2015-03-19 18:17:47 +0100 | [diff] [blame] | 156 | |
| 157 | /* Construct struct pt_regs on stack */ |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 158 | pushq $__USER_DS /* pt_regs->ss */ |
| 159 | pushq PER_CPU_VAR(rsp_scratch) /* pt_regs->sp */ |
Denys Vlasenko | 33db1fd | 2015-03-17 14:52:24 +0100 | [diff] [blame] | 160 | /* |
Denys Vlasenko | 9ed8e7d | 2015-03-19 18:17:47 +0100 | [diff] [blame] | 161 | * Re-enable interrupts. |
| 162 | * We use 'rsp_scratch' as a scratch space, hence irq-off block above |
| 163 | * must execute atomically in the face of possible interrupt-driven |
| 164 | * task preemption. We must enable interrupts only after we're done |
| 165 | * with using rsp_scratch: |
Denys Vlasenko | 33db1fd | 2015-03-17 14:52:24 +0100 | [diff] [blame] | 166 | */ |
| 167 | ENABLE_INTERRUPTS(CLBR_NONE) |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 168 | pushq %r11 /* pt_regs->flags */ |
| 169 | pushq $__USER_CS /* pt_regs->cs */ |
| 170 | pushq %rcx /* pt_regs->ip */ |
| 171 | pushq %rax /* pt_regs->orig_ax */ |
| 172 | pushq %rdi /* pt_regs->di */ |
| 173 | pushq %rsi /* pt_regs->si */ |
| 174 | pushq %rdx /* pt_regs->dx */ |
| 175 | pushq %rcx /* pt_regs->cx */ |
| 176 | pushq $-ENOSYS /* pt_regs->ax */ |
| 177 | pushq %r8 /* pt_regs->r8 */ |
| 178 | pushq %r9 /* pt_regs->r9 */ |
| 179 | pushq %r10 /* pt_regs->r10 */ |
| 180 | pushq %r11 /* pt_regs->r11 */ |
Denys Vlasenko | a71ffdd | 2015-03-19 18:17:48 +0100 | [diff] [blame] | 181 | sub $(6*8),%rsp /* pt_regs->bp,bx,r12-15 not saved */ |
Denys Vlasenko | 9ed8e7d | 2015-03-19 18:17:47 +0100 | [diff] [blame] | 182 | |
Ingo Molnar | dca5b52 | 2015-03-24 19:44:42 +0100 | [diff] [blame] | 183 | testl $_TIF_WORK_SYSCALL_ENTRY, ASM_THREAD_INFO(TI_flags, %rsp, SIZEOF_PTREGS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | jnz tracesys |
Roland McGrath | 86a1c34 | 2008-06-23 15:37:04 -0700 | [diff] [blame] | 185 | system_call_fastpath: |
H. Peter Anvin | fca460f | 2012-02-19 07:56:26 -0800 | [diff] [blame] | 186 | #if __SYSCALL_MASK == ~0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | cmpq $__NR_syscall_max,%rax |
H. Peter Anvin | fca460f | 2012-02-19 07:56:26 -0800 | [diff] [blame] | 188 | #else |
| 189 | andl $__SYSCALL_MASK,%eax |
| 190 | cmpl $__NR_syscall_max,%eax |
| 191 | #endif |
Denys Vlasenko | 146b2b0 | 2015-03-25 18:18:13 +0100 | [diff] [blame] | 192 | ja 1f /* return -ENOSYS (already in pt_regs->ax) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | movq %r10,%rcx |
Denys Vlasenko | 146b2b0 | 2015-03-25 18:18:13 +0100 | [diff] [blame] | 194 | call *sys_call_table(,%rax,8) |
Denys Vlasenko | f2db938 | 2015-02-26 14:40:30 -0800 | [diff] [blame] | 195 | movq %rax,RAX(%rsp) |
Denys Vlasenko | 146b2b0 | 2015-03-25 18:18:13 +0100 | [diff] [blame] | 196 | 1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | /* |
Denys Vlasenko | 146b2b0 | 2015-03-25 18:18:13 +0100 | [diff] [blame] | 198 | * Syscall return path ending with SYSRET (fast path). |
| 199 | * Has incompletely filled pt_regs. |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 200 | */ |
Peter Zijlstra | 10cd706 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 201 | LOCKDEP_SYS_EXIT |
Denys Vlasenko | 4416c5a | 2015-03-31 19:00:03 +0200 | [diff] [blame] | 202 | /* |
| 203 | * We do not frame this tiny irq-off block with TRACE_IRQS_OFF/ON, |
| 204 | * it is too small to ever cause noticeable irq latency. |
| 205 | */ |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 206 | DISABLE_INTERRUPTS(CLBR_NONE) |
Andy Lutomirski | b3494a4 | 2015-03-23 12:32:54 -0700 | [diff] [blame] | 207 | |
| 208 | /* |
| 209 | * We must check ti flags with interrupts (or at least preemption) |
| 210 | * off because we must *never* return to userspace without |
| 211 | * processing exit work that is enqueued if we're preempted here. |
| 212 | * In particular, returning to userspace with any of the one-shot |
| 213 | * flags (TIF_NOTIFY_RESUME, TIF_USER_RETURN_NOTIFY, etc) set is |
| 214 | * very bad. |
| 215 | */ |
Ingo Molnar | 06ab9c1 | 2015-03-24 21:14:07 +0100 | [diff] [blame] | 216 | testl $_TIF_ALLWORK_MASK, ASM_THREAD_INFO(TI_flags, %rsp, SIZEOF_PTREGS) |
| 217 | jnz int_ret_from_sys_call_irqs_off /* Go to the slow path */ |
Andy Lutomirski | b3494a4 | 2015-03-23 12:32:54 -0700 | [diff] [blame] | 218 | |
Denys Vlasenko | 29722cd | 2015-03-09 19:39:21 +0100 | [diff] [blame] | 219 | RESTORE_C_REGS_EXCEPT_RCX_R11 |
| 220 | movq RIP(%rsp),%rcx |
Denys Vlasenko | 29722cd | 2015-03-09 19:39:21 +0100 | [diff] [blame] | 221 | movq EFLAGS(%rsp),%r11 |
Denys Vlasenko | 263042e | 2015-03-09 19:39:23 +0100 | [diff] [blame] | 222 | movq RSP(%rsp),%rsp |
Denys Vlasenko | b87cf63 | 2015-02-26 14:40:32 -0800 | [diff] [blame] | 223 | /* |
| 224 | * 64bit SYSRET restores rip from rcx, |
| 225 | * rflags from r11 (but RF and VM bits are forced to 0), |
| 226 | * cs and ss are loaded from MSRs. |
Denys Vlasenko | 4416c5a | 2015-03-31 19:00:03 +0200 | [diff] [blame] | 227 | * Restoration of rflags re-enables interrupts. |
Andy Lutomirski | 61f01dd | 2015-04-26 16:47:59 -0700 | [diff] [blame] | 228 | * |
| 229 | * NB: On AMD CPUs with the X86_BUG_SYSRET_SS_ATTRS bug, the ss |
| 230 | * descriptor is not reinitialized. This means that we should |
| 231 | * avoid SYSRET with SS == NULL, which could happen if we schedule, |
| 232 | * exit the kernel, and re-enter using an interrupt vector. (All |
| 233 | * interrupt entries on x86_64 set SS to NULL.) We prevent that |
| 234 | * from happening by reloading SS in __switch_to. (Actually |
| 235 | * detecting the failure in 64-bit userspace is tricky but can be |
| 236 | * done.) |
Denys Vlasenko | b87cf63 | 2015-02-26 14:40:32 -0800 | [diff] [blame] | 237 | */ |
Jeremy Fitzhardinge | 2be2998 | 2008-06-25 00:19:28 -0400 | [diff] [blame] | 238 | USERGS_SYSRET64 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Ingo Molnar | 7fcb3bc | 2015-03-17 14:42:59 +0100 | [diff] [blame] | 240 | /* Do syscall entry tracing */ |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 241 | tracesys: |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 242 | movq %rsp, %rdi |
Denys Vlasenko | 47eb582 | 2015-03-25 18:18:15 +0100 | [diff] [blame] | 243 | movl $AUDIT_ARCH_X86_64, %esi |
Andy Lutomirski | 1dcf74f | 2014-09-05 15:13:56 -0700 | [diff] [blame] | 244 | call syscall_trace_enter_phase1 |
| 245 | test %rax, %rax |
| 246 | jnz tracesys_phase2 /* if needed, run the slow path */ |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 247 | RESTORE_C_REGS_EXCEPT_RAX /* else restore clobbered regs */ |
Denys Vlasenko | f2db938 | 2015-02-26 14:40:30 -0800 | [diff] [blame] | 248 | movq ORIG_RAX(%rsp), %rax |
Andy Lutomirski | 1dcf74f | 2014-09-05 15:13:56 -0700 | [diff] [blame] | 249 | jmp system_call_fastpath /* and return to the fast path */ |
| 250 | |
| 251 | tracesys_phase2: |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 252 | SAVE_EXTRA_REGS |
Andy Lutomirski | 1dcf74f | 2014-09-05 15:13:56 -0700 | [diff] [blame] | 253 | movq %rsp, %rdi |
Denys Vlasenko | 47eb582 | 2015-03-25 18:18:15 +0100 | [diff] [blame] | 254 | movl $AUDIT_ARCH_X86_64, %esi |
Andy Lutomirski | 1dcf74f | 2014-09-05 15:13:56 -0700 | [diff] [blame] | 255 | movq %rax,%rdx |
| 256 | call syscall_trace_enter_phase2 |
| 257 | |
Roland McGrath | d4d6715 | 2008-07-09 02:38:07 -0700 | [diff] [blame] | 258 | /* |
Denys Vlasenko | e90e147 | 2015-02-26 14:40:28 -0800 | [diff] [blame] | 259 | * Reload registers from stack in case ptrace changed them. |
Andy Lutomirski | 1dcf74f | 2014-09-05 15:13:56 -0700 | [diff] [blame] | 260 | * We don't reload %rax because syscall_trace_entry_phase2() returned |
Roland McGrath | d4d6715 | 2008-07-09 02:38:07 -0700 | [diff] [blame] | 261 | * the value it wants us to use in the table lookup. |
| 262 | */ |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 263 | RESTORE_C_REGS_EXCEPT_RAX |
| 264 | RESTORE_EXTRA_REGS |
H. Peter Anvin | fca460f | 2012-02-19 07:56:26 -0800 | [diff] [blame] | 265 | #if __SYSCALL_MASK == ~0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | cmpq $__NR_syscall_max,%rax |
H. Peter Anvin | fca460f | 2012-02-19 07:56:26 -0800 | [diff] [blame] | 267 | #else |
| 268 | andl $__SYSCALL_MASK,%eax |
| 269 | cmpl $__NR_syscall_max,%eax |
| 270 | #endif |
Denys Vlasenko | a6de5a2 | 2015-03-31 19:00:11 +0200 | [diff] [blame] | 271 | ja 1f /* return -ENOSYS (already in pt_regs->ax) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | movq %r10,%rcx /* fixup for C */ |
| 273 | call *sys_call_table(,%rax,8) |
Denys Vlasenko | f2db938 | 2015-02-26 14:40:30 -0800 | [diff] [blame] | 274 | movq %rax,RAX(%rsp) |
Denys Vlasenko | a6de5a2 | 2015-03-31 19:00:11 +0200 | [diff] [blame] | 275 | 1: |
Ingo Molnar | 7fcb3bc | 2015-03-17 14:42:59 +0100 | [diff] [blame] | 276 | /* Use IRET because user could have changed pt_regs->foo */ |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 277 | |
| 278 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | * Syscall return path ending with IRET. |
Ingo Molnar | 7fcb3bc | 2015-03-17 14:42:59 +0100 | [diff] [blame] | 280 | * Has correct iret frame. |
Jan Beulich | bcddc01 | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 281 | */ |
Cyrill Gorcunov | bc8b2b9 | 2009-02-23 22:57:01 +0300 | [diff] [blame] | 282 | GLOBAL(int_ret_from_sys_call) |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 283 | DISABLE_INTERRUPTS(CLBR_NONE) |
Denys Vlasenko | 4416c5a | 2015-03-31 19:00:03 +0200 | [diff] [blame] | 284 | int_ret_from_sys_call_irqs_off: /* jumps come here from the irqs-off SYSRET path */ |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 285 | TRACE_IRQS_OFF |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | movl $_TIF_ALLWORK_MASK,%edi |
| 287 | /* edi: mask to check */ |
Cyrill Gorcunov | bc8b2b9 | 2009-02-23 22:57:01 +0300 | [diff] [blame] | 288 | GLOBAL(int_with_check) |
Peter Zijlstra | 10cd706 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 289 | LOCKDEP_SYS_EXIT_IRQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | GET_THREAD_INFO(%rcx) |
Glauber Costa | 26ccb8a | 2008-06-24 11:19:35 -0300 | [diff] [blame] | 291 | movl TI_flags(%rcx),%edx |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | andl %edi,%edx |
| 293 | jnz int_careful |
Denys Vlasenko | fffbb5d | 2015-04-02 18:46:59 +0200 | [diff] [blame] | 294 | andl $~TS_COMPAT,TI_status(%rcx) |
| 295 | jmp syscall_return |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
| 297 | /* Either reschedule or signal or syscall exit tracking needed. */ |
| 298 | /* First do a reschedule test. */ |
| 299 | /* edx: work, edi: workmask */ |
| 300 | int_careful: |
| 301 | bt $TIF_NEED_RESCHED,%edx |
| 302 | jnc int_very_careful |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 303 | TRACE_IRQS_ON |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 304 | ENABLE_INTERRUPTS(CLBR_NONE) |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 305 | pushq %rdi |
Frederic Weisbecker | 0430499 | 2012-07-11 20:26:38 +0200 | [diff] [blame] | 306 | SCHEDULE_USER |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 307 | popq %rdi |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 308 | DISABLE_INTERRUPTS(CLBR_NONE) |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 309 | TRACE_IRQS_OFF |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | jmp int_with_check |
| 311 | |
Ingo Molnar | 7fcb3bc | 2015-03-17 14:42:59 +0100 | [diff] [blame] | 312 | /* handle signals and tracing -- both require a full pt_regs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | int_very_careful: |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 314 | TRACE_IRQS_ON |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 315 | ENABLE_INTERRUPTS(CLBR_NONE) |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 316 | SAVE_EXTRA_REGS |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 317 | /* Check for syscall exit trace */ |
Roland McGrath | d4d6715 | 2008-07-09 02:38:07 -0700 | [diff] [blame] | 318 | testl $_TIF_WORK_SYSCALL_EXIT,%edx |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | jz int_signal |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 320 | pushq %rdi |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 321 | leaq 8(%rsp),%rdi # &ptregs -> arg1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | call syscall_trace_leave |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 323 | popq %rdi |
Roland McGrath | d4d6715 | 2008-07-09 02:38:07 -0700 | [diff] [blame] | 324 | andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | jmp int_restore_rest |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | int_signal: |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 328 | testl $_TIF_DO_NOTIFY_MASK,%edx |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | jz 1f |
| 330 | movq %rsp,%rdi # &ptregs -> arg1 |
| 331 | xorl %esi,%esi # oldset -> arg2 |
| 332 | call do_notify_resume |
Roland McGrath | eca91e7 | 2008-07-10 14:50:39 -0700 | [diff] [blame] | 333 | 1: movl $_TIF_WORK_MASK,%edi |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | int_restore_rest: |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 335 | RESTORE_EXTRA_REGS |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 336 | DISABLE_INTERRUPTS(CLBR_NONE) |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 337 | TRACE_IRQS_OFF |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | jmp int_with_check |
Denys Vlasenko | fffbb5d | 2015-04-02 18:46:59 +0200 | [diff] [blame] | 339 | |
| 340 | syscall_return: |
| 341 | /* The IRETQ could re-enable interrupts: */ |
| 342 | DISABLE_INTERRUPTS(CLBR_ANY) |
| 343 | TRACE_IRQS_IRETQ |
| 344 | |
| 345 | /* |
| 346 | * Try to use SYSRET instead of IRET if we're returning to |
| 347 | * a completely clean 64-bit userspace context. |
| 348 | */ |
| 349 | movq RCX(%rsp),%rcx |
Denys Vlasenko | 17be0ae | 2015-04-21 18:27:29 +0200 | [diff] [blame] | 350 | movq RIP(%rsp),%r11 |
| 351 | cmpq %rcx,%r11 /* RCX == RIP */ |
Denys Vlasenko | fffbb5d | 2015-04-02 18:46:59 +0200 | [diff] [blame] | 352 | jne opportunistic_sysret_failed |
| 353 | |
| 354 | /* |
| 355 | * On Intel CPUs, SYSRET with non-canonical RCX/RIP will #GP |
| 356 | * in kernel space. This essentially lets the user take over |
Denys Vlasenko | 17be0ae | 2015-04-21 18:27:29 +0200 | [diff] [blame] | 357 | * the kernel, since userspace controls RSP. |
Denys Vlasenko | fffbb5d | 2015-04-02 18:46:59 +0200 | [diff] [blame] | 358 | * |
Denys Vlasenko | 17be0ae | 2015-04-21 18:27:29 +0200 | [diff] [blame] | 359 | * If width of "canonical tail" ever becomes variable, this will need |
Denys Vlasenko | fffbb5d | 2015-04-02 18:46:59 +0200 | [diff] [blame] | 360 | * to be updated to remain correct on both old and new CPUs. |
| 361 | */ |
| 362 | .ifne __VIRTUAL_MASK_SHIFT - 47 |
| 363 | .error "virtual address width changed -- SYSRET checks need update" |
| 364 | .endif |
Denys Vlasenko | 17be0ae | 2015-04-21 18:27:29 +0200 | [diff] [blame] | 365 | /* Change top 16 bits to be the sign-extension of 47th bit */ |
| 366 | shl $(64 - (__VIRTUAL_MASK_SHIFT+1)), %rcx |
| 367 | sar $(64 - (__VIRTUAL_MASK_SHIFT+1)), %rcx |
| 368 | /* If this changed %rcx, it was not canonical */ |
| 369 | cmpq %rcx, %r11 |
| 370 | jne opportunistic_sysret_failed |
Denys Vlasenko | fffbb5d | 2015-04-02 18:46:59 +0200 | [diff] [blame] | 371 | |
| 372 | cmpq $__USER_CS,CS(%rsp) /* CS must match SYSRET */ |
| 373 | jne opportunistic_sysret_failed |
| 374 | |
| 375 | movq R11(%rsp),%r11 |
| 376 | cmpq %r11,EFLAGS(%rsp) /* R11 == RFLAGS */ |
| 377 | jne opportunistic_sysret_failed |
| 378 | |
| 379 | /* |
| 380 | * SYSRET can't restore RF. SYSRET can restore TF, but unlike IRET, |
| 381 | * restoring TF results in a trap from userspace immediately after |
| 382 | * SYSRET. This would cause an infinite loop whenever #DB happens |
| 383 | * with register state that satisfies the opportunistic SYSRET |
| 384 | * conditions. For example, single-stepping this user code: |
| 385 | * |
| 386 | * movq $stuck_here,%rcx |
| 387 | * pushfq |
| 388 | * popq %r11 |
| 389 | * stuck_here: |
| 390 | * |
| 391 | * would never get past 'stuck_here'. |
| 392 | */ |
| 393 | testq $(X86_EFLAGS_RF|X86_EFLAGS_TF), %r11 |
| 394 | jnz opportunistic_sysret_failed |
| 395 | |
| 396 | /* nothing to check for RSP */ |
| 397 | |
| 398 | cmpq $__USER_DS,SS(%rsp) /* SS must match SYSRET */ |
| 399 | jne opportunistic_sysret_failed |
| 400 | |
| 401 | /* |
| 402 | * We win! This label is here just for ease of understanding |
| 403 | * perf profiles. Nothing jumps here. |
| 404 | */ |
| 405 | syscall_return_via_sysret: |
Denys Vlasenko | 17be0ae | 2015-04-21 18:27:29 +0200 | [diff] [blame] | 406 | /* rcx and r11 are already restored (see code above) */ |
| 407 | RESTORE_C_REGS_EXCEPT_RCX_R11 |
Denys Vlasenko | fffbb5d | 2015-04-02 18:46:59 +0200 | [diff] [blame] | 408 | movq RSP(%rsp),%rsp |
| 409 | USERGS_SYSRET64 |
Denys Vlasenko | fffbb5d | 2015-04-02 18:46:59 +0200 | [diff] [blame] | 410 | |
| 411 | opportunistic_sysret_failed: |
| 412 | SWAPGS |
| 413 | jmp restore_c_regs_and_iret |
Jan Beulich | bcddc01 | 2006-12-07 02:14:02 +0100 | [diff] [blame] | 414 | END(system_call) |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 415 | |
Denys Vlasenko | fffbb5d | 2015-04-02 18:46:59 +0200 | [diff] [blame] | 416 | |
Al Viro | 1d4b4b2 | 2012-10-22 22:34:11 -0400 | [diff] [blame] | 417 | .macro FORK_LIKE func |
| 418 | ENTRY(stub_\func) |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 419 | SAVE_EXTRA_REGS 8 |
Denys Vlasenko | 772951c | 2015-04-07 22:43:40 +0200 | [diff] [blame] | 420 | jmp sys_\func |
Al Viro | 1d4b4b2 | 2012-10-22 22:34:11 -0400 | [diff] [blame] | 421 | END(stub_\func) |
| 422 | .endm |
| 423 | |
| 424 | FORK_LIKE clone |
| 425 | FORK_LIKE fork |
| 426 | FORK_LIKE vfork |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | ENTRY(stub_execve) |
Denys Vlasenko | fc3e958 | 2015-04-04 20:55:19 +0200 | [diff] [blame] | 429 | call sys_execve |
| 430 | return_from_execve: |
| 431 | testl %eax, %eax |
| 432 | jz 1f |
| 433 | /* exec failed, can use fast SYSRET code path in this case */ |
| 434 | ret |
| 435 | 1: |
| 436 | /* must use IRET code path (pt_regs->cs may have changed) */ |
| 437 | addq $8, %rsp |
| 438 | ZERO_EXTRA_REGS |
| 439 | movq %rax,RAX(%rsp) |
| 440 | jmp int_ret_from_sys_call |
Jan Beulich | 4b787e0 | 2006-06-26 13:56:55 +0200 | [diff] [blame] | 441 | END(stub_execve) |
Denys Vlasenko | a37f34a | 2015-04-07 22:43:44 +0200 | [diff] [blame] | 442 | /* |
| 443 | * Remaining execve stubs are only 7 bytes long. |
| 444 | * ENTRY() often aligns to 16 bytes, which in this case has no benefits. |
| 445 | */ |
| 446 | .align 8 |
| 447 | GLOBAL(stub_execveat) |
Denys Vlasenko | fc3e958 | 2015-04-04 20:55:19 +0200 | [diff] [blame] | 448 | call sys_execveat |
| 449 | jmp return_from_execve |
David Drysdale | 27d6ec7 | 2014-12-12 16:57:33 -0800 | [diff] [blame] | 450 | END(stub_execveat) |
| 451 | |
Denys Vlasenko | ac7f5df | 2015-04-21 18:03:13 +0200 | [diff] [blame] | 452 | #if defined(CONFIG_X86_X32_ABI) || defined(CONFIG_IA32_EMULATION) |
Denys Vlasenko | a37f34a | 2015-04-07 22:43:44 +0200 | [diff] [blame] | 453 | .align 8 |
| 454 | GLOBAL(stub_x32_execve) |
Denys Vlasenko | a37f34a | 2015-04-07 22:43:44 +0200 | [diff] [blame] | 455 | GLOBAL(stub32_execve) |
Denys Vlasenko | 0f90fb9 | 2015-04-07 22:43:39 +0200 | [diff] [blame] | 456 | call compat_sys_execve |
| 457 | jmp return_from_execve |
Denys Vlasenko | 0f90fb9 | 2015-04-07 22:43:39 +0200 | [diff] [blame] | 458 | END(stub32_execve) |
Denys Vlasenko | ac7f5df | 2015-04-21 18:03:13 +0200 | [diff] [blame] | 459 | END(stub_x32_execve) |
Denys Vlasenko | a37f34a | 2015-04-07 22:43:44 +0200 | [diff] [blame] | 460 | .align 8 |
Denys Vlasenko | ac7f5df | 2015-04-21 18:03:13 +0200 | [diff] [blame] | 461 | GLOBAL(stub_x32_execveat) |
Denys Vlasenko | a37f34a | 2015-04-07 22:43:44 +0200 | [diff] [blame] | 462 | GLOBAL(stub32_execveat) |
Denys Vlasenko | 0f90fb9 | 2015-04-07 22:43:39 +0200 | [diff] [blame] | 463 | call compat_sys_execveat |
| 464 | jmp return_from_execve |
Denys Vlasenko | 0f90fb9 | 2015-04-07 22:43:39 +0200 | [diff] [blame] | 465 | END(stub32_execveat) |
Denys Vlasenko | ac7f5df | 2015-04-21 18:03:13 +0200 | [diff] [blame] | 466 | END(stub_x32_execveat) |
Denys Vlasenko | 0f90fb9 | 2015-04-07 22:43:39 +0200 | [diff] [blame] | 467 | #endif |
| 468 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | /* |
| 470 | * sigreturn is special because it needs to restore all registers on return. |
| 471 | * This cannot be done with SYSRET, so use the IRET return path instead. |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 472 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | ENTRY(stub_rt_sigreturn) |
Denys Vlasenko | 31f0119 | 2015-04-07 22:43:37 +0200 | [diff] [blame] | 474 | /* |
| 475 | * SAVE_EXTRA_REGS result is not normally needed: |
| 476 | * sigreturn overwrites all pt_regs->GPREGS. |
| 477 | * But sigreturn can fail (!), and there is no easy way to detect that. |
| 478 | * To make sure RESTORE_EXTRA_REGS doesn't restore garbage on error, |
| 479 | * we SAVE_EXTRA_REGS here. |
| 480 | */ |
| 481 | SAVE_EXTRA_REGS 8 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | call sys_rt_sigreturn |
Denys Vlasenko | 31f0119 | 2015-04-07 22:43:37 +0200 | [diff] [blame] | 483 | return_from_stub: |
| 484 | addq $8, %rsp |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 485 | RESTORE_EXTRA_REGS |
Denys Vlasenko | 31f0119 | 2015-04-07 22:43:37 +0200 | [diff] [blame] | 486 | movq %rax,RAX(%rsp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | jmp int_ret_from_sys_call |
Jan Beulich | 4b787e0 | 2006-06-26 13:56:55 +0200 | [diff] [blame] | 488 | END(stub_rt_sigreturn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | |
H. Peter Anvin | c5a3739 | 2012-02-19 09:41:09 -0800 | [diff] [blame] | 490 | #ifdef CONFIG_X86_X32_ABI |
H. Peter Anvin | c5a3739 | 2012-02-19 09:41:09 -0800 | [diff] [blame] | 491 | ENTRY(stub_x32_rt_sigreturn) |
Denys Vlasenko | 31f0119 | 2015-04-07 22:43:37 +0200 | [diff] [blame] | 492 | SAVE_EXTRA_REGS 8 |
H. Peter Anvin | c5a3739 | 2012-02-19 09:41:09 -0800 | [diff] [blame] | 493 | call sys32_x32_rt_sigreturn |
Denys Vlasenko | 31f0119 | 2015-04-07 22:43:37 +0200 | [diff] [blame] | 494 | jmp return_from_stub |
H. Peter Anvin | c5a3739 | 2012-02-19 09:41:09 -0800 | [diff] [blame] | 495 | END(stub_x32_rt_sigreturn) |
H. Peter Anvin | c5a3739 | 2012-02-19 09:41:09 -0800 | [diff] [blame] | 496 | #endif |
| 497 | |
Jan Beulich | 7effaa8 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 498 | /* |
Denys Vlasenko | 1eeb207 | 2015-02-26 14:40:33 -0800 | [diff] [blame] | 499 | * A newly forked process directly context switches into this address. |
| 500 | * |
| 501 | * rdi: prev task we switched from |
| 502 | */ |
| 503 | ENTRY(ret_from_fork) |
Denys Vlasenko | 1eeb207 | 2015-02-26 14:40:33 -0800 | [diff] [blame] | 504 | |
| 505 | LOCK ; btr $TIF_FORK,TI_flags(%r8) |
| 506 | |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 507 | pushq $0x0002 |
| 508 | popfq # reset kernel eflags |
Denys Vlasenko | 1eeb207 | 2015-02-26 14:40:33 -0800 | [diff] [blame] | 509 | |
| 510 | call schedule_tail # rdi: 'prev' task parameter |
| 511 | |
Denys Vlasenko | 1eeb207 | 2015-02-26 14:40:33 -0800 | [diff] [blame] | 512 | RESTORE_EXTRA_REGS |
| 513 | |
Denys Vlasenko | 03335e9 | 2015-04-27 15:21:52 +0200 | [diff] [blame] | 514 | testb $3, CS(%rsp) # from kernel_thread? |
Denys Vlasenko | 1eeb207 | 2015-02-26 14:40:33 -0800 | [diff] [blame] | 515 | |
Andy Lutomirski | 1e3fbb8 | 2015-02-26 14:40:39 -0800 | [diff] [blame] | 516 | /* |
| 517 | * By the time we get here, we have no idea whether our pt_regs, |
| 518 | * ti flags, and ti status came from the 64-bit SYSCALL fast path, |
Ingo Molnar | 138bd56 | 2015-06-05 14:11:49 +0200 | [diff] [blame^] | 519 | * the slow path, or one of the 32-bit compat paths. |
Denys Vlasenko | 66ad4ef | 2015-04-07 22:43:42 +0200 | [diff] [blame] | 520 | * Use IRET code path to return, since it can safely handle |
Andy Lutomirski | 1e3fbb8 | 2015-02-26 14:40:39 -0800 | [diff] [blame] | 521 | * all of the above. |
| 522 | */ |
Denys Vlasenko | 66ad4ef | 2015-04-07 22:43:42 +0200 | [diff] [blame] | 523 | jnz int_ret_from_sys_call |
Denys Vlasenko | 1eeb207 | 2015-02-26 14:40:33 -0800 | [diff] [blame] | 524 | |
Denys Vlasenko | 66ad4ef | 2015-04-07 22:43:42 +0200 | [diff] [blame] | 525 | /* We came from kernel_thread */ |
| 526 | /* nb: we depend on RESTORE_EXTRA_REGS above */ |
Denys Vlasenko | 1eeb207 | 2015-02-26 14:40:33 -0800 | [diff] [blame] | 527 | movq %rbp, %rdi |
| 528 | call *%rbx |
| 529 | movl $0, RAX(%rsp) |
| 530 | RESTORE_EXTRA_REGS |
| 531 | jmp int_ret_from_sys_call |
Denys Vlasenko | 1eeb207 | 2015-02-26 14:40:33 -0800 | [diff] [blame] | 532 | END(ret_from_fork) |
| 533 | |
| 534 | /* |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 535 | * Build the entry stubs with some assembler magic. |
| 536 | * We pack 1 stub into every 8-byte block. |
H. Peter Anvin | 939b787 | 2008-11-11 13:51:52 -0800 | [diff] [blame] | 537 | */ |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 538 | .align 8 |
H. Peter Anvin | 939b787 | 2008-11-11 13:51:52 -0800 | [diff] [blame] | 539 | ENTRY(irq_entries_start) |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 540 | vector=FIRST_EXTERNAL_VECTOR |
| 541 | .rept (FIRST_SYSTEM_VECTOR - FIRST_EXTERNAL_VECTOR) |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 542 | pushq $(~vector+0x80) /* Note: always in signed byte range */ |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 543 | vector=vector+1 |
| 544 | jmp common_interrupt |
Denys Vlasenko | 3304c9c | 2015-04-03 21:49:13 +0200 | [diff] [blame] | 545 | .align 8 |
| 546 | .endr |
H. Peter Anvin | 939b787 | 2008-11-11 13:51:52 -0800 | [diff] [blame] | 547 | END(irq_entries_start) |
| 548 | |
Alexander van Heukelum | d99015b | 2008-11-19 01:18:11 +0100 | [diff] [blame] | 549 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | * Interrupt entry/exit. |
| 551 | * |
| 552 | * Interrupt entry points save only callee clobbered registers in fast path. |
Alexander van Heukelum | d99015b | 2008-11-19 01:18:11 +0100 | [diff] [blame] | 553 | * |
| 554 | * Entry runs with interrupts off. |
| 555 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
Alexander van Heukelum | 722024d | 2008-11-13 13:50:20 +0100 | [diff] [blame] | 557 | /* 0(%rsp): ~(interrupt number) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | .macro interrupt func |
Denys Vlasenko | f6f6468 | 2015-01-08 17:25:15 +0100 | [diff] [blame] | 559 | cld |
Denys Vlasenko | e90e147 | 2015-02-26 14:40:28 -0800 | [diff] [blame] | 560 | /* |
| 561 | * Since nothing in interrupt handling code touches r12...r15 members |
| 562 | * of "struct pt_regs", and since interrupts can nest, we can save |
| 563 | * four stack slots and simultaneously provide |
| 564 | * an unwind-friendly stack layout by saving "truncated" pt_regs |
| 565 | * exactly up to rbp slot, without these members. |
| 566 | */ |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 567 | ALLOC_PT_GPREGS_ON_STACK -RBP |
| 568 | SAVE_C_REGS -RBP |
| 569 | /* this goes to 0(%rsp) for unwinder, not for saving the value: */ |
| 570 | SAVE_EXTRA_REGS_RBP -RBP |
Denys Vlasenko | f6f6468 | 2015-01-08 17:25:15 +0100 | [diff] [blame] | 571 | |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 572 | leaq -RBP(%rsp),%rdi /* arg1 for \func (pointer to pt_regs) */ |
Denys Vlasenko | f6f6468 | 2015-01-08 17:25:15 +0100 | [diff] [blame] | 573 | |
Denys Vlasenko | 03335e9 | 2015-04-27 15:21:52 +0200 | [diff] [blame] | 574 | testb $3, CS-RBP(%rsp) |
Denys Vlasenko | dde74f2 | 2015-04-27 15:21:51 +0200 | [diff] [blame] | 575 | jz 1f |
Denys Vlasenko | f6f6468 | 2015-01-08 17:25:15 +0100 | [diff] [blame] | 576 | SWAPGS |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 577 | 1: |
Denys Vlasenko | f6f6468 | 2015-01-08 17:25:15 +0100 | [diff] [blame] | 578 | /* |
Denys Vlasenko | e90e147 | 2015-02-26 14:40:28 -0800 | [diff] [blame] | 579 | * Save previous stack pointer, optionally switch to interrupt stack. |
Denys Vlasenko | f6f6468 | 2015-01-08 17:25:15 +0100 | [diff] [blame] | 580 | * irq_count is used to check if a CPU is already on an interrupt stack |
| 581 | * or not. While this is essentially redundant with preempt_count it is |
| 582 | * a little cheaper to use a separate counter in the PDA (short of |
| 583 | * moving irq_enter into assembly, which would be too much work) |
| 584 | */ |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 585 | movq %rsp, %rsi |
| 586 | incl PER_CPU_VAR(irq_count) |
Denys Vlasenko | f6f6468 | 2015-01-08 17:25:15 +0100 | [diff] [blame] | 587 | cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp |
Denys Vlasenko | f6f6468 | 2015-01-08 17:25:15 +0100 | [diff] [blame] | 588 | pushq %rsi |
Denys Vlasenko | f6f6468 | 2015-01-08 17:25:15 +0100 | [diff] [blame] | 589 | /* We entered an interrupt context - irqs are off: */ |
| 590 | TRACE_IRQS_OFF |
| 591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | call \func |
| 593 | .endm |
| 594 | |
Alexander van Heukelum | 722024d | 2008-11-13 13:50:20 +0100 | [diff] [blame] | 595 | /* |
| 596 | * The interrupt stubs push (~vector+0x80) onto the stack and |
| 597 | * then jump to common_interrupt. |
| 598 | */ |
H. Peter Anvin | 939b787 | 2008-11-11 13:51:52 -0800 | [diff] [blame] | 599 | .p2align CONFIG_X86_L1_CACHE_SHIFT |
| 600 | common_interrupt: |
Jan Beulich | ee4eb87 | 2012-11-02 11:18:39 +0000 | [diff] [blame] | 601 | ASM_CLAC |
Alexander van Heukelum | 722024d | 2008-11-13 13:50:20 +0100 | [diff] [blame] | 602 | addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | interrupt do_IRQ |
Denys Vlasenko | 34061f1 | 2015-03-23 14:03:59 +0100 | [diff] [blame] | 604 | /* 0(%rsp): old RSP */ |
Jan Beulich | 7effaa8 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 605 | ret_from_intr: |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 606 | DISABLE_INTERRUPTS(CLBR_NONE) |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 607 | TRACE_IRQS_OFF |
Brian Gerst | 5689553 | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 608 | decl PER_CPU_VAR(irq_count) |
Frederic Weisbecker | 625dbc3 | 2011-01-06 15:22:47 +0100 | [diff] [blame] | 609 | |
Frederic Weisbecker | a2bbe75 | 2011-07-02 16:52:45 +0200 | [diff] [blame] | 610 | /* Restore saved previous stack */ |
| 611 | popq %rsi |
Denys Vlasenko | e90e147 | 2015-02-26 14:40:28 -0800 | [diff] [blame] | 612 | /* return code expects complete pt_regs - adjust rsp accordingly: */ |
Denys Vlasenko | f2db938 | 2015-02-26 14:40:30 -0800 | [diff] [blame] | 613 | leaq -RBP(%rsi),%rsp |
Frederic Weisbecker | 625dbc3 | 2011-01-06 15:22:47 +0100 | [diff] [blame] | 614 | |
Denys Vlasenko | 03335e9 | 2015-04-27 15:21:52 +0200 | [diff] [blame] | 615 | testb $3, CS(%rsp) |
Denys Vlasenko | dde74f2 | 2015-04-27 15:21:51 +0200 | [diff] [blame] | 616 | jz retint_kernel |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | /* Interrupt came from user space */ |
Jan Beulich | 2f63b9d | 2015-06-01 13:03:59 +0100 | [diff] [blame] | 618 | retint_user: |
Denys Vlasenko | a3675b3 | 2015-03-30 20:09:34 +0200 | [diff] [blame] | 619 | GET_THREAD_INFO(%rcx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | * %rcx: thread info. Interrupts off. |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 622 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | retint_with_reschedule: |
| 624 | movl $_TIF_WORK_MASK,%edi |
Jan Beulich | 7effaa8 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 625 | retint_check: |
Peter Zijlstra | 10cd706 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 626 | LOCKDEP_SYS_EXIT_IRQ |
Glauber Costa | 26ccb8a | 2008-06-24 11:19:35 -0300 | [diff] [blame] | 627 | movl TI_flags(%rcx),%edx |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | andl %edi,%edx |
| 629 | jnz retint_careful |
Peter Zijlstra | 10cd706 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 630 | |
| 631 | retint_swapgs: /* return to user-space */ |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 632 | /* |
| 633 | * The iretq could re-enable interrupts: |
| 634 | */ |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 635 | DISABLE_INTERRUPTS(CLBR_ANY) |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 636 | TRACE_IRQS_IRETQ |
Andy Lutomirski | 2a23c6b | 2014-07-22 12:46:50 -0700 | [diff] [blame] | 637 | |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 638 | SWAPGS |
Denys Vlasenko | fffbb5d | 2015-04-02 18:46:59 +0200 | [diff] [blame] | 639 | jmp restore_c_regs_and_iret |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 640 | |
Denys Vlasenko | 627276c | 2015-03-30 20:09:31 +0200 | [diff] [blame] | 641 | /* Returning to kernel space */ |
Denys Vlasenko | 6ba71b7 | 2015-03-31 19:00:05 +0200 | [diff] [blame] | 642 | retint_kernel: |
Denys Vlasenko | 627276c | 2015-03-30 20:09:31 +0200 | [diff] [blame] | 643 | #ifdef CONFIG_PREEMPT |
| 644 | /* Interrupts are off */ |
| 645 | /* Check if we need preemption */ |
Denys Vlasenko | 627276c | 2015-03-30 20:09:31 +0200 | [diff] [blame] | 646 | bt $9,EFLAGS(%rsp) /* interrupts were off? */ |
Denys Vlasenko | 6ba71b7 | 2015-03-31 19:00:05 +0200 | [diff] [blame] | 647 | jnc 1f |
Denys Vlasenko | 36acef2 | 2015-03-31 19:00:07 +0200 | [diff] [blame] | 648 | 0: cmpl $0,PER_CPU_VAR(__preempt_count) |
| 649 | jnz 1f |
Denys Vlasenko | 627276c | 2015-03-30 20:09:31 +0200 | [diff] [blame] | 650 | call preempt_schedule_irq |
Denys Vlasenko | 36acef2 | 2015-03-31 19:00:07 +0200 | [diff] [blame] | 651 | jmp 0b |
Denys Vlasenko | 6ba71b7 | 2015-03-31 19:00:05 +0200 | [diff] [blame] | 652 | 1: |
Denys Vlasenko | 627276c | 2015-03-30 20:09:31 +0200 | [diff] [blame] | 653 | #endif |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 654 | /* |
| 655 | * The iretq could re-enable interrupts: |
| 656 | */ |
| 657 | TRACE_IRQS_IRETQ |
Denys Vlasenko | fffbb5d | 2015-04-02 18:46:59 +0200 | [diff] [blame] | 658 | |
| 659 | /* |
| 660 | * At this label, code paths which return to kernel and to user, |
| 661 | * which come from interrupts/exception and from syscalls, merge. |
| 662 | */ |
| 663 | restore_c_regs_and_iret: |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 664 | RESTORE_C_REGS |
| 665 | REMOVE_PT_GPREGS_FROM_STACK 8 |
Andy Lutomirski | 7209a75 | 2014-07-23 08:34:11 -0700 | [diff] [blame] | 666 | INTERRUPT_RETURN |
| 667 | |
| 668 | ENTRY(native_iret) |
H. Peter Anvin | 3891a04 | 2014-04-29 16:46:09 -0700 | [diff] [blame] | 669 | /* |
| 670 | * Are we returning to a stack segment from the LDT? Note: in |
| 671 | * 64-bit mode SS:RSP on the exception stack is always valid. |
| 672 | */ |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 673 | #ifdef CONFIG_X86_ESPFIX64 |
H. Peter Anvin | 3891a04 | 2014-04-29 16:46:09 -0700 | [diff] [blame] | 674 | testb $4,(SS-RIP)(%rsp) |
Andy Lutomirski | 7209a75 | 2014-07-23 08:34:11 -0700 | [diff] [blame] | 675 | jnz native_irq_return_ldt |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 676 | #endif |
H. Peter Anvin | 3891a04 | 2014-04-29 16:46:09 -0700 | [diff] [blame] | 677 | |
Andy Lutomirski | af726f2 | 2014-11-22 18:00:31 -0800 | [diff] [blame] | 678 | .global native_irq_return_iret |
Andy Lutomirski | 7209a75 | 2014-07-23 08:34:11 -0700 | [diff] [blame] | 679 | native_irq_return_iret: |
Andy Lutomirski | b645af2 | 2014-11-22 18:00:33 -0800 | [diff] [blame] | 680 | /* |
| 681 | * This may fault. Non-paranoid faults on return to userspace are |
| 682 | * handled by fixup_bad_iret. These include #SS, #GP, and #NP. |
| 683 | * Double-faults due to espfix64 are handled in do_double_fault. |
| 684 | * Other faults here are fatal. |
| 685 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | iretq |
Ingo Molnar | 3701d863 | 2008-02-09 23:24:08 +0100 | [diff] [blame] | 687 | |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 688 | #ifdef CONFIG_X86_ESPFIX64 |
Andy Lutomirski | 7209a75 | 2014-07-23 08:34:11 -0700 | [diff] [blame] | 689 | native_irq_return_ldt: |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 690 | pushq %rax |
| 691 | pushq %rdi |
H. Peter Anvin | 3891a04 | 2014-04-29 16:46:09 -0700 | [diff] [blame] | 692 | SWAPGS |
| 693 | movq PER_CPU_VAR(espfix_waddr),%rdi |
| 694 | movq %rax,(0*8)(%rdi) /* RAX */ |
| 695 | movq (2*8)(%rsp),%rax /* RIP */ |
| 696 | movq %rax,(1*8)(%rdi) |
| 697 | movq (3*8)(%rsp),%rax /* CS */ |
| 698 | movq %rax,(2*8)(%rdi) |
| 699 | movq (4*8)(%rsp),%rax /* RFLAGS */ |
| 700 | movq %rax,(3*8)(%rdi) |
| 701 | movq (6*8)(%rsp),%rax /* SS */ |
| 702 | movq %rax,(5*8)(%rdi) |
| 703 | movq (5*8)(%rsp),%rax /* RSP */ |
| 704 | movq %rax,(4*8)(%rdi) |
| 705 | andl $0xffff0000,%eax |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 706 | popq %rdi |
H. Peter Anvin | 3891a04 | 2014-04-29 16:46:09 -0700 | [diff] [blame] | 707 | orq PER_CPU_VAR(espfix_stack),%rax |
| 708 | SWAPGS |
| 709 | movq %rax,%rsp |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 710 | popq %rax |
Andy Lutomirski | 7209a75 | 2014-07-23 08:34:11 -0700 | [diff] [blame] | 711 | jmp native_irq_return_iret |
H. Peter Anvin | 34273f4 | 2014-05-04 10:36:22 -0700 | [diff] [blame] | 712 | #endif |
H. Peter Anvin | 3891a04 | 2014-04-29 16:46:09 -0700 | [diff] [blame] | 713 | |
Jan Beulich | 7effaa8 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 714 | /* edi: workmask, edx: work */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | retint_careful: |
| 716 | bt $TIF_NEED_RESCHED,%edx |
| 717 | jnc retint_signal |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 718 | TRACE_IRQS_ON |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 719 | ENABLE_INTERRUPTS(CLBR_NONE) |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 720 | pushq %rdi |
Frederic Weisbecker | 0430499 | 2012-07-11 20:26:38 +0200 | [diff] [blame] | 721 | SCHEDULE_USER |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 722 | popq %rdi |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | GET_THREAD_INFO(%rcx) |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 724 | DISABLE_INTERRUPTS(CLBR_NONE) |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 725 | TRACE_IRQS_OFF |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | jmp retint_check |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 727 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | retint_signal: |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 729 | testl $_TIF_DO_NOTIFY_MASK,%edx |
Andi Kleen | 10ffdbb | 2005-05-16 21:53:19 -0700 | [diff] [blame] | 730 | jz retint_swapgs |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 731 | TRACE_IRQS_ON |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 732 | ENABLE_INTERRUPTS(CLBR_NONE) |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 733 | SAVE_EXTRA_REGS |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 734 | movq $-1,ORIG_RAX(%rsp) |
Andi Kleen | 3829ee6 | 2005-07-28 21:15:48 -0700 | [diff] [blame] | 735 | xorl %esi,%esi # oldset |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | movq %rsp,%rdi # &pt_regs |
| 737 | call do_notify_resume |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 738 | RESTORE_EXTRA_REGS |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 739 | DISABLE_INTERRUPTS(CLBR_NONE) |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 740 | TRACE_IRQS_OFF |
Andi Kleen | be9e687 | 2005-05-01 08:58:51 -0700 | [diff] [blame] | 741 | GET_THREAD_INFO(%rcx) |
Roland McGrath | eca91e7 | 2008-07-10 14:50:39 -0700 | [diff] [blame] | 742 | jmp retint_with_reschedule |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | |
Jan Beulich | 4b787e0 | 2006-06-26 13:56:55 +0200 | [diff] [blame] | 744 | END(common_interrupt) |
H. Peter Anvin | 3891a04 | 2014-04-29 16:46:09 -0700 | [diff] [blame] | 745 | |
Masami Hiramatsu | 8222d71 | 2009-08-27 13:23:25 -0400 | [diff] [blame] | 746 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | * APIC interrupts. |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 748 | */ |
Seiji Aguchi | cf910e8 | 2013-06-20 11:46:53 -0400 | [diff] [blame] | 749 | .macro apicinterrupt3 num sym do_sym |
Alexander van Heukelum | 322648d | 2008-11-23 10:08:28 +0100 | [diff] [blame] | 750 | ENTRY(\sym) |
Jan Beulich | ee4eb87 | 2012-11-02 11:18:39 +0000 | [diff] [blame] | 751 | ASM_CLAC |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 752 | pushq $~(\num) |
Jan Beulich | 39e9543 | 2011-11-29 11:03:46 +0000 | [diff] [blame] | 753 | .Lcommon_\sym: |
Alexander van Heukelum | 322648d | 2008-11-23 10:08:28 +0100 | [diff] [blame] | 754 | interrupt \do_sym |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | jmp ret_from_intr |
Alexander van Heukelum | 322648d | 2008-11-23 10:08:28 +0100 | [diff] [blame] | 756 | END(\sym) |
| 757 | .endm |
Jacob Shin | 89b831e | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 758 | |
Seiji Aguchi | cf910e8 | 2013-06-20 11:46:53 -0400 | [diff] [blame] | 759 | #ifdef CONFIG_TRACING |
| 760 | #define trace(sym) trace_##sym |
| 761 | #define smp_trace(sym) smp_trace_##sym |
| 762 | |
| 763 | .macro trace_apicinterrupt num sym |
| 764 | apicinterrupt3 \num trace(\sym) smp_trace(\sym) |
| 765 | .endm |
| 766 | #else |
| 767 | .macro trace_apicinterrupt num sym do_sym |
| 768 | .endm |
| 769 | #endif |
| 770 | |
| 771 | .macro apicinterrupt num sym do_sym |
| 772 | apicinterrupt3 \num \sym \do_sym |
| 773 | trace_apicinterrupt \num \sym |
| 774 | .endm |
| 775 | |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 776 | #ifdef CONFIG_SMP |
Seiji Aguchi | cf910e8 | 2013-06-20 11:46:53 -0400 | [diff] [blame] | 777 | apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR \ |
Alexander van Heukelum | 322648d | 2008-11-23 10:08:28 +0100 | [diff] [blame] | 778 | irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt |
Seiji Aguchi | cf910e8 | 2013-06-20 11:46:53 -0400 | [diff] [blame] | 779 | apicinterrupt3 REBOOT_VECTOR \ |
Andi Kleen | 4ef702c | 2009-05-27 21:56:52 +0200 | [diff] [blame] | 780 | reboot_interrupt smp_reboot_interrupt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | #endif |
| 782 | |
Nick Piggin | 03b4863 | 2009-01-20 04:36:04 +0100 | [diff] [blame] | 783 | #ifdef CONFIG_X86_UV |
Seiji Aguchi | cf910e8 | 2013-06-20 11:46:53 -0400 | [diff] [blame] | 784 | apicinterrupt3 UV_BAU_MESSAGE \ |
Alexander van Heukelum | 322648d | 2008-11-23 10:08:28 +0100 | [diff] [blame] | 785 | uv_bau_message_intr1 uv_bau_message_interrupt |
Nick Piggin | 03b4863 | 2009-01-20 04:36:04 +0100 | [diff] [blame] | 786 | #endif |
Alexander van Heukelum | 322648d | 2008-11-23 10:08:28 +0100 | [diff] [blame] | 787 | apicinterrupt LOCAL_TIMER_VECTOR \ |
| 788 | apic_timer_interrupt smp_apic_timer_interrupt |
Dimitri Sivanich | 4a4de9c | 2009-10-14 09:22:57 -0500 | [diff] [blame] | 789 | apicinterrupt X86_PLATFORM_IPI_VECTOR \ |
| 790 | x86_platform_ipi smp_x86_platform_ipi |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | |
Yang Zhang | d78f266 | 2013-04-11 19:25:11 +0800 | [diff] [blame] | 792 | #ifdef CONFIG_HAVE_KVM |
Seiji Aguchi | cf910e8 | 2013-06-20 11:46:53 -0400 | [diff] [blame] | 793 | apicinterrupt3 POSTED_INTR_VECTOR \ |
Yang Zhang | d78f266 | 2013-04-11 19:25:11 +0800 | [diff] [blame] | 794 | kvm_posted_intr_ipi smp_kvm_posted_intr_ipi |
| 795 | #endif |
| 796 | |
Seiji Aguchi | 33e5ff6 | 2013-06-22 07:33:30 -0400 | [diff] [blame] | 797 | #ifdef CONFIG_X86_MCE_THRESHOLD |
Alexander van Heukelum | 322648d | 2008-11-23 10:08:28 +0100 | [diff] [blame] | 798 | apicinterrupt THRESHOLD_APIC_VECTOR \ |
Andi Kleen | 7856f6c | 2009-04-28 23:32:56 +0200 | [diff] [blame] | 799 | threshold_interrupt smp_threshold_interrupt |
Seiji Aguchi | 33e5ff6 | 2013-06-22 07:33:30 -0400 | [diff] [blame] | 800 | #endif |
| 801 | |
| 802 | #ifdef CONFIG_X86_THERMAL_VECTOR |
Alexander van Heukelum | 322648d | 2008-11-23 10:08:28 +0100 | [diff] [blame] | 803 | apicinterrupt THERMAL_APIC_VECTOR \ |
| 804 | thermal_interrupt smp_thermal_interrupt |
Seiji Aguchi | 33e5ff6 | 2013-06-22 07:33:30 -0400 | [diff] [blame] | 805 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | |
Alexander van Heukelum | 322648d | 2008-11-23 10:08:28 +0100 | [diff] [blame] | 807 | #ifdef CONFIG_SMP |
| 808 | apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \ |
| 809 | call_function_single_interrupt smp_call_function_single_interrupt |
| 810 | apicinterrupt CALL_FUNCTION_VECTOR \ |
| 811 | call_function_interrupt smp_call_function_interrupt |
| 812 | apicinterrupt RESCHEDULE_VECTOR \ |
| 813 | reschedule_interrupt smp_reschedule_interrupt |
| 814 | #endif |
| 815 | |
| 816 | apicinterrupt ERROR_APIC_VECTOR \ |
| 817 | error_interrupt smp_error_interrupt |
| 818 | apicinterrupt SPURIOUS_APIC_VECTOR \ |
| 819 | spurious_interrupt smp_spurious_interrupt |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 820 | |
Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 821 | #ifdef CONFIG_IRQ_WORK |
| 822 | apicinterrupt IRQ_WORK_VECTOR \ |
| 823 | irq_work_interrupt smp_irq_work_interrupt |
Ingo Molnar | 241771e | 2008-12-03 10:39:53 +0100 | [diff] [blame] | 824 | #endif |
| 825 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | /* |
| 827 | * Exception entry points. |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 828 | */ |
Andy Lutomirski | 9b47668 | 2015-03-05 19:19:07 -0800 | [diff] [blame] | 829 | #define CPU_TSS_IST(x) PER_CPU_VAR(cpu_tss) + (TSS_ist + ((x) - 1) * 8) |
Andy Lutomirski | 577ed45 | 2014-05-21 15:07:09 -0700 | [diff] [blame] | 830 | |
| 831 | .macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1 |
Alexander van Heukelum | 322648d | 2008-11-23 10:08:28 +0100 | [diff] [blame] | 832 | ENTRY(\sym) |
Andy Lutomirski | 577ed45 | 2014-05-21 15:07:09 -0700 | [diff] [blame] | 833 | /* Sanity check */ |
| 834 | .if \shift_ist != -1 && \paranoid == 0 |
| 835 | .error "using shift_ist requires paranoid=1" |
| 836 | .endif |
| 837 | |
Jan Beulich | ee4eb87 | 2012-11-02 11:18:39 +0000 | [diff] [blame] | 838 | ASM_CLAC |
Alexander van Heukelum | b8b1d08 | 2008-11-21 16:44:28 +0100 | [diff] [blame] | 839 | PARAVIRT_ADJUST_EXCEPTION_FRAME |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 840 | |
| 841 | .ifeq \has_error_code |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 842 | pushq $-1 /* ORIG_RAX: no syscall to restart */ |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 843 | .endif |
| 844 | |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 845 | ALLOC_PT_GPREGS_ON_STACK |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 846 | |
| 847 | .if \paranoid |
Andy Lutomirski | 48e08d0 | 2014-11-11 12:49:41 -0800 | [diff] [blame] | 848 | .if \paranoid == 1 |
Denys Vlasenko | 03335e9 | 2015-04-27 15:21:52 +0200 | [diff] [blame] | 849 | testb $3, CS(%rsp) /* If coming from userspace, switch */ |
Andy Lutomirski | 48e08d0 | 2014-11-11 12:49:41 -0800 | [diff] [blame] | 850 | jnz 1f /* stacks. */ |
| 851 | .endif |
Denys Vlasenko | ebfc453 | 2015-02-26 14:40:34 -0800 | [diff] [blame] | 852 | call paranoid_entry |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 853 | .else |
| 854 | call error_entry |
| 855 | .endif |
Denys Vlasenko | ebfc453 | 2015-02-26 14:40:34 -0800 | [diff] [blame] | 856 | /* returned flag: ebx=0: need swapgs on exit, ebx=1: don't need it */ |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 857 | |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 858 | .if \paranoid |
Andy Lutomirski | 577ed45 | 2014-05-21 15:07:09 -0700 | [diff] [blame] | 859 | .if \shift_ist != -1 |
| 860 | TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */ |
| 861 | .else |
Alexander van Heukelum | b8b1d08 | 2008-11-21 16:44:28 +0100 | [diff] [blame] | 862 | TRACE_IRQS_OFF |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 863 | .endif |
Andy Lutomirski | 577ed45 | 2014-05-21 15:07:09 -0700 | [diff] [blame] | 864 | .endif |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 865 | |
| 866 | movq %rsp,%rdi /* pt_regs pointer */ |
| 867 | |
| 868 | .if \has_error_code |
| 869 | movq ORIG_RAX(%rsp),%rsi /* get error code */ |
| 870 | movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */ |
| 871 | .else |
| 872 | xorl %esi,%esi /* no error code */ |
| 873 | .endif |
| 874 | |
Andy Lutomirski | 577ed45 | 2014-05-21 15:07:09 -0700 | [diff] [blame] | 875 | .if \shift_ist != -1 |
Andy Lutomirski | 9b47668 | 2015-03-05 19:19:07 -0800 | [diff] [blame] | 876 | subq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist) |
Andy Lutomirski | 577ed45 | 2014-05-21 15:07:09 -0700 | [diff] [blame] | 877 | .endif |
| 878 | |
Alexander van Heukelum | 322648d | 2008-11-23 10:08:28 +0100 | [diff] [blame] | 879 | call \do_sym |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 880 | |
Andy Lutomirski | 577ed45 | 2014-05-21 15:07:09 -0700 | [diff] [blame] | 881 | .if \shift_ist != -1 |
Andy Lutomirski | 9b47668 | 2015-03-05 19:19:07 -0800 | [diff] [blame] | 882 | addq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist) |
Andy Lutomirski | 577ed45 | 2014-05-21 15:07:09 -0700 | [diff] [blame] | 883 | .endif |
| 884 | |
Denys Vlasenko | ebfc453 | 2015-02-26 14:40:34 -0800 | [diff] [blame] | 885 | /* these procedures expect "no swapgs" flag in ebx */ |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 886 | .if \paranoid |
Denys Vlasenko | ebfc453 | 2015-02-26 14:40:34 -0800 | [diff] [blame] | 887 | jmp paranoid_exit |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 888 | .else |
Denys Vlasenko | ebfc453 | 2015-02-26 14:40:34 -0800 | [diff] [blame] | 889 | jmp error_exit |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 890 | .endif |
| 891 | |
Andy Lutomirski | 48e08d0 | 2014-11-11 12:49:41 -0800 | [diff] [blame] | 892 | .if \paranoid == 1 |
Andy Lutomirski | 48e08d0 | 2014-11-11 12:49:41 -0800 | [diff] [blame] | 893 | /* |
| 894 | * Paranoid entry from userspace. Switch stacks and treat it |
| 895 | * as a normal entry. This means that paranoid handlers |
| 896 | * run in real process context if user_mode(regs). |
| 897 | */ |
| 898 | 1: |
| 899 | call error_entry |
| 900 | |
Andy Lutomirski | 48e08d0 | 2014-11-11 12:49:41 -0800 | [diff] [blame] | 901 | |
| 902 | movq %rsp,%rdi /* pt_regs pointer */ |
| 903 | call sync_regs |
| 904 | movq %rax,%rsp /* switch stack */ |
| 905 | |
| 906 | movq %rsp,%rdi /* pt_regs pointer */ |
| 907 | |
| 908 | .if \has_error_code |
| 909 | movq ORIG_RAX(%rsp),%rsi /* get error code */ |
| 910 | movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */ |
| 911 | .else |
| 912 | xorl %esi,%esi /* no error code */ |
| 913 | .endif |
| 914 | |
| 915 | call \do_sym |
| 916 | |
| 917 | jmp error_exit /* %ebx: no swapgs flag */ |
| 918 | .endif |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 919 | END(\sym) |
Alexander van Heukelum | 322648d | 2008-11-23 10:08:28 +0100 | [diff] [blame] | 920 | .endm |
Alexander van Heukelum | b8b1d08 | 2008-11-21 16:44:28 +0100 | [diff] [blame] | 921 | |
Seiji Aguchi | 25c74b1 | 2013-10-30 16:37:00 -0400 | [diff] [blame] | 922 | #ifdef CONFIG_TRACING |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 923 | .macro trace_idtentry sym do_sym has_error_code:req |
| 924 | idtentry trace(\sym) trace(\do_sym) has_error_code=\has_error_code |
| 925 | idtentry \sym \do_sym has_error_code=\has_error_code |
Seiji Aguchi | 25c74b1 | 2013-10-30 16:37:00 -0400 | [diff] [blame] | 926 | .endm |
| 927 | #else |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 928 | .macro trace_idtentry sym do_sym has_error_code:req |
| 929 | idtentry \sym \do_sym has_error_code=\has_error_code |
Seiji Aguchi | 25c74b1 | 2013-10-30 16:37:00 -0400 | [diff] [blame] | 930 | .endm |
| 931 | #endif |
| 932 | |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 933 | idtentry divide_error do_divide_error has_error_code=0 |
| 934 | idtentry overflow do_overflow has_error_code=0 |
| 935 | idtentry bounds do_bounds has_error_code=0 |
| 936 | idtentry invalid_op do_invalid_op has_error_code=0 |
| 937 | idtentry device_not_available do_device_not_available has_error_code=0 |
Andy Lutomirski | 48e08d0 | 2014-11-11 12:49:41 -0800 | [diff] [blame] | 938 | idtentry double_fault do_double_fault has_error_code=1 paranoid=2 |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 939 | idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0 |
| 940 | idtentry invalid_TSS do_invalid_TSS has_error_code=1 |
| 941 | idtentry segment_not_present do_segment_not_present has_error_code=1 |
| 942 | idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0 |
| 943 | idtentry coprocessor_error do_coprocessor_error has_error_code=0 |
| 944 | idtentry alignment_check do_alignment_check has_error_code=1 |
| 945 | idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0 |
Andy Lutomirski | 5cec93c | 2011-06-05 13:50:24 -0400 | [diff] [blame] | 946 | |
Ingo Molnar | 2601e64 | 2006-07-03 00:24:45 -0700 | [diff] [blame] | 947 | |
Cyrill Gorcunov | 9f1e87e | 2008-11-27 21:10:08 +0300 | [diff] [blame] | 948 | /* Reload gs selector with exception handling */ |
| 949 | /* edi: new selector */ |
Jeremy Fitzhardinge | 9f9d489 | 2008-06-25 00:19:32 -0400 | [diff] [blame] | 950 | ENTRY(native_load_gs_index) |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 951 | pushfq |
Jeremy Fitzhardinge | b8aa287 | 2009-01-28 14:35:03 -0800 | [diff] [blame] | 952 | DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI) |
Cyrill Gorcunov | 9f1e87e | 2008-11-27 21:10:08 +0300 | [diff] [blame] | 953 | SWAPGS |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 954 | gs_change: |
Cyrill Gorcunov | 9f1e87e | 2008-11-27 21:10:08 +0300 | [diff] [blame] | 955 | movl %edi,%gs |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | 2: mfence /* workaround */ |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 957 | SWAPGS |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 958 | popfq |
Cyrill Gorcunov | 9f1e87e | 2008-11-27 21:10:08 +0300 | [diff] [blame] | 959 | ret |
Alexander van Heukelum | 6efdcfa | 2008-11-23 10:15:32 +0100 | [diff] [blame] | 960 | END(native_load_gs_index) |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 961 | |
H. Peter Anvin | d7abc0f | 2012-04-20 12:19:50 -0700 | [diff] [blame] | 962 | _ASM_EXTABLE(gs_change,bad_gs) |
Cyrill Gorcunov | 9f1e87e | 2008-11-27 21:10:08 +0300 | [diff] [blame] | 963 | .section .fixup,"ax" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | /* running with kernelgs */ |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 965 | bad_gs: |
Glauber de Oliveira Costa | 72fe485 | 2008-01-30 13:32:08 +0100 | [diff] [blame] | 966 | SWAPGS /* switch back to user gs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | xorl %eax,%eax |
Cyrill Gorcunov | 9f1e87e | 2008-11-27 21:10:08 +0300 | [diff] [blame] | 968 | movl %eax,%gs |
| 969 | jmp 2b |
| 970 | .previous |
Alexander van Heukelum | 0bd7b79 | 2008-11-16 15:29:00 +0100 | [diff] [blame] | 971 | |
Andi Kleen | 2699500 | 2006-08-02 22:37:28 +0200 | [diff] [blame] | 972 | /* Call softirq on interrupt stack. Interrupts are off. */ |
Frederic Weisbecker | 7d65f4a | 2013-09-05 15:49:45 +0200 | [diff] [blame] | 973 | ENTRY(do_softirq_own_stack) |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 974 | pushq %rbp |
Andi Kleen | 2699500 | 2006-08-02 22:37:28 +0200 | [diff] [blame] | 975 | mov %rsp,%rbp |
Brian Gerst | 5689553 | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 976 | incl PER_CPU_VAR(irq_count) |
Brian Gerst | 26f80bd | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 977 | cmove PER_CPU_VAR(irq_stack_ptr),%rsp |
Andi Kleen | 2699500 | 2006-08-02 22:37:28 +0200 | [diff] [blame] | 978 | push %rbp # backlink for old unwinder |
Andi Kleen | ed6b676 | 2005-07-28 21:15:49 -0700 | [diff] [blame] | 979 | call __do_softirq |
Andi Kleen | 2699500 | 2006-08-02 22:37:28 +0200 | [diff] [blame] | 980 | leaveq |
Brian Gerst | 5689553 | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 981 | decl PER_CPU_VAR(irq_count) |
Andi Kleen | ed6b676 | 2005-07-28 21:15:49 -0700 | [diff] [blame] | 982 | ret |
Frederic Weisbecker | 7d65f4a | 2013-09-05 15:49:45 +0200 | [diff] [blame] | 983 | END(do_softirq_own_stack) |
Andi Kleen | 75154f4 | 2007-06-23 02:29:25 +0200 | [diff] [blame] | 984 | |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 985 | #ifdef CONFIG_XEN |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 986 | idtentry xen_hypervisor_callback xen_do_hypervisor_callback has_error_code=0 |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 987 | |
| 988 | /* |
Cyrill Gorcunov | 9f1e87e | 2008-11-27 21:10:08 +0300 | [diff] [blame] | 989 | * A note on the "critical region" in our callback handler. |
| 990 | * We want to avoid stacking callback handlers due to events occurring |
| 991 | * during handling of the last event. To do this, we keep events disabled |
| 992 | * until we've done all processing. HOWEVER, we must enable events before |
| 993 | * popping the stack frame (can't be done atomically) and so it would still |
| 994 | * be possible to get enough handler activations to overflow the stack. |
| 995 | * Although unlikely, bugs of that kind are hard to track down, so we'd |
| 996 | * like to avoid the possibility. |
| 997 | * So, on entry to the handler we detect whether we interrupted an |
| 998 | * existing activation in its critical region -- if so, we pop the current |
| 999 | * activation and restart the handler using the previous one. |
| 1000 | */ |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1001 | ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs) |
Cyrill Gorcunov | 9f1e87e | 2008-11-27 21:10:08 +0300 | [diff] [blame] | 1002 | /* |
| 1003 | * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will |
| 1004 | * see the correct pointer to the pt_regs |
| 1005 | */ |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1006 | movq %rdi, %rsp # we don't return, adjust the stack frame |
Brian Gerst | 5689553 | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 1007 | 11: incl PER_CPU_VAR(irq_count) |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1008 | movq %rsp,%rbp |
Brian Gerst | 26f80bd | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 1009 | cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1010 | pushq %rbp # backlink for old unwinder |
| 1011 | call xen_evtchn_do_upcall |
| 1012 | popq %rsp |
Brian Gerst | 5689553 | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 1013 | decl PER_CPU_VAR(irq_count) |
David Vrabel | fdfd811 | 2015-02-19 15:23:17 +0000 | [diff] [blame] | 1014 | #ifndef CONFIG_PREEMPT |
| 1015 | call xen_maybe_preempt_hcall |
| 1016 | #endif |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1017 | jmp error_exit |
Alexander van Heukelum | 371c394 | 2011-03-11 21:59:38 +0100 | [diff] [blame] | 1018 | END(xen_do_hypervisor_callback) |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1019 | |
| 1020 | /* |
Cyrill Gorcunov | 9f1e87e | 2008-11-27 21:10:08 +0300 | [diff] [blame] | 1021 | * Hypervisor uses this for application faults while it executes. |
| 1022 | * We get here for two reasons: |
| 1023 | * 1. Fault while reloading DS, ES, FS or GS |
| 1024 | * 2. Fault while executing IRET |
| 1025 | * Category 1 we do not need to fix up as Xen has already reloaded all segment |
| 1026 | * registers that could be reloaded and zeroed the others. |
| 1027 | * Category 2 we fix up by killing the current process. We cannot use the |
| 1028 | * normal Linux return path in this case because if we use the IRET hypercall |
| 1029 | * to pop the stack frame we end up in an infinite loop of failsafe callbacks. |
| 1030 | * We distinguish between categories by comparing each saved segment register |
| 1031 | * with its current contents: any discrepancy means we in category 1. |
| 1032 | */ |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1033 | ENTRY(xen_failsafe_callback) |
Denys Vlasenko | adeb553 | 2015-05-15 22:39:06 +0200 | [diff] [blame] | 1034 | movl %ds,%ecx |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1035 | cmpw %cx,0x10(%rsp) |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1036 | jne 1f |
Denys Vlasenko | adeb553 | 2015-05-15 22:39:06 +0200 | [diff] [blame] | 1037 | movl %es,%ecx |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1038 | cmpw %cx,0x18(%rsp) |
| 1039 | jne 1f |
Denys Vlasenko | adeb553 | 2015-05-15 22:39:06 +0200 | [diff] [blame] | 1040 | movl %fs,%ecx |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1041 | cmpw %cx,0x20(%rsp) |
| 1042 | jne 1f |
Denys Vlasenko | adeb553 | 2015-05-15 22:39:06 +0200 | [diff] [blame] | 1043 | movl %gs,%ecx |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1044 | cmpw %cx,0x28(%rsp) |
| 1045 | jne 1f |
| 1046 | /* All segments match their saved values => Category 2 (Bad IRET). */ |
| 1047 | movq (%rsp),%rcx |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1048 | movq 8(%rsp),%r11 |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1049 | addq $0x30,%rsp |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 1050 | pushq $0 /* RIP */ |
| 1051 | pushq %r11 |
| 1052 | pushq %rcx |
Jeremy Fitzhardinge | 4a5c3e7 | 2008-07-08 15:07:09 -0700 | [diff] [blame] | 1053 | jmp general_protection |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1054 | 1: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */ |
| 1055 | movq (%rsp),%rcx |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1056 | movq 8(%rsp),%r11 |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1057 | addq $0x30,%rsp |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 1058 | pushq $-1 /* orig_ax = -1 => not a system call */ |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 1059 | ALLOC_PT_GPREGS_ON_STACK |
| 1060 | SAVE_C_REGS |
| 1061 | SAVE_EXTRA_REGS |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1062 | jmp error_exit |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1063 | END(xen_failsafe_callback) |
| 1064 | |
Seiji Aguchi | cf910e8 | 2013-06-20 11:46:53 -0400 | [diff] [blame] | 1065 | apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \ |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 1066 | xen_hvm_callback_vector xen_evtchn_do_upcall |
| 1067 | |
Jeremy Fitzhardinge | 3d75e1b | 2008-07-08 15:06:49 -0700 | [diff] [blame] | 1068 | #endif /* CONFIG_XEN */ |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1069 | |
K. Y. Srinivasan | bc2b033 | 2013-02-03 17:22:39 -0800 | [diff] [blame] | 1070 | #if IS_ENABLED(CONFIG_HYPERV) |
Seiji Aguchi | cf910e8 | 2013-06-20 11:46:53 -0400 | [diff] [blame] | 1071 | apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \ |
K. Y. Srinivasan | bc2b033 | 2013-02-03 17:22:39 -0800 | [diff] [blame] | 1072 | hyperv_callback_vector hyperv_vector_handler |
| 1073 | #endif /* CONFIG_HYPERV */ |
| 1074 | |
Andy Lutomirski | 577ed45 | 2014-05-21 15:07:09 -0700 | [diff] [blame] | 1075 | idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK |
| 1076 | idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK |
Andy Lutomirski | 6f442be | 2014-11-22 18:00:32 -0800 | [diff] [blame] | 1077 | idtentry stack_segment do_stack_segment has_error_code=1 |
Jeremy Fitzhardinge | 6cac5a9 | 2009-03-29 19:56:29 -0700 | [diff] [blame] | 1078 | #ifdef CONFIG_XEN |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 1079 | idtentry xen_debug do_debug has_error_code=0 |
| 1080 | idtentry xen_int3 do_int3 has_error_code=0 |
| 1081 | idtentry xen_stack_segment do_stack_segment has_error_code=1 |
Jeremy Fitzhardinge | 6cac5a9 | 2009-03-29 19:56:29 -0700 | [diff] [blame] | 1082 | #endif |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 1083 | idtentry general_protection do_general_protection has_error_code=1 |
| 1084 | trace_idtentry page_fault do_page_fault has_error_code=1 |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 1085 | #ifdef CONFIG_KVM_GUEST |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 1086 | idtentry async_page_fault do_async_page_fault has_error_code=1 |
Gleb Natapov | 631bc48 | 2010-10-14 11:22:52 +0200 | [diff] [blame] | 1087 | #endif |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1088 | #ifdef CONFIG_X86_MCE |
Andy Lutomirski | cb5dd2c | 2014-05-21 15:07:08 -0700 | [diff] [blame] | 1089 | idtentry machine_check has_error_code=0 paranoid=1 do_sym=*machine_check_vector(%rip) |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1090 | #endif |
| 1091 | |
Denys Vlasenko | ebfc453 | 2015-02-26 14:40:34 -0800 | [diff] [blame] | 1092 | /* |
| 1093 | * Save all registers in pt_regs, and switch gs if needed. |
| 1094 | * Use slow, but surefire "are we in kernel?" check. |
| 1095 | * Return: ebx=0: need swapgs on exit, ebx=1: otherwise |
| 1096 | */ |
| 1097 | ENTRY(paranoid_entry) |
Denys Vlasenko | 1eeb207 | 2015-02-26 14:40:33 -0800 | [diff] [blame] | 1098 | cld |
| 1099 | SAVE_C_REGS 8 |
| 1100 | SAVE_EXTRA_REGS 8 |
| 1101 | movl $1,%ebx |
| 1102 | movl $MSR_GS_BASE,%ecx |
| 1103 | rdmsr |
| 1104 | testl %edx,%edx |
| 1105 | js 1f /* negative -> in kernel */ |
| 1106 | SWAPGS |
| 1107 | xorl %ebx,%ebx |
| 1108 | 1: ret |
Denys Vlasenko | ebfc453 | 2015-02-26 14:40:34 -0800 | [diff] [blame] | 1109 | END(paranoid_entry) |
Denys Vlasenko | 1eeb207 | 2015-02-26 14:40:33 -0800 | [diff] [blame] | 1110 | |
Denys Vlasenko | ebfc453 | 2015-02-26 14:40:34 -0800 | [diff] [blame] | 1111 | /* |
| 1112 | * "Paranoid" exit path from exception stack. This is invoked |
| 1113 | * only on return from non-NMI IST interrupts that came |
| 1114 | * from kernel space. |
| 1115 | * |
| 1116 | * We may be returning to very strange contexts (e.g. very early |
| 1117 | * in syscall entry), so checking for preemption here would |
| 1118 | * be complicated. Fortunately, we there's no good reason |
| 1119 | * to try to handle preemption here. |
| 1120 | */ |
| 1121 | /* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */ |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1122 | ENTRY(paranoid_exit) |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1123 | DISABLE_INTERRUPTS(CLBR_NONE) |
Steven Rostedt | 5963e31 | 2012-05-30 11:54:53 -0400 | [diff] [blame] | 1124 | TRACE_IRQS_OFF_DEBUG |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1125 | testl %ebx,%ebx /* swapgs needed? */ |
Denys Vlasenko | 0d55083 | 2015-02-26 14:40:29 -0800 | [diff] [blame] | 1126 | jnz paranoid_exit_no_swapgs |
Denys Vlasenko | f2db938 | 2015-02-26 14:40:30 -0800 | [diff] [blame] | 1127 | TRACE_IRQS_IRETQ |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1128 | SWAPGS_UNSAFE_STACK |
Denys Vlasenko | 0d55083 | 2015-02-26 14:40:29 -0800 | [diff] [blame] | 1129 | jmp paranoid_exit_restore |
| 1130 | paranoid_exit_no_swapgs: |
Denys Vlasenko | f2db938 | 2015-02-26 14:40:30 -0800 | [diff] [blame] | 1131 | TRACE_IRQS_IRETQ_DEBUG |
Denys Vlasenko | 0d55083 | 2015-02-26 14:40:29 -0800 | [diff] [blame] | 1132 | paranoid_exit_restore: |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 1133 | RESTORE_EXTRA_REGS |
| 1134 | RESTORE_C_REGS |
| 1135 | REMOVE_PT_GPREGS_FROM_STACK 8 |
Andy Lutomirski | 48e08d0 | 2014-11-11 12:49:41 -0800 | [diff] [blame] | 1136 | INTERRUPT_RETURN |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1137 | END(paranoid_exit) |
| 1138 | |
| 1139 | /* |
Denys Vlasenko | ebfc453 | 2015-02-26 14:40:34 -0800 | [diff] [blame] | 1140 | * Save all registers in pt_regs, and switch gs if needed. |
| 1141 | * Return: ebx=0: need swapgs on exit, ebx=1: otherwise |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1142 | */ |
| 1143 | ENTRY(error_entry) |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1144 | cld |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 1145 | SAVE_C_REGS 8 |
| 1146 | SAVE_EXTRA_REGS 8 |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1147 | xorl %ebx,%ebx |
Denys Vlasenko | 03335e9 | 2015-04-27 15:21:52 +0200 | [diff] [blame] | 1148 | testb $3, CS+8(%rsp) |
Denys Vlasenko | dde74f2 | 2015-04-27 15:21:51 +0200 | [diff] [blame] | 1149 | jz error_kernelspace |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1150 | error_swapgs: |
| 1151 | SWAPGS |
| 1152 | error_sti: |
| 1153 | TRACE_IRQS_OFF |
| 1154 | ret |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1155 | |
Denys Vlasenko | ebfc453 | 2015-02-26 14:40:34 -0800 | [diff] [blame] | 1156 | /* |
| 1157 | * There are two places in the kernel that can potentially fault with |
| 1158 | * usergs. Handle them here. B stepping K8s sometimes report a |
| 1159 | * truncated RIP for IRET exceptions returning to compat mode. Check |
| 1160 | * for these here too. |
| 1161 | */ |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1162 | error_kernelspace: |
| 1163 | incl %ebx |
Andy Lutomirski | 7209a75 | 2014-07-23 08:34:11 -0700 | [diff] [blame] | 1164 | leaq native_irq_return_iret(%rip),%rcx |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1165 | cmpq %rcx,RIP+8(%rsp) |
Andy Lutomirski | b645af2 | 2014-11-22 18:00:33 -0800 | [diff] [blame] | 1166 | je error_bad_iret |
Brian Gerst | ae24ffe | 2009-10-12 10:18:23 -0400 | [diff] [blame] | 1167 | movl %ecx,%eax /* zero extend */ |
| 1168 | cmpq %rax,RIP+8(%rsp) |
| 1169 | je bstep_iret |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1170 | cmpq $gs_change,RIP+8(%rsp) |
Cyrill Gorcunov | 9f1e87e | 2008-11-27 21:10:08 +0300 | [diff] [blame] | 1171 | je error_swapgs |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1172 | jmp error_sti |
Brian Gerst | ae24ffe | 2009-10-12 10:18:23 -0400 | [diff] [blame] | 1173 | |
| 1174 | bstep_iret: |
| 1175 | /* Fix truncated RIP */ |
| 1176 | movq %rcx,RIP+8(%rsp) |
Andy Lutomirski | b645af2 | 2014-11-22 18:00:33 -0800 | [diff] [blame] | 1177 | /* fall through */ |
| 1178 | |
| 1179 | error_bad_iret: |
| 1180 | SWAPGS |
| 1181 | mov %rsp,%rdi |
| 1182 | call fixup_bad_iret |
| 1183 | mov %rax,%rsp |
| 1184 | decl %ebx /* Return to usergs */ |
| 1185 | jmp error_sti |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1186 | END(error_entry) |
| 1187 | |
| 1188 | |
Denys Vlasenko | ebfc453 | 2015-02-26 14:40:34 -0800 | [diff] [blame] | 1189 | /* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */ |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1190 | ENTRY(error_exit) |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1191 | movl %ebx,%eax |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 1192 | RESTORE_EXTRA_REGS |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1193 | DISABLE_INTERRUPTS(CLBR_NONE) |
| 1194 | TRACE_IRQS_OFF |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1195 | testl %eax,%eax |
Denys Vlasenko | dde74f2 | 2015-04-27 15:21:51 +0200 | [diff] [blame] | 1196 | jnz retint_kernel |
Jan Beulich | 2f63b9d | 2015-06-01 13:03:59 +0100 | [diff] [blame] | 1197 | jmp retint_user |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1198 | END(error_exit) |
| 1199 | |
Denys Vlasenko | 0784b36 | 2015-04-01 16:50:57 +0200 | [diff] [blame] | 1200 | /* Runs on exception stack */ |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1201 | ENTRY(nmi) |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1202 | PARAVIRT_ADJUST_EXCEPTION_FRAME |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1203 | /* |
| 1204 | * We allow breakpoints in NMIs. If a breakpoint occurs, then |
| 1205 | * the iretq it performs will take us out of NMI context. |
| 1206 | * This means that we can have nested NMIs where the next |
| 1207 | * NMI is using the top of the stack of the previous NMI. We |
| 1208 | * can't let it execute because the nested NMI will corrupt the |
| 1209 | * stack of the previous NMI. NMI handlers are not re-entrant |
| 1210 | * anyway. |
| 1211 | * |
| 1212 | * To handle this case we do the following: |
| 1213 | * Check the a special location on the stack that contains |
| 1214 | * a variable that is set when NMIs are executing. |
| 1215 | * The interrupted task's stack is also checked to see if it |
| 1216 | * is an NMI stack. |
| 1217 | * If the variable is not set and the stack is not the NMI |
| 1218 | * stack then: |
| 1219 | * o Set the special variable on the stack |
| 1220 | * o Copy the interrupt frame into a "saved" location on the stack |
| 1221 | * o Copy the interrupt frame into a "copy" location on the stack |
| 1222 | * o Continue processing the NMI |
| 1223 | * If the variable is set or the previous stack is the NMI stack: |
| 1224 | * o Modify the "copy" location to jump to the repeate_nmi |
| 1225 | * o return back to the first NMI |
| 1226 | * |
| 1227 | * Now on exit of the first NMI, we first clear the stack variable |
| 1228 | * The NMI stack will tell any nested NMIs at that point that it is |
| 1229 | * nested. Then we pop the stack normally with iret, and if there was |
| 1230 | * a nested NMI that updated the copy interrupt stack frame, a |
| 1231 | * jump will be made to the repeat_nmi code that will handle the second |
| 1232 | * NMI. |
| 1233 | */ |
| 1234 | |
Denys Vlasenko | 146b2b0 | 2015-03-25 18:18:13 +0100 | [diff] [blame] | 1235 | /* Use %rdx as our temp variable throughout */ |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 1236 | pushq %rdx |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1237 | |
| 1238 | /* |
Steven Rostedt | 45d5a16 | 2012-02-19 16:43:37 -0500 | [diff] [blame] | 1239 | * If %cs was not the kernel segment, then the NMI triggered in user |
| 1240 | * space, which means it is definitely not nested. |
| 1241 | */ |
Steven Rostedt | a38449ef | 2012-02-20 15:29:34 -0500 | [diff] [blame] | 1242 | cmpl $__KERNEL_CS, 16(%rsp) |
Steven Rostedt | 45d5a16 | 2012-02-19 16:43:37 -0500 | [diff] [blame] | 1243 | jne first_nmi |
| 1244 | |
| 1245 | /* |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1246 | * Check the special variable on the stack to see if NMIs are |
| 1247 | * executing. |
| 1248 | */ |
Steven Rostedt | a38449ef | 2012-02-20 15:29:34 -0500 | [diff] [blame] | 1249 | cmpl $1, -8(%rsp) |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1250 | je nested_nmi |
| 1251 | |
| 1252 | /* |
| 1253 | * Now test if the previous stack was an NMI stack. |
| 1254 | * We need the double check. We check the NMI stack to satisfy the |
| 1255 | * race when the first NMI clears the variable before returning. |
| 1256 | * We check the variable because the first NMI could be in a |
| 1257 | * breakpoint routine using a breakpoint stack. |
| 1258 | */ |
Denys Vlasenko | 0784b36 | 2015-04-01 16:50:57 +0200 | [diff] [blame] | 1259 | lea 6*8(%rsp), %rdx |
| 1260 | /* Compare the NMI stack (rdx) with the stack we came from (4*8(%rsp)) */ |
| 1261 | cmpq %rdx, 4*8(%rsp) |
| 1262 | /* If the stack pointer is above the NMI stack, this is a normal NMI */ |
| 1263 | ja first_nmi |
| 1264 | subq $EXCEPTION_STKSZ, %rdx |
| 1265 | cmpq %rdx, 4*8(%rsp) |
| 1266 | /* If it is below the NMI stack, it is a normal NMI */ |
| 1267 | jb first_nmi |
| 1268 | /* Ah, it is within the NMI stack, treat it as nested */ |
Denys Vlasenko | 0784b36 | 2015-04-01 16:50:57 +0200 | [diff] [blame] | 1269 | |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1270 | nested_nmi: |
| 1271 | /* |
| 1272 | * Do nothing if we interrupted the fixup in repeat_nmi. |
| 1273 | * It's about to repeat the NMI handler, so we are fine |
| 1274 | * with ignoring this one. |
| 1275 | */ |
| 1276 | movq $repeat_nmi, %rdx |
| 1277 | cmpq 8(%rsp), %rdx |
| 1278 | ja 1f |
| 1279 | movq $end_repeat_nmi, %rdx |
| 1280 | cmpq 8(%rsp), %rdx |
| 1281 | ja nested_nmi_out |
| 1282 | |
| 1283 | 1: |
| 1284 | /* Set up the interrupted NMIs stack to jump to repeat_nmi */ |
Salman Qazi | 28696f4 | 2012-10-01 17:29:25 -0700 | [diff] [blame] | 1285 | leaq -1*8(%rsp), %rdx |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1286 | movq %rdx, %rsp |
Salman Qazi | 28696f4 | 2012-10-01 17:29:25 -0700 | [diff] [blame] | 1287 | leaq -10*8(%rsp), %rdx |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 1288 | pushq $__KERNEL_DS |
| 1289 | pushq %rdx |
| 1290 | pushfq |
| 1291 | pushq $__KERNEL_CS |
| 1292 | pushq $repeat_nmi |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1293 | |
| 1294 | /* Put stack back */ |
Salman Qazi | 28696f4 | 2012-10-01 17:29:25 -0700 | [diff] [blame] | 1295 | addq $(6*8), %rsp |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1296 | |
| 1297 | nested_nmi_out: |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 1298 | popq %rdx |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1299 | |
| 1300 | /* No need to check faults here */ |
| 1301 | INTERRUPT_RETURN |
| 1302 | |
| 1303 | first_nmi: |
| 1304 | /* |
| 1305 | * Because nested NMIs will use the pushed location that we |
| 1306 | * stored in rdx, we must keep that space available. |
| 1307 | * Here's what our stack frame will look like: |
| 1308 | * +-------------------------+ |
| 1309 | * | original SS | |
| 1310 | * | original Return RSP | |
| 1311 | * | original RFLAGS | |
| 1312 | * | original CS | |
| 1313 | * | original RIP | |
| 1314 | * +-------------------------+ |
| 1315 | * | temp storage for rdx | |
| 1316 | * +-------------------------+ |
| 1317 | * | NMI executing variable | |
| 1318 | * +-------------------------+ |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1319 | * | copied SS | |
| 1320 | * | copied Return RSP | |
| 1321 | * | copied RFLAGS | |
| 1322 | * | copied CS | |
| 1323 | * | copied RIP | |
| 1324 | * +-------------------------+ |
Salman Qazi | 28696f4 | 2012-10-01 17:29:25 -0700 | [diff] [blame] | 1325 | * | Saved SS | |
| 1326 | * | Saved Return RSP | |
| 1327 | * | Saved RFLAGS | |
| 1328 | * | Saved CS | |
| 1329 | * | Saved RIP | |
| 1330 | * +-------------------------+ |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1331 | * | pt_regs | |
| 1332 | * +-------------------------+ |
| 1333 | * |
Steven Rostedt | 79fb4ad | 2012-02-24 15:55:13 -0500 | [diff] [blame] | 1334 | * The saved stack frame is used to fix up the copied stack frame |
| 1335 | * that a nested NMI may change to make the interrupted NMI iret jump |
| 1336 | * to the repeat_nmi. The original stack frame and the temp storage |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1337 | * is also used by nested NMIs and can not be trusted on exit. |
| 1338 | */ |
Steven Rostedt | 79fb4ad | 2012-02-24 15:55:13 -0500 | [diff] [blame] | 1339 | /* Do not pop rdx, nested NMIs will corrupt that part of the stack */ |
Jan Beulich | 6261091 | 2012-02-24 14:54:37 +0000 | [diff] [blame] | 1340 | movq (%rsp), %rdx |
Jan Beulich | 6261091 | 2012-02-24 14:54:37 +0000 | [diff] [blame] | 1341 | |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1342 | /* Set the NMI executing variable on the stack. */ |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 1343 | pushq $1 |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1344 | |
Salman Qazi | 28696f4 | 2012-10-01 17:29:25 -0700 | [diff] [blame] | 1345 | /* |
| 1346 | * Leave room for the "copied" frame |
| 1347 | */ |
| 1348 | subq $(5*8), %rsp |
| 1349 | |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1350 | /* Copy the stack frame to the Saved frame */ |
| 1351 | .rept 5 |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 1352 | pushq 11*8(%rsp) |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1353 | .endr |
Jan Beulich | 6261091 | 2012-02-24 14:54:37 +0000 | [diff] [blame] | 1354 | |
Steven Rostedt | 79fb4ad | 2012-02-24 15:55:13 -0500 | [diff] [blame] | 1355 | /* Everything up to here is safe from nested NMIs */ |
| 1356 | |
Jan Beulich | 6261091 | 2012-02-24 14:54:37 +0000 | [diff] [blame] | 1357 | /* |
| 1358 | * If there was a nested NMI, the first NMI's iret will return |
| 1359 | * here. But NMIs are still enabled and we can take another |
| 1360 | * nested NMI. The nested NMI checks the interrupted RIP to see |
| 1361 | * if it is between repeat_nmi and end_repeat_nmi, and if so |
| 1362 | * it will just return, as we are about to repeat an NMI anyway. |
| 1363 | * This makes it safe to copy to the stack frame that a nested |
| 1364 | * NMI will update. |
| 1365 | */ |
| 1366 | repeat_nmi: |
| 1367 | /* |
| 1368 | * Update the stack variable to say we are still in NMI (the update |
| 1369 | * is benign for the non-repeat case, where 1 was pushed just above |
| 1370 | * to this very stack slot). |
| 1371 | */ |
Salman Qazi | 28696f4 | 2012-10-01 17:29:25 -0700 | [diff] [blame] | 1372 | movq $1, 10*8(%rsp) |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1373 | |
| 1374 | /* Make another copy, this one may be modified by nested NMIs */ |
Salman Qazi | 28696f4 | 2012-10-01 17:29:25 -0700 | [diff] [blame] | 1375 | addq $(10*8), %rsp |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1376 | .rept 5 |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 1377 | pushq -6*8(%rsp) |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1378 | .endr |
Salman Qazi | 28696f4 | 2012-10-01 17:29:25 -0700 | [diff] [blame] | 1379 | subq $(5*8), %rsp |
Jan Beulich | 6261091 | 2012-02-24 14:54:37 +0000 | [diff] [blame] | 1380 | end_repeat_nmi: |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1381 | |
| 1382 | /* |
| 1383 | * Everything below this point can be preempted by a nested |
Steven Rostedt | 79fb4ad | 2012-02-24 15:55:13 -0500 | [diff] [blame] | 1384 | * NMI if the first NMI took an exception and reset our iret stack |
| 1385 | * so that we repeat another NMI. |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1386 | */ |
Ingo Molnar | 131484c | 2015-05-28 12:21:47 +0200 | [diff] [blame] | 1387 | pushq $-1 /* ORIG_RAX: no syscall to restart */ |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 1388 | ALLOC_PT_GPREGS_ON_STACK |
| 1389 | |
Steven Rostedt | 1fd466e | 2011-12-08 12:32:27 -0500 | [diff] [blame] | 1390 | /* |
Denys Vlasenko | ebfc453 | 2015-02-26 14:40:34 -0800 | [diff] [blame] | 1391 | * Use paranoid_entry to handle SWAPGS, but no need to use paranoid_exit |
Steven Rostedt | 1fd466e | 2011-12-08 12:32:27 -0500 | [diff] [blame] | 1392 | * as we should not be calling schedule in NMI context. |
| 1393 | * Even with normal interrupts enabled. An NMI should not be |
| 1394 | * setting NEED_RESCHED or anything that normal interrupts and |
| 1395 | * exceptions might do. |
| 1396 | */ |
Denys Vlasenko | ebfc453 | 2015-02-26 14:40:34 -0800 | [diff] [blame] | 1397 | call paranoid_entry |
Steven Rostedt | 7fbb98c | 2012-06-07 10:21:21 -0400 | [diff] [blame] | 1398 | |
| 1399 | /* |
| 1400 | * Save off the CR2 register. If we take a page fault in the NMI then |
| 1401 | * it could corrupt the CR2 value. If the NMI preempts a page fault |
| 1402 | * handler before it was able to read the CR2 register, and then the |
| 1403 | * NMI itself takes a page fault, the page fault that was preempted |
| 1404 | * will read the information from the NMI page fault and not the |
| 1405 | * origin fault. Save it off and restore it if it changes. |
| 1406 | * Use the r12 callee-saved register. |
| 1407 | */ |
| 1408 | movq %cr2, %r12 |
| 1409 | |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1410 | /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */ |
| 1411 | movq %rsp,%rdi |
| 1412 | movq $-1,%rsi |
| 1413 | call do_nmi |
Steven Rostedt | 7fbb98c | 2012-06-07 10:21:21 -0400 | [diff] [blame] | 1414 | |
| 1415 | /* Did the NMI take a page fault? Restore cr2 if it did */ |
| 1416 | movq %cr2, %rcx |
| 1417 | cmpq %rcx, %r12 |
| 1418 | je 1f |
| 1419 | movq %r12, %cr2 |
| 1420 | 1: |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1421 | testl %ebx,%ebx /* swapgs needed? */ |
| 1422 | jnz nmi_restore |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1423 | nmi_swapgs: |
| 1424 | SWAPGS_UNSAFE_STACK |
| 1425 | nmi_restore: |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 1426 | RESTORE_EXTRA_REGS |
| 1427 | RESTORE_C_REGS |
Jan Beulich | 444723d | 2013-01-24 09:27:31 +0000 | [diff] [blame] | 1428 | /* Pop the extra iret frame at once */ |
Denys Vlasenko | 76f5df4 | 2015-02-26 14:40:27 -0800 | [diff] [blame] | 1429 | REMOVE_PT_GPREGS_FROM_STACK 6*8 |
Salman Qazi | 28696f4 | 2012-10-01 17:29:25 -0700 | [diff] [blame] | 1430 | |
Steven Rostedt | 3f3c8b8 | 2011-12-08 12:36:23 -0500 | [diff] [blame] | 1431 | /* Clear the NMI executing stack variable */ |
Salman Qazi | 28696f4 | 2012-10-01 17:29:25 -0700 | [diff] [blame] | 1432 | movq $0, 5*8(%rsp) |
Andy Lutomirski | 5ca6f70 | 2015-06-04 13:24:29 -0700 | [diff] [blame] | 1433 | INTERRUPT_RETURN |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1434 | END(nmi) |
| 1435 | |
| 1436 | ENTRY(ignore_sysret) |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1437 | mov $-ENOSYS,%eax |
| 1438 | sysret |
Alexander van Heukelum | ddeb8f2 | 2008-11-24 13:24:28 +0100 | [diff] [blame] | 1439 | END(ignore_sysret) |
| 1440 | |