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