blob: ce87e3d10c634baadf693aa2f6ae9c51f54fcc68 [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>
H. Peter Anvin63bcff22012-09-21 12:43:12 -070059#include <asm/smap.h>
Eric Parisd7e75282012-01-03 14:23:06 -050060#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Roland McGrath86a1c342008-06-23 15:37:04 -070062/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
63#include <linux/elf-em.h>
64#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
65#define __AUDIT_ARCH_64BIT 0x80000000
66#define __AUDIT_ARCH_LE 0x40000000
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 .code64
Jiri Olsaea714542011-03-07 19:10:39 +010069 .section .entry.text, "ax"
70
Steven Rostedt606576c2008-10-06 19:06:12 -040071#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtd61f82d2008-05-12 21:20:43 +020072#ifdef CONFIG_DYNAMIC_FTRACE
73ENTRY(mcount)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020074 retq
75END(mcount)
76
77ENTRY(ftrace_caller)
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050078 cmpl $0, function_trace_stop
79 jne ftrace_stub
Steven Rostedtd61f82d2008-05-12 21:20:43 +020080
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +030081 MCOUNT_SAVE_FRAME
Steven Rostedtd61f82d2008-05-12 21:20:43 +020082
83 movq 0x38(%rsp), %rdi
84 movq 8(%rbp), %rsi
Abhishek Sagar395a59d2008-06-21 23:47:27 +053085 subq $MCOUNT_INSN_SIZE, %rdi
Steven Rostedtd61f82d2008-05-12 21:20:43 +020086
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030087GLOBAL(ftrace_call)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020088 call ftrace_stub
89
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +030090 MCOUNT_RESTORE_FRAME
Steven Rostedtd61f82d2008-05-12 21:20:43 +020091
Frederic Weisbecker48d68b22008-12-02 00:20:39 +010092#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030093GLOBAL(ftrace_graph_call)
Frederic Weisbecker48d68b22008-12-02 00:20:39 +010094 jmp ftrace_stub
95#endif
Steven Rostedtd61f82d2008-05-12 21:20:43 +020096
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030097GLOBAL(ftrace_stub)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020098 retq
99END(ftrace_caller)
100
101#else /* ! CONFIG_DYNAMIC_FTRACE */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200102ENTRY(mcount)
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500103 cmpl $0, function_trace_stop
104 jne ftrace_stub
105
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200106 cmpq $ftrace_stub, ftrace_trace_function
107 jnz trace
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100108
109#ifdef CONFIG_FUNCTION_GRAPH_TRACER
110 cmpq $ftrace_stub, ftrace_graph_return
111 jnz ftrace_graph_caller
Steven Rostedte49dc192008-12-02 23:50:05 -0500112
113 cmpq $ftrace_graph_entry_stub, ftrace_graph_entry
114 jnz ftrace_graph_caller
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100115#endif
116
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300117GLOBAL(ftrace_stub)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200118 retq
119
120trace:
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300121 MCOUNT_SAVE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200122
123 movq 0x38(%rsp), %rdi
124 movq 8(%rbp), %rsi
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530125 subq $MCOUNT_INSN_SIZE, %rdi
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200126
127 call *ftrace_trace_function
128
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300129 MCOUNT_RESTORE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200130
131 jmp ftrace_stub
132END(mcount)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200133#endif /* CONFIG_DYNAMIC_FTRACE */
Steven Rostedt606576c2008-10-06 19:06:12 -0400134#endif /* CONFIG_FUNCTION_TRACER */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200135
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100136#ifdef CONFIG_FUNCTION_GRAPH_TRACER
137ENTRY(ftrace_graph_caller)
138 cmpl $0, function_trace_stop
139 jne ftrace_stub
140
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300141 MCOUNT_SAVE_FRAME
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100142
143 leaq 8(%rbp), %rdi
144 movq 0x38(%rsp), %rsi
Steven Rostedt71e308a2009-06-18 12:45:08 -0400145 movq (%rbp), %rdx
Steven Rostedtbb4304c2008-12-02 15:34:09 -0500146 subq $MCOUNT_INSN_SIZE, %rsi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100147
148 call prepare_ftrace_return
149
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300150 MCOUNT_RESTORE_FRAME
151
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100152 retq
153END(ftrace_graph_caller)
154
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300155GLOBAL(return_to_handler)
Jiri Olsa4818d802009-07-29 10:58:37 +0200156 subq $24, %rsp
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100157
Steven Rostedte71e99c2009-03-25 14:30:04 -0400158 /* Save the return values */
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100159 movq %rax, (%rsp)
Steven Rostedte71e99c2009-03-25 14:30:04 -0400160 movq %rdx, 8(%rsp)
Steven Rostedt71e308a2009-06-18 12:45:08 -0400161 movq %rbp, %rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100162
163 call ftrace_return_to_handler
164
Steven Rostedt194ec342009-10-13 16:33:50 -0400165 movq %rax, %rdi
Steven Rostedte71e99c2009-03-25 14:30:04 -0400166 movq 8(%rsp), %rdx
Jan Beulich7effaa82005-09-12 18:49:24 +0200167 movq (%rsp), %rax
Steven Rostedt194ec342009-10-13 16:33:50 -0400168 addq $24, %rsp
169 jmp *%rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100170#endif
Jan Beulich7effaa82005-09-12 18:49:24 +0200171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173#ifndef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#define retint_kernel retint_restore_args
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100175#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177#ifdef CONFIG_PARAVIRT
178ENTRY(native_usergs_sysret64)
179 swapgs
180 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +0300181ENDPROC(native_usergs_sysret64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182#endif /* CONFIG_PARAVIRT */
183
184
185.macro TRACE_IRQS_IRETQ offset=ARGOFFSET
186#ifdef CONFIG_TRACE_IRQFLAGS
187 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
188 jnc 1f
189 TRACE_IRQS_ON
1901:
191#endif
192.endm
193
194/*
Steven Rostedt5963e312012-05-30 11:54:53 -0400195 * When dynamic function tracer is enabled it will add a breakpoint
196 * to all locations that it is about to modify, sync CPUs, update
197 * all the code, sync CPUs, then remove the breakpoints. In this time
198 * if lockdep is enabled, it might jump back into the debug handler
199 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
200 *
201 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
202 * make sure the stack pointer does not get reset back to the top
203 * of the debug stack, and instead just reuses the current stack.
204 */
205#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
206
207.macro TRACE_IRQS_OFF_DEBUG
208 call debug_stack_set_zero
209 TRACE_IRQS_OFF
210 call debug_stack_reset
211.endm
212
213.macro TRACE_IRQS_ON_DEBUG
214 call debug_stack_set_zero
215 TRACE_IRQS_ON
216 call debug_stack_reset
217.endm
218
219.macro TRACE_IRQS_IRETQ_DEBUG offset=ARGOFFSET
220 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
221 jnc 1f
222 TRACE_IRQS_ON_DEBUG
2231:
224.endm
225
226#else
227# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
228# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
229# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
230#endif
231
232/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100233 * C code is not supposed to know about undefined top of stack. Every time
234 * a C function with an pt_regs argument is called from the SYSCALL based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 * fast path FIXUP_TOP_OF_STACK is needed.
236 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
237 * manipulation.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100238 */
239
240 /* %rsp:at FRAMEEND */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100241 .macro FIXUP_TOP_OF_STACK tmp offset=0
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900242 movq PER_CPU_VAR(old_rsp),\tmp
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100243 movq \tmp,RSP+\offset(%rsp)
244 movq $__USER_DS,SS+\offset(%rsp)
245 movq $__USER_CS,CS+\offset(%rsp)
246 movq $-1,RCX+\offset(%rsp)
247 movq R11+\offset(%rsp),\tmp /* get eflags */
248 movq \tmp,EFLAGS+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 .endm
250
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100251 .macro RESTORE_TOP_OF_STACK tmp offset=0
252 movq RSP+\offset(%rsp),\tmp
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900253 movq \tmp,PER_CPU_VAR(old_rsp)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100254 movq EFLAGS+\offset(%rsp),\tmp
255 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 .endm
257
258 .macro FAKE_STACK_FRAME child_rip
259 /* push in order ss, rsp, eflags, cs, rip */
260 xorl %eax, %eax
Jan Beulichdf5d1872010-09-02 14:07:16 +0100261 pushq_cfi $__KERNEL_DS /* ss */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 /*CFI_REL_OFFSET ss,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100263 pushq_cfi %rax /* rsp */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 CFI_REL_OFFSET rsp,0
Seiichi Ikarashi1cf83432011-12-06 17:58:14 +0900265 pushq_cfi $(X86_EFLAGS_IF|X86_EFLAGS_BIT1) /* eflags - interrupts on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 /*CFI_REL_OFFSET rflags,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100267 pushq_cfi $__KERNEL_CS /* cs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 /*CFI_REL_OFFSET cs,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100269 pushq_cfi \child_rip /* rip */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 CFI_REL_OFFSET rip,0
Jan Beulichdf5d1872010-09-02 14:07:16 +0100271 pushq_cfi %rax /* orig rax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 .endm
273
274 .macro UNFAKE_STACK_FRAME
275 addq $8*6, %rsp
276 CFI_ADJUST_CFA_OFFSET -(6*8)
277 .endm
278
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100279/*
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100280 * initial frame state for interrupts (and exceptions without error code)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100281 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100282 .macro EMPTY_FRAME start=1 offset=0
283 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100284 CFI_STARTPROC simple
285 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100286 CFI_DEF_CFA rsp,8+\offset
287 .else
288 CFI_DEF_CFA_OFFSET 8+\offset
289 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100290 .endm
291
292/*
293 * initial frame state for interrupts (and exceptions without error code)
294 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100295 .macro INTR_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100296 EMPTY_FRAME \start, SS+8+\offset-RIP
297 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
298 CFI_REL_OFFSET rsp, RSP+\offset-RIP
299 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
300 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
301 CFI_REL_OFFSET rip, RIP+\offset-RIP
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100302 .endm
303
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100304/*
305 * initial frame state for exceptions with error code (and interrupts
306 * with vector already pushed)
307 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100308 .macro XCPT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100309 INTR_FRAME \start, RIP+\offset-ORIG_RAX
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100310 /*CFI_REL_OFFSET orig_rax, ORIG_RAX-ORIG_RAX*/
311 .endm
312
313/*
314 * frame that enables calling into C.
315 */
316 .macro PARTIAL_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100317 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
318 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
319 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
320 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
321 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
322 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
323 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
324 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
325 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
326 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100327 .endm
328
329/*
330 * frame that enables passing a complete pt_regs to a C function.
331 */
332 .macro DEFAULT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100333 PARTIAL_FRAME \start, R11+\offset-R15
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100334 CFI_REL_OFFSET rbx, RBX+\offset
335 CFI_REL_OFFSET rbp, RBP+\offset
336 CFI_REL_OFFSET r12, R12+\offset
337 CFI_REL_OFFSET r13, R13+\offset
338 CFI_REL_OFFSET r14, R14+\offset
339 CFI_REL_OFFSET r15, R15+\offset
340 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100341
342/* save partial stack frame */
Frederic Weisbecker18718532011-07-01 01:51:22 +0200343 .macro SAVE_ARGS_IRQ
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100344 cld
Frederic Weisbecker18718532011-07-01 01:51:22 +0200345 /* start from rbp in pt_regs and jump over */
346 movq_cfi rdi, RDI-RBP
347 movq_cfi rsi, RSI-RBP
348 movq_cfi rdx, RDX-RBP
349 movq_cfi rcx, RCX-RBP
350 movq_cfi rax, RAX-RBP
351 movq_cfi r8, R8-RBP
352 movq_cfi r9, R9-RBP
353 movq_cfi r10, R10-RBP
354 movq_cfi r11, R11-RBP
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100355
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200356 /* Save rbp so that we can unwind from get_irq_regs() */
357 movq_cfi rbp, 0
358
359 /* Save previous stack value */
360 movq %rsp, %rsi
Frederic Weisbecker3b99a3ef2011-07-01 02:25:17 +0200361
362 leaq -RBP(%rsp),%rdi /* arg1 for handler */
Jan Beulich69466462012-02-24 11:55:01 +0000363 testl $3, CS-RBP(%rsi)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100364 je 1f
365 SWAPGS
366 /*
Brian Gerst56895532009-01-19 00:38:58 +0900367 * irq_count is used to check if a CPU is already on an interrupt stack
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100368 * or not. While this is essentially redundant with preempt_count it is
369 * a little cheaper to use a separate counter in the PDA (short of
370 * moving irq_enter into assembly, which would be too much work)
371 */
Brian Gerst56895532009-01-19 00:38:58 +09003721: incl PER_CPU_VAR(irq_count)
Jan Beulich69466462012-02-24 11:55:01 +0000373 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100374 CFI_DEF_CFA_REGISTER rsi
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200375
Jan Beulich69466462012-02-24 11:55:01 +0000376 /* Store previous stack value */
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200377 pushq %rsi
Jan Beulicheab9e612011-09-28 16:57:52 +0100378 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
379 0x77 /* DW_OP_breg7 */, 0, \
380 0x06 /* DW_OP_deref */, \
381 0x08 /* DW_OP_const1u */, SS+8-RBP, \
382 0x22 /* DW_OP_plus */
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200383 /* We entered an interrupt context - irqs are off: */
384 TRACE_IRQS_OFF
Frederic Weisbecker18718532011-07-01 01:51:22 +0200385 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100386
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100387ENTRY(save_rest)
388 PARTIAL_FRAME 1 REST_SKIP+8
389 movq 5*8+16(%rsp), %r11 /* save return address */
390 movq_cfi rbx, RBX+16
391 movq_cfi rbp, RBP+16
392 movq_cfi r12, R12+16
393 movq_cfi r13, R13+16
394 movq_cfi r14, R14+16
395 movq_cfi r15, R15+16
396 movq %r11, 8(%rsp) /* return address */
397 FIXUP_TOP_OF_STACK %r11, 16
398 ret
399 CFI_ENDPROC
400END(save_rest)
401
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100402/* save complete stack frame */
Jan Beulichc2810182009-03-12 10:38:55 +0000403 .pushsection .kprobes.text, "ax"
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100404ENTRY(save_paranoid)
405 XCPT_FRAME 1 RDI+8
406 cld
407 movq_cfi rdi, RDI+8
408 movq_cfi rsi, RSI+8
409 movq_cfi rdx, RDX+8
410 movq_cfi rcx, RCX+8
411 movq_cfi rax, RAX+8
412 movq_cfi r8, R8+8
413 movq_cfi r9, R9+8
414 movq_cfi r10, R10+8
415 movq_cfi r11, R11+8
416 movq_cfi rbx, RBX+8
417 movq_cfi rbp, RBP+8
418 movq_cfi r12, R12+8
419 movq_cfi r13, R13+8
420 movq_cfi r14, R14+8
421 movq_cfi r15, R15+8
422 movl $1,%ebx
423 movl $MSR_GS_BASE,%ecx
424 rdmsr
425 testl %edx,%edx
426 js 1f /* negative -> in kernel */
427 SWAPGS
428 xorl %ebx,%ebx
4291: ret
430 CFI_ENDPROC
431END(save_paranoid)
Jan Beulichc2810182009-03-12 10:38:55 +0000432 .popsection
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434/*
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100435 * A newly forked process directly context switches into this address.
436 *
437 * rdi: prev task we switched from
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100438 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439ENTRY(ret_from_fork)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100440 DEFAULT_FRAME
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100441
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500442 LOCK ; btr $TIF_FORK,TI_flags(%r8)
443
Jan Beulichdf5d1872010-09-02 14:07:16 +0100444 pushq_cfi kernel_eflags(%rip)
445 popfq_cfi # reset kernel eflags
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100446
447 call schedule_tail # rdi: 'prev' task parameter
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 GET_THREAD_INFO(%rcx)
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 RESTORE_REST
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100452
453 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
Jan Beulich70ea6852011-11-29 10:54:22 +0000454 jz retint_restore_args
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100455
456 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 jnz int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100458
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100459 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100460 jmp ret_from_sys_call # go to the SYSRET fastpath
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200463END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465/*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300466 * System call entry. Up to 6 arguments in registers are supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 *
468 * SYSCALL does not save anything on the stack and does not change the
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700469 * stack pointer. However, it does mask the flags register for us, so
470 * CLD and CLAC are not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100474 * Register setup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * rax system call number
476 * rdi arg0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100477 * rcx return address for syscall/sysret, C arg3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100479 * rdx arg2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 * r10 arg3 (--> moved to rcx for C)
481 * r8 arg4
482 * r9 arg5
483 * r11 eflags for syscall/sysret, temporary for C
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100484 * r12-r15,rbp,rbx saved by C code, not touched.
485 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 * Interrupts are off on entry.
487 * Only called from user space.
488 *
489 * XXX if we had a free scratch register we could save the RSP into the stack frame
490 * and report it properly in ps. Unfortunately we haven't.
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200491 *
492 * When user can change the frames always force IRET. That is because
493 * it deals with uncanonical addresses better. SYSRET has trouble
494 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100495 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200498 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200499 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900500 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200501 CFI_REGISTER rip,rcx
502 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100503 SWAPGS_UNSAFE_STACK
504 /*
505 * A hypervisor implementation might want to use a label
506 * after the swapgs, so that it can do the swapgs
507 * for the guest and jump here on syscall.
508 */
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000509GLOBAL(system_call_after_swapgs)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100510
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900511 movq %rsp,PER_CPU_VAR(old_rsp)
Brian Gerst9af45652009-01-19 00:38:58 +0900512 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700513 /*
514 * No need to follow this irqs off/on section - it's straight
515 * and short:
516 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100517 ENABLE_INTERRUPTS(CLBR_NONE)
Borislav Petkovcac0e0a2011-05-31 22:21:52 +0200518 SAVE_ARGS 8,0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100519 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
Jan Beulich7effaa82005-09-12 18:49:24 +0200520 movq %rcx,RIP-ARGOFFSET(%rsp)
521 CFI_REL_OFFSET rip,RIP-ARGOFFSET
Jan Beulich46db09d2011-11-29 11:17:45 +0000522 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700524system_call_fastpath:
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800525#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800527#else
528 andl $__SYSCALL_MASK,%eax
529 cmpl $__NR_syscall_max,%eax
530#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 ja badsys
532 movq %r10,%rcx
533 call *sys_call_table(,%rax,8) # XXX: rip relative
534 movq %rax,RAX-ARGOFFSET(%rsp)
535/*
536 * Syscall return path ending with SYSRET (fast path)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100537 * Has incomplete stack frame and undefined top of stack.
538 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539ret_from_sys_call:
Andi Kleen11b854b2005-04-16 15:25:02 -0700540 movl $_TIF_ALLWORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 /* edi: flagmask */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100542sysret_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200543 LOCKDEP_SYS_EXIT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100544 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700545 TRACE_IRQS_OFF
Jan Beulich46db09d2011-11-29 11:17:45 +0000546 movl TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 andl %edi,%edx
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100548 jnz sysret_careful
Jan Beulichbcddc012006-12-07 02:14:02 +0100549 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700550 /*
551 * sysretq will re-enable interrupts:
552 */
553 TRACE_IRQS_ON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 movq RIP-ARGOFFSET(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200555 CFI_REGISTER rip,rcx
Borislav Petkov838feb42011-05-31 22:21:53 +0200556 RESTORE_ARGS 1,-ARG_SKIP,0
Jan Beulich7effaa82005-09-12 18:49:24 +0200557 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900558 movq PER_CPU_VAR(old_rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400559 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Jan Beulichbcddc012006-12-07 02:14:02 +0100561 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /* Handle reschedules */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100563 /* edx: work, edi: workmask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564sysret_careful:
565 bt $TIF_NEED_RESCHED,%edx
566 jnc sysret_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700567 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100568 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100569 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100571 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 jmp sysret_check
573
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100574 /* Handle a signal */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575sysret_signal:
Ingo Molnar2601e642006-07-03 00:24:45 -0700576 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100577 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrath86a1c342008-06-23 15:37:04 -0700578#ifdef CONFIG_AUDITSYSCALL
579 bt $TIF_SYSCALL_AUDIT,%edx
580 jc sysret_audit
581#endif
Roland McGrathb60e7142009-09-22 16:46:34 -0700582 /*
583 * We have a signal, or exit tracing or single-step.
584 * These all wind up with the iret return path anyway,
585 * so just join that path right now.
586 */
587 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
588 jmp int_check_syscall_exit_work
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100589
Jan Beulich7effaa82005-09-12 18:49:24 +0200590badsys:
591 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
592 jmp ret_from_sys_call
593
Roland McGrath86a1c342008-06-23 15:37:04 -0700594#ifdef CONFIG_AUDITSYSCALL
595 /*
596 * Fast path for syscall audit without full syscall trace.
Eric Parisb05d8442012-01-03 14:23:06 -0500597 * We just call __audit_syscall_entry() directly, and then
Roland McGrath86a1c342008-06-23 15:37:04 -0700598 * jump back to the normal fast path.
599 */
600auditsys:
601 movq %r10,%r9 /* 6th arg: 4th syscall arg */
602 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
603 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
604 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
605 movq %rax,%rsi /* 2nd arg: syscall number */
606 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
Eric Parisb05d8442012-01-03 14:23:06 -0500607 call __audit_syscall_entry
Roland McGrath86a1c342008-06-23 15:37:04 -0700608 LOAD_ARGS 0 /* reload call-clobbered registers */
609 jmp system_call_fastpath
610
611 /*
Eric Parisd7e75282012-01-03 14:23:06 -0500612 * Return fast path for syscall audit. Call __audit_syscall_exit()
Roland McGrath86a1c342008-06-23 15:37:04 -0700613 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
614 * masked off.
615 */
616sysret_audit:
Roland McGrath03275592010-07-21 17:44:12 -0700617 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
Eric Parisd7e75282012-01-03 14:23:06 -0500618 cmpq $-MAX_ERRNO,%rsi /* is it < -MAX_ERRNO? */
619 setbe %al /* 1 if so, 0 if not */
Roland McGrath86a1c342008-06-23 15:37:04 -0700620 movzbl %al,%edi /* zero-extend that into %edi */
Eric Parisd7e75282012-01-03 14:23:06 -0500621 call __audit_syscall_exit
Roland McGrath86a1c342008-06-23 15:37:04 -0700622 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
623 jmp sysret_check
624#endif /* CONFIG_AUDITSYSCALL */
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100627tracesys:
Roland McGrath86a1c342008-06-23 15:37:04 -0700628#ifdef CONFIG_AUDITSYSCALL
Jan Beulich46db09d2011-11-29 11:17:45 +0000629 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Roland McGrath86a1c342008-06-23 15:37:04 -0700630 jz auditsys
631#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 SAVE_REST
Roland McGratha31f8dd2008-03-16 21:59:11 -0700633 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 FIXUP_TOP_OF_STACK %rdi
635 movq %rsp,%rdi
636 call syscall_trace_enter
Roland McGrathd4d67152008-07-09 02:38:07 -0700637 /*
638 * Reload arg registers from stack in case ptrace changed them.
639 * We don't reload %rax because syscall_trace_enter() returned
640 * the value it wants us to use in the table lookup.
641 */
642 LOAD_ARGS ARGOFFSET, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 RESTORE_REST
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800644#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800646#else
647 andl $__SYSCALL_MASK,%eax
648 cmpl $__NR_syscall_max,%eax
649#endif
Roland McGratha31f8dd2008-03-16 21:59:11 -0700650 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 movq %r10,%rcx /* fixup for C */
652 call *sys_call_table(,%rax,8)
Roland McGratha31f8dd2008-03-16 21:59:11 -0700653 movq %rax,RAX-ARGOFFSET(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200654 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100655
656/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 * Syscall return path ending with IRET.
658 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100659 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300660GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100661 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700662 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 movl $_TIF_ALLWORK_MASK,%edi
664 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300665GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200666 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300668 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 andl %edi,%edx
670 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300671 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 jmp retint_swapgs
673
674 /* Either reschedule or signal or syscall exit tracking needed. */
675 /* First do a reschedule test. */
676 /* edx: work, edi: workmask */
677int_careful:
678 bt $TIF_NEED_RESCHED,%edx
679 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700680 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100681 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100682 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100684 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100685 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700686 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 jmp int_with_check
688
689 /* handle signals and tracing -- both require a full stack frame */
690int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700691 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100692 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrathb60e7142009-09-22 16:46:34 -0700693int_check_syscall_exit_work:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100695 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700696 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100698 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100699 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100701 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700702 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100706 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 jz 1f
708 movq %rsp,%rdi # &ptregs -> arg1
709 xorl %esi,%esi # oldset -> arg2
710 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07007111: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712int_restore_rest:
713 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100714 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700715 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 jmp int_with_check
717 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100718END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100719
720/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 * Certain special system calls that need to save a complete full stack frame.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100722 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 .macro PTREGSCALL label,func,arg
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100724ENTRY(\label)
725 PARTIAL_FRAME 1 8 /* offset 8: return address */
726 subq $REST_SKIP, %rsp
727 CFI_ADJUST_CFA_OFFSET REST_SKIP
728 call save_rest
729 DEFAULT_FRAME 0 8 /* offset 8: return address */
730 leaq 8(%rsp), \arg /* pt_regs pointer */
731 call \func
732 jmp ptregscall_common
733 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200734END(\label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 .endm
736
737 PTREGSCALL stub_clone, sys_clone, %r8
738 PTREGSCALL stub_fork, sys_fork, %rdi
739 PTREGSCALL stub_vfork, sys_vfork, %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 PTREGSCALL stub_sigaltstack, sys_sigaltstack, %rdx
741 PTREGSCALL stub_iopl, sys_iopl, %rsi
742
743ENTRY(ptregscall_common)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100744 DEFAULT_FRAME 1 8 /* offset 8: return address */
745 RESTORE_TOP_OF_STACK %r11, 8
746 movq_cfi_restore R15+8, r15
747 movq_cfi_restore R14+8, r14
748 movq_cfi_restore R13+8, r13
749 movq_cfi_restore R12+8, r12
750 movq_cfi_restore RBP+8, rbp
751 movq_cfi_restore RBX+8, rbx
752 ret $REST_SKIP /* pop extended registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200754END(ptregscall_common)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756ENTRY(stub_execve)
757 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100758 addq $8, %rsp
759 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 FIXUP_TOP_OF_STACK %r11
Ingo Molnar5d119b22008-02-26 12:55:57 +0100762 movq %rsp, %rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 RESTORE_TOP_OF_STACK %r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 movq %rax,RAX(%rsp)
766 RESTORE_REST
767 jmp int_ret_from_sys_call
768 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200769END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771/*
772 * sigreturn is special because it needs to restore all registers on return.
773 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100774 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775ENTRY(stub_rt_sigreturn)
776 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200777 addq $8, %rsp
Jan Beuliche6b04b62010-09-02 13:52:45 +0100778 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 SAVE_REST
780 movq %rsp,%rdi
781 FIXUP_TOP_OF_STACK %r11
782 call sys_rt_sigreturn
783 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
784 RESTORE_REST
785 jmp int_ret_from_sys_call
786 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200787END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800789#ifdef CONFIG_X86_X32_ABI
790 PTREGSCALL stub_x32_sigaltstack, sys32_sigaltstack, %rdx
791
792ENTRY(stub_x32_rt_sigreturn)
793 CFI_STARTPROC
794 addq $8, %rsp
795 PARTIAL_FRAME 0
796 SAVE_REST
797 movq %rsp,%rdi
798 FIXUP_TOP_OF_STACK %r11
799 call sys32_x32_rt_sigreturn
800 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
801 RESTORE_REST
802 jmp int_ret_from_sys_call
803 CFI_ENDPROC
804END(stub_x32_rt_sigreturn)
805
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800806ENTRY(stub_x32_execve)
807 CFI_STARTPROC
808 addq $8, %rsp
809 PARTIAL_FRAME 0
810 SAVE_REST
811 FIXUP_TOP_OF_STACK %r11
812 movq %rsp, %rcx
813 call sys32_execve
814 RESTORE_TOP_OF_STACK %r11
815 movq %rax,RAX(%rsp)
816 RESTORE_REST
817 jmp int_ret_from_sys_call
818 CFI_ENDPROC
819END(stub_x32_execve)
820
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800821#endif
822
Jan Beulich7effaa82005-09-12 18:49:24 +0200823/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800824 * Build the entry stubs and pointer table with some assembler magic.
825 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
826 * single cache line on all modern x86 implementations.
827 */
828 .section .init.rodata,"a"
829ENTRY(interrupt)
Jiri Olsaea714542011-03-07 19:10:39 +0100830 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800831 .p2align 5
832 .p2align CONFIG_X86_L1_CACHE_SHIFT
833ENTRY(irq_entries_start)
834 INTR_FRAME
835vector=FIRST_EXTERNAL_VECTOR
836.rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
837 .balign 32
838 .rept 7
839 .if vector < NR_VECTORS
H. Peter Anvin86655962008-11-12 10:27:35 -0800840 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800841 CFI_ADJUST_CFA_OFFSET -8
842 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01008431: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800844 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800845 jmp 2f
846 .endif
847 .previous
848 .quad 1b
Jiri Olsaea714542011-03-07 19:10:39 +0100849 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800850vector=vector+1
851 .endif
852 .endr
8532: jmp common_interrupt
854.endr
855 CFI_ENDPROC
856END(irq_entries_start)
857
858.previous
859END(interrupt)
860.previous
861
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100862/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 * Interrupt entry/exit.
864 *
865 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100866 *
867 * Entry runs with interrupts off.
868 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100870/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 .macro interrupt func
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100872 /* reserve pt_regs for scratch regs and rbp */
873 subq $ORIG_RAX-RBP, %rsp
874 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
Frederic Weisbecker18718532011-07-01 01:51:22 +0200875 SAVE_ARGS_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 call \func
877 .endm
878
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400879/*
880 * Interrupt entry/exit should be protected against kprobes
881 */
882 .pushsection .kprobes.text, "ax"
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100883 /*
884 * The interrupt stubs push (~vector+0x80) onto the stack and
885 * then jump to common_interrupt.
886 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800887 .p2align CONFIG_X86_L1_CACHE_SHIFT
888common_interrupt:
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700889 ASM_CLAC
Jan Beulich7effaa82005-09-12 18:49:24 +0200890 XCPT_FRAME
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100891 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 interrupt do_IRQ
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900893 /* 0(%rsp): old_rsp-ARGOFFSET */
Jan Beulich7effaa82005-09-12 18:49:24 +0200894ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100895 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700896 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900897 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100898
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200899 /* Restore saved previous stack */
900 popq %rsi
Mark Wielaard928282e2012-02-24 11:32:05 +0100901 CFI_DEF_CFA rsi,SS+8-RBP /* reg/off reset after def_cfa_expr */
Jan Beulicheab9e612011-09-28 16:57:52 +0100902 leaq ARGOFFSET-RBP(%rsi), %rsp
Jan Beulich7effaa82005-09-12 18:49:24 +0200903 CFI_DEF_CFA_REGISTER rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100904 CFI_ADJUST_CFA_OFFSET RBP-ARGOFFSET
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100905
Jan Beulich7effaa82005-09-12 18:49:24 +0200906exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 GET_THREAD_INFO(%rcx)
908 testl $3,CS-ARGOFFSET(%rsp)
909 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /* Interrupt came from user space */
912 /*
913 * Has a correct top of stack, but a partial stack frame
914 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100915 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916retint_with_reschedule:
917 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200918retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200919 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300920 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200922 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200924
925retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700926 /*
927 * The iretq could re-enable interrupts:
928 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100929 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700930 TRACE_IRQS_IRETQ
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100931 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700932 jmp restore_args
933
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200934retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100935 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700936 /*
937 * The iretq could re-enable interrupts:
938 */
939 TRACE_IRQS_IRETQ
940restore_args:
Borislav Petkov838feb42011-05-31 22:21:53 +0200941 RESTORE_ARGS 1,8,1
Ingo Molnar3701d8632008-02-09 23:24:08 +0100942
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200943irq_return:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100944 INTERRUPT_RETURN
H. Peter Anvind7abc0f2012-04-20 12:19:50 -0700945 _ASM_EXTABLE(irq_return, bad_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +0100946
947#ifdef CONFIG_PARAVIRT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100948ENTRY(native_iret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 iretq
H. Peter Anvind7abc0f2012-04-20 12:19:50 -0700950 _ASM_EXTABLE(native_iret, bad_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +0100951#endif
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954bad_iret:
Roland McGrath3aa4b372008-02-06 22:39:43 +0100955 /*
956 * The iret traps when the %cs or %ss being restored is bogus.
957 * We've lost the original trap vector and error code.
958 * #GPF is the most likely one to get for an invalid selector.
959 * So pretend we completed the iret and took the #GPF in user mode.
960 *
961 * We are now running with the kernel GS after exception recovery.
962 * But error_entry expects us to have user GS to match the user %cs,
963 * so swap back.
964 */
965 pushq $0
966
967 SWAPGS
968 jmp general_protection
969
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100970 .previous
971
Jan Beulich7effaa82005-09-12 18:49:24 +0200972 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200974 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 bt $TIF_NEED_RESCHED,%edx
976 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700977 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100978 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100979 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100981 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100983 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700984 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100988 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700989 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700990 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100991 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100993 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700994 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 movq %rsp,%rdi # &pt_regs
996 call do_notify_resume
997 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100998 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700999 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -07001000 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -07001001 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003#ifdef CONFIG_PREEMPT
1004 /* Returning to kernel space. Check if we need preemption */
1005 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +02001006ENTRY(retint_kernel)
Glauber Costa26ccb8a2008-06-24 11:19:35 -03001007 cmpl $0,TI_preempt_count(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 jnz retint_restore_args
Glauber Costa26ccb8a2008-06-24 11:19:35 -03001009 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 jnc retint_restore_args
1011 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
1012 jnc retint_restore_args
1013 call preempt_schedule_irq
1014 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001015#endif
Jan Beulich4b787e02006-06-26 13:56:55 +02001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +02001018END(common_interrupt)
Masami Hiramatsu8222d712009-08-27 13:23:25 -04001019/*
1020 * End of kprobes section
1021 */
1022 .popsection
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024/*
1025 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001026 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001027.macro apicinterrupt num sym do_sym
1028ENTRY(\sym)
H. Peter Anvin63bcff22012-09-21 12:43:12 -07001029 ASM_CLAC
Jan Beulich7effaa82005-09-12 18:49:24 +02001030 INTR_FRAME
Jan Beulichdf5d1872010-09-02 14:07:16 +01001031 pushq_cfi $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +00001032.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001033 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 jmp ret_from_intr
1035 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001036END(\sym)
1037.endm
Jacob Shin89b831e2005-11-05 17:25:53 +01001038
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001039#ifdef CONFIG_SMP
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001040apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
1041 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Andi Kleen4ef702c2009-05-27 21:56:52 +02001042apicinterrupt REBOOT_VECTOR \
1043 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044#endif
1045
Nick Piggin03b48632009-01-20 04:36:04 +01001046#ifdef CONFIG_X86_UV
Cyrill Gorcunov5ae3a132008-11-27 00:02:10 +03001047apicinterrupt UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001048 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +01001049#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001050apicinterrupt LOCAL_TIMER_VECTOR \
1051 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -05001052apicinterrupt X86_PLATFORM_IPI_VECTOR \
1053 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001055apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +02001056 threshold_interrupt smp_threshold_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001057apicinterrupt THERMAL_APIC_VECTOR \
1058 thermal_interrupt smp_thermal_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001060#ifdef CONFIG_SMP
1061apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1062 call_function_single_interrupt smp_call_function_single_interrupt
1063apicinterrupt CALL_FUNCTION_VECTOR \
1064 call_function_interrupt smp_call_function_interrupt
1065apicinterrupt RESCHEDULE_VECTOR \
1066 reschedule_interrupt smp_reschedule_interrupt
1067#endif
1068
1069apicinterrupt ERROR_APIC_VECTOR \
1070 error_interrupt smp_error_interrupt
1071apicinterrupt SPURIOUS_APIC_VECTOR \
1072 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001073
Peter Zijlstrae360adb2010-10-14 14:01:34 +08001074#ifdef CONFIG_IRQ_WORK
1075apicinterrupt IRQ_WORK_VECTOR \
1076 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +01001077#endif
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079/*
1080 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001081 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001082.macro zeroentry sym do_sym
1083ENTRY(\sym)
H. Peter Anvin63bcff22012-09-21 12:43:12 -07001084 ASM_CLAC
Jan Beulich7effaa82005-09-12 18:49:24 +02001085 INTR_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001086 PARAVIRT_ADJUST_EXCEPTION_FRAME
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001087 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001088 subq $ORIG_RAX-R15, %rsp
1089 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001090 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001091 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001092 movq %rsp,%rdi /* pt_regs pointer */
1093 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001094 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001095 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001096 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001097END(\sym)
1098.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001100.macro paranoidzeroentry sym do_sym
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001101ENTRY(\sym)
H. Peter Anvin63bcff22012-09-21 12:43:12 -07001102 ASM_CLAC
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001103 INTR_FRAME
1104 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001105 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1106 subq $ORIG_RAX-R15, %rsp
1107 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001108 call save_paranoid
1109 TRACE_IRQS_OFF
1110 movq %rsp,%rdi /* pt_regs pointer */
1111 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001112 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001113 jmp paranoid_exit /* %ebx: no swapgs flag */
1114 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001115END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001116.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001117
Brian Gerstc15a5952010-07-31 12:48:22 -04001118#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001119.macro paranoidzeroentry_ist sym do_sym ist
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001120ENTRY(\sym)
H. Peter Anvin63bcff22012-09-21 12:43:12 -07001121 ASM_CLAC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001122 INTR_FRAME
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001123 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001124 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1125 subq $ORIG_RAX-R15, %rsp
1126 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001127 call save_paranoid
Steven Rostedt5963e312012-05-30 11:54:53 -04001128 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001129 movq %rsp,%rdi /* pt_regs pointer */
1130 xorl %esi,%esi /* no error code */
Brian Gerstc15a5952010-07-31 12:48:22 -04001131 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001132 call \do_sym
Brian Gerstc15a5952010-07-31 12:48:22 -04001133 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001134 jmp paranoid_exit /* %ebx: no swapgs flag */
1135 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001136END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001137.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001138
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001139.macro errorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001140ENTRY(\sym)
H. Peter Anvin63bcff22012-09-21 12:43:12 -07001141 ASM_CLAC
Jan Beulich7effaa82005-09-12 18:49:24 +02001142 XCPT_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001143 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001144 subq $ORIG_RAX-R15, %rsp
1145 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001146 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001147 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001148 movq %rsp,%rdi /* pt_regs pointer */
1149 movq ORIG_RAX(%rsp),%rsi /* get error code */
1150 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001151 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001152 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001153 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001154END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001155.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157 /* error code is on the stack already */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001158.macro paranoiderrorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001159ENTRY(\sym)
H. Peter Anvin63bcff22012-09-21 12:43:12 -07001160 ASM_CLAC
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001161 XCPT_FRAME
1162 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001163 subq $ORIG_RAX-R15, %rsp
1164 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +01001165 call save_paranoid
1166 DEFAULT_FRAME 0
Alexander van Heukelum7e61a792008-09-26 14:03:03 +02001167 TRACE_IRQS_OFF
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001168 movq %rsp,%rdi /* pt_regs pointer */
1169 movq ORIG_RAX(%rsp),%rsi /* get error code */
1170 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001171 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001172 jmp paranoid_exit /* %ebx: no swapgs flag */
1173 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001174END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001175.endm
1176
1177zeroentry divide_error do_divide_error
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001178zeroentry overflow do_overflow
1179zeroentry bounds do_bounds
1180zeroentry invalid_op do_invalid_op
1181zeroentry device_not_available do_device_not_available
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001182paranoiderrorentry double_fault do_double_fault
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001183zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1184errorentry invalid_TSS do_invalid_TSS
1185errorentry segment_not_present do_segment_not_present
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001186zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1187zeroentry coprocessor_error do_coprocessor_error
1188errorentry alignment_check do_alignment_check
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001189zeroentry simd_coprocessor_error do_simd_coprocessor_error
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001190
Ingo Molnar2601e642006-07-03 00:24:45 -07001191
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001192 /* Reload gs selector with exception handling */
1193 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001194ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001195 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001196 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001197 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001198 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001199gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001200 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070012012: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001202 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001203 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001204 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001205 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001206END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001207
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001208 _ASM_EXTABLE(gs_change,bad_gs)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001209 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001211bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001212 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001214 movl %eax,%gs
1215 jmp 2b
1216 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001217
Brian Gerst3bd95df2009-12-09 12:34:40 -05001218ENTRY(kernel_thread_helper)
Andi Kleenc05991e2006-08-30 19:37:08 +02001219 pushq $0 # fake return address
1220 CFI_STARTPROC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 /*
1222 * Here we are in the child and the registers are set as they were
1223 * at kernel_thread() invocation in the parent.
1224 */
Brian Gerst3bd95df2009-12-09 12:34:40 -05001225 call *%rsi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 # exit
Andrey Mirkin1c5b5cf2007-10-17 18:04:33 +02001227 mov %eax, %edi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 call do_exit
jia zhang5f5db592008-11-23 22:47:10 +08001229 ud2 # padding for call trace
Andi Kleenc05991e2006-08-30 19:37:08 +02001230 CFI_ENDPROC
Brian Gerst3bd95df2009-12-09 12:34:40 -05001231END(kernel_thread_helper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233/*
1234 * execve(). This function needs to use IRET, not SYSRET, to set up all state properly.
1235 *
1236 * C extern interface:
David Howellsc7887322010-08-11 11:26:22 +01001237 * extern long execve(const char *name, char **argv, char **envp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 *
1239 * asm input arguments:
1240 * rdi: name, rsi: argv, rdx: envp
1241 *
1242 * We want to fallback into:
David Howellsc7887322010-08-11 11:26:22 +01001243 * extern long sys_execve(const char *name, char **argv,char **envp, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 *
1245 * do_sys_execve asm fallback arguments:
Ingo Molnar5d119b22008-02-26 12:55:57 +01001246 * rdi: name, rsi: argv, rdx: envp, rcx: fake frame on the stack
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 */
Arnd Bergmann3db03b42006-10-02 02:18:31 -07001248ENTRY(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 CFI_STARTPROC
1250 FAKE_STACK_FRAME $0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001251 SAVE_ALL
Ingo Molnar5d119b22008-02-26 12:55:57 +01001252 movq %rsp,%rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 call sys_execve
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001254 movq %rax, RAX(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 RESTORE_REST
1256 testq %rax,%rax
1257 je int_ret_from_sys_call
1258 RESTORE_ARGS
1259 UNFAKE_STACK_FRAME
1260 ret
1261 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001262END(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Andi Kleen26995002006-08-02 22:37:28 +02001264/* Call softirq on interrupt stack. Interrupts are off. */
Andi Kleened6b6762005-07-28 21:15:49 -07001265ENTRY(call_softirq)
Jan Beulich7effaa82005-09-12 18:49:24 +02001266 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001267 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001268 CFI_REL_OFFSET rbp,0
1269 mov %rsp,%rbp
1270 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001271 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001272 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001273 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001274 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001275 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001276 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001277 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001278 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001279 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001280 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001281 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001282END(call_softirq)
Andi Kleen75154f42007-06-23 02:29:25 +02001283
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001284#ifdef CONFIG_XEN
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001285zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001286
1287/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001288 * A note on the "critical region" in our callback handler.
1289 * We want to avoid stacking callback handlers due to events occurring
1290 * during handling of the last event. To do this, we keep events disabled
1291 * until we've done all processing. HOWEVER, we must enable events before
1292 * popping the stack frame (can't be done atomically) and so it would still
1293 * be possible to get enough handler activations to overflow the stack.
1294 * Although unlikely, bugs of that kind are hard to track down, so we'd
1295 * like to avoid the possibility.
1296 * So, on entry to the handler we detect whether we interrupted an
1297 * existing activation in its critical region -- if so, we pop the current
1298 * activation and restart the handler using the previous one.
1299 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001300ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1301 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001302/*
1303 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1304 * see the correct pointer to the pt_regs
1305 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001306 movq %rdi, %rsp # we don't return, adjust the stack frame
1307 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001308 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900130911: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001310 movq %rsp,%rbp
1311 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001312 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001313 pushq %rbp # backlink for old unwinder
1314 call xen_evtchn_do_upcall
1315 popq %rsp
1316 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001317 decl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001318 jmp error_exit
1319 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001320END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001321
1322/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001323 * Hypervisor uses this for application faults while it executes.
1324 * We get here for two reasons:
1325 * 1. Fault while reloading DS, ES, FS or GS
1326 * 2. Fault while executing IRET
1327 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1328 * registers that could be reloaded and zeroed the others.
1329 * Category 2 we fix up by killing the current process. We cannot use the
1330 * normal Linux return path in this case because if we use the IRET hypercall
1331 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1332 * We distinguish between categories by comparing each saved segment register
1333 * with its current contents: any discrepancy means we in category 1.
1334 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001335ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001336 INTR_FRAME 1 (6*8)
1337 /*CFI_REL_OFFSET gs,GS*/
1338 /*CFI_REL_OFFSET fs,FS*/
1339 /*CFI_REL_OFFSET es,ES*/
1340 /*CFI_REL_OFFSET ds,DS*/
1341 CFI_REL_OFFSET r11,8
1342 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001343 movw %ds,%cx
1344 cmpw %cx,0x10(%rsp)
1345 CFI_REMEMBER_STATE
1346 jne 1f
1347 movw %es,%cx
1348 cmpw %cx,0x18(%rsp)
1349 jne 1f
1350 movw %fs,%cx
1351 cmpw %cx,0x20(%rsp)
1352 jne 1f
1353 movw %gs,%cx
1354 cmpw %cx,0x28(%rsp)
1355 jne 1f
1356 /* All segments match their saved values => Category 2 (Bad IRET). */
1357 movq (%rsp),%rcx
1358 CFI_RESTORE rcx
1359 movq 8(%rsp),%r11
1360 CFI_RESTORE r11
1361 addq $0x30,%rsp
1362 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001363 pushq_cfi $0 /* RIP */
1364 pushq_cfi %r11
1365 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001366 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001367 CFI_RESTORE_STATE
13681: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1369 movq (%rsp),%rcx
1370 CFI_RESTORE rcx
1371 movq 8(%rsp),%r11
1372 CFI_RESTORE r11
1373 addq $0x30,%rsp
1374 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001375 pushq_cfi $0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001376 SAVE_ALL
1377 jmp error_exit
1378 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001379END(xen_failsafe_callback)
1380
Sheng Yang38e20b02010-05-14 12:40:51 +01001381apicinterrupt XEN_HVM_EVTCHN_CALLBACK \
1382 xen_hvm_callback_vector xen_evtchn_do_upcall
1383
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001384#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001385
1386/*
1387 * Some functions should be protected against kprobes
1388 */
1389 .pushsection .kprobes.text, "ax"
1390
1391paranoidzeroentry_ist debug do_debug DEBUG_STACK
1392paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1393paranoiderrorentry stack_segment do_stack_segment
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001394#ifdef CONFIG_XEN
1395zeroentry xen_debug do_debug
1396zeroentry xen_int3 do_int3
1397errorentry xen_stack_segment do_stack_segment
1398#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001399errorentry general_protection do_general_protection
1400errorentry page_fault do_page_fault
Gleb Natapov631bc482010-10-14 11:22:52 +02001401#ifdef CONFIG_KVM_GUEST
1402errorentry async_page_fault do_async_page_fault
1403#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001404#ifdef CONFIG_X86_MCE
Andi Kleen5d727922009-04-27 19:25:48 +02001405paranoidzeroentry machine_check *machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001406#endif
1407
1408 /*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001409 * "Paranoid" exit path from exception stack.
1410 * Paranoid because this is used by NMIs and cannot take
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001411 * any kernel state for granted.
1412 * We don't do kernel preemption checks here, because only
1413 * NMI should be common and it does not enable IRQs and
1414 * cannot get reschedule ticks.
1415 *
1416 * "trace" is 0 for the NMI handler only, because irq-tracing
1417 * is fundamentally NMI-unsafe. (we cannot change the soft and
1418 * hard flags at once, atomically)
1419 */
1420
1421 /* ebx: no swapgs flag */
1422ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001423 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001424 DISABLE_INTERRUPTS(CLBR_NONE)
Steven Rostedt5963e312012-05-30 11:54:53 -04001425 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001426 testl %ebx,%ebx /* swapgs needed? */
1427 jnz paranoid_restore
1428 testl $3,CS(%rsp)
1429 jnz paranoid_userspace
1430paranoid_swapgs:
1431 TRACE_IRQS_IRETQ 0
1432 SWAPGS_UNSAFE_STACK
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001433 RESTORE_ALL 8
1434 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001435paranoid_restore:
Steven Rostedt5963e312012-05-30 11:54:53 -04001436 TRACE_IRQS_IRETQ_DEBUG 0
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001437 RESTORE_ALL 8
1438 jmp irq_return
1439paranoid_userspace:
1440 GET_THREAD_INFO(%rcx)
1441 movl TI_flags(%rcx),%ebx
1442 andl $_TIF_WORK_MASK,%ebx
1443 jz paranoid_swapgs
1444 movq %rsp,%rdi /* &pt_regs */
1445 call sync_regs
1446 movq %rax,%rsp /* switch stack for scheduling */
1447 testl $_TIF_NEED_RESCHED,%ebx
1448 jnz paranoid_schedule
1449 movl %ebx,%edx /* arg3: thread flags */
1450 TRACE_IRQS_ON
1451 ENABLE_INTERRUPTS(CLBR_NONE)
1452 xorl %esi,%esi /* arg2: oldset */
1453 movq %rsp,%rdi /* arg1: &pt_regs */
1454 call do_notify_resume
1455 DISABLE_INTERRUPTS(CLBR_NONE)
1456 TRACE_IRQS_OFF
1457 jmp paranoid_userspace
1458paranoid_schedule:
1459 TRACE_IRQS_ON
1460 ENABLE_INTERRUPTS(CLBR_ANY)
1461 call schedule
1462 DISABLE_INTERRUPTS(CLBR_ANY)
1463 TRACE_IRQS_OFF
1464 jmp paranoid_userspace
1465 CFI_ENDPROC
1466END(paranoid_exit)
1467
1468/*
1469 * Exception entry point. This expects an error code/orig_rax on the stack.
1470 * returns in "no swapgs flag" in %ebx.
1471 */
1472ENTRY(error_entry)
1473 XCPT_FRAME
1474 CFI_ADJUST_CFA_OFFSET 15*8
1475 /* oldrax contains error code */
1476 cld
1477 movq_cfi rdi, RDI+8
1478 movq_cfi rsi, RSI+8
1479 movq_cfi rdx, RDX+8
1480 movq_cfi rcx, RCX+8
1481 movq_cfi rax, RAX+8
1482 movq_cfi r8, R8+8
1483 movq_cfi r9, R9+8
1484 movq_cfi r10, R10+8
1485 movq_cfi r11, R11+8
1486 movq_cfi rbx, RBX+8
1487 movq_cfi rbp, RBP+8
1488 movq_cfi r12, R12+8
1489 movq_cfi r13, R13+8
1490 movq_cfi r14, R14+8
1491 movq_cfi r15, R15+8
1492 xorl %ebx,%ebx
1493 testl $3,CS+8(%rsp)
1494 je error_kernelspace
1495error_swapgs:
1496 SWAPGS
1497error_sti:
1498 TRACE_IRQS_OFF
1499 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001500
1501/*
1502 * There are two places in the kernel that can potentially fault with
1503 * usergs. Handle them here. The exception handlers after iret run with
1504 * kernel gs again, so don't set the user space flag. B stepping K8s
1505 * sometimes report an truncated RIP for IRET exceptions returning to
1506 * compat mode. Check for these here too.
1507 */
1508error_kernelspace:
1509 incl %ebx
1510 leaq irq_return(%rip),%rcx
1511 cmpq %rcx,RIP+8(%rsp)
1512 je error_swapgs
Brian Gerstae24ffe2009-10-12 10:18:23 -04001513 movl %ecx,%eax /* zero extend */
1514 cmpq %rax,RIP+8(%rsp)
1515 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001516 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001517 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001518 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001519
1520bstep_iret:
1521 /* Fix truncated RIP */
1522 movq %rcx,RIP+8(%rsp)
Brian Gerst97829de2009-11-03 14:02:05 -05001523 jmp error_swapgs
Jan Beuliche6b04b62010-09-02 13:52:45 +01001524 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001525END(error_entry)
1526
1527
1528/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1529ENTRY(error_exit)
1530 DEFAULT_FRAME
1531 movl %ebx,%eax
1532 RESTORE_REST
1533 DISABLE_INTERRUPTS(CLBR_NONE)
1534 TRACE_IRQS_OFF
1535 GET_THREAD_INFO(%rcx)
1536 testl %eax,%eax
1537 jne retint_kernel
1538 LOCKDEP_SYS_EXIT_IRQ
1539 movl TI_flags(%rcx),%edx
1540 movl $_TIF_WORK_MASK,%edi
1541 andl %edi,%edx
1542 jnz retint_careful
1543 jmp retint_swapgs
1544 CFI_ENDPROC
1545END(error_exit)
1546
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001547/*
1548 * Test if a given stack is an NMI stack or not.
1549 */
1550 .macro test_in_nmi reg stack nmi_ret normal_ret
1551 cmpq %\reg, \stack
1552 ja \normal_ret
1553 subq $EXCEPTION_STKSZ, %\reg
1554 cmpq %\reg, \stack
1555 jb \normal_ret
1556 jmp \nmi_ret
1557 .endm
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001558
1559 /* runs on exception stack */
1560ENTRY(nmi)
1561 INTR_FRAME
1562 PARAVIRT_ADJUST_EXCEPTION_FRAME
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001563 /*
1564 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1565 * the iretq it performs will take us out of NMI context.
1566 * This means that we can have nested NMIs where the next
1567 * NMI is using the top of the stack of the previous NMI. We
1568 * can't let it execute because the nested NMI will corrupt the
1569 * stack of the previous NMI. NMI handlers are not re-entrant
1570 * anyway.
1571 *
1572 * To handle this case we do the following:
1573 * Check the a special location on the stack that contains
1574 * a variable that is set when NMIs are executing.
1575 * The interrupted task's stack is also checked to see if it
1576 * is an NMI stack.
1577 * If the variable is not set and the stack is not the NMI
1578 * stack then:
1579 * o Set the special variable on the stack
1580 * o Copy the interrupt frame into a "saved" location on the stack
1581 * o Copy the interrupt frame into a "copy" location on the stack
1582 * o Continue processing the NMI
1583 * If the variable is set or the previous stack is the NMI stack:
1584 * o Modify the "copy" location to jump to the repeate_nmi
1585 * o return back to the first NMI
1586 *
1587 * Now on exit of the first NMI, we first clear the stack variable
1588 * The NMI stack will tell any nested NMIs at that point that it is
1589 * nested. Then we pop the stack normally with iret, and if there was
1590 * a nested NMI that updated the copy interrupt stack frame, a
1591 * jump will be made to the repeat_nmi code that will handle the second
1592 * NMI.
1593 */
1594
1595 /* Use %rdx as out temp variable throughout */
1596 pushq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001597 CFI_REL_OFFSET rdx, 0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001598
1599 /*
Steven Rostedt45d5a162012-02-19 16:43:37 -05001600 * If %cs was not the kernel segment, then the NMI triggered in user
1601 * space, which means it is definitely not nested.
1602 */
Steven Rostedta38449e2012-02-20 15:29:34 -05001603 cmpl $__KERNEL_CS, 16(%rsp)
Steven Rostedt45d5a162012-02-19 16:43:37 -05001604 jne first_nmi
1605
1606 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001607 * Check the special variable on the stack to see if NMIs are
1608 * executing.
1609 */
Steven Rostedta38449e2012-02-20 15:29:34 -05001610 cmpl $1, -8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001611 je nested_nmi
1612
1613 /*
1614 * Now test if the previous stack was an NMI stack.
1615 * We need the double check. We check the NMI stack to satisfy the
1616 * race when the first NMI clears the variable before returning.
1617 * We check the variable because the first NMI could be in a
1618 * breakpoint routine using a breakpoint stack.
1619 */
1620 lea 6*8(%rsp), %rdx
1621 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
Jan Beulich62610912012-02-24 14:54:37 +00001622 CFI_REMEMBER_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001623
1624nested_nmi:
1625 /*
1626 * Do nothing if we interrupted the fixup in repeat_nmi.
1627 * It's about to repeat the NMI handler, so we are fine
1628 * with ignoring this one.
1629 */
1630 movq $repeat_nmi, %rdx
1631 cmpq 8(%rsp), %rdx
1632 ja 1f
1633 movq $end_repeat_nmi, %rdx
1634 cmpq 8(%rsp), %rdx
1635 ja nested_nmi_out
1636
16371:
1638 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
1639 leaq -6*8(%rsp), %rdx
1640 movq %rdx, %rsp
1641 CFI_ADJUST_CFA_OFFSET 6*8
1642 pushq_cfi $__KERNEL_DS
1643 pushq_cfi %rdx
1644 pushfq_cfi
1645 pushq_cfi $__KERNEL_CS
1646 pushq_cfi $repeat_nmi
1647
1648 /* Put stack back */
1649 addq $(11*8), %rsp
1650 CFI_ADJUST_CFA_OFFSET -11*8
1651
1652nested_nmi_out:
1653 popq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001654 CFI_RESTORE rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001655
1656 /* No need to check faults here */
1657 INTERRUPT_RETURN
1658
Jan Beulich62610912012-02-24 14:54:37 +00001659 CFI_RESTORE_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001660first_nmi:
1661 /*
1662 * Because nested NMIs will use the pushed location that we
1663 * stored in rdx, we must keep that space available.
1664 * Here's what our stack frame will look like:
1665 * +-------------------------+
1666 * | original SS |
1667 * | original Return RSP |
1668 * | original RFLAGS |
1669 * | original CS |
1670 * | original RIP |
1671 * +-------------------------+
1672 * | temp storage for rdx |
1673 * +-------------------------+
1674 * | NMI executing variable |
1675 * +-------------------------+
1676 * | Saved SS |
1677 * | Saved Return RSP |
1678 * | Saved RFLAGS |
1679 * | Saved CS |
1680 * | Saved RIP |
1681 * +-------------------------+
1682 * | copied SS |
1683 * | copied Return RSP |
1684 * | copied RFLAGS |
1685 * | copied CS |
1686 * | copied RIP |
1687 * +-------------------------+
1688 * | pt_regs |
1689 * +-------------------------+
1690 *
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001691 * The saved stack frame is used to fix up the copied stack frame
1692 * that a nested NMI may change to make the interrupted NMI iret jump
1693 * to the repeat_nmi. The original stack frame and the temp storage
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001694 * is also used by nested NMIs and can not be trusted on exit.
1695 */
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001696 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
Jan Beulich62610912012-02-24 14:54:37 +00001697 movq (%rsp), %rdx
1698 CFI_RESTORE rdx
1699
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001700 /* Set the NMI executing variable on the stack. */
1701 pushq_cfi $1
1702
1703 /* Copy the stack frame to the Saved frame */
1704 .rept 5
1705 pushq_cfi 6*8(%rsp)
1706 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001707 CFI_DEF_CFA_OFFSET SS+8-RIP
1708
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001709 /* Everything up to here is safe from nested NMIs */
1710
Jan Beulich62610912012-02-24 14:54:37 +00001711 /*
1712 * If there was a nested NMI, the first NMI's iret will return
1713 * here. But NMIs are still enabled and we can take another
1714 * nested NMI. The nested NMI checks the interrupted RIP to see
1715 * if it is between repeat_nmi and end_repeat_nmi, and if so
1716 * it will just return, as we are about to repeat an NMI anyway.
1717 * This makes it safe to copy to the stack frame that a nested
1718 * NMI will update.
1719 */
1720repeat_nmi:
1721 /*
1722 * Update the stack variable to say we are still in NMI (the update
1723 * is benign for the non-repeat case, where 1 was pushed just above
1724 * to this very stack slot).
1725 */
1726 movq $1, 5*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001727
1728 /* Make another copy, this one may be modified by nested NMIs */
1729 .rept 5
1730 pushq_cfi 4*8(%rsp)
1731 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001732 CFI_DEF_CFA_OFFSET SS+8-RIP
1733end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001734
1735 /*
1736 * Everything below this point can be preempted by a nested
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001737 * NMI if the first NMI took an exception and reset our iret stack
1738 * so that we repeat another NMI.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001739 */
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001740 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001741 subq $ORIG_RAX-R15, %rsp
1742 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001743 /*
1744 * Use save_paranoid to handle SWAPGS, but no need to use paranoid_exit
1745 * as we should not be calling schedule in NMI context.
1746 * Even with normal interrupts enabled. An NMI should not be
1747 * setting NEED_RESCHED or anything that normal interrupts and
1748 * exceptions might do.
1749 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001750 call save_paranoid
1751 DEFAULT_FRAME 0
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001752
1753 /*
1754 * Save off the CR2 register. If we take a page fault in the NMI then
1755 * it could corrupt the CR2 value. If the NMI preempts a page fault
1756 * handler before it was able to read the CR2 register, and then the
1757 * NMI itself takes a page fault, the page fault that was preempted
1758 * will read the information from the NMI page fault and not the
1759 * origin fault. Save it off and restore it if it changes.
1760 * Use the r12 callee-saved register.
1761 */
1762 movq %cr2, %r12
1763
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001764 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1765 movq %rsp,%rdi
1766 movq $-1,%rsi
1767 call do_nmi
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001768
1769 /* Did the NMI take a page fault? Restore cr2 if it did */
1770 movq %cr2, %rcx
1771 cmpq %rcx, %r12
1772 je 1f
1773 movq %r12, %cr2
17741:
1775
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001776 testl %ebx,%ebx /* swapgs needed? */
1777 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001778nmi_swapgs:
1779 SWAPGS_UNSAFE_STACK
1780nmi_restore:
1781 RESTORE_ALL 8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001782 /* Clear the NMI executing stack variable */
1783 movq $0, 10*8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001784 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001785 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001786END(nmi)
1787
1788ENTRY(ignore_sysret)
1789 CFI_STARTPROC
1790 mov $-ENOSYS,%eax
1791 sysret
1792 CFI_ENDPROC
1793END(ignore_sysret)
1794
1795/*
1796 * End of kprobes section
1797 */
1798 .popsection