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