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