blob: 320852d02026171d537b58bd95868113fa458d10 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
9/*
10 * entry.S contains the system-call and fault low-level handling routines.
11 *
Andy Lutomirski8b4777a2011-06-05 13:50:18 -040012 * Some of this is documented in Documentation/x86/entry_64.txt
13 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * NOTE: This code handles signal-recognition, which happens every time
15 * after an interrupt and after each system call.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010016 *
17 * Normal syscalls and interrupts don't save a full stack frame, this is
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * only done for syscall tracing, signals or fork/exec et.al.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010019 *
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 Marchi0d2eb442011-03-17 16:24:16 -030023 * - partial stack frame: partially saved registers up to R11.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010024 * - full stack frame: Like partial stack frame, but all register saved.
Andi Kleen2e91a172006-09-26 10:52:29 +020025 *
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 Torvalds1da177e2005-04-16 15:20:36 -070040 */
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/linkage.h>
43#include <asm/segment.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/cache.h>
45#include <asm/errno.h>
46#include <asm/dwarf2.h>
47#include <asm/calling.h>
Sam Ravnborge2d5df92005-09-09 21:28:48 +020048#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/msr.h>
50#include <asm/unistd.h>
51#include <asm/thread_info.h>
52#include <asm/hw_irq.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080053#include <asm/page_types.h>
Ingo Molnar2601e642006-07-03 00:24:45 -070054#include <asm/irqflags.h>
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010055#include <asm/paravirt.h>
Abhishek Sagar395a59d2008-06-21 23:47:27 +053056#include <asm/ftrace.h>
Tejun Heo9939dda2009-01-13 20:41:35 +090057#include <asm/percpu.h>
H. Peter Anvind7abc0f2012-04-20 12:19:50 -070058#include <asm/asm.h>
Eric Parisd7e75282012-01-03 14:23:06 -050059#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Roland McGrath86a1c342008-06-23 15:37:04 -070061/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
62#include <linux/elf-em.h>
63#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
64#define __AUDIT_ARCH_64BIT 0x80000000
65#define __AUDIT_ARCH_LE 0x40000000
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 .code64
Jiri Olsaea714542011-03-07 19:10:39 +010068 .section .entry.text, "ax"
69
Steven Rostedt606576c2008-10-06 19:06:12 -040070#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtd61f82d2008-05-12 21:20:43 +020071#ifdef CONFIG_DYNAMIC_FTRACE
72ENTRY(mcount)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020073 retq
74END(mcount)
75
76ENTRY(ftrace_caller)
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050077 cmpl $0, function_trace_stop
78 jne ftrace_stub
Steven Rostedtd61f82d2008-05-12 21:20:43 +020079
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +030080 MCOUNT_SAVE_FRAME
Steven Rostedtd61f82d2008-05-12 21:20:43 +020081
82 movq 0x38(%rsp), %rdi
83 movq 8(%rbp), %rsi
Abhishek Sagar395a59d2008-06-21 23:47:27 +053084 subq $MCOUNT_INSN_SIZE, %rdi
Steven Rostedtd61f82d2008-05-12 21:20:43 +020085
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030086GLOBAL(ftrace_call)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020087 call ftrace_stub
88
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +030089 MCOUNT_RESTORE_FRAME
Steven Rostedtd61f82d2008-05-12 21:20:43 +020090
Frederic Weisbecker48d68b22008-12-02 00:20:39 +010091#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030092GLOBAL(ftrace_graph_call)
Frederic Weisbecker48d68b22008-12-02 00:20:39 +010093 jmp ftrace_stub
94#endif
Steven Rostedtd61f82d2008-05-12 21:20:43 +020095
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030096GLOBAL(ftrace_stub)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020097 retq
98END(ftrace_caller)
99
100#else /* ! CONFIG_DYNAMIC_FTRACE */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200101ENTRY(mcount)
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500102 cmpl $0, function_trace_stop
103 jne ftrace_stub
104
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200105 cmpq $ftrace_stub, ftrace_trace_function
106 jnz trace
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100107
108#ifdef CONFIG_FUNCTION_GRAPH_TRACER
109 cmpq $ftrace_stub, ftrace_graph_return
110 jnz ftrace_graph_caller
Steven Rostedte49dc192008-12-02 23:50:05 -0500111
112 cmpq $ftrace_graph_entry_stub, ftrace_graph_entry
113 jnz ftrace_graph_caller
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100114#endif
115
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300116GLOBAL(ftrace_stub)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200117 retq
118
119trace:
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300120 MCOUNT_SAVE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200121
122 movq 0x38(%rsp), %rdi
123 movq 8(%rbp), %rsi
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530124 subq $MCOUNT_INSN_SIZE, %rdi
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200125
126 call *ftrace_trace_function
127
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300128 MCOUNT_RESTORE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200129
130 jmp ftrace_stub
131END(mcount)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200132#endif /* CONFIG_DYNAMIC_FTRACE */
Steven Rostedt606576c2008-10-06 19:06:12 -0400133#endif /* CONFIG_FUNCTION_TRACER */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200134
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100135#ifdef CONFIG_FUNCTION_GRAPH_TRACER
136ENTRY(ftrace_graph_caller)
137 cmpl $0, function_trace_stop
138 jne ftrace_stub
139
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300140 MCOUNT_SAVE_FRAME
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100141
142 leaq 8(%rbp), %rdi
143 movq 0x38(%rsp), %rsi
Steven Rostedt71e308a2009-06-18 12:45:08 -0400144 movq (%rbp), %rdx
Steven Rostedtbb4304c2008-12-02 15:34:09 -0500145 subq $MCOUNT_INSN_SIZE, %rsi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100146
147 call prepare_ftrace_return
148
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300149 MCOUNT_RESTORE_FRAME
150
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100151 retq
152END(ftrace_graph_caller)
153
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300154GLOBAL(return_to_handler)
Jiri Olsa4818d802009-07-29 10:58:37 +0200155 subq $24, %rsp
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100156
Steven Rostedte71e99c2009-03-25 14:30:04 -0400157 /* Save the return values */
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100158 movq %rax, (%rsp)
Steven Rostedte71e99c2009-03-25 14:30:04 -0400159 movq %rdx, 8(%rsp)
Steven Rostedt71e308a2009-06-18 12:45:08 -0400160 movq %rbp, %rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100161
162 call ftrace_return_to_handler
163
Steven Rostedt194ec342009-10-13 16:33:50 -0400164 movq %rax, %rdi
Steven Rostedte71e99c2009-03-25 14:30:04 -0400165 movq 8(%rsp), %rdx
Jan Beulich7effaa82005-09-12 18:49:24 +0200166 movq (%rsp), %rax
Steven Rostedt194ec342009-10-13 16:33:50 -0400167 addq $24, %rsp
168 jmp *%rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100169#endif
Jan Beulich7effaa82005-09-12 18:49:24 +0200170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172#ifndef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173#define retint_kernel retint_restore_args
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100174#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176#ifdef CONFIG_PARAVIRT
177ENTRY(native_usergs_sysret64)
178 swapgs
179 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +0300180ENDPROC(native_usergs_sysret64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#endif /* CONFIG_PARAVIRT */
182
183
184.macro TRACE_IRQS_IRETQ offset=ARGOFFSET
185#ifdef CONFIG_TRACE_IRQFLAGS
186 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
187 jnc 1f
188 TRACE_IRQS_ON
1891:
190#endif
191.endm
192
193/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100194 * C code is not supposed to know about undefined top of stack. Every time
195 * a C function with an pt_regs argument is called from the SYSCALL based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 * fast path FIXUP_TOP_OF_STACK is needed.
197 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
198 * manipulation.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100199 */
200
201 /* %rsp:at FRAMEEND */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100202 .macro FIXUP_TOP_OF_STACK tmp offset=0
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900203 movq PER_CPU_VAR(old_rsp),\tmp
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100204 movq \tmp,RSP+\offset(%rsp)
205 movq $__USER_DS,SS+\offset(%rsp)
206 movq $__USER_CS,CS+\offset(%rsp)
207 movq $-1,RCX+\offset(%rsp)
208 movq R11+\offset(%rsp),\tmp /* get eflags */
209 movq \tmp,EFLAGS+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 .endm
211
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100212 .macro RESTORE_TOP_OF_STACK tmp offset=0
213 movq RSP+\offset(%rsp),\tmp
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900214 movq \tmp,PER_CPU_VAR(old_rsp)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100215 movq EFLAGS+\offset(%rsp),\tmp
216 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 .endm
218
219 .macro FAKE_STACK_FRAME child_rip
220 /* push in order ss, rsp, eflags, cs, rip */
221 xorl %eax, %eax
Jan Beulichdf5d1872010-09-02 14:07:16 +0100222 pushq_cfi $__KERNEL_DS /* ss */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 /*CFI_REL_OFFSET ss,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100224 pushq_cfi %rax /* rsp */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 CFI_REL_OFFSET rsp,0
Seiichi Ikarashi1cf83432011-12-06 17:58:14 +0900226 pushq_cfi $(X86_EFLAGS_IF|X86_EFLAGS_BIT1) /* eflags - interrupts on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /*CFI_REL_OFFSET rflags,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100228 pushq_cfi $__KERNEL_CS /* cs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 /*CFI_REL_OFFSET cs,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100230 pushq_cfi \child_rip /* rip */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 CFI_REL_OFFSET rip,0
Jan Beulichdf5d1872010-09-02 14:07:16 +0100232 pushq_cfi %rax /* orig rax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 .endm
234
235 .macro UNFAKE_STACK_FRAME
236 addq $8*6, %rsp
237 CFI_ADJUST_CFA_OFFSET -(6*8)
238 .endm
239
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100240/*
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100241 * initial frame state for interrupts (and exceptions without error code)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100242 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100243 .macro EMPTY_FRAME start=1 offset=0
244 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100245 CFI_STARTPROC simple
246 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100247 CFI_DEF_CFA rsp,8+\offset
248 .else
249 CFI_DEF_CFA_OFFSET 8+\offset
250 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100251 .endm
252
253/*
254 * initial frame state for interrupts (and exceptions without error code)
255 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100256 .macro INTR_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100257 EMPTY_FRAME \start, SS+8+\offset-RIP
258 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
259 CFI_REL_OFFSET rsp, RSP+\offset-RIP
260 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
261 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
262 CFI_REL_OFFSET rip, RIP+\offset-RIP
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100263 .endm
264
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100265/*
266 * initial frame state for exceptions with error code (and interrupts
267 * with vector already pushed)
268 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100269 .macro XCPT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100270 INTR_FRAME \start, RIP+\offset-ORIG_RAX
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100271 /*CFI_REL_OFFSET orig_rax, ORIG_RAX-ORIG_RAX*/
272 .endm
273
274/*
275 * frame that enables calling into C.
276 */
277 .macro PARTIAL_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100278 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
279 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
280 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
281 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
282 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
283 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
284 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
285 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
286 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
287 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100288 .endm
289
290/*
291 * frame that enables passing a complete pt_regs to a C function.
292 */
293 .macro DEFAULT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100294 PARTIAL_FRAME \start, R11+\offset-R15
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100295 CFI_REL_OFFSET rbx, RBX+\offset
296 CFI_REL_OFFSET rbp, RBP+\offset
297 CFI_REL_OFFSET r12, R12+\offset
298 CFI_REL_OFFSET r13, R13+\offset
299 CFI_REL_OFFSET r14, R14+\offset
300 CFI_REL_OFFSET r15, R15+\offset
301 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100302
303/* save partial stack frame */
Frederic Weisbecker18718532011-07-01 01:51:22 +0200304 .macro SAVE_ARGS_IRQ
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100305 cld
Frederic Weisbecker18718532011-07-01 01:51:22 +0200306 /* start from rbp in pt_regs and jump over */
307 movq_cfi rdi, RDI-RBP
308 movq_cfi rsi, RSI-RBP
309 movq_cfi rdx, RDX-RBP
310 movq_cfi rcx, RCX-RBP
311 movq_cfi rax, RAX-RBP
312 movq_cfi r8, R8-RBP
313 movq_cfi r9, R9-RBP
314 movq_cfi r10, R10-RBP
315 movq_cfi r11, R11-RBP
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100316
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200317 /* Save rbp so that we can unwind from get_irq_regs() */
318 movq_cfi rbp, 0
319
320 /* Save previous stack value */
321 movq %rsp, %rsi
Frederic Weisbecker3b99a3ef2011-07-01 02:25:17 +0200322
323 leaq -RBP(%rsp),%rdi /* arg1 for handler */
Jan Beulich69466462012-02-24 11:55:01 +0000324 testl $3, CS-RBP(%rsi)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100325 je 1f
326 SWAPGS
327 /*
Brian Gerst56895532009-01-19 00:38:58 +0900328 * irq_count is used to check if a CPU is already on an interrupt stack
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100329 * or not. While this is essentially redundant with preempt_count it is
330 * a little cheaper to use a separate counter in the PDA (short of
331 * moving irq_enter into assembly, which would be too much work)
332 */
Brian Gerst56895532009-01-19 00:38:58 +09003331: incl PER_CPU_VAR(irq_count)
Jan Beulich69466462012-02-24 11:55:01 +0000334 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100335 CFI_DEF_CFA_REGISTER rsi
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200336
Jan Beulich69466462012-02-24 11:55:01 +0000337 /* Store previous stack value */
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200338 pushq %rsi
Jan Beulicheab9e612011-09-28 16:57:52 +0100339 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 Weisbeckera2bbe752011-07-02 16:52:45 +0200344 /* We entered an interrupt context - irqs are off: */
345 TRACE_IRQS_OFF
Frederic Weisbecker18718532011-07-01 01:51:22 +0200346 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100347
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100348ENTRY(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
361END(save_rest)
362
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100363/* save complete stack frame */
Jan Beulichc2810182009-03-12 10:38:55 +0000364 .pushsection .kprobes.text, "ax"
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100365ENTRY(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
3901: ret
391 CFI_ENDPROC
392END(save_paranoid)
Jan Beulichc2810182009-03-12 10:38:55 +0000393 .popsection
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395/*
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100396 * A newly forked process directly context switches into this address.
397 *
398 * rdi: prev task we switched from
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100399 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400ENTRY(ret_from_fork)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100401 DEFAULT_FRAME
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100402
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500403 LOCK ; btr $TIF_FORK,TI_flags(%r8)
404
Jan Beulichdf5d1872010-09-02 14:07:16 +0100405 pushq_cfi kernel_eflags(%rip)
406 popfq_cfi # reset kernel eflags
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100407
408 call schedule_tail # rdi: 'prev' task parameter
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 GET_THREAD_INFO(%rcx)
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 RESTORE_REST
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100413
414 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
Jan Beulich70ea6852011-11-29 10:54:22 +0000415 jz retint_restore_args
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100416
417 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 jnz int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100419
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100420 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100421 jmp ret_from_sys_call # go to the SYSRET fastpath
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200424END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426/*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300427 * System call entry. Up to 6 arguments in registers are supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 *
429 * SYSCALL does not save anything on the stack and does not change the
430 * stack pointer.
431 */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100434 * Register setup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 * rax system call number
436 * rdi arg0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100437 * rcx return address for syscall/sysret, C arg3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100439 * rdx arg2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 * r10 arg3 (--> moved to rcx for C)
441 * r8 arg4
442 * r9 arg5
443 * r11 eflags for syscall/sysret, temporary for C
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100444 * r12-r15,rbp,rbx saved by C code, not touched.
445 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 * 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 Kleen7bf36bb2006-04-07 19:50:00 +0200451 *
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 Heukelum0bd7b792008-11-16 15:29:00 +0100455 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200458 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200459 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900460 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200461 CFI_REGISTER rip,rcx
462 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100463 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 Beulichf6b2bc82011-11-29 11:24:10 +0000469GLOBAL(system_call_after_swapgs)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100470
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900471 movq %rsp,PER_CPU_VAR(old_rsp)
Brian Gerst9af45652009-01-19 00:38:58 +0900472 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700473 /*
474 * No need to follow this irqs off/on section - it's straight
475 * and short:
476 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100477 ENABLE_INTERRUPTS(CLBR_NONE)
Borislav Petkovcac0e0a2011-05-31 22:21:52 +0200478 SAVE_ARGS 8,0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100479 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
Jan Beulich7effaa82005-09-12 18:49:24 +0200480 movq %rcx,RIP-ARGOFFSET(%rsp)
481 CFI_REL_OFFSET rip,RIP-ARGOFFSET
Jan Beulich46db09d2011-11-29 11:17:45 +0000482 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700484system_call_fastpath:
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800485#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800487#else
488 andl $__SYSCALL_MASK,%eax
489 cmpl $__NR_syscall_max,%eax
490#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 ja badsys
492 movq %r10,%rcx
493 call *sys_call_table(,%rax,8) # XXX: rip relative
494 movq %rax,RAX-ARGOFFSET(%rsp)
495/*
496 * Syscall return path ending with SYSRET (fast path)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100497 * Has incomplete stack frame and undefined top of stack.
498 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499ret_from_sys_call:
Andi Kleen11b854b2005-04-16 15:25:02 -0700500 movl $_TIF_ALLWORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 /* edi: flagmask */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100502sysret_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200503 LOCKDEP_SYS_EXIT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100504 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700505 TRACE_IRQS_OFF
Jan Beulich46db09d2011-11-29 11:17:45 +0000506 movl TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 andl %edi,%edx
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100508 jnz sysret_careful
Jan Beulichbcddc012006-12-07 02:14:02 +0100509 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700510 /*
511 * sysretq will re-enable interrupts:
512 */
513 TRACE_IRQS_ON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 movq RIP-ARGOFFSET(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200515 CFI_REGISTER rip,rcx
Borislav Petkov838feb42011-05-31 22:21:53 +0200516 RESTORE_ARGS 1,-ARG_SKIP,0
Jan Beulich7effaa82005-09-12 18:49:24 +0200517 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900518 movq PER_CPU_VAR(old_rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400519 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Jan Beulichbcddc012006-12-07 02:14:02 +0100521 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* Handle reschedules */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100523 /* edx: work, edi: workmask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524sysret_careful:
525 bt $TIF_NEED_RESCHED,%edx
526 jnc sysret_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700527 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100528 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100529 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100531 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 jmp sysret_check
533
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100534 /* Handle a signal */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535sysret_signal:
Ingo Molnar2601e642006-07-03 00:24:45 -0700536 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100537 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrath86a1c342008-06-23 15:37:04 -0700538#ifdef CONFIG_AUDITSYSCALL
539 bt $TIF_SYSCALL_AUDIT,%edx
540 jc sysret_audit
541#endif
Roland McGrathb60e7142009-09-22 16:46:34 -0700542 /*
543 * We have a signal, or exit tracing or single-step.
544 * These all wind up with the iret return path anyway,
545 * so just join that path right now.
546 */
547 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
548 jmp int_check_syscall_exit_work
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100549
Jan Beulich7effaa82005-09-12 18:49:24 +0200550badsys:
551 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
552 jmp ret_from_sys_call
553
Roland McGrath86a1c342008-06-23 15:37:04 -0700554#ifdef CONFIG_AUDITSYSCALL
555 /*
556 * Fast path for syscall audit without full syscall trace.
Eric Parisb05d8442012-01-03 14:23:06 -0500557 * We just call __audit_syscall_entry() directly, and then
Roland McGrath86a1c342008-06-23 15:37:04 -0700558 * jump back to the normal fast path.
559 */
560auditsys:
561 movq %r10,%r9 /* 6th arg: 4th syscall arg */
562 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
563 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
564 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
565 movq %rax,%rsi /* 2nd arg: syscall number */
566 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
Eric Parisb05d8442012-01-03 14:23:06 -0500567 call __audit_syscall_entry
Roland McGrath86a1c342008-06-23 15:37:04 -0700568 LOAD_ARGS 0 /* reload call-clobbered registers */
569 jmp system_call_fastpath
570
571 /*
Eric Parisd7e75282012-01-03 14:23:06 -0500572 * Return fast path for syscall audit. Call __audit_syscall_exit()
Roland McGrath86a1c342008-06-23 15:37:04 -0700573 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
574 * masked off.
575 */
576sysret_audit:
Roland McGrath03275592010-07-21 17:44:12 -0700577 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
Eric Parisd7e75282012-01-03 14:23:06 -0500578 cmpq $-MAX_ERRNO,%rsi /* is it < -MAX_ERRNO? */
579 setbe %al /* 1 if so, 0 if not */
Roland McGrath86a1c342008-06-23 15:37:04 -0700580 movzbl %al,%edi /* zero-extend that into %edi */
Eric Parisd7e75282012-01-03 14:23:06 -0500581 call __audit_syscall_exit
Roland McGrath86a1c342008-06-23 15:37:04 -0700582 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
583 jmp sysret_check
584#endif /* CONFIG_AUDITSYSCALL */
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100587tracesys:
Roland McGrath86a1c342008-06-23 15:37:04 -0700588#ifdef CONFIG_AUDITSYSCALL
Jan Beulich46db09d2011-11-29 11:17:45 +0000589 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Roland McGrath86a1c342008-06-23 15:37:04 -0700590 jz auditsys
591#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 SAVE_REST
Roland McGratha31f8dd2008-03-16 21:59:11 -0700593 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 FIXUP_TOP_OF_STACK %rdi
595 movq %rsp,%rdi
596 call syscall_trace_enter
Roland McGrathd4d67152008-07-09 02:38:07 -0700597 /*
598 * Reload arg registers from stack in case ptrace changed them.
599 * We don't reload %rax because syscall_trace_enter() returned
600 * the value it wants us to use in the table lookup.
601 */
602 LOAD_ARGS ARGOFFSET, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 RESTORE_REST
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800604#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800606#else
607 andl $__SYSCALL_MASK,%eax
608 cmpl $__NR_syscall_max,%eax
609#endif
Roland McGratha31f8dd2008-03-16 21:59:11 -0700610 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 movq %r10,%rcx /* fixup for C */
612 call *sys_call_table(,%rax,8)
Roland McGratha31f8dd2008-03-16 21:59:11 -0700613 movq %rax,RAX-ARGOFFSET(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200614 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100615
616/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 * Syscall return path ending with IRET.
618 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100619 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300620GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100621 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700622 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 movl $_TIF_ALLWORK_MASK,%edi
624 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300625GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200626 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300628 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 andl %edi,%edx
630 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300631 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 jmp retint_swapgs
633
634 /* Either reschedule or signal or syscall exit tracking needed. */
635 /* First do a reschedule test. */
636 /* edx: work, edi: workmask */
637int_careful:
638 bt $TIF_NEED_RESCHED,%edx
639 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700640 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100641 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100642 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100644 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100645 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700646 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 jmp int_with_check
648
649 /* handle signals and tracing -- both require a full stack frame */
650int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700651 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100652 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrathb60e7142009-09-22 16:46:34 -0700653int_check_syscall_exit_work:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100655 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700656 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100658 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100659 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100661 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700662 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100666 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 jz 1f
668 movq %rsp,%rdi # &ptregs -> arg1
669 xorl %esi,%esi # oldset -> arg2
670 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07006711: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672int_restore_rest:
673 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100674 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700675 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 jmp int_with_check
677 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100678END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100679
680/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 * Certain special system calls that need to save a complete full stack frame.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100682 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 .macro PTREGSCALL label,func,arg
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100684ENTRY(\label)
685 PARTIAL_FRAME 1 8 /* offset 8: return address */
686 subq $REST_SKIP, %rsp
687 CFI_ADJUST_CFA_OFFSET REST_SKIP
688 call save_rest
689 DEFAULT_FRAME 0 8 /* offset 8: return address */
690 leaq 8(%rsp), \arg /* pt_regs pointer */
691 call \func
692 jmp ptregscall_common
693 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200694END(\label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 .endm
696
697 PTREGSCALL stub_clone, sys_clone, %r8
698 PTREGSCALL stub_fork, sys_fork, %rdi
699 PTREGSCALL stub_vfork, sys_vfork, %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 PTREGSCALL stub_sigaltstack, sys_sigaltstack, %rdx
701 PTREGSCALL stub_iopl, sys_iopl, %rsi
702
703ENTRY(ptregscall_common)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100704 DEFAULT_FRAME 1 8 /* offset 8: return address */
705 RESTORE_TOP_OF_STACK %r11, 8
706 movq_cfi_restore R15+8, r15
707 movq_cfi_restore R14+8, r14
708 movq_cfi_restore R13+8, r13
709 movq_cfi_restore R12+8, r12
710 movq_cfi_restore RBP+8, rbp
711 movq_cfi_restore RBX+8, rbx
712 ret $REST_SKIP /* pop extended registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200714END(ptregscall_common)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716ENTRY(stub_execve)
717 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100718 addq $8, %rsp
719 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 FIXUP_TOP_OF_STACK %r11
Ingo Molnar5d119b22008-02-26 12:55:57 +0100722 movq %rsp, %rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 RESTORE_TOP_OF_STACK %r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 movq %rax,RAX(%rsp)
726 RESTORE_REST
727 jmp int_ret_from_sys_call
728 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200729END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731/*
732 * sigreturn is special because it needs to restore all registers on return.
733 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100734 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735ENTRY(stub_rt_sigreturn)
736 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200737 addq $8, %rsp
Jan Beuliche6b04b62010-09-02 13:52:45 +0100738 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 SAVE_REST
740 movq %rsp,%rdi
741 FIXUP_TOP_OF_STACK %r11
742 call sys_rt_sigreturn
743 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
744 RESTORE_REST
745 jmp int_ret_from_sys_call
746 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200747END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800749#ifdef CONFIG_X86_X32_ABI
750 PTREGSCALL stub_x32_sigaltstack, sys32_sigaltstack, %rdx
751
752ENTRY(stub_x32_rt_sigreturn)
753 CFI_STARTPROC
754 addq $8, %rsp
755 PARTIAL_FRAME 0
756 SAVE_REST
757 movq %rsp,%rdi
758 FIXUP_TOP_OF_STACK %r11
759 call sys32_x32_rt_sigreturn
760 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
761 RESTORE_REST
762 jmp int_ret_from_sys_call
763 CFI_ENDPROC
764END(stub_x32_rt_sigreturn)
765
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800766ENTRY(stub_x32_execve)
767 CFI_STARTPROC
768 addq $8, %rsp
769 PARTIAL_FRAME 0
770 SAVE_REST
771 FIXUP_TOP_OF_STACK %r11
772 movq %rsp, %rcx
773 call sys32_execve
774 RESTORE_TOP_OF_STACK %r11
775 movq %rax,RAX(%rsp)
776 RESTORE_REST
777 jmp int_ret_from_sys_call
778 CFI_ENDPROC
779END(stub_x32_execve)
780
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800781#endif
782
Jan Beulich7effaa82005-09-12 18:49:24 +0200783/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800784 * Build the entry stubs and pointer table with some assembler magic.
785 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
786 * single cache line on all modern x86 implementations.
787 */
788 .section .init.rodata,"a"
789ENTRY(interrupt)
Jiri Olsaea714542011-03-07 19:10:39 +0100790 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800791 .p2align 5
792 .p2align CONFIG_X86_L1_CACHE_SHIFT
793ENTRY(irq_entries_start)
794 INTR_FRAME
795vector=FIRST_EXTERNAL_VECTOR
796.rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
797 .balign 32
798 .rept 7
799 .if vector < NR_VECTORS
H. Peter Anvin86655962008-11-12 10:27:35 -0800800 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800801 CFI_ADJUST_CFA_OFFSET -8
802 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01008031: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800804 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800805 jmp 2f
806 .endif
807 .previous
808 .quad 1b
Jiri Olsaea714542011-03-07 19:10:39 +0100809 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800810vector=vector+1
811 .endif
812 .endr
8132: jmp common_interrupt
814.endr
815 CFI_ENDPROC
816END(irq_entries_start)
817
818.previous
819END(interrupt)
820.previous
821
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100822/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 * Interrupt entry/exit.
824 *
825 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100826 *
827 * Entry runs with interrupts off.
828 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100830/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 .macro interrupt func
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100832 /* reserve pt_regs for scratch regs and rbp */
833 subq $ORIG_RAX-RBP, %rsp
834 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
Frederic Weisbecker18718532011-07-01 01:51:22 +0200835 SAVE_ARGS_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 call \func
837 .endm
838
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400839/*
840 * Interrupt entry/exit should be protected against kprobes
841 */
842 .pushsection .kprobes.text, "ax"
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100843 /*
844 * The interrupt stubs push (~vector+0x80) onto the stack and
845 * then jump to common_interrupt.
846 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800847 .p2align CONFIG_X86_L1_CACHE_SHIFT
848common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200849 XCPT_FRAME
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100850 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 interrupt do_IRQ
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900852 /* 0(%rsp): old_rsp-ARGOFFSET */
Jan Beulich7effaa82005-09-12 18:49:24 +0200853ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100854 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700855 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900856 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100857
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200858 /* Restore saved previous stack */
859 popq %rsi
Mark Wielaard928282e2012-02-24 11:32:05 +0100860 CFI_DEF_CFA rsi,SS+8-RBP /* reg/off reset after def_cfa_expr */
Jan Beulicheab9e612011-09-28 16:57:52 +0100861 leaq ARGOFFSET-RBP(%rsi), %rsp
Jan Beulich7effaa82005-09-12 18:49:24 +0200862 CFI_DEF_CFA_REGISTER rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100863 CFI_ADJUST_CFA_OFFSET RBP-ARGOFFSET
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100864
Jan Beulich7effaa82005-09-12 18:49:24 +0200865exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 GET_THREAD_INFO(%rcx)
867 testl $3,CS-ARGOFFSET(%rsp)
868 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 /* Interrupt came from user space */
871 /*
872 * Has a correct top of stack, but a partial stack frame
873 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100874 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875retint_with_reschedule:
876 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200877retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200878 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300879 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200881 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200883
884retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700885 /*
886 * The iretq could re-enable interrupts:
887 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100888 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700889 TRACE_IRQS_IRETQ
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100890 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700891 jmp restore_args
892
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200893retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100894 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700895 /*
896 * The iretq could re-enable interrupts:
897 */
898 TRACE_IRQS_IRETQ
899restore_args:
Borislav Petkov838feb42011-05-31 22:21:53 +0200900 RESTORE_ARGS 1,8,1
Ingo Molnar3701d8632008-02-09 23:24:08 +0100901
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200902irq_return:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100903 INTERRUPT_RETURN
H. Peter Anvind7abc0f2012-04-20 12:19:50 -0700904 _ASM_EXTABLE(irq_return, bad_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +0100905
906#ifdef CONFIG_PARAVIRT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100907ENTRY(native_iret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 iretq
H. Peter Anvind7abc0f2012-04-20 12:19:50 -0700909 _ASM_EXTABLE(native_iret, bad_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +0100910#endif
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913bad_iret:
Roland McGrath3aa4b372008-02-06 22:39:43 +0100914 /*
915 * The iret traps when the %cs or %ss being restored is bogus.
916 * We've lost the original trap vector and error code.
917 * #GPF is the most likely one to get for an invalid selector.
918 * So pretend we completed the iret and took the #GPF in user mode.
919 *
920 * We are now running with the kernel GS after exception recovery.
921 * But error_entry expects us to have user GS to match the user %cs,
922 * so swap back.
923 */
924 pushq $0
925
926 SWAPGS
927 jmp general_protection
928
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100929 .previous
930
Jan Beulich7effaa82005-09-12 18:49:24 +0200931 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200933 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 bt $TIF_NEED_RESCHED,%edx
935 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700936 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100937 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100938 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100940 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100942 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700943 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100947 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700948 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700949 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100950 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100952 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700953 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 movq %rsp,%rdi # &pt_regs
955 call do_notify_resume
956 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100957 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700958 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -0700959 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -0700960 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962#ifdef CONFIG_PREEMPT
963 /* Returning to kernel space. Check if we need preemption */
964 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +0200965ENTRY(retint_kernel)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300966 cmpl $0,TI_preempt_count(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 jnz retint_restore_args
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300968 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 jnc retint_restore_args
970 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
971 jnc retint_restore_args
972 call preempt_schedule_irq
973 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100974#endif
Jan Beulich4b787e02006-06-26 13:56:55 +0200975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200977END(common_interrupt)
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400978/*
979 * End of kprobes section
980 */
981 .popsection
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983/*
984 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100985 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100986.macro apicinterrupt num sym do_sym
987ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +0200988 INTR_FRAME
Jan Beulichdf5d1872010-09-02 14:07:16 +0100989 pushq_cfi $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +0000990.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100991 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 jmp ret_from_intr
993 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100994END(\sym)
995.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100996
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100997#ifdef CONFIG_SMP
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100998apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
999 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Andi Kleen4ef702c2009-05-27 21:56:52 +02001000apicinterrupt REBOOT_VECTOR \
1001 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002#endif
1003
Nick Piggin03b48632009-01-20 04:36:04 +01001004#ifdef CONFIG_X86_UV
Cyrill Gorcunov5ae3a132008-11-27 00:02:10 +03001005apicinterrupt UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001006 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +01001007#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001008apicinterrupt LOCAL_TIMER_VECTOR \
1009 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -05001010apicinterrupt X86_PLATFORM_IPI_VECTOR \
1011 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001013#ifdef CONFIG_SMP
Jan Beulich39e95432011-11-29 11:03:46 +00001014 ALIGN
1015 INTR_FRAME
1016.irp idx,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15, \
Shaohua Li3a09fb42011-01-17 10:52:05 +08001017 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31
1018.if NUM_INVALIDATE_TLB_VECTORS > \idx
Jan Beulich39e95432011-11-29 11:03:46 +00001019ENTRY(invalidate_interrupt\idx)
1020 pushq_cfi $~(INVALIDATE_TLB_VECTOR_START+\idx)
1021 jmp .Lcommon_invalidate_interrupt0
1022 CFI_ADJUST_CFA_OFFSET -8
1023END(invalidate_interrupt\idx)
Shaohua Li3a09fb42011-01-17 10:52:05 +08001024.endif
Jan Beulich32342822010-10-19 14:52:26 +01001025.endr
Jan Beulich39e95432011-11-29 11:03:46 +00001026 CFI_ENDPROC
1027apicinterrupt INVALIDATE_TLB_VECTOR_START, \
1028 invalidate_interrupt0, smp_invalidate_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001029#endif
Cliff Wickman18129242008-06-02 08:56:14 -05001030
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001031apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +02001032 threshold_interrupt smp_threshold_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001033apicinterrupt THERMAL_APIC_VECTOR \
1034 thermal_interrupt smp_thermal_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001036#ifdef CONFIG_SMP
1037apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1038 call_function_single_interrupt smp_call_function_single_interrupt
1039apicinterrupt CALL_FUNCTION_VECTOR \
1040 call_function_interrupt smp_call_function_interrupt
1041apicinterrupt RESCHEDULE_VECTOR \
1042 reschedule_interrupt smp_reschedule_interrupt
1043#endif
1044
1045apicinterrupt ERROR_APIC_VECTOR \
1046 error_interrupt smp_error_interrupt
1047apicinterrupt SPURIOUS_APIC_VECTOR \
1048 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001049
Peter Zijlstrae360adb2010-10-14 14:01:34 +08001050#ifdef CONFIG_IRQ_WORK
1051apicinterrupt IRQ_WORK_VECTOR \
1052 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +01001053#endif
1054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055/*
1056 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001057 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001058.macro zeroentry sym do_sym
1059ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001060 INTR_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001061 PARAVIRT_ADJUST_EXCEPTION_FRAME
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001062 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001063 subq $ORIG_RAX-R15, %rsp
1064 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001065 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001066 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001067 movq %rsp,%rdi /* pt_regs pointer */
1068 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001069 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001070 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001071 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001072END(\sym)
1073.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001075.macro paranoidzeroentry sym do_sym
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001076ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001077 INTR_FRAME
1078 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001079 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1080 subq $ORIG_RAX-R15, %rsp
1081 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001082 call save_paranoid
1083 TRACE_IRQS_OFF
1084 movq %rsp,%rdi /* pt_regs pointer */
1085 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001086 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001087 jmp paranoid_exit /* %ebx: no swapgs flag */
1088 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001089END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001090.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001091
Brian Gerstc15a5952010-07-31 12:48:22 -04001092#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001093.macro paranoidzeroentry_ist sym do_sym ist
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001094ENTRY(\sym)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001095 INTR_FRAME
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001096 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001097 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1098 subq $ORIG_RAX-R15, %rsp
1099 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001100 call save_paranoid
1101 TRACE_IRQS_OFF
1102 movq %rsp,%rdi /* pt_regs pointer */
1103 xorl %esi,%esi /* no error code */
Brian Gerstc15a5952010-07-31 12:48:22 -04001104 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001105 call \do_sym
Brian Gerstc15a5952010-07-31 12:48:22 -04001106 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001107 jmp paranoid_exit /* %ebx: no swapgs flag */
1108 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001109END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001110.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001111
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001112.macro errorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001113ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001114 XCPT_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001115 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001116 subq $ORIG_RAX-R15, %rsp
1117 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001118 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001119 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001120 movq %rsp,%rdi /* pt_regs pointer */
1121 movq ORIG_RAX(%rsp),%rsi /* get error code */
1122 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001123 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001124 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001125 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001126END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001127.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 /* error code is on the stack already */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001130.macro paranoiderrorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001131ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001132 XCPT_FRAME
1133 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001134 subq $ORIG_RAX-R15, %rsp
1135 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +01001136 call save_paranoid
1137 DEFAULT_FRAME 0
Alexander van Heukelum7e61a792008-09-26 14:03:03 +02001138 TRACE_IRQS_OFF
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001139 movq %rsp,%rdi /* pt_regs pointer */
1140 movq ORIG_RAX(%rsp),%rsi /* get error code */
1141 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001142 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001143 jmp paranoid_exit /* %ebx: no swapgs flag */
1144 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001145END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001146.endm
1147
1148zeroentry divide_error do_divide_error
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001149zeroentry overflow do_overflow
1150zeroentry bounds do_bounds
1151zeroentry invalid_op do_invalid_op
1152zeroentry device_not_available do_device_not_available
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001153paranoiderrorentry double_fault do_double_fault
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001154zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1155errorentry invalid_TSS do_invalid_TSS
1156errorentry segment_not_present do_segment_not_present
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001157zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1158zeroentry coprocessor_error do_coprocessor_error
1159errorentry alignment_check do_alignment_check
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001160zeroentry simd_coprocessor_error do_simd_coprocessor_error
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001161
Ingo Molnar2601e642006-07-03 00:24:45 -07001162
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001163 /* Reload gs selector with exception handling */
1164 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001165ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001166 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001167 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001168 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001169 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001170gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001171 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070011722: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001173 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001174 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001175 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001176 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001177END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001178
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001179 _ASM_EXTABLE(gs_change,bad_gs)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001180 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001182bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001183 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001185 movl %eax,%gs
1186 jmp 2b
1187 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001188
Brian Gerst3bd95df2009-12-09 12:34:40 -05001189ENTRY(kernel_thread_helper)
Andi Kleenc05991e2006-08-30 19:37:08 +02001190 pushq $0 # fake return address
1191 CFI_STARTPROC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 /*
1193 * Here we are in the child and the registers are set as they were
1194 * at kernel_thread() invocation in the parent.
1195 */
Brian Gerst3bd95df2009-12-09 12:34:40 -05001196 call *%rsi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 # exit
Andrey Mirkin1c5b5cf2007-10-17 18:04:33 +02001198 mov %eax, %edi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 call do_exit
jia zhang5f5db592008-11-23 22:47:10 +08001200 ud2 # padding for call trace
Andi Kleenc05991e2006-08-30 19:37:08 +02001201 CFI_ENDPROC
Brian Gerst3bd95df2009-12-09 12:34:40 -05001202END(kernel_thread_helper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204/*
1205 * execve(). This function needs to use IRET, not SYSRET, to set up all state properly.
1206 *
1207 * C extern interface:
David Howellsc7887322010-08-11 11:26:22 +01001208 * extern long execve(const char *name, char **argv, char **envp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 *
1210 * asm input arguments:
1211 * rdi: name, rsi: argv, rdx: envp
1212 *
1213 * We want to fallback into:
David Howellsc7887322010-08-11 11:26:22 +01001214 * extern long sys_execve(const char *name, char **argv,char **envp, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 *
1216 * do_sys_execve asm fallback arguments:
Ingo Molnar5d119b22008-02-26 12:55:57 +01001217 * rdi: name, rsi: argv, rdx: envp, rcx: fake frame on the stack
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 */
Arnd Bergmann3db03b42006-10-02 02:18:31 -07001219ENTRY(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 CFI_STARTPROC
1221 FAKE_STACK_FRAME $0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001222 SAVE_ALL
Ingo Molnar5d119b22008-02-26 12:55:57 +01001223 movq %rsp,%rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 call sys_execve
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001225 movq %rax, RAX(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 RESTORE_REST
1227 testq %rax,%rax
1228 je int_ret_from_sys_call
1229 RESTORE_ARGS
1230 UNFAKE_STACK_FRAME
1231 ret
1232 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001233END(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Andi Kleen26995002006-08-02 22:37:28 +02001235/* Call softirq on interrupt stack. Interrupts are off. */
Andi Kleened6b6762005-07-28 21:15:49 -07001236ENTRY(call_softirq)
Jan Beulich7effaa82005-09-12 18:49:24 +02001237 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001238 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001239 CFI_REL_OFFSET rbp,0
1240 mov %rsp,%rbp
1241 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001242 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001243 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001244 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001245 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001246 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001247 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001248 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001249 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001250 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001251 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001252 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001253END(call_softirq)
Andi Kleen75154f42007-06-23 02:29:25 +02001254
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001255#ifdef CONFIG_XEN
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001256zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001257
1258/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001259 * A note on the "critical region" in our callback handler.
1260 * We want to avoid stacking callback handlers due to events occurring
1261 * during handling of the last event. To do this, we keep events disabled
1262 * until we've done all processing. HOWEVER, we must enable events before
1263 * popping the stack frame (can't be done atomically) and so it would still
1264 * be possible to get enough handler activations to overflow the stack.
1265 * Although unlikely, bugs of that kind are hard to track down, so we'd
1266 * like to avoid the possibility.
1267 * So, on entry to the handler we detect whether we interrupted an
1268 * existing activation in its critical region -- if so, we pop the current
1269 * activation and restart the handler using the previous one.
1270 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001271ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1272 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001273/*
1274 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1275 * see the correct pointer to the pt_regs
1276 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001277 movq %rdi, %rsp # we don't return, adjust the stack frame
1278 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001279 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900128011: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001281 movq %rsp,%rbp
1282 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001283 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001284 pushq %rbp # backlink for old unwinder
1285 call xen_evtchn_do_upcall
1286 popq %rsp
1287 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001288 decl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001289 jmp error_exit
1290 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001291END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001292
1293/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001294 * Hypervisor uses this for application faults while it executes.
1295 * We get here for two reasons:
1296 * 1. Fault while reloading DS, ES, FS or GS
1297 * 2. Fault while executing IRET
1298 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1299 * registers that could be reloaded and zeroed the others.
1300 * Category 2 we fix up by killing the current process. We cannot use the
1301 * normal Linux return path in this case because if we use the IRET hypercall
1302 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1303 * We distinguish between categories by comparing each saved segment register
1304 * with its current contents: any discrepancy means we in category 1.
1305 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001306ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001307 INTR_FRAME 1 (6*8)
1308 /*CFI_REL_OFFSET gs,GS*/
1309 /*CFI_REL_OFFSET fs,FS*/
1310 /*CFI_REL_OFFSET es,ES*/
1311 /*CFI_REL_OFFSET ds,DS*/
1312 CFI_REL_OFFSET r11,8
1313 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001314 movw %ds,%cx
1315 cmpw %cx,0x10(%rsp)
1316 CFI_REMEMBER_STATE
1317 jne 1f
1318 movw %es,%cx
1319 cmpw %cx,0x18(%rsp)
1320 jne 1f
1321 movw %fs,%cx
1322 cmpw %cx,0x20(%rsp)
1323 jne 1f
1324 movw %gs,%cx
1325 cmpw %cx,0x28(%rsp)
1326 jne 1f
1327 /* All segments match their saved values => Category 2 (Bad IRET). */
1328 movq (%rsp),%rcx
1329 CFI_RESTORE rcx
1330 movq 8(%rsp),%r11
1331 CFI_RESTORE r11
1332 addq $0x30,%rsp
1333 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001334 pushq_cfi $0 /* RIP */
1335 pushq_cfi %r11
1336 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001337 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001338 CFI_RESTORE_STATE
13391: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1340 movq (%rsp),%rcx
1341 CFI_RESTORE rcx
1342 movq 8(%rsp),%r11
1343 CFI_RESTORE r11
1344 addq $0x30,%rsp
1345 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001346 pushq_cfi $0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001347 SAVE_ALL
1348 jmp error_exit
1349 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001350END(xen_failsafe_callback)
1351
Sheng Yang38e20b02010-05-14 12:40:51 +01001352apicinterrupt XEN_HVM_EVTCHN_CALLBACK \
1353 xen_hvm_callback_vector xen_evtchn_do_upcall
1354
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001355#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001356
1357/*
1358 * Some functions should be protected against kprobes
1359 */
1360 .pushsection .kprobes.text, "ax"
1361
1362paranoidzeroentry_ist debug do_debug DEBUG_STACK
1363paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1364paranoiderrorentry stack_segment do_stack_segment
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001365#ifdef CONFIG_XEN
1366zeroentry xen_debug do_debug
1367zeroentry xen_int3 do_int3
1368errorentry xen_stack_segment do_stack_segment
1369#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001370errorentry general_protection do_general_protection
1371errorentry page_fault do_page_fault
Gleb Natapov631bc482010-10-14 11:22:52 +02001372#ifdef CONFIG_KVM_GUEST
1373errorentry async_page_fault do_async_page_fault
1374#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001375#ifdef CONFIG_X86_MCE
Andi Kleen5d727922009-04-27 19:25:48 +02001376paranoidzeroentry machine_check *machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001377#endif
1378
1379 /*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001380 * "Paranoid" exit path from exception stack.
1381 * Paranoid because this is used by NMIs and cannot take
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001382 * any kernel state for granted.
1383 * We don't do kernel preemption checks here, because only
1384 * NMI should be common and it does not enable IRQs and
1385 * cannot get reschedule ticks.
1386 *
1387 * "trace" is 0 for the NMI handler only, because irq-tracing
1388 * is fundamentally NMI-unsafe. (we cannot change the soft and
1389 * hard flags at once, atomically)
1390 */
1391
1392 /* ebx: no swapgs flag */
1393ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001394 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001395 DISABLE_INTERRUPTS(CLBR_NONE)
1396 TRACE_IRQS_OFF
1397 testl %ebx,%ebx /* swapgs needed? */
1398 jnz paranoid_restore
1399 testl $3,CS(%rsp)
1400 jnz paranoid_userspace
1401paranoid_swapgs:
1402 TRACE_IRQS_IRETQ 0
1403 SWAPGS_UNSAFE_STACK
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001404 RESTORE_ALL 8
1405 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001406paranoid_restore:
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001407 TRACE_IRQS_IRETQ 0
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001408 RESTORE_ALL 8
1409 jmp irq_return
1410paranoid_userspace:
1411 GET_THREAD_INFO(%rcx)
1412 movl TI_flags(%rcx),%ebx
1413 andl $_TIF_WORK_MASK,%ebx
1414 jz paranoid_swapgs
1415 movq %rsp,%rdi /* &pt_regs */
1416 call sync_regs
1417 movq %rax,%rsp /* switch stack for scheduling */
1418 testl $_TIF_NEED_RESCHED,%ebx
1419 jnz paranoid_schedule
1420 movl %ebx,%edx /* arg3: thread flags */
1421 TRACE_IRQS_ON
1422 ENABLE_INTERRUPTS(CLBR_NONE)
1423 xorl %esi,%esi /* arg2: oldset */
1424 movq %rsp,%rdi /* arg1: &pt_regs */
1425 call do_notify_resume
1426 DISABLE_INTERRUPTS(CLBR_NONE)
1427 TRACE_IRQS_OFF
1428 jmp paranoid_userspace
1429paranoid_schedule:
1430 TRACE_IRQS_ON
1431 ENABLE_INTERRUPTS(CLBR_ANY)
1432 call schedule
1433 DISABLE_INTERRUPTS(CLBR_ANY)
1434 TRACE_IRQS_OFF
1435 jmp paranoid_userspace
1436 CFI_ENDPROC
1437END(paranoid_exit)
1438
1439/*
1440 * Exception entry point. This expects an error code/orig_rax on the stack.
1441 * returns in "no swapgs flag" in %ebx.
1442 */
1443ENTRY(error_entry)
1444 XCPT_FRAME
1445 CFI_ADJUST_CFA_OFFSET 15*8
1446 /* oldrax contains error code */
1447 cld
1448 movq_cfi rdi, RDI+8
1449 movq_cfi rsi, RSI+8
1450 movq_cfi rdx, RDX+8
1451 movq_cfi rcx, RCX+8
1452 movq_cfi rax, RAX+8
1453 movq_cfi r8, R8+8
1454 movq_cfi r9, R9+8
1455 movq_cfi r10, R10+8
1456 movq_cfi r11, R11+8
1457 movq_cfi rbx, RBX+8
1458 movq_cfi rbp, RBP+8
1459 movq_cfi r12, R12+8
1460 movq_cfi r13, R13+8
1461 movq_cfi r14, R14+8
1462 movq_cfi r15, R15+8
1463 xorl %ebx,%ebx
1464 testl $3,CS+8(%rsp)
1465 je error_kernelspace
1466error_swapgs:
1467 SWAPGS
1468error_sti:
1469 TRACE_IRQS_OFF
1470 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001471
1472/*
1473 * There are two places in the kernel that can potentially fault with
1474 * usergs. Handle them here. The exception handlers after iret run with
1475 * kernel gs again, so don't set the user space flag. B stepping K8s
1476 * sometimes report an truncated RIP for IRET exceptions returning to
1477 * compat mode. Check for these here too.
1478 */
1479error_kernelspace:
1480 incl %ebx
1481 leaq irq_return(%rip),%rcx
1482 cmpq %rcx,RIP+8(%rsp)
1483 je error_swapgs
Brian Gerstae24ffe2009-10-12 10:18:23 -04001484 movl %ecx,%eax /* zero extend */
1485 cmpq %rax,RIP+8(%rsp)
1486 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001487 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001488 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001489 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001490
1491bstep_iret:
1492 /* Fix truncated RIP */
1493 movq %rcx,RIP+8(%rsp)
Brian Gerst97829de2009-11-03 14:02:05 -05001494 jmp error_swapgs
Jan Beuliche6b04b62010-09-02 13:52:45 +01001495 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001496END(error_entry)
1497
1498
1499/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1500ENTRY(error_exit)
1501 DEFAULT_FRAME
1502 movl %ebx,%eax
1503 RESTORE_REST
1504 DISABLE_INTERRUPTS(CLBR_NONE)
1505 TRACE_IRQS_OFF
1506 GET_THREAD_INFO(%rcx)
1507 testl %eax,%eax
1508 jne retint_kernel
1509 LOCKDEP_SYS_EXIT_IRQ
1510 movl TI_flags(%rcx),%edx
1511 movl $_TIF_WORK_MASK,%edi
1512 andl %edi,%edx
1513 jnz retint_careful
1514 jmp retint_swapgs
1515 CFI_ENDPROC
1516END(error_exit)
1517
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001518/*
1519 * Test if a given stack is an NMI stack or not.
1520 */
1521 .macro test_in_nmi reg stack nmi_ret normal_ret
1522 cmpq %\reg, \stack
1523 ja \normal_ret
1524 subq $EXCEPTION_STKSZ, %\reg
1525 cmpq %\reg, \stack
1526 jb \normal_ret
1527 jmp \nmi_ret
1528 .endm
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001529
1530 /* runs on exception stack */
1531ENTRY(nmi)
1532 INTR_FRAME
1533 PARAVIRT_ADJUST_EXCEPTION_FRAME
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001534 /*
1535 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1536 * the iretq it performs will take us out of NMI context.
1537 * This means that we can have nested NMIs where the next
1538 * NMI is using the top of the stack of the previous NMI. We
1539 * can't let it execute because the nested NMI will corrupt the
1540 * stack of the previous NMI. NMI handlers are not re-entrant
1541 * anyway.
1542 *
1543 * To handle this case we do the following:
1544 * Check the a special location on the stack that contains
1545 * a variable that is set when NMIs are executing.
1546 * The interrupted task's stack is also checked to see if it
1547 * is an NMI stack.
1548 * If the variable is not set and the stack is not the NMI
1549 * stack then:
1550 * o Set the special variable on the stack
1551 * o Copy the interrupt frame into a "saved" location on the stack
1552 * o Copy the interrupt frame into a "copy" location on the stack
1553 * o Continue processing the NMI
1554 * If the variable is set or the previous stack is the NMI stack:
1555 * o Modify the "copy" location to jump to the repeate_nmi
1556 * o return back to the first NMI
1557 *
1558 * Now on exit of the first NMI, we first clear the stack variable
1559 * The NMI stack will tell any nested NMIs at that point that it is
1560 * nested. Then we pop the stack normally with iret, and if there was
1561 * a nested NMI that updated the copy interrupt stack frame, a
1562 * jump will be made to the repeat_nmi code that will handle the second
1563 * NMI.
1564 */
1565
1566 /* Use %rdx as out temp variable throughout */
1567 pushq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001568 CFI_REL_OFFSET rdx, 0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001569
1570 /*
Steven Rostedt45d5a162012-02-19 16:43:37 -05001571 * If %cs was not the kernel segment, then the NMI triggered in user
1572 * space, which means it is definitely not nested.
1573 */
Steven Rostedta38449e2012-02-20 15:29:34 -05001574 cmpl $__KERNEL_CS, 16(%rsp)
Steven Rostedt45d5a162012-02-19 16:43:37 -05001575 jne first_nmi
1576
1577 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001578 * Check the special variable on the stack to see if NMIs are
1579 * executing.
1580 */
Steven Rostedta38449e2012-02-20 15:29:34 -05001581 cmpl $1, -8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001582 je nested_nmi
1583
1584 /*
1585 * Now test if the previous stack was an NMI stack.
1586 * We need the double check. We check the NMI stack to satisfy the
1587 * race when the first NMI clears the variable before returning.
1588 * We check the variable because the first NMI could be in a
1589 * breakpoint routine using a breakpoint stack.
1590 */
1591 lea 6*8(%rsp), %rdx
1592 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
Jan Beulich62610912012-02-24 14:54:37 +00001593 CFI_REMEMBER_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001594
1595nested_nmi:
1596 /*
1597 * Do nothing if we interrupted the fixup in repeat_nmi.
1598 * It's about to repeat the NMI handler, so we are fine
1599 * with ignoring this one.
1600 */
1601 movq $repeat_nmi, %rdx
1602 cmpq 8(%rsp), %rdx
1603 ja 1f
1604 movq $end_repeat_nmi, %rdx
1605 cmpq 8(%rsp), %rdx
1606 ja nested_nmi_out
1607
16081:
1609 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
1610 leaq -6*8(%rsp), %rdx
1611 movq %rdx, %rsp
1612 CFI_ADJUST_CFA_OFFSET 6*8
1613 pushq_cfi $__KERNEL_DS
1614 pushq_cfi %rdx
1615 pushfq_cfi
1616 pushq_cfi $__KERNEL_CS
1617 pushq_cfi $repeat_nmi
1618
1619 /* Put stack back */
1620 addq $(11*8), %rsp
1621 CFI_ADJUST_CFA_OFFSET -11*8
1622
1623nested_nmi_out:
1624 popq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001625 CFI_RESTORE rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001626
1627 /* No need to check faults here */
1628 INTERRUPT_RETURN
1629
Jan Beulich62610912012-02-24 14:54:37 +00001630 CFI_RESTORE_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001631first_nmi:
1632 /*
1633 * Because nested NMIs will use the pushed location that we
1634 * stored in rdx, we must keep that space available.
1635 * Here's what our stack frame will look like:
1636 * +-------------------------+
1637 * | original SS |
1638 * | original Return RSP |
1639 * | original RFLAGS |
1640 * | original CS |
1641 * | original RIP |
1642 * +-------------------------+
1643 * | temp storage for rdx |
1644 * +-------------------------+
1645 * | NMI executing variable |
1646 * +-------------------------+
1647 * | Saved SS |
1648 * | Saved Return RSP |
1649 * | Saved RFLAGS |
1650 * | Saved CS |
1651 * | Saved RIP |
1652 * +-------------------------+
1653 * | copied SS |
1654 * | copied Return RSP |
1655 * | copied RFLAGS |
1656 * | copied CS |
1657 * | copied RIP |
1658 * +-------------------------+
1659 * | pt_regs |
1660 * +-------------------------+
1661 *
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001662 * The saved stack frame is used to fix up the copied stack frame
1663 * that a nested NMI may change to make the interrupted NMI iret jump
1664 * to the repeat_nmi. The original stack frame and the temp storage
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001665 * is also used by nested NMIs and can not be trusted on exit.
1666 */
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001667 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
Jan Beulich62610912012-02-24 14:54:37 +00001668 movq (%rsp), %rdx
1669 CFI_RESTORE rdx
1670
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001671 /* Set the NMI executing variable on the stack. */
1672 pushq_cfi $1
1673
1674 /* Copy the stack frame to the Saved frame */
1675 .rept 5
1676 pushq_cfi 6*8(%rsp)
1677 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001678 CFI_DEF_CFA_OFFSET SS+8-RIP
1679
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001680 /* Everything up to here is safe from nested NMIs */
1681
Jan Beulich62610912012-02-24 14:54:37 +00001682 /*
1683 * If there was a nested NMI, the first NMI's iret will return
1684 * here. But NMIs are still enabled and we can take another
1685 * nested NMI. The nested NMI checks the interrupted RIP to see
1686 * if it is between repeat_nmi and end_repeat_nmi, and if so
1687 * it will just return, as we are about to repeat an NMI anyway.
1688 * This makes it safe to copy to the stack frame that a nested
1689 * NMI will update.
1690 */
1691repeat_nmi:
1692 /*
1693 * Update the stack variable to say we are still in NMI (the update
1694 * is benign for the non-repeat case, where 1 was pushed just above
1695 * to this very stack slot).
1696 */
1697 movq $1, 5*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001698
1699 /* Make another copy, this one may be modified by nested NMIs */
1700 .rept 5
1701 pushq_cfi 4*8(%rsp)
1702 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001703 CFI_DEF_CFA_OFFSET SS+8-RIP
1704end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001705
1706 /*
1707 * Everything below this point can be preempted by a nested
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001708 * NMI if the first NMI took an exception and reset our iret stack
1709 * so that we repeat another NMI.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001710 */
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001711 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001712 subq $ORIG_RAX-R15, %rsp
1713 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001714 /*
1715 * Use save_paranoid to handle SWAPGS, but no need to use paranoid_exit
1716 * as we should not be calling schedule in NMI context.
1717 * Even with normal interrupts enabled. An NMI should not be
1718 * setting NEED_RESCHED or anything that normal interrupts and
1719 * exceptions might do.
1720 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001721 call save_paranoid
1722 DEFAULT_FRAME 0
1723 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1724 movq %rsp,%rdi
1725 movq $-1,%rsi
1726 call do_nmi
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001727 testl %ebx,%ebx /* swapgs needed? */
1728 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001729nmi_swapgs:
1730 SWAPGS_UNSAFE_STACK
1731nmi_restore:
1732 RESTORE_ALL 8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001733 /* Clear the NMI executing stack variable */
1734 movq $0, 10*8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001735 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001736 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001737END(nmi)
1738
1739ENTRY(ignore_sysret)
1740 CFI_STARTPROC
1741 mov $-ENOSYS,%eax
1742 sysret
1743 CFI_ENDPROC
1744END(ignore_sysret)
1745
1746/*
1747 * End of kprobes section
1748 */
1749 .popsection